Skip to content

Commit e6f7485

Browse files
committed
release 20.2.0
1 parent af08309 commit e6f7485

4 files changed

Lines changed: 29 additions & 20 deletions

File tree

docs/changelog.rst

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,35 @@ Release History
55

66
.. towncrier release notes start
77
8+
v20.2.0 (2020-11-21)
9+
--------------------
10+
11+
Features - 20.2.0
12+
~~~~~~~~~~~~~~~~~
13+
- 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>`_)
14+
- Add ``--read-only-app-data`` option to allow for creation based on an existing
15+
app data cache which is non-writable. This may be useful (for example) to
16+
produce a docker image where the app-data is pre-populated.
17+
18+
.. code-block:: dockerfile
19+
20+
ENV \
21+
VIRTUALENV_OVERRIDE_APP_DATA=/opt/virtualenv/cache \
22+
VIRTUALENV_SYMLINK_APP_DATA=1
23+
RUN virtualenv venv && rm -rf venv
24+
ENV VIRTUALENV_READ_ONLY_APP_DATA=1
25+
USER nobody
26+
# this virtualenv has symlinks into the read-only app-data cache
27+
RUN virtualenv /tmp/venv
28+
29+
Patch by :user:`asottile`. (`#2009 <https://github.com/pypa/virtualenv/issues/2009>`_)
30+
31+
Bugfixes - 20.2.0
32+
~~~~~~~~~~~~~~~~~
33+
- Fix processing of the ``VIRTUALENV_PYTHON`` environment variable and make it
34+
multi-value as well (separated by comma) - by :user:`pneff`. (`#1998 <https://github.com/pypa/virtualenv/issues/1998>`_)
35+
36+
837
v20.1.0 (2020-10-25)
938
--------------------
1039

docs/changelog/1998.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/changelog/2003.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changelog/2009.feature.rst

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)