|
1 | 1 | # Change Log |
2 | 2 |
|
| 3 | +## [2.4.0] - 2026-05-03 |
| 4 | + |
| 5 | +### Added |
| 6 | + |
| 7 | +- Add `solver.min-release-age` setting to require package releases to be a certain number of days old before they are considered during dependency resolution ([#10824](https://github.com/python-poetry/poetry/pull/10824)). |
| 8 | +- Add `solver.min-release-age-exclude` to exclude selected packages from age filtering ([#10824](https://github.com/python-poetry/poetry/pull/10824)). |
| 9 | +- Add `solver.min-release-age-exclude-source` to exclude all packages from selected package indexes from age filtering ([#10824](https://github.com/python-poetry/poetry/pull/10824)). |
| 10 | + |
| 11 | +### Changed |
| 12 | + |
| 13 | +- Raise an error instead of silently ignoring a package name that is not a dependency when it is passed to `poetry update` ([#10721](https://github.com/python-poetry/poetry/pull/10721)). |
| 14 | +- Automatically add a trailing slash to legacy repository URLs (used for publishing) if missing ([#10785](https://github.com/python-poetry/poetry/pull/10785)). |
| 15 | +- Require `installer>=1.0.0` ([#10869](https://github.com/python-poetry/poetry/pull/10869)). |
| 16 | +- Allow `findpython>=0.8` ([#10874](https://github.com/python-poetry/poetry/pull/10874)). |
| 17 | + |
| 18 | +### Fixed |
| 19 | + |
| 20 | +- Fix an issue where `requires-plugins` fails on Windows if scheme paths are on different drives ([#10869](https://github.com/python-poetry/poetry/pull/10869)). |
| 21 | +- Fix an issue where the order of markers in the lock file was not deterministic ([#10720](https://github.com/python-poetry/poetry/pull/10720)). |
| 22 | +- Fix an issue where the wrong command was suggested when `poetry self` commands failed due to an outdated lock file ([#10715](https://github.com/python-poetry/poetry/pull/10715)). |
| 23 | +- Fix an issue where `poetry env activate` did not work for bash on Windows ([#10716](https://github.com/python-poetry/poetry/pull/10716)). |
| 24 | +- Fix an issue where `poetry debug resolve` failed when there was a package with a marker ([#10807](https://github.com/python-poetry/poetry/pull/10807)). |
| 25 | +- Fix an issue where the error message about a build backend failure contained garbled `--config-settings` ([#10804](https://github.com/python-poetry/poetry/pull/10804)). |
| 26 | +- Fix an issue where a false warning about a circular dependency was printed ([#10811](https://github.com/python-poetry/poetry/pull/10811)). |
| 27 | +- Fix an issue where falsy config values were incorrectly treated as not set ([#10808](https://github.com/python-poetry/poetry/pull/10808)). |
| 28 | +- Fix an issue where `poetry publish --build` ignored failing builds and uploaded stale artifacts ([#10802](https://github.com/python-poetry/poetry/pull/10802)). |
| 29 | +- Fix an issue where `poetry publish` was aborted instead of retrying after package registration ([#10801](https://github.com/python-poetry/poetry/pull/10801)). |
| 30 | +- Fix an issue where zip files were not closed after fetching metadata via `lazy-wheel` ([#10800](https://github.com/python-poetry/poetry/pull/10800)). |
| 31 | +- Fix an issue where data fetched via `lazy-wheel` was corrupted when part of it had already been cached ([#10806](https://github.com/python-poetry/poetry/pull/10806)). |
| 32 | +- Fix an issue where further packages were installed even though installation should be aborted ([#10742](https://github.com/python-poetry/poetry/pull/10742)). |
| 33 | +- Fix an issue where installed packages without a `METADATA` file caused an exception on Python 3.15+ ([#10860](https://github.com/python-poetry/poetry/pull/10860)). |
| 34 | +- Fix an issue where `http-basic` could not be set for repository names with periods ([#10845](https://github.com/python-poetry/poetry/pull/10845)). |
| 35 | +- Fix an issue where calculating the hash of large wheels failed with a memory error ([#10814](https://github.com/python-poetry/poetry/pull/10814)). |
| 36 | + |
| 37 | +### Docs |
| 38 | + |
| 39 | +- Clarify the precedence of configuration sources ([#10757](https://github.com/python-poetry/poetry/pull/10757)). |
| 40 | +- Add a note about the influence of `.gitignore` on `tool.poetry.packages` ([#10835](https://github.com/python-poetry/poetry/pull/10835)). |
| 41 | + |
| 42 | +### poetry-core ([`2.4.0`](https://github.com/python-poetry/poetry-core/releases/tag/2.4.0)) |
| 43 | + |
| 44 | +- Update vendored `packaging` to `26.2` ([#936](https://github.com/python-poetry/poetry-core/pull/936)). |
| 45 | + |
| 46 | + |
3 | 47 | ## [2.3.4] - 2026-04-12 |
4 | 48 |
|
5 | 49 | ### Fixed |
@@ -2701,7 +2745,8 @@ Initial release |
2701 | 2745 |
|
2702 | 2746 |
|
2703 | 2747 |
|
2704 | | -[Unreleased]: https://github.com/python-poetry/poetry/compare/2.3.4...main |
| 2748 | +[Unreleased]: https://github.com/python-poetry/poetry/compare/2.4.0...main |
| 2749 | +[2.4.0]: https://github.com/python-poetry/poetry/releases/tag/2.4.0 |
2705 | 2750 | [2.3.4]: https://github.com/python-poetry/poetry/releases/tag/2.3.4 |
2706 | 2751 | [2.3.3]: https://github.com/python-poetry/poetry/releases/tag/2.3.3 |
2707 | 2752 | [2.3.2]: https://github.com/python-poetry/poetry/releases/tag/2.3.2 |
|
0 commit comments