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.

6 changes: 6 additions & 0 deletions cryptify/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.31](https://github.com/encryption4all/postguard/compare/cryptify-v0.1.30...cryptify-v0.1.31) - 2026-08-19

### Fixed

- *(cryptify)* canonicalize the default-tier accounting key ([#366](https://github.com/encryption4all/postguard/pull/366))

## [0.1.30](https://github.com/encryption4all/postguard/compare/cryptify-v0.1.29...cryptify-v0.1.30) - 2026-08-18

### Added
Expand Down
6 changes: 3 additions & 3 deletions cryptify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cryptify"
version = "0.1.30"
version = "0.1.31"
authors = ["David Venhoek <david@tweedegolf.com>"]
edition = "2021"
repository = "https://github.com/encryption4all/cryptify"
Expand All @@ -26,14 +26,14 @@ uuid = { version = "1.23.4", features = ["v4"] }
url = "2.5.8"

tokio-util = { version = "0.7.18", features = ["compat"] }
pg-core = { path = "../pg-core", version = "0.6.4", features = ["rust", "stream"] }
pg-core = { path = "../pg-core", version = "0.6.5", features = ["rust", "stream"] }
minreq = { version = "3.0.0", features = ["json-using-serde", "https-native-tls"]}
rusqlite = { version = "0.39.0", features = ["bundled"] }

[dev-dependencies]
# Enables `pg_core::test::TestSetup` for building real verifying keys and
# sealing fixtures in the integration test harness. No effect on release builds.
pg-core = { path = "../pg-core", version = "0.6.4", features = ["rust", "stream", "test"] }
pg-core = { path = "../pg-core", version = "0.6.5", features = ["rust", "stream", "test"] }
futures = "0.3"
# pg-core's Sealer/TestSetup use rand 0.8 APIs; the rest of the crate uses
# rand 0.10. Pin an 0.8 rand explicitly in dev-deps so test code can hand
Expand Down
6 changes: 6 additions & 0 deletions pg-cli/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.3.10](https://github.com/encryption4all/postguard/compare/pg-cli-v0.3.9...pg-cli-v0.3.10) - 2026-08-19

### Other

- updated the following local packages: pg-core

## [0.3.9](https://github.com/encryption4all/postguard/compare/pg-cli-v0.3.8...pg-cli-v0.3.9) - 2026-08-18

### 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.9"
version = "0.3.10"

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

## [Unreleased]

## [0.6.5](https://github.com/encryption4all/postguard/compare/pg-core-v0.6.4...pg-core-v0.6.5) - 2026-08-19

### Added

- *(pg-core)* challenge-signature API for proving possession of a signing key ([#368](https://github.com/encryption4all/postguard/pull/368))

### Other

- give the wire-compat sample set a non-canonical sender identity ([#367](https://github.com/encryption4all/postguard/pull/367))

## [0.6.4](https://github.com/encryption4all/postguard/compare/pg-core-v0.6.3...pg-core-v0.6.4) - 2026-08-18

### Added
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.4"
version = "0.6.5"
authors = [
"Leon Botros <l.botros@cs.ru.nl>",
"Wouter Geraedts <git@woutergeraedts.nl>",
Expand Down
6 changes: 6 additions & 0 deletions pg-pkg/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.6.3](https://github.com/encryption4all/postguard/compare/pg-pkg-v0.6.2...pg-pkg-v0.6.3) - 2026-08-19

### Other

- updated the following local packages: pg-core

## [0.6.2](https://github.com/encryption4all/postguard/compare/pg-pkg-v0.6.1...pg-pkg-v0.6.2) - 2026-08-18

### 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.6.2"
version = "0.6.3"

[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.4"
version = "0.6.5"
features = []