Skip to content

Commit 0518d86

Browse files
chore: release
1 parent 7e754c5 commit 0518d86

File tree

9 files changed

+94
-8
lines changed

9 files changed

+94
-8
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openstack_cli/CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.13.2](https://github.com/gtema/openstack/compare/openstack_cli-v0.13.1...openstack_cli-v0.13.2) - 2025-10-09
10+
11+
### Added
12+
13+
- Add support for token restrictions ([#1458](https://github.com/gtema/openstack/pull/1458))
14+
- Implement JWT login ([#1443](https://github.com/gtema/openstack/pull/1443))
15+
- Refetch object-storage resources ([#1441](https://github.com/gtema/openstack/pull/1441))
16+
- Extend default cli config for identity operations ([#1440](https://github.com/gtema/openstack/pull/1440))
17+
- Add keystone_ng idp and mapping ([#1427](https://github.com/gtema/openstack/pull/1427))
18+
- Implement passkey registration and auth ([#1418](https://github.com/gtema/openstack/pull/1418))
19+
- Start generating keystone-ng code ([#1415](https://github.com/gtema/openstack/pull/1415))
20+
- Improve openapi type conversion ([#1412](https://github.com/gtema/openstack/pull/1412))
21+
- Add connection pooling in openstack_sdk ([#1459](https://github.com/gtema/openstack/pull/1459))
22+
- Enable `OS_CLIENT_CONFIG_PATH` environment variable ([#1419](https://github.com/gtema/openstack/pull/1419))
23+
- Add port parameter to the loadbalancer resource ([#1417](https://github.com/gtema/openstack/pull/1417))
24+
25+
### Fixed
26+
27+
- Fix i32/u32 types in few object-store operations ([#1413](https://github.com/gtema/openstack/pull/1413))
28+
- Fix the federation auth url for v4 ([#1438](https://github.com/gtema/openstack/pull/1438))
29+
- Expand `~` in the OS_CLIENT_CONFIG_PATH ([#1435](https://github.com/gtema/openstack/pull/1435))
30+
31+
### Other
32+
33+
- Fix newly identified typos ([#1455](https://github.com/gtema/openstack/pull/1455))
34+
- Simplify parse_key_val_opt and parse_key_val ([#1425](https://github.com/gtema/openstack/pull/1425))
35+
- *(deps)* Bump httpmock from 0.7.0 to 0.8.0 ([#1444](https://github.com/gtema/openstack/pull/1444))
36+
937
## [0.13.1](https://github.com/gtema/openstack/compare/openstack_cli-v0.13.0...openstack_cli-v0.13.1) - 2025-09-07
1038

1139
### Added

openstack_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openstack_cli"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = [
55
"Artem Goncharov (gtema)",
66
]

openstack_sdk/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.22.2](https://github.com/gtema/openstack/compare/openstack_sdk-v0.22.1...openstack_sdk-v0.22.2) - 2025-10-09
10+
11+
### Added
12+
13+
- Add connection pooling in openstack_sdk ([#1459](https://github.com/gtema/openstack/pull/1459))
14+
- Add support for token restrictions ([#1458](https://github.com/gtema/openstack/pull/1458))
15+
- Implement JWT login ([#1443](https://github.com/gtema/openstack/pull/1443))
16+
- Add keystone_ng idp and mapping ([#1427](https://github.com/gtema/openstack/pull/1427))
17+
- Implement passkey registration and auth ([#1418](https://github.com/gtema/openstack/pull/1418))
18+
- Enable `OS_CLIENT_CONFIG_PATH` environment variable ([#1419](https://github.com/gtema/openstack/pull/1419))
19+
- Add port parameter to the loadbalancer resource ([#1417](https://github.com/gtema/openstack/pull/1417))
20+
- Start generating keystone-ng code ([#1415](https://github.com/gtema/openstack/pull/1415))
21+
- Improve openapi type conversion ([#1412](https://github.com/gtema/openstack/pull/1412))
22+
23+
### Fixed
24+
25+
- Fix the federation auth url for v4 ([#1438](https://github.com/gtema/openstack/pull/1438))
26+
- Expand `~` in the OS_CLIENT_CONFIG_PATH ([#1435](https://github.com/gtema/openstack/pull/1435))
27+
- Fix i32/u32 types in few object-store operations ([#1413](https://github.com/gtema/openstack/pull/1413))
28+
29+
### Other
30+
31+
- Fix newly identified typos ([#1455](https://github.com/gtema/openstack/pull/1455))
32+
- *(deps)* Bump httpmock from 0.7.0 to 0.8.0 ([#1444](https://github.com/gtema/openstack/pull/1444))
33+
934
## [0.22.1](https://github.com/gtema/openstack/compare/openstack_sdk-v0.22.0...openstack_sdk-v0.22.1) - 2025-09-07
1035

1136
### Added

openstack_sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "openstack_sdk"
33
description = "OpenStack SDK"
4-
version = "0.22.1"
4+
version = "0.22.2"
55
keywords = ["api", "openstack"]
66
categories = ["api-bindings"]
77
authors = ["Artem Goncharov (gtema)"]

openstack_tui/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.13.2](https://github.com/gtema/openstack/compare/openstack_tui-v0.13.1...openstack_tui-v0.13.2) - 2025-10-09
10+
11+
### Added
12+
13+
- Add support for token restrictions ([#1458](https://github.com/gtema/openstack/pull/1458))
14+
- Enable security group rule deletion ([#1439](https://github.com/gtema/openstack/pull/1439))
15+
- Improve openapi type conversion ([#1412](https://github.com/gtema/openstack/pull/1412))
16+
17+
### Other
18+
19+
- Fix newly identified typos ([#1455](https://github.com/gtema/openstack/pull/1455))
20+
921
## [0.13.1](https://github.com/gtema/openstack/compare/openstack_tui-v0.13.0...openstack_tui-v0.13.1) - 2025-09-07
1022

1123
### Other

openstack_tui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "openstack_tui"
33
description = "OpenStack Terminal User interface"
4-
version = "0.13.1"
4+
version = "0.13.2"
55
keywords = ["tui", "openstack"]
66
categories = ["command-line-utilities"]
77
authors = ["Artem Goncharov (gtema)"]

openstack_types/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.22.2](https://github.com/gtema/openstack/compare/openstack_types-v0.22.1...openstack_types-v0.22.2) - 2025-10-09
11+
12+
### Added
13+
14+
- Add support for token restrictions ([#1458](https://github.com/gtema/openstack/pull/1458))
15+
- Add keystone_ng idp and mapping ([#1427](https://github.com/gtema/openstack/pull/1427))
16+
- Implement passkey registration and auth ([#1418](https://github.com/gtema/openstack/pull/1418))
17+
- Add port parameter to the loadbalancer resource ([#1417](https://github.com/gtema/openstack/pull/1417))
18+
- Default to u32 when maximum is unset ([#1416](https://github.com/gtema/openstack/pull/1416))
19+
- Start generating keystone-ng code ([#1415](https://github.com/gtema/openstack/pull/1415))
20+
- Improve openapi type conversion ([#1412](https://github.com/gtema/openstack/pull/1412))
21+
22+
### Fixed
23+
24+
- Fix i32/u32 types in few object-store operations ([#1413](https://github.com/gtema/openstack/pull/1413))
25+
26+
### Other
27+
28+
- Fix newly identified typos ([#1455](https://github.com/gtema/openstack/pull/1455))
29+
- Add keystone-ng idp and mapping resources metadata ([#1433](https://github.com/gtema/openstack/pull/1433))
30+
1031
## [0.22.1](https://github.com/gtema/openstack/compare/openstack_types-v0.22.0...openstack_types-v0.22.1) - 2025-09-07
1132

1233
### Added

openstack_types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "openstack_types"
33
description = "OpenStack API Types"
4-
version = "0.22.1"
4+
version = "0.22.2"
55
keywords = ["api", "openstack"]
66
categories = ["api-bindings"]
77
authors = ["Artem Goncharov (gtema)"]

0 commit comments

Comments
 (0)