Poetry v1.2.0.b3 Release Notes
Release Date: 2022-07-13 // about 1 month ago-
Important: This release fixes a critical issue that prevented hashes from being retrieved when locking dependencies, ๐ due to a breaking change on PyPI JSON API (see #5972 and the upstream change for more details).
โฌ๏ธ After upgrading, you have to clear Poetry cache manually to get that feature working correctly again:
$ poetry cache clear pypi --all
โ Added
- โ Added
--only-root
topoetry install
to install a project without its dependencies (#5783)
๐ Changed
- ๐ Improved user experience of
poetry init
(#5838) - โ Added default timeout for all HTTP requests, to avoid hanging requests (#5881)
- โก๏ธ Updated
poetry init
to better specify how to skip adding dependencies (#5946) - โก๏ธ Updated Poetry repository names to avoid clashes with user-defined repositories (#5910)
๐ Fixed
- ๐ Fixed an issue where extras where not handled if they did not match the case-sensitive name of the packages (#4122)
- ๐ Fixed configuration of
experimental.system-git-client
option throughpoetry config
(#5818) - ๐ Fixed uninstallation of git dependencies on Windows (#5836)
- ๐ Fixed an issue where
~
was not correctly expanded invirtualenvs.path
(#5848) - ๐ Fixed an issue where installing/locking dependencies would hang when setting an incorrect git repository (#5880)
- ๐ Fixed an issue in
poetry publish
when keyring was not properly configured (#5889) - ๐ Fixed duplicated line output in console (#5890)
- ๐ Fixed an issue where the same wheels where downloaded multiple times during installation (#5871)
- ๐ Fixed an issue where dependencies hashes could not be retrieved when locking due to a breaking change on PyPI JSON API (#5973)
- ๐ Fixed an issue where a dependency with non-requested extras could not be installed if it is requested with extras by another dependency (#5770)
- โก๏ธ Updated git backend to correctly read local/global git config when using dulwich as a git backend (#5935)
- ๐ Fixed an issue where optional dependencies where not correctly exported when defining groups (#5819)
๐ Docs
- ๐ Fixed configuration instructions for repositories specification (#5809)
- โ Added a link to dependency specification
from
pyproject.toml
(#5815) - ๐ Improved
zsh
autocompletion instructions (#5859) - ๐ Improved installation and update documentations (#5857)
- ๐ Improved exact requirements documentation (#5874)
- โ Added documentation for
@
operator (#5822) - ๐ Improved autocompletion documentation (#5879)
- ๐ Improved
scripts
definition documentation (#5884)
- โ Added
Previous changes from v1.2.0.b2
-
โ Added
- โ Added support for multiple-constraint direct origin dependencies with the same version (#5715)
- โ Added support disabling TLS verification for custom package sources via
poetry config certificates.<repository>.cert false
(#5719 - โ Added new configuration (
virtualenvs.prompt
) to customize the prompt of the Poetry-managed virtual environment (#5606) - โ Added progress indicator to
download_file
(used when downloading dists) (#5451) - โ Added
--dry-run
topoetry version
command (#5603) - โ Added
--why
topoetry show
(#5444) - โ Added support for single page (html) repositories (#5517)
- โ Added support for PEP 508 strings when adding
dependencies via
poetry add
command (#5554) - โ Added
--no-cache
as a global option (#5519) - โ Added cert retrieval for HTTP requests made by Poetry (#5320)
- โ Added
--skip-existing
topoetry publish
(#2812) - โ Added
--all-extras
topoetry install
(#5452) - โ Added new
poetry self
sub-commands to manage plugins and/or system environment packages, eg: keyring backends (#5450) - โ Added new configuration (
installer.no-binary
) to allow selection of non-binary distributions when installing a dependency (#5609)
๐ Changed
- ๐
poetry plugin
commands are now deprecated in favor of the more genericpoetry self
commands (#5450) - When creating new projects, Poetry no longer restricts README extensions to
md
andrst
(#5357) - ๐ Changed the provider to allow fallback to installed packages (#5704)
- Solver now correctly handles and prefers direct reference constraints (vcs, file etc.) over public version identifiers (#5654)
- ๐ Changed the build script behavior to create an ephemeral build environment when a build script is specified (#5401)
- ๐ Improved performance when determining PEP 517 metadata from sources (#5601)
- ๐ง Project package sources no longer need to be redefined as global repositories when configuring credentials (#5563)
- ๐ง Replaced external git command use with dulwich, in order to force the legacy behaviour set
experimental.system-git-client
configuration totrue
(#5428) - ๐ Improved http request handling for sources and multiple paths on same netloc (#5518)
- ๐ง Made
no-pip
andno-setuptools
configuration explicit (#5455) - ๐ Improved application logging, use of
-vv
now provides more debug information (#5503) - 0๏ธโฃ Renamed implicit group
default
tomain
(#5465) - Replaced in-tree implementation of
poetry export
withpoetry-plugin-export
(#5413) - ๐ Changed the password manager behavior to use a
"null"
keyring when disabled (#5251) - ๐ Incremental improvement of Solver performance (#5335)
- ๐ Newly created virtual environments on macOS now are excluded from Time Machine backups (#4599)
- ๐ฆ Poetry no longer raises an exception when a package is not found on PyPI (#5698)
- โก๏ธ Update
packaging
dependency to use major version 21, this change forces Poetry to drop support for managing Python 2.7 environments (#4749)
๐ Fixed
- ๐ Fixed
poetry update --dry-run
to not modifypoetry.lock
(#5718, #3666, #3766) - ๐ Fixed #5537 where export fails to resolve dependencies with more than one path (#5688)
- Fixed an issue where the environment variables
POETRY_CONFIG_DIR
andPOETRY_CACHE_DIR
were not being respected (#5672) - ๐ Fixed #3628 and #4702 by handling invalid distributions gracefully (#5645)
- ๐ Fixed an issue where the provider ignored subdirectory when merging and improve subdirectory support for vcs deps (#5648)
- ๐ Fixed an issue where users could not select an empty choice when selecting dependencies (#4606)
- ๐ Fixed an issue where
poetry init -n
crashes in a root directory (#5612) - ๐ Fixed an issue where Solver errors arise due to wheels having different Python constraints (#5616)
- ๐ Fixed an issue where editable path dependencies using
setuptools
could not be correctly installed (#5590) - ๐ Fixed flicker when displaying executor operations (#5556)
- ๐ Fixed an issue where the
poetry lock --no-update
only sorted by name and not by name and version (#5446) - ๐ Fixed an issue where the Solver fails when a dependency has multiple constrained dependency definitions for the same package (#5403)
- ๐ Fixed an issue where dependency resolution takes a while because Poetry checks all possible combinations even markers are mutually exclusive (#4695)
- ๐ Fixed incorrect version selector constraint (#5500)
- ๐ Fixed an issue where
poetry lock --no-update
dropped packages (#5435) - ๐ Fixed an issue where packages were incorrectly grouped when exporting (#5156)
- ๐ Fixed an issue where lockfile always updates when using private sources (#5362)
- ๐ Fixed an issue where the solver did not account for selected package features (#5305)
- ๐ Fixed an issue with console script execution of editable dependencies on Windows (#3339)
- ๐ Fixed an issue where editable builder did not write PEP-610 metadata (#5703)
- ๐ Fixed an issue where Poetry 1.1 lock files were incorrectly identified as not fresh (#5458)
๐ Docs
- โก๏ธ Updated plugin management commands (#5450)
- โ Added the
--readme
flag to documentation (#5357) - โ Added example for multiple maintainers (#5661)
- ๐ Updated documentation for issues #4800, #3709, #3573, #2211 and #2414 (#5656)
- โ Added
poetry.toml
note in configuration (#5492) - โ Add documentation for
poetry about
,poetry help
,poetrylist
, and the--full-path
and--all
options documentation (#5664) - โ Added more clarification to the
--why
flag (#5653) - ๐ Updated documentation to refer to PowerShell for Windows, including instructions (#3978, #5618)
- โ Added PEP 508 name requirement (#5642)
- โ Added example for each section of pyproject.toml (#5585)
- โ Added documentation for
--local
to fix issue #5623 (#5629) - โ Added troubleshooting documentation for using proper quotation with ZSH (#4847)
- โ Added information on git and basic http auth (#5578)
- โ Removed ambiguity about PEP 440 and semver (#5576)
- โ Removed Pipenv comparison (#5561)
- ๐ Improved dependency group related documentation (#5338)
- โ Added documentation for default directories used by Poetry (#5391)
- โ Added warning about credentials preserved in shell history (#5726)
- ๐ Improved documentation of the
readme
option, including multiple files and additional formats (#5158) - ๐ Improved contributing documentation (#5708)
- โ Remove all references to
--dev-only
option (#5771)