Skip to content

Commit afc0209

Browse files
chore: release v0.1.69 (#421)
1 parent 5c9dfc1 commit afc0209

File tree

23 files changed

+74
-258
lines changed

23 files changed

+74
-258
lines changed

libs/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.1.69](https://github.com/LukeMathWalker/pavex/compare/0.1.68...0.1.69) - 2025-01-21
10+
11+
### Added
12+
13+
- When Pavex's Server fails to spawn a worker thread, capture that thread's name in the error message
14+
- Add Server::try_serve to give users a chance to handle the case where no connection sources have been registered
15+
- Cache accesses for path dependencies are now significantly faster, since 'cargo' is no longer in the hot path of determining the crate checksum
16+
- Reduce the time spent generating JSON docs by leveraging 'cargo rustdoc' built-in caching mechanism for the single-crate usecase.
17+
- Update Pavex's nightly to 2025-01-04. It unlocks the 2024 edition for Pavex users
18+
- Enable backtraces for panics in the project template, being careful not to capture backtraces for normal errors in libraries such as anyhow. Update the command to force the toolchain install to work with the latest rustup version
19+
20+
### Fixed
21+
22+
- Use hyper_util's GracefulShutdown utility to ensure connections are indeed shut down gracefully
23+
- Don't panic if we fail to serve a connection. Log the error as a warning.
24+
- Lower the logging level to info when reporting a failure to establish a connection. This event kind is common enough not to deserve a higher logging level.
25+
- Use the blueprint location as the project fingerprint rather than the workspace path, since a workspace may contain multiple blueprints, as it happens for Pavex's UI tests
26+
27+
### Other
28+
29+
- Migrate all tracing events that touch errors to `log_error!` to ensure consistent field naming
30+
- Clarify why it's fine to panic if `tokio` can't create a current-thread runtime inside a Pavex server worker thread
31+
- Improve suggested resolution for a missing nightly toolchain
32+
- Re-export error-related fields in `pavex_tracing` from `tracing_log_error`
33+
- Update dependency versions
34+
935
## [0.1.68](https://github.com/LukeMathWalker/pavex/compare/0.1.67...0.1.68) - 2025-01-05
1036

1137
### Fixed

libs/Cargo.lock

Lines changed: 19 additions & 98 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 = "2021"
1212
repository = "https://github.com/LukeMathWalker/pavex"
1313
homepage = "https://pavex.dev"
1414
license = "Apache-2.0"
15-
version = "0.1.68"
15+
version = "0.1.69"
1616

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

libs/generate_from_path/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ indicatif = { workspace = true }
2020
walkdir = { workspace = true }
2121
sanitize-filename = { workspace = true }
2222
regex = { workspace = true }
23-
px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" }

0 commit comments

Comments
 (0)