diff --git a/Cargo.lock b/Cargo.lock index 227914d5d..59312543f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2198,7 +2198,7 @@ dependencies = [ [[package]] name = "openstack_cli" -version = "0.13.1" +version = "0.13.2" dependencies = [ "assert_cmd", "base64 0.22.1", @@ -2240,7 +2240,7 @@ dependencies = [ [[package]] name = "openstack_sdk" -version = "0.22.1" +version = "0.22.2" dependencies = [ "async-trait", "base64 0.22.1", @@ -2291,7 +2291,7 @@ dependencies = [ [[package]] name = "openstack_tui" -version = "0.13.1" +version = "0.13.2" dependencies = [ "async-trait", "chrono", @@ -2331,7 +2331,7 @@ dependencies = [ [[package]] name = "openstack_types" -version = "0.22.1" +version = "0.22.2" dependencies = [ "chrono", "openstack_sdk", diff --git a/openstack_cli/CHANGELOG.md b/openstack_cli/CHANGELOG.md index 7b9337391..75fb4ba9e 100644 --- a/openstack_cli/CHANGELOG.md +++ b/openstack_cli/CHANGELOG.md @@ -6,6 +6,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.2](https://github.com/gtema/openstack/compare/openstack_cli-v0.13.1...openstack_cli-v0.13.2) - 2025-10-06 + +### Added + +- Refetch object-storage resources ([#1441](https://github.com/gtema/openstack/pull/1441)) +- Extend default cli config for identity operations ([#1440](https://github.com/gtema/openstack/pull/1440)) +- Add keystone_ng idp and mapping ([#1427](https://github.com/gtema/openstack/pull/1427)) +- Implement passkey registration and auth ([#1418](https://github.com/gtema/openstack/pull/1418)) +- Start generating keystone-ng code ([#1415](https://github.com/gtema/openstack/pull/1415)) +- Improve openapi type conversion ([#1412](https://github.com/gtema/openstack/pull/1412)) +- Enable `OS_CLIENT_CONFIG_PATH` environment variable ([#1419](https://github.com/gtema/openstack/pull/1419)) +- Add port parameter to the loadbalancer resource ([#1417](https://github.com/gtema/openstack/pull/1417)) + +### Fixed + +- Fix i32/u32 types in few object-store operations ([#1413](https://github.com/gtema/openstack/pull/1413)) +- Fix the federation auth url for v4 ([#1438](https://github.com/gtema/openstack/pull/1438)) +- Expand `~` in the OS_CLIENT_CONFIG_PATH ([#1435](https://github.com/gtema/openstack/pull/1435)) + +### Other + +- Fix newly identified typos ([#1455](https://github.com/gtema/openstack/pull/1455)) +- Simplify parse_key_val_opt and parse_key_val ([#1425](https://github.com/gtema/openstack/pull/1425)) +- *(deps)* Bump httpmock from 0.7.0 to 0.8.0 ([#1444](https://github.com/gtema/openstack/pull/1444)) + ## [0.13.1](https://github.com/gtema/openstack/compare/openstack_cli-v0.13.0...openstack_cli-v0.13.1) - 2025-09-07 ### Added diff --git a/openstack_cli/Cargo.toml b/openstack_cli/Cargo.toml index d3c0dd25a..84d21703d 100644 --- a/openstack_cli/Cargo.toml +++ b/openstack_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack_cli" -version = "0.13.1" +version = "0.13.2" authors = [ "Artem Goncharov (gtema)", ] diff --git a/openstack_sdk/CHANGELOG.md b/openstack_sdk/CHANGELOG.md index ff4dcb8ff..5a27560c7 100644 --- a/openstack_sdk/CHANGELOG.md +++ b/openstack_sdk/CHANGELOG.md @@ -6,6 +6,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.22.2](https://github.com/gtema/openstack/compare/openstack_sdk-v0.22.1...openstack_sdk-v0.22.2) - 2025-10-06 + +### Added + +- Add keystone_ng idp and mapping ([#1427](https://github.com/gtema/openstack/pull/1427)) +- Implement passkey registration and auth ([#1418](https://github.com/gtema/openstack/pull/1418)) +- Enable `OS_CLIENT_CONFIG_PATH` environment variable ([#1419](https://github.com/gtema/openstack/pull/1419)) +- Add port parameter to the loadbalancer resource ([#1417](https://github.com/gtema/openstack/pull/1417)) +- Start generating keystone-ng code ([#1415](https://github.com/gtema/openstack/pull/1415)) +- Improve openapi type conversion ([#1412](https://github.com/gtema/openstack/pull/1412)) + +### Fixed + +- Fix the federation auth url for v4 ([#1438](https://github.com/gtema/openstack/pull/1438)) +- Expand `~` in the OS_CLIENT_CONFIG_PATH ([#1435](https://github.com/gtema/openstack/pull/1435)) +- Fix i32/u32 types in few object-store operations ([#1413](https://github.com/gtema/openstack/pull/1413)) + +### Other + +- Fix newly identified typos ([#1455](https://github.com/gtema/openstack/pull/1455)) +- *(deps)* Bump httpmock from 0.7.0 to 0.8.0 ([#1444](https://github.com/gtema/openstack/pull/1444)) + ## [0.22.1](https://github.com/gtema/openstack/compare/openstack_sdk-v0.22.0...openstack_sdk-v0.22.1) - 2025-09-07 ### Added diff --git a/openstack_sdk/Cargo.toml b/openstack_sdk/Cargo.toml index 6e5d39e7c..5665c5a40 100644 --- a/openstack_sdk/Cargo.toml +++ b/openstack_sdk/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack_sdk" description = "OpenStack SDK" -version = "0.22.1" +version = "0.22.2" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"] diff --git a/openstack_tui/CHANGELOG.md b/openstack_tui/CHANGELOG.md index 5d57545f3..1f7ecb4ec 100644 --- a/openstack_tui/CHANGELOG.md +++ b/openstack_tui/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.2](https://github.com/gtema/openstack/compare/openstack_tui-v0.13.1...openstack_tui-v0.13.2) - 2025-10-06 + +### Added + +- Enable security group rule deletion ([#1439](https://github.com/gtema/openstack/pull/1439)) +- Improve openapi type conversion ([#1412](https://github.com/gtema/openstack/pull/1412)) + +### Other + +- Fix newly identified typos ([#1455](https://github.com/gtema/openstack/pull/1455)) + ## [0.13.1](https://github.com/gtema/openstack/compare/openstack_tui-v0.13.0...openstack_tui-v0.13.1) - 2025-09-07 ### Other diff --git a/openstack_tui/Cargo.toml b/openstack_tui/Cargo.toml index 3404cb297..fa51e0398 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.13.1" +version = "0.13.2" keywords = ["tui", "openstack"] categories = ["command-line-utilities"] authors = ["Artem Goncharov (gtema)"] diff --git a/openstack_types/CHANGELOG.md b/openstack_types/CHANGELOG.md index 39ab9438a..38f4f8d2c 100644 --- a/openstack_types/CHANGELOG.md +++ b/openstack_types/CHANGELOG.md @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.22.2](https://github.com/gtema/openstack/compare/openstack_types-v0.22.1...openstack_types-v0.22.2) - 2025-10-06 + +### Added + +- Add keystone_ng idp and mapping ([#1427](https://github.com/gtema/openstack/pull/1427)) +- Implement passkey registration and auth ([#1418](https://github.com/gtema/openstack/pull/1418)) +- Add port parameter to the loadbalancer resource ([#1417](https://github.com/gtema/openstack/pull/1417)) +- Default to u32 when maximum is unset ([#1416](https://github.com/gtema/openstack/pull/1416)) +- Start generating keystone-ng code ([#1415](https://github.com/gtema/openstack/pull/1415)) +- Improve openapi type conversion ([#1412](https://github.com/gtema/openstack/pull/1412)) + +### Fixed + +- Fix i32/u32 types in few object-store operations ([#1413](https://github.com/gtema/openstack/pull/1413)) + +### Other + +- Fix newly identified typos ([#1455](https://github.com/gtema/openstack/pull/1455)) +- Add keystone-ng idp and mapping resources metadata ([#1433](https://github.com/gtema/openstack/pull/1433)) + ## [0.22.1](https://github.com/gtema/openstack/compare/openstack_types-v0.22.0...openstack_types-v0.22.1) - 2025-09-07 ### Added diff --git a/openstack_types/Cargo.toml b/openstack_types/Cargo.toml index a73074f76..d09800250 100644 --- a/openstack_types/Cargo.toml +++ b/openstack_types/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack_types" description = "OpenStack API Types" -version = "0.22.1" +version = "0.22.2" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"]