Skip to content

Commit

Permalink
build: release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Augusto authored and augustocdias committed Aug 16, 2024
1 parent 73cbb72 commit a6fe3de
Show file tree
Hide file tree
Showing 13 changed files with 61 additions and 22 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,33 @@ 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.2] - 2024-08-24

<details>
<summary>git-conventional changelog</summary>

### Bug Fixes

- Run ci to generate junit report on tags [WPB-10608]
- Grouping were randomly failing because it expected query to be ordered

### Miscellaneous Tasks

- Update proteus version to latest tag
- Update rusty-jwt-tools and dependencies

### Testing

- Add cross signing tests [WPB-7264]
- Add utilities to cross sign certificate chains

</details>

* Added new tests for cross signed certificate chains.
* Releases will use locked dependencies' versions.
* Fixed a bug where retrieving the clients for multiple users would not return the full list.
* Junit.xml should be added again to the release.

## [1.0.1] - 2024-08-05

<details>
Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +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.2] - 2024-08-24

<details>
<summary>git-conventional changelog</summary>
{{git-cliff tag="v1.0.2" unreleased=true}}
</details>

* Added new tests for cross signed certificate chains.
* Releases will use locked dependencies' versions.
* Fixed a bug where retrieving the clients for multiple users would not return the full list.
* Junit.xml should be added again to the release.

## [1.0.1] - 2024-08-05

<details>
<summary>git-conventional changelog</summary>
{{git-cliff tag="v1.0.1" unreleased=true}}
{{git-cliff tag="v1.0.1"}}
</details>

* Fixed handling of own commits.
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ base64 = "0.22"
bitflags = "2.6"
cfg-if = "1.0"
const_format = "0.2"
core-crypto-keystore = { version = "^1.0.0", path = "keystore" }
core-crypto-attributes = { version = "^1.0.0", path = "crypto-attributes" }
core-crypto-keystore = { version = "1.0.2", path = "keystore" }
core-crypto-attributes = { version = "1.0.2", path = "crypto-attributes" }
derive_more = { version = "0.99", features = ["from", "into", "deref", "deref_mut"] }
futures-util = "0.3"
hex = "0.4"
indexmap = "2"
itertools = "0.13"
log = "0.4"
mls-crypto-provider = { version = "^1.0.0", path = "mls-provider" }
mls-crypto-provider = { version = "1.0.2", path = "mls-provider" }
pem = "3.0"
rand = { version = "0.8", features = ["getrandom"] }
rexie = "0.6.1"
Expand Down
2 changes: 1 addition & 1 deletion crypto-attributes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "core-crypto-attributes"
description = "Macros for core-crypto"
repository = "https://github.com/wireapp/core-crypto"
version = "1.0.1"
version = "1.0.2"
edition = "2021"
license = "GPL-3.0-only"

Expand Down
6 changes: 3 additions & 3 deletions crypto-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1"
version = "1.0.2"
edition = "2021"
license = "GPL-3.0-only"
publish = false
Expand Down Expand Up @@ -37,7 +37,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.1", path = "../crypto", features = ["uniffi"] }
core-crypto = { version = "^1.0.2", path = "../crypto", features = ["uniffi"] }

[target.wasm32-unknown-unknown.dependencies]
wasm-bindgen = "0.2"
Expand All @@ -48,7 +48,7 @@ serde = { workspace = true, features = ["derive"] }
js-sys = "0.3"
web-sys = "0.3"
strum.workspace = true
core-crypto = { version = "^1.0.1", path = "../crypto" }
core-crypto = { version = "^1.0.2", path = "../crypto" }

# UniFFI - Android + iOS bindings - Build support
[target.'cfg(not(target_family = "wasm"))'.build-dependencies.uniffi]
Expand Down
2 changes: 1 addition & 1 deletion crypto-ffi/bindings/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ kotlin.code.style=official

# gradle-maven-publish configuration
GROUP=com.wire
VERSION_NAME=1.0.1
VERSION_NAME=1.0.2
SONATYPE_HOST=DEFAULT
SONATYPE_AUTOMATIC_RELEASE=true
RELEASE_SIGNING_ENABLED=true
Expand Down
2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "core-crypto"
description = "Abstraction over OpenMLS with persistent keystore"
repository = "https://github.com/wireapp/core-crypto"
version = "1.0.1"
version = "1.0.2"
edition = "2021"
license = "GPL-3.0-only"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion interop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "interop"
version = "1.0.1"
version = "1.0.2"
edition = "2021"
license = "GPL-3.0-only"

Expand Down
2 changes: 1 addition & 1 deletion keystore-dump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "keystore-dump"
description = "Dumps a keystore to JSON on stdout"
version = "1.0.1"
version = "1.0.2"
edition = "2021"
license = "GPL-3.0-only"

Expand Down
2 changes: 1 addition & 1 deletion keystore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1"
version = "1.0.2"
edition = "2021"
license = "GPL-3.0-only"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion mls-provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1"
version = "1.0.2"
edition = "2021"
license = "GPL-3.0-only"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wireapp/core-crypto",
"version": "1.0.1",
"version": "1.0.2",
"description": "CoreCrypto bindings for the Web",
"type": "module",
"module": "platforms/web/corecrypto.js",
Expand Down

0 comments on commit a6fe3de

Please sign in to comment.