diff --git a/Cargo.lock b/Cargo.lock index 041c186ec..dd1d32640 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1881,7 +1881,7 @@ dependencies = [ [[package]] name = "openstack_cli" -version = "0.7.0" +version = "0.7.1" dependencies = [ "assert_cmd", "better-panic", @@ -1916,7 +1916,7 @@ dependencies = [ [[package]] name = "openstack_sdk" -version = "0.10.0" +version = "0.11.0" dependencies = [ "async-trait", "bincode", @@ -1961,7 +1961,7 @@ dependencies = [ [[package]] name = "openstack_tui" -version = "0.1.0" +version = "0.1.1" dependencies = [ "better-panic", "clap", diff --git a/openstack_cli/CHANGELOG.md b/openstack_cli/CHANGELOG.md index ee0e3af0d..0acccd369 100644 --- a/openstack_cli/CHANGELOG.md +++ b/openstack_cli/CHANGELOG.md @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1](https://github.com/gtema/openstack/compare/openstack_cli-v0.7.0...openstack_cli-v0.7.1) - 2024-09-13 + +### Added + +- *(cli)* Interactive cloud connection ([#532](https://github.com/gtema/openstack/pull/532)) +- *(cli)* Add identity.credential commands ([#515](https://github.com/gtema/openstack/pull/515)) +- *(cli)* Enable identity.auth commands ([#513](https://github.com/gtema/openstack/pull/513)) +- Add resource link to domain_id path parameter ([#509](https://github.com/gtema/openstack/pull/509)) +- Remove few panics in auth handling ([#508](https://github.com/gtema/openstack/pull/508)) +- Add resource link in path parameters ([#507](https://github.com/gtema/openstack/pull/507)) +- Add few exceptions for cli ([#506](https://github.com/gtema/openstack/pull/506)) +- *(sdk)* Add find_by_name method ([#505](https://github.com/gtema/openstack/pull/505)) + ## [0.7.0](https://github.com/gtema/openstack/compare/openstack_cli-v0.6.5...openstack_cli-v0.7.0) - 2024-08-23 ### Added diff --git a/openstack_cli/Cargo.toml b/openstack_cli/Cargo.toml index c564c23b2..383244460 100644 --- a/openstack_cli/Cargo.toml +++ b/openstack_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack_cli" -version = "0.7.0" +version = "0.7.1" authors = [ "Artem Goncharov (gtema)", ] @@ -52,7 +52,7 @@ eyre = { version = "^0.6" } http = { workspace = true } human-panic = { workspace = true } json-patch = { workspace = true } -openstack_sdk = { path="../openstack_sdk", version = "^0.10", default-features = false, features = ["async", "identity"] } +openstack_sdk = { path="../openstack_sdk", version = "^0.11", default-features = false, features = ["async", "identity"] } indicatif = "^0.17" regex = "^1.10" reqwest = { workspace = true } diff --git a/openstack_sdk/CHANGELOG.md b/openstack_sdk/CHANGELOG.md index 5ce76f303..00c807897 100644 --- a/openstack_sdk/CHANGELOG.md +++ b/openstack_sdk/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.10.0...openstack_sdk-v0.11.0) - 2024-09-13 + +### Added + +- *(cli)* Interactive cloud connection ([#532](https://github.com/gtema/openstack/pull/532)) +- Add resource link in path parameters ([#507](https://github.com/gtema/openstack/pull/507)) +- *(sdk)* Add find_by_name method ([#505](https://github.com/gtema/openstack/pull/505)) + ## [0.10.0](https://github.com/gtema/openstack/compare/openstack_sdk-v0.9.0...openstack_sdk-v0.10.0) - 2024-08-23 ### Added diff --git a/openstack_sdk/Cargo.toml b/openstack_sdk/Cargo.toml index 5c20bee92..1cd7b7425 100644 --- a/openstack_sdk/Cargo.toml +++ b/openstack_sdk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack_sdk" description = "OpenStack SDK" -version = "0.10.0" +version = "0.11.0" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"] diff --git a/openstack_tui/CHANGELOG.md b/openstack_tui/CHANGELOG.md index 12361c775..032f3692e 100644 --- a/openstack_tui/CHANGELOG.md +++ b/openstack_tui/CHANGELOG.md @@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/gtema/openstack/compare/openstack_tui-v0.1.0...openstack_tui-v0.1.1) - 2024-09-13 + +### Added + +- *(tui)* De-duplicate describe view ([#530](https://github.com/gtema/openstack/pull/530)) +- *(tui)* Add action to show server console output ([#529](https://github.com/gtema/openstack/pull/529)) +- *(tui)* Add scrolling in the resource describe ([#528](https://github.com/gtema/openstack/pull/528)) +- *(tui)* Allow starting tui without selected cloud ([#527](https://github.com/gtema/openstack/pull/527)) +- Drop vergen from ostui ([#512](https://github.com/gtema/openstack/pull/512)) + +### Fixed + +- Correct autoreplaced `typos` names ([#485](https://github.com/gtema/openstack/pull/485)) + +### Other + +- Update dependencies ([#499](https://github.com/gtema/openstack/pull/499)) + ## [0.1.0](https://github.com/gtema/openstack/releases/tag/openstack_tui-v0.1.0) - 2024-08-23 ### Added diff --git a/openstack_tui/Cargo.toml b/openstack_tui/Cargo.toml index 767bc312c..7ab22d491 100644 --- a/openstack_tui/Cargo.toml +++ b/openstack_tui/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack_tui" description = "OpenStack Terminal User interface" -version = "0.1.0" +version = "0.1.1" keywords = ["tui", "openstack"] categories = ["command-line-utilities"] authors = ["Artem Goncharov (gtema)"] @@ -29,7 +29,7 @@ human-panic = { workspace = true } itertools = { workspace = true } json5 = "^0.4" lazy_static = "^1.5" -openstack_sdk = { path = "../openstack_sdk", version = "^0.10", default-features = false, features = ["async", "block_storage", "compute", "identity", "image", "network"] } +openstack_sdk = { path = "../openstack_sdk", version = "^0.11", default-features = false, features = ["async", "block_storage", "compute", "identity", "image", "network"] } pretty_assertions = "^1.4" ratatui = { version = "^0.28", features = ["serde", "macros"] } serde = { workspace = true }