|
1 | 1 | # Change Log
|
2 | 2 |
|
| 3 | +## [1.2.0b1] - 2022-03-06 |
| 4 | + |
| 5 | +### Fixed |
| 6 | + |
| 7 | +- Fixed an issue where the system environment couldn't be detected ([#4406](https://github.com/python-poetry/poetry/pull/4406)). |
| 8 | +- Fixed another issue where the system environment couldn't be detected ([#4433](https://github.com/python-poetry/poetry/pull/4433)). |
| 9 | +- Replace deprecated requests parameter in uploader ([#4580](https://github.com/python-poetry/poetry/pull/4580)). |
| 10 | +- Fix an issue where venv are detected as broken when using MSys2 on windows ([#4482](https://github.com/python-poetry/poetry/pull/4482)). |
| 11 | +- Fixed an issue where the cache breaks on windows ([#4531](https://github.com/python-poetry/poetry/pull/4531)). |
| 12 | +- Fixed an issue where a whitespace before a semicolon was missing on `poetry export` ([#4575](https://github.com/python-poetry/poetry/issues/4575)). |
| 13 | +- Fixed an issue where markers were not correctly assigned to nested dependencies ([#3511](https://github.com/python-poetry/poetry/issues/3511)). |
| 14 | +- Recognize one digit version in wheel filenames ([#3338](https://github.com/python-poetry/poetry/pull/3338)). |
| 15 | +- Fixed an issue when `locale` is unset ([#4038](https://github.com/python-poetry/poetry/pull/4038)). |
| 16 | +- Fixed an issue where the fallback to another interpreter didn't work ([#3475](https://github.com/python-poetry/poetry/pull/3475)). |
| 17 | +- Merge any marker constraints into constraints with specific markers ([#4590](https://github.com/python-poetry/poetry/pull/4590)). |
| 18 | +- Normalize path before hashing so that the generated venv name is independent of case on Windows ([#4813](https://github.com/python-poetry/poetry/pull/4813)). |
| 19 | +- Fixed an issue where a dependency wasn't upgrade by using `@latest` on `poetry update ([#4945](https://github.com/python-poetry/poetry/pull/4945)). |
| 20 | +- Fixed an issue where conda envs in windows are always reported as broken([#5007](https://github.com/python-poetry/poetry/pull/5007)). |
| 21 | +- Fixed an issue where Poetry doesn't find its own venv on `poetry self update` ([#5049](https://github.com/python-poetry/poetry/pull/5049)). |
| 22 | +- Fix misuse of pretty_constraint ([#4932](https://github.com/python-poetry/poetry/pull/4932)). |
| 23 | +- Fixed an issue where the reported python version used for venv creation wasn't correct ([#5086](https://github.com/python-poetry/poetry/pull/5086)). |
| 24 | +- Fixed an issue where the searched package wasn't display in the interactive dialog of `poetry init` ([#5076](https://github.com/python-poetry/poetry/pull/5076)). |
| 25 | +- Fixed an issue where Poetry raises an excepetion on `poetry show` when no lock files exists ([#5242](https://github.com/python-poetry/poetry/pull/5242)). |
| 26 | +- Fixed an issue where Poetry crashes when optional `vcs_info.requested_version` in `direct_url.json` wasn't included ([#5274](https://github.com/python-poetry/poetry/pull/5274)). |
| 27 | + |
| 28 | +### Added |
| 29 | + |
| 30 | +- `poetry show <package>` now also shows which packages depend on it ([#2351](https://github.com/python-poetry/poetry/pull/2351)). |
| 31 | +- Print error message when `poetry publish` fails ([#3549](https://github.com/python-poetry/poetry/pull/3549)). |
| 32 | +- Added in info output to `poetry lock --check` ([#5081](https://github.com/python-poetry/poetry/pull/5081)). |
| 33 | +- 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)). |
| 34 | +- 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)). |
| 35 | +- Added a `new installer.max-workers` property to the configuration ([#3516](https://github.com/python-poetry/poetry/pull/3516)). |
| 36 | +- Added experimental option `virtualenvs.prefer-active-python` to detect current activated python ([#4852](https://github.com/python-poetry/poetry/pull/4852)). |
| 37 | +- Added better windows shell support ([#5053](https://github.com/python-poetry/poetry/pull/5053)). |
| 38 | + |
| 39 | +### Changed |
| 40 | + |
| 41 | +- Drop python3.6 support ([#5055](https://github.com/python-poetry/poetry/pull/5055)). |
| 42 | +- Send error message from export command to stderr ([#4110](https://github.com/python-poetry/poetry/pull/4110)). |
| 43 | +- Write several messages to stderr instead of stdout ([#5179](https://github.com/python-poetry/poetry/pull/5179)). |
| 44 | +- Exit with callable return code in generated script ([#4456](https://github.com/python-poetry/poetry/pull/4456)). |
| 45 | +- Replace deprecated `pep517.build` by `build` ([#5155](https://github.com/python-poetry/poetry/pull/5155)). |
| 46 | +- Check if the python executable version in the environment is still valid ([#4520](https://github.com/python-poetry/poetry/pull/4520)). |
| 47 | + |
| 48 | + |
3 | 49 | ## [1.1.13] - 2022-02-09
|
4 | 50 |
|
5 | 51 | ### Fixed
|
|
0 commit comments