Skip to content
Open
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
8 changes: 4 additions & 4 deletions Cargo.lock

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

12 changes: 12 additions & 0 deletions pg-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.7](https://github.com/encryption4all/postguard/compare/pg-cli-v0.3.6...pg-cli-v0.3.7) - 2026-07-16

### Added

- *(api)* accept Yivi condiscon in IrmaAuthRequest ([#198](https://github.com/encryption4all/postguard/pull/198))

### Other

- *(pg-cli)* drop useless borrow in decrypt eprintln (clippy) ([#231](https://github.com/encryption4all/postguard/pull/231))
- bump reqwest 0.12 β†’ 0.13 and inquire 0.6 β†’ 0.9 ([#196](https://github.com/encryption4all/postguard/pull/196))
- consume irmars from crates.io and bump reqwest to 0.12 ([#192](https://github.com/encryption4all/postguard/pull/192))

## [0.3.6](https://github.com/encryption4all/postguard/compare/pg-cli-v0.3.5...pg-cli-v0.3.6) - 2026-05-16

### Other
Expand Down
4 changes: 2 additions & 2 deletions pg-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ license = "MIT"
repository = "https://github.com/encryption4all/postguard"
categories = ["cryptography"]
name = "pg-cli"
version = "0.3.6"
version = "0.3.7"

[dependencies]
pg-core = { path = "../pg-core", version = "0.6.1", features = ["stream"] }
pg-core = { path = "../pg-core", version = "0.6.2", features = ["stream"] }
futures = "0.3.27"
rand = "0.8.4"
clap = { version = "4", features = ["derive"] }
Expand Down
16 changes: 16 additions & 0 deletions pg-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.2](https://github.com/encryption4all/postguard/compare/pg-core-v0.6.1...pg-core-v0.6.2) - 2026-07-16

### Added

- *(api)* accept Yivi condiscon in IrmaAuthRequest ([#198](https://github.com/encryption4all/postguard/pull/198))

### Fixed

- bound stream signature length ([#228](https://github.com/encryption4all/postguard/pull/228))

### Other

- clear clippy warning backlog for the clippy CI job ([#193](https://github.com/encryption4all/postguard/pull/193)) ([#229](https://github.com/encryption4all/postguard/pull/229))
- consume irmars from crates.io and bump reqwest to 0.12 ([#192](https://github.com/encryption4all/postguard/pull/192))
- bump bincode-next 3.0.0-rc.13 to 3.0.0-rc.14 ([#191](https://github.com/encryption4all/postguard/pull/191))

## [0.6.1](https://github.com/encryption4all/postguard/compare/pg-core-v0.6.0...pg-core-v0.6.1) - 2026-05-16

### Other
Expand Down
2 changes: 1 addition & 1 deletion pg-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pg-core"
description = "PostGuard core library for communication and bytestream operations."
version = "0.6.1"
version = "0.6.2"
authors = [
"Leon Botros <l.botros@cs.ru.nl>",
"Wouter Geraedts <git@woutergeraedts.nl>",
Expand Down
6 changes: 6 additions & 0 deletions pg-ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/encryption4all/postguard/compare/pg-ffi-v0.1.2...pg-ffi-v0.1.3) - 2026-07-16

### Other

- clear clippy warning backlog for the clippy CI job ([#193](https://github.com/encryption4all/postguard/pull/193)) ([#229](https://github.com/encryption4all/postguard/pull/229))

## [0.1.2](https://github.com/encryption4all/postguard/compare/pg-ffi-v0.1.1...pg-ffi-v0.1.2) - 2026-05-16

### Other
Expand Down
2 changes: 1 addition & 1 deletion pg-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pg-ffi"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
description = "C ABI wrapper around pg-core for PostGuard .NET SDK"
license = "MIT"
Expand Down
24 changes: 24 additions & 0 deletions pg-pkg/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.0](https://github.com/encryption4all/postguard/compare/pg-pkg-v0.5.11...pg-pkg-v0.6.0) - 2026-07-16

### Added

- *(pkg)* proxy IRMA /statusevents SSE endpoint ([#200](https://github.com/encryption4all/postguard/pull/200))
- *(api)* accept Yivi condiscon in IrmaAuthRequest ([#198](https://github.com/encryption4all/postguard/pull/198))

### Fixed

- *(pkg)* fetch the IRMA JWT verification key lazily instead of at startup ([#240](https://github.com/encryption4all/postguard/pull/240))
- *(pg-pkg)* rate-limit on real client IP (X-Forwarded-For) behind a trusted proxy ([#230](https://github.com/encryption4all/postguard/pull/230))
- *(pg-pkg)* add per-IP rate limiting to /v2 API endpoints ([#224](https://github.com/encryption4all/postguard/pull/224)) ([#226](https://github.com/encryption4all/postguard/pull/226))
- *(pg-pkg)* validate session token path param before upstream URL ([#225](https://github.com/encryption4all/postguard/pull/225))
- *(pg-pkg)* mask internal error details in HTTP responses ([#221](https://github.com/encryption4all/postguard/pull/221))
- *(pg-pkg)* [**breaking**] require explicit --allowed-origins for CORS ([#216](https://github.com/encryption4all/postguard/pull/216)) ([#219](https://github.com/encryption4all/postguard/pull/219))

### Other

- clear clippy warning backlog for the clippy CI job ([#193](https://github.com/encryption4all/postguard/pull/193)) ([#229](https://github.com/encryption4all/postguard/pull/229))
- bump reqwest 0.12 β†’ 0.13 and inquire 0.6 β†’ 0.9 ([#196](https://github.com/encryption4all/postguard/pull/196))
- consume irmars from crates.io and bump reqwest to 0.12 ([#192](https://github.com/encryption4all/postguard/pull/192))
- bump bincode-next 3.0.0-rc.13 to 3.0.0-rc.14 ([#191](https://github.com/encryption4all/postguard/pull/191))
- address cargo audit advisories

## [0.5.11](https://github.com/encryption4all/postguard/compare/pg-pkg-v0.5.10...pg-pkg-v0.5.11) - 2026-05-16

### Added
Expand Down
4 changes: 2 additions & 2 deletions pg-pkg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = "MIT"
categories = ["cryptography"]
repository = "https://github.com/encryption4all/postguard"
name = "pg-pkg"
version = "0.5.11"
version = "0.6.0"

[dependencies]
actix-cors = "0.7"
Expand Down Expand Up @@ -51,5 +51,5 @@ version = "0.3"

[dependencies.pg-core]
path = "../pg-core"
version = "0.6.1"
version = "0.6.2"
features = []