From fdf37266b25eb3f5c46ec5ff7a08c52e50ac7ef7 Mon Sep 17 00:00:00 2001 From: Marcus Griep Date: Mon, 20 May 2024 23:28:29 -0600 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 16 ++++++++-------- aliri/CHANGELOG.md | 7 +++++++ aliri/Cargo.toml | 2 +- aliri_actix/CHANGELOG.md | 7 +++++++ aliri_actix/Cargo.toml | 8 ++++---- aliri_axum/CHANGELOG.md | 8 ++++++++ aliri_axum/Cargo.toml | 10 +++++----- aliri_oauth2/CHANGELOG.md | 6 ++++++ aliri_oauth2/Cargo.toml | 6 +++--- aliri_reqwest/CHANGELOG.md | 4 ++++ aliri_reqwest/Cargo.toml | 4 ++-- aliri_tokens/CHANGELOG.md | 14 ++++++++++++++ aliri_tokens/Cargo.toml | 4 ++-- aliri_tower/CHANGELOG.md | 5 +++++ aliri_tower/Cargo.toml | 6 +++--- aliri_warp/Cargo.toml | 6 +++--- 16 files changed, 82 insertions(+), 31 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index dbb6019..980df4c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,14 +1,14 @@ { - "aliri": "0.6.3", - "aliri_actix": "0.9.1", - "aliri_axum": "0.4.0", + "aliri": "0.6.4", + "aliri_actix": "0.9.2", + "aliri_axum": "0.4.1", "aliri_base64": "0.1.8", "aliri_clock": "0.1.4", "aliri_marcos": "0.1.2", - "aliri_oauth2": "0.10.1", - "aliri_reqwest": "0.5.0", - "aliri_tokens": "0.3.1", - "aliri_tower": "0.6.0", + "aliri_oauth2": "0.10.2", + "aliri_reqwest": "0.5.1", + "aliri_tokens": "0.3.2", + "aliri_tower": "0.6.1", "aliri_traits": "0.1.1", - "aliri_warp": "0.9.0" + "aliri_warp": "0.9.1" } diff --git a/aliri/CHANGELOG.md b/aliri/CHANGELOG.md index 02cfa23..abad4cf 100644 --- a/aliri/CHANGELOG.md +++ b/aliri/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.6.4](https://github.com/neoeinstein/aliri/compare/aliri-v0.6.3...aliri-v0.6.4) (2024-05-21) + + +### Bug Fixes + +* **aliri_tokens:** use mode on unix only ([#100](https://github.com/neoeinstein/aliri/issues/100)) ([b73896b](https://github.com/neoeinstein/aliri/commit/b73896bcd5126572943896d0352ca067a30663c3)) + ## [0.6.3](https://github.com/neoeinstein/aliri/compare/aliri-v0.6.2...aliri-v0.6.3) (2024-04-12) diff --git a/aliri/Cargo.toml b/aliri/Cargo.toml index 1821874..0dafd38 100644 --- a/aliri/Cargo.toml +++ b/aliri/Cargo.toml @@ -3,7 +3,7 @@ name = "aliri" description = "Implementations of the Javascript/JSON Object Signing and Encryption (JOSE) standards" keywords = [ "jwk", "jwa", "jose", "jwt", "auth" ] categories = [ "authentication" ] -version = "0.6.3" +version = "0.6.4" authors = ["Marcus Griep "] edition = "2018" readme = "../README.md" diff --git a/aliri_actix/CHANGELOG.md b/aliri_actix/CHANGELOG.md index e07d0f7..7181bfb 100644 --- a/aliri_actix/CHANGELOG.md +++ b/aliri_actix/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * aliri bumped from 0.6.0 to 0.6.4 + * aliri_oauth2 bumped from 0.10.0 to 0.10.2 + * dev-dependencies + * aliri_oauth2 bumped from 0.10.0 to 0.10.2 + ## [0.9.1](https://github.com/neoeinstein/aliri/compare/aliri_actix-v0.9.0...aliri_actix-v0.9.1) (2024-04-12) diff --git a/aliri_actix/Cargo.toml b/aliri_actix/Cargo.toml index 9d2c673..8216df6 100644 --- a/aliri_actix/Cargo.toml +++ b/aliri_actix/Cargo.toml @@ -3,7 +3,7 @@ name = "aliri_actix" description = "Actix for interacting with `aliri` authorities" keywords = [ "actix", "jose", "jwt", "oauth2", "auth" ] categories = [ "authentication", "web-programming", "web-programming::http-server" ] -version = "0.9.1" +version = "0.9.2" authors = ["Marcus Griep "] edition = "2018" readme = "../README.md" @@ -14,9 +14,9 @@ repository = "https://github.com/neoeinstein/aliri" [dependencies] actix-web = { version = "4", default-features = false } -aliri = { version = "0.6.0", path = "../aliri" } +aliri = { version = "0.6.4", path = "../aliri" } aliri_traits = { version = "0.1.0", path = "../aliri_traits" } -aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2" } +aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2" } futures = "0.3" once_cell = "1.19" serde = { version = "1", features = [ "derive" ] } @@ -28,7 +28,7 @@ actix-rt = "2" actix-web = { version = "4", default-features = false, features = ["macros"] } aliri_base64 = { version = "0.1.0", path = "../aliri_base64" } aliri_clock = { version = "0.1.0", path = "../aliri_clock" } -aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = [ "reqwest" ] } +aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = [ "reqwest" ] } color-eyre = "0.6" regex = "1" serde_json = "1" diff --git a/aliri_axum/CHANGELOG.md b/aliri_axum/CHANGELOG.md index 2679700..e4eaa5b 100644 --- a/aliri_axum/CHANGELOG.md +++ b/aliri_axum/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * aliri bumped from 0.6.0 to 0.6.4 + * aliri_oauth2 bumped from 0.10.0 to 0.10.2 + * dev-dependencies + * aliri_oauth2 bumped from 0.10.0 to 0.10.2 + * aliri_tower bumped from 0.6.0 to 0.6.1 + ## [0.4.0](https://github.com/neoeinstein/aliri/compare/aliri_axum-v0.3.0...aliri_axum-v0.4.0) (2024-04-12) diff --git a/aliri_axum/Cargo.toml b/aliri_axum/Cargo.toml index 65db59c..e3bb317 100644 --- a/aliri_axum/Cargo.toml +++ b/aliri_axum/Cargo.toml @@ -3,7 +3,7 @@ name = "aliri_axum" description = "Axum for interacting with `aliri` authorities" keywords = [ "axum", "jose", "jwt", "oauth2", "auth" ] categories = [ "authentication", "web-programming", "web-programming::http-server" ] -version = "0.4.0" +version = "0.4.1" authors = ["Marcus Griep "] edition = "2021" readme = "../README.md" @@ -13,8 +13,8 @@ repository = "https://github.com/neoeinstein/aliri" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -aliri = { version = "0.6.0", path = "../aliri", default-features = false } -aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", default-features = false } +aliri = { version = "0.6.4", path = "../aliri", default-features = false } +aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", default-features = false } aliri_traits = { version = "0.1.1", path = "../aliri_traits" } axum-core = "0.4.3" http = "1.1.0" @@ -24,8 +24,8 @@ once_cell = "1" aliri_base64 = { version = "0.1.5", path = "../aliri_base64" } aliri_braid = "0.4.0" aliri_clock = { version = "0.1.4", path = "../aliri_clock" } -aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = ["rsa", "tokio", "reqwest"] } -aliri_tower = { version = "0.6.0", path = "../aliri_tower" } +aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = ["rsa", "tokio", "reqwest"] } +aliri_tower = { version = "0.6.1", path = "../aliri_tower" } axum = { version = "0.7.5", default-features = false, features = ["tokio", "http1", "http2"] } color-eyre = "0.6.3" reqwest = "0.12.3" diff --git a/aliri_oauth2/CHANGELOG.md b/aliri_oauth2/CHANGELOG.md index acc043c..d807451 100644 --- a/aliri_oauth2/CHANGELOG.md +++ b/aliri_oauth2/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * aliri bumped from 0.6.1 to 0.6.4 + * dev-dependencies + * aliri bumped from 0.6.0 to 0.6.4 + ## [0.10.1](https://github.com/neoeinstein/aliri/compare/aliri_oauth2-v0.10.0...aliri_oauth2-v0.10.1) (2024-04-12) diff --git a/aliri_oauth2/Cargo.toml b/aliri_oauth2/Cargo.toml index a394cc5..fa3befa 100644 --- a/aliri_oauth2/Cargo.toml +++ b/aliri_oauth2/Cargo.toml @@ -3,7 +3,7 @@ name = "aliri_oauth2" description = "JWT authorization based on validating OAuth2 scopes" keywords = [ "jose", "jwk", "jwt", "oauth2", "auth" ] categories = [ "authentication" ] -version = "0.10.1" +version = "0.10.2" authors = ["Marcus Griep "] edition = "2018" readme = "../README.md" @@ -24,7 +24,7 @@ rustc-args = ["--cfg", "docsrs"] features = [ "rsa", "ec", "hmac", "private-keys", "reqwest" ] [dependencies] -aliri = { version = "0.6.1", path = "../aliri", default-features = false } +aliri = { version = "0.6.4", path = "../aliri", default-features = false } aliri_clock = { version = "0.1.0", path = "../aliri_clock" } aliri_traits = { version = "0.1.0", path = "../aliri_traits" } aliri_braid = { version = "0.4.0" } @@ -37,7 +37,7 @@ tokio = { version = "1", features = [ "time" ], optional = true } tracing = "0.1.40" [dev-dependencies] -aliri = { version = "0.6.0", path = "../aliri", features = [ "private-keys" ] } +aliri = { version = "0.6.4", path = "../aliri", features = [ "private-keys" ] } openssl = "0.10" serde_json = "1" tokio = { version = "1", features = [ "rt-multi-thread", "macros" ] } diff --git a/aliri_reqwest/CHANGELOG.md b/aliri_reqwest/CHANGELOG.md index 6159969..a3d6fd8 100644 --- a/aliri_reqwest/CHANGELOG.md +++ b/aliri_reqwest/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * aliri_tokens bumped from 0.3.0 to 0.3.2 + ## [0.5.0](https://github.com/neoeinstein/aliri/compare/aliri_reqwest-v0.4.1...aliri_reqwest-v0.5.0) (2024-04-12) diff --git a/aliri_reqwest/Cargo.toml b/aliri_reqwest/Cargo.toml index 7072cd7..bf57080 100644 --- a/aliri_reqwest/Cargo.toml +++ b/aliri_reqwest/Cargo.toml @@ -3,7 +3,7 @@ name = "aliri_reqwest" description = "Background token management and renewal for reqwest based on best practices" keywords = [ "reqwest", "jwt", "oauth2", "auth" ] categories = [ "authentication" ] -version = "0.5.0" +version = "0.5.1" authors = ["Marcus Griep "] edition = "2021" readme = "../README.md" @@ -13,7 +13,7 @@ repository = "https://github.com/neoeinstein/aliri" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -aliri_tokens = { version = "0.3.0", path = "../aliri_tokens" } +aliri_tokens = { version = "0.3.2", path = "../aliri_tokens" } aliri_clock = { version = "0.1.4", path = "../aliri_clock" } async-trait = "0.1.79" bytes = "1.6.0" diff --git a/aliri_tokens/CHANGELOG.md b/aliri_tokens/CHANGELOG.md index 5c30058..4b39e5b 100644 --- a/aliri_tokens/CHANGELOG.md +++ b/aliri_tokens/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.3.2](https://github.com/neoeinstein/aliri/compare/aliri_tokens-v0.3.1...aliri_tokens-v0.3.2) (2024-05-21) + + +### Bug Fixes + +* **aliri_tokens:** use mode on unix only ([#100](https://github.com/neoeinstein/aliri/issues/100)) ([b73896b](https://github.com/neoeinstein/aliri/commit/b73896bcd5126572943896d0352ca067a30663c3)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * aliri bumped from 0.6.0 to 0.6.4 + ## [0.3.1](https://github.com/neoeinstein/aliri/compare/aliri_tokens-v0.3.0...aliri_tokens-v0.3.1) (2024-04-12) diff --git a/aliri_tokens/Cargo.toml b/aliri_tokens/Cargo.toml index a7ffa49..d7c71b1 100644 --- a/aliri_tokens/Cargo.toml +++ b/aliri_tokens/Cargo.toml @@ -3,7 +3,7 @@ name = "aliri_tokens" description = "Background token management and renewal based on best practices" keywords = [ "jwt", "oauth2", "auth" ] categories = [ "authentication" ] -version = "0.3.1" +version = "0.3.2" authors = ["Marcus Griep "] edition = "2018" readme = "../README.md" @@ -21,7 +21,7 @@ oauth2 = ["reqwest"] rustc-args = ["--cfg", "docsrs"] [dependencies] -aliri = { version = "0.6.0", path = "../aliri" } +aliri = { version = "0.6.4", path = "../aliri" } aliri_braid = "0.4.0" aliri_clock = { version = "0.1.4", path = "../aliri_clock" } async-trait = "0.1.79" diff --git a/aliri_tower/CHANGELOG.md b/aliri_tower/CHANGELOG.md index 897bd05..f52648e 100644 --- a/aliri_tower/CHANGELOG.md +++ b/aliri_tower/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * aliri bumped from 0.6.0 to 0.6.4 + * aliri_oauth2 bumped from 0.10.0 to 0.10.2 + ## [0.6.0](https://github.com/neoeinstein/aliri/compare/aliri_tower-v0.5.0...aliri_tower-v0.6.0) (2024-04-12) diff --git a/aliri_tower/Cargo.toml b/aliri_tower/Cargo.toml index c593220..30bf3dc 100644 --- a/aliri_tower/Cargo.toml +++ b/aliri_tower/Cargo.toml @@ -3,7 +3,7 @@ name = "aliri_tower" description = "Tower middleware for interacting with `aliri` authorities" keywords = [ "tower", "jose", "jwt", "oauth2", "auth" ] categories = [ "authentication", "web-programming", "web-programming::http-server" ] -version = "0.6.0" +version = "0.6.1" authors = ["Marcus Griep "] edition = "2021" readme = "../README.md" @@ -13,9 +13,9 @@ repository = "https://github.com/neoeinstein/aliri" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -aliri = { version = "0.6.0", path = "../aliri" } +aliri = { version = "0.6.4", path = "../aliri" } aliri_traits = { version = "0.1.1", path = "../aliri_traits" } -aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = [ "reqwest" ] } +aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = [ "reqwest" ] } bytes = "1.6.0" http = "1.1" http-body = "1.0" diff --git a/aliri_warp/Cargo.toml b/aliri_warp/Cargo.toml index ffa308f..c03aab4 100644 --- a/aliri_warp/Cargo.toml +++ b/aliri_warp/Cargo.toml @@ -3,7 +3,7 @@ name = "aliri_warp" description = "Warp filters for interacting with `aliri` authorities" keywords = [ "warp", "jose", "jwt", "oauth2", "auth" ] categories = [ "authentication", "web-programming", "web-programming::http-server" ] -version = "0.9.0" +version = "0.9.1" authors = ["Marcus Griep "] edition = "2018" readme = "../README.md" @@ -13,8 +13,8 @@ repository = "https://github.com/neoeinstein/aliri" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -aliri = { version = "0.6.0", path = "../aliri" } -aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = [ "reqwest" ] } +aliri = { version = "0.6.4", path = "../aliri" } +aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = [ "reqwest" ] } serde = { version = "1", features = [ "derive" ] } thiserror = "1" tracing = "0.1"