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

Release notes: Unauthenticated user can now access Actuator health liveness and readiness endpoints #737

Open
wants to merge 1 commit into
base: next-minor
Choose a base branch
from
Open
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
13 changes: 13 additions & 0 deletions release-notes/major12/12.3.0/valtimo-backend-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ The following features were added:
A Form flow SpEL expressions now accepts updating the submission data.
See [this page](/using-valtimo/form-flow/create-form-flow-definition.md#expressions) for more information.

* **Unauthenticated user can now access Actuator health liveness and readiness endpoints**

These Actuator health endpoints:
- `${management.endpoints.web.base-path}/health/liveness`
- `${management.endpoints.web.base-path}/health/readiness`

can now be accessed by an unauthenticated user in either of the following conditions:
- `management.endpoint.health.show-details` is set to `never`
- `management.endpoint.health.show-details` is set to `when_authorized` AND
`management.endpoint.health.roles` contains `ROLE_ACTUATOR`

This was already implemented for `${management.endpoints.web.base-path}/health` in release 12.1.2

## Bugfixes

The following bugs were fixed:
Expand Down