Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 29, 2025

Bumps the production-dependencies group with 7 updates in the /theme directory:

Package From To
keycloakify 11.8.28 11.9.6
react-hook-form 7.54.2 7.63.0
react-i18next 15.4.1 16.0.0
react-router-dom 6.30.0 6.30.1
@keycloakify/keycloak-ui-shared 260200.0.0 260305.0.0
@patternfly/react-styles 5.4.1 6.3.1
@keycloak/keycloak-admin-client 26.2.0 26.3.5

Updates keycloakify from 11.8.28 to 11.9.6

Release notes

Sourced from keycloakify's releases.

Release v11.9.6

What's Changed

New Contributors

Full Changelog: keycloakify/keycloakify@v11.9.5...v11.9.6

Release v11.9.5

Full Changelog: keycloakify/keycloakify@v11.9.4...v11.9.5

Release v11.9.4

Full Changelog: keycloakify/keycloakify@v11.9.3...v11.9.4

Release v11.9.3

Full Changelog: keycloakify/keycloakify@v11.9.2...v11.9.3

Release v11.9.2

Full Changelog: keycloakify/keycloakify@v11.9.1...v11.9.2

Release v11.9.1

Full Changelog: keycloakify/keycloakify@v11.9.0...v11.9.1

Release v11.9.0

Full Changelog: keycloakify/keycloakify@v11.8.57...v11.9.0

Release v11.9.0-rc.1

Full Changelog: keycloakify/keycloakify@v11.8.57...v11.9.0-rc.1

Release v11.8.57

Full Changelog: keycloakify/keycloakify@v11.8.56...v11.8.57

Release v11.8.57-rc.1

Full Changelog: keycloakify/keycloakify@v11.8.56...v11.8.57-rc.1

Release v11.8.56

Full Changelog: keycloakify/keycloakify@v11.8.55...v11.8.56

Release v11.8.55

Full Changelog: keycloakify/keycloakify@v11.8.54...v11.8.55

Release v11.8.54

Full Changelog: keycloakify/keycloakify@v11.8.53...v11.8.54

Release v11.8.53

Full Changelog: keycloakify/keycloakify@v11.8.52...v11.8.53

Release v11.8.52

Full Changelog: keycloakify/keycloakify@v11.8.51...v11.8.52

... (truncated)

Commits
  • 191f2d3 Bump version
  • 5476985 Merge pull request #922 from rgrosjean/fix_warning
  • a0e7266 Bump version
  • e0c4236 Include environment variables including in native themes
  • 50e01f4 Update src/bin/start-keycloak/start-keycloak.ts
  • a62d0d3 Fix warning Hostname v1 options are still in use
  • feeba96 Bump version
  • 0ec4819 Implement env var to disable vite dev server in account and admin spa
  • 03a0ee3 Bump version
  • 0039bf6 Update public resources
  • Additional commits viewable in compare view

Updates react-hook-form from 7.54.2 to 7.63.0

Release notes

Sourced from react-hook-form's releases.

Version 7.63.0

🥢 feat: extract form values by form state (#12936)

getValues(undefined, { dirtyFields: true }); // return only dirty fields 
getValues(undefined, { touchedFields: true });  // return only touched fields 

🦍 feat: improve get dirty fields logic (#13049) 🐿️ chore: remove duplicated function isMessage (#13050) 🐞 fix: use field name to update isValidating fields (#13000) 🐞 fix: unregister previous field when switching conditional Controllers (#13041) 🐞 fix: only excuse trigger function when deps has a valid array (#13056)

thanks to @​candymask0712, @​GorkemKir, @​kimtaejin3, @​m2na7 & @​abnud11

Version 7.62.0

👨‍🔧 prevent onBlur for readOnly fields (#12971) 🐞 fix #12988 sync two defaultValues after reset with new defaultValues (#12990) 🐞 fix: do not override prototype of data in cloneObject (#12985) 🐞 fix field name type conflict in nested FieldErrors (#12972)

thanks to @​candymask0712, @​Adityapradh, @​Ty3uK & @​kichikawa57

Version 7.61.1

Revert "⌨️ fix: watch return type based on defaultValue (#12896)"

Version 7.61.0

🧮 feat: compute prop for useWatch subscription (#12503)

  • subscribe to the entire form but only return updated value with certain condition
type FormValue = {
  test: string;
}
const watchedValue = useWatch({
control: methods.control,
compute: (data: FormValue) => {
if (data.test?.length) {
return data.test;
}
return '';

},
});

  • subscribe to a specific form value state

... (truncated)

Commits

Updates react-i18next from 15.4.1 to 16.0.0

Changelog

Sourced from react-i18next's changelog.

16.0.0

  • major upgrade i18next dep to address 1865

15.7.4

  • downgrade i18next dep to address 1865

15.7.3

  • exports TransSelectorProps 1862 to address 1861

15.7.2

  • update i18next dependency

15.7.1

  • Fix: _EnableSelector type (for compatibility, enableSelector does not exist in TypeOptions) 1858

15.7.0

  • add new selector API to improve TypeScript IDE performance 1852
    • read more about it here

15.6.1

avoid exception when passing bindI18n: false 1856

15.6.0

fix: passing components as object should still allow for indexed matching of children 1854

15.5.3

chore: update @babel/runtime 1851

15.5.2

fix element.ref access issue with react 19 1846

15.5.1

add typescript as optional peer dependency 1843

15.5.0

feat: use const type parameters for useTranslation() 1842

Commits

Updates react-router-dom from 6.30.0 to 6.30.1

Release notes

Sourced from react-router-dom's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

Changelog

Sourced from react-router-dom's changelog.

v6.30.1

Date: 2025-05-20

Patch Changes

  • Partially revert optimization added in 6.29.0 to reduce calls to matchRoutes because it surfaced other issues (#13623)
  • Stop logging invalid warning when v7_relativeSplatPath is set to false (#13502)

Full Changelog: v6.30.0...v6.30.1

Commits

Updates @keycloakify/keycloak-ui-shared from 260200.0.0 to 260305.0.0

Release notes

Sourced from @​keycloakify/keycloak-ui-shared's releases.

Release v260305.0.0

Full Changelog: keycloakify/keycloak-ui-shared@v260200.0.0...v260305.0.0

Commits

Updates @patternfly/react-styles from 5.4.1 to 6.3.1

Updates @keycloak/keycloak-admin-client from 26.2.0 to 26.3.5

Release notes

Sourced from @​keycloak/keycloak-admin-client's releases.

26.3.5

26.3.4

... (truncated)

Commits
  • 8d6ab96 Set version to 26.3.5
  • a44da52 Add missing fields for client offline session timeout and lifespan
  • 9d8ac1f Bump @​types/node from 24.0.3 to 24.0.4 in /js
  • 87cbfc1 Bump mocha from 11.7.0 to 11.7.1 in /js
  • 1183157 Key generation for client authentication is always RSA 2048 with a 10-year va...
  • d11ea65 Bump mocha from 11.6.0 to 11.7.0 in /js (#40607)
  • 5526458 Bump @​types/node from 24.0.1 to 24.0.3 in /js (#40540)
  • a08a82e Bump @​types/node from 24.0.0 to 24.0.1 in /js (#40431)
  • d57acf2 Bump @​types/node from 22.15.26 to 24.0.0 in /js (#40394)
  • 3de8532 Bump mocha from 11.5.0 to 11.6.0 in /js (#40358)
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
react-router-dom [>= 7.a, < 8]

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…tory with 7 updates

Bumps the production-dependencies group with 7 updates in the /theme directory:

| Package | From | To |
| --- | --- | --- |
| [keycloakify](https://github.com/keycloakify/keycloakify) | `11.8.28` | `11.9.6` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.63.0` |
| [react-i18next](https://github.com/i18next/react-i18next) | `15.4.1` | `16.0.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.30.0` | `6.30.1` |
| [@keycloakify/keycloak-ui-shared](https://github.com/keycloakify/keycloak-ui-shared) | `260200.0.0` | `260305.0.0` |
| @patternfly/react-styles | `5.4.1` | `6.3.1` |
| [@keycloak/keycloak-admin-client](https://github.com/keycloak/keycloak/tree/HEAD/js/libs/keycloak-admin-client) | `26.2.0` | `26.3.5` |



Updates `keycloakify` from 11.8.28 to 11.9.6
- [Release notes](https://github.com/keycloakify/keycloakify/releases)
- [Commits](keycloakify/keycloakify@v11.8.28...v11.9.6)

Updates `react-hook-form` from 7.54.2 to 7.63.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.54.2...v7.63.0)

Updates `react-i18next` from 15.4.1 to 16.0.0
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v15.4.1...v16.0.0)

Updates `react-router-dom` from 6.30.0 to 6.30.1
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom)

Updates `@keycloakify/keycloak-ui-shared` from 260200.0.0 to 260305.0.0
- [Release notes](https://github.com/keycloakify/keycloak-ui-shared/releases)
- [Commits](keycloakify/keycloak-ui-shared@v260200.0.0...v260305.0.0)

Updates `@patternfly/react-styles` from 5.4.1 to 6.3.1

Updates `@keycloak/keycloak-admin-client` from 26.2.0 to 26.3.5
- [Release notes](https://github.com/keycloak/keycloak/releases)
- [Commits](https://github.com/keycloak/keycloak/commits/26.3.5/js/libs/keycloak-admin-client)

---
updated-dependencies:
- dependency-name: keycloakify
  dependency-version: 11.9.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-hook-form
  dependency-version: 7.63.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-i18next
  dependency-version: 16.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 6.30.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@keycloakify/keycloak-ui-shared"
  dependency-version: 260305.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@patternfly/react-styles"
  dependency-version: 6.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@keycloak/keycloak-admin-client"
  dependency-version: 26.3.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 29, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 29, 2025 19:12
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 29, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 6, 2025

Dependabot can't resolve your JavaScript dependency files. Because of this, Dependabot cannot update this pull request.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants