[go: up one dir, main page]

Skip to content

Tags: pypa/pipenv

Tags

v2024.1.0

Toggle v2024.1.0's commit message
Version v2024.1.0

2024.1.0 (2024-09-29)
=====================
Pipenv 2024.1.0 (2024-09-29)
============================

Features & Improvements
-----------------------

- Upgrade from pip==24.0 to pip==24.1.2.  _

Bug Fixes
---------

- Fixes regression in lock file generation that caused environment variable references (e.g., ) in VCS URLs to be stripped out. This restores the ability to use credential placeholders in version control system URLs.  _

v2024.0.3

Toggle v2024.0.3's commit message
Version v2024.0.3

2024.0.3 (2024-09-22)
=====================
Pipenv 2024.0.3 (2024-09-22)
============================

Bug Fixes
---------

- Disable ResourceWarning warning for temporary files that are cleaned on program exit.  _
- Fixed package sorting when installing a package with extras.  _
- Fixed pipenv uninstall --all failing when the virtual environment no longer exists.  _
- Fix issue where installing a vcs dependency using pipenv CLI yielded the wrong Pipfile entry such that it could not lock.  _
- Fix report that pipenv requires packaging>=22 on some systems by setting it as a dependency.  _

v2024.0.2

Toggle v2024.0.2's commit message
Version v2024.0.2

2024.0.2 (2024-09-13)
=====================
Pipenv 2024.0.2 (2024-09-13)
============================

Features & Improvements
-----------------------

- Initial support for python3.13  _

Bug Fixes
---------

- Fix bump version in CI/CD pipeline  _
- Swap old_version and new_version in pipenv update --outdated output.  _
- Update shell detection to only check the end of the command used.  _
- Fix loading dot env twice #6198  _
- Solve issue with quiet lock not writing the lock file #6207.  _
- Fix regression introduced with the "smarter uninstall" PR.  Uninstall --all should not clear the Pipfile entries.  _
- Fixed regression where all local file installations were incorrectly treated as editable. Ensure that local file installations are explicitly marked as editable in both Pipfile and Pipfile.lock entries if editable installation is desired.  _
- Corrected behavior of pipenv install --skip-lock after behavioral install refactor introduced regression.  No Pipfile.lock is generated with this fix and installation of vcs no longer fails with revision missing error.  _
- Fix for Windows on ARM missing distlib binaries in pyproject.toml  _

Vendored Libraries
------------------

- Clean up usage of click styling from exceptions, shell and virtualenv  _
- Remove click.echo from pipenv/cli  _
- Remove click.echo from exceptions.py  _
- Update importlib-metadata to 8.4.0  _

v2024.0.1

Toggle v2024.0.1's commit message
Version v2024.0.1

2024.0.1 (2024-06-11)
=====================
Pipenv 2024.0.1 (2024-06-11)
============================

No significant changes.

v2024.0.0

Toggle v2024.0.0's commit message
Release v2024.0.0

v2023.12.1

Toggle v2023.12.1's commit message
Version v2023.12.1

2023.12.1 (2024-02-04)
======================
Pipenv 2023.12.1 (2024-02-04)
=============================

Bug Fixes
---------

- Remove debug print statements that should not have made it into the last release.  _

v2023.12.0

Toggle v2023.12.0's commit message
Version v2023.12.0

2023.12.0 (2024-02-01)
======================
Pipenv 2023.12.0 (2024-02-01)
=============================

Bug Fixes
---------

- Removal of pydantic from pythonfinder and pipenv; reduced complexity of pythonfinder pathlib usage (avoid posix conversions).  _
- Adjusted logic which assumed any file, path or VCS install should be considered editable.  Instead relies on the user specified editable flag to mark requirement as editable install.  _
- Remove logic that treats CI variable to use do_run_nt shell logic, as the original reasons for that patch were no longer valid.  _

v2023.11.17

Toggle v2023.11.17's commit message
Version v2023.11.17

2023.11.17 (2024-01-21)
=======================
Pipenv 2023.11.17 (2024-01-21)
==============================

Bug Fixes
---------

- Add markers to Pipfile when parsing requirements.txt  _
- Fix KeyError when using a source without a name in Pipfile  _
- Fix a bug with locking projects that contains packages with non canonical names from private indexes  _

Vendored Libraries
------------------

- Update vendored tomlkit to 0.12.3  _
- Bump version of pipdeptree to 0.13.2  _

v2023.11.15

Toggle v2023.11.15's commit message
Version v2023.11.15

2023.11.15 (2023-11-15)
=======================
Pipenv 2023.11.15 (2023-11-15)
==============================

Bug Fixes
---------

- Fix regression with path installs on most recent release 2023.11.14  _

v2023.11.14

Toggle v2023.11.14's commit message
Version v2023.11.14

2023.11.14 (2023-11-14)
=======================
Pipenv 2023.11.14 (2023-11-14)
==============================

Behavior Changes
----------------

- pipenv now ignores existing venv dir when PIPENV_VENV_IN_PROJECT is false.  _

Bug Fixes
---------

- Assume the vcs and direct URL installs need to be reinstalled.  _
- Pass through pipfile index urls when creating https session so that keyring fully works  _
- Fix Using dependencies from a URL fails on Windows.  _