Skip to content

Commit c8ed28a

Browse files
committed
ci: crate release 08-11-2023
1 parent 258fa2d commit c8ed28a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+248
-123
lines changed

Cargo.lock

+18-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

implementations/rust/ockam/ockam/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.103.0 - 2023-11-08
8+
9+
### Changed
10+
11+
- Updated dependencies
12+
713
## 0.102.0 - 2023-11-08
814

915
### Changed

implementations/rust/ockam/ockam/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam"
3-
version = "0.102.0"
3+
version = "0.103.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -85,20 +85,20 @@ arrayref = "0.3"
8585
dyn-clone = "1.0"
8686
hex = { version = "0.4", default-features = false }
8787
minicbor = { version = "0.20.0", features = ["alloc", "derive"] }
88-
ockam_abac = { path = "../ockam_abac", version = "^0.36.0", default_features = false, optional = true }
89-
ockam_core = { path = "../ockam_core", version = "^0.92.0", default-features = false }
90-
ockam_identity = { path = "../ockam_identity", version = "^0.90.0", default_features = false }
88+
ockam_abac = { path = "../ockam_abac", version = "^0.37.0", default_features = false, optional = true }
89+
ockam_core = { path = "../ockam_core", version = "^0.93.0", default-features = false }
90+
ockam_identity = { path = "../ockam_identity", version = "^0.91.0", default_features = false }
9191
ockam_macros = { path = "../ockam_macros", version = "^0.32.0", default_features = false }
92-
ockam_node = { path = "../ockam_node", version = "^0.97.0", default-features = false }
93-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.95.0", optional = true }
94-
ockam_vault = { path = "../ockam_vault", version = "^0.90.0", default_features = false, optional = true }
92+
ockam_node = { path = "../ockam_node", version = "^0.98.0", default-features = false }
93+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.96.0", optional = true }
94+
ockam_vault = { path = "../ockam_vault", version = "^0.91.0", default_features = false, optional = true }
9595
rand = { version = "0.8", default-features = false }
9696
serde = { version = "1.0", default-features = false, features = ["derive"] }
9797
sha2 = { version = "0.10", default-features = false }
9898
tracing = { version = "0.1", default-features = false }
9999

100100
[dev-dependencies]
101-
ockam_vault = { path = "../ockam_vault", version = "^0.90.0" }
101+
ockam_vault = { path = "../ockam_vault", version = "^0.91.0" }
102102
rand_xorshift = "0.3"
103103
serde_json = "1.0"
104104
trybuild = { version = "1.0", features = ["diff"] }

implementations/rust/ockam/ockam/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Add this to your `Cargo.toml`:
4949

5050
```
5151
[dependencies]
52-
ockam = "0.102.0"
52+
ockam = "0.103.0"
5353
```
5454

5555
## License

implementations/rust/ockam/ockam_abac/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.37.0 - 2023-11-08
8+
9+
### Changed
10+
11+
- Updated dependencies
12+
713
## 0.36.0 - 2023-11-08
814

915
### Changed

implementations/rust/ockam/ockam_abac/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_abac"
3-
version = "0.36.0"
3+
version = "0.37.0"
44
authors = ["Ockam Developers"]
55
categories = ["cryptography", "authorization"]
66
edition = "2021"
@@ -36,9 +36,9 @@ sqlite = ["rusqlite"]
3636
either = { version = "1.9.0", default-features = false }
3737
lmdb-rkv = { version = "0.14.0", optional = true }
3838
minicbor = { version = "0.20.0", features = ["derive", "alloc"] }
39-
ockam_core = { version = "0.92.0", path = "../ockam_core", default-features = false }
40-
ockam_executor = { version = "0.60.0", path = "../ockam_executor", default-features = false }
41-
ockam_identity = { version = "0.90.0", path = "../ockam_identity", default-features = false }
39+
ockam_core = { version = "0.93.0", path = "../ockam_core", default-features = false }
40+
ockam_executor = { version = "0.61.0", path = "../ockam_executor", default-features = false }
41+
ockam_identity = { version = "0.91.0", path = "../ockam_identity", default-features = false }
4242
once_cell = { version = "1.18.0", default-features = false, features = ["alloc"] }
4343
# optional:
4444
regex = { version = "1.10.2", default-features = false, optional = true }

implementations/rust/ockam/ockam_abac/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Add this to your `Cargo.toml`:
1717

1818
```
1919
[dependencies]
20-
ockam_abac = "0.36.0"
20+
ockam_abac = "0.37.0"
2121
```
2222

2323
## License

implementations/rust/ockam/ockam_api/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.46.0 - 2023-11-08
8+
9+
### Changed
10+
11+
- Always using enum when representing the inlet connection status
12+
- Updated dependencies
13+
714
## 0.45.0 - 2023-11-08
815

916
### Changed

implementations/rust/ockam/ockam_api/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_api"
3-
version = "0.45.0"
3+
version = "0.46.0"
44
authors = ["Ockam Developers"]
55
edition = "2021"
66
homepage = "https://github.com/ockam-network/ockam"
@@ -57,43 +57,43 @@ tokio-retry = "0.3.0"
5757
tracing = { version = "0.1", default-features = false }
5858
url = "2.4.1"
5959

60-
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.36.0", features = ["cbor", "serde"] }
61-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.95.0" }
60+
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.37.0", features = ["cbor", "serde"] }
61+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.96.0" }
6262

6363
[dependencies.ockam_core]
64-
version = "0.92.0"
64+
version = "0.93.0"
6565
path = "../ockam_core"
6666
default-features = false
6767
features = ["no_std", "alloc"]
6868

6969
[dependencies.ockam_node]
70-
version = "0.97.0"
70+
version = "0.98.0"
7171
path = "../ockam_node"
7272
default-features = false
7373
features = ["no_std", "alloc"]
7474

7575
[dependencies.ockam_vault]
76-
version = "0.90.0"
76+
version = "0.91.0"
7777
path = "../ockam_vault"
7878
default-features = false
7979
# FIXME: ockam_vault's dependency curve25519-dalek has non-additive features which
8080
# breaks building ockam_vault with feature set "no_std,std":
8181
features = ["std"]
8282

8383
[dependencies.ockam_vault_aws]
84-
version = "0.15.0"
84+
version = "0.16.0"
8585
path = "../ockam_vault_aws"
8686
default-features = false
8787
features = ["std"]
8888

8989
[dependencies.ockam]
90-
version = "^0.102.0"
90+
version = "^0.103.0"
9191
path = "../ockam"
9292
default-features = false
9393
features = ["ockam_transport_tcp", "software_vault_storage"]
9494

9595
[dependencies.ockam_abac]
96-
version = "0.36.0"
96+
version = "0.37.0"
9797
path = "../ockam_abac"
9898
default-features = false
9999

implementations/rust/ockam/ockam_api/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Add this to your `Cargo.toml`:
140140

141141
```
142142
[dependencies]
143-
ockam_api = "0.45.0"
143+
ockam_api = "0.46.0"
144144
```
145145

146146
## License

implementations/rust/ockam/ockam_app/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ duct = "0.13.6"
3434
hex = { version = "0.4.3", default-features = false, features = ["alloc", "serde"] }
3535
log = { version = "0.4.20", optional = true }
3636
miette = { version = "5.10.0", features = ["fancy-no-backtrace"] }
37-
ockam = { path = "../ockam", version = "^0.102.0", features = ["software_vault"] }
38-
ockam_api = { path = "../ockam_api", version = "0.45.0", features = ["std"] }
39-
ockam_core = { path = "../ockam_core", version = "^0.92.0" }
40-
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.36.0", features = ["cbor", "serde"] }
41-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.95.0" }
37+
ockam = { path = "../ockam", version = "^0.103.0", features = ["software_vault"] }
38+
ockam_api = { path = "../ockam_api", version = "0.46.0", features = ["std"] }
39+
ockam_core = { path = "../ockam_core", version = "^0.93.0" }
40+
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.37.0", features = ["cbor", "serde"] }
41+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.96.0" }
4242
once_cell = "1.18"
4343
open = "5.0.0"
4444
percent-encoding = "2.3.0"

implementations/rust/ockam/ockam_app_lib/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.7.0 - 2023-11-08
8+
9+
### Changed
10+
11+
- Use `BackgroundNode` to handle tcp-inlets within the app
12+
- Use `AuthorityNode` directly in the app to generate enrollment tickets
13+
- Use `AuthorityNode` directly in the app to enroll to a project
14+
- Updated dependencies
15+
16+
### Removed
17+
18+
- Remove nodes from the app without using the `CLI`
19+
720
## 0.6.0 - 2023-11-08
821

922
### Changed

0 commit comments

Comments
 (0)