Skip to content
Closed
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
6 changes: 3 additions & 3 deletions Cargo.lock

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

23 changes: 23 additions & 0 deletions openstack_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.6](https://github.com/gtema/openstack/compare/openstack_cli-v0.9.5...openstack_cli-v0.9.6) - 2025-03-07

### Added

- Actually start building magnum code (#1039)
- Fix network external_gateway_info schema (#1038)
- Initialize magnum service structure (#1033)
- Add required to compute service responses (#1011)
- BS volume bootable parameter is a string (#1010)
- New generated content (#1009)
- Ensure generated TUI responses are pub (#1006)
- Drop role assignment schema hardcode (#1005)
- Return readable error instead of crashing (#1002)
- Adapt clippy run to include bin targets (#948)

### Fixed

- Use '--file' instead of '-f' in the image functest (#1001)

### Other

- Make cli modules and commands public (#956)

## [0.9.5](https://github.com/gtema/openstack/compare/openstack_cli-v0.9.4...openstack_cli-v0.9.5) - 2025-02-02

### Added
Expand Down
4 changes: 2 additions & 2 deletions openstack_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openstack_cli"
version = "0.9.5"
version = "0.9.6"
authors = [
"Artem Goncharov (gtema)",
]
Expand Down Expand Up @@ -65,7 +65,7 @@ dialoguer = { workspace = true, features=["fuzzy-select"] }
eyre = { workspace = true }
http = { workspace = true }
json-patch = { workspace = true }
openstack_sdk = { path="../openstack_sdk", version = "^0.18", default-features = false, features = ["async", "identity"] }
openstack_sdk = { path="../openstack_sdk", version = "^0.19", default-features = false, features = ["async", "identity"] }
indicatif = "^0.17"
regex = { workspace = true }
reqwest = { workspace = true }
Expand Down
11 changes: 11 additions & 0 deletions openstack_sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.19.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.18.0...openstack_sdk-v0.19.0) - 2025-03-07

### Added

- Actually start building magnum code (#1039)
- Fix network external_gateway_info schema (#1038)
- Initialize magnum service structure (#1033)
- New generated content (#1009)
- Ensure generated TUI responses are pub (#1006)
- Drop role assignment schema hardcode (#1005)

## [0.18.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.17.0...openstack_sdk-v0.18.0) - 2025-02-02

### Added
Expand Down
2 changes: 1 addition & 1 deletion openstack_sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "openstack_sdk"
description = "OpenStack SDK"
version = "0.18.0"
version = "0.19.0"
keywords = ["api", "openstack"]
categories = ["api-bindings"]
authors = ["Artem Goncharov (gtema)"]
Expand Down
22 changes: 22 additions & 0 deletions openstack_tui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.6](https://github.com/gtema/openstack/compare/openstack_tui-v0.9.5...openstack_tui-v0.9.6) - 2025-03-07

### Added

- Add required to compute service responses (#1011)
- BS volume bootable parameter is a string (#1010)
- New generated content (#1009)
- Ensure generated TUI responses are pub (#1006)
- Drop role assignment schema hardcode (#1005)
- Reconnect when token expired (#989)
- Send response action also for delete events (#954)
- Adapt clippy run to include bin targets (#948)

### Fixed

- Discover block-storage endpoint in the TUI (#992)

### Other

- *(deps)* Bump strum from 0.26.3 to 0.27.0 (#965)
- Implement user deletion (#952)

## [0.9.5](https://github.com/gtema/openstack/compare/openstack_tui-v0.9.4...openstack_tui-v0.9.5) - 2025-02-02

### Added
Expand Down
4 changes: 2 additions & 2 deletions openstack_tui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "openstack_tui"
description = "OpenStack Terminal User interface"
version = "0.9.5"
version = "0.9.6"
keywords = ["tui", "openstack"]
categories = ["command-line-utilities"]
authors = ["Artem Goncharov (gtema)"]
Expand Down Expand Up @@ -32,7 +32,7 @@ futures = { workspace = true }
itertools = { workspace = true }
json5 = "^0.4"
lazy_static = "^1.5"
openstack_sdk = { path = "../openstack_sdk", version = "^0.18", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }
openstack_sdk = { path = "../openstack_sdk", version = "^0.19", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }
pretty_assertions = "^1.4"
ratatui = { version = "^0.29", features = ["serde", "macros"] }
serde = { workspace = true }
Expand Down