Skip to content

Commit 447e2f0

Browse files
ockam-teammetaclips
authored andcommitted
ci: crate release 25-06-2024
1 parent 0623c90 commit 447e2f0

Some content is hidden

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

55 files changed

+261
-120
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

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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.127.0 - 2024-06-25
8+
9+
### Added
10+
11+
- Exposed and added `ockam-rely` attribute validation for relay service
12+
- Unified relay creation logic for project and rust
13+
- Updated dependencies
14+
715
## 0.126.0 - 2024-06-11
816

917
### 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.126.0"
3+
version = "0.127.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -88,20 +88,20 @@ path = "tests/main.rs"
8888

8989
[dependencies]
9090
hex = { version = "0.4", default-features = false }
91-
ockam_abac = { path = "../ockam_abac", version = "^0.59.0", default_features = false, optional = true }
92-
ockam_core = { path = "../ockam_core", version = "^0.110.0", default-features = false }
93-
ockam_identity = { path = "../ockam_identity", version = "^0.113.0", default_features = false }
91+
ockam_abac = { path = "../ockam_abac", version = "^0.60.0", default_features = false, optional = true }
92+
ockam_core = { path = "../ockam_core", version = "^0.111.0", default-features = false }
93+
ockam_identity = { path = "../ockam_identity", version = "^0.114.0", default_features = false }
9494
ockam_macros = { path = "../ockam_macros", version = "^0.34.0", default_features = false }
95-
ockam_node = { path = "../ockam_node", version = "^0.118.0", default-features = false }
96-
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.83.0", default-features = false }
97-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.116.0", default-features = false, optional = true }
98-
ockam_vault = { path = "../ockam_vault", version = "^0.111.0", default_features = false, optional = true }
95+
ockam_node = { path = "../ockam_node", version = "^0.119.0", default-features = false }
96+
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.84.0", default-features = false }
97+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.117.0", default-features = false, optional = true }
98+
ockam_vault = { path = "../ockam_vault", version = "^0.112.0", default_features = false, optional = true }
9999
rand = { version = "0.8", default-features = false }
100100
serde = { version = "1.0", default-features = false, features = ["derive"] }
101101
tracing = { version = "0.1", default-features = false }
102102

103103
[dev-dependencies]
104-
ockam_vault = { path = "../ockam_vault", version = "^0.111.0" }
104+
ockam_vault = { path = "../ockam_vault", version = "^0.112.0" }
105105
rand_xorshift = "0.3"
106106
serde_json = "1.0"
107107
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.126.0"
52+
ockam = "0.127.0"
5353
```
5454

5555
## License

implementations/rust/ockam/ockam_abac/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.60.0 - 2024-06-25
8+
9+
### Added
10+
11+
- Exposed and added `ockam-rely` attribute validation for relay service
12+
- Updated dependencies
13+
14+
### Changed
15+
16+
- Bump wast from 207.0.0 to 211.0.1
17+
718
## 0.59.0 - 2024-06-11
819

920
### Added

implementations/rust/ockam/ockam_abac/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_abac"
3-
version = "0.59.0"
3+
version = "0.60.0"
44
authors = ["Ockam Developers"]
55
categories = ["cryptography", "authorization"]
66
edition = "2021"
@@ -38,15 +38,15 @@ std = [
3838
cfg-if = "1.0.0"
3939
either = { version = "1.12.0", default-features = false }
4040
minicbor = { version = "0.24.1", features = ["derive", "alloc"] }
41-
ockam_core = { version = "0.110.0", path = "../ockam_core", default-features = false }
42-
ockam_identity = { version = "0.113.0", path = "../ockam_identity", default-features = false }
43-
ockam_node = { version = "0.118.0", path = "../ockam_node", default-features = false }
41+
ockam_core = { version = "0.111.0", path = "../ockam_core", default-features = false }
42+
ockam_identity = { version = "0.114.0", path = "../ockam_identity", default-features = false }
43+
ockam_node = { version = "0.119.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"] }
4747

4848
# optional:
49-
ockam_executor = { version = "0.79.0", path = "../ockam_executor", default-features = false, optional = true }
49+
ockam_executor = { version = "0.80.0", path = "../ockam_executor", default-features = false, optional = true }
5050
regex = { version = "1.10.5", default-features = false, optional = true }
5151
rustyline = { version = "14.0.0", optional = true }
5252
rustyline-derive = { version = "0.10.0", 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.59.0"
20+
ockam_abac = "0.60.0"
2121
```
2222

2323
## License

implementations/rust/ockam/ockam_api/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ 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.70.0 - 2024-06-25
8+
9+
### Added
10+
11+
- Add `identity` arg to `tcp-inlet create` to customize secure channel identifier
12+
- Add `disable-content-encryption` flag to the kafka-inlet create command
13+
- Exposed and added `ockam-rely` attribute validation for relay service
14+
- Unified relay creation logic for project and rust
15+
- Adapt the width of separator lines depending on the terminal width
16+
- Updated dependencies
17+
18+
### Fixed
19+
20+
- Do not create instance of `HighlightLines` struct to prevent unexpected behaviors
21+
- Ping directly the other node in relay rather than self-ping
22+
- Terminal width detection, which was returning invalid values on ci
23+
724
## 0.69.0 - 2024-06-11
825

926
### Added

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.69.0"
3+
version = "0.70.0"
44
authors = ["Ockam Developers"]
55
edition = "2021"
66
homepage = "https://github.com/ockam-network/ockam"
@@ -92,44 +92,44 @@ tracing-opentelemetry = "0.24.0"
9292
tracing-subscriber = { version = "0.3.18", features = ["json"] }
9393
url = "2.5.2"
9494

95-
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.54.0", features = ["cbor", "serde"] }
96-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.116.0", default-features = false, features = ["std"] }
95+
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.55.0", features = ["cbor", "serde"] }
96+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.117.0", default-features = false, features = ["std"] }
9797
tonic = "0.11"
9898

9999
[dependencies.ockam_core]
100-
version = "0.110.0"
100+
version = "0.111.0"
101101
path = "../ockam_core"
102102
default-features = false
103103
features = ["no_std", "alloc"]
104104

105105
[dependencies.ockam_node]
106-
version = "0.118.0"
106+
version = "0.119.0"
107107
path = "../ockam_node"
108108
default-features = false
109109
features = ["no_std", "alloc"]
110110

111111
[dependencies.ockam_vault]
112-
version = "0.111.0"
112+
version = "0.112.0"
113113
path = "../ockam_vault"
114114
default-features = false
115115
# FIXME: ockam_vault's dependency curve25519-dalek has non-additive features which
116116
# breaks building ockam_vault with feature set "no_std,std":
117117
features = ["std", "storage"]
118118

119119
[dependencies.ockam_vault_aws]
120-
version = "0.37.0"
120+
version = "0.38.0"
121121
path = "../ockam_vault_aws"
122122
default-features = false
123123
features = ["std"]
124124

125125
[dependencies.ockam]
126-
version = "^0.126.0"
126+
version = "^0.127.0"
127127
path = "../ockam"
128128
default-features = false
129129
features = ["ockam_transport_tcp", "storage"]
130130

131131
[dependencies.ockam_abac]
132-
version = "0.59.0"
132+
version = "0.60.0"
133133
path = "../ockam_abac"
134134
default-features = false
135135

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.69.0"
35+
ockam_api = "0.70.0"
3636
```
3737

3838
## License

implementations/rust/ockam/ockam_app_lib/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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.127.0 - 2024-06-25
8+
9+
### Added
10+
11+
- Add `identity` arg to `tcp-inlet create` to customize secure channel identifier
12+
- Unified relay creation logic for project and rust
13+
- Updated dependencies
14+
15+
### Fixed
16+
17+
- Avoid confusing logging when debugging the app
18+
719
## 0.126.0 - 2024-06-11
820

921
### Added

0 commit comments

Comments
 (0)