|
1 | 1 | # Change Log
|
2 | 2 |
|
| 3 | +## [1.2.0rc1] - 2022-08-22 |
| 4 | + |
| 5 | +### Added |
| 6 | + |
| 7 | +- Added support for subdirectories in git dependencies ([#5172](https://github.com/python-poetry/poetry/pull/5172)) |
| 8 | +- Added support for yanked releases and files (PEP-592) ([#5841](https://github.com/python-poetry/poetry/pull/5841)) |
| 9 | +- Virtual environments can now be created even with empty project name ([#5856](https://github.com/python-poetry/poetry/pull/5856)) |
| 10 | +- Added support for `nushell` on `poetry shell` ([#6063](https://github.com/python-poetry/poetry/pull/6063)) |
| 11 | + |
| 12 | +### Changed |
| 13 | + |
| 14 | +- Poetry now fallback to gather metadata for dependencies via pep517 if parsing `pyproject.toml` fail ([#5834](https://github.com/python-poetry/poetry/pull/5834)) |
| 15 | +- Replaced Poetry's helper method `canonicalize_name()` by `packaging.utils.canonicalize_name()` ([#6022](https://github.com/python-poetry/poetry/pull/6022)) |
| 16 | +- Removed code for the `export` command, which is now provided via plugin ([#6128](https://github.com/python-poetry/poetry/pull/6128)) |
| 17 | +- Extras and extras dependencies are now sorted in lock file ([#6169](https://github.com/python-poetry/poetry/pull/6169)) |
| 18 | +- Removed deprecated CLI options ([#6210](https://github.com/python-poetry/poetry/pull/6210)) |
| 19 | + |
| 20 | +### Fixed |
| 21 | + |
| 22 | +- Fixed an issue where symlinks in lock file were not resolved ([#5850](https://github.com/python-poetry/poetry/pull/5850)) |
| 23 | +- Fixed a `tomlkit` regression resulting in inconsistent line endings ([#5870](https://github.com/python-poetry/poetry/pull/5870)) |
| 24 | +- Fixed an issue where `POETRY_PYPI_TOKEN_PYPI` environment variable wasn't picked up ([#5911](https://github.com/python-poetry/poetry/pull/5911)) |
| 25 | +- Fixed an issue where neither Python nor created venv can be found, when using Python from MS Store ([#5931](https://github.com/python-poetry/poetry/pull/5931)) |
| 26 | +- Improved error message of `poetry publish` in the event of an upload error ([#6043](https://github.com/python-poetry/poetry/pull/6043)) |
| 27 | +- Fixed an issue where `poetry lock` fails without output ([#6058](https://github.com/python-poetry/poetry/pull/6058)) |
| 28 | +- Fixed an issue where Windows drive mappings break virtual environment names ([#6110](https://github.com/python-poetry/poetry/pull/6110)) |
| 29 | +- `tomlkit` versions with memory leak are now avoided ([#6160](https://github.com/python-poetry/poetry/pull/6160)) |
| 30 | +- Fixed an infinite loop in the solver ([#6178](https://github.com/python-poetry/poetry/pull/6178)) |
| 31 | +- Fixed an issue where latest version was used instead of locked one for vcs dependencies with extras ([#6185](https://github.com/python-poetry/poetry/pull/6185)) |
| 32 | + |
| 33 | +### Docs |
| 34 | + |
| 35 | +- Documented the use of the `subdirectory` parameter ([#5949](https://github.com/python-poetry/poetry/pull/5949)) |
| 36 | +- Documented `tox` config for different use cases ([#6026](https://github.com/python-poetry/poetry/pull/6026)) |
| 37 | + |
| 38 | + |
3 | 39 | ## [1.2.0b3] - 2022-07-13
|
4 | 40 |
|
5 | 41 | **Important**: This release fixes a critical issue that prevented hashes from being retrieved when locking dependencies,
|
@@ -1447,7 +1483,8 @@ Initial release
|
1447 | 1483 |
|
1448 | 1484 |
|
1449 | 1485 |
|
1450 |
| -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0b3...master |
| 1486 | +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0rc1...master |
| 1487 | +[1.2.0rc1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc1 |
1451 | 1488 | [1.2.0b3]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b3
|
1452 | 1489 | [1.2.0b2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b2
|
1453 | 1490 | [1.2.0b1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b1
|
|
0 commit comments