Skip to content

Commit 04cbddd

Browse files
ockam-teammetaclips
authored andcommitted
ci: crate release 16-10-2024
1 parent 6b0012c commit 04cbddd

Some content is hidden

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

48 files changed

+206
-95
lines changed

Cargo.lock

+15-15
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.136.0 - 2024-10-16
8+
9+
### Added
10+
11+
- Updated dependencies
12+
713
## 0.135.0 - 2024-10-11
814

915
### Added

implementations/rust/ockam/ockam/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam"
3-
version = "0.135.0"
3+
version = "0.136.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -89,21 +89,21 @@ path = "tests/main.rs"
8989

9090
[dependencies]
9191
hex = { version = "0.4", default-features = false }
92-
ockam_abac = { path = "../ockam_abac", version = "^0.68.0", default-features = false, optional = true }
92+
ockam_abac = { path = "../ockam_abac", version = "^0.69.0", default-features = false, optional = true }
9393
ockam_core = { path = "../ockam_core", version = "^0.118.0", default-features = false }
94-
ockam_identity = { path = "../ockam_identity", version = "^0.122.0", default-features = false }
94+
ockam_identity = { path = "../ockam_identity", version = "^0.123.0", default-features = false }
9595
ockam_macros = { path = "../ockam_macros", version = "^0.35.0", default-features = false }
96-
ockam_node = { path = "../ockam_node", version = "^0.127.0", default-features = false }
97-
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.92.0", default-features = false }
98-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.125.0", default-features = false, optional = true }
99-
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.69.0", default-features = false, optional = true }
100-
ockam_vault = { path = "../ockam_vault", version = "^0.120.0", default-features = false, optional = true }
96+
ockam_node = { path = "../ockam_node", version = "^0.128.0", default-features = false }
97+
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.93.0", default-features = false }
98+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.126.0", default-features = false, optional = true }
99+
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.70.0", default-features = false, optional = true }
100+
ockam_vault = { path = "../ockam_vault", version = "^0.121.0", default-features = false, optional = true }
101101
rand = { version = "0.8", default-features = false }
102102
serde = { version = "1.0", default-features = false, features = ["derive"] }
103103
tracing = { version = "0.1", default-features = false }
104104

105105
[dev-dependencies]
106-
ockam_vault = { path = "../ockam_vault", version = "^0.120.0" }
106+
ockam_vault = { path = "../ockam_vault", version = "^0.121.0" }
107107
rand_xorshift = "0.3"
108108
serde_json = "1.0"
109109
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.135.0"
52+
ockam = "0.136.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.69.0 - 2024-10-16
8+
9+
### Added
10+
11+
- Updated dependencies
12+
713
## 0.68.0 - 2024-10-11
814

915
### Added

implementations/rust/ockam/ockam_abac/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_abac"
3-
version = "0.68.0"
3+
version = "0.69.0"
44
authors = ["Ockam Developers"]
55
categories = ["cryptography"]
66
edition = "2021"
@@ -39,8 +39,8 @@ cfg-if = "1.0.0"
3939
either = { version = "1.13.0", default-features = false }
4040
minicbor = { version = "0.24.1", features = ["derive", "alloc"] }
4141
ockam_core = { version = "0.118.0", path = "../ockam_core", default-features = false }
42-
ockam_identity = { version = "0.122.0", path = "../ockam_identity", default-features = false }
43-
ockam_node = { version = "0.127.0", path = "../ockam_node", default-features = false }
42+
ockam_identity = { version = "0.123.0", path = "../ockam_identity", default-features = false }
43+
ockam_node = { version = "0.128.0", path = "../ockam_node", default-features = false }
4444
once_cell = { version = "1.19.0", default-features = false, features = ["alloc"] }
4545
serde = { version = "1", default-features = false, features = ["derive"] }
4646
strum = { version = "0.26.3", default-features = false, features = ["derive"] }

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.68.0"
20+
ockam_abac = "0.69.0"
2121
```
2222

2323
## License

implementations/rust/ockam/ockam_api/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ 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.79.0 - 2024-10-16
8+
9+
### Added
10+
11+
- `eBPF` portal updates:
12+
- Updated dependencies
13+
14+
### Fixed
15+
16+
- `project enroll` should not try to fetch project data from orchestrator
17+
718
## 0.78.0 - 2024-10-15
819

920
### Added

implementations/rust/ockam/ockam_api/Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_api"
3-
version = "0.78.0"
3+
version = "0.79.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -112,8 +112,8 @@ tracing-subscriber = { version = "0.3", features = ["json"] }
112112
url = "2.5.2"
113113

114114
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.62.0", features = ["cbor", "serde"] }
115-
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.92.0" }
116-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.125.0", default-features = false, features = ["std"] }
115+
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.93.0" }
116+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.126.0", default-features = false, features = ["std"] }
117117
tonic = "0.12"
118118

119119
[dependencies.ockam_core]
@@ -123,33 +123,33 @@ default-features = false
123123
features = ["no_std", "alloc"]
124124

125125
[dependencies.ockam_node]
126-
version = "0.127.0"
126+
version = "0.128.0"
127127
path = "../ockam_node"
128128
default-features = false
129129
features = ["no_std", "alloc"]
130130

131131
[dependencies.ockam_vault]
132-
version = "0.120.0"
132+
version = "0.121.0"
133133
path = "../ockam_vault"
134134
default-features = false
135135
# FIXME: ockam_vault's dependency curve25519-dalek has non-additive features which
136136
# breaks building ockam_vault with feature set "no_std,std":
137137
features = ["std", "storage"]
138138

139139
[dependencies.ockam_vault_aws]
140-
version = "0.46.0"
140+
version = "0.47.0"
141141
path = "../ockam_vault_aws"
142142
default-features = false
143143
features = ["std"]
144144

145145
[dependencies.ockam]
146-
version = "^0.135.0"
146+
version = "^0.136.0"
147147
path = "../ockam"
148148
default-features = false
149149
features = ["std", "ockam_transport_tcp", "ockam_transport_udp", "storage"]
150150

151151
[dependencies.ockam_abac]
152-
version = "0.68.0"
152+
version = "0.69.0"
153153
path = "../ockam_abac"
154154
default-features = false
155155

@@ -161,8 +161,8 @@ indexmap = "2.6.0"
161161
mockall = "0.13"
162162
multimap = "0.10.0"
163163
ockam_macros = { path = "../ockam_macros", features = ["std"], version = "^0.35.0" }
164-
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.92.0" }
165-
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.125.0" }
164+
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.93.0" }
165+
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.126.0" }
166166
once_cell = { version = "1", default-features = false }
167167
opentelemetry_sdk = { version = "0.26.0", features = ["logs", "metrics", "trace", "rt-tokio", "testing"], default-features = false }
168168
pretty_assertions = "1.4.1"

implementations/rust/ockam/ockam_api/README.md

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

3333
```
3434
[dependencies]
35-
ockam_api = "0.78.0"
35+
ockam_api = "0.79.0"
3636
```
3737

3838
## License

implementations/rust/ockam/ockam_app_lib/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.136.0 - 2024-10-16
8+
9+
### Added
10+
11+
- Updated dependencies
12+
713
## 0.135.0 - 2024-10-11
814

915
### Added

implementations/rust/ockam/ockam_app_lib/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_app_lib"
3-
version = "0.135.0"
3+
version = "0.136.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -37,8 +37,8 @@ rust-crypto = ["ockam_api/rust-crypto"]
3737
duct = "0.13.7"
3838
miette = { version = "7.2.0", features = ["fancy-no-backtrace"] }
3939
minicbor = { version = "0.24.1", features = ["alloc", "derive"] }
40-
ockam = { path = "../ockam", version = "^0.135.0", features = ["software_vault"] }
41-
ockam_api = { path = "../ockam_api", version = "0.78.0", default-features = false, features = ["std"] }
40+
ockam = { path = "../ockam", version = "^0.136.0", features = ["software_vault"] }
41+
ockam_api = { path = "../ockam_api", version = "0.79.0", default-features = false, features = ["std"] }
4242
ockam_core = { path = "../ockam_core", version = "^0.118.0" }
4343
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.62.0", features = ["cbor", "serde"] }
4444
serde = { version = "1.0", features = ["derive"] }
@@ -50,7 +50,7 @@ tracing = { version = "0.1", default-features = false }
5050
tracing-core = { version = "0.1.32", default-features = false }
5151

5252
[dev-dependencies]
53-
ockam_api = { path = "../ockam_api", version = "0.78.0", default-features = false, features = ["test-utils"] }
53+
ockam_api = { path = "../ockam_api", version = "0.79.0", default-features = false, features = ["test-utils"] }
5454
tempfile = { version = "3.10.1" }
5555

5656
[build-dependencies]

implementations/rust/ockam/ockam_app_lib/README.md

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

2222
```
2323
[dependencies]
24-
ockam_app_lib = "0.135.0"
24+
ockam_app_lib = "0.136.0"
2525
```
2626

2727
## License

0 commit comments

Comments
 (0)