Skip to content

Commit 32f86f5

Browse files
Merge remote-tracking branch 'origin/main' into integration-test-harness
# Conflicts: # Cargo.lock # src/email.rs # src/error.rs # src/main.rs
2 parents be5ce39 + 9ba416e commit 32f86f5

11 files changed

Lines changed: 2274 additions & 245 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,27 @@ on:
1717

1818
jobs:
1919

20+
# Rust quality gate: fmt, clippy, tests. Runs on every PR and on push to
21+
# main, in parallel to the release-plz/Docker pipeline (does not block it).
22+
quality:
23+
name: Rust quality (fmt, clippy, test)
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Checkout repository
27+
uses: actions/checkout@v6
28+
- name: Install Rust toolchain
29+
uses: dtolnay/rust-toolchain@stable
30+
with:
31+
components: rustfmt, clippy
32+
- name: Cache cargo registry and target
33+
uses: Swatinem/rust-cache@v2
34+
- name: cargo fmt --check
35+
run: cargo fmt --all -- --check
36+
- name: cargo clippy
37+
run: cargo clippy --all-targets -- -D warnings
38+
- name: cargo test
39+
run: cargo test --all-targets
40+
2041
# Release unpublished packages.
2142
release-plz-release:
2243
name: Release-plz release

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,54 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.26](https://github.com/encryption4all/cryptify/compare/v0.1.25...v0.1.26) - 2026-05-07
11+
12+
### Added
13+
14+
- *(upload)* idempotent retry of the last committed chunk
15+
- *(upload)* structured 404 body, configurable session TTL
16+
17+
### Fixed
18+
19+
- validate API key against pg-pkg, not a local allowlist (closes #123)
20+
21+
### Other
22+
23+
- *(upload)* apply review feedback from #145
24+
- Merge pull request #132 from encryption4all/fix/extend-upload-eviction-on-chunk
25+
- Merge pull request #141 from encryption4all/dependabot/cargo/openssl-0.10.79
26+
- Merge remote-tracking branch 'origin/main' into fix/upload-init-orphan-files-125
27+
- update dependencies
28+
- add Rust quality job (fmt, clippy, test)
29+
30+
## [0.1.25](https://github.com/encryption4all/cryptify/compare/v0.1.24...v0.1.25) - 2026-05-02
31+
32+
### Added
33+
34+
- *(upload)* add notifyRecipients toggle on /fileupload/init
35+
36+
### Other
37+
38+
- Merge pull request #135 from encryption4all/feat/notify-recipients-toggle
39+
40+
## [0.1.24](https://github.com/encryption4all/cryptify/compare/v0.1.23...v0.1.24) - 2026-04-30
41+
42+
### Other
43+
44+
- Merge pull request #113 from encryption4all/dependabot/cargo/rustls-webpki-0.103.13
45+
- Merge pull request #128 from encryption4all/dependabot/cargo/openssl-0.10.78
46+
- Merge remote-tracking branch 'origin/main' into chore/strum-0.28
47+
- Merge remote-tracking branch 'origin/main' into dobby/reqwest-0.13
48+
- Merge pull request #121 from encryption4all/dobby/sha2-rand
49+
- Merge pull request #122 from encryption4all/dobby/pg-core-0.5
50+
- *(deps)* bump pg-core to 0.5
51+
52+
## [0.1.23](https://github.com/encryption4all/cryptify/compare/v0.1.22...v0.1.23) - 2026-04-26
53+
54+
### Other
55+
56+
- *(api)* align upload limit descriptions with current constants
57+
1058
## [0.1.22](https://github.com/encryption4all/cryptify/compare/v0.1.21...v0.1.22) - 2026-04-24
1159

1260
### Added

0 commit comments

Comments
 (0)