Skip to content

Commit fe0e76f

Browse files
ockam-teammetaclips
authored andcommitted
ci: crate release 23-04-2024
1 parent 7ef77c1 commit fe0e76f

File tree

55 files changed

+266
-120
lines changed

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

+266
-120
lines changed

Cargo.lock

Lines changed: 18 additions & 18 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.122.0 - 2024-04-23
8+
9+
### Added
10+
11+
- Updated dependencies
12+
713
## 0.121.0 - 2024-04-08
814

915
### Added

implementations/rust/ockam/ockam/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam"
3-
version = "0.121.0"
3+
version = "0.122.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.24.0", features = ["alloc", "derive"] }
88-
ockam_abac = { path = "../ockam_abac", version = "^0.54.0", default_features = false, optional = true }
89-
ockam_core = { path = "../ockam_core", version = "^0.106.0", default-features = false }
90-
ockam_identity = { path = "../ockam_identity", version = "^0.108.0", default_features = false }
88+
ockam_abac = { path = "../ockam_abac", version = "^0.55.0", default_features = false, optional = true }
89+
ockam_core = { path = "../ockam_core", version = "^0.107.0", default-features = false }
90+
ockam_identity = { path = "../ockam_identity", version = "^0.109.0", default_features = false }
9191
ockam_macros = { path = "../ockam_macros", version = "^0.34.0", default_features = false }
92-
ockam_node = { path = "../ockam_node", version = "^0.113.0", default-features = false }
93-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.111.0", optional = true }
94-
ockam_vault = { path = "../ockam_vault", version = "^0.106.0", default_features = false, optional = true }
92+
ockam_node = { path = "../ockam_node", version = "^0.114.0", default-features = false }
93+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.112.0", optional = true }
94+
ockam_vault = { path = "../ockam_vault", version = "^0.107.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.106.0" }
101+
ockam_vault = { path = "../ockam_vault", version = "^0.107.0" }
102102
rand_xorshift = "0.3"
103103
serde_json = "1.0"
104104
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.121.0"
52+
ockam = "0.122.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.55.0 - 2024-04-23
8+
9+
### Added
10+
11+
- Scope some repositories to a given node name
12+
- Updated dependencies
13+
714
## 0.54.0 - 2024-04-12
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.54.0"
3+
version = "0.55.0"
44
authors = ["Ockam Developers"]
55
categories = ["cryptography", "authorization"]
66
edition = "2021"
@@ -37,15 +37,15 @@ std = [
3737
cfg-if = "1.0.0"
3838
either = { version = "1.11.0", default-features = false }
3939
minicbor = { version = "0.24.0", features = ["derive", "alloc"] }
40-
ockam_core = { version = "0.106.0", path = "../ockam_core", default-features = false }
41-
ockam_identity = { version = "0.108.0", path = "../ockam_identity", default-features = false }
42-
ockam_node = { version = "0.113.0", path = "../ockam_node", default-features = false }
40+
ockam_core = { version = "0.107.0", path = "../ockam_core", default-features = false }
41+
ockam_identity = { version = "0.109.0", path = "../ockam_identity", default-features = false }
42+
ockam_node = { version = "0.114.0", path = "../ockam_node", default-features = false }
4343
once_cell = { version = "1.19.0", default-features = false, features = ["alloc"] }
4444
serde = { version = "1", default-features = false, features = ["derive"] }
4545
strum = { version = "0.26.2", default-features = false, features = ["derive"] }
4646

4747
# optional:
48-
ockam_executor = { version = "0.75.0", path = "../ockam_executor", default-features = false, optional = true }
48+
ockam_executor = { version = "0.76.0", path = "../ockam_executor", default-features = false, optional = true }
4949
regex = { version = "1.10.4", default-features = false, optional = true }
5050
rusqlite = { version = "0.30.0", optional = true }
5151
rustyline = { version = "14.0.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.54.0"
20+
ockam_abac = "0.55.0"
2121
```
2222

2323
## License

implementations/rust/ockam/ockam_api/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,27 @@ 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.65.0 - 2024-04-23
8+
9+
### Added
10+
11+
- Support https for outlets
12+
- Export opentelemetry traces by default
13+
- Make the api for creating outlets more flexible
14+
- Support progress_bar in command notifications
15+
- Improve output of `node create` command
16+
- Scope some repositories to a given node name
17+
- When deleting a node, wait for node's process to finish
18+
- Updated dependencies
19+
20+
### Fixed
21+
22+
- Set the global error handler even if logging is off
23+
24+
### Removed
25+
26+
- Removed an empty file
27+
728
## 0.64.0 - 2024-04-12
829

930
### Added

implementations/rust/ockam/ockam_api/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_api"
3-
version = "0.64.0"
3+
version = "0.65.0"
44
authors = ["Ockam Developers"]
55
edition = "2021"
66
homepage = "https://github.com/ockam-network/ockam"
@@ -85,44 +85,44 @@ tracing-opentelemetry = "0.23.0"
8585
tracing-subscriber = { version = "0.3.18", features = ["json"] }
8686
url = "2.4.1"
8787

88-
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.50.0", features = ["cbor", "serde"] }
89-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.111.0" }
88+
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.51.0", features = ["cbor", "serde"] }
89+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.112.0" }
9090
tonic = "0.11"
9191

9292
[dependencies.ockam_core]
93-
version = "0.106.0"
93+
version = "0.107.0"
9494
path = "../ockam_core"
9595
default-features = false
9696
features = ["no_std", "alloc"]
9797

9898
[dependencies.ockam_node]
99-
version = "0.113.0"
99+
version = "0.114.0"
100100
path = "../ockam_node"
101101
default-features = false
102102
features = ["no_std", "alloc"]
103103

104104
[dependencies.ockam_vault]
105-
version = "0.106.0"
105+
version = "0.107.0"
106106
path = "../ockam_vault"
107107
default-features = false
108108
# FIXME: ockam_vault's dependency curve25519-dalek has non-additive features which
109109
# breaks building ockam_vault with feature set "no_std,std":
110110
features = ["std"]
111111

112112
[dependencies.ockam_vault_aws]
113-
version = "0.32.0"
113+
version = "0.33.0"
114114
path = "../ockam_vault_aws"
115115
default-features = false
116116
features = ["std"]
117117

118118
[dependencies.ockam]
119-
version = "^0.121.0"
119+
version = "^0.122.0"
120120
path = "../ockam"
121121
default-features = false
122122
features = ["ockam_transport_tcp", "storage"]
123123

124124
[dependencies.ockam_abac]
125-
version = "0.54.0"
125+
version = "0.55.0"
126126
path = "../ockam_abac"
127127
default-features = false
128128

implementations/rust/ockam/ockam_api/README.md

Lines changed: 1 addition & 1 deletion
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.64.0"
35+
ockam_api = "0.65.0"
3636
```
3737

3838
## License

0 commit comments

Comments
 (0)