Skip to content
Open
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
12 changes: 6 additions & 6 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.5"
version = "0.1.6"
edition = "2021"
license = "(Apache-2.0 OR MIT)"
repository = "https://github.com/OpenJobDescription/openjd-rs"
Expand Down
21 changes: 21 additions & 0 deletions crates/openjd-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ 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.9](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-cli-v0.1.8...openjd-cli-v0.1.9) - 2026-08-12

### Bug fixes

- PATHEXT-aware Windows executable resolution on both spawn paths ([#286](https://github.com/OpenJobDescription/openjd-rs/pull/286))

- Defer zero-duration chunk adjustment ([#282](https://github.com/OpenJobDescription/openjd-rs/pull/282))

- Close remaining RFC 0008 wrap-action gaps in hook scoping, cleanup, and preflight


### Miscellaneous

- Update serde-saphyr to 1.0.1 ([#304](https://github.com/OpenJobDescription/openjd-rs/pull/304))


### Refactor

- Simplify run lifecycle and wrap dispatch ([#280](https://github.com/OpenJobDescription/openjd-rs/pull/280))


## [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
Expand Down
8 changes: 4 additions & 4 deletions crates/openjd-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openjd-cli"
version = "0.1.8"
version = "0.1.9"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
Expand All @@ -17,9 +17,9 @@ name = "openjd"
path = "src/main.rs"

[dependencies]
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" }
openjd-expr = { path = "../openjd-expr", version = "0.3.0" }
openjd-model = { path = "../openjd-model", version = "0.5.0" }
openjd-sessions = { path = "../openjd-sessions", version = "0.5.0" }
clap = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
18 changes: 18 additions & 0 deletions crates/openjd-expr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ 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.3.0](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-expr-v0.2.1...openjd-expr-v0.3.0) - 2026-08-12

### Bug fixes

- Match spec behavior for identified float, string, and path differences ([#305](https://github.com/OpenJobDescription/openjd-rs/pull/305))

- Preserve compatible unresolved targets ([#300](https://github.com/OpenJobDescription/openjd-rs/pull/300))

- Stop target_type leaking into operand evaluation; accept 'any' target ([#297](https://github.com/OpenJobDescription/openjd-rs/pull/297))

- [**breaking**] Enforce memory and operation limits before building large string outputs ([#284](https://github.com/OpenJobDescription/openjd-rs/pull/284))


### Features

- [**breaking**] Bounded range values, budgeted range equality, exact int/float comparison ([#276](https://github.com/OpenJobDescription/openjd-rs/pull/276))


## [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
Expand Down
2 changes: 1 addition & 1 deletion crates/openjd-expr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openjd-expr"
version = "0.2.1"
version = "0.3.0"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/openjd-for-js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ publish = false
crate-type = ["cdylib", "rlib"]

[dependencies]
openjd-model = { path = "../openjd-model", version = "0.4.0" }
openjd-expr = { path = "../openjd-expr", version = "0.2.1" }
openjd-model = { path = "../openjd-model", version = "0.5.0" }
openjd-expr = { path = "../openjd-expr", version = "0.3.0" }
wasm-bindgen = "0.2"
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
17 changes: 17 additions & 0 deletions crates/openjd-model/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ 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.5.0](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-model-v0.4.0...openjd-model-v0.5.0) - 2026-08-12

### Bug fixes

- Accept Task.File property access in format strings ([#292](https://github.com/OpenJobDescription/openjd-rs/pull/292))


### Features

- [**breaking**] Bounded range values, budgeted range equality, exact int/float comparison ([#276](https://github.com/OpenJobDescription/openjd-rs/pull/276))


### Miscellaneous

- Update serde-saphyr to 1.0.1 ([#304](https://github.com/OpenJobDescription/openjd-rs/pull/304))


## [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
Expand Down
4 changes: 2 additions & 2 deletions crates/openjd-model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openjd-model"
version = "0.4.0"
version = "0.5.0"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
Expand All @@ -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.1" }
openjd-expr = { path = "../openjd-expr", version = "0.3.0" }
indexmap = { version = "2", features = ["serde"] }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
18 changes: 18 additions & 0 deletions crates/openjd-sessions/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ 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.5.0](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-sessions-v0.4.0...openjd-sessions-v0.5.0) - 2026-08-12

### Bug fixes

- Escape undecodable subprocess output bytes ([#298](https://github.com/OpenJobDescription/openjd-rs/pull/298))

- PATHEXT-aware Windows executable resolution on both spawn paths ([#286](https://github.com/OpenJobDescription/openjd-rs/pull/286))

- [**breaking**] Enforce memory and operation limits before building large string outputs ([#284](https://github.com/OpenJobDescription/openjd-rs/pull/284))

- Close remaining RFC 0008 wrap-action gaps in hook scoping, cleanup, and preflight


### Refactor

- Simplify run lifecycle and wrap dispatch ([#280](https://github.com/OpenJobDescription/openjd-rs/pull/280))


## [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
Expand Down
6 changes: 3 additions & 3 deletions crates/openjd-sessions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openjd-sessions"
version = "0.4.0"
version = "0.5.0"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
Expand All @@ -25,8 +25,8 @@ build = "build.rs"
test-utils = []

[dependencies]
openjd-expr = { path = "../openjd-expr", version = "0.2.1" }
openjd-model = { path = "../openjd-model", version = "0.4.0" }
openjd-expr = { path = "../openjd-expr", version = "0.3.0" }
openjd-model = { path = "../openjd-model", version = "0.5.0" }
regex = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
7 changes: 7 additions & 0 deletions crates/openjd-snapshots/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-snapshots-v0.1.5...openjd-snapshots-v0.1.6) - 2026-08-12

### Miscellaneous

- Update Cargo.lock dependencies


## [0.1.5](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-snapshots-v0.1.4...openjd-snapshots-v0.1.5) - 2026-07-22

### Miscellaneous
Expand Down