Skip to content

Commit f0aaa16

Browse files
committed
ci: crate release 05-12-2023
1 parent 3f9775a commit f0aaa16

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

+271
-119
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

+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.106.0 - 2023-12-05
8+
9+
### Changed
10+
11+
- Persist application data in a database
12+
- Updated dependencies
13+
714
## 0.105.0 - 2023-11-23
815

916
### 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.105.0"
3+
version = "0.106.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.39.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.93.0", default_features = false }
88+
ockam_abac = { path = "../ockam_abac", version = "^0.40.0", default_features = false, optional = true }
89+
ockam_core = { path = "../ockam_core", version = "^0.94.0", default-features = false }
90+
ockam_identity = { path = "../ockam_identity", version = "^0.94.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.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 }
92+
ockam_node = { path = "../ockam_node", version = "^0.99.0", default-features = false }
93+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.97.0", optional = true }
94+
ockam_vault = { path = "../ockam_vault", version = "^0.92.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.91.0" }
101+
ockam_vault = { path = "../ockam_vault", version = "^0.92.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.105.0"
52+
ockam = "0.106.0"
5353
```
5454

5555
## License

implementations/rust/ockam/ockam_abac/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.40.0 - 2023-12-05
8+
9+
### Changed
10+
11+
- Persist application data in a database
12+
- Updated dependencies
13+
714
## 0.39.0 - 2023-11-23
815

916
### Changed

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.39.0"
3+
version = "0.40.0"
44
authors = ["Ockam Developers"]
55
categories = ["cryptography", "authorization"]
66
edition = "2021"
@@ -34,13 +34,13 @@ std = [
3434
[dependencies]
3535
either = { version = "1.9.0", default-features = false }
3636
minicbor = { version = "0.20.0", features = ["derive", "alloc"] }
37-
ockam_core = { version = "0.93.0", path = "../ockam_core", default-features = false }
38-
ockam_identity = { version = "0.93.0", path = "../ockam_identity", default-features = false }
39-
ockam_node = { version = "0.98.0", path = "../ockam_node", default-features = false }
37+
ockam_core = { version = "0.94.0", path = "../ockam_core", default-features = false }
38+
ockam_identity = { version = "0.94.0", path = "../ockam_identity", default-features = false }
39+
ockam_node = { version = "0.99.0", path = "../ockam_node", default-features = false }
4040
once_cell = { version = "1.18.0", default-features = false, features = ["alloc"] }
4141

4242
# optional:
43-
ockam_executor = { version = "0.61.0", path = "../ockam_executor", default-features = false, optional = true }
43+
ockam_executor = { version = "0.62.0", path = "../ockam_executor", default-features = false, optional = true }
4444
regex = { version = "1.10.2", default-features = false, optional = true }
4545
rusqlite = { version = "0.30.0", optional = true }
4646
rustyline = { version = "12.0.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.39.0"
20+
ockam_abac = "0.40.0"
2121
```
2222

2323
## License

implementations/rust/ockam/ockam_api/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ 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.49.0 - 2023-12-05
8+
9+
### Added
10+
11+
- Add `VersionedData::data_type`. remove hash truncation
12+
13+
### Changed
14+
15+
- Persist application data in a database
16+
- Updated dependencies
17+
18+
### Removed
19+
20+
- Remove recursive calls in repository implementations
21+
722
## 0.48.0 - 2023-11-23
823

924
### 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.48.0"
3+
version = "0.49.0"
44
authors = ["Ockam Developers"]
55
edition = "2021"
66
homepage = "https://github.com/ockam-network/ockam"
@@ -59,43 +59,43 @@ tokio-retry = "0.3.0"
5959
tracing = { version = "0.1", default-features = false }
6060
url = "2.4.1"
6161

62-
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.37.0", features = ["cbor", "serde"] }
63-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.96.0" }
62+
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.38.0", features = ["cbor", "serde"] }
63+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.97.0" }
6464

6565
[dependencies.ockam_core]
66-
version = "0.93.0"
66+
version = "0.94.0"
6767
path = "../ockam_core"
6868
default-features = false
6969
features = ["no_std", "alloc"]
7070

7171
[dependencies.ockam_node]
72-
version = "0.98.0"
72+
version = "0.99.0"
7373
path = "../ockam_node"
7474
default-features = false
7575
features = ["no_std", "alloc"]
7676

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

8585
[dependencies.ockam_vault_aws]
86-
version = "0.16.0"
86+
version = "0.17.0"
8787
path = "../ockam_vault_aws"
8888
default-features = false
8989
features = ["std"]
9090

9191
[dependencies.ockam]
92-
version = "^0.105.0"
92+
version = "^0.106.0"
9393
path = "../ockam"
9494
default-features = false
9595
features = ["ockam_transport_tcp", "storage"]
9696

9797
[dependencies.ockam_abac]
98-
version = "0.39.0"
98+
version = "0.40.0"
9999
path = "../ockam_abac"
100100
default-features = false
101101

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

3838
## License

implementations/rust/ockam/ockam_app_lib/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.10.0 - 2023-12-05
8+
9+
### Changed
10+
11+
- Persist application data in a database
12+
- Updated dependencies
13+
714
## 0.9.0 - 2023-11-23
815

916
### Added

implementations/rust/ockam/ockam_app_lib/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_app_lib"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -33,11 +33,11 @@ futures = { version = "0.3.29", default-features = false }
3333
hex = { version = "0.4.3", default-features = false, features = ["alloc", "serde"] }
3434
miette = { version = "5.10.0", features = ["fancy-no-backtrace"] }
3535
minicbor = { version = "0.20.0", features = ["alloc", "derive"] }
36-
ockam = { path = "../ockam", version = "^0.105.0", features = ["software_vault"] }
37-
ockam_api = { path = "../ockam_api", version = "0.48.0", features = ["std"] }
38-
ockam_core = { path = "../ockam_core", version = "^0.93.0" }
39-
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.37.0", features = ["cbor", "serde"] }
40-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.96.0" }
36+
ockam = { path = "../ockam", version = "^0.106.0", features = ["software_vault"] }
37+
ockam_api = { path = "../ockam_api", version = "0.49.0", features = ["std"] }
38+
ockam_core = { path = "../ockam_core", version = "^0.94.0" }
39+
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.38.0", features = ["cbor", "serde"] }
40+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.97.0" }
4141
serde = { version = "1.0", features = ["derive"] }
4242
serde_json = "1.0"
4343
sqlx = { version = "0.7.3", features = ["runtime-tokio", "sqlite", "migrate"] }

0 commit comments

Comments
 (0)