Skip to content

Commit d36bea7

Browse files
authored
Merge pull request #404 from cipherstash/dan/release-2.2.2-changelog
chore: prepare v2.2.2 release
2 parents cd5469d + 1ac1bcf commit d36bea7

4 files changed

Lines changed: 16 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
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.
@@ -253,7 +261,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
253261
- Integration with CipherStash ZeroKMS.
254262
- Encrypt Query Language (EQL) for indexing and searching encrypted data.
255263

256-
[Unreleased]: https://github.com/cipherstash/proxy/compare/v2.2.0-alpha.1...HEAD
264+
[Unreleased]: https://github.com/cipherstash/proxy/compare/v2.2.2...HEAD
265+
[2.2.2]: https://github.com/cipherstash/proxy/compare/v2.2.1...v2.2.2
266+
[2.2.1]: https://github.com/cipherstash/proxy/compare/v2.2.0-alpha.1...v2.2.1
257267
[2.2.0-alpha.1]: https://github.com/cipherstash/proxy/compare/v2.1.22...v2.2.0-alpha.1
258268
[2.1.22]: https://github.com/cipherstash/proxy/releases/tag/v2.1.22
259269
[2.1.21]: https://github.com/cipherstash/proxy/releases/tag/v2.1.21

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)