Skip to content
Closed
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
105 changes: 53 additions & 52 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions policies/rust/now-policy-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [[0.4.0](https://github.com/Devolutions/now-libraries/compare/now-policy-api-v0.3.1...now-policy-api-v0.4.0)] - 2026-08-28

### <!-- 1 -->Features

- [**breaking**] Add `PolicyResponse` and `PolicyResponseKind` for active policy inspection, embedding `now_policy::PolicyDocument`; make `now-policy` a required dependency and remove the `policy-compat` feature and conversions ([#93](https://github.com/Devolutions/now-libraries/issues/93)) ([cd5a6e9f8e](https://github.com/Devolutions/now-libraries/commit/cd5a6e9f8eeb3c70cc9ef9003ffeb46716ceced6))

## [[0.3.1](https://github.com/Devolutions/now-libraries/compare/now-policy-api-v0.3.0...now-policy-api-v0.3.1)] - 2026-08-13

### <!-- 4 -->Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion policies/rust/now-policy-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "now-policy-api"
version = "0.3.1"
version = "0.4.0"
edition = "2024"
license.workspace = true
homepage.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions policies/rust/now-policy-server-template/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [[0.4.0](https://github.com/Devolutions/now-libraries/compare/now-policy-server-template-v0.3.0...now-policy-server-template-v0.4.0)] - 2026-08-28

### <!-- 1 -->Features

- [**breaking**] Add the required `PackageBrokerServer::active_policy` method and expose it through `GET /v1/policy`; the mock server can configure policy responses or errors and defaults to `404 Not Found` when no active policy is set ([#93](https://github.com/Devolutions/now-libraries/issues/93)) ([cd5a6e9f8e](https://github.com/Devolutions/now-libraries/commit/cd5a6e9f8eeb3c70cc9ef9003ffeb46716ceced6))

## [[0.3.0](https://github.com/Devolutions/now-libraries/compare/now-policy-server-template-v0.2.0...now-policy-server-template-v0.3.0)] - 2026-08-05

### <!-- 1 -->Features
Expand Down
4 changes: 2 additions & 2 deletions policies/rust/now-policy-server-template/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "now-policy-server-template"
version = "0.3.0"
version = "0.4.0"
edition = "2024"
license.workspace = true
homepage.workspace = true
Expand All @@ -17,7 +17,7 @@ workspace = true
aide = { version = "0.15", features = ["axum", "axum-json"] }
async-trait = "0.1"
axum = { version = "0.8", default-features = false, features = ["json"] }
now-policy-api = { version = "0.3", path = "../now-policy-api" }
now-policy-api = { version = "0.4", path = "../now-policy-api" }
now-policy = { version = "0.2", path = "../now-policy" }
schemars = "0.9"
serde = { version = "1", features = ["derive"] }
Expand Down