Skip to content

Commit

Permalink
chore: release v0.1.71
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeMathWalker committed Feb 1, 2025
1 parent bb5e586 commit 886851f
Show file tree
Hide file tree
Showing 17 changed files with 74 additions and 53 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.71](https://github.com/LukeMathWalker/pavex/compare/0.1.70...0.1.71) - 2025-02-01


### ⛰️ Features
- Inform the user when generating JSON docs for crates in the workspace (by @LukeMathWalker) - #430
- Strive to use the path with the smallest number of segments in the generated code (by @LukeMathWalker) - #430
- All ApplicationState fields should be public to allow manipulation of the state ahead of request serving. This is particularly important for end-to-end tests. (by @LukeMathWalker) - #430
- Assign unique and intelligible field names to the singletons stored inside ApplicationState (by @LukeMathWalker) - #430



### 🐛 Bug Fixes
- Don't confuse the JSON docs for different versions of the same crate. Be defensive against cargo's broken caching strategy. (by @LukeMathWalker) - #430




### Contributors

* @LukeMathWalker

## [0.1.70](https://github.com/LukeMathWalker/pavex/compare/0.1.69...0.1.70) - 2025-01-24


Expand Down
42 changes: 21 additions & 21 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 = "2021"
repository = "https://github.com/LukeMathWalker/pavex"
homepage = "https://pavex.dev"
license = "Apache-2.0"
version = "0.1.70"
version = "0.1.71"

[workspace.dependencies]
vergen-gitcl = { version = "1.0.5", features = ["build"] }
Expand Down
8 changes: 4 additions & 4 deletions libs/pavex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ futures-util = { workspace = true }
mime = { workspace = true }
thiserror = { workspace = true }
serde = { workspace = true, features = ["derive"] }
pavex_macros = { path = "../pavex_macros", version = "0.1.70" }
pavex_macros = { path = "../pavex_macros", version = "0.1.71" }
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.1.70" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.70" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.70" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.71" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.71" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.71" }

# Route parameters
matchit = { workspace = true }
Expand Down
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,5 +9,5 @@ license.workspace = true

[dependencies]
serde = { workspace = true, features = ["derive"] }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.70" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.71" }
px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" }
10 changes: 5 additions & 5 deletions libs/pavex_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ vergen-gitcl = { workspace = true }
anyhow = { workspace = true }

[dependencies]
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.70" }
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.1.70" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.70" }
pavex_cli_flock = { path = "../pavex_cli_flock", version = "0.1.70" }
pavex_miette = { path = "../pavex_miette", version = "0.1.70" }
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.71" }
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.1.71" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.71" }
pavex_cli_flock = { path = "../pavex_cli_flock", version = "0.1.71" }
pavex_miette = { path = "../pavex_miette", version = "0.1.71" }
tracing_log_error = { workspace = true }
clap = { workspace = true, features = ["derive", "env"] }
miette = { 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,6 +9,6 @@ license.workspace = true

[dependencies]
anyhow = { workspace = true }
pavex = { path = "../pavex", version = "0.1.70" }
pavex = { path = "../pavex", version = "0.1.71" }
thiserror = { workspace = true }
px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" }
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,6 +9,6 @@ version.workspace = true

[dependencies]
anyhow = { workspace = true }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.70" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.71" }
cargo-like-utils = { workspace = true }
px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" }
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.1.70" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.71" }
tracing = { workspace = true }
libc = { workspace = true }
fs-err = { 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 @@ -8,10 +8,10 @@ repository.workspace = true
license.workspace = true

[dependencies]
pavex = { version = "0.1.70", path = "../pavex", default-features = false, features = [
pavex = { version = "0.1.71", path = "../pavex", default-features = false, features = [
"cookie",
] }
pavex_tracing = { version = "0.1.70", path = "../pavex_tracing" }
pavex_tracing = { version = "0.1.71", path = "../pavex_tracing" }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion libs/pavex_session_memory_store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository.workspace = true
license.workspace = true

[dependencies]
pavex_session = { version = "0.1.70", path = "../pavex_session" }
pavex_session = { version = "0.1.71", path = "../pavex_session" }
time = { workspace = true, features = ["std"] }
serde_json = { workspace = true }
async-trait = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion libs/pavex_session_sqlx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ postgres = ["sqlx/postgres"]
all-features = true

[dependencies]
pavex_session = { version = "0.1.70", path = "../pavex_session" }
pavex_session = { version = "0.1.71", path = "../pavex_session" }
time = { workspace = true, features = ["std"] }
serde_json = { workspace = true }
async-trait = { workspace = true }
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 @@ -31,7 +31,7 @@ walkdir = { workspace = true }
serde_json = { workspace = true }
itertools = { workspace = true }
sha2 = { workspace = true }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.70" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.71" }
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,5 +12,5 @@ readme = "README.md"
[dependencies]
tracing = { workspace = true, features = ["std"] }
tracing_log_error = { workspace = true }
pavex = { version = "0.1.70", path = "../pavex" }
pavex = { version = "0.1.71", path = "../pavex" }
px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" }
10 changes: 5 additions & 5 deletions libs/pavexc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ anyhow = { workspace = true }
debug_assertions = []

[dependencies]
pavex = { path = "../pavex", version = "0.1.70" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.70" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "=0.1.70" }
rustdoc_types = { path = "../pavexc_rustdoc_types", version = "=0.1.70", package = "pavexc_rustdoc_types" }
pavex = { path = "../pavex", version = "0.1.71" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.71" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "=0.1.71" }
rustdoc_types = { path = "../pavexc_rustdoc_types", version = "=0.1.71", package = "pavexc_rustdoc_types" }
cargo-like-utils = { workspace = true }
tracing_log_error = { workspace = true }
syn = { workspace = true, features = ["full", "extra-traits", "visit"] }
Expand Down Expand Up @@ -53,7 +53,7 @@ once_cell = { workspace = true }
toml = { workspace = true }
toml_edit = { workspace = true, features = ["serde"] }
semver = { workspace = true }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.70" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.71" }
matchit = { workspace = true }
relative-path = { workspace = true }
camino = { workspace = true }
Expand Down
12 changes: 6 additions & 6 deletions libs/pavexc_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ path = "src/main.rs"

[dependencies]
clap = { workspace = true, features = ["derive", "env"] }
pavexc = { path = "../pavexc", version = "0.1.70" }
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.70" }
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.1.70" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.70" }
pavexc = { path = "../pavexc", version = "0.1.71" }
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.71" }
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.1.71" }
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.71" }
tracing_log_error = { workspace = true }
cargo-like-utils = { workspace = true }
pavex_miette = { path = "../pavex_miette", version = "0.1.70" }
pavex_miette = { path = "../pavex_miette", version = "0.1.71" }
liquid-core = { workspace = true }
miette = { workspace = true }
fs-err = { workspace = true }
Expand All @@ -36,7 +36,7 @@ supports-color = { workspace = true }
include_dir = { workspace = true }
path-absolutize = { workspace = true }
ron = { workspace = true }
generate_from_path = { path = "../generate_from_path", version = "0.1.70" }
generate_from_path = { path = "../generate_from_path", version = "0.1.71" }
tempfile = { workspace = true }
better-panic = { workspace = true }
serde = { workspace = true, features = ["derive"] }
Expand Down
Loading

0 comments on commit 886851f

Please sign in to comment.