Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: release 0.15.0 #240

Merged
merged 1 commit into from
Jul 30, 2024
Merged
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
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [0.15.0](https://github.com/canonical/identity-platform-login-ui/compare/v0.14.0...v0.15.0) (2024-07-29)


### Features

* add settings flow ([fcbd7ec](https://github.com/canonical/identity-platform-login-ui/commit/fcbd7eceb246403c2c892f8b7fa8a2609b24f795))
* handle missing webauthn credentials error ([85979cd](https://github.com/canonical/identity-platform-login-ui/commit/85979cd9c02fdfb5b43f71b67590bdae5d3572ee))
* settings flow ([d6770c8](https://github.com/canonical/identity-platform-login-ui/commit/d6770c8e4604f33936daa6f61576e94957dffe48))
* support account recovery ([5fe26e5](https://github.com/canonical/identity-platform-login-ui/commit/5fe26e5e4918033fa1a8088d5442cf136fbc2372))
* support mfa with totp method ([16df279](https://github.com/canonical/identity-platform-login-ui/commit/16df2793f5882cb0a3e4b264352b62235842c3ed))
* support passwordless webauthn method ([ecfa6f4](https://github.com/canonical/identity-platform-login-ui/commit/ecfa6f414b003f70663b6503955cad10edef5eb9))
* ui support for mfa flows ([dc88e6b](https://github.com/canonical/identity-platform-login-ui/commit/dc88e6bf92e276583a8a9abe93bfb8d6e4f18368))


### Bug Fixes

* add client id to at aud ([20fed79](https://github.com/canonical/identity-platform-login-ui/commit/20fed796d51fff3689ea169e8fddb58c0dfcb5f3))
* group -> parent/child relationship + add spaces for readability ([da553c4](https://github.com/canonical/identity-platform-login-ui/commit/da553c46155e078dd241a8366e547f349285447f))
* handle invalid code case ([bbfb9f1](https://github.com/canonical/identity-platform-login-ui/commit/bbfb9f12ab93587b41f29f2507dd488c3c0fd972))
* handle invalid recovery code case (wip) ([c60343a](https://github.com/canonical/identity-platform-login-ui/commit/c60343a14f95df240988fd0df1df7da9e6e895a9))
* pass cookie when creating settings flow to enable password change once logged in ([0fc9bfc](https://github.com/canonical/identity-platform-login-ui/commit/0fc9bfc2d6d5ce9a72d1cd51e93063b2d4c6b9b7))
* remove certificates from image ([bfdd295](https://github.com/canonical/identity-platform-login-ui/commit/bfdd295b22a77608fd4bce5209e2f3f14af672f3))
* remove unnecessary logging ([f446110](https://github.com/canonical/identity-platform-login-ui/commit/f4461102f17f18767a2afce03dd3f6a3e108b2b4))
* return to url with flow id ([39d299c](https://github.com/canonical/identity-platform-login-ui/commit/39d299c72d21a9814e054b6314db69eb43f60644))
* update docker compose ([533a70c](https://github.com/canonical/identity-platform-login-ui/commit/533a70caee68fd0028f29510a510fcce9d306584))

## [0.14.0](https://github.com/canonical/identity-platform-login-ui/compare/v0.13.0...v0.14.0) (2024-04-30)


Expand Down
2 changes: 1 addition & 1 deletion internal/version/const.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const Version = "0.14.0" // x-release-please-version
const Version = "0.15.0" // x-release-please-version
2 changes: 1 addition & 1 deletion rockcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: identity-platform-login-ui

base: bare
build-base: [email protected]
version: '0.14.0' # x-release-please-version
version: '0.15.0' # x-release-please-version
summary: Canonical Identity platform login UI
description: |
This is the Canonical Identity platform login UI used for connecting
Expand Down
Loading