Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions crates/keystone/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# 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.2](https://github.com/openstack-experimental/keystone/compare/openstack_keystone-v0.1.1...openstack_keystone-v0.1.2) - 2026-02-20

### Added

- Implement k8s auth provider ([#567](https://github.com/openstack-experimental/keystone/pull/567))
- Spit role from assignment provider ([#565](https://github.com/openstack-experimental/keystone/pull/565))
- Add raft backed distributed storage ([#556](https://github.com/openstack-experimental/keystone/pull/556))
- Create revoke event after revoke grant ([#555](https://github.com/openstack-experimental/keystone/pull/555))
- Implement trust token validation ([#484](https://github.com/openstack-experimental/keystone/pull/484))

### Fixed

- Prevent endless extending token ([#564](https://github.com/openstack-experimental/keystone/pull/564))

### Other

- Remove one level of errors ([#575](https://github.com/openstack-experimental/keystone/pull/575))
- Introduce k3s test ([#571](https://github.com/openstack-experimental/keystone/pull/571))
- Switch functional tests to keystone_api_types ([#574](https://github.com/openstack-experimental/keystone/pull/574))
- Split api types into a separate crate ([#572](https://github.com/openstack-experimental/keystone/pull/572))
- *(deps)* Upgrade rand to 0.10 and uuid to 0.21 ([#563](https://github.com/openstack-experimental/keystone/pull/563))
- Convert project to the crate workspace ([#554](https://github.com/openstack-experimental/keystone/pull/554))
2 changes: 1 addition & 1 deletion crates/keystone/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "openstack_keystone"
description = "OpenStack Keystone service"
version = "0.1.1"
version = "0.1.2"
rust-version.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
19 changes: 19 additions & 0 deletions crates/keystone_distributed_storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 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/openstack-experimental/keystone/releases/tag/openstack_keystone_distributed_storage-v0.1.0) - 2026-02-20

### Added

- Spit role from assignment provider ([#565](https://github.com/openstack-experimental/keystone/pull/565))
- Add raft backed distributed storage ([#556](https://github.com/openstack-experimental/keystone/pull/556))

### Other

- *(deps)* Upgrade rand to 0.10 and uuid to 0.21 ([#563](https://github.com/openstack-experimental/keystone/pull/563))
Loading