Skip to content

Commit de35743

Browse files
pavex-releaser[bot]LukeMathWalker
authored andcommitted
chore: release v0.2.5
1 parent bf3c6fb commit de35743

File tree

20 files changed

+84
-67
lines changed

20 files changed

+84
-67
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.5](https://github.com/LukeMathWalker/pavex/compare/0.2.4...0.2.5) - 2025-09-26
11+
12+
13+
### ⛰️ Features
14+
- Don't raise an error for malformed request cookies (by @LukeMathWalker) - #526
15+
- Implement Debug for pavex::Response (by @LukeMathWalker) - #525
16+
17+
18+
19+
### 🐛 Bug Fixes
20+
- Replace '{CONSOLE_URL}' with the concrete URL value before showing the error message to the user (by @LukeMathWalker) - #540
21+
22+
23+
### Contributors
24+
25+
* @LukeMathWalker
26+
1027
## [0.2.4](https://github.com/LukeMathWalker/pavex/compare/0.2.3...0.2.4) - 2025-08-09
1128

1229
### 📚 Documentation

libs/Cargo.lock

Lines changed: 23 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2024"
1212
repository = "https://github.com/LukeMathWalker/pavex"
1313
homepage = "https://pavex.dev"
1414
license = "Apache-2.0"
15-
version = "0.2.4"
15+
version = "0.2.5"
1616

1717
[workspace.dependencies]
1818
vergen-gitcl = { version = "1.0.8", features = ["build"] }

libs/pavex/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ futures-util = { workspace = true }
3434
mime = { workspace = true }
3535
thiserror = { workspace = true }
3636
serde = { workspace = true, features = ["derive"] }
37-
pavex_macros = { path = "../pavex_macros", version = "0.2.4" }
37+
pavex_macros = { path = "../pavex_macros", version = "0.2.5" }
3838
paste = { workspace = true }
3939
tracing = { workspace = true }
4040
http-body-util = { workspace = true }
4141
pin-project-lite = { workspace = true }
4242
ubyte = { workspace = true, features = ["serde"] }
43-
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.2.4" }
44-
pavex_reflection = { path = "../pavex_reflection", version = "=0.2.4" }
45-
persist_if_changed = { path = "../persist_if_changed", version = "0.2.4" }
43+
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.2.5" }
44+
pavex_reflection = { path = "../pavex_reflection", version = "=0.2.5" }
45+
persist_if_changed = { path = "../persist_if_changed", version = "0.2.5" }
4646

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

9898
pavex_macros = { path = "../pavex_macros", features = [
9999
"allow_unreachable_pub",
100-
], version = "0.2.4" }
100+
], version = "0.2.5" }

libs/pavex_bp_schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ license.workspace = true
99

1010
[dependencies]
1111
serde = { workspace = true, features = ["derive"] }
12-
pavex_reflection = { path = "../pavex_reflection", version = "=0.2.4" }
12+
pavex_reflection = { path = "../pavex_reflection", version = "=0.2.5" }

libs/pavex_cli/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ vergen-gitcl = { workspace = true }
2020
anyhow = { workspace = true }
2121

2222
[dependencies]
23-
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.2.4" }
24-
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.2.4" }
25-
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.4" }
26-
pavex_cli_flock = { path = "../pavex_cli_flock", version = "0.2.4" }
27-
pavex_cli_diagnostic = { path = "../pavex_cli_diagnostic", version = "0.2.4" }
28-
pavex_miette = { path = "../pavex_miette", version = "0.2.4" }
23+
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.2.5" }
24+
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.2.5" }
25+
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.5" }
26+
pavex_cli_flock = { path = "../pavex_cli_flock", version = "0.2.5" }
27+
pavex_cli_diagnostic = { path = "../pavex_cli_diagnostic", version = "0.2.5" }
28+
pavex_miette = { path = "../pavex_miette", version = "0.2.5" }
2929
tracing_log_error = { workspace = true }
3030
async-trait = { workspace = true }
3131
http = { workspace = true }

libs/pavex_cli_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ license.workspace = true
99

1010
[dependencies]
1111
anyhow = { workspace = true }
12-
pavex = { path = "../pavex", version = "0.2.4" }
12+
pavex = { path = "../pavex", version = "0.2.5" }
1313
thiserror = { workspace = true }

libs/pavex_cli_deps/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version.workspace = true
99

1010
[dependencies]
1111
anyhow = { workspace = true }
12-
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.4" }
12+
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.5" }
1313
cargo-like-utils = { workspace = true }
1414
thiserror = { workspace = true }
1515
miette = { workspace = true }

libs/pavex_cli_flock/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version.workspace = true
99

1010
[dependencies]
1111
anyhow = { workspace = true }
12-
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.4" }
12+
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.2.5" }
1313
tracing = { workspace = true }
1414
libc = { workspace = true }
1515
fs-err = { workspace = true }

libs/pavex_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ proc-macro = true
1717
allow_unreachable_pub = []
1818

1919
[dependencies]
20-
pavexc_attr_parser = { path = "../pavexc_attr_parser", version = "=0.2.4" }
20+
pavexc_attr_parser = { path = "../pavexc_attr_parser", version = "=0.2.5" }
2121
paste = { workspace = true }
2222
darling = { workspace = true }
2323
proc-macro2 = { workspace = true }

0 commit comments

Comments
 (0)