Skip to content

Commit 4b559e1

Browse files
committed
chore: prepare v2.2.2 release
- Add CHANGELOG entry for the passthrough memory-leak fix (#400, closes via #395) - Backfill the missing [2.2.1] CHANGELOG section for the OPE index (shipped in v2.2.1 but left under [Unreleased]) - Bump workspace version 2.2.0-alpha.1 -> 2.2.2 (skipped for v2.2.1) - Make cipherstash-proxy inherit the workspace version to prevent future drift
1 parent cd5469d commit 4b559e1

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

77
## [Unreleased]
88

9+
## [2.2.2] - 2026-06-01
10+
11+
### Fixed
12+
13+
- **Passthrough mode memory leak**: Fixed a per-statement memory leak that occurred in passthrough mode (empty encrypt config), where per-statement queues were not drained. Long-running connections could grow unbounded and eventually OOM. ([#400](https://github.com/cipherstash/proxy/issues/400))
14+
15+
## [2.2.1] - 2026-05-14
16+
917
### Added
1018

1119
- **OPE (Order-Preserving Encryption) index**: New `ope` index type alongside the existing `ore` for range and `ORDER BY` queries on encrypted columns. Drop-in alternative to `ore` — pick one per column. See the [encrypted indexes documentation](docs/how-to/index.md) for configuration.

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "2"
33
members = ["packages/*"]
44

55
[workspace.package]
6-
version = "2.2.0-alpha.1"
6+
version = "2.2.2"
77
edition = "2021"
88

99
[profile.dev]

packages/cipherstash-proxy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cipherstash-proxy"
3-
version = "2.2.0-alpha.1"
3+
version.workspace = true
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)