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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.5](https://github.com/LukeMathWalker/pavex/compare/0.2.4...0.2.5) - 2025-09-26


### ⛰️ Features
- Don't raise an error for malformed request cookies (by @LukeMathWalker) - #526
- Implement Debug for pavex::Response (by @LukeMathWalker) - #525



### 🐛 Bug Fixes
- Replace '{CONSOLE_URL}' with the concrete URL value before showing the error message to the user (by @LukeMathWalker) - #540


### Contributors

* @LukeMathWalker

## [0.2.4](https://github.com/LukeMathWalker/pavex/compare/0.2.3...0.2.4) - 2025-08-09

### 📚 Documentation
Expand Down
46 changes: 23 additions & 23 deletions libs/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 libs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2024"
repository = "https://github.com/LukeMathWalker/pavex"
homepage = "https://pavex.dev"
license = "Apache-2.0"
version = "0.2.4"
version = "0.2.5"

[workspace.dependencies]
vergen-gitcl = { version = "1.0.8", features = ["build"] }
Expand Down
10 changes: 5 additions & 5 deletions libs/pavex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ futures-util = { workspace = true }
mime = { workspace = true }
thiserror = { workspace = true }
serde = { workspace = true, features = ["derive"] }
pavex_macros = { path = "../pavex_macros", version = "0.2.4" }
pavex_macros = { path = "../pavex_macros", version = "0.2.5" }
paste = { workspace = true }
tracing = { workspace = true }
http-body-util = { workspace = true }
pin-project-lite = { workspace = true }
ubyte = { workspace = true, features = ["serde"] }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.2.4" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.2.4" }
persist_if_changed = { path = "../persist_if_changed", version = "0.2.4" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.2.5" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.2.5" }
persist_if_changed = { path = "../persist_if_changed", version = "0.2.5" }

# Configuration
figment = { workspace = true, features = ["env", "yaml"], optional = true }
Expand Down Expand Up @@ -97,4 +97,4 @@ pavex_tracing = { path = "../pavex_tracing" }

pavex_macros = { path = "../pavex_macros", features = [
"allow_unreachable_pub",
], version = "0.2.4" }
], version = "0.2.5" }
2 changes: 1 addition & 1 deletion libs/pavex_bp_schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license.workspace = true

[dependencies]
serde = { workspace = true, features = ["derive"] }
pavex_reflection = { path = "../pavex_reflection", version = "=0.2.4" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.2.5" }
12 changes: 6 additions & 6 deletions libs/pavex_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ vergen-gitcl = { workspace = true }
anyhow = { workspace = true }

[dependencies]
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.2.4" }
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.2.4" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.4" }
pavex_cli_flock = { path = "../pavex_cli_flock", version = "0.2.4" }
pavex_cli_diagnostic = { path = "../pavex_cli_diagnostic", version = "0.2.4" }
pavex_miette = { path = "../pavex_miette", version = "0.2.4" }
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.2.5" }
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.2.5" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.5" }
pavex_cli_flock = { path = "../pavex_cli_flock", version = "0.2.5" }
pavex_cli_diagnostic = { path = "../pavex_cli_diagnostic", version = "0.2.5" }
pavex_miette = { path = "../pavex_miette", version = "0.2.5" }
tracing_log_error = { workspace = true }
async-trait = { workspace = true }
http = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion libs/pavex_cli_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ license.workspace = true

[dependencies]
anyhow = { workspace = true }
pavex = { path = "../pavex", version = "0.2.4" }
pavex = { path = "../pavex", version = "0.2.5" }
thiserror = { workspace = true }
2 changes: 1 addition & 1 deletion libs/pavex_cli_deps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version.workspace = true

[dependencies]
anyhow = { workspace = true }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.4" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.5" }
cargo-like-utils = { workspace = true }
thiserror = { workspace = true }
miette = { workspace = true }
2 changes: 1 addition & 1 deletion libs/pavex_cli_flock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version.workspace = true

[dependencies]
anyhow = { workspace = true }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.4" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.5" }
tracing = { workspace = true }
libc = { workspace = true }
fs-err = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion libs/pavex_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proc-macro = true
allow_unreachable_pub = []

[dependencies]
pavexc_attr_parser = { path = "../pavexc_attr_parser", version = "=0.2.4" }
pavexc_attr_parser = { path = "../pavexc_attr_parser", version = "=0.2.5" }
paste = { workspace = true }
darling = { workspace = true }
proc-macro2 = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions libs/pavex_session/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ license.workspace = true
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(pavex_ide_hint)'] }

[dependencies]
pavex = { version = "0.2.4", path = "../pavex", default-features = false, features = [
pavex = { version = "0.2.5", path = "../pavex", default-features = false, features = [
"cookie",
] }
pavex_tracing = { version = "0.2.4", path = "../pavex_tracing" }
pavex_tracing = { version = "0.2.5", path = "../pavex_tracing" }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
anyhow = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions libs/pavex_session_memory_store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ license.workspace = true
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(pavex_ide_hint)'] }

[dependencies]
pavex_session = { version = "0.2.4", path = "../pavex_session" }
pavex = { version = "0.2.4", path = "../pavex" }
pavex_session = { version = "0.2.5", path = "../pavex_session" }
pavex = { version = "0.2.5", path = "../pavex" }
serde_json = { workspace = true }
async-trait = { workspace = true }
tokio = { workspace = true, features = ["sync"] }
Expand Down
4 changes: 2 additions & 2 deletions libs/pavex_session_redis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ version.workspace = true
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
pavex = { version = "0.2.4", path = "../pavex" }
pavex_session = { version = "0.2.4", path = "../pavex_session" }
pavex = { version = "0.2.5", path = "../pavex" }
pavex_session = { version = "0.2.5", path = "../pavex_session" }
redis = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions libs/pavex_session_sqlx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ unexpected_cfgs = { level = "allow", check-cfg = ['cfg(pavex_ide_hint)'] }

[dependencies]
jiff-sqlx = { workspace = true }
pavex_session = { version = "0.2.4", path = "../pavex_session" }
pavex = { version = "0.2.4", path = "../pavex" }
pavex_session = { version = "0.2.5", path = "../pavex_session" }
pavex = { version = "0.2.5", path = "../pavex" }
serde_json = { workspace = true }
async-trait = { workspace = true }
tokio = { workspace = true, features = ["sync"] }
Expand Down
2 changes: 1 addition & 1 deletion libs/pavex_test_runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ walkdir = { workspace = true }
serde_json = { workspace = true }
itertools = { workspace = true }
sha2 = { workspace = true }
persist_if_changed = { path = "../persist_if_changed", version = "0.2.4" }
persist_if_changed = { path = "../persist_if_changed", version = "0.2.5" }
object-pool = { workspace = true }
num_cpus = { workspace = true }
globwalk = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion libs/pavex_tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ readme = "README.md"
[dependencies]
tracing = { workspace = true, features = ["std"] }
tracing_log_error = { workspace = true }
pavex = { version = "0.2.4", path = "../pavex" }
pavex = { version = "0.2.5", path = "../pavex" }
Loading
Loading