summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Moore <p.f.moore@gmail.com>2022-10-15 11:59:14 +0100
committerPaul Moore <p.f.moore@gmail.com>2022-10-15 11:59:14 +0100
commit0a76da3a94130fad58b086e331c3d3e1b02a89eb (patch)
tree4778a2ef0d72e1a99086edad7d7179e05d758ef7
parent25638287f8b8bd571a10c4f5ae1b7f4eae454dcc (diff)
downloadpip-0a76da3a94130fad58b086e331c3d3e1b02a89eb.tar.gz
Bump for release22.3
-rw-r--r--NEWS.rst56
-rw-r--r--news/10716.feature.rst1
-rw-r--r--news/11111.feature.rst1
-rw-r--r--news/11250.feature.rst1
-rw-r--r--news/11254.trivial.rst0
-rw-r--r--news/11276.bugfix.rst2
-rw-r--r--news/11309.bugfix.rst1
-rw-r--r--news/11320.feature.rst2
-rw-r--r--news/11352.bugfix.rst2
-rw-r--r--news/11357.doc.rst1
-rw-r--r--news/11358.removal.rst2
-rw-r--r--news/11418.trivial.rst1
-rw-r--r--news/11452.removal.rst2
-rw-r--r--news/11454.removal.rst1
-rw-r--r--news/11459.feature.rst1
-rw-r--r--news/11491.bugfix.rst1
-rw-r--r--news/11493.removal.rst1
-rw-r--r--news/5444.feature.rst1
-rw-r--r--news/5580954E-E089-4CDB-857A-868BA1F7435D.trivial.rst0
-rw-r--r--news/5ba58886-1229-45ef-8a8a-dee90602ccdd.trivial.rst0
-rw-r--r--news/6264.bugfix.rst1
-rw-r--r--news/8559.removal.rst2
-rw-r--r--news/9789.removal.rst1
-rw-r--r--news/A12E8588-9311-4DAB-BD89-6FBC3F296275.trivial.rst0
-rw-r--r--news/c57bc03f-7001-4ff0-a100-c36496ff8758.trivial.rst0
-rw-r--r--news/certifi.vendor.rst1
-rw-r--r--news/distlib.vendor.rst1
-rw-r--r--news/idna.vendor.rst1
-rw-r--r--news/pep517.vendor.rst1
-rw-r--r--news/pygments.vendor.rst1
-rw-r--r--news/tenacity.vendor.rst1
-rw-r--r--news/typing_extensions.vendor.rst1
-rw-r--r--news/urllib3.vendor.rst1
-rw-r--r--src/pip/__init__.py2
34 files changed, 57 insertions, 34 deletions
diff --git a/NEWS.rst b/NEWS.rst
index 6485bc159..ec16a384e 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -9,6 +9,62 @@
.. towncrier release notes start
+22.3 (2022-10-15)
+=================
+
+Deprecations and Removals
+-------------------------
+
+- Deprecate ``--install-options`` which forces pip to use the deprecated ``install``
+ command of ``setuptools``. (`#11358 <https://github.com/pypa/pip/issues/11358>`_)
+- Deprecate installation with 'setup.py install' when no-binary is enabled for
+ source distributions without 'pyproject.toml'. (`#11452 <https://github.com/pypa/pip/issues/11452>`_)
+- Deprecate ```--no-binary`` disabling the wheel cache. (`#11454 <https://github.com/pypa/pip/issues/11454>`_)
+- Remove ``--use-feature=2020-resolver`` opt-in flag. This was supposed to be removed in 21.0, but missed during that release cycle. (`#11493 <https://github.com/pypa/pip/issues/11493>`_)
+- Deprecate installation with 'setup.py install' when the 'wheel' package is absent for
+ source distributions without 'pyproject.toml'. (`#8559 <https://github.com/pypa/pip/issues/8559>`_)
+- Remove the ability to use ``pip list --outdated`` in combination with ``--format=freeze``. (`#9789 <https://github.com/pypa/pip/issues/9789>`_)
+
+Features
+--------
+
+- Use ``shell=True`` for opening the editor with ``pip config edit``. (`#10716 <https://github.com/pypa/pip/issues/10716>`_)
+- Use the ``data-dist-info-metadata`` attribute from :pep:`658` to resolve distribution metadata without downloading the dist yet. (`#11111 <https://github.com/pypa/pip/issues/11111>`_)
+- Add an option to run the test suite with pip built as a zipapp. (`#11250 <https://github.com/pypa/pip/issues/11250>`_)
+- Add a ``--python`` option to allow pip to manage Python environments other
+ than the one pip is installed in. (`#11320 <https://github.com/pypa/pip/issues/11320>`_)
+- Document the new (experimental) zipapp distribution of pip. (`#11459 <https://github.com/pypa/pip/issues/11459>`_)
+- Use the much faster 'bzr co --lightweight' to obtain a copy of a Bazaar tree. (`#5444 <https://github.com/pypa/pip/issues/5444>`_)
+
+Bug Fixes
+---------
+
+- Fix ``--no-index`` when ``--index-url`` or ``--extra-index-url`` is specified
+ inside a requirements file. (`#11276 <https://github.com/pypa/pip/issues/11276>`_)
+- Ensure that the candidate ``pip`` executable exists, when checking for a new version of pip. (`#11309 <https://github.com/pypa/pip/issues/11309>`_)
+- Ignore distributions with invalid ``Name`` in metadata instead of crashing, when
+ using the ``importlib.metadata`` backend. (`#11352 <https://github.com/pypa/pip/issues/11352>`_)
+- Raise RequirementsFileParseError when parsing malformed requirements options that can't be sucessfully parsed by shlex. (`#11491 <https://github.com/pypa/pip/issues/11491>`_)
+- Fix build environment isolation on some system Pythons. (`#6264 <https://github.com/pypa/pip/issues/6264>`_)
+
+Vendored Libraries
+------------------
+
+- Upgrade certifi to 2022.9.24
+- Upgrade distlib to 0.3.6
+- Upgrade idna to 3.4
+- Upgrade pep517 to 0.13.0
+- Upgrade pygments to 2.13.0
+- Upgrade tenacity to 8.1.0
+- Upgrade typing_extensions to 4.4.0
+- Upgrade urllib3 to 1.26.12
+
+Improved Documentation
+----------------------
+
+- Mention that --quiet must be used when writing the installation report to stdout. (`#11357 <https://github.com/pypa/pip/issues/11357>`_)
+
+
22.2.2 (2022-08-03)
===================
diff --git a/news/10716.feature.rst b/news/10716.feature.rst
deleted file mode 100644
index ef09e1b8f..000000000
--- a/news/10716.feature.rst
+++ /dev/null
@@ -1 +0,0 @@
-Use ``shell=True`` for opening the editor with ``pip config edit``.
diff --git a/news/11111.feature.rst b/news/11111.feature.rst
deleted file mode 100644
index 39cb4b35c..000000000
--- a/news/11111.feature.rst
+++ /dev/null
@@ -1 +0,0 @@
-Use the ``data-dist-info-metadata`` attribute from :pep:`658` to resolve distribution metadata without downloading the dist yet.
diff --git a/news/11250.feature.rst b/news/11250.feature.rst
deleted file mode 100644
index a80c54699..000000000
--- a/news/11250.feature.rst
+++ /dev/null
@@ -1 +0,0 @@
-Add an option to run the test suite with pip built as a zipapp.
diff --git a/news/11254.trivial.rst b/news/11254.trivial.rst
deleted file mode 100644
index e69de29bb..000000000
--- a/news/11254.trivial.rst
+++ /dev/null
diff --git a/news/11276.bugfix.rst b/news/11276.bugfix.rst
deleted file mode 100644
index af8f518be..000000000
--- a/news/11276.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Fix ``--no-index`` when ``--index-url`` or ``--extra-index-url`` is specified
-inside a requirements file.
diff --git a/news/11309.bugfix.rst b/news/11309.bugfix.rst
deleted file mode 100644
index 9ee54057d..000000000
--- a/news/11309.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Ensure that the candidate ``pip`` executable exists, when checking for a new version of pip.
diff --git a/news/11320.feature.rst b/news/11320.feature.rst
deleted file mode 100644
index 843eac7c9..000000000
--- a/news/11320.feature.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Add a ``--python`` option to allow pip to manage Python environments other
-than the one pip is installed in.
diff --git a/news/11352.bugfix.rst b/news/11352.bugfix.rst
deleted file mode 100644
index 78016c912..000000000
--- a/news/11352.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Ignore distributions with invalid ``Name`` in metadata instead of crashing, when
-using the ``importlib.metadata`` backend.
diff --git a/news/11357.doc.rst b/news/11357.doc.rst
deleted file mode 100644
index 887928a08..000000000
--- a/news/11357.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Mention that --quiet must be used when writing the installation report to stdout.
diff --git a/news/11358.removal.rst b/news/11358.removal.rst
deleted file mode 100644
index 9767949b4..000000000
--- a/news/11358.removal.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Deprecate ``--install-options`` which forces pip to use the deprecated ``install``
-command of ``setuptools``.
diff --git a/news/11418.trivial.rst b/news/11418.trivial.rst
deleted file mode 100644
index df32a0d0b..000000000
--- a/news/11418.trivial.rst
+++ /dev/null
@@ -1 +0,0 @@
-Patch non-exploitable ReDoS vulnerability in wheel_file regex
diff --git a/news/11452.removal.rst b/news/11452.removal.rst
deleted file mode 100644
index ac29324ab..000000000
--- a/news/11452.removal.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Deprecate installation with 'setup.py install' when no-binary is enabled for
-source distributions without 'pyproject.toml'.
diff --git a/news/11454.removal.rst b/news/11454.removal.rst
deleted file mode 100644
index 14c4dc73a..000000000
--- a/news/11454.removal.rst
+++ /dev/null
@@ -1 +0,0 @@
-Deprecate ```--no-binary`` disabling the wheel cache.
diff --git a/news/11459.feature.rst b/news/11459.feature.rst
deleted file mode 100644
index a4a11c093..000000000
--- a/news/11459.feature.rst
+++ /dev/null
@@ -1 +0,0 @@
-Document the new (experimental) zipapp distribution of pip.
diff --git a/news/11491.bugfix.rst b/news/11491.bugfix.rst
deleted file mode 100644
index a8f53927f..000000000
--- a/news/11491.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Raise RequirementsFileParseError when parsing malformed requirements options that can't be sucessfully parsed by shlex.
diff --git a/news/11493.removal.rst b/news/11493.removal.rst
deleted file mode 100644
index de559e899..000000000
--- a/news/11493.removal.rst
+++ /dev/null
@@ -1 +0,0 @@
-Remove ``--use-feature=2020-resolver`` opt-in flag. This was supposed to be removed in 21.0, but missed during that release cycle.
diff --git a/news/5444.feature.rst b/news/5444.feature.rst
deleted file mode 100644
index 19780e694..000000000
--- a/news/5444.feature.rst
+++ /dev/null
@@ -1 +0,0 @@
-Use the much faster 'bzr co --lightweight' to obtain a copy of a Bazaar tree.
diff --git a/news/5580954E-E089-4CDB-857A-868BA1F7435D.trivial.rst b/news/5580954E-E089-4CDB-857A-868BA1F7435D.trivial.rst
deleted file mode 100644
index e69de29bb..000000000
--- a/news/5580954E-E089-4CDB-857A-868BA1F7435D.trivial.rst
+++ /dev/null
diff --git a/news/5ba58886-1229-45ef-8a8a-dee90602ccdd.trivial.rst b/news/5ba58886-1229-45ef-8a8a-dee90602ccdd.trivial.rst
deleted file mode 100644
index e69de29bb..000000000
--- a/news/5ba58886-1229-45ef-8a8a-dee90602ccdd.trivial.rst
+++ /dev/null
diff --git a/news/6264.bugfix.rst b/news/6264.bugfix.rst
deleted file mode 100644
index 66554a473..000000000
--- a/news/6264.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fix build environment isolation on some system Pythons.
diff --git a/news/8559.removal.rst b/news/8559.removal.rst
deleted file mode 100644
index aa9f81412..000000000
--- a/news/8559.removal.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Deprecate installation with 'setup.py install' when the 'wheel' package is absent for
-source distributions without 'pyproject.toml'.
diff --git a/news/9789.removal.rst b/news/9789.removal.rst
deleted file mode 100644
index 90ded9235..000000000
--- a/news/9789.removal.rst
+++ /dev/null
@@ -1 +0,0 @@
-Remove the ability to use ``pip list --outdated`` in combination with ``--format=freeze``.
diff --git a/news/A12E8588-9311-4DAB-BD89-6FBC3F296275.trivial.rst b/news/A12E8588-9311-4DAB-BD89-6FBC3F296275.trivial.rst
deleted file mode 100644
index e69de29bb..000000000
--- a/news/A12E8588-9311-4DAB-BD89-6FBC3F296275.trivial.rst
+++ /dev/null
diff --git a/news/c57bc03f-7001-4ff0-a100-c36496ff8758.trivial.rst b/news/c57bc03f-7001-4ff0-a100-c36496ff8758.trivial.rst
deleted file mode 100644
index e69de29bb..000000000
--- a/news/c57bc03f-7001-4ff0-a100-c36496ff8758.trivial.rst
+++ /dev/null
diff --git a/news/certifi.vendor.rst b/news/certifi.vendor.rst
deleted file mode 100644
index 7477fcc2a..000000000
--- a/news/certifi.vendor.rst
+++ /dev/null
@@ -1 +0,0 @@
-Upgrade certifi to 2022.9.24
diff --git a/news/distlib.vendor.rst b/news/distlib.vendor.rst
deleted file mode 100644
index 5fa036110..000000000
--- a/news/distlib.vendor.rst
+++ /dev/null
@@ -1 +0,0 @@
-Upgrade distlib to 0.3.6
diff --git a/news/idna.vendor.rst b/news/idna.vendor.rst
deleted file mode 100644
index 087598cbf..000000000
--- a/news/idna.vendor.rst
+++ /dev/null
@@ -1 +0,0 @@
-Upgrade idna to 3.4
diff --git a/news/pep517.vendor.rst b/news/pep517.vendor.rst
deleted file mode 100644
index e18c1d87b..000000000
--- a/news/pep517.vendor.rst
+++ /dev/null
@@ -1 +0,0 @@
-Upgrade pep517 to 0.13.0
diff --git a/news/pygments.vendor.rst b/news/pygments.vendor.rst
deleted file mode 100644
index 0e5f7c580..000000000
--- a/news/pygments.vendor.rst
+++ /dev/null
@@ -1 +0,0 @@
-Upgrade pygments to 2.13.0
diff --git a/news/tenacity.vendor.rst b/news/tenacity.vendor.rst
deleted file mode 100644
index 45921e5bf..000000000
--- a/news/tenacity.vendor.rst
+++ /dev/null
@@ -1 +0,0 @@
-Upgrade tenacity to 8.1.0
diff --git a/news/typing_extensions.vendor.rst b/news/typing_extensions.vendor.rst
deleted file mode 100644
index 603718907..000000000
--- a/news/typing_extensions.vendor.rst
+++ /dev/null
@@ -1 +0,0 @@
-Upgrade typing_extensions to 4.4.0
diff --git a/news/urllib3.vendor.rst b/news/urllib3.vendor.rst
deleted file mode 100644
index 5942d4651..000000000
--- a/news/urllib3.vendor.rst
+++ /dev/null
@@ -1 +0,0 @@
-Upgrade urllib3 to 1.26.12
diff --git a/src/pip/__init__.py b/src/pip/__init__.py
index a40148f00..168abe861 100644
--- a/src/pip/__init__.py
+++ b/src/pip/__init__.py
@@ -1,6 +1,6 @@
from typing import List, Optional
-__version__ = "22.3.dev0"
+__version__ = "22.3"
def main(args: Optional[List[str]] = None) -> int: