Skip to content

Latest commit

 

History

History
225 lines (159 loc) · 7.18 KB

CHANGELOG.rst

File metadata and controls

225 lines (159 loc) · 7.18 KB

Unreleased

See the fragment files in the changelog.d directory.

0.4.1 — 2025-04-25

Added

  • Locking layers now emits package summary files for each layer, which should make it easier to see what has changed when locks are updated (suggested in :issue:`108`).

Changed

  • The exception raised when reporting dynamic library symlink conflicts in a layer now suggests using the dynlib_exclude setting to resolve the conflict (changed in :pr:`141`).

Fixed

  • The --reset-lock option now propagates to derived layers as intended (reported in :issue:`137`).

0.4.0 — 2025-04-11

Added

  • Framework layers may now specify frameworks to depend on one or more framework layers instead of depending directly on a runtime layer. Framework dependencies must form a directed acyclic graph (DAG), and framework layers must be defined after any framework layers they depend on (proposed in :issue:`18`, implemented in :pr:`119`).
  • Application layers may now specify runtime to depend directly on a a runtime layer with no intervening framework layers (added as part of resolving :issue:`18`).
  • All layers may now specify dynlib_exclude to indicate dynamic libraries which should not be symbolically linked into the share/venv/dynlib/ environment subfolder on Linux and macOS (added as part of resolving :issue:`38`).

Changed

  • To enable loading of shared objects from other environment layers, framework and application environments on Linux and macOS now run Python via a suitably capable shell environment (bash on Linux, zsh on macOS) that can be expected to be consistently installed (changed in :issue:`38`).

Fixed

  • Extension modules on Linux and macOS that rely on shared objects published by their dependencies (for example, PyTorch depending on CUDA libraries) now work correctly even if those dependencies are installed in a lower environment layer. See :ref:`dynamic-linking` for additional details (resolved in :issue:`38`).

0.3.0 — 2025-03-28

Added

  • The build and lock subcommands accept a new --reset-lock CLI option. This multi-use option requests that any previously created layer lock file be removed before locking the selected layers (thus ignoring any previous version pins or artifact hashes). This option uses the same wildcard pattern matching as the --include option. Only layers that are locked by the given command will have their previous lock files removed, as excluded layers will be excluded from both locking and having their lock files reset (added in :issue:`22`).
  • "win_arm64" and "linux_aarch64" are now accepted as target platforms. ARM64/Aarch64 refer to the same CPU architecture, but Python reports it differently depending on the OS, and this is reflected in their respective platform tags (added in :issue:`107`).

Changed

Fixed

  • --only-binary ":all:" is now passed when locking the layers in addition to being passed when creating the layer environments. This avoids emitting requirements that can't be installed (resolved in :issue:`102`).
  • Remove directories from /bin when building layers (resolved in :pr:`103`)

0.2.1 — 2024-12-05

Fixed

  • Fix Typer 0.14.0+ incompatibility when setting app name (reported by Rugved Somwanshi in :issue:`96`).

0.2.0 — 2024-11-14

Added

  • Setting versioned = True in a layer definition will now append a lock version number to the layer name that automatically increments each time the locked requirements change for that layer (layer@1, layer@2, etc). Refer to :ref:`layer-names` for details on when the versioned and unversioned layer names are used (implemented in :issue:`24`).
  • Added documentation for the :ref:`stack-specification-format` (part of :issue:`78`).
  • Added python_implementation to the published layer metadata (part of :issue:`78`).
  • Added bound_to_implementation to the published layer metadata (part of :issue:`78`).

Changed

Fixed

  • Post-installation scripts for layered environments now work correctly even when run with a Python installation other than the expected base runtime (resolved in :issue:`66`)

0.1.1 — 2024-11-01

Changed

  • Update docs URL to https://venvstacks.lmstudio.ai
  • Add OpenGraph metadata to docs landing page
  • Resolved several broken links in the documentation
  • Documentation is now marked as being unversioned (it is published directly from the main branch)

0.1.0 — 2024-10-31

Changed

  • Further documentation fixes and improvements

0.1.0rc1.post0 — 2024-10-30

Changed

  • Included project URLs in project metadata
  • Added installation instructions to README.md
  • Linked to main documentation from README.md
  • Improved the content split between the project overview page and the top level docs landing page

0.1.0rc1 — 2024-10-29

Added

  • Initial export of venvstacks from Project Amphibian.
  • Adopted scriv for CHANGELOG management.