Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
468 changes: 388 additions & 80 deletions Cargo.lock

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -183,27 +183,27 @@ zstd = { version = "0.13.3", default-features = false }
coalesced_map = { path = "crates/coalesced_map", version = "=0.1.2", default-features = false }
file_url = { path = "crates/file_url", version = "=0.2.6", default-features = false }
path_resolver = { path = "crates/path_resolver", version = "=0.2.2", default-features = false }
rattler = { path = "crates/rattler", version = "=0.38.4", default-features = false }
rattler_cache = { path = "crates/rattler_cache", version = "=0.4.1", default-features = false }
rattler_conda_types = { path = "crates/rattler_conda_types", version = "=0.40.4", default-features = false }
rattler_config = { path = "crates/rattler_config", version = "=0.2.15", default-features = false }
rattler_digest = { path = "crates/rattler_digest", version = "=1.1.7", default-features = false }
rattler_index = { path = "crates/rattler_index", version = "=0.27.0", default-features = false }
rattler = { path = "crates/rattler", version = "=0.39.0", default-features = false }
rattler_cache = { path = "crates/rattler_cache", version = "=0.5.0", default-features = false }
rattler_conda_types = { path = "crates/rattler_conda_types", version = "=0.41.0", default-features = false }
rattler_config = { path = "crates/rattler_config", version = "=0.2.16", default-features = false }
rattler_digest = { path = "crates/rattler_digest", version = "=1.2.0", default-features = false }
rattler_index = { path = "crates/rattler_index", version = "=0.27.1", default-features = false }
rattler_libsolv_c = { path = "crates/rattler_libsolv_c", version = "=1.2.3", default-features = false }
rattler_lock = { path = "crates/rattler_lock", version = "=0.26.1", default-features = false }
rattler_lock = { path = "crates/rattler_lock", version = "=0.26.2", default-features = false }
rattler_macros = { path = "crates/rattler_macros", version = "=1.0.11", default-features = false }
rattler_menuinst = { path = "crates/rattler_menuinst", version = "=0.2.34", default-features = false }
rattler_networking = { path = "crates/rattler_networking", version = "=0.25.21", default-features = false }
rattler_package_streaming = { path = "crates/rattler_package_streaming", version = "=0.23.13", default-features = false }
rattler_menuinst = { path = "crates/rattler_menuinst", version = "=0.2.35", default-features = false }
rattler_networking = { path = "crates/rattler_networking", version = "=0.25.22", default-features = false }
rattler_package_streaming = { path = "crates/rattler_package_streaming", version = "=0.23.14", default-features = false }
rattler_pty = { path = "crates/rattler_pty", version = "=0.2.7", default-features = false }
rattler_redaction = { path = "crates/rattler_redaction", version = "=0.1.12", default-features = false }
rattler_repodata_gateway = { path = "crates/rattler_repodata_gateway", version = "=0.24.14", default-features = false }
rattler_s3 = { path = "crates/rattler_s3", version = "=0.1.10", default-features = false }
rattler_sandbox = { path = "crates/rattler_sandbox", version = "=0.2.5", default-features = false }
rattler_shell = { path = "crates/rattler_shell", version = "=0.25.7", default-features = false }
rattler_solve = { path = "crates/rattler_solve", version = "=3.0.9", default-features = false }
rattler_upload = { path = "crates/rattler_upload", version = "=0.3.10", default-features = false }
rattler_virtual_packages = { path = "crates/rattler_virtual_packages", version = "=2.2.5", default-features = false }
rattler_repodata_gateway = { path = "crates/rattler_repodata_gateway", version = "=0.25.0", default-features = false }
rattler_s3 = { path = "crates/rattler_s3", version = "=0.1.11", default-features = false }
rattler_sandbox = { path = "crates/rattler_sandbox", version = "=0.2.6", default-features = false }
rattler_shell = { path = "crates/rattler_shell", version = "=0.25.8", default-features = false }
rattler_solve = { path = "crates/rattler_solve", version = "=3.1.0", default-features = false }
rattler_upload = { path = "crates/rattler_upload", version = "=0.4.0", default-features = false }
rattler_virtual_packages = { path = "crates/rattler_virtual_packages", version = "=2.2.6", default-features = false }

# This is also a rattler crate, but we only pin it to minor version
simple_spawn_blocking = { path = "crates/simple_spawn_blocking", version = "1.1", default-features = false }
17 changes: 17 additions & 0 deletions crates/rattler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.39.0](https://github.com/conda/rattler/compare/rattler-v0.38.4...rattler-v0.39.0) - 2025-11-13

### Added

- Add glob support for package name in matchspec ([#1480](https://github.com/conda/rattler/pull/1480))
- expose crate features on docs.rs ([#1835](https://github.com/conda/rattler/pull/1835))
- add post-link and pre-unlink to reporter interface ([#1793](https://github.com/conda/rattler/pull/1793))

### Fixed

- omit `sha256_in_prefix` when equal to `sha256` ([#1812](https://github.com/conda/rattler/pull/1812))

### Other

- use global cache lock to reduce per-package lock overhead ([#1818](https://github.com/conda/rattler/pull/1818))
- clean up installer ([#1811](https://github.com/conda/rattler/pull/1811))

## [0.38.4](https://github.com/conda/rattler/compare/rattler-v0.38.3...rattler-v0.38.4) - 2025-10-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler"
version = "0.38.4"
version = "0.39.0"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Rust library to install conda environments"
Expand Down
11 changes: 11 additions & 0 deletions crates/rattler_cache/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0](https://github.com/conda/rattler/compare/rattler_cache-v0.4.1...rattler_cache-v0.5.0) - 2025-11-13

### Added

- add validation mode argument to PackageCache layers ([#1834](https://github.com/conda/rattler/pull/1834))

### Other

- remove cache lock mutex ([#1809](https://github.com/conda/rattler/pull/1809))
- use global cache lock to reduce per-package lock overhead ([#1818](https://github.com/conda/rattler/pull/1818))

## [0.4.1](https://github.com/conda/rattler/compare/rattler_cache-v0.4.0...rattler_cache-v0.4.1) - 2025-10-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_cache"
version = "0.4.1"
version = "0.5.0"
description = "A crate to manage the caching of data in rattler"
categories = { workspace = true }
homepage = { workspace = true }
Expand Down
13 changes: 13 additions & 0 deletions crates/rattler_conda_types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.41.0](https://github.com/conda/rattler/compare/rattler_conda_types-v0.40.4...rattler_conda_types-v0.41.0) - 2025-11-13

### Added

- Add glob support for package name in matchspec ([#1480](https://github.com/conda/rattler/pull/1480))
- expose crate features on docs.rs ([#1835](https://github.com/conda/rattler/pull/1835))
- parse matchspec conditions and translate to resolvo ([#1545](https://github.com/conda/rattler/pull/1545))

### Fixed

- omit `sha256_in_prefix` when equal to `sha256` ([#1812](https://github.com/conda/rattler/pull/1812))
- `Version::starts_with` for versions with differing non-final component sizes ([#1791](https://github.com/conda/rattler/pull/1791))

## [0.40.4](https://github.com/conda/rattler/compare/rattler_conda_types-v0.40.3...rattler_conda_types-v0.40.4) - 2025-10-28

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_conda_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_conda_types"
version = "0.40.4"
version = "0.41.0"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Rust data types for common types used within the Conda ecosystem"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.16](https://github.com/conda/rattler/compare/rattler_config-v0.2.15...rattler_config-v0.2.16) - 2025-11-13

### Added

- expose crate features on docs.rs ([#1835](https://github.com/conda/rattler/pull/1835))

## [0.2.15](https://github.com/conda/rattler/compare/rattler_config-v0.2.14...rattler_config-v0.2.15) - 2025-10-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_config"
version = "0.2.15"
version = "0.2.16"
edition.workspace = true
authors = []
description = "A crate to configure rattler and derived tools."
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_digest/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.0](https://github.com/conda/rattler/compare/rattler_digest-v1.1.7...rattler_digest-v1.2.0) - 2025-11-13

### Added

- expose crate features on docs.rs ([#1835](https://github.com/conda/rattler/pull/1835))

## [1.1.7](https://github.com/conda/rattler/compare/rattler_digest-v1.1.6...rattler_digest-v1.1.7) - 2025-10-17

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_digest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_digest"
version = "1.1.7"
version = "1.2.0"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "An simple crate used by rattler crates to compute different hashes from different sources"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_index/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.27.1](https://github.com/conda/rattler/compare/rattler_index-v0.27.0...rattler_index-v0.27.1) - 2025-11-13

### Added

- add cache control for repodata.json / zst and shard index ([#1796](https://github.com/conda/rattler/pull/1796))

## [0.27.0](https://github.com/conda/rattler/compare/rattler_index-v0.26.5...rattler_index-v0.27.0) - 2025-10-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_index"
version = "0.27.0"
version = "0.27.1"
edition.workspace = true
authors = []
description = "A crate to index conda channels and create a repodata.json file."
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_lock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.26.2](https://github.com/conda/rattler/compare/rattler_lock-v0.26.1...rattler_lock-v0.26.2) - 2025-11-13

### Added

- Add glob support for package name in matchspec ([#1480](https://github.com/conda/rattler/pull/1480))

## [0.26.1](https://github.com/conda/rattler/compare/rattler_lock-v0.26.0...rattler_lock-v0.26.1) - 2025-10-28

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_lock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_lock"
version = "0.26.1"
version = "0.26.2"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Rust data types for conda lock"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_menuinst/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.35](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.34...rattler_menuinst-v0.2.35) - 2025-11-13

### Other

- updated the following local packages: rattler_conda_types, rattler_shell

## [0.2.34](https://github.com/conda/rattler/compare/rattler_menuinst-v0.2.33...rattler_menuinst-v0.2.34) - 2025-10-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_menuinst/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_menuinst"
version = "0.2.34"
version = "0.2.35"
edition.workspace = true
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
description = "Install menu entries for a Conda package"
Expand Down
10 changes: 10 additions & 0 deletions crates/rattler_networking/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.25.22](https://github.com/conda/rattler/compare/rattler_networking-v0.25.21...rattler_networking-v0.25.22) - 2025-11-13

### Added

- expose crate features on docs.rs ([#1835](https://github.com/conda/rattler/pull/1835))

### Fixed

- omit `sha256_in_prefix` when equal to `sha256` ([#1812](https://github.com/conda/rattler/pull/1812))

## [0.25.21](https://github.com/conda/rattler/compare/rattler_networking-v0.25.20...rattler_networking-v0.25.21) - 2025-10-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_networking/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_networking"
version = "0.25.21"
version = "0.25.22"
edition.workspace = true
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
description = "Authenticated requests in the conda ecosystem"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_package_streaming/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.23.14](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.23.13...rattler_package_streaming-v0.23.14) - 2025-11-13

### Added

- expose crate features on docs.rs ([#1835](https://github.com/conda/rattler/pull/1835))

## [0.23.13](https://github.com/conda/rattler/compare/rattler_package_streaming-v0.23.12...rattler_package_streaming-v0.23.13) - 2025-10-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_package_streaming/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_package_streaming"
version = "0.23.13"
version = "0.23.14"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Extract and stream of Conda package archives"
Expand Down
8 changes: 8 additions & 0 deletions crates/rattler_repodata_gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.25.0](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.24.14...rattler_repodata_gateway-v0.25.0) - 2025-11-13

### Added

- Add glob support for package name in matchspec ([#1480](https://github.com/conda/rattler/pull/1480))
- move repodata fetch logic to tools crate ([#1820](https://github.com/conda/rattler/pull/1820))
- parse matchspec conditions and translate to resolvo ([#1545](https://github.com/conda/rattler/pull/1545))

## [0.24.14](https://github.com/conda/rattler/compare/rattler_repodata_gateway-v0.24.13...rattler_repodata_gateway-v0.24.14) - 2025-10-28

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_repodata_gateway/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_repodata_gateway"
version = "0.24.14"
version = "0.25.0"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "A crate to interact with Conda repodata"
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_s3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.11](https://github.com/conda/rattler/compare/rattler_s3-v0.1.10...rattler_s3-v0.1.11) - 2025-11-13

### Other

- updated the following local packages: rattler_networking

## [0.1.10](https://github.com/conda/rattler/compare/rattler_s3-v0.1.9...rattler_s3-v0.1.10) - 2025-10-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_s3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_s3"
version = "0.1.10"
version = "0.1.11"
description = "A crate to streamline interaction with S3 storage for rattler"
categories.workspace = true
homepage.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.6](https://github.com/conda/rattler/compare/rattler_sandbox-v0.2.5...rattler_sandbox-v0.2.6) - 2025-11-13

### Other

- update Cargo.lock dependencies

## [0.2.5](https://github.com/conda/rattler/compare/rattler_sandbox-v0.2.4...rattler_sandbox-v0.2.5) - 2025-10-25

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_sandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_sandbox"
version = "0.2.5"
version = "0.2.6"
description = "A crate to run executables in a sandbox"
categories.workspace = true
homepage.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_shell/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.25.8](https://github.com/conda/rattler/compare/rattler_shell-v0.25.7...rattler_shell-v0.25.8) - 2025-11-13

### Other

- updated the following local packages: rattler_conda_types

## [0.25.7](https://github.com/conda/rattler/compare/rattler_shell-v0.25.6...rattler_shell-v0.25.7) - 2025-10-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_shell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_shell"
version = "0.25.7"
version = "0.25.8"
edition.workspace = true
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
description = "A crate to help with activation and deactivation of a conda environment"
Expand Down
8 changes: 8 additions & 0 deletions crates/rattler_solve/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.1.0](https://github.com/conda/rattler/compare/rattler_solve-v3.0.9...rattler_solve-v3.1.0) - 2025-11-13

### Added

- Add glob support for package name in matchspec ([#1480](https://github.com/conda/rattler/pull/1480))
- move repodata fetch logic to tools crate ([#1820](https://github.com/conda/rattler/pull/1820))
- parse matchspec conditions and translate to resolvo ([#1545](https://github.com/conda/rattler/pull/1545))

## [3.0.9](https://github.com/conda/rattler/compare/rattler_solve-v3.0.8...rattler_solve-v3.0.9) - 2025-10-28

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_solve/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_solve"
version = "3.0.9"
version = "3.1.0"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "A crate to solve conda environments"
Expand Down
Loading
Loading