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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
cargo hack --remove-dev-deps --workspace
# Update Cargo.lock to minimal version dependencies.
cargo update -Z minimal-versions
cargo update -p itertools # 0.10 is broken
cargo update -p itertools@0.10 # 0.10 is broken
cargo hack check --all-features --ignore-private
- name: Check minimal versions with unstable features
env:
Expand All @@ -84,7 +84,7 @@ jobs:
cargo hack --remove-dev-deps --workspace
# Update Cargo.lock to minimal version dependencies.
cargo update -Z minimal-versions
cargo update -p itertools # 0.10 is broken
cargo update -p itertools@0.10 # 0.10 is broken
cargo hack check --all-features --ignore-private

deny:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
resolver = "2"

[workspace.package]
version = "5.3.0"
version = "5.4.0"
repository = "https://github.com/cloudflare/foundations"
edition = "2021"
authors = ["Cloudflare"]
Expand Down Expand Up @@ -37,8 +37,8 @@ check-cfg = [

[workspace.dependencies]
anyhow = "1.0.75"
foundations = { version = "5.3.0", path = "./foundations" }
foundations-macros = { version = "=5.3.0", path = "./foundations-macros", default-features = false }
foundations = { version = "5.4.0", path = "./foundations" }
foundations-macros = { version = "=5.4.0", path = "./foundations-macros", default-features = false }
bindgen = { version = "0.72", default-features = false }
cc = "1.0"
cf-rustracing = "1.2.1"
Expand Down
10 changes: 10 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@

5.4.0
- 2025-12-01 Fix minimal-versions check
- 2025-11-25 Add #[with_removal] attribute to #[metrics] macro
- 2025-11-25 Reduce nesting in metrics proc-macro functions
- 2025-11-24 Configure unexpected_cfgs rustc lint explicitly
- 2025-11-27 Remove globally-shared INACTIVE_SPAN RwLock
- 2025-11-26 Remove internal once_cell usages
- 2025-11-26 Improve performance of log/tracing harness access

5.3.0
- 2025-11-07 Release 5.3.0
- 2025-11-06 Add `unprefixed` flag to `#[metrics]` macro
- 2025-11-07 Fix new instance of `clippy::derivable_impls`

Expand Down