Skip to content

Commit a0870aa

Browse files
authored
Update to version 5.4 (#1263)
Signed-off-by: Sebastian Schuster <[email protected]>
1 parent c2271a5 commit a0870aa

File tree

2 files changed

+36
-5
lines changed

2 files changed

+36
-5
lines changed

CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
## What's Changed
22

3+
## 5.4.0 (July 28, 2025)
4+
5+
FEATURES:
6+
7+
* Update to KC26.3.2 (#1259) by @thomasdarimont in https://github.com/keycloak/terraform-provider-keycloak/pull/1260
8+
* Add support for fetchRoles in keycloak_openid_client_role_policy resource by @elshirak in https://github.com/keycloak/terraform-provider-keycloak/pull/1241
9+
* Support signed jwt client auth type by @tuankiettruong in https://github.com/keycloak/terraform-provider-keycloak/pull/1250
10+
11+
IMPROVEMENTS:
12+
13+
* Rename realm_client_policy_profile_profile.md by @mawenge in https://github.com/keycloak/terraform-provider-keycloak/pull/1249
14+
* docs: Add mention of keycloak_authentication_bindings to realm authentication settings by @thomasdarimont in https://github.com/keycloak/terraform-provider-keycloak/pull/1255
15+
* docs: add example to keycloak_custom_identity_provider_mapper docs about how use the group mapper by @KyriosGN0 in https://github.com/keycloak/terraform-provider-keycloak/pull/1251
16+
* Add import instructions & example for client_scope by @ajoga in https://github.com/keycloak/terraform-provider-keycloak/pull/1248
17+
* Add RSA_SHAxxx_MGF1 signature algorithms to SAML identity provider config by @yrd in https://github.com/keycloak/terraform-provider-keycloak/pull/1199
18+
* chore(deps): bump golang.org/x/net from 0.41.0 to 0.42.0 by @dependabot[bot] in https://github.com/keycloak/terraform-provider-keycloak/pull/1247
19+
* chore(deps): bump github.com/golang-jwt/jwt/v5 from 5.2.2 to 5.2.3 by @dependabot[bot] in https://github.com/keycloak/terraform-provider-keycloak/pull/1261
20+
21+
BUG FIXES:
22+
23+
* Fix/1246 group names with slash dont work by @sschu in https://github.com/keycloak/terraform-provider-keycloak/pull/1252
24+
25+
Huge thanks to all the individuals who have contributed towards this release:
26+
27+
- [yrd](https://github.com/yrd)
28+
- [ajoga](https://github.com/ajoga)
29+
- [KyriosGN0](https://github.com/KyriosGN0)
30+
- [elshirak](https://github.com/elshirak)
31+
- [tuankiettruong](https://github.com/tuankiettruong)
32+
- [mawenge](https://github.com/mawenge)
33+
334
## 5.3.0 (July 11, 2025)
435

536
FEATURES:
@@ -38,7 +69,7 @@ IMPROVEMENTS:
3869
BUG FIXES:
3970

4071
* Docs: Updated Markdown to format correctly by @bubbletroubles in https://github.com/keycloak/terraform-provider-keycloak/pull/1201
41-
* Removed feature override so KC_FEATURES environment variable is used by @sschu in https://github.com/keycloak/terraform-provider-keycloak/pull/1232
72+
* Removed feature override so KC_FEATURES environment variable is used by @sschu in https://github.com/keycloak/terraform-provider-keycloak/pull/1232
4273

4374
Huge thanks to all the individuals who have contributed towards this release:
4475

makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ build-debug:
1414
CGO_ENABLED=0 go build -gcflags "all=-N -l" -trimpath -ldflags " -X main.version=$(VERSION)" -o terraform-provider-keycloak_$(VERSION)
1515

1616
prepare-example:
17-
mkdir -p example/.terraform/plugins/terraform.local/keycloak/keycloak/5.3.0/$(GOOS)_$(GOARCH)
18-
mkdir -p example/terraform.d/plugins/terraform.local/keycloak/keycloak/5.3.0/$(GOOS)_$(GOARCH)
19-
cp terraform-provider-keycloak_* example/.terraform/plugins/terraform.local/keycloak/keycloak/5.3.0/$(GOOS)_$(GOARCH)/
20-
cp terraform-provider-keycloak_* example/terraform.d/plugins/terraform.local/keycloak/keycloak/5.3.0/$(GOOS)_$(GOARCH)/
17+
mkdir -p example/.terraform/plugins/terraform.local/keycloak/keycloak/5.4.0/$(GOOS)_$(GOARCH)
18+
mkdir -p example/terraform.d/plugins/terraform.local/keycloak/keycloak/5.4.0/$(GOOS)_$(GOARCH)
19+
cp terraform-provider-keycloak_* example/.terraform/plugins/terraform.local/keycloak/keycloak/5.4.0/$(GOOS)_$(GOARCH)/
20+
cp terraform-provider-keycloak_* example/terraform.d/plugins/terraform.local/keycloak/keycloak/5.4.0/$(GOOS)_$(GOARCH)/
2121

2222
build-example: build prepare-example
2323

0 commit comments

Comments
 (0)