Skip to content

Commit

Permalink
ci: crate release 07-10-2023
Browse files Browse the repository at this point in the history
  • Loading branch information
ockam-team committed Oct 7, 2023
1 parent 140a8bd commit 4797650
Show file tree
Hide file tree
Showing 53 changed files with 333 additions and 115 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.

13 changes: 13 additions & 0 deletions implementations/rust/ockam/ockam/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ 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.97.0 - 2023-10-07

### Changed

- Move the rpc to ockam api as remote node
- Rename forwarder to relay
- Improve `Vault` type-safety
- Updated dependencies

### Fixed

- Fix some doc tests

## 0.96.0 - 2023-10-05

### Changed
Expand Down
16 changes: 8 additions & 8 deletions implementations/rust/ockam/ockam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ockam"
version = "0.96.0"
version = "0.97.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
Expand Down Expand Up @@ -85,20 +85,20 @@ arrayref = "0.3"
dyn-clone = "1.0"
hex = { version = "0.4", default-features = false }
minicbor = { version = "0.20.0", features = ["alloc", "derive"] }
ockam_abac = { path = "../ockam_abac", version = "^0.30.0", default_features = false, optional = true }
ockam_core = { path = "../ockam_core", version = "^0.87.0", default-features = false }
ockam_identity = { path = "../ockam_identity", version = "^0.84.0", default_features = false }
ockam_abac = { path = "../ockam_abac", version = "^0.31.0", default_features = false, optional = true }
ockam_core = { path = "../ockam_core", version = "^0.88.0", default-features = false }
ockam_identity = { path = "../ockam_identity", version = "^0.85.0", default_features = false }
ockam_macros = { path = "../ockam_macros", version = "^0.31.0", default_features = false }
ockam_node = { path = "../ockam_node", version = "^0.92.0", default-features = false }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.90.0", optional = true }
ockam_vault = { path = "../ockam_vault", version = "^0.85.0", default_features = false, optional = true }
ockam_node = { path = "../ockam_node", version = "^0.93.0", default-features = false }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.91.0", optional = true }
ockam_vault = { path = "../ockam_vault", version = "^0.86.0", default_features = false, optional = true }
rand = { version = "0.8", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive"] }
sha2 = { version = "0.10", default-features = false }
tracing = { version = "0.1", default-features = false }

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

```
[dependencies]
ockam = "0.96.0"
ockam = "0.97.0"
```

## License
Expand Down
6 changes: 6 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,12 @@ 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.31.0 - 2023-10-07

### Changed

- Updated dependencies

## 0.30.0 - 2023-10-05

### Changed
Expand Down
8 changes: 4 additions & 4 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.30.0"
version = "0.31.0"
authors = ["Ockam Developers"]
categories = ["cryptography", "authorization"]
edition = "2021"
Expand Down Expand Up @@ -36,9 +36,9 @@ sqlite = ["rusqlite"]
either = { version = "1.9.0", default-features = false }
lmdb-rkv = { version = "0.14.0", optional = true }
minicbor = { version = "0.20.0", features = ["derive", "alloc"] }
ockam_core = { version = "0.87.0", path = "../ockam_core", default-features = false }
ockam_executor = { version = "0.55.0", path = "../ockam_executor", default-features = false }
ockam_identity = { version = "0.84.0", path = "../ockam_identity", default-features = false }
ockam_core = { version = "0.88.0", path = "../ockam_core", default-features = false }
ockam_executor = { version = "0.56.0", path = "../ockam_executor", default-features = false }
ockam_identity = { version = "0.85.0", path = "../ockam_identity", default-features = false }
once_cell = { version = "1.18.0", default-features = false, features = ["alloc"] }
# optional:
regex = { version = "1.9.6", default-features = false, optional = true }
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.30.0"
ockam_abac = "0.31.0"
```

## License
Expand Down
36 changes: 36 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,42 @@ 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.40.0 - 2023-10-07

### Changed

- Make `Timestamp` arithmetic operations usage safer
- Cli's `random_name` function now returns human-readable two-word strings like 'fit-lark'
- Move the controller address to the node manager
- Use better names for request / response headers
- Introduce a secure client for the controller
- Use controller, authority and project nodes
- Simplify connections
- Introduce a supervised node manager to support connection replacements
- Adjust the code after rebase
- Move the in memory node to the ockam api crate
- Package all reply / response methods into a client
- Use the client in the background node
- Put back the is_rust check to create forwarders
- Rename forwarder to relay
- Updated dependencies

### Fixed

- Fix the sending of messages
- Fix the code after rebasing
- Drop the in memory node and delete its node manager

### Removed

- Remove an unused method
- Remove the need to keep a flag to skip defaults
- Remove two parameters from requests to the controller
- Remove the unused tag feature
- Remove the unused rpc proxy service
- Remove the supervised node manager
- Remove the secure clients struct

## 0.39.0 - 2023-10-05

### Changed
Expand Down
18 changes: 9 additions & 9 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.39.0"
version = "0.40.0"
authors = ["Ockam Developers"]
edition = "2021"
homepage = "https://github.com/ockam-network/ockam"
Expand Down Expand Up @@ -57,43 +57,43 @@ tokio-retry = "0.3.0"
tracing = { version = "0.1", default-features = false }
url = "2.4.1"

ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.30.0", features = ["cbor", "serde"] }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.90.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.31.0", features = ["cbor", "serde"] }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.91.0" }

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

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

[dependencies.ockam_vault]
version = "0.85.0"
version = "0.86.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"]

[dependencies.ockam_vault_aws]
version = "0.10.0"
version = "0.11.0"
path = "../ockam_vault_aws"
default-features = false
features = ["std"]

[dependencies.ockam]
version = "^0.96.0"
version = "^0.97.0"
path = "../ockam"
default-features = false
features = ["ockam_transport_tcp", "software_vault_storage"]

[dependencies.ockam_abac]
version = "0.30.0"
version = "0.31.0"
path = "../ockam_abac"
default-features = false

Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Add this to your `Cargo.toml`:

```
[dependencies]
ockam_api = "0.39.0"
ockam_api = "0.40.0"
```

## License
Expand Down
10 changes: 5 additions & 5 deletions implementations/rust/ockam/ockam_app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ duct = "0.13.6"
hex = { version = "0.4.3", default-features = false, features = ["alloc", "serde"] }
log = { version = "0.4.20", optional = true }
miette = { version = "5.10.0", features = ["fancy-no-backtrace"] }
ockam = { path = "../ockam", version = "^0.96.0", features = ["software_vault"] }
ockam_api = { path = "../ockam_api", version = "0.39.0", features = ["std"] }
ockam_core = { path = "../ockam_core", version = "^0.87.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.30.0", features = ["cbor", "serde"] }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.90.0" }
ockam = { path = "../ockam", version = "^0.97.0", features = ["software_vault"] }
ockam_api = { path = "../ockam_api", version = "0.40.0", features = ["std"] }
ockam_core = { path = "../ockam_core", version = "^0.88.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.31.0", features = ["cbor", "serde"] }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.91.0" }
once_cell = "1.18"
open = "5.0.0"
percent-encoding = "2.3.0"
Expand Down
Loading

0 comments on commit 4797650

Please sign in to comment.