diff --git a/CHANGELOG.md b/CHANGELOG.md index f7afe42d2..a8c41e635 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,23 @@ Platform support legends: * Note: the papercuts will majorly be with the build process. Things might be very rough to integrate as no polish at all has been given yet. * ❌ = tier 3 support. It doesn't work just yet, but we plan to make it work. + + +## [1.0.0-rc.52] - 2024-03-14 + +
+ git-conventional changelog + +### Bug Fixes + +- Correctly handle new CRL DPs + +
+ +* Fixed the handling of newly seen CRL Distribution Points (`new_crl_distribution_points` field in the relevant structs) + * The implementation until now had a reversed filter in place, meaning we would *only* return what has already been registered. We want the opposite to happen; Unseen CRL DPs to be forwarded to the consumer. + * Also fixes the extraction of DPs in External Commits, Self-Commits (in the eventuality of received proposals) and Welcomes + ## [1.0.0-rc.51] - 2024-03-13
diff --git a/CHANGELOG.tpl b/CHANGELOG.tpl index 7b3dfa5aa..3d4c3397c 100644 --- a/CHANGELOG.tpl +++ b/CHANGELOG.tpl @@ -7,11 +7,24 @@ Platform support legends: * Note: the papercuts will majorly be with the build process. Things might be very rough to integrate as no polish at all has been given yet. * ❌ = tier 3 support. It doesn't work just yet, but we plan to make it work. + + +## [1.0.0-rc.52] - 2024-03-14 + +
+ git-conventional changelog +{{git-cliff tag="v1.0.0-rc.52" unreleased=true}} +
+ +* Fixed the handling of newly seen CRL Distribution Points (`new_crl_distribution_points` field in the relevant structs) + * The implementation until now had a reversed filter in place, meaning we would *only* return what has already been registered. We want the opposite to happen; Unseen CRL DPs to be forwarded to the consumer. + * Also fixes the extraction of DPs in External Commits, Self-Commits (in the eventuality of received proposals) and Welcomes + ## [1.0.0-rc.51] - 2024-03-13
git-conventional changelog -{{git-cliff tag="v1.0.0-rc.51" unreleased=true}} +{{git-cliff tag="v1.0.0-rc.51"}}
* Fixed the CRL revocation cache that was causing X.509 credentials to be considered valid on 2nd verifications diff --git a/crypto-attributes/Cargo.toml b/crypto-attributes/Cargo.toml index 48c3cd8f4..4f3f510bd 100644 --- a/crypto-attributes/Cargo.toml +++ b/crypto-attributes/Cargo.toml @@ -2,7 +2,7 @@ name = "core-crypto-attributes" description = "Macros for core-crypto" repository = "https://github.com/wireapp/core-crypto" -version = "1.0.0-rc.51" +version = "1.0.0-rc.52" edition = "2021" license = "GPL-3.0-only" diff --git a/crypto-ffi/Cargo.toml b/crypto-ffi/Cargo.toml index 7438ad119..a7bf24486 100644 --- a/crypto-ffi/Cargo.toml +++ b/crypto-ffi/Cargo.toml @@ -2,7 +2,7 @@ name = "core-crypto-ffi" description = "Platform-specific bindings (Android, iOS, WASM) for CoreCrypto" repository = "https://github.com/wireapp/core-crypto" -version = "1.0.0-rc.51" +version = "1.0.0-rc.52" edition = "2021" license = "GPL-3.0-only" publish = false @@ -47,7 +47,7 @@ sha2 = { version = "0.10", features = ["force-soft"] } [target.'cfg(not(target_family = "wasm"))'.dependencies] # UniFFI - Android + iOS bindings - Runtime support uniffi = { workspace = true } -core-crypto = { version = "^1.0.0-rc.51", path = "../crypto", features = ["uniffi"] } +core-crypto = { version = "^1.0.0-rc.52", path = "../crypto", features = ["uniffi"] } [target.wasm32-unknown-unknown.dependencies] wasm-bindgen = "0.2" @@ -58,7 +58,7 @@ serde = { version = "1.0", features = ["derive"] } js-sys = "0.3" web-sys = "0.3" strum = "0.26" -core-crypto = { version = "^1.0.0-rc.51", path = "../crypto" } +core-crypto = { version = "^1.0.0-rc.52", path = "../crypto" } # UniFFI - Android + iOS bindings - Build support diff --git a/crypto-ffi/bindings/gradle.properties b/crypto-ffi/bindings/gradle.properties index 9c1242a5e..4aa51c6fe 100644 --- a/crypto-ffi/bindings/gradle.properties +++ b/crypto-ffi/bindings/gradle.properties @@ -15,7 +15,7 @@ kotlin.code.style=official # gradle-maven-publish configuration GROUP=com.wire -VERSION_NAME=1.0.0-rc.51 +VERSION_NAME=1.0.0-rc.52 SONATYPE_HOST=DEFAULT SONATYPE_AUTOMATIC_RELEASE=true RELEASE_SIGNING_ENABLED=true diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index 110cdb5af..76a67ed8f 100644 --- a/crypto/Cargo.toml +++ b/crypto/Cargo.toml @@ -2,7 +2,7 @@ name = "core-crypto" description = "Abstraction over OpenMLS with persistent keystore" repository = "https://github.com/wireapp/core-crypto" -version = "1.0.0-rc.51" +version = "1.0.0-rc.52" edition = "2021" license = "GPL-3.0-only" publish = false @@ -76,13 +76,13 @@ rexie = { version = "0.4", optional = true } base64 = { version = "0.21", optional = true } [target.'cfg(not(target_os = "ios"))'.dependencies] -core-crypto-keystore = { version = "^1.0.0-rc.51", path = "../keystore" } +core-crypto-keystore = { version = "^1.0.0-rc.52", path = "../keystore" } [target.'cfg(target_os = "ios")'.dependencies] -core-crypto-keystore = { version = "^1.0.0-rc.51", path = "../keystore", features = ["ios-wal-compat"] } +core-crypto-keystore = { version = "^1.0.0-rc.52", path = "../keystore", features = ["ios-wal-compat"] } [dependencies.mls-crypto-provider] -version = "^1.0.0-rc.51" +version = "^1.0.0-rc.52" path = "../mls-provider" [dev-dependencies] @@ -106,7 +106,7 @@ fluvio-wasm-timer = "0.2" time = { version = "0.3", features = ["wasm-bindgen"] } [dev-dependencies.core-crypto-keystore] -version = "^1.0.0-rc.51" +version = "^1.0.0-rc.52" path = "../keystore" features = ["dummy-entity"] @@ -119,7 +119,7 @@ version = "0.5" features = ["async_std", "html_reports"] [dev-dependencies.core-crypto-attributes] -version = "^1.0.0-rc.51" +version = "^1.0.0-rc.52" path = "../crypto-attributes" [package.metadata.wasm-pack.profile.release] diff --git a/interop/Cargo.toml b/interop/Cargo.toml index c32214720..11d040cd5 100644 --- a/interop/Cargo.toml +++ b/interop/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "interop" -version = "1.0.0-rc.51" +version = "1.0.0-rc.52" edition = "2021" license = "GPL-3.0-only" diff --git a/keystore-dump/Cargo.toml b/keystore-dump/Cargo.toml index 14827f93b..483d190d8 100644 --- a/keystore-dump/Cargo.toml +++ b/keystore-dump/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "keystore-dump" description = "Dumps a keystore to JSON on stdout" -version = "1.0.0-rc.51" +version = "1.0.0-rc.52" edition = "2021" license = "GPL-3.0-only" diff --git a/keystore/Cargo.toml b/keystore/Cargo.toml index a8be5d6b9..63f73a543 100644 --- a/keystore/Cargo.toml +++ b/keystore/Cargo.toml @@ -2,7 +2,7 @@ name = "core-crypto-keystore" description = "Encrypted keystore with support for OpenMLS and Proteus" repository = "https://github.com/wireapp/core-crypto" -version = "1.0.0-rc.51" +version = "1.0.0-rc.52" edition = "2021" license = "GPL-3.0-only" publish = false diff --git a/mls-provider/Cargo.toml b/mls-provider/Cargo.toml index 50e039884..6409978e1 100644 --- a/mls-provider/Cargo.toml +++ b/mls-provider/Cargo.toml @@ -2,7 +2,7 @@ name = "mls-crypto-provider" description = "MLS Crypto Provider wrapping core-crypto-keystore" repository = "https://github.com/wireapp/core-crypto" -version = "1.0.0-rc.51" +version = "1.0.0-rc.52" edition = "2021" license = "GPL-3.0-only" publish = false @@ -50,10 +50,10 @@ version = "0.10" features = ["x25519", "p256", "p384", "xyber768d00", "serde_impls"] [target.'cfg(not(target_os = "ios"))'.dependencies] -core-crypto-keystore = { version = "^1.0.0-rc.51", path = "../keystore" } +core-crypto-keystore = { version = "^1.0.0-rc.52", path = "../keystore" } [target.'cfg(target_os = "ios")'.dependencies] -core-crypto-keystore = { version = "^1.0.0-rc.51", path = "../keystore", features = ["ios-wal-compat"] } +core-crypto-keystore = { version = "^1.0.0-rc.52", path = "../keystore", features = ["ios-wal-compat"] } [dev-dependencies] wasm-bindgen-test = "0.3" diff --git a/package.json b/package.json index 3ff2a9731..ac8212a35 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@wireapp/core-crypto", - "version": "1.0.0-rc.51", + "version": "1.0.0-rc.52", "description": "CoreCrypto bindings for the Web", "type": "module", "module": "platforms/web/corecrypto.js",