diff --git a/Cargo.lock b/Cargo.lock index 49c5bdb1d..413c404cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2210,7 +2210,7 @@ dependencies = [ [[package]] name = "openstack_cli" -version = "0.13.1" +version = "0.13.2" dependencies = [ "assert_cmd", "base64 0.22.1", @@ -2253,7 +2253,7 @@ dependencies = [ [[package]] name = "openstack_sdk" -version = "0.22.1" +version = "0.22.2" dependencies = [ "async-trait", "base64 0.22.1", @@ -2304,7 +2304,7 @@ dependencies = [ [[package]] name = "openstack_tui" -version = "0.13.1" +version = "0.13.2" dependencies = [ "async-trait", "chrono", @@ -2345,7 +2345,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..ea943e61f 100644 --- a/openstack_cli/CHANGELOG.md +++ b/openstack_cli/CHANGELOG.md @@ -6,6 +6,40 @@ 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-14 + +### Added + +- Add support for token restrictions ([#1458](https://github.com/gtema/openstack/pull/1458)) +- Implement JWT login ([#1443](https://github.com/gtema/openstack/pull/1443)) +- 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)) +- Add create security group rule support ([#1470](https://github.com/gtema/openstack/pull/1470)) +- Prepare generation of create types for tui ([#1468](https://github.com/gtema/openstack/pull/1468)) +- Add socks feature to reqwest ([#1460](https://github.com/gtema/openstack/pull/1460)) +- Add connection pooling in openstack_sdk ([#1459](https://github.com/gtema/openstack/pull/1459)) +- 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 + +- *(deps)* update rust crate md5 to ^0.8.0 ([#1465](https://github.com/gtema/openstack/pull/1465)) +- Update image roundtrip test ([#1469](https://github.com/gtema/openstack/pull/1469)) +- *(test)* Rework image upload roundtrip test ([#1463](https://github.com/gtema/openstack/pull/1463)) +- 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 ae41bf985..c8ac14ad9 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..cdb1f483b 100644 --- a/openstack_sdk/CHANGELOG.md +++ b/openstack_sdk/CHANGELOG.md @@ -6,6 +6,34 @@ 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-14 + +### Added + +- Add create security group rule support ([#1470](https://github.com/gtema/openstack/pull/1470)) +- Prepare generation of create types for tui ([#1468](https://github.com/gtema/openstack/pull/1468)) +- Add socks feature to reqwest ([#1460](https://github.com/gtema/openstack/pull/1460)) +- Add connection pooling in openstack_sdk ([#1459](https://github.com/gtema/openstack/pull/1459)) +- Add support for token restrictions ([#1458](https://github.com/gtema/openstack/pull/1458)) +- Implement JWT login ([#1443](https://github.com/gtema/openstack/pull/1443)) +- 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 faabfd1b1..1c40314a2 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..483921163 100644 --- a/openstack_tui/CHANGELOG.md +++ b/openstack_tui/CHANGELOG.md @@ -6,6 +6,20 @@ 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-14 + +### Added + +- Add create security group rule support ([#1470](https://github.com/gtema/openstack/pull/1470)) +- Prepare generation of create types for tui ([#1468](https://github.com/gtema/openstack/pull/1468)) +- Add support for token restrictions ([#1458](https://github.com/gtema/openstack/pull/1458)) +- 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 fef5ebf6f..15feb4c43 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..a46e58100 100644 --- a/openstack_types/CHANGELOG.md +++ b/openstack_types/CHANGELOG.md @@ -7,6 +7,29 @@ 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-14 + +### Added + +- Prepare generation of create types for tui ([#1468](https://github.com/gtema/openstack/pull/1468)) +- Add support for token restrictions ([#1458](https://github.com/gtema/openstack/pull/1458)) +- 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 + +- Patch the neutron.network.l2_adjacency type ([#1476](https://github.com/gtema/openstack/pull/1476)) +- 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)"]