Skip to content

build(deps-dev): bump the development-dependencies group with 5 updates#10

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/development-dependencies-450c255248
Closed

build(deps-dev): bump the development-dependencies group with 5 updates#10
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/development-dependencies-450c255248

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 26, 2025

Bumps the development-dependencies group with 5 updates:

Package From To
@vitejs/plugin-react 4.4.1 4.5.0
html-to-image 1.11.11 1.11.13
i18next 25.1.3 25.2.1
react-router 7.6.0 7.6.1
vite-plugin-compression2 1.3.3 1.4.0

Updates @vitejs/plugin-react from 4.4.1 to 4.5.0

Release notes

Sourced from @​vitejs/plugin-react's releases.

plugin-react@4.5.0

Add filter for rolldown-vite #470

Added filter so that it is more performant when running this plugin with rolldown-powered version of Vite.

Skip HMR for JSX files with hooks #480

This removes the HMR warning for hooks with JSX.

Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.5.0 (2025-05-23)

Add filter for rolldown-vite #470

Added filter so that it is more performant when running this plugin with rolldown-powered version of Vite.

Skip HMR for JSX files with hooks #480

This removes the HMR warning for hooks with JSX.

Commits

Updates html-to-image from 1.11.11 to 1.11.13

Release notes

Sourced from html-to-image's releases.

v1.11.13

1.11.13 (2025-02-14)

Bug Fixes

  • mask: add support for -webkit-mask and -webkit-mask-image (#382) (5bdfda7)

This release is also available on:

v1.11.12

1.11.12 (2025-02-12)

Bug Fixes

  • add possibility to use own handling of onerror which will not en… (#453) (04160c3)
  • ensure images are totally prcoessed before using them (ios) (#478) (51fb98f)
  • Fix fontEmbedCSS incorrect sizing (#422) (7020162)

Performance Improvements


This release is also available on:

Changelog

Sourced from html-to-image's changelog.

1.11.13 (2025-02-14)

Bug Fixes

  • mask: add support for -webkit-mask and -webkit-mask-image (#382) (5bdfda7)

1.11.12 (2025-02-12)

Bug Fixes

  • add possibility to use own handling of onerror which will not en… (#453) (04160c3)
  • ensure images are totally prcoessed before using them (ios) (#478) (51fb98f)
  • Fix fontEmbedCSS incorrect sizing (#422) (7020162)

Performance Improvements

Commits
  • 9957281 chore(release): v1.11.13 [skip ci]
  • d9b2fcf docs: Update README.md
  • a02abc6 chore: update contributors [skip ci]
  • 9de3db6 test: add spec
  • 3cd8093 chore: update CONTRIBUTORS [skip ci]
  • bad0d9c Add option to selectively include style properties when cloning element (#436)
  • f0d0341 chore: update CONTRIBUTORS [skip ci]
  • 5bdfda7 fix(mask): add support for -webkit-mask and -webkit-mask-image (#382)
  • aa3c979 chore: update contributors [skip ci]
  • 5b25b52 chore: update CONTRIBUTORS [skip ci]
  • Additional commits viewable in compare view

Updates i18next from 25.1.3 to 25.2.1

Release notes

Sourced from i18next's releases.

v25.2.1

  • streamline fallbackLng option of t call with the init options 2312

v25.2.0

  • introduce cacheInBuiltFormats option to address 2227
Changelog

Sourced from i18next's changelog.

25.2.1

  • streamline fallbackLng option of t call with the init options 2312

25.2.0

  • introduce cacheInBuiltFormats option to address 2227
Commits

Updates react-router from 7.6.0 to 7.6.1

Release notes

Sourced from react-router's releases.

v7.6.1

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v761

Changelog

Sourced from react-router's changelog.

7.6.1

Patch Changes

  • Update Route.MetaArgs to reflect that data can be potentially undefined (#13563)

    This is primarily for cases where a route loader threw an error to it's own ErrorBoundary. but it also arises in the case of a 404 which renders the root ErrorBoundary/meta but the root loader did not run because not routes matched.

  • Partially revert optimization added in 7.1.4 to reduce calls to matchRoutes because it surfaced other issues (#13562)

  • Fix typegen when same route is used at multiple paths (#13574)

    For example, routes/route.tsx is used at 4 different paths here:

    import { type RouteConfig, route } from "@react-router/dev/routes";
    export default [
      route("base/:base", "routes/base.tsx", [
        route("home/:home", "routes/route.tsx", { id: "home" }),
        route("changelog/:changelog", "routes/route.tsx", { id: "changelog" }),
        route("splat/*", "routes/route.tsx", { id: "splat" }),
      ]),
      route("other/:other", "routes/route.tsx", { id: "other" }),
    ] satisfies RouteConfig;

    Previously, typegen would arbitrarily pick one of these paths to be the "winner" and generate types for the route module based on that path. Now, typegen creates unions as necessary for alternate paths for the same route file.

  • Better types for params (#13543)

    For example:

    // routes.ts
    import { type RouteConfig, route } from "@react-router/dev/routes";
    export default [
    route("parent/:p", "routes/parent.tsx", [
    route("layout/:l", "routes/layout.tsx", [
    route("child1/:c1a/:c1b", "routes/child1.tsx"),
    route("child2/:c2a/:c2b", "routes/child2.tsx"),
    ]),
    ]),
    ] satisfies RouteConfig;

    Previously, params for the routes/layout.tsx route were calculated as { p: string, l: string }. This incorrectly ignores params that could come from child routes. If visiting /parent/1/layout/2/child1/3/4, the actual params passed to routes/layout.tsx will have a type of { p: string, l: string, c1a: string, c1b: string }.

... (truncated)

Commits

Updates vite-plugin-compression2 from 1.3.3 to 1.4.0

Release notes

Sourced from vite-plugin-compression2's releases.

v1.4.0

Added build log output for compression result.

This enhancement provides visibility into compression results during the build process, complementing Vite's default reporter by including assets from the public directory in the output statistics.

Changelog

Sourced from vite-plugin-compression2's changelog.

1.4.0

Added build log output for compression result.

This enhancement provides visibility into compression results during the build process, complementing Vite's default reporter by including assets from the public directory in the output statistics.

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

Bumps the development-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.4.1` | `4.5.0` |
| [html-to-image](https://github.com/bubkoo/html-to-image) | `1.11.11` | `1.11.13` |
| [i18next](https://github.com/i18next/i18next) | `25.1.3` | `25.2.1` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.6.0` | `7.6.1` |
| [vite-plugin-compression2](https://github.com/nonzzz/vite-plugin-compression) | `1.3.3` | `1.4.0` |


Updates `@vitejs/plugin-react` from 4.4.1 to 4.5.0
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@4.5.0/packages/plugin-react)

Updates `html-to-image` from 1.11.11 to 1.11.13
- [Release notes](https://github.com/bubkoo/html-to-image/releases)
- [Changelog](https://github.com/bubkoo/html-to-image/blob/master/CHANGELOG.md)
- [Commits](bubkoo/html-to-image@v1.11.11...v1.11.13)

Updates `i18next` from 25.1.3 to 25.2.1
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v25.1.3...v25.2.1)

Updates `react-router` from 7.6.0 to 7.6.1
- [Release notes](https://github.com/remix-run/react-router/releases)
- [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.6.1/packages/react-router)

Updates `vite-plugin-compression2` from 1.3.3 to 1.4.0
- [Release notes](https://github.com/nonzzz/vite-plugin-compression/releases)
- [Changelog](https://github.com/nonzzz/vite-plugin-compression/blob/master/CHANGELOG.md)
- [Commits](nonzzz/vite-plugin-compression@v1.3.3...v1.4.0)

---
updated-dependencies:
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 4.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: html-to-image
  dependency-version: 1.11.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: i18next
  dependency-version: 25.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: react-router
  dependency-version: 7.6.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: vite-plugin-compression2
  dependency-version: 1.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-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 May 26, 2025
@Nerivec Nerivec closed this May 26, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github May 26, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/development-dependencies-450c255248 branch May 26, 2025 19:14
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