Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 3, 2025

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

Package From To
keycloakify 11.8.28 11.11.1
i18next-fetch-backend 6.0.0 7.0.0
keycloak-js 26.2.0 26.2.1
react-hook-form 7.54.2 7.66.0
react-i18next 15.4.1 16.2.3
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.4.0
@keycloak/keycloak-admin-client 26.2.0 26.4.2

Updates keycloakify from 11.8.28 to 11.11.1

Release notes

Sourced from keycloakify's releases.

Release v11.11.1

Full Changelog: keycloakify/keycloakify@v11.11.0...v11.11.1

Release v11.11.0

Full Changelog: keycloakify/keycloakify@v11.10.0...v11.11.0

Release v11.10.0

Full Changelog: keycloakify/keycloakify@v11.9.16...v11.10.0

Release v11.9.16

What's Changed

Full Changelog: keycloakify/keycloakify@v11.9.15...v11.9.16

Release v11.9.15

What's Changed

New Contributors

Full Changelog: keycloakify/keycloakify@v11.9.14...v11.9.15

Release v11.9.14

Full Changelog: keycloakify/keycloakify@v11.9.13...v11.9.14

Release v11.9.13

Full Changelog: keycloakify/keycloakify@v11.9.12...v11.9.13

Release v11.9.12

Full Changelog: keycloakify/keycloakify@v11.9.11...v11.9.12

Release v11.9.11

Full Changelog: keycloakify/keycloakify@v11.9.10...v11.9.11

Release v11.9.10

Full Changelog: keycloakify/keycloakify@v11.9.9...v11.9.10

Release v11.9.9

Full Changelog: keycloakify/keycloakify@v11.9.8...v11.9.9

Release v11.9.8

Full Changelog: keycloakify/keycloakify@v11.9.7...v11.9.8

Release v11.9.7

What's Changed

... (truncated)

Commits

Updates i18next-fetch-backend from 6.0.0 to 7.0.0

Release notes

Sourced from i18next-fetch-backend's releases.

v7.0.0

BREAKING: require node 20 add support for node 24

Commits
  • 49c165d 7.0.0
  • 7cc875d chore(ci): switch to oidc authentication
  • 8b6e00c chore: test node 24 and drop 18
  • 9c38a8c chore(deps-dev): bump i18next from 25.5.3 to 25.6.0 (#403)
  • c3a81ef chore(deps-dev): bump mocha from 11.7.3 to 11.7.4 (#401)
  • f8205af chore(deps): bump actions/setup-node from 5 to 6 (#400)
  • bb5a691 chore(deps-dev): bump chai from 6.0.1 to 6.2.0 (#396)
  • b4ff4d0 chore(deps-dev): bump eslint-plugin-n from 17.21.3 to 17.23.1 (#397)
  • 9b71600 chore(deps-dev): bump i18next from 25.4.2 to 25.5.3 (#395)
  • 5b56fc4 chore(deps-dev): bump mocha from 11.7.2 to 11.7.3 (#398)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for i18next-fetch-backend since your current version.


Updates keycloak-js from 26.2.0 to 26.2.1

Release notes

Sourced from keycloak-js's releases.

26.2.1

Commits
  • 2150578 Set version to 26.2.1
  • bd3906f Add release notes for 26.2.1 (#184)
  • f73b88c Apply code style from linter to all code (#182)
  • af196e2 Bump @​playwright/test from 1.55.1 to 1.56.0 (#179)
  • 1f757b8 Bump @​types/node from 24.6.2 to 24.7.0 (#180)
  • e3be395 Bump @​types/node from 24.6.1 to 24.6.2 (#177)
  • 5357360 Bump @​types/node from 24.6.0 to 24.6.1 (#175)
  • d0293e7 Bump @​keycloak/keycloak-admin-client from 26.3.5 to 26.4.0 (#176)
  • f075b14 Bump @​types/node from 24.5.2 to 24.6.0 (#174)
  • b39629c Bump @​keycloak/keycloak-admin-client from 26.3.4 to 26.3.5 (#173)
  • Additional commits viewable in compare view

Updates react-hook-form from 7.54.2 to 7.66.0

Release notes

Sourced from react-hook-form's releases.

Version 7.66.0

🎥 feat: make useWatch and useController to react to name change (#13070) 🐛 fix: watch() returning undefined immediately after reset() - Issue #13088 (#13091) 🐞 fix <Watch />: correct render function parameter typing (#13108)

thanks to @​aspirisen, @​scato3, @​dusan233 & @​zoldyzdk

Version 7.65.0

🧿 feat: <Watch /> component (#12986)

import { useForm, Watch } from 'react-hook-form';
const App = () => {
const { register, control } = useForm();
return (
<div>
<form>
<input {...register('foo')} />
<input {...register('bar')} />
</form>
{/* re-render only when value of foo changes */}
<Watch
control={control}
names={['foo']}
render={([foo]) => <span>{foo}</span>}
/>
</div>
);
};

🐞 fix: respect parent-provided useFieldArray rules (#13082) (#13083 🐞 fix: getDirtyFields submit fields with null values when using useForm (#13079)

thanks to @​tesseractjh, @​Han5991 & @​jonathanarnault

Version 7.64.0

🚏 Support optional array fields in PathValueImpl type (#13057) 🐞 fix: preserve Controller's defaultValue with shouldUnregister prop (#13063) ✂ chore: remove unused field ids ref in useFieldArray (#13066)

thanks to @​MPrieur-chaps, @​gynekolog & @​uk960214

Version 7.63.0

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

getValues(undefined, { dirtyFields: true }); // return only dirty fields 
</tr></table> 

... (truncated)

Commits
  • 089f0a3 7.66.0
  • 0eb3463 📜 docs: update React Context reference in useFormContext documentation (#13111)
  • 384ad49 🐞 fix(Watch): correct render function parameter typing (#13108)
  • af84a5d 🐛 fix: watch() returning undefined immediately after reset() - Issue #13088 (...
  • 0b8be38 🎥 feat: make useWatch and useController to react to name change (#13070)
  • 1ebe316 7.65.0
  • ded8e11 🐞 fix: respect parent-provided useFieldArray rules (#13082) (#13083)
  • c2a3509 🐞 fix: getDirtyFields submit fields with null values when using useForm (#1...
  • da6bd71 🧿 type: minor improvement on <Watch /> component (#13077)
  • c14131f 🧿 feat: \<Watch /> component (#12986)
  • Additional commits viewable in compare view

Updates react-i18next from 15.4.1 to 16.2.3

Changelog

Sourced from react-i18next's changelog.

16.2.3

  • fix hyphened component break issue 1882

16.2.2

  • fix trans component break with less than sign 1880, closes 1734

16.2.1

  • fix regression in v16.2.0: bindI18nStore does not work correctly 1879

16.2.0

  • try to address: useTranslation hook violates React's rules of hooks by conditionally calling inner hooks 1863

16.1.6

  • fix: fix: handle spread props for inner components in Trans (icu) 1877

16.1.5

  • fix: Incosistent behaviour of Trans and t. Trans set defaultValue when t call doesn't set the field. 1876
  • Trans: use also defaultValue via tOptions as fallback

16.1.4

  • fix: detect pre-transformation use of interpolation like number/date/etc. 1875

16.1.3

  • fix: ensure invalid identifiers are quoted in the props object 1874

16.1.2

  • missing.js extensions for Icu imports

16.1.1

  • exports for IcuTrans component 1873

16.1.0

  • Introduce IcuTrans component 1869

16.0.1

  • fix: Using component with named tags throws error when Selector API is enabled 1867 with 1868

16.0.0

... (truncated)

Commits

Updates react-router-dom from 6.30.0 to 6.30.1

Release notes

Sourced from react-router-dom's releases.

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11
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.4.0

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

Release notes

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

26.4.2

26.4.1

... (truncated)

Commits
  • 60dc235 Set version to 26.4.2
  • f39735d Initial impl of workflows in admin UI
  • d96e01a Bump @​types/node from 24.3.1 to 24.5.2 in /js
  • fd7f535 Client Authenticator configurable per client
  • 5cfdaeb Add missing fields for client offline session timeout and lifespan
  • 0768b03 Bump @​types/node from 24.3.0 to 24.3.1 in /js
  • 29e5f49 Bump mocha from 11.7.1 to 11.7.2 in /js (#42331)
  • 67bf1bc Bump @​faker-js/faker from 9.9.0 to 10.0.0 in /js (#42084)
  • acb199a Bump chai from 5.3.1 to 6.0.1 in /js (#42089)
  • 0f1ee98 Bump @​types/node from 24.2.0 to 24.3.0 in /js (#41928)
  • 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 9 updates

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

| Package | From | To |
| --- | --- | --- |
| [keycloakify](https://github.com/keycloakify/keycloakify) | `11.8.28` | `11.11.1` |
| [i18next-fetch-backend](https://github.com/dotcore64/i18next-fetch-backend) | `6.0.0` | `7.0.0` |
| [keycloak-js](https://github.com/keycloak/keycloak-js) | `26.2.0` | `26.2.1` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.66.0` |
| [react-i18next](https://github.com/i18next/react-i18next) | `15.4.1` | `16.2.3` |
| [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.4.0` |
| [@keycloak/keycloak-admin-client](https://github.com/keycloak/keycloak/tree/HEAD/js/libs/keycloak-admin-client) | `26.2.0` | `26.4.2` |



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

Updates `i18next-fetch-backend` from 6.0.0 to 7.0.0
- [Release notes](https://github.com/dotcore64/i18next-fetch-backend/releases)
- [Commits](dotcore64/i18next-fetch-backend@v6.0.0...v7.0.0)

Updates `keycloak-js` from 26.2.0 to 26.2.1
- [Release notes](https://github.com/keycloak/keycloak-js/releases)
- [Changelog](https://github.com/keycloak/keycloak-js/blob/main/RELEASE-CHECKLIST.md)
- [Commits](keycloak/keycloak-js@26.2.0...26.2.1)

Updates `react-hook-form` from 7.54.2 to 7.66.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.66.0)

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

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/react-router-dom@6.30.1/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.4.0

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

---
updated-dependencies:
- dependency-name: keycloakify
  dependency-version: 11.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: i18next-fetch-backend
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: keycloak-js
  dependency-version: 26.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-hook-form
  dependency-version: 7.66.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-i18next
  dependency-version: 16.2.3
  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.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@keycloak/keycloak-admin-client"
  dependency-version: 26.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 3, 2025
@dependabot dependabot bot requested a review from a team as a code owner November 3, 2025 13:19
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 3, 2025
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.

1 participant