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
76 changes: 38 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -169,16 +169,16 @@ rattler_menuinst = "0.2.57"

# Internal rattler-build crates
rattler_build_allocator = { path = "crates/rattler_build_allocator", version = "=0.1.1" }
rattler_build_core = { path = "crates/rattler_build_core", version = "=0.2.4", default-features = false }
rattler_build_jinja = { path = "crates/rattler_build_jinja", version = "=0.1.6" }
rattler_build_networking = { path = "crates/rattler_build_networking", version = "=0.1.5" }
rattler_build_recipe = { path = "crates/rattler_build_recipe", version = "=0.1.6" }
rattler_build_recipe_generator = { path = "crates/rattler_build_recipe_generator", version = "=0.1.5", default-features = false }
rattler_build_script = { path = "crates/rattler_build_script", version = "=0.2.3", default-features = false }
rattler_build_source_cache = { path = "crates/rattler_build_source_cache", version = "=0.1.5", default-features = false }
rattler_build_types = { path = "crates/rattler_build_types", version = "=0.1.6" }
rattler_build_variant_config = { path = "crates/rattler_build_variant_config", version = "=0.1.6" }
rattler_build_yaml_parser = { path = "crates/rattler_build_yaml_parser", version = "=0.1.6" }
rattler_build_core = { path = "crates/rattler_build_core", version = "=0.2.5", default-features = false }
rattler_build_jinja = { path = "crates/rattler_build_jinja", version = "=0.1.7" }
rattler_build_networking = { path = "crates/rattler_build_networking", version = "=0.1.6" }
rattler_build_recipe = { path = "crates/rattler_build_recipe", version = "=0.1.7" }
rattler_build_recipe_generator = { path = "crates/rattler_build_recipe_generator", version = "=0.1.6", default-features = false }
rattler_build_script = { path = "crates/rattler_build_script", version = "=0.2.4", default-features = false }
rattler_build_source_cache = { path = "crates/rattler_build_source_cache", version = "=0.1.6", default-features = false }
rattler_build_types = { path = "crates/rattler_build_types", version = "=0.1.7" }
rattler_build_variant_config = { path = "crates/rattler_build_variant_config", version = "=0.1.7" }
rattler_build_yaml_parser = { path = "crates/rattler_build_yaml_parser", version = "=0.1.7" }

[features]
default = ['rustls', 'recipe-generation', 's3', 'sigstore']
Expand Down
27 changes: 27 additions & 0 deletions crates/rattler_build_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.5](https://github.com/prefix-dev/rattler-build/compare/rattler_build_core-v0.2.4...rattler_build_core-v0.2.5) - 2026-05-20

### Added

- Allow build scripts to override package contents ([#2476](https://github.com/prefix-dev/rattler-build/pull/2476))
- add warn when repodata unsupported ([#2472](https://github.com/prefix-dev/rattler-build/pull/2472))
- v3 packages ([#2452](https://github.com/prefix-dev/rattler-build/pull/2452))

### Fixed

- validate source attestations ([#2338](https://github.com/prefix-dev/rattler-build/pull/2338))
- improve error handling in DependencyResolutionError ([#2485](https://github.com/prefix-dev/rattler-build/pull/2485))
- respect `.orig`-only sources in patch application ([#2470](https://github.com/prefix-dev/rattler-build/pull/2470))
- variant tracking and env vars for staging cache inheritance ([#2455](https://github.com/prefix-dev/rattler-build/pull/2455))
- remove PKG_* environment variables in staging cache, set variant values ([#2449](https://github.com/prefix-dev/rattler-build/pull/2449))
- use force directory removal to handle Windows file locks ([#2444](https://github.com/prefix-dev/rattler-build/pull/2444))
- prevent stacking of pending-rm suffixes on Windows cleanup ([#2439](https://github.com/prefix-dev/rattler-build/pull/2439))
- set CONDA_BUILD env var in build_env.sh to fix env-isolation none ([#2433](https://github.com/prefix-dev/rattler-build/pull/2433))
- include default env vars also in test environment ([#2425](https://github.com/prefix-dev/rattler-build/pull/2425))

### Other

- bump rattler crates ([#2502](https://github.com/prefix-dev/rattler-build/pull/2502))
- bump rattler crates and migrate to reqwest 0.13 ([#2493](https://github.com/prefix-dev/rattler-build/pull/2493))
- lazily initialize the `BaseClient` ([#2456](https://github.com/prefix-dev/rattler-build/pull/2456))
- bump rattler dependencies ([#2457](https://github.com/prefix-dev/rattler-build/pull/2457))

## [0.2.4](https://github.com/prefix-dev/rattler-build/compare/rattler_build_core-v0.2.3...rattler_build_core-v0.2.4) - 2026-04-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_build_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_build_core"
version = "0.2.4"
version = "0.2.5"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/rattler_build_jinja/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.7](https://github.com/prefix-dev/rattler-build/compare/rattler_build_jinja-v0.1.6...rattler_build_jinja-v0.1.7) - 2026-05-20

### Added

- `git.latest_tag_distance` ([#2484](https://github.com/prefix-dev/rattler-build/pull/2484))

### Fixed

- correct `git.latest_tag_distance` parsing for dashed tag names ([#2491](https://github.com/prefix-dev/rattler-build/pull/2491))

## [0.1.6](https://github.com/prefix-dev/rattler-build/compare/rattler_build_jinja-v0.1.5...rattler_build_jinja-v0.1.6) - 2026-04-13

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_build_jinja/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_build_jinja"
version = "0.1.6"
version = "0.1.7"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/rattler_build_jinja/src/ast_variables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,12 @@ fn collect_variables_from_expr(
collect_variables_from_expr(&binop.left, variables);
collect_variables_from_expr(&binop.right, variables);
}
Expr::Compare(compare) => {
collect_variables_from_expr(&compare.expr, variables);
for op in &compare.ops {
collect_variables_from_expr(&op.expr, variables);
}
}
Expr::IfExpr(if_expr) => {
collect_variables_from_expr(&if_expr.test_expr, variables);
collect_variables_from_expr(&if_expr.true_expr, variables);
Expand Down
7 changes: 7 additions & 0 deletions crates/rattler_build_networking/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.6](https://github.com/prefix-dev/rattler-build/compare/rattler_build_networking-v0.1.5...rattler_build_networking-v0.1.6) - 2026-05-20

### Other

- bump rattler crates and migrate to reqwest 0.13 ([#2493](https://github.com/prefix-dev/rattler-build/pull/2493))
- lazily initialize the `BaseClient` ([#2456](https://github.com/prefix-dev/rattler-build/pull/2456))

## [0.1.5](https://github.com/prefix-dev/rattler-build/compare/rattler_build_networking-v0.1.4...rattler_build_networking-v0.1.5) - 2026-04-13

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_build_networking/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_build_networking"
version = "0.1.5"
version = "0.1.6"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
Loading
Loading