Skip to content

Commit

Permalink
ci: crate release 03-03-2023
Browse files Browse the repository at this point in the history
  • Loading branch information
ockam-team committed Mar 3, 2023
1 parent 62f0ad6 commit 952f5cb
Show file tree
Hide file tree
Showing 53 changed files with 282 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.

9 changes: 9 additions & 0 deletions implementations/rust/ockam/ockam/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.82.0 - 2023-03-03

### Changed

- Moved the access control based on attributes and a policy to the ockam crate
- Reuse the abac control policy inside the policy access control
- Rework `TCP`
- Updated dependencies

## 0.81.0 - 2023-02-24

### 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.81.0"
version = "0.82.0"
rust-version = "1.56.0"
publish = true

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

[dependencies]
ockam_core = { path = "../ockam_core", version = "^0.75.0", default-features = false }
ockam_core = { path = "../ockam_core", version = "^0.76.0", default-features = false }
ockam_macros = { path = "../ockam_macros", version = "^0.27.0", default_features = false }
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 }
ockam_node = { path = "../ockam_node", version = "^0.79.0", default-features = false }
ockam_vault = { path = "../ockam_vault", version = "^0.72.0", default_features = false, optional = true }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.77.0", optional = true }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "^0.72.0", default_features = false, optional = true }
ockam_identity = { path = "../ockam_identity", version = "^0.70.0", default_features = false }
ockam_abac = { path = "../ockam_abac", version = "^0.16.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 @@ -102,8 +102,8 @@ hex = { version = "0.4", default-features = false }
dyn-clone = "1.0"

[dev-dependencies]
ockam_vault = { path = "../ockam_vault", version = "^0.71.0" }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "^0.71.0" }
ockam_vault = { path = "../ockam_vault", version = "^0.72.0" }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "^0.72.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.81.0"
ockam = "0.82.0"
```

## License
Expand Down
8 changes: 8 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,14 @@ 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.16.0 - 2023-03-03

### Changed

- Reuse the abac control policy inside the policy access control
- Use abac in authority services implementation
- Updated dependencies

## 0.15.0 - 2023-02-24

### 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.15.0"
version = "0.16.0"
authors = ["Ockam Developers"]
edition = "2021"
license = "Apache-2.0"
Expand Down Expand Up @@ -31,8 +31,8 @@ std = [
[dependencies]
either = { version = "1.8.1", default-features = false }
minicbor = { version = "0.19.0", features = ["derive", "alloc"] }
ockam_core = { version = "0.75.0", path = "../ockam_core", default-features = false }
ockam_identity = { version = "0.69.0", path = "../ockam_identity", default-features = false }
ockam_core = { version = "0.76.0", path = "../ockam_core", default-features = false }
ockam_identity = { version = "0.70.0", path = "../ockam_identity", default-features = false }
once_cell = { version = "1.17.1", default-features = false, features = ["alloc"] }
str-buf = "3.0.1"
tracing = { version = "0.1.34", default-features = false }
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.15.0"
ockam_abac = "0.16.0"
```

## License
Expand Down
24 changes: 24 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,30 @@ 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.25.0 - 2023-03-03

### Added

- Add print encodable output

### Changed

- Refactor `CliState` so it can be built using an explicit directory
- Update `ockam_api` and `ockam_command` according to `TCP` updates
- Parse `/node/n1` to `/worker/addr` after connecting to the node via tcp
- Extend `ockam_api` transport info
- Use abac in authority services implementation
- Expand credential commands
- Update secure-channel create to allow for a provided credential
- Updated dependencies

### Fixed

- Fixes broken tests for macos, let the os choose available ports
- Reorganize bats tests to run them in parallel
- 'ockam enroll' ovewrites current configuration instead of returning error
- Update cli_state test with credentials entry

## 0.24.0 - 2023-02-24

### 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.24.0"
version = "0.25.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.1"

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"] }
ockam = { path = "../ockam", version = "^0.82.0", features = ["software_vault"] }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.77.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.16.0", features = ["cbor", "serde"] }

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

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

[dependencies.ockam_vault]
version = "0.71.0"
version = "0.72.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.69.0"
version = "0.70.0"
path = "../ockam_identity"
default-features = false
features = ["std"]

[dependencies.ockam_abac]
version = "0.15.0"
version = "0.16.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.76.0", path = "../ockam_transport_tcp" }
ockam_transport_tcp = { version = "0.77.0", path = "../ockam_transport_tcp" }
quickcheck = "1.0.1"
indexmap = "1.7.0"
uuid = "1.3.0"
11 changes: 11 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,17 @@ 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.82.0 - 2023-03-03

### Changed

- Refactor `CliState` so it can be built using an explicit directory
- Parse `/node/n1` to `/worker/addr` after connecting to the node via tcp
- Update `authenticated` command tcp
- Use abac in authority services implementation
- Expand credential commands
- Updated dependencies

## 0.81.0 - 2023-02-24

### Changed
Expand Down
Loading

0 comments on commit 952f5cb

Please sign in to comment.