diff options
author | Bernát Gábor <bgabor8@bloomberg.net> | 2020-11-21 11:43:08 +0000 |
---|---|---|
committer | Bernát Gábor <bgabor8@bloomberg.net> | 2020-11-21 11:43:08 +0000 |
commit | e6f7485dd9f196e547d6d701f56ad87fc7faf65f (patch) | |
tree | 18d8055a80212305f840190eb87e076d72fff0e1 | |
parent | af083095f74ac5f2693e03d54fa94245e9de9a14 (diff) | |
download | virtualenv-release-20.2.0.tar.gz |
release 20.2.020.2.0release-20.2.0
-rw-r--r-- | docs/changelog.rst | 29 | ||||
-rw-r--r-- | docs/changelog/1998.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/2003.feature.rst | 1 | ||||
-rw-r--r-- | docs/changelog/2009.feature.rst | 17 |
4 files changed, 29 insertions, 20 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst index 319b2bb..7c53ec9 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 <https://github.com/pypa/virtualenv/issues/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 <https://github.com/pypa/virtualenv/issues/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 <https://github.com/pypa/virtualenv/issues/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 c94c942..0000000 --- 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 76fc3bb..0000000 --- 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 d32e10b..0000000 --- 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`. |