diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a658ca681..2ef8de175f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## Release v2.15.4 (2024-05-30) + + +### Bug Fixes + +- Build wheel from sdist if available, to make sure sdist is built properly. This behavior is consistent with [pypa/build](https://pypi.org/project/build). ([#2843](https://github.com/pdm-project/pdm/issues/2843)) +- Fix the issue of self-referencing extra dependencies failing to be resolved for local packages. ([#2898](https://github.com/pdm-project/pdm/issues/2898)) +- Fix an issue of max recursion depth error when parsing a poetry project with circular dependencies on local packages. ([#2900](https://github.com/pdm-project/pdm/issues/2900)) +- Fix a bug that VCS dependencies and `--self` don't work in the exported requirements.txt with hashes. ([#2908](https://github.com/pdm-project/pdm/issues/2908)) +- Fix a cache miss when there exist built wheels for a given link. ([#2912](https://github.com/pdm-project/pdm/issues/2912)) +- Don't try to store caches when `--no-cache` is given. ([#2913](https://github.com/pdm-project/pdm/issues/2913)) + + ## Release v2.15.3 (2024-05-20) diff --git a/news/2843.bugfix.md b/news/2843.bugfix.md deleted file mode 100644 index e0650a2652..0000000000 --- a/news/2843.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Build wheel from sdist if available, to make sure sdist is built properly. This behavior is consistent with [pypa/build](https://pypi.org/project/build). diff --git a/news/2898.bugfix.md b/news/2898.bugfix.md deleted file mode 100644 index 0fc0e8687d..0000000000 --- a/news/2898.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix the issue of self-referencing extra dependencies failing to be resolved for local packages. diff --git a/news/2900.bugfix.md b/news/2900.bugfix.md deleted file mode 100644 index 0fd7acac75..0000000000 --- a/news/2900.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix an issue of max recursion depth error when parsing a poetry project with circular dependencies on local packages. diff --git a/news/2908.bugfix.md b/news/2908.bugfix.md deleted file mode 100644 index 5f1da2d6f4..0000000000 --- a/news/2908.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix a bug that VCS dependencies and `--self` don't work in the exported requirements.txt with hashes. diff --git a/news/2912.bugfix.md b/news/2912.bugfix.md deleted file mode 100644 index 4ef9cf9f75..0000000000 --- a/news/2912.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix a cache miss when there exist built wheels for a given link. diff --git a/news/2913.bugfix.md b/news/2913.bugfix.md deleted file mode 100644 index 950e8b6303..0000000000 --- a/news/2913.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Don't try to store caches when `--no-cache` is given.