Skip to content

Commit

Permalink
ci: crate release 28-03-2023
Browse files Browse the repository at this point in the history
  • Loading branch information
ockam-team committed Mar 28, 2023
1 parent cd2240b commit 2dc3c6b
Show file tree
Hide file tree
Showing 50 changed files with 372 additions and 113 deletions.
34 changes: 17 additions & 17 deletions Cargo.lock

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

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

### Added

- Add `TrustOptions` to `ockam_transport_tcp`. refactor connection creation
- Add `src_addr` to `Routed<M>`
- Add `Sessions` support to receiving messages in `ockam_node`
- Add `Sessions` support to portals

### Changed

- Update `RemoteForwarder`
- Improve `RemoteForwarder` address handling
- Updated dependencies

### Removed

- Removed the dependency on ockam_core in examples

## 0.82.0 - 2023-03-03

### 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.82.0"
version = "0.83.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.76.0", default-features = false }
ockam_core = { path = "../ockam_core", version = "^0.77.0", default-features = false }
ockam_macros = { path = "../ockam_macros", version = "^0.27.0", default_features = false }
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 }
ockam_node = { path = "../ockam_node", version = "^0.80.0", default-features = false }
ockam_vault = { path = "../ockam_vault", version = "^0.73.0", default_features = false, optional = true }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.78.0", optional = true }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "^0.73.0", default_features = false, optional = true }
ockam_identity = { path = "../ockam_identity", version = "^0.71.0", default_features = false }
ockam_abac = { path = "../ockam_abac", version = "^0.17.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.72.0" }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "^0.72.0" }
ockam_vault = { path = "../ockam_vault", version = "^0.73.0" }
ockam_key_exchange_xx = { path = "../ockam_key_exchange_xx", version = "^0.73.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.82.0"
ockam = "0.83.0"
```

## License
Expand Down
10 changes: 10 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,16 @@ 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.17.0 - 2023-03-28

### Changed

- Updated dependencies

### Removed

- Removed type parameters exposing implementation details

## 0.16.0 - 2023-03-03

### 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.16.0"
version = "0.17.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.76.0", path = "../ockam_core", default-features = false }
ockam_identity = { version = "0.70.0", path = "../ockam_identity", default-features = false }
ockam_core = { version = "0.77.0", path = "../ockam_core", default-features = false }
ockam_identity = { version = "0.71.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.16.0"
ockam_abac = "0.17.0"
```

## License
Expand Down
41 changes: 41 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,47 @@ 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.26.0 - 2023-03-28

### Added

- Add `create_tcp_session` to `ockam_command`
- Add missing serialize / deserialize instances

### Changed

- Create tcp_connection along with secure channels in the same function call
- Use sessions in ockam_api
- Make trust arguments mandatory
- `Sessions` update
- Create an authority node
- Start the authority node with the node create command
- Retrieve the identity authority before creating the authority node
- Show the authority node as up
- Retry the creation of the lmdb database in case of a failure
- Refactor tuple to api-transport struct
- Move `multiaddr_to_socket_addr` method into `MultiAddr`
- Don't try to delete files or directories which are already deleted
- Updated dependencies

### Fixed

- Fixed the compilation errors with the tag feature
- Fix clippy warnings on test code
- Node duplication error
- Node duplication error
- Use the same criteria for checking if a node exists
- Make the authority_node field optional
- Make `ockam reset` delete specific state files
- When deleting the default vault/identity/project the data and the link are deleted

### Removed

- Remove warnings
- Removed type parameters exposing implementation details
- Remove the need for _arc functions
- Remove the legacy storage migration code

## 0.25.0 - 2023-03-03

### 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.25.0"
version = "0.26.0"
edition = "2021"
authors = ["Ockam Developers"]
license = "Apache-2.0"
Expand Down Expand Up @@ -57,38 +57,38 @@ reqwest = { version = "0.11", default-features = false, features = ["jso
sysinfo = "0.28"
kafka-protocol = "0.6.0"

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

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

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

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

[dependencies.ockam_abac]
version = "0.16.0"
version = "0.17.0"
path = "../ockam_abac"
default-features = false

Expand All @@ -100,7 +100,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.77.0", path = "../ockam_transport_tcp" }
ockam_transport_tcp = { version = "0.78.0", path = "../ockam_transport_tcp" }
quickcheck = "1.0.1"
indexmap = "1.7.0"
uuid = "1.3.0"
Loading

0 comments on commit 2dc3c6b

Please sign in to comment.