Skip to content

Commit

Permalink
ci: crate release 24-02-2023
Browse files Browse the repository at this point in the history
  • Loading branch information
ockam-team committed Feb 24, 2023
1 parent 60c88cc commit fe79c13
Show file tree
Hide file tree
Showing 53 changed files with 307 additions and 119 deletions.
36 changes: 18 additions & 18 deletions Cargo.lock

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

7 changes: 7 additions & 0 deletions implementations/rust/ockam/ockam/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.81.0 - 2023-02-24

### Changed

- Inlined the ockam_key_exchange_core crate into the ockam_core crate
- Updated dependencies

## 0.80.0 - 2023-02-09

### Changed
Expand Down
20 changes: 10 additions & 10 deletions implementations/rust/ockam/ockam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ license = "Apache-2.0"
name = "ockam"
readme = "README.md"
repository = "https://github.com/build-trust/ockam/tree/develop/implementations/rust/ockam/ockam"
version = "0.80.0"
version = "0.81.0"
rust-version = "1.56.0"
publish = true

Expand Down Expand Up @@ -83,14 +83,14 @@ name = "tests"
path = "tests/main.rs"

[dependencies]
ockam_core = { path = "../ockam_core", version = "^0.74.0", default-features = false }
ockam_core = { path = "../ockam_core", version = "^0.75.0", default-features = false }
ockam_macros = { path = "../ockam_macros", version = "^0.27.0", default_features = false }
ockam_node = { path = "../ockam_node", version = "^0.77.0", default-features = false }
ockam_vault = { path = "../ockam_vault", version = "^0.70.0", default_features = false, optional = true }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.75.0", optional = true }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "^0.70.0", default_features = false, optional = true }
ockam_identity = { path = "../ockam_identity", version = "^0.68.0", default_features = false }
ockam_abac = { path = "../ockam_abac", version = "^0.14.0", default_features = false, optional = true }
ockam_node = { path = "../ockam_node", version = "^0.78.0", default-features = false }
ockam_vault = { path = "../ockam_vault", version = "^0.71.0", default_features = false, optional = true }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.76.0", optional = true }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "^0.71.0", default_features = false, optional = true }
ockam_identity = { path = "../ockam_identity", version = "^0.69.0", default_features = false }
ockam_abac = { path = "../ockam_abac", version = "^0.15.0", default_features = false, optional = true }
arrayref = "0.3"
minicbor = { version = "0.19.0", features = ["alloc", "derive"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
Expand All @@ -101,8 +101,8 @@ hex = { version = "0.4", default-features = false }
dyn-clone = "1.0"

[dev-dependencies]
ockam_vault = { path = "../ockam_vault", version = "^0.70.0" }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "^0.70.0" }
ockam_vault = { path = "../ockam_vault", version = "^0.71.0" }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "^0.71.0" }
trybuild = { version = "1.0", features = ["diff"] }
serde_json = "1.0"
rand_xorshift = "0.3"
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Add this to your `Cargo.toml`:

```
[dependencies]
ockam = "0.80.0"
ockam = "0.81.0"
```

## License
Expand Down
9 changes: 9 additions & 0 deletions implementations/rust/ockam/ockam_abac/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.15.0 - 2023-02-24

### Changed

- Pre-trusted identity identifiers attributes
- Override inlet policy when starting kafka services
- Renamed abac implicit attribute subject.identity to identifier
- Updated dependencies

## 0.14.0 - 2023-02-09

### Changed
Expand Down
6 changes: 3 additions & 3 deletions implementations/rust/ockam/ockam_abac/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ockam_abac"
version = "0.14.0"
version = "0.15.0"
authors = ["Ockam Developers"]
edition = "2021"
license = "Apache-2.0"
Expand Down Expand Up @@ -29,8 +29,8 @@ std = [
[dependencies]
either = { version = "1.8.1", default-features = false }
minicbor = { version = "0.19.0", features = ["derive", "alloc"] }
ockam_core = { version = "0.74.0", path = "../ockam_core", default-features = false }
ockam_identity = { version = "0.68.0", path = "../ockam_identity", default-features = false }
ockam_core = { version = "0.75.0", path = "../ockam_core", default-features = false }
ockam_identity = { version = "0.69.0", path = "../ockam_identity", default-features = false }
once_cell = { version = "1.17.1", default-features = false, features = ["alloc"] }
regex = "1.7.1"
str-buf = "3.0.1"
Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_abac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`:

```
[dependencies]
ockam_abac = "0.14.0"
ockam_abac = "0.15.0"
```

## License
Expand Down
25 changes: 25 additions & 0 deletions implementations/rust/ockam/ockam_api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,31 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.24.0 - 2023-02-24

### Added

- Add default subcommand to node

### Changed

- Pre-trusted identity identifiers attributes
- Use credential instead of credentials
- Usable kafka sidecar implementation
- Standarize where authority stores membership information
- Implemented kafka message encryption and orchestrator integration
- Bump aws-sdk-kms to 0.24.0 and aws-config to 0.54.1
- Split cddl schema files & merge when cbor api validation is needed
- Updated dependencies

### Fixed

- Deleting a vault won't affect the default

### Removed

- Remove the lifetime annotation on `Credential` and `Attributes`

## 0.23.0 - 2023-02-09

### Added
Expand Down
20 changes: 10 additions & 10 deletions implementations/rust/ockam/ockam_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ockam_api"
version = "0.23.0"
version = "0.24.0"
edition = "2021"
authors = ["Ockam Developers"]
license = "Apache-2.0"
Expand Down Expand Up @@ -56,38 +56,38 @@ reqwest = { version = "0.11", default-features = false, features = ["jso
sysinfo = "0.28"
kafka-protocol = "0.5"

ockam = { path = "../ockam", version = "^0.80.0", features = ["software_vault"] }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.75.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.14.0", features = ["cbor", "serde"] }
ockam = { path = "../ockam", version = "^0.81.0", features = ["software_vault"] }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.76.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.15.0", features = ["cbor", "serde"] }

[dependencies.ockam_core]
version = "0.74.0"
version = "0.75.0"
path = "../ockam_core"
default-features = false
features = ["no_std", "alloc"]

[dependencies.ockam_node]
version = "0.77.0"
version = "0.78.0"
path = "../ockam_node"
default-features = false
features = ["no_std", "alloc"]

[dependencies.ockam_vault]
version = "0.70.0"
version = "0.71.0"
path = "../ockam_vault"
default-features = false
# FIXME: ockam_vault's dependency curve25519-dalek has non-additive features which
# breaks building ockam_vault with feature set "no_std,std":
features = ["std", "aws", "rustcrypto"]

[dependencies.ockam_identity]
version = "0.68.0"
version = "0.69.0"
path = "../ockam_identity"
default-features = false
features = ["std"]

[dependencies.ockam_abac]
version = "0.14.0"
version = "0.15.0"
path = "../ockam_abac"
default-features = false

Expand All @@ -99,7 +99,7 @@ mockall = "0.11"
# TODO enable "tag" feature once implemented on elixir side
ockam_api = { path = ".", features = ["std", "authenticators"] }
ockam_macros = { version = "0.27.0", path = "../ockam_macros", features = ["std"] }
ockam_transport_tcp = { version = "0.75.0", path = "../ockam_transport_tcp" }
ockam_transport_tcp = { version = "0.76.0", path = "../ockam_transport_tcp" }
quickcheck = "1.0.1"
indexmap = "1.7.0"
uuid = "0.8.2"
19 changes: 19 additions & 0 deletions implementations/rust/ockam/ockam_command/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.81.0 - 2023-02-24

### Changed

- Move the `OneTimeCode` struct from the ockam_api crate to the ockam_identity crate
- Pre-trusted identity identifiers attributes
- All functions from ockam_command now return a `crate::Result`
- Updated dependencies

### Fixed

- Reduce cli bootstrap time by an order of magnitude for both release and dev profiles
- Commands shows concise errors with a more human-readable format
- Update project readiness check to include authority

### Removed

- Remove the lifetime annotation on `Credential` and `Attributes`

## 0.80.0 - 2023-02-09

### Changed
Expand Down
Loading

0 comments on commit fe79c13

Please sign in to comment.