Skip to content

Commit 82d9d62

Browse files
chore: release v0.23.1
1 parent be1b76b commit 82d9d62

File tree

6 files changed

+70
-6
lines changed

6 files changed

+70
-6
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.23.1](https://github.com/salsa-rs/salsa/compare/salsa-v0.23.0...salsa-v0.23.1) - 2025-08-12
11+
12+
### Fixed
13+
14+
- Do not unnecessarily require `Debug` on fields for interned structs ([#951](https://github.com/salsa-rs/salsa/pull/951))
15+
- Fix phantom data usage in salsa structs affecting auto traits ([#932](https://github.com/salsa-rs/salsa/pull/932))
16+
17+
### Other
18+
19+
- Initial persistent caching prototype ([#967](https://github.com/salsa-rs/salsa/pull/967))
20+
- Fix `maybe_changed_after` runnaway for fixpoint queries ([#961](https://github.com/salsa-rs/salsa/pull/961))
21+
- add parallel maybe changed after test ([#963](https://github.com/salsa-rs/salsa/pull/963))
22+
- Update tests for Rust 1.89 ([#966](https://github.com/salsa-rs/salsa/pull/966))
23+
- remove allocation lock ([#962](https://github.com/salsa-rs/salsa/pull/962))
24+
- consolidate memory usage information API ([#964](https://github.com/salsa-rs/salsa/pull/964))
25+
- Add heap size support for salsa structs ([#943](https://github.com/salsa-rs/salsa/pull/943))
26+
- Extract the cycle branches from `fetch` and `maybe_changed_after` ([#955](https://github.com/salsa-rs/salsa/pull/955))
27+
- allow reuse of cached provisional memos within the same cycle iteration during `maybe_changed_after` ([#954](https://github.com/salsa-rs/salsa/pull/954))
28+
- Expose API to manually trigger cancellation ([#959](https://github.com/salsa-rs/salsa/pull/959))
29+
- Upgrade dependencies ([#956](https://github.com/salsa-rs/salsa/pull/956))
30+
- Use `CycleHeadSet` in `maybe_update_after` ([#953](https://github.com/salsa-rs/salsa/pull/953))
31+
- Gate accumulator feature behind a feature flag ([#946](https://github.com/salsa-rs/salsa/pull/946))
32+
- optimize allocation fast-path ([#949](https://github.com/salsa-rs/salsa/pull/949))
33+
- remove borrow checks from `ZalsaLocal` ([#939](https://github.com/salsa-rs/salsa/pull/939))
34+
- Do manual trait casting ([#922](https://github.com/salsa-rs/salsa/pull/922))
35+
- Retain backing allocation of `ActiveQuery::input_outputs` in `ActiveQuery::seed_iteration` ([#948](https://github.com/salsa-rs/salsa/pull/948))
36+
- remove extra bounds checks from memo table hot-paths ([#938](https://github.com/salsa-rs/salsa/pull/938))
37+
- Outline all tracing events ([#942](https://github.com/salsa-rs/salsa/pull/942))
38+
- remove bounds and type checks from `IngredientCache` ([#937](https://github.com/salsa-rs/salsa/pull/937))
39+
- Avoid dynamic dispatch to access memo tables ([#941](https://github.com/salsa-rs/salsa/pull/941))
40+
- optimize page access ([#940](https://github.com/salsa-rs/salsa/pull/940))
41+
- Use `inventory` for static ingredient registration ([#934](https://github.com/salsa-rs/salsa/pull/934))
42+
- Fix `heap_size` option not being preserved in tracked impls ([#930](https://github.com/salsa-rs/salsa/pull/930))
43+
- update papaya ([#928](https://github.com/salsa-rs/salsa/pull/928))
44+
1045
## [0.23.0](https://github.com/salsa-rs/salsa/compare/salsa-v0.22.0...salsa-v0.23.0) - 2025-06-27
1146

1247
### Added

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "salsa"
3-
version = "0.23.0"
3+
version = "0.23.1"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true
@@ -9,8 +9,8 @@ rust-version.workspace = true
99
description = "A generic framework for on-demand, incrementalized computation (experimental)"
1010

1111
[dependencies]
12-
salsa-macro-rules = { version = "0.23.0", path = "components/salsa-macro-rules" }
13-
salsa-macros = { version = "0.23.0", path = "components/salsa-macros", optional = true }
12+
salsa-macro-rules = { version = "0.23.1", path = "components/salsa-macro-rules" }
13+
salsa-macros = { version = "0.23.1", path = "components/salsa-macros", optional = true }
1414

1515
boxcar = "0.2.13"
1616
crossbeam-queue = "0.3.12"
@@ -57,7 +57,7 @@ salsa_unstable = []
5757
# which may ultimately result in odd issues due to the proc-macro
5858
# output mismatching with the declarative macro inputs
5959
[target.'cfg(any())'.dependencies]
60-
salsa-macros = { version = "=0.23.0", path = "components/salsa-macros" }
60+
salsa-macros = { version = "=0.23.1", path = "components/salsa-macros" }
6161

6262
[dev-dependencies]
6363
# examples

components/salsa-macro-rules/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.23.1](https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.23.0...salsa-macro-rules-v0.23.1) - 2025-08-12
11+
12+
### Fixed
13+
14+
- Do not unnecessarily require `Debug` on fields for interned structs ([#951](https://github.com/salsa-rs/salsa/pull/951))
15+
- Fix phantom data usage in salsa structs affecting auto traits ([#932](https://github.com/salsa-rs/salsa/pull/932))
16+
17+
### Other
18+
19+
- Initial persistent caching prototype ([#967](https://github.com/salsa-rs/salsa/pull/967))
20+
- Add heap size support for salsa structs ([#943](https://github.com/salsa-rs/salsa/pull/943))
21+
- Gate accumulator feature behind a feature flag ([#946](https://github.com/salsa-rs/salsa/pull/946))
22+
- Do manual trait casting ([#922](https://github.com/salsa-rs/salsa/pull/922))
23+
- remove bounds and type checks from `IngredientCache` ([#937](https://github.com/salsa-rs/salsa/pull/937))
24+
- Avoid dynamic dispatch to access memo tables ([#941](https://github.com/salsa-rs/salsa/pull/941))
25+
- Use `inventory` for static ingredient registration ([#934](https://github.com/salsa-rs/salsa/pull/934))
26+
1027
## [0.23.0](https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.22.0...salsa-macro-rules-v0.23.0) - 2025-06-27
1128

1229
### Added

components/salsa-macro-rules/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "salsa-macro-rules"
3-
version = "0.23.0"
3+
version = "0.23.1"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

components/salsa-macros/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.23.1](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.23.0...salsa-macros-v0.23.1) - 2025-08-12
11+
12+
### Other
13+
14+
- Initial persistent caching prototype ([#967](https://github.com/salsa-rs/salsa/pull/967))
15+
- Add heap size support for salsa structs ([#943](https://github.com/salsa-rs/salsa/pull/943))
16+
- Upgrade dependencies ([#956](https://github.com/salsa-rs/salsa/pull/956))
17+
- Do manual trait casting ([#922](https://github.com/salsa-rs/salsa/pull/922))
18+
- Avoid dynamic dispatch to access memo tables ([#941](https://github.com/salsa-rs/salsa/pull/941))
19+
- Use `inventory` for static ingredient registration ([#934](https://github.com/salsa-rs/salsa/pull/934))
20+
- Fix `heap_size` option not being preserved in tracked impls ([#930](https://github.com/salsa-rs/salsa/pull/930))
21+
1022
## [0.23.0](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.22.0...salsa-macros-v0.23.0) - 2025-06-27
1123

1224
### Added

components/salsa-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "salsa-macros"
3-
version = "0.23.0"
3+
version = "0.23.1"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

0 commit comments

Comments
 (0)