diff --git a/Cargo.lock b/Cargo.lock index 7e012f271..a33c0c2e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2749,7 +2749,7 @@ dependencies = [ [[package]] name = "openstack-sdk-auth-applicationcredential" -version = "0.1.0" +version = "0.22.5" dependencies = [ "async-trait", "bytes", @@ -2790,7 +2790,7 @@ dependencies = [ [[package]] name = "openstack-sdk-auth-federation" -version = "0.1.0" +version = "0.22.5" dependencies = [ "async-trait", "bytes", @@ -2823,7 +2823,7 @@ dependencies = [ [[package]] name = "openstack-sdk-auth-jwt" -version = "0.1.0" +version = "0.22.5" dependencies = [ "async-trait", "derive_builder", @@ -2862,7 +2862,7 @@ dependencies = [ [[package]] name = "openstack-sdk-auth-oidcaccesstoken" -version = "0.1.0" +version = "0.22.5" dependencies = [ "async-trait", "inventory", @@ -2880,7 +2880,7 @@ dependencies = [ [[package]] name = "openstack-sdk-auth-passkey" -version = "0.1.0" +version = "0.22.5" dependencies = [ "async-trait", "base64 0.22.1", @@ -2984,7 +2984,7 @@ dependencies = [ [[package]] name = "openstack-sdk-auth-websso" -version = "0.1.0" +version = "0.22.5" dependencies = [ "async-trait", "bytes", @@ -3017,7 +3017,7 @@ dependencies = [ [[package]] name = "openstack-sdk-core" -version = "0.22.5" +version = "0.22.6" dependencies = [ "async-trait", "base64 0.22.1", @@ -3053,7 +3053,7 @@ dependencies = [ [[package]] name = "openstack_cli" -version = "0.13.5" +version = "0.13.6" dependencies = [ "assert_cmd", "base64 0.22.1", @@ -3097,7 +3097,7 @@ dependencies = [ [[package]] name = "openstack_sdk" -version = "0.22.5" +version = "0.22.6" dependencies = [ "async-trait", "base64 0.22.1", @@ -3144,7 +3144,7 @@ dependencies = [ [[package]] name = "openstack_tui" -version = "0.13.5" +version = "0.13.6" dependencies = [ "async-trait", "chrono", @@ -3184,7 +3184,7 @@ dependencies = [ [[package]] name = "openstack_types" -version = "0.22.5" +version = "0.22.6" dependencies = [ "chrono", "openstack_sdk", diff --git a/auth-application-credential/CHANGELOG.md b/auth-application-credential/CHANGELOG.md new file mode 100644 index 000000000..87c98c41c --- /dev/null +++ b/auth-application-credential/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.22.5](https://github.com/gtema/openstack/compare/openstack-sdk-auth-applicationcredential-v0.1.0...openstack-sdk-auth-applicationcredential-v0.22.5) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) + +### Other + +- Trait-ize auth plugins ([#1668](https://github.com/gtema/openstack/pull/1668)) diff --git a/auth-application-credential/Cargo.toml b/auth-application-credential/Cargo.toml index 1e2f8c497..3f8432cd9 100644 --- a/auth-application-credential/Cargo.toml +++ b/auth-application-credential/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack-sdk-auth-applicationcredential" -version = "0.1.0" +version = "0.22.5" license.workspace = true edition.workspace = true authors.workspace = true diff --git a/auth-federation/CHANGELOG.md b/auth-federation/CHANGELOG.md new file mode 100644 index 000000000..406ddb84e --- /dev/null +++ b/auth-federation/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.22.5](https://github.com/gtema/openstack/compare/openstack-sdk-auth-federation-v0.1.0...openstack-sdk-auth-federation-v0.22.5) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) + +### Other + +- Trait-ize auth plugins ([#1668](https://github.com/gtema/openstack/pull/1668)) diff --git a/auth-federation/Cargo.toml b/auth-federation/Cargo.toml index 41caf27f1..6b671e8c0 100644 --- a/auth-federation/Cargo.toml +++ b/auth-federation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack-sdk-auth-federation" -version = "0.1.0" +version = "0.22.5" license.workspace = true edition.workspace = true authors.workspace = true diff --git a/auth-jwt/CHANGELOG.md b/auth-jwt/CHANGELOG.md new file mode 100644 index 000000000..31abb7cdf --- /dev/null +++ b/auth-jwt/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.22.5](https://github.com/gtema/openstack/compare/openstack-sdk-auth-jwt-v0.1.0...openstack-sdk-auth-jwt-v0.22.5) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) + +### Other + +- Trait-ize auth plugins ([#1668](https://github.com/gtema/openstack/pull/1668)) diff --git a/auth-jwt/Cargo.toml b/auth-jwt/Cargo.toml index a1c361f72..928b0e3f3 100644 --- a/auth-jwt/Cargo.toml +++ b/auth-jwt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack-sdk-auth-jwt" -version = "0.1.0" +version = "0.22.5" license.workspace = true edition.workspace = true authors.workspace = true diff --git a/auth-multifactor/CHANGELOG.md b/auth-multifactor/CHANGELOG.md new file mode 100644 index 000000000..65d1eec13 --- /dev/null +++ b/auth-multifactor/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.1.0](https://github.com/gtema/openstack/releases/tag/openstack-sdk-auth-multifactor-v0.1.0) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) diff --git a/auth-oidcaccesstoken/CHANGELOG.md b/auth-oidcaccesstoken/CHANGELOG.md new file mode 100644 index 000000000..267aa5d1a --- /dev/null +++ b/auth-oidcaccesstoken/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.22.5](https://github.com/gtema/openstack/compare/openstack-sdk-auth-oidcaccesstoken-v0.1.0...openstack-sdk-auth-oidcaccesstoken-v0.22.5) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) + +### Other + +- Trait-ize auth plugins ([#1668](https://github.com/gtema/openstack/pull/1668)) diff --git a/auth-oidcaccesstoken/Cargo.toml b/auth-oidcaccesstoken/Cargo.toml index 67eb93b2d..7e62c3130 100644 --- a/auth-oidcaccesstoken/Cargo.toml +++ b/auth-oidcaccesstoken/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack-sdk-auth-oidcaccesstoken" -version = "0.1.0" +version = "0.22.5" license.workspace = true edition.workspace = true authors.workspace = true diff --git a/auth-passkey/CHANGELOG.md b/auth-passkey/CHANGELOG.md new file mode 100644 index 000000000..af8dac0c1 --- /dev/null +++ b/auth-passkey/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.22.5](https://github.com/gtema/openstack/compare/openstack-sdk-auth-passkey-v0.1.0...openstack-sdk-auth-passkey-v0.22.5) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) + +### Other + +- Trait-ize auth plugins ([#1668](https://github.com/gtema/openstack/pull/1668)) diff --git a/auth-passkey/Cargo.toml b/auth-passkey/Cargo.toml index 199458557..fd088082c 100644 --- a/auth-passkey/Cargo.toml +++ b/auth-passkey/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack-sdk-auth-passkey" -version = "0.1.0" +version = "0.22.5" license.workspace = true edition.workspace = true authors.workspace = true diff --git a/auth-password/CHANGELOG.md b/auth-password/CHANGELOG.md new file mode 100644 index 000000000..53fef605a --- /dev/null +++ b/auth-password/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.1.0](https://github.com/gtema/openstack/releases/tag/openstack-sdk-auth-password-v0.1.0) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) diff --git a/auth-receipt/CHANGELOG.md b/auth-receipt/CHANGELOG.md new file mode 100644 index 000000000..98afc6e51 --- /dev/null +++ b/auth-receipt/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.1.0](https://github.com/gtema/openstack/releases/tag/openstack-sdk-auth-receipt-v0.1.0) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) diff --git a/auth-token/CHANGELOG.md b/auth-token/CHANGELOG.md new file mode 100644 index 000000000..520bff44e --- /dev/null +++ b/auth-token/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.1.0](https://github.com/gtema/openstack/releases/tag/openstack-sdk-auth-token-v0.1.0) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) diff --git a/auth-totp/CHANGELOG.md b/auth-totp/CHANGELOG.md new file mode 100644 index 000000000..e1dba758c --- /dev/null +++ b/auth-totp/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.1.0](https://github.com/gtema/openstack/releases/tag/openstack-sdk-auth-totp-v0.1.0) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) diff --git a/auth-websso/CHANGELOG.md b/auth-websso/CHANGELOG.md new file mode 100644 index 000000000..27b30f4d8 --- /dev/null +++ b/auth-websso/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.22.5](https://github.com/gtema/openstack/compare/openstack-sdk-auth-websso-v0.1.0...openstack-sdk-auth-websso-v0.22.5) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) + +### Other + +- Trait-ize auth plugins ([#1668](https://github.com/gtema/openstack/pull/1668)) diff --git a/auth-websso/Cargo.toml b/auth-websso/Cargo.toml index 56552e053..42b2687bd 100644 --- a/auth-websso/Cargo.toml +++ b/auth-websso/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack-sdk-auth-websso" -version = "0.1.0" +version = "0.22.5" license.workspace = true edition.workspace = true authors.workspace = true diff --git a/openstack_cli/CHANGELOG.md b/openstack_cli/CHANGELOG.md index 10c6e1957..d08ea029a 100644 --- a/openstack_cli/CHANGELOG.md +++ b/openstack_cli/CHANGELOG.md @@ -6,6 +6,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.6](https://github.com/gtema/openstack/compare/openstack_cli-v0.13.5...openstack_cli-v0.13.6) - 2026-03-25 + +### Added + +- Sync changes from codegenerator ([#1662](https://github.com/gtema/openstack/pull/1662)) +- Update to 2024 rust edition ([#1658](https://github.com/gtema/openstack/pull/1658)) +- Add dynamic completions in clap library ([#1626](https://github.com/gtema/openstack/pull/1626)) +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) +- Split openstack_sdk crate ([#1655](https://github.com/gtema/openstack/pull/1655)) + +### Other + +- *(deps)* Bump assert_cmd from 2.1.2 to 2.2.0 ([#1685](https://github.com/gtema/openstack/pull/1685)) +- Trait-ize auth plugins ([#1668](https://github.com/gtema/openstack/pull/1668)) +- *(deps)* Upgrade dependencies ([#1669](https://github.com/gtema/openstack/pull/1669)) +- *(deps)* Bump rand from 0.9.2 to 0.10.0 ([#1644](https://github.com/gtema/openstack/pull/1644)) +- Add trailing punctuation ([#1623](https://github.com/gtema/openstack/pull/1623)) +- Move client back to `openstack_sdk` ([#1670](https://github.com/gtema/openstack/pull/1670)) +- Changes from Keystone webauthn api tests ([#1615](https://github.com/gtema/openstack/pull/1615)) + ## [0.13.5](https://github.com/gtema/openstack/compare/openstack_cli-v0.13.4...openstack_cli-v0.13.5) - 2026-01-17 ### Fixed diff --git a/openstack_cli/Cargo.toml b/openstack_cli/Cargo.toml index c9862b5b9..e92aa0a74 100644 --- a/openstack_cli/Cargo.toml +++ b/openstack_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openstack_cli" -version = "0.13.5" +version = "0.13.6" authors = [ "Artem Goncharov (gtema)", ] diff --git a/openstack_sdk/CHANGELOG.md b/openstack_sdk/CHANGELOG.md index b07e9593a..82eb634e8 100644 --- a/openstack_sdk/CHANGELOG.md +++ b/openstack_sdk/CHANGELOG.md @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.22.6](https://github.com/gtema/openstack/compare/openstack_sdk-v0.22.5...openstack_sdk-v0.22.6) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) +- Sync changes from codegenerator ([#1662](https://github.com/gtema/openstack/pull/1662)) +- Update to 2024 rust edition ([#1658](https://github.com/gtema/openstack/pull/1658)) +- Split openstack_sdk crate ([#1655](https://github.com/gtema/openstack/pull/1655)) + +### Other + +- Move client back to `openstack_sdk` ([#1670](https://github.com/gtema/openstack/pull/1670)) +- Trait-ize auth plugins ([#1668](https://github.com/gtema/openstack/pull/1668)) +- Add trailing punctuation ([#1623](https://github.com/gtema/openstack/pull/1623)) +- Changes from Keystone webauthn api tests ([#1615](https://github.com/gtema/openstack/pull/1615)) + ## [0.22.5](https://github.com/gtema/openstack/compare/openstack_sdk-v0.22.4...openstack_sdk-v0.22.5) - 2026-01-17 ### Fixed diff --git a/openstack_sdk/Cargo.toml b/openstack_sdk/Cargo.toml index f38b10680..3aab4251d 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.5" +version = "0.22.6" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"] @@ -57,17 +57,17 @@ futures-util.workspace = true http.workspace = true json-patch.workspace = true inventory.workspace = true -openstack-sdk-auth-applicationcredential = { version = "0.1", path = "../auth-application-credential/" } +openstack-sdk-auth-applicationcredential = { version = "0.22", path = "../auth-application-credential/" } openstack-sdk-auth-core = { version = "0.22", path = "../auth-core/" } -openstack-sdk-auth-federation = { version = "0.1", path = "../auth-federation/", optional = true } -openstack-sdk-auth-jwt = { version = "0.1", path = "../auth-jwt/", optional = true } -openstack-sdk-auth-oidcaccesstoken = { version = "0.1", path = "../auth-oidcaccesstoken/" } -openstack-sdk-auth-passkey = { version = "0.1", path = "../auth-passkey/", optional = true } +openstack-sdk-auth-federation = { version = "0.22", path = "../auth-federation/", optional = true } +openstack-sdk-auth-jwt = { version = "0.22", path = "../auth-jwt/", optional = true } +openstack-sdk-auth-oidcaccesstoken = { version = "0.22", path = "../auth-oidcaccesstoken/" } +openstack-sdk-auth-passkey = { version = "0.22", path = "../auth-passkey/", optional = true } openstack-sdk-auth-password = { version = "0.1", path = "../auth-password/" } openstack-sdk-auth-receipt = { version = "0.1", path = "../auth-receipt/" } openstack-sdk-auth-token = { version = "0.1", path = "../auth-token/" } openstack-sdk-auth-totp = { version = "0.1", path = "../auth-totp/" } -openstack-sdk-auth-websso = { version = "0.1", path = "../auth-websso/" } +openstack-sdk-auth-websso = { version = "0.22", path = "../auth-websso/" } openstack-sdk-core = { path = "../sdk-core/", version = "^0.22" } reqwest = { workspace = true, features = ["gzip", "deflate", "form", "json", "http2", "socks", "system-proxy"] } diff --git a/openstack_tui/CHANGELOG.md b/openstack_tui/CHANGELOG.md index 071562e1c..e0a7f1ba1 100644 --- a/openstack_tui/CHANGELOG.md +++ b/openstack_tui/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.6](https://github.com/gtema/openstack/compare/openstack_tui-v0.13.5...openstack_tui-v0.13.6) - 2026-03-25 + +### Added + +- Sync changes from codegenerator ([#1662](https://github.com/gtema/openstack/pull/1662)) +- Update to 2024 rust edition ([#1658](https://github.com/gtema/openstack/pull/1658)) + +### Other + +- *(deps)* Bump strum from 0.27.2 to 0.28.0 ([#1652](https://github.com/gtema/openstack/pull/1652)) +- Adapt to the newer release of typos ([#1639](https://github.com/gtema/openstack/pull/1639)) + ## [0.13.4](https://github.com/gtema/openstack/compare/openstack_tui-v0.13.3...openstack_tui-v0.13.4) - 2026-01-16 ### Other diff --git a/openstack_tui/Cargo.toml b/openstack_tui/Cargo.toml index 5c8f92432..9fed0cd67 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.5" +version = "0.13.6" keywords = ["tui", "openstack"] categories = ["command-line-utilities"] authors = ["Artem Goncharov (gtema)"] diff --git a/openstack_types/CHANGELOG.md b/openstack_types/CHANGELOG.md index dac3eb320..6461fd9e9 100644 --- a/openstack_types/CHANGELOG.md +++ b/openstack_types/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.22.6](https://github.com/gtema/openstack/compare/openstack_types-v0.22.5...openstack_types-v0.22.6) - 2026-03-25 + +### Added + +- Sync changes from codegenerator ([#1662](https://github.com/gtema/openstack/pull/1662)) +- Update to 2024 rust edition ([#1658](https://github.com/gtema/openstack/pull/1658)) + +### Other + +- *(deps)* Bump uuid from 1.21.0 to 1.22.0 ([#1674](https://github.com/gtema/openstack/pull/1674)) +- *(deps)* Bump uuid from 1.20.0 to 1.21.0 ([#1648](https://github.com/gtema/openstack/pull/1648)) +- *(deps)* Bump uuid from 1.19.0 to 1.20.0 ([#1627](https://github.com/gtema/openstack/pull/1627)) +- Add trailing punctuation ([#1623](https://github.com/gtema/openstack/pull/1623)) + ## [0.22.4](https://github.com/gtema/openstack/compare/openstack_types-v0.22.3...openstack_types-v0.22.4) - 2026-01-16 ### Added diff --git a/openstack_types/Cargo.toml b/openstack_types/Cargo.toml index 42ac48069..f8851b3ae 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.5" +version = "0.22.6" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"] diff --git a/sdk-core/CHANGELOG.md b/sdk-core/CHANGELOG.md index b07e9593a..970cb0143 100644 --- a/sdk-core/CHANGELOG.md +++ b/sdk-core/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.22.6](https://github.com/gtema/openstack/compare/openstack-sdk-core-v0.22.5...openstack-sdk-core-v0.22.6) - 2026-03-25 + +### Added + +- Split out remaining auth methods to plugins ([#1680](https://github.com/gtema/openstack/pull/1680)) + +### Other + +- Move client back to `openstack_sdk` ([#1670](https://github.com/gtema/openstack/pull/1670)) +- Trait-ize auth plugins ([#1668](https://github.com/gtema/openstack/pull/1668)) + ## [0.22.5](https://github.com/gtema/openstack/compare/openstack_sdk-v0.22.4...openstack_sdk-v0.22.5) - 2026-01-17 ### Fixed diff --git a/sdk-core/Cargo.toml b/sdk-core/Cargo.toml index cfe485626..782f6bdad 100644 --- a/sdk-core/Cargo.toml +++ b/sdk-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "openstack-sdk-core" description = "OpenStack SDK core" -version = "0.22.5" +version = "0.22.6" keywords = ["api", "openstack"] categories = ["api-bindings"] authors = ["Artem Goncharov (gtema)"]