diff --git a/Cargo.lock b/Cargo.lock index 9b0d760a..2772b101 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2060,7 +2060,7 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] name = "openjd-cli" -version = "0.1.7" +version = "0.1.8" dependencies = [ "chrono", "clap", @@ -2078,7 +2078,7 @@ dependencies = [ [[package]] name = "openjd-expr" -version = "0.2.0" +version = "0.2.1" dependencies = [ "regex", "regex-syntax", @@ -2093,7 +2093,7 @@ dependencies = [ [[package]] name = "openjd-for-js" -version = "0.1.4" +version = "0.1.5" dependencies = [ "js-sys", "openjd-expr", @@ -2107,7 +2107,7 @@ dependencies = [ [[package]] name = "openjd-model" -version = "0.3.1" +version = "0.4.0" dependencies = [ "indexmap", "openjd-expr", @@ -2121,7 +2121,7 @@ dependencies = [ [[package]] name = "openjd-sessions" -version = "0.3.2" +version = "0.4.0" dependencies = [ "bitflags", "futures-util", @@ -2148,7 +2148,7 @@ dependencies = [ [[package]] name = "openjd-snapshots" -version = "0.1.4" +version = "0.1.5" dependencies = [ "async-trait", "aws-config", diff --git a/Cargo.toml b/Cargo.toml index 82afde57..91b7f7aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ resolver = "2" # the workspace version below as a convenience — it has `publish = false` so # the version number is not meaningful on npm. [workspace.package] -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "(Apache-2.0 OR MIT)" repository = "https://github.com/OpenJobDescription/openjd-rs" diff --git a/crates/openjd-cli/CHANGELOG.md b/crates/openjd-cli/CHANGELOG.md index dd2ea05e..010ceffc 100644 --- a/crates/openjd-cli/CHANGELOG.md +++ b/crates/openjd-cli/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this crate are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.8](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-cli-v0.1.7...openjd-cli-v0.1.8) - 2026-07-22 + +### Bug fixes + +- Close top three RFC 0008 wrap-action review gaps ([#265](https://github.com/OpenJobDescription/openjd-rs/pull/265)) + + ## [0.1.6](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-cli-v0.1.5...openjd-cli-v0.1.6) - 2026-07-02 ### Miscellaneous diff --git a/crates/openjd-cli/Cargo.toml b/crates/openjd-cli/Cargo.toml index bea19778..c3b970f6 100644 --- a/crates/openjd-cli/Cargo.toml +++ b/crates/openjd-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openjd-cli" -version = "0.1.7" +version = "0.1.8" edition.workspace = true license.workspace = true rust-version.workspace = true @@ -17,9 +17,9 @@ name = "openjd" path = "src/main.rs" [dependencies] -openjd-expr = { path = "../openjd-expr", version = "0.2.0" } -openjd-model = { path = "../openjd-model", version = "0.3.1" } -openjd-sessions = { path = "../openjd-sessions", version = "0.3.2" } +openjd-expr = { path = "../openjd-expr", version = "0.2.1" } +openjd-model = { path = "../openjd-model", version = "0.4.0" } +openjd-sessions = { path = "../openjd-sessions", version = "0.4.0" } clap = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } diff --git a/crates/openjd-expr/CHANGELOG.md b/crates/openjd-expr/CHANGELOG.md index df9ca1e5..d5512442 100644 --- a/crates/openjd-expr/CHANGELOG.md +++ b/crates/openjd-expr/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this crate are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.1](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-expr-v0.2.0...openjd-expr-v0.2.1) - 2026-07-22 + +### Bug fixes + +- Harden arithmetic against overflow, saturation, and unbudgeted allocation ([#272](https://github.com/OpenJobDescription/openjd-rs/pull/272)) + + ## [0.2.0](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-expr-v0.1.2...openjd-expr-v0.2.0) - 2026-07-15 ### Bug fixes diff --git a/crates/openjd-expr/Cargo.toml b/crates/openjd-expr/Cargo.toml index ec668c12..c3dcde24 100644 --- a/crates/openjd-expr/Cargo.toml +++ b/crates/openjd-expr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openjd-expr" -version = "0.2.0" +version = "0.2.1" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/crates/openjd-for-js/Cargo.toml b/crates/openjd-for-js/Cargo.toml index b5bcb5c5..4fc8a16c 100644 --- a/crates/openjd-for-js/Cargo.toml +++ b/crates/openjd-for-js/Cargo.toml @@ -15,8 +15,8 @@ publish = false crate-type = ["cdylib", "rlib"] [dependencies] -openjd-model = { path = "../openjd-model", version = "0.3.1" } -openjd-expr = { path = "../openjd-expr", version = "0.2.0" } +openjd-model = { path = "../openjd-model", version = "0.4.0" } +openjd-expr = { path = "../openjd-expr", version = "0.2.1" } wasm-bindgen = "0.2" serde = { workspace = true } serde_json = { workspace = true } diff --git a/crates/openjd-model/CHANGELOG.md b/crates/openjd-model/CHANGELOG.md index 25ca307d..65dd4dde 100644 --- a/crates/openjd-model/CHANGELOG.md +++ b/crates/openjd-model/CHANGELOG.md @@ -4,6 +4,19 @@ All notable changes to this crate are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.0](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-model-v0.3.1...openjd-model-v0.4.0) - 2026-07-22 + +### Bug fixes + +- Close top three RFC 0008 wrap-action review gaps ([#265](https://github.com/OpenJobDescription/openjd-rs/pull/265)) + +- Address post-merge review comments on PR #261 ([#264](https://github.com/OpenJobDescription/openjd-rs/pull/264)) + +- Forward WrappedAction.Cancelation.* to wrap hooks + +- [**breaking**] Cancel handle, setup-failure reporting, plain filename, let scope + + ## [0.3.1](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-model-v0.3.0...openjd-model-v0.3.1) - 2026-07-15 ### Bug fixes diff --git a/crates/openjd-model/Cargo.toml b/crates/openjd-model/Cargo.toml index fbb8355b..f41746e6 100644 --- a/crates/openjd-model/Cargo.toml +++ b/crates/openjd-model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openjd-model" -version = "0.3.1" +version = "0.4.0" edition.workspace = true license.workspace = true rust-version.workspace = true @@ -13,7 +13,7 @@ keywords = ["openjd", "openjobdescription", "job-template", "yaml", "validation" categories = ["parser-implementations", "data-structures"] [dependencies] -openjd-expr = { path = "../openjd-expr", version = "0.2.0" } +openjd-expr = { path = "../openjd-expr", version = "0.2.1" } indexmap = { version = "2", features = ["serde"] } serde = { workspace = true } serde_json = { workspace = true } diff --git a/crates/openjd-sessions/CHANGELOG.md b/crates/openjd-sessions/CHANGELOG.md index 90c0ff09..911db3c2 100644 --- a/crates/openjd-sessions/CHANGELOG.md +++ b/crates/openjd-sessions/CHANGELOG.md @@ -5,6 +5,21 @@ All notable changes to this crate are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.0](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-sessions-v0.3.2...openjd-sessions-v0.4.0) - 2026-07-22 + +### Bug fixes + +- Close top three RFC 0008 wrap-action review gaps ([#265](https://github.com/OpenJobDescription/openjd-rs/pull/265)) + +- Address post-merge review comments on PR #261 ([#264](https://github.com/OpenJobDescription/openjd-rs/pull/264)) + +- Cap helper cancel notify period at the action's declared terminate_delay ([#258](https://github.com/OpenJobDescription/openjd-rs/pull/258)) + +- Forward WrappedAction.Cancelation.* to wrap hooks + +- [**breaking**] Cancel handle, setup-failure reporting, plain filename, let scope + + ## [0.3.2](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-sessions-v0.3.1...openjd-sessions-v0.3.2) - 2026-07-15 ### Bug fixes diff --git a/crates/openjd-sessions/Cargo.toml b/crates/openjd-sessions/Cargo.toml index 6243e7e9..3adea5dc 100644 --- a/crates/openjd-sessions/Cargo.toml +++ b/crates/openjd-sessions/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openjd-sessions" -version = "0.3.2" +version = "0.4.0" edition.workspace = true license.workspace = true rust-version.workspace = true @@ -25,8 +25,8 @@ build = "build.rs" test-utils = [] [dependencies] -openjd-expr = { path = "../openjd-expr", version = "0.2.0" } -openjd-model = { path = "../openjd-model", version = "0.3.1" } +openjd-expr = { path = "../openjd-expr", version = "0.2.1" } +openjd-model = { path = "../openjd-model", version = "0.4.0" } regex = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } diff --git a/crates/openjd-snapshots/CHANGELOG.md b/crates/openjd-snapshots/CHANGELOG.md index de2d19f6..50586264 100644 --- a/crates/openjd-snapshots/CHANGELOG.md +++ b/crates/openjd-snapshots/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this crate are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.5](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-snapshots-v0.1.4...openjd-snapshots-v0.1.5) - 2026-07-22 + +### Miscellaneous + +- Update Cargo.lock dependencies + + ## [0.1.4](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-snapshots-v0.1.3...openjd-snapshots-v0.1.4) - 2026-07-15 ### Bug fixes