Skip to content

Commit

Permalink
ci: crate release 03-03-2025
Browse files Browse the repository at this point in the history
  • Loading branch information
ockam-team committed Mar 3, 2025
1 parent bf57a3a commit 4aeb001
Show file tree
Hide file tree
Showing 59 changed files with 446 additions and 143 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.

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

### Added

- Make portal handshake optional
- Address review comments
- Updated dependencies

### Changed

- Enable requests to be messages

## 0.147.0 - 2025-01-20

### 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.147.0"
version = "0.148.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.78.0", default-features = false, optional = true }
ockam_core = { path = "../ockam_core", version = "^0.124.0", default-features = false }
ockam_identity = { path = "../ockam_identity", version = "^0.132.0", default-features = false }
ockam_macros = { path = "../ockam_macros", version = "^0.37.0", default-features = false }
ockam_node = { path = "../ockam_node", version = "^0.137.0", default-features = false }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.101.0", default-features = false }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.135.0", default-features = false, optional = true }
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.79.0", default-features = false, optional = true }
ockam_vault = { path = "../ockam_vault", version = "^0.130.0", default-features = false, optional = true }
ockam_abac = { path = "../ockam_abac", version = "^0.79.0", default-features = false, optional = true }
ockam_core = { path = "../ockam_core", version = "^0.125.0", default-features = false }
ockam_identity = { path = "../ockam_identity", version = "^0.133.0", default-features = false }
ockam_macros = { path = "../ockam_macros", version = "^0.38.0", default-features = false }
ockam_node = { path = "../ockam_node", version = "^0.138.0", default-features = false }
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.102.0", default-features = false }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.136.0", default-features = false, optional = true }
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.80.0", default-features = false, optional = true }
ockam_vault = { path = "../ockam_vault", version = "^0.131.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.130.0" }
ockam_vault = { path = "../ockam_vault", version = "^0.131.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.147.0"
ockam = "0.148.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.79.0 - 2025-03-03

### Added

- Implemented control api http server
- Updated dependencies

### Changed

- Bump winnow from 0.6.22 to 0.6.25

## 0.78.0 - 2025-01-20

### 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.78.0"
version = "0.79.0"
authors = ["Ockam Developers"]
categories = ["cryptography"]
edition = "2021"
Expand Down Expand Up @@ -39,15 +39,15 @@ std = [
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.124.0", path = "../ockam_core", default-features = false }
ockam_identity = { version = "0.132.0", path = "../ockam_identity", default-features = false }
ockam_node = { version = "0.137.0", path = "../ockam_node", default-features = false }
ockam_core = { version = "0.125.0", path = "../ockam_core", default-features = false }
ockam_identity = { version = "0.133.0", path = "../ockam_identity", default-features = false }
ockam_node = { version = "0.138.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.93.0", path = "../ockam_executor", default-features = false, optional = true }
ockam_executor = { version = "0.94.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.78.0"
ockam_abac = "0.79.0"
```

## License
Expand Down
45 changes: 45 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,51 @@ 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.91.0 - 2025-03-03

### Added

- Migrate an existing sqlite database to postgres
- Disable --all functionality in reset command if `OCKAM_DEVELOPER` is not set
- In enrollment tickets, derive id from project route's service
- Optimize node creation:
- Add missing branding replacements in ockam_command
- Make portal handshake optional
- Add platinum to `Subscriptions` enum to format it properly
- Implemented control api http server
- Added `OpenAPI` schema for `Control Node API`
- In `Node Control API`, added crud for relay, ticket, and authority members
- Added `self` reference as node name in `Node Control API`
- Node control api: bat tests for all apis and relative fixes
- Add a span exporter using a secure channel
- Integrate the new span exporter with the rest of the application
- Send telemetry data to the project node
- Address review comments
- Don't create a default node for the telemetry secure client
- Node control openapi documentation
- Add support for "launch-configuration" in node's config
- Added the possibility to overwrite http headers in inlets
- Add projects to the output of the status command
- Add connect/disconnect logs to portal worker
- Add log format for user-facing terminal logs
- Updated dependencies

### Changed

- Use localhost constructor for `HostnamePort`
- Bump kafka-protocol from 0.13 to 0.14
- Enable requests to be messages
- Generalize the configuration of a secure client

### Fixed

- Echo service initialization
- Command subprocess read child's pipes instead of copying them
- Node control api fixes and error handling refactorings
- Fix the deserializaton of error messages in responses
- Node control api fixes and minor refactorings
- Protect the start of a grpc forwarder against an incorrect configuration

## 0.90.0 - 2025-01-20

### Added
Expand Down
Loading

0 comments on commit 4aeb001

Please sign in to comment.