Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ockam Release 12-12-2024 #8699

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions implementations/rust/ockam/ockam/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.145.0 - 2024-12-12

### Added

- Add `UDP` support to nodes and multiaddr. refactor multiaddr
- Updated dependencies

## 0.144.0 - 2024-12-04

### Added
Expand Down
16 changes: 8 additions & 8 deletions implementations/rust/ockam/ockam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ockam"
version = "0.144.0"
version = "0.145.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
Expand Down Expand Up @@ -89,21 +89,21 @@ path = "tests/main.rs"

[dependencies]
hex = { version = "0.4", default-features = false }
ockam_abac = { path = "../ockam_abac", version = "^0.75.0", default-features = false, optional = true }
ockam_abac = { path = "../ockam_abac", version = "^0.76.0", default-features = false, optional = true }
ockam_core = { path = "../ockam_core", version = "^0.122.0", default-features = false }
ockam_identity = { path = "../ockam_identity", version = "^0.129.0", default-features = false }
ockam_identity = { path = "../ockam_identity", version = "^0.130.0", default-features = false }
ockam_macros = { path = "../ockam_macros", version = "^0.36.0", default-features = false }
ockam_node = { path = "../ockam_node", version = "^0.134.0", default-features = false }
ockam_node = { path = "../ockam_node", version = "^0.135.0", default-features = false }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0", default-features = false }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.132.0", default-features = false, optional = true }
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.76.0", default-features = false, optional = true }
ockam_vault = { path = "../ockam_vault", version = "^0.127.0", default-features = false, optional = true }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.133.0", default-features = false, optional = true }
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.77.0", default-features = false, optional = true }
ockam_vault = { path = "../ockam_vault", version = "^0.128.0", default-features = false, optional = true }
rand = { version = "0.8", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive"] }
tracing = { version = "0.1", default-features = false }

[dev-dependencies]
ockam_vault = { path = "../ockam_vault", version = "^0.127.0" }
ockam_vault = { path = "../ockam_vault", version = "^0.128.0" }
rand_xorshift = "0.3"
serde_json = "1.0"
trybuild = { version = "1.0", features = ["diff"] }
Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Add this to your `Cargo.toml`:

```
[dependencies]
ockam = "0.144.0"
ockam = "0.145.0"
```

## License
Expand Down
11 changes: 11 additions & 0 deletions implementations/rust/ockam/ockam_abac/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.76.0 - 2024-12-12

### Added

- Extend boolean expressions to allow key-value and identifiers
- Updated dependencies

### Changed

- Make the auto-retry an implementation detail of repositories

## 0.75.0 - 2024-12-04

### Added
Expand Down
6 changes: 3 additions & 3 deletions implementations/rust/ockam/ockam_abac/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ockam_abac"
version = "0.75.0"
version = "0.76.0"
authors = ["Ockam Developers"]
categories = ["cryptography"]
edition = "2021"
Expand Down Expand Up @@ -39,8 +39,8 @@ cfg-if = "1.0.0"
either = { version = "1.13.0", default-features = false }
minicbor = { version = "0.25.1", default-features = false, features = ["derive"] }
ockam_core = { version = "0.122.0", path = "../ockam_core", default-features = false }
ockam_identity = { version = "0.129.0", path = "../ockam_identity", default-features = false }
ockam_node = { version = "0.134.0", path = "../ockam_node", default-features = false }
ockam_identity = { version = "0.130.0", path = "../ockam_identity", default-features = false }
ockam_node = { version = "0.135.0", path = "../ockam_node", default-features = false }
once_cell = { version = "1.19.0", default-features = false, features = ["alloc"] }
serde = { version = "1", default-features = false, features = ["derive"] }
strum = { version = "0.26.3", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_abac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`:

```
[dependencies]
ockam_abac = "0.75.0"
ockam_abac = "0.76.0"
```

## License
Expand Down
16 changes: 16 additions & 0 deletions implementations/rust/ockam/ockam_api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.88.0 - 2024-12-12

### Added

- Add `UDP` support to nodes and multiaddr. refactor multiaddr
- Enable auto-retry on all repositories
- Updated dependencies

### Changed

- Make the auto-retry an implementation detail of repositories

### Fixed

- Update tests using the `ENROLLMENT_TICKET` env var

## 0.87.0 - 2024-12-04

### Added
Expand Down
18 changes: 9 additions & 9 deletions implementations/rust/ockam/ockam_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ockam_api"
version = "0.87.0"
version = "0.88.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
Expand Down Expand Up @@ -114,9 +114,9 @@ tracing-opentelemetry = "0.27.0"
tracing-subscriber = { version = "0.3", features = ["json"] }
url = "2.5.2"

ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.66.0", features = ["cbor", "serde"] }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.67.0", features = ["cbor", "serde"] }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0" }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.132.0", default-features = false, features = ["std"] }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.133.0", default-features = false, features = ["std"] }
tonic = "0.12"

[dependencies.ockam_core]
Expand All @@ -126,33 +126,33 @@ default-features = false
features = ["no_std", "alloc"]

[dependencies.ockam_node]
version = "0.134.0"
version = "0.135.0"
path = "../ockam_node"
default-features = false
features = ["no_std", "alloc"]

[dependencies.ockam_vault]
version = "0.127.0"
version = "0.128.0"
path = "../ockam_vault"
default-features = false
# FIXME: ockam_vault's dependency curve25519-dalek has non-additive features which
# breaks building ockam_vault with feature set "no_std,std":
features = ["std", "storage"]

[dependencies.ockam_vault_aws]
version = "0.53.0"
version = "0.54.0"
path = "../ockam_vault_aws"
default-features = false
features = ["std"]

[dependencies.ockam]
version = "^0.144.0"
version = "^0.145.0"
path = "../ockam"
default-features = false
features = ["std", "ockam_transport_tcp", "ockam_transport_udp", "storage"]

[dependencies.ockam_abac]
version = "0.75.0"
version = "0.76.0"
path = "../ockam_abac"
default-features = false

Expand All @@ -165,7 +165,7 @@ mockall = "0.13"
multimap = "0.10.0"
ockam_macros = { path = "../ockam_macros", features = ["std"], version = "^0.36.0" }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.99.0" }
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.132.0" }
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.133.0" }
opentelemetry_sdk = { version = "0.26.0", features = ["logs", "metrics", "trace", "rt-tokio", "testing"], default-features = false }
pretty_assertions = "1.4.1"
proptest = "1.5.0"
Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Add this to your `Cargo.toml`:

```
[dependencies]
ockam_api = "0.87.0"
ockam_api = "0.88.0"
```

## License
Expand Down
11 changes: 11 additions & 0 deletions implementations/rust/ockam/ockam_app_lib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.145.0 - 2024-12-12

### Added

- Add `UDP` support to nodes and multiaddr. refactor multiaddr
- Updated dependencies

### Changed

- Make the auto-retry an implementation detail of repositories

## 0.144.0 - 2024-12-04

### Added
Expand Down
12 changes: 6 additions & 6 deletions implementations/rust/ockam/ockam_app_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ockam_app_lib"
version = "0.144.0"
version = "0.145.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
Expand Down Expand Up @@ -37,11 +37,11 @@ rust-crypto = ["ockam_api/rust-crypto"]
duct = "0.13.7"
miette = { version = "7.2.0", features = ["fancy-no-backtrace"] }
minicbor = { version = "0.25.1", default-features = false, features = ["alloc", "derive"] }
ockam = { path = "../ockam", version = "^0.144.0", features = ["software_vault"] }
ockam_api = { path = "../ockam_api", version = "0.87.0", default-features = false, features = ["std"] }
ockam = { path = "../ockam", version = "^0.145.0", features = ["software_vault"] }
ockam_api = { path = "../ockam_api", version = "0.88.0", default-features = false, features = ["std"] }
ockam_core = { path = "../ockam_core", version = "^0.122.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.66.0", features = ["cbor", "serde"] }
ockam_node = { path = "../ockam_node", version = "^0.134.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.67.0", features = ["cbor", "serde"] }
ockam_node = { path = "../ockam_node", version = "^0.135.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8.2", default-features = false }
Expand All @@ -50,7 +50,7 @@ tokio = { version = "1.41.0", features = ["full"] }
tracing = { version = "0.1", default-features = false }

[dev-dependencies]
ockam_api = { path = "../ockam_api", version = "0.87.0", default-features = false, features = ["test-utils"] }
ockam_api = { path = "../ockam_api", version = "0.88.0", default-features = false, features = ["test-utils"] }
tempfile = { version = "3.10.1" }

[build-dependencies]
Expand Down
Loading
Loading