diff --git a/CHANGELOG.md b/CHANGELOG.md index b18378420c..bd515b15aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## Release v2.19.3 (2024-10-19) + +### Features & Improvements + +- Allow linking existing Python interpreters to PDM's managed location. ([#3215](https://github.com/pdm-project/pdm/issues/3215)) + +### Bug Fixes + +- Fix a bug that overrides provided by environment variables do not work. ([#3182](https://github.com/pdm-project/pdm/issues/3182)) +- Allow prereleases when the requirement is pinned even if disabled by project ([#3202](https://github.com/pdm-project/pdm/issues/3202)) +- Pass the python path to the uv venv command. ([#3204](https://github.com/pdm-project/pdm/issues/3204)) +- Fix the infinite loop when running in uv mode if the current project has dynamic metadata. ([#3207](https://github.com/pdm-project/pdm/issues/3207)) +- Add `--no-frozen-deps` option to `install-pdm.py` script to allow installing newer versions of dependencies. ([#3213](https://github.com/pdm-project/pdm/issues/3213)) +- `pdm self update` now prefers the locked dependencies unless `--no-frozen-deps` is specified. ([#3216](https://github.com/pdm-project/pdm/issues/3216)) +- By default, `pdm outdated` will only list direct dependencies. This can be changed by adding the `--include-sub` option. ([#3218](https://github.com/pdm-project/pdm/issues/3218)) + +### Documentation + +- Show users the way to uninstall pdm in a more obvious way ([#2470](https://github.com/pdm-project/pdm/issues/2470)) + + ## Release v2.19.2 (2024-10-11) diff --git a/news/2470.doc.md b/news/2470.doc.md deleted file mode 100644 index f2bc3f483a..0000000000 --- a/news/2470.doc.md +++ /dev/null @@ -1 +0,0 @@ -Show users the way to uninstall pdm in a more obvious way \ No newline at end of file diff --git a/news/3182.bugfix.md b/news/3182.bugfix.md deleted file mode 100644 index 284582bfd8..0000000000 --- a/news/3182.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix a bug that overrides provided by environment variables do not work. diff --git a/news/3202.bugfix.md b/news/3202.bugfix.md deleted file mode 100644 index 823d501362..0000000000 --- a/news/3202.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Allow prereleases when the requirement is pinned even if disabled by project diff --git a/news/3204.bugfix.md b/news/3204.bugfix.md deleted file mode 100644 index 245cce64c4..0000000000 --- a/news/3204.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Pass the python path to the uv venv command. diff --git a/news/3207.bugfix.md b/news/3207.bugfix.md deleted file mode 100644 index 6b4c2cc96e..0000000000 --- a/news/3207.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix the infinite loop when running in uv mode if the current project has dynamic metadata. diff --git a/news/3213.bugfix.md b/news/3213.bugfix.md deleted file mode 100644 index cb6cd25706..0000000000 --- a/news/3213.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Add `--no-frozen-deps` option to `install-pdm.py` script to allow installing newer versions of dependencies. diff --git a/news/3215.feature.md b/news/3215.feature.md deleted file mode 100644 index 5065c3fca4..0000000000 --- a/news/3215.feature.md +++ /dev/null @@ -1 +0,0 @@ -Allow linking existing Python interpreters to PDM's managed location. diff --git a/news/3216.bugfix.md b/news/3216.bugfix.md deleted file mode 100644 index eb825d3409..0000000000 --- a/news/3216.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -`pdm self update` now prefers the locked dependencies unless `--no-frozen-deps` is specified. diff --git a/news/3218.bugfix.md b/news/3218.bugfix.md deleted file mode 100644 index ad73ddaa06..0000000000 --- a/news/3218.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -By default, `pdm outdated` will only list direct dependencies. This can be changed by adding the `--include-sub` option.