Skip to content

Commit 1d5b120

Browse files
authored
Merge pull request #12145 from pfmoore/release/23.2
Release 23.2
2 parents 324dd44 + b6a2670 commit 1d5b120

30 files changed

+66
-35
lines changed

AUTHORS.txt

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ atse
7171
Atsushi Odagiri
7272
Avinash Karhana
7373
Avner Cohen
74+
Awit (Ah-Wit) Ghirmai
7475
Baptiste Mispelon
7576
Barney Gale
7677
barneygale
@@ -126,6 +127,7 @@ Chih-Hsuan Yen
126127
Chris Brinker
127128
Chris Hunt
128129
Chris Jerdonek
130+
Chris Kuehl
129131
Chris McDonough
130132
Chris Pawley
131133
Chris Pryer
@@ -330,6 +332,8 @@ Jarek Potiuk
330332
jarondl
331333
Jason Curtis
332334
Jason R. Coombs
335+
JasonMo
336+
JasonMo1
333337
Jay Graves
334338
Jean-Christophe Fillion-Robin
335339
Jeff Barber
@@ -344,6 +348,7 @@ Jim Fisher
344348
Jim Garrison
345349
Jiun Bae
346350
Jivan Amara
351+
Joe Bylund
347352
Joe Michelini
348353
John Paton
349354
John T. Wodder II
@@ -473,7 +478,7 @@ Miro Hrončok
473478
Monica Baluna
474479
montefra
475480
Monty Taylor
476-
Muha Ajjan
481+
Muha Ajjan
477482
Nadav Wexler
478483
Nahuel Ambrosini
479484
Nate Coraor
@@ -582,6 +587,7 @@ Rishi
582587
RobberPhex
583588
Robert Collins
584589
Robert McGibbon
590+
Robert Pollak
585591
Robert T. McGibbon
586592
robin elisha robinson
587593
Roey Berman
@@ -614,6 +620,7 @@ SeongSoo Cho
614620
Sergey Vasilyev
615621
Seth Michael Larson
616622
Seth Woodworth
623+
Shantanu
617624
shireenrao
618625
Shivansh-007
619626
Shlomi Fish
@@ -638,6 +645,7 @@ Steve Barnes
638645
Steve Dower
639646
Steve Kowalik
640647
Steven Myint
648+
Steven Silvester
641649
stonebig
642650
Stéphane Bidoul
643651
Stéphane Bidoul (ACSONE)
@@ -707,6 +715,7 @@ Wilson Mo
707715
wim glenn
708716
Winson Luk
709717
Wolfgang Maier
718+
Wu Zhenyu
710719
XAMES3
711720
Xavier Fernandez
712721
xoviat
@@ -725,4 +734,4 @@ Zvezdan Petkovic
725734
Łukasz Langa
726735
Роман Донченко
727736
Семён Марьясин
728-
Martin Häcker
737+
‮rekcäH nitraM‮

NEWS.rst

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,60 @@
99
1010
.. towncrier release notes start
1111
12+
23.2 (2023-07-15)
13+
=================
14+
15+
Process
16+
-------
17+
18+
- Deprecate support for eggs for Python 3.11 or later, when the new ``importlib.metadata`` backend is used to load distribution metadata. This only affects the egg *distribution format* (with the ``.egg`` extension); distributions using the ``.egg-info`` *metadata format* (but are not actually eggs) are not affected. For more information about eggs, see `relevant section in the setuptools documentation <https://setuptools.pypa.io/en/stable/deprecated/python_eggs.html>`__.
19+
20+
Deprecations and Removals
21+
-------------------------
22+
23+
- Deprecate legacy version and version specifiers that don't conform to `PEP 440
24+
<https://peps.python.org/pep-0440/>`_ (`#12063 <https://github.com/pypa/pip/issues/12063>`_)
25+
- ``freeze`` no longer excludes the ``setuptools``, ``distribute``, and ``wheel``
26+
from the output when running on Python 3.12 or later, where they are not
27+
included in a virtual environment by default. Use ``--exclude`` if you wish to
28+
exclude any of these packages. (`#4256 <https://github.com/pypa/pip/issues/4256>`_)
29+
30+
Features
31+
--------
32+
33+
- make rejection messages slightly different between 1 and 8, so the user can make the difference. (`#12040 <https://github.com/pypa/pip/issues/12040>`_)
34+
35+
Bug Fixes
36+
---------
37+
38+
- Fix ``pip completion --zsh``. (`#11416 <https://github.com/pypa/pip/issues/11416>`_)
39+
- Prevent downloading files twice when PEP 658 metadata is present (`#11847 <https://github.com/pypa/pip/issues/11847>`_)
40+
- Add permission check before configuration (`#11920 <https://github.com/pypa/pip/issues/11920>`_)
41+
- Fix deprecation warnings in Python 3.12 for usage of shutil.rmtree (`#11957 <https://github.com/pypa/pip/issues/11957>`_)
42+
- Ignore invalid or unreadable ``origin.json`` files in the cache of locally built wheels. (`#11985 <https://github.com/pypa/pip/issues/11985>`_)
43+
- Fix installation of packages with PEP658 metadata using non-canonicalized names (`#12038 <https://github.com/pypa/pip/issues/12038>`_)
44+
- Correctly parse ``dist-info-metadata`` values from JSON-format index data. (`#12042 <https://github.com/pypa/pip/issues/12042>`_)
45+
- Fail with an error if the ``--python`` option is specified after the subcommand name. (`#12067 <https://github.com/pypa/pip/issues/12067>`_)
46+
- Fix slowness when using ``importlib.metadata`` (the default way for pip to read metadata in Python 3.11+) and there is a large overlap between already installed and to-be-installed packages. (`#12079 <https://github.com/pypa/pip/issues/12079>`_)
47+
- Pass the ``-r`` flag to mercurial to be explicit that a revision is passed and protect
48+
against ``hg`` options injection as part of VCS URLs. Users that do not have control on
49+
VCS URLs passed to pip are advised to upgrade. (`#12119 <https://github.com/pypa/pip/issues/12119>`_)
50+
51+
Vendored Libraries
52+
------------------
53+
54+
- Upgrade certifi to 2023.5.7
55+
- Upgrade platformdirs to 3.8.1
56+
- Upgrade pygments to 2.15.1
57+
- Upgrade pyparsing to 3.1.0
58+
- Upgrade Requests to 2.31.0
59+
- Upgrade rich to 13.4.2
60+
- Upgrade setuptools to 68.0.0
61+
- Updated typing_extensions to 4.6.0
62+
- Upgrade typing_extensions to 4.7.1
63+
- Upgrade urllib3 to 1.26.16
64+
65+
1266
23.1.2 (2023-04-26)
1367
===================
1468

news/11416.bugfix.rst

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

news/11847.bugfix.rst

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

news/11920.bugfix.rst

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

news/11957.bugfix.rst

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

news/11985.bugfix.rst

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

news/11996.process.rst

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

news/12038.bugfix.rst

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

news/12040.feature.rst

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

0 commit comments

Comments
 (0)