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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Unreleased]

## [2.2.2] - 2026-06-01

### Fixed

- **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))

## [2.2.1] - 2026-05-14
Comment thread
coderabbitai[bot] marked this conversation as resolved.

### Added

- **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.
Expand Down Expand Up @@ -253,7 +261,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- Integration with CipherStash ZeroKMS.
- Encrypt Query Language (EQL) for indexing and searching encrypted data.

[Unreleased]: https://github.com/cipherstash/proxy/compare/v2.2.0-alpha.1...HEAD
[Unreleased]: https://github.com/cipherstash/proxy/compare/v2.2.2...HEAD
[2.2.2]: https://github.com/cipherstash/proxy/compare/v2.2.1...v2.2.2
[2.2.1]: https://github.com/cipherstash/proxy/compare/v2.2.0-alpha.1...v2.2.1
[2.2.0-alpha.1]: https://github.com/cipherstash/proxy/compare/v2.1.22...v2.2.0-alpha.1
[2.1.22]: https://github.com/cipherstash/proxy/releases/tag/v2.1.22
[2.1.21]: https://github.com/cipherstash/proxy/releases/tag/v2.1.21
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["packages/*"]

[workspace.package]
version = "2.2.0-alpha.1"
version = "2.2.2"
edition = "2021"

[profile.dev]
Expand Down
2 changes: 1 addition & 1 deletion packages/cipherstash-proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cipherstash-proxy"
version = "2.2.0-alpha.1"
version.workspace = true
edition = "2021"

[dependencies]
Expand Down
Loading