Skip to content

Bump the npm-packages group across 1 directory with 7 updates#159

Open
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/npm_and_yarn/npm-packages-026ea79020
Open

Bump the npm-packages group across 1 directory with 7 updates#159
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/npm_and_yarn/npm-packages-026ea79020

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 27, 2026

Bumps the npm-packages group with 7 updates in the / directory:

Package From To
ra-i18n-polyglot 5.14.4 5.14.6
ra-language-english 5.14.4 5.14.6
ra-ui-materialui 5.14.4 5.14.6
react-admin 5.14.4 5.14.6
react-router 7.14.1 7.14.2
react-router-dom 7.14.1 7.14.2
typescript-eslint 8.58.2 8.59.1

Updates ra-i18n-polyglot from 5.14.4 to 5.14.6

Changelog

Sourced from ra-i18n-polyglot's changelog.

5.14.6

5.14.5

Commits
  • 2d8dcf6 Update changelog for version 5.14.6
  • 326e1b9 v5.14.6
  • 5221ea8 Merge pull request #11238 from Yashrajsingh2001/fix/field-toggle-duplicate-ids
  • 995d8dd Merge pull request #11240 from marmelab/dependabot/npm_and_yarn/follow-redire...
  • c3b3e70 Bump follow-redirects from 1.15.11 to 1.16.0
  • 33db516 Merge pull request #11237 from marmelab/dependabot/npm_and_yarn/axios-1.15.0
  • b49f652 fix: Prevent duplicate IDs in FieldToggle when multiple column pickers are pr...
  • 5f07fa6 Bump axios from 1.13.6 to 1.15.0
  • 5f505e7 Merge pull request #11234 from marmelab/dependabot/npm_and_yarn/vite-7.3.2
  • 354731a Bump vite from 7.3.1 to 7.3.2
  • Additional commits viewable in compare view

Updates ra-language-english from 5.14.4 to 5.14.6

Changelog

Sourced from ra-language-english's changelog.

5.14.6

5.14.5

Commits
  • 2d8dcf6 Update changelog for version 5.14.6
  • 326e1b9 v5.14.6
  • 5221ea8 Merge pull request #11238 from Yashrajsingh2001/fix/field-toggle-duplicate-ids
  • 995d8dd Merge pull request #11240 from marmelab/dependabot/npm_and_yarn/follow-redire...
  • c3b3e70 Bump follow-redirects from 1.15.11 to 1.16.0
  • 33db516 Merge pull request #11237 from marmelab/dependabot/npm_and_yarn/axios-1.15.0
  • b49f652 fix: Prevent duplicate IDs in FieldToggle when multiple column pickers are pr...
  • 5f07fa6 Bump axios from 1.13.6 to 1.15.0
  • 5f505e7 Merge pull request #11234 from marmelab/dependabot/npm_and_yarn/vite-7.3.2
  • 354731a Bump vite from 7.3.1 to 7.3.2
  • Additional commits viewable in compare view

Updates ra-ui-materialui from 5.14.4 to 5.14.6

Changelog

Sourced from ra-ui-materialui's changelog.

5.14.6

5.14.5

Commits
  • 2d8dcf6 Update changelog for version 5.14.6
  • 326e1b9 v5.14.6
  • 5221ea8 Merge pull request #11238 from Yashrajsingh2001/fix/field-toggle-duplicate-ids
  • 995d8dd Merge pull request #11240 from marmelab/dependabot/npm_and_yarn/follow-redire...
  • c3b3e70 Bump follow-redirects from 1.15.11 to 1.16.0
  • 33db516 Merge pull request #11237 from marmelab/dependabot/npm_and_yarn/axios-1.15.0
  • b49f652 fix: Prevent duplicate IDs in FieldToggle when multiple column pickers are pr...
  • 5f07fa6 Bump axios from 1.13.6 to 1.15.0
  • 5f505e7 Merge pull request #11234 from marmelab/dependabot/npm_and_yarn/vite-7.3.2
  • 354731a Bump vite from 7.3.1 to 7.3.2
  • Additional commits viewable in compare view

Updates react-admin from 5.14.4 to 5.14.6

Changelog

Sourced from react-admin's changelog.

5.14.6

5.14.5

Commits
  • 2d8dcf6 Update changelog for version 5.14.6
  • 326e1b9 v5.14.6
  • 5221ea8 Merge pull request #11238 from Yashrajsingh2001/fix/field-toggle-duplicate-ids
  • 995d8dd Merge pull request #11240 from marmelab/dependabot/npm_and_yarn/follow-redire...
  • c3b3e70 Bump follow-redirects from 1.15.11 to 1.16.0
  • 33db516 Merge pull request #11237 from marmelab/dependabot/npm_and_yarn/axios-1.15.0
  • b49f652 fix: Prevent duplicate IDs in FieldToggle when multiple column pickers are pr...
  • 5f07fa6 Bump axios from 1.13.6 to 1.15.0
  • 5f505e7 Merge pull request #11234 from marmelab/dependabot/npm_and_yarn/vite-7.3.2
  • 354731a Bump vite from 7.3.1 to 7.3.2
  • Additional commits viewable in compare view

Updates react-router from 7.14.1 to 7.14.2

Changelog

Sourced from react-router's changelog.

v7.14.2

Patch Changes

  • Remove the un-documented custom error serialization logic from the internal turbo-stream implementation. React Router only automatically handles serialization of Error and it's standard subtypes (SyntaxError, TypeError, etc.). ([aabf4a1)

  • Properly handle parent middleware redirects during fetcher.load ([aabf4a1)

  • Remove redundant Omit<RouterProviderProps, "flushSync"> from react-router/dom RouterProvider ([aabf4a1)

  • Improved types for generatePath's param arg ([aabf4a1)

    Type errors when required params are omitted:

    // Before
    // Passes type checks, but throws at runtime 💥
    generatePath(":required", { required: null });
    // After
    generatePath(":required", { required: null });
    //                          ^^^^^^^^ Type 'null' is not assignable to type 'string'.ts(2322)

    Allow omission of optional params:

    // Before
    generatePath(":optional?", {});
    //                         ^^ Property 'optional' is missing in type '{}' but required in type '{ optional: string | null | undefined; }'.ts(2741)
    // After
    generatePath(":optional?", {});

    Allows extra keys:

    // Before
    generatePath(":a", { a: "1", b: "2" });
    //                           ^ Object literal may only specify known properties, and 'b' does not exist in type '{ a: string; }'.ts(2353)
    // After
    generatePath(":a", { a: "1", b: "2" });

Commits

Updates react-router-dom from 7.14.1 to 7.14.2

Changelog

Sourced from react-router-dom's changelog.

v7.14.2

Patch Changes

Commits

Updates typescript-eslint from 8.58.2 to 8.59.1

Changelog

Sourced from typescript-eslint's changelog.

8.59.1 (2026-04-27)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.59.0 (2026-04-20)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Commits

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 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

Bumps the npm-packages group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [ra-i18n-polyglot](https://github.com/marmelab/react-admin) | `5.14.4` | `5.14.6` |
| [ra-language-english](https://github.com/marmelab/react-admin) | `5.14.4` | `5.14.6` |
| [ra-ui-materialui](https://github.com/marmelab/react-admin) | `5.14.4` | `5.14.6` |
| [react-admin](https://github.com/marmelab/react-admin) | `5.14.4` | `5.14.6` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.14.1` | `7.14.2` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.14.1` | `7.14.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.58.2` | `8.59.1` |



Updates `ra-i18n-polyglot` from 5.14.4 to 5.14.6
- [Changelog](https://github.com/marmelab/react-admin/blob/master/CHANGELOG.md)
- [Commits](marmelab/react-admin@v5.14.4...v5.14.6)

Updates `ra-language-english` from 5.14.4 to 5.14.6
- [Changelog](https://github.com/marmelab/react-admin/blob/master/CHANGELOG.md)
- [Commits](marmelab/react-admin@v5.14.4...v5.14.6)

Updates `ra-ui-materialui` from 5.14.4 to 5.14.6
- [Changelog](https://github.com/marmelab/react-admin/blob/master/CHANGELOG.md)
- [Commits](marmelab/react-admin@v5.14.4...v5.14.6)

Updates `react-admin` from 5.14.4 to 5.14.6
- [Changelog](https://github.com/marmelab/react-admin/blob/master/CHANGELOG.md)
- [Commits](marmelab/react-admin@v5.14.4...v5.14.6)

Updates `react-router` from 7.14.1 to 7.14.2
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router@7.14.2/packages/react-router)

Updates `react-router-dom` from 7.14.1 to 7.14.2
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.14.2/packages/react-router-dom)

Updates `typescript-eslint` from 8.58.2 to 8.59.1
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.1/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: ra-i18n-polyglot
  dependency-version: 5.14.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-packages
- dependency-name: ra-language-english
  dependency-version: 5.14.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-packages
- dependency-name: ra-ui-materialui
  dependency-version: 5.14.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-packages
- dependency-name: react-admin
  dependency-version: 5.14.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-packages
- dependency-name: react-router
  dependency-version: 7.14.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-packages
- dependency-name: react-router-dom
  dependency-version: 7.14.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-packages
- dependency-name: typescript-eslint
  dependency-version: 8.59.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the type:dependency Dependency-related changes label Apr 27, 2026
@MTSOnGithub MTSOnGithub enabled auto-merge (rebase) April 27, 2026 17:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

type:dependency Dependency-related changes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant