Skip to content

Commit

Permalink
Merge pull request #2017 from pypa/release-20.2.0
Browse files Browse the repository at this point in the history
release 20.2.0
  • Loading branch information
gaborbernat committed Nov 21, 2020
2 parents af08309 + e6f7485 commit 6fab6a8
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 20 deletions.
29 changes: 29 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
--------------------

Expand Down
2 changes: 0 additions & 2 deletions docs/changelog/1998.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/changelog/2003.feature.rst

This file was deleted.

17 changes: 0 additions & 17 deletions docs/changelog/2009.feature.rst

This file was deleted.

0 comments on commit 6fab6a8

Please sign in to comment.