From e6f7485dd9f196e547d6d701f56ad87fc7faf65f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Sat, 21 Nov 2020 11:43:08 +0000 Subject: [PATCH] release 20.2.0 --- docs/changelog.rst | 29 +++++++++++++++++++++++++++++ docs/changelog/1998.bugfix.rst | 2 -- docs/changelog/2003.feature.rst | 1 - docs/changelog/2009.feature.rst | 17 ----------------- 4 files changed, 29 insertions(+), 20 deletions(-) delete mode 100644 docs/changelog/1998.bugfix.rst delete mode 100644 docs/changelog/2003.feature.rst delete mode 100644 docs/changelog/2009.feature.rst diff --git a/docs/changelog.rst b/docs/changelog.rst index 319b2bbcb..7c53ec920 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,35 @@ Release History .. towncrier release notes start +v20.2.0 (2020-11-21) +-------------------- + +Features - 20.2.0 +~~~~~~~~~~~~~~~~~ +- Optionally skip VCS ignore directive for entire virtualenv directory, using option :option:`no-vcs-ignore`, by default ``False``. (`#2003 `_) +- Add ``--read-only-app-data`` option to allow for creation based on an existing + app data cache which is non-writable. This may be useful (for example) to + produce a docker image where the app-data is pre-populated. + + .. code-block:: dockerfile + + ENV \ + VIRTUALENV_OVERRIDE_APP_DATA=/opt/virtualenv/cache \ + VIRTUALENV_SYMLINK_APP_DATA=1 + RUN virtualenv venv && rm -rf venv + ENV VIRTUALENV_READ_ONLY_APP_DATA=1 + USER nobody + # this virtualenv has symlinks into the read-only app-data cache + RUN virtualenv /tmp/venv + + Patch by :user:`asottile`. (`#2009 `_) + +Bugfixes - 20.2.0 +~~~~~~~~~~~~~~~~~ +- Fix processing of the ``VIRTUALENV_PYTHON`` environment variable and make it + multi-value as well (separated by comma) - by :user:`pneff`. (`#1998 `_) + + v20.1.0 (2020-10-25) -------------------- diff --git a/docs/changelog/1998.bugfix.rst b/docs/changelog/1998.bugfix.rst deleted file mode 100644 index c94c9429d..000000000 --- a/docs/changelog/1998.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fix processing of the ``VIRTUALENV_PYTHON`` environment variable and make it -multi-value as well (separated by comma) - by :user:`pneff`. diff --git a/docs/changelog/2003.feature.rst b/docs/changelog/2003.feature.rst deleted file mode 100644 index 76fc3bbaa..000000000 --- a/docs/changelog/2003.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Optionally skip VCS ignore directive for entire virtualenv directory, using option :option:`no-vcs-ignore`, by default ``False``. diff --git a/docs/changelog/2009.feature.rst b/docs/changelog/2009.feature.rst deleted file mode 100644 index d32e10bb6..000000000 --- a/docs/changelog/2009.feature.rst +++ /dev/null @@ -1,17 +0,0 @@ - -Add ``--read-only-app-data`` option to allow for creation based on an existing -app data cache which is non-writable. This may be useful (for example) to -produce a docker image where the app-data is pre-populated. - -.. code-block:: dockerfile - - ENV \ - VIRTUALENV_OVERRIDE_APP_DATA=/opt/virtualenv/cache \ - VIRTUALENV_SYMLINK_APP_DATA=1 - RUN virtualenv venv && rm -rf venv - ENV VIRTUALENV_READ_ONLY_APP_DATA=1 - USER nobody - # this virtualenv has symlinks into the read-only app-data cache - RUN virtualenv /tmp/venv - -Patch by :user:`asottile`.