Skip to content

Commit f75b023

Browse files
committed
Add poetry 1.8.3 to history and merge fixes for older releases
1 parent 88500f1 commit f75b023

File tree

1 file changed

+56
-19
lines changed

1 file changed

+56
-19
lines changed

content/history.md

Lines changed: 56 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,42 @@ layout: single
44
title: History
55
---
66

7+
## [1.8.3] - 2024-05-08
8+
9+
### Added
10+
11+
- Add support for untagged CPython builds with versions ending with a `+` ([#9207](https://github.com/python-poetry/poetry/pull/9207)).
12+
13+
### Changed
14+
15+
- Require `pkginfo>=1.10` to ensure support for packages with metadata version 2.3 ([#9130](https://github.com/python-poetry/poetry/pull/9130)).
16+
- Improve locking on FIPS systems ([#9152](https://github.com/python-poetry/poetry/pull/9152)).
17+
18+
### Fixed
19+
20+
- Fix an issue where unrecognized package metadata versions silently resulted in empty dependencies ([#9203](https://github.com/python-poetry/poetry/pull/9203),
21+
[#9226](https://github.com/python-poetry/poetry/pull/9226)).
22+
- Fix an issue where trailing slashes in git URLs where not handled correctly ([#9205](https://github.com/python-poetry/poetry/pull/9205)).
23+
- Fix an issue where `poetry self` commands printed a warning that the current project cannot be installed ([#9302](https://github.com/python-poetry/poetry/pull/9302)).
24+
- Fix an issue where `poetry install` sporadically failed with a `KeyError` due to a race condition ([#9335](https://github.com/python-poetry/poetry/pull/9335)).
25+
26+
### Docs
27+
28+
- Fix incorrect information about `poetry shell` ([#9060](https://github.com/python-poetry/poetry/pull/9060)).
29+
- Add a git subdirectory example to `poetry add` ([#9080](https://github.com/python-poetry/poetry/pull/9080)).
30+
- Mention interactive credential configuration ([#9074](https://github.com/python-poetry/poetry/pull/9074)).
31+
- Add notes for optional advanced installation steps ([#9098](https://github.com/python-poetry/poetry/pull/9098)).
32+
- Add reference to configuration credentials in documentation of poetry `publish` ([#9110](https://github.com/python-poetry/poetry/pull/9110)).
33+
- Improve documentation for configuring credentials via environment variables ([#9121](https://github.com/python-poetry/poetry/pull/9121)).
34+
- Remove misleading wording around virtual environments ([#9213](https://github.com/python-poetry/poetry/pull/9213)).
35+
- Remove outdated advice regarding seeding keyring backends ([#9164](https://github.com/python-poetry/poetry/pull/9164)).
36+
- Add a `pyproject.toml` example for a dependency with multiple extras ([#9138](https://github.com/python-poetry/poetry/pull/9138)).
37+
- Clarify help of `poetry add` ([#9230](https://github.com/python-poetry/poetry/pull/9230)).
38+
- Add a note how to configure credentials for TestPyPI for `poetry publish` ([#9255](https://github.com/python-poetry/poetry/pull/9255)).
39+
- Fix information about the `--readme` option in `poetry new` ([#9260](https://github.com/python-poetry/poetry/pull/9260)).
40+
- Clarify what is special about the Python constraint in `dependencies` ([#9256](https://github.com/python-poetry/poetry/pull/9256)).
41+
- Update how to uninstall plugins via `pipx` ([#9320](https://github.com/python-poetry/poetry/pull/9320)).
42+
743
## [1.8.2] - 2024-03-02
844

945
### Fixed
@@ -13,7 +49,7 @@ title: History
1349
- Improve `lazy-wheel` error handling if the index server pretends to support HTTP range requests but does not respect them ([#9084](https://github.com/python-poetry/poetry/pull/9084)).
1450
- Improve `lazy-wheel` to allow redirects for HEAD requests ([#9087](https://github.com/python-poetry/poetry/pull/9087)).
1551
- Improve debug logging for `lazy-wheel` errors ([#9059](https://github.com/python-poetry/poetry/pull/9059)).
16-
- Fix an issue where the hash of a metadata file could not be calculated correctly due to an encoding issue ([#9048](https://github.com/python-poetry/poetry/pull/9048)).
52+
- Fix an issue where the hash of a metadata file could not be calculated correctly due to an encoding issue ([#9049](https://github.com/python-poetry/poetry/pull/9049)).
1753
- Fix an issue where `poetry add` failed in non-package mode if no project name was set ([#9046](https://github.com/python-poetry/poetry/pull/9046)).
1854
- Fix an issue where a hint to non-package mode was not compliant with the final name of the setting ([#9073](https://github.com/python-poetry/poetry/pull/9073)).
1955

@@ -144,7 +180,7 @@ title: History
144180
- Set Poetry as `user-agent` for all HTTP requests ([#8394](https://github.com/python-poetry/poetry/pull/8394)).
145181
- Do not install `setuptools` per default in Python 3.12 ([#7803](https://github.com/python-poetry/poetry/pull/7803)).
146182
- Do not install `wheel` per default ([#7803](https://github.com/python-poetry/poetry/pull/7803)).
147-
- Remove `setuptools` and `wheel` when running `poetry install --sync` if they are not required by the project ([#8600](https://github.com/python-poetry/poetry/pull/#8600)).
183+
- Remove `setuptools` and `wheel` when running `poetry install --sync` if they are not required by the project ([#8600](https://github.com/python-poetry/poetry/pull/8600)).
148184
- Improve error message about PEP-517 support ([#8463](https://github.com/python-poetry/poetry/pull/8463)).
149185
- Improve `keyring` handling ([#8227](https://github.com/python-poetry/poetry/pull/8227)).
150186
- Read the `description` field when extracting metadata from `setup.py` files ([#8545](https://github.com/python-poetry/poetry/pull/8545)).
@@ -612,24 +648,24 @@ For a detailed breakdown of user-facing changes, refer to the [1.2.0 release ann
612648
### Docs
613649

614650
- Added note about how to add a git dependency with a subdirectory ([#6218](https://github.com/python-poetry/poetry/pull/6218))
615-
- Fixed several style issues in the docs ([#6255](https://github.com/python-poetry/poetry/pull/6255))
616-
- Fixed outdated info about `--only` parameter ([#6264](https://github.com/python-poetry/poetry/pull/6264))
651+
- Fixed several style issues in the docs ([#6254](https://github.com/python-poetry/poetry/pull/6254))
652+
- Fixed outdated info about `--only` parameter ([#6263](https://github.com/python-poetry/poetry/pull/6263))
617653

618654
## [1.2.0rc2] - 2022-08-26
619655

620656
### Fixed
621657

622-
- Fixed an issue where virtual environments were created unnecessarily when running `poetry self` commands ([#6226](https://github.com/python-poetry/poetry/pull/6226))
623-
- Ensure that packages' `pretty_name` are written to the lock file ([#6243](https://github.com/python-poetry/poetry/pull/6243))
658+
- Fixed an issue where virtual environments were created unnecessarily when running `poetry self` commands ([#6225](https://github.com/python-poetry/poetry/pull/6225))
659+
- Ensure that packages' `pretty_name` are written to the lock file ([#6237](https://github.com/python-poetry/poetry/pull/6237))
624660

625661
### Improvements
626662

627-
- Improved the consistency of `Pool().remove_repository()` to make it easier to write poetry plugins ([#6231](https://github.com/python-poetry/poetry/pull/6231))
663+
- Improved the consistency of `Pool().remove_repository()` to make it easier to write poetry plugins ([#6214](https://github.com/python-poetry/poetry/pull/6214))
628664

629665
### Docs
630666

631-
- Removed mentions of Python 2.7 from docs ([#6235](https://github.com/python-poetry/poetry/pull/6235))
632-
- Added note about the difference between groups and extras ([#6232](https://github.com/python-poetry/poetry/pull/6232))
667+
- Removed mentions of Python 2.7 from docs ([#6234](https://github.com/python-poetry/poetry/pull/6234))
668+
- Added note about the difference between groups and extras ([#6230](https://github.com/python-poetry/poetry/pull/6230))
633669

634670
## [1.2.0rc1] - 2022-08-22
635671

@@ -890,7 +926,7 @@ $ poetry cache clear pypi --all
890926
- Added in info output to `poetry lock --check` ([#5081](https://github.com/python-poetry/poetry/pull/5081)).
891927
- Added new argument `--all` for `poetry env remove` to delete all venv of a project at once ([#3212](https://github.com/python-poetry/poetry/pull/3212)).
892928
- Added new argument `--without-urls` for `poetry export` to exclude source repository urls from the exported file ([#4763](https://github.com/python-poetry/poetry/pull/4763)).
893-
- Added a `new installer.max-workers` property to the configuration ([#3516](https://github.com/python-poetry/poetry/pull/3516)).
929+
- Added a new `installer.max-workers` property to the configuration ([#3516](https://github.com/python-poetry/poetry/pull/3516)).
894930
- Added experimental option `virtualenvs.prefer-active-python` to detect current activated python ([#4852](https://github.com/python-poetry/poetry/pull/4852)).
895931
- Added better windows shell support ([#5053](https://github.com/python-poetry/poetry/pull/5053)).
896932

@@ -905,7 +941,7 @@ $ poetry cache clear pypi --all
905941

906942
### Fixed
907943

908-
- Fixed an issue where envs in MSYS2 always reported as broken ([#4942](9https://github.com/python-poetry/poetry/pull/4942))
944+
- Fixed an issue where envs in MSYS2 always reported as broken ([#4942](https://github.com/python-poetry/poetry/pull/4942))
909945
- Fixed an issue where conda envs in windows are always reported as broken([#5008](https://github.com/python-poetry/poetry/pull/5008))
910946
- Fixed an issue where Poetry doesn't find its own venv on `poetry self update` ([#5048](https://github.com/python-poetry/poetry/pull/5048))
911947

@@ -1026,7 +1062,7 @@ It **drops** support for Python 2.7 and 3.5.
10261062
- Fixed an error where VCS dependencies were always updated. ([#3947](https://github.com/python-poetry/poetry/pull/3947))
10271063
- Fixed an error where the incorrect version of a package was locked when using environment markers. ([#3945](https://github.com/python-poetry/poetry/pull/3945))
10281064

1029-
## [1.1.5] - 2021-03-03
1065+
## [1.1.5] - 2021-03-04
10301066

10311067
### Fixed
10321068

@@ -1889,7 +1925,7 @@ This release **must** be downloaded via the `get-poetry.py` script and not via t
18891925
- Improved dependency resolution to avoid unnecessary operations.
18901926
- Improved dependency resolution speed.
18911927
- Improved CLI reactivity by deferring imports.
1892-
- License classifer is not automatically added to classifers.
1928+
- License classifier is not automatically added to classifiers.
18931929

18941930
### Fixed
18951931

@@ -1930,7 +1966,7 @@ This release **must** be downloaded via the `get-poetry.py` script and not via t
19301966

19311967
### Changed
19321968

1933-
- Changed how wilcard constraints are handled.
1969+
- Changed how wildcard constraints are handled.
19341970

19351971
### Fixed
19361972

@@ -2048,7 +2084,8 @@ This release **must** be downloaded via the `get-poetry.py` script and not via t
20482084

20492085
Initial release
20502086

2051-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.8.2...main
2087+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.8.3...main
2088+
[1.8.3]: https://github.com/python-poetry/poetry/releases/tag/1.8.3
20522089
[1.8.2]: https://github.com/python-poetry/poetry/releases/tag/1.8.2
20532090
[1.8.1]: https://github.com/python-poetry/poetry/releases/tag/1.8.1
20542091
[1.8.0]: https://github.com/python-poetry/poetry/releases/tag/1.8.0
@@ -2069,19 +2106,19 @@ Initial release
20692106
[1.2.0]: https://github.com/python-poetry/poetry/releases/tag/1.2.0
20702107
[1.2.0rc2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc2
20712108
[1.2.0rc1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc1
2072-
[1.1.15]: https://github.com/python-poetry/poetry/releases/tag/1.1.15
20732109
[1.2.0b3]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b3
2074-
[1.1.14]: https://github.com/python-poetry/poetry/releases/tag/1.1.14
20752110
[1.2.0b2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b2
20762111
[1.2.0b1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b1
2112+
[1.2.0a2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0a2
2113+
[1.2.0a1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0a1
2114+
[1.1.15]: https://github.com/python-poetry/poetry/releases/tag/1.1.15
2115+
[1.1.14]: https://github.com/python-poetry/poetry/releases/tag/1.1.14
20772116
[1.1.13]: https://github.com/python-poetry/poetry/releases/tag/1.1.13
20782117
[1.1.12]: https://github.com/python-poetry/poetry/releases/tag/1.1.12
20792118
[1.1.11]: https://github.com/python-poetry/poetry/releases/tag/1.1.11
20802119
[1.1.10]: https://github.com/python-poetry/poetry/releases/tag/1.1.10
20812120
[1.1.9]: https://github.com/python-poetry/poetry/releases/tag/1.1.9
20822121
[1.1.8]: https://github.com/python-poetry/poetry/releases/tag/1.1.8
2083-
[1.2.0a2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0a2
2084-
[1.2.0a1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0a1
20852122
[1.1.7]: https://github.com/python-poetry/poetry/releases/tag/1.1.7
20862123
[1.1.6]: https://github.com/python-poetry/poetry/releases/tag/1.1.6
20872124
[1.1.5]: https://github.com/python-poetry/poetry/releases/tag/1.1.5

0 commit comments

Comments
 (0)