Release v2022.8.5

This commit is contained in:
Matt Davis
2022-08-05 10:45:30 -04:00
parent f50a12a8c5
commit b642b1fe5a
10 changed files with 1004 additions and 184 deletions
+33
View File
@@ -1,3 +1,36 @@
2022.7.24 (2022-08-05)
======================
Features & Improvements
-----------------------
- support PIPENV_CUSTOM_VENV_NAME to be the venv name if specified, update relevant docs. `#4974 <https://github.com/pypa/pipenv/issues/4974>`_
Bug Fixes
---------
- Remove usages of ``pip_shims`` from the non vendored ``pipenv`` code, but retain initialization for ``requirementslib`` still has usages. `#5204 <https://github.com/pypa/pipenv/issues/5204>`_
- Fix case sensitivity of color name ``red`` in exception when getting hashes from pypi in ``_get_hashes_from_pypi``. `#5206 <https://github.com/pypa/pipenv/issues/5206>`_
- Write output from ``subprocess_run`` directly to ``stdout`` instead of creating temporary file.
Remove deprecated ``distutils.sysconfig``, use ``sysconfig``. `#5210 <https://github.com/pypa/pipenv/issues/5210>`_
Vendored Libraries
------------------
- * Rename patched ``notpip`` to ``pip`` in order to be clear that its a patched version of pip.
* Remove the part of _post_pip_import.patch that overrode the standalone pip to be the user installed pip,
now we fully rely on our vendored and patched ``pip``, even for all types of installs.
* Vendor in the next newest version of ``pip==22.2``
* Modify patch for ``pipdeptree`` to not use ``pip-shims`` `#5188 <https://github.com/pypa/pipenv/issues/5188>`_
- * Remove vendored ``urllib3`` in favor of using it from vendored version in ``pip._vendor`` `#5215 <https://github.com/pypa/pipenv/issues/5215>`_
Removals and Deprecations
-------------------------
- Remove tests that have been for a while been marked skipped and are no longer relevant. `#5165 <https://github.com/pypa/pipenv/issues/5165>`_
2022.7.24 (2022-07-24)
======================
-1
View File
@@ -1 +0,0 @@
support PIPENV_CUSTOM_VENV_NAME to be the venv name if specified, update relevant docs.
-1
View File
@@ -1 +0,0 @@
Remove tests that have been for a while been marked skipped and are no longer relevant.
-5
View File
@@ -1,5 +0,0 @@
* Rename patched ``notpip`` to ``pip`` in order to be clear that its a patched version of pip.
* Remove the part of _post_pip_import.patch that overrode the standalone pip to be the user installed pip,
now we fully rely on our vendored and patched ``pip``, even for all types of installs.
* Vendor in the next newest version of ``pip==22.2``
* Modify patch for ``pipdeptree`` to not use ``pip-shims``
-1
View File
@@ -1 +0,0 @@
Remove usages of ``pip_shims`` from the non vendored ``pipenv`` code, but retain initialization for ``requirementslib`` still has usages.
-1
View File
@@ -1 +0,0 @@
Fix case sensitivity of color name ``red`` in exception when getting hashes from pypi in ``_get_hashes_from_pypi``.
-2
View File
@@ -1,2 +0,0 @@
Write output from ``subprocess_run`` directly to ``stdout`` instead of creating temporary file.
Remove deprecated ``distutils.sysconfig``, use ``sysconfig``.
-1
View File
@@ -1 +0,0 @@
* Remove vendored ``urllib3`` in favor of using it from vendored version in ``pip._vendor``
+1 -1
View File
@@ -2,4 +2,4 @@
# // ) ) / / // ) ) //___) ) // ) ) || / /
# //___/ / / / //___/ / // // / / || / /
# // / / // ((____ // / / ||/ /
__version__ = "2022.7.25.dev0"
__version__ = "2022.8.5"
+970 -171
View File
File diff suppressed because it is too large Load Diff