diff --git a/CHANGELOG.md b/CHANGELOG.md index ddf3d7d..3b4273a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.22](https://github.com/encryption4all/cryptify/compare/v0.1.21...v0.1.22) - 2026-04-24 + +### Added + +- make chunk size configurable via TOML, default 5 MB +- tiered upload limits for API key users, 10 MiB chunks, resets_at in 413 +- enforce server-side upload limits (5 GiB/upload, 15 GiB rolling/email) + +### Fixed + +- align upload limits to round GB values (5 GB / 100 GB) +- use GB instead of GiB in API description +- *(upload)* raise Rocket data limits to match CHUNK_SIZE + +### Other + +- Merge branch 'main' into feat/x-postguard-email-header +- Merge pull request #105 from encryption4all/fix/upload-chunk-data-limit +- remove outdated cryptify-frontend/backend references +- Add PostGuard logo to README +- Standardize README + ## [0.1.21](https://github.com/encryption4all/cryptify/compare/v0.1.20...v0.1.21) - 2026-04-20 ### Other diff --git a/Cargo.lock b/Cargo.lock index 45e7745..fabebba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -362,7 +362,7 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" [[package]] name = "cryptify" -version = "0.1.21" +version = "0.1.22" dependencies = [ "askama", "chrono", diff --git a/Cargo.toml b/Cargo.toml index cb24341..1cdcfbd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cryptify" -version = "0.1.21" +version = "0.1.22" authors = ["David Venhoek "] edition = "2021" repository = "https://github.com/encryption4all/cryptify"