Next | Query returned 22 messages, browsing 11 to 20 | Previous

History of commit frequency

CVS Commit History:


   2023-07-30 17:32:50 by Adam Ciarcinski | Files touched by this commit (19)
Log message:
Remove dependencies for Python 3.7
   2023-07-01 10:37:47 by Thomas Klausner | Files touched by this commit (105) | Package updated
Log message:
*: restrict py-numpy users to 3.9+ in preparation for update
   2023-06-08 12:12:30 by Adam Ciarcinski | Files touched by this commit (1) | Package updated
Log message:
py-poetry: update DEPENDS
   2023-06-06 12:40:35 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
py-poetry: update to 1.5.1.

Added

    Improve dependency resolution performance in cases with a lot of \ 
backtracking (#7950).

Changed

    Disable wheel content validation during installation (#7987).

Fixed

    Fix an issue where partially downloaded wheels were cached (#7968).
    Fix an issue where poetry run did no longer execute relative-path scripts \ 
(#7963).
    Fix an issue where dependencies were not installed in in-project \ 
environments (#7977).
    Fix an issue where no solution was found for a transitive dependency on a \ 
pre-release of a package (#7978).
    Fix an issue where cached repository packages were incorrectly parsed, \ 
leading to its dependencies being ignored (#7995).
    Fix an issue where an explicit source was ignored so that a direct origin \ 
dependency was used instead (#7973).
    Fix an issue where the installation of big wheels consumed a lot of memory \ 
(#7987).

Docs

    Add information about multiple constraints dependencies with direct origin \ 
and version dependencies (#7973).
   2023-05-21 20:45:07 by Thomas Klausner | Files touched by this commit (3) | Package updated
Log message:
py-poetry: update to 1.5.0.

1.5.0 - 2023-05-19

Added

    Introduce the new source priorities explicit and supplemental (#7658, #6879).
    Introduce the option to configure the priority of the implicit PyPI source \ 
(#7801).
    Add handling for corrupt cache files (#7453).
    Improve caching of URL and git dependencies (#7693, #7473).
    Add option to skip installing directory dependencies (#6845, #7923).
    Add --executable option to poetry env info (#7547).
    Add --top-level option to poetry show (#7415).
    Add --lock option to poetry remove (#7917).
    Add experimental POETRY_REQUESTS_TIMEOUT option (#7081).
    Improve performance of wheel inspection by avoiding unnecessary file copy \ 
operations (#7916).

Changed

    Remove the old deprecated installer and the corresponding setting \ 
experimental.new-installer (#7356).
    Introduce priority key for sources and deprecate flags default and secondary \ 
(#7658).
    Deprecate poetry run <entry point> if the entry point was not \ 
previously installed via poetry install (#7606).
    Only write the lock file if the installation succeeds (#7498).
    Do not write the unused package category into the lock file (#7637).

Fixed

    Fix an issue where Poetry’s internal pyproject.toml continually grows \ 
larger with empty lines (#7705).
    Fix an issue where Poetry crashes due to corrupt cache files (#7453).
    Fix an issue where the Retry-After in HTTP responses was not respected and \ 
retries were handled inconsistently (#7072).
    Fix an issue where Poetry silently ignored invalid groups (#7529).
    Fix an issue where Poetry does not find a compatible Python version if not \ 
given explicitly (#7771).
    Fix an issue where the direct_url.json of an editable install from a git \ 
dependency was invalid (#7473).
    Fix an issue where error messages from build backends were not decoded \ 
correctly (#7781).
    Fix an infinite loop when adding certain dependencies (#7405).
    Fix an issue where pre-commit hooks skip pyproject.toml files in \ 
subdirectories (#7239).
    Fix an issue where pre-commit hooks do not use the expected Python version \ 
(#6989).
    Fix an issue where an unclear error message is printed if the project name \ 
is the same as one of its dependencies (#7757).
    Fix an issue where poetry install returns a zero exit status even though the \ 
build script failed (#7812).
    Fix an issue where an existing .venv was not used if in-project was not set \ 
(#7792).
    Fix an issue where multiple extras passed to poetry add were not parsed \ 
correctly (#7836).
    Fix an issue where poetry shell did not send a newline to fish (#7884).
    Fix an issue where poetry update --lock printed operations that were not \ 
executed (#7915).
    Fix an issue where poetry add --lock did perform a full update of all \ 
dependencies (#7920).
    Fix an issue where poetry shell did not work with nushell (#7919).
    Fix an issue where subprocess calls failed on Python 3.7 (#7932).
    Fix an issue where keyring was called even though the password was stored in \ 
an environment variable (#7928).

Docs

    Add information about what to use instead of --dev (#7647).
    Promote semantic versioning less aggressively (#7517).
    Explain Poetry’s own versioning scheme in the FAQ (#7517).
    Update documentation for configuration with environment variables (#6711).
    Add details how to disable the virtualenv prompt (#7874).
    Improve documentation on whether to commit poetry.lock (#7506).
    Improve documentation of virtualenv.create (#7608).
   2023-04-17 22:55:53 by Adam Ciarcinski | Files touched by this commit (4) | Package updated
Log message:
py-poetry: updated to 1.4.2

1.4.2 - 2023-04-02

Changed

When trying to install wheels with invalid RECORD files, Poetry does not fail \ 
anymore but only prints a warning. This mitigates an unintended change \ 
introduced in Poetry 1.4.1

Fixed

Fix an issue where relative git submodule urls were not parsed correctly
Fix an issue where Poetry could freeze when building a project with a build \ 
script if it generated enough output to fill the OS pipe buffer

1.4.1 - 2023-03-19

Fixed

Fix an issue where poetry install did not respect the requirements for building \ 
editable dependencies
Fix an issue where poetry init crashed due to bad input when adding packages \ 
interactively
Fix an issue where poetry install ignored the subdirectory argument of git \ 
dependencies
Fix an issue where installing packages with no-binary could result in a false \ 
hash mismatch
Fix an issue where the hash of sdists was neither validated nor written to the \ 
direct_url.json during installation
Fix an issue where poetry install --sync attempted to remove itself
Fix an issue where wheels with non-normalized dist-info directory names could \ 
not be installed
Fix an issue where poetry install --compile compiled with optimization level 1

Docs

Clarify the behavior of the --extras option
Expand the FAQ on reasons for slow dependency resolution

poetry-core (1.5.2)

Fix an issue where wheels built on Windows could contain duplicate entries in \ 
the RECORD file

1.4.0 - 2023-02-27

Added

Add a modern installer (installer.modern-installation) for faster installation \ 
of packages and independence from pip
Add support for Private :: trove classifiers
Add the version of poetry in the @generated comment at the beginning of the lock file
Add support for virtualenvs.prefer-active-python when running poetry new and \ 
poetry init

Changed

Deprecate the old installer, i.e. setting experimental.new-installer to false
Remove unused platform field from cached package info and bump the cache version
Extra dependencies of the root project are now sorted in the lock file
Remove upper boundary for importlib-metadata dependency
Validate path dependencies during use instead of during construction
Remove the deprecated repository modules

Fixed

Fix an issue where an unconditional dependency of an extra was not installed in \ 
specific environments
Fix an issue where a pre-release of a dependency was chosen even if a stable \ 
release fulfilled the constraint
Fix an issue where HTTP redirects were not handled correctly during publishing
Fix an issue where poetry check did not handle the -C, --directory option correctly
Fix an issue where the subdirectory information of a git dependency was not \ 
written to the lock file
Fix an issue where the wrong Python version was selected when creating an \ 
virtual environment
Fix an issue where packages that should be kept were uninstalled when calling \ 
poetry install --sync
Fix an issue where an incorrect value was set for sys.argv[0] when running \ 
installed scripts
Fix an issue where hashes in direct_url.json files were not written according to \ 
the specification
Fix an issue where poetry commands failed due to special characters in the path \ 
of the project or virtual environment
Fix an issue where poetry crashed with a JSONDecodeError when running a Python \ 
script that produced certain warnings

Docs

Add advice on how to maintain a poetry plugin
Update tox examples to comply with the latest tox release
Mention that the poetry export can export constraints.txt files
Add clarifications for moving configuration files
Mention the different types of exact version specifications

poetry-core (1.5.1)

Improve marker handling
Validate whether dependencies referenced in extras are defined in the main \ 
dependency group
Poetry no longer generates a setup.py file in sdists by default
Fix an issue where trailing newlines were allowed in tool.poetry.description
Fix an issue where the name of the data folder in wheels was not normalized
Fix an issue where the order of entries in the RECORD file was not deterministic
Fix an issue where zero padding was not correctly handled in version comparisons
Fix an issue where sdist builds did not support multiple READMEs

poetry-plugin-export (^1.3.0)

Fix an issue where the export failed if there was a circular dependency on the \ 
root package

1.3.2 - 2023-01-10

Fixed

Fix a performance regression when locking dependencies from PyPI
Fix an issue where passing a relative path via -C, --directory fails

Docs

Update docs to reflect the removal of the deprecated get-poetry.py installer \ 
from the repository
Add clarifications for virtualenvs.path settings

1.3.1 - 2022-12-12

Fixed

Fix an issue where an explicit dependency on lockfile was missing, resulting in \ 
a broken Poetry in rare circumstances (7169).

1.3.0 - 2022-12-09

Added

Mark the lock file with an @generated comment as used by common tooling
poetry check validates trove classifiers and warns for deprecations
Introduce a top level -C, --directory option to set the working path

Changed

New lock file format (version 2.0)
Path dependency metadata is unconditionally re-locked
URL dependency hashes are locked
poetry update and poetry lock should now resolve dependencies more similarly
poetry publish will report more useful errors when a file does not exist
poetry add will check for duplicate entries using canonical names
Wheels are preferred to source distributions when gathering metadata
Git dependencies of extras are only fetched if the extra is requested
Invoke pip with --no-input to prevent hanging without feedback
Invoke pip with --isolated to prevent the influence of user configuration
Interrogate environments with Python in isolated (-I) mode
Raise an informative error when multiple version constraints overlap and are \ 
incompatible

Fixed

Fix an issue where concurrent instances of Poetry would corrupt the artifact cache
Fix an issue where Poetry can hang after being interrupted due to stale locking \ 
in cache
Fix an issue where the output of commands executed with --dry-run contained \ 
duplicate entries
Fix an issue where requests's pool size did not match the number of installer workers
Fix an issue where poetry show --outdated failed with a runtime error related to \ 
direct origin dependencies
Fix an issue where only the last command of an ApplicationPlugin is registered
Fix an issue where git dependencies were fetched unnecessarily when running \ 
poetry lock --no-update
Fix an issue where stdout was polluted with messages that should go to stderr
Fix an issue with poetry shell activation and zsh
Fix an issue where a url dependencies were shown as outdated
Fix an issue where the source field of a dependency with extras was ignored
Fix an issue where a package from the wrong source was installed for a \ 
multiple-constraints dependency with different sources
Fix an issue where dependencies from different sources where merged during \ 
dependency resolution
Fix an issue where experimental.system-git-client could not be used via \ 
environment variable
Fix an issue where Poetry fails with an AssertionError due to distribution.files \ 
being None
Fix an issue where poetry env info did not respect virtualenvs.prefer-active-python
Fix an issue where poetry env list does not list the in-project environment
Fix an issue where poetry env remove removed the wrong environment
Fix an issue where the return code of a script was not relayed as exit code
Fix an issue where the solver could silently swallow ValueError

Docs

Improve documentation of package sources
Correct the default cache path on Windows

poetry-core (1.4.0)

The PEP 517 metadata_directory is now respected as an input to the build_wheel hook
ParseConstraintError is now raised on version and constraint parsing errors, and \ 
includes information on the package that caused the error
Fix an issue where invalid PEP 508 requirements were generated due to a missing \ 
space before semicolons
Fix an issue where relative paths were encoded into package requirements, \ 
instead of a file:// URL as required by PEP 508

poetry-plugin-export (^1.2.0)

Ensure compatibility with Poetry 1.3.0. No functional changes.

cleo (^2.0.0)

Fix an issue where shell completions had syntax errors
Fix an issue where not reading all the output of a command resulted in a \ 
"Broken pipe" error
Fix an issue where errors were not shown in non-verbose mode
   2023-03-29 11:34:15 by Thomas Klausner | Files touched by this commit (96)
Log message:
*: use PYTHON_VERSION instead of _PYTHON_VERSION
   2022-08-22 19:59:50 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-poetry: updated to 1.1.15

1.1.15

Changed

Poetry now fallback to gather metadata for dependencies via pep517 if parsing \ 
pyproject.toml fail
Extras and extras dependencies are now sorted in lock file
   2022-07-08 19:57:46 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-poetry: updated to 1.1.14

1.1.14
Fixed an issue where dependencies hashes could not be retrieved when locking due \ 
to a breaking change on PyPI JSON API
   2022-04-14 22:32:11 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-poetry: updated to 1.1.13

1.1.13
Fixed an issue where envs in MSYS2 always reported as broken
Fixed an issue where conda envs in windows are always reported as broken
Fixed an issue where Poetry doesn't find its own venv on poetry self update

Next | Query returned 22 messages, browsing 11 to 20 | Previous