Skip to content

Commit

Permalink
ci: crate release 23-09-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
ockam-team committed Sep 23, 2024
1 parent a6d7bfc commit 7bfc20b
Show file tree
Hide file tree
Showing 60 changed files with 311 additions and 140 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions implementations/rust/ockam/ockam/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.134.0 - 2024-09-23

### Added

- Updated dependencies

## 0.133.0 - 2024-08-14

### Added
Expand Down
22 changes: 11 additions & 11 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.133.0"
version = "0.134.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.66.0", default-features = false, optional = true }
ockam_core = { path = "../ockam_core", version = "^0.116.0", default-features = false }
ockam_identity = { path = "../ockam_identity", version = "^0.120.0", default-features = false }
ockam_macros = { path = "../ockam_macros", version = "^0.34.0", default-features = false }
ockam_node = { path = "../ockam_node", version = "^0.125.0", default-features = false }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.90.0", default-features = false }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.123.0", default-features = false, optional = true }
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.67.0", default-features = false, optional = true }
ockam_vault = { path = "../ockam_vault", version = "^0.118.0", default-features = false, optional = true }
ockam_abac = { path = "../ockam_abac", version = "^0.67.0", default-features = false, optional = true }
ockam_core = { path = "../ockam_core", version = "^0.117.0", default-features = false }
ockam_identity = { path = "../ockam_identity", version = "^0.121.0", default-features = false }
ockam_macros = { path = "../ockam_macros", version = "^0.35.0", default-features = false }
ockam_node = { path = "../ockam_node", version = "^0.126.0", default-features = false }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.91.0", default-features = false }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.124.0", default-features = false, optional = true }
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.68.0", default-features = false, optional = true }
ockam_vault = { path = "../ockam_vault", version = "^0.119.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.118.0" }
ockam_vault = { path = "../ockam_vault", version = "^0.119.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.133.0"
ockam = "0.134.0"
```

## License
Expand Down
7 changes: 7 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,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.67.0 - 2024-09-23

### Added

- Implement influxdb token lessor service
- Updated dependencies

## 0.66.0 - 2024-08-14

### Added
Expand Down
10 changes: 5 additions & 5 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.66.0"
version = "0.67.0"
authors = ["Ockam Developers"]
categories = ["cryptography"]
edition = "2021"
Expand Down Expand Up @@ -38,15 +38,15 @@ std = [
cfg-if = "1.0.0"
either = { version = "1.13.0", default-features = false }
minicbor = { version = "0.24.1", features = ["derive", "alloc"] }
ockam_core = { version = "0.116.0", path = "../ockam_core", default-features = false }
ockam_identity = { version = "0.120.0", path = "../ockam_identity", default-features = false }
ockam_node = { version = "0.125.0", path = "../ockam_node", default-features = false }
ockam_core = { version = "0.117.0", path = "../ockam_core", default-features = false }
ockam_identity = { version = "0.121.0", path = "../ockam_identity", default-features = false }
ockam_node = { version = "0.126.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"] }

# optional:
ockam_executor = { version = "0.85.0", path = "../ockam_executor", default-features = false, optional = true }
ockam_executor = { version = "0.86.0", path = "../ockam_executor", default-features = false, optional = true }
regex = { version = "1.10.6", default-features = false, optional = true }
rustyline = { version = "14.0.0", optional = true }
rustyline-derive = { version = "0.10.0", optional = true }
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.66.0"
ockam_abac = "0.67.0"
```

## License
Expand Down
25 changes: 25 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,31 @@ 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.77.0 - 2024-09-23

### Added

- Add a value parser for change histories
- Added `TLS` inlet support
- Implement influxdb token lessor service
- Update default rendezvous server address
- Influxdb inlet/outlet that attach authorization token
- Improve output for lease commands
- Refactor influxdb api client to better handle error responses
- Implementation of reliable `TCP` portals
- Add reliable `TCP` portals to `ockam_api`&`ockam_command`
- Improve ux of influxdb portal commands
- Updated dependencies

### Changed

- Bump opentelemetry-appender-tracing from 0.4.0 to 0.5.0
- Bump sysinfo from 0.30.13 to 0.31.4

### Fixed

- Graceful stop of a node in the command

## 0.76.0 - 2024-08-14

### Added
Expand Down
26 changes: 13 additions & 13 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.76.0"
version = "0.77.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
Expand Down Expand Up @@ -110,45 +110,45 @@ tracing-opentelemetry = "0.25.0"
tracing-subscriber = { version = "0.3.18", features = ["json"] }
url = "2.5.2"

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

[dependencies.ockam_core]
version = "0.116.0"
version = "0.117.0"
path = "../ockam_core"
default-features = false
features = ["no_std", "alloc"]

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

[dependencies.ockam_vault]
version = "0.118.0"
version = "0.119.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.44.0"
version = "0.45.0"
path = "../ockam_vault_aws"
default-features = false
features = ["std"]

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

[dependencies.ockam_abac]
version = "0.66.0"
version = "0.67.0"
path = "../ockam_abac"
default-features = false

Expand All @@ -159,9 +159,9 @@ hex = "0.4.3"
indexmap = "2.2.6"
mockall = "0.13"
multimap = "0.10.0"
ockam_macros = { path = "../ockam_macros", features = ["std"], version = "^0.34.0" }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.90.0" }
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.123.0" }
ockam_macros = { path = "../ockam_macros", features = ["std"], version = "^0.35.0" }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.91.0" }
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.124.0" }
once_cell = { version = "1", default-features = false }
opentelemetry_sdk = { version = "0.24.1", features = ["logs", "metrics", "trace", "rt-tokio", "testing"], default-features = false }
pretty_assertions = "1.4.1"
Expand Down
Loading

0 comments on commit 7bfc20b

Please sign in to comment.