Skip to content
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [2.4.1] 2026-04-21

* Fetched providers as array when displaying them.

## [2.4.0] 2026-04-20

* Added support for `itk-dev/openid-connect` 4.x.
Expand Down Expand Up @@ -45,7 +49,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

* Allowed multiple providers.

[Unreleased]: https://github.com/itk-dev/os2forms_nemlogin_openid_connect/compare/2.4.0...HEAD
[Unreleased]: https://github.com/itk-dev/os2forms_nemlogin_openid_connect/compare/2.4.1...HEAD
[2.4.1]: https://github.com/itk-dev/os2forms_nemlogin_openid_connect/compare/2.4.0...2.4.1
[2.4.0]: https://github.com/itk-dev/os2forms_nemlogin_openid_connect/compare/2.3.1...2.4.0
[2.3.1]: https://github.com/itk-dev/os2forms_nemlogin_openid_connect/compare/2.3.0...2.3.1
[2.3.0]: https://github.com/itk-dev/os2forms_nemlogin_openid_connect/compare/2.2.1...2.3.0
Expand Down
2 changes: 1 addition & 1 deletion src/Form/SettingsForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function buildForm(array $form, FormStateInterface $form_state): array {
];

try {
$providers = Yaml::parse($providers);
$providers = $this->settings->getProvidersAsArray();

$form['info'] = [
'#type' => 'details',
Expand Down
Loading