Skip to content

Commit a743805

Browse files
ockam-teammetaclips
authored andcommitted
ci: crate release 23-09-2024
1 parent a6d7bfc commit a743805

File tree

60 files changed

+311
-140
lines changed

Some content is hidden

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

60 files changed

+311
-140
lines changed

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

implementations/rust/ockam/ockam/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.134.0 - 2024-09-23
8+
9+
### Added
10+
11+
- Updated dependencies
12+
713
## 0.133.0 - 2024-08-14
814

915
### Added

implementations/rust/ockam/ockam/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam"
3-
version = "0.133.0"
3+
version = "0.134.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.66.0", default-features = false, optional = true }
93-
ockam_core = { path = "../ockam_core", version = "^0.116.0", default-features = false }
94-
ockam_identity = { path = "../ockam_identity", version = "^0.120.0", default-features = false }
95-
ockam_macros = { path = "../ockam_macros", version = "^0.34.0", default-features = false }
96-
ockam_node = { path = "../ockam_node", version = "^0.125.0", default-features = false }
97-
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.90.0", default-features = false }
98-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.123.0", default-features = false, optional = true }
99-
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.67.0", default-features = false, optional = true }
100-
ockam_vault = { path = "../ockam_vault", version = "^0.118.0", default-features = false, optional = true }
92+
ockam_abac = { path = "../ockam_abac", version = "^0.67.0", default-features = false, optional = true }
93+
ockam_core = { path = "../ockam_core", version = "^0.117.0", default-features = false }
94+
ockam_identity = { path = "../ockam_identity", version = "^0.121.0", default-features = false }
95+
ockam_macros = { path = "../ockam_macros", version = "^0.35.0", default-features = false }
96+
ockam_node = { path = "../ockam_node", version = "^0.126.0", default-features = false }
97+
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.91.0", default-features = false }
98+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.124.0", default-features = false, optional = true }
99+
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.68.0", default-features = false, optional = true }
100+
ockam_vault = { path = "../ockam_vault", version = "^0.119.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.118.0" }
106+
ockam_vault = { path = "../ockam_vault", version = "^0.119.0" }
107107
rand_xorshift = "0.3"
108108
serde_json = "1.0"
109109
trybuild = { version = "1.0", features = ["diff"] }

implementations/rust/ockam/ockam/README.md

Lines changed: 1 addition & 1 deletion
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.133.0"
52+
ockam = "0.134.0"
5353
```
5454

5555
## License

implementations/rust/ockam/ockam_abac/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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.67.0 - 2024-09-23
8+
9+
### Added
10+
11+
- Implement influxdb token lessor service
12+
- Updated dependencies
13+
714
## 0.66.0 - 2024-08-14
815

916
### Added

implementations/rust/ockam/ockam_abac/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_abac"
3-
version = "0.66.0"
3+
version = "0.67.0"
44
authors = ["Ockam Developers"]
55
categories = ["cryptography"]
66
edition = "2021"
@@ -38,15 +38,15 @@ std = [
3838
cfg-if = "1.0.0"
3939
either = { version = "1.13.0", default-features = false }
4040
minicbor = { version = "0.24.1", features = ["derive", "alloc"] }
41-
ockam_core = { version = "0.116.0", path = "../ockam_core", default-features = false }
42-
ockam_identity = { version = "0.120.0", path = "../ockam_identity", default-features = false }
43-
ockam_node = { version = "0.125.0", path = "../ockam_node", default-features = false }
41+
ockam_core = { version = "0.117.0", path = "../ockam_core", default-features = false }
42+
ockam_identity = { version = "0.121.0", path = "../ockam_identity", default-features = false }
43+
ockam_node = { version = "0.126.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.85.0", path = "../ockam_executor", default-features = false, optional = true }
49+
ockam_executor = { version = "0.86.0", path = "../ockam_executor", default-features = false, optional = true }
5050
regex = { version = "1.10.6", 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

Lines changed: 1 addition & 1 deletion
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.66.0"
20+
ockam_abac = "0.67.0"
2121
```
2222

2323
## License

implementations/rust/ockam/ockam_api/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,31 @@ 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.77.0 - 2024-09-23
8+
9+
### Added
10+
11+
- Add a value parser for change histories
12+
- Added `TLS` inlet support
13+
- Implement influxdb token lessor service
14+
- Update default rendezvous server address
15+
- Influxdb inlet/outlet that attach authorization token
16+
- Improve output for lease commands
17+
- Refactor influxdb api client to better handle error responses
18+
- Implementation of reliable `TCP` portals
19+
- Add reliable `TCP` portals to `ockam_api`&`ockam_command`
20+
- Improve ux of influxdb portal commands
21+
- Updated dependencies
22+
23+
### Changed
24+
25+
- Bump opentelemetry-appender-tracing from 0.4.0 to 0.5.0
26+
- Bump sysinfo from 0.30.13 to 0.31.4
27+
28+
### Fixed
29+
30+
- Graceful stop of a node in the command
31+
732
## 0.76.0 - 2024-08-14
833

934
### Added

implementations/rust/ockam/ockam_api/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_api"
3-
version = "0.76.0"
3+
version = "0.77.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -110,45 +110,45 @@ tracing-opentelemetry = "0.25.0"
110110
tracing-subscriber = { version = "0.3.18", features = ["json"] }
111111
url = "2.5.2"
112112

113-
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.60.0", features = ["cbor", "serde"] }
114-
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.90.0" }
115-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.123.0", default-features = false, features = ["std"] }
113+
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.61.0", features = ["cbor", "serde"] }
114+
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.91.0" }
115+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.124.0", default-features = false, features = ["std"] }
116116
tonic = "0.12"
117117

118118
[dependencies.ockam_core]
119-
version = "0.116.0"
119+
version = "0.117.0"
120120
path = "../ockam_core"
121121
default-features = false
122122
features = ["no_std", "alloc"]
123123

124124
[dependencies.ockam_node]
125-
version = "0.125.0"
125+
version = "0.126.0"
126126
path = "../ockam_node"
127127
default-features = false
128128
features = ["no_std", "alloc"]
129129

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

138138
[dependencies.ockam_vault_aws]
139-
version = "0.44.0"
139+
version = "0.45.0"
140140
path = "../ockam_vault_aws"
141141
default-features = false
142142
features = ["std"]
143143

144144
[dependencies.ockam]
145-
version = "^0.133.0"
145+
version = "^0.134.0"
146146
path = "../ockam"
147147
default-features = false
148148
features = ["std", "ockam_transport_tcp", "ockam_transport_udp", "storage"]
149149

150150
[dependencies.ockam_abac]
151-
version = "0.66.0"
151+
version = "0.67.0"
152152
path = "../ockam_abac"
153153
default-features = false
154154

@@ -159,9 +159,9 @@ hex = "0.4.3"
159159
indexmap = "2.2.6"
160160
mockall = "0.13"
161161
multimap = "0.10.0"
162-
ockam_macros = { path = "../ockam_macros", features = ["std"], version = "^0.34.0" }
163-
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.90.0" }
164-
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.123.0" }
162+
ockam_macros = { path = "../ockam_macros", features = ["std"], version = "^0.35.0" }
163+
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.91.0" }
164+
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.124.0" }
165165
once_cell = { version = "1", default-features = false }
166166
opentelemetry_sdk = { version = "0.24.1", features = ["logs", "metrics", "trace", "rt-tokio", "testing"], default-features = false }
167167
pretty_assertions = "1.4.1"

0 commit comments

Comments
 (0)