Skip to content

chore(deps): update all non-major dependencies#1289

Open
github-actions[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#1289
github-actions[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Mar 1, 2026

This PR contains the following updates:

Package Change Age Confidence
@amadeus-it-group/kassette 1.7.3 -> 1.7.5 age confidence
@axe-core/playwright 4.11.0 -> 4.11.1 age confidence
@commitlint/cli (source) 20.4.0 -> 20.4.3 age confidence
@esbuild/darwin-arm64 0.27.2 -> 0.27.3 age confidence
@eslint/js (source) 9.39.2 -> 9.39.4 age confidence
@floating-ui/dom (source) 1.7.5 -> 1.7.6 age confidence
@playwright/test (source) 1.58.1 -> 1.58.2 age confidence
@rollup/rollup-darwin-arm64 (source) 4.57.1 -> 4.59.0 age confidence
@rollup/rollup-darwin-x64 (source) 4.57.1 -> 4.59.0 age confidence
@rollup/rollup-win32-x64-msvc (source) 4.57.1 -> 4.59.0 age confidence
@tailwindcss/browser (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-android-arm64 (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-darwin-arm64 (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-darwin-x64 (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-freebsd-x64 (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-linux-arm-gnueabihf (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-linux-arm64-gnu (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-linux-arm64-musl (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-linux-x64-gnu (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-linux-x64-musl (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-wasm32-wasi (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-win32-arm64-msvc (source) 4.1.18 -> 4.2.1 age confidence
@tailwindcss/oxide-win32-x64-msvc (source) 4.1.18 -> 4.2.1 age confidence
@tsconfig/svelte (source) 5.0.6 -> 5.0.8 age confidence
@types/node (source) 24.10.9 -> 24.12.0 age confidence
@types/react (source) 19.2.10 -> 19.2.14 age confidence
@vitejs/plugin-react (source) 5.1.2 -> 5.1.4 age confidence
@vitest/eslint-plugin 1.6.6 -> 1.6.9 age confidence
angular-eslint (source) 21.2.0 -> 21.3.0 age confidence
daisyui (source) 5.5.16 -> 5.5.19 age confidence
eslint (source) 9.39.2 -> 9.39.4 age confidence
eslint-plugin-playwright 2.5.1 -> 2.9.0 age confidence
eslint-plugin-svelte (source) 3.14.0 -> 3.15.0 age confidence
glob 13.0.0 -> 13.0.6 age confidence
npm (source) 10.9.4 -> 10.9.5 age confidence
strip-ansi 7.1.2 -> 7.2.0 age confidence
svelte (source) 5.53.0 -> 5.53.7 age confidence
svelte (source) 5.49.1 -> 5.53.7 age confidence
svelte-check 4.3.6 -> 4.4.5 age confidence
typedoc (source) 0.28.16 -> 0.28.17 age confidence
typedoc-plugin-markdown (source) 4.9.0 -> 4.10.0 age confidence
typescript-eslint (source) 8.54.0 -> 8.56.1 age confidence

Release Notes

AmadeusITGroup/kassette (@​amadeus-it-group/kassette)

v1.7.5

Compare Source

v1.7.4

Compare Source

dequelabs/axe-core-npm (@​axe-core/playwright)

v4.11.1

Compare Source

Bug Fixes
conventional-changelog/commitlint (@​commitlint/cli)

v20.4.3

Compare Source

Bug Fixes

v20.4.2

Compare Source

Note: Version bump only for package @​commitlint/cli

v20.4.1

Compare Source

Note: Version bump only for package @​commitlint/cli

evanw/esbuild (@​esbuild/darwin-arm64)

v0.27.3

Compare Source

  • Preserve URL fragments in data URLs (#​4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }
  • Parse and print CSS @scope rules (#​4322)

    This release includes dedicated support for parsing @scope rules in CSS. These rules include optional "start" and "end" selector lists. One important consequence of this is that the local/global status of names in selector lists is now respected, which improves the correctness of esbuild's support for CSS modules. Minification of selectors inside @scope rules has also improved slightly.

    Here's an example:

    /* Original code */
    @&#8203;scope (:global(.foo)) to (:local(.bar)) {
      .bar {
        color: red;
      }
    }
    
    /* Old output (with --loader=local-css --minify) */
    @&#8203;scope (:global(.foo)) to (:local(.bar)){.o{color:red}}
    
    /* New output (with --loader=local-css --minify) */
    @&#8203;scope(.foo)to (.o){.o{color:red}}
  • Fix a minification bug with lowering of for await (#​4378, #​4385)

    This release fixes a bug where the minifier would incorrectly strip the variable in the automatically-generated catch clause of lowered for await loops. The code that generated the loop previously failed to mark the internal variable references as used.

  • Update the Go compiler from v1.25.5 to v1.25.7 (#​4383, #​4388)

    This PR was contributed by @​MikeWillCook.

eslint/eslint (@​eslint/js)

v9.39.4

Compare Source

Bug Fixes
Documentation
Chores

v9.39.3

Compare Source

Bug Fixes
  • 791bf8d fix: restore TypeScript 4.0 compatibility in types (#​20504) (sethamus)
Chores
floating-ui/floating-ui (@​floating-ui/dom)

v1.7.6

Patch Changes
  • fix(types): ensure Platform type contains detectOverflow type
  • perf: bundle and runtime improvements
  • feat(autoUpdate): allow not passing a floating element
  • Update dependencies: @floating-ui/utils@0.2.11, @floating-ui/core@1.7.5
microsoft/playwright (@​playwright/test)

v1.58.2

Compare Source

Highlights

#​39121 fix(trace viewer): make paths via stdin work
#​39129 fix: do not force swiftshader on chromium mac

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0
rollup/rollup (@​rollup/rollup-darwin-arm64)

v4.59.0

Compare Source

2026-02-22

Features
  • Throw when the generated bundle contains paths that would leave the output directory (#​6276)
Pull Requests

v4.58.0

Compare Source

2026-02-20

Features
  • Also support __NO_SIDE_EFFECTS__ annotation before variable declarations declaring function expressions (#​6272)
Pull Requests
tailwindlabs/tailwindcss (@​tailwindcss/browser)

v4.2.1

Compare Source

Fixed
  • Allow trailing dash in functional utility names for backwards compatibility (#​19696)
  • Properly detect classes containing . characters within curly braces in MDX files (#​19711)

v4.2.0

Compare Source

Added
  • Add mauve, olive, mist, and taupe color palettes to the default theme (#​19627)
  • Add @tailwindcss/webpack package to run Tailwind CSS as a webpack plugin (#​19610)
  • Add pbs-* and pbe-* utilities for padding-block-start and padding-block-end (#​19601)
  • Add mbs-* and mbe-* utilities for margin-block-start and margin-block-end (#​19601)
  • Add scroll-pbs-* and scroll-pbe-* utilities for scroll-padding-block-start and scroll-padding-block-end (#​19601)
  • Add scroll-mbs-* and scroll-mbe-* utilities for scroll-margin-block-start and scroll-margin-block-end (#​19601)
  • Add border-bs-* and border-be-* utilities for border-block-start and border-block-end (#​19601)
  • Add inline-*, min-inline-*, max-inline-* utilities for inline-size, min-inline-size, and max-inline-size (#​19612)
  • Add block-*, min-block-*, max-block-* utilities for block-size, min-block-size, and max-block-size (#​19612)
  • Add inset-s-*, inset-e-*, inset-bs-*, inset-be-* utilities for inset-inline-start, inset-inline-end, inset-block-start, and inset-block-end (#​19613)
  • Add font-features-* utility for font-feature-settings (#​19623)
Fixed
  • Prevent double @supports wrapper for color-mix values (#​19450)
  • Allow whitespace around @source inline() argument (#​19461)
  • Emit comment when source maps are saved to files when using @tailwindcss/cli (#​19447)
  • Detect utilities containing capital letters followed by numbers (#​19465)
  • Fix class extraction for Rails' strict locals (#​19525)
  • Align @utility name validation with Oxide scanner rules (#​19524)
  • Fix infinite loop when using @variant inside @custom-variant (#​19633)
  • Allow multiples of .25 in aspect-* fractions (e.g. aspect-8.5/11) (#​19688)
  • Ensure changes to external files listed via @source trigger a full page reload when using @tailwindcss/vite (#​19670)
  • Improve performance of Oxide scanner in bigger projects by reducing file system walks (#​19632)
  • Ensure import aliases in Astro v5 work without crashing when using @tailwindcss/vite (#​19677)
  • Allow escape characters in @utility names to improve support with formatters such as Biome (#​19626)
  • Fix incorrect canonicalization results when canonicalizing multiple times (#​19675)
  • Add .jj to default ignored content directories (#​19687)
Deprecated
  • Deprecate start-* and end-* utilities in favor of inset-s-* and inset-e-* utilities (#​19613)
tsconfig/bases (@​tsconfig/svelte)

v5.0.8

Compare Source

v5.0.7

Compare Source

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v5.1.4

Compare Source

Fix canSkipBabel not accounting for babel.overrides (#​1098)

When configuring babel.overrides without top-level plugins or presets, Babel was incorrectly skipped. The canSkipBabel function now checks for overrides.length to ensure override configurations are processed.

v5.1.3

Compare Source

vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.6.9

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.6.8

Compare Source

No significant changes

    View changes on GitHub

What's Changed

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.6.7...v1.6.8

v1.6.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
angular-eslint/angular-eslint (angular-eslint)

v21.3.0

Compare Source

🚀 Features
  • add support for ESLint v10 (#​2903)
  • eslint-plugin-template: add no-non-null-assertion rule (#​2885)
  • eslint-plugin: add computed-must-return rule (#​2882)
❤️ Thank You
  • Evgeny Stepanovych @​undsoft
  • Guillaume DROUARD
  • Jason Weinzierl
saadeghi/daisyui (daisyui)

v5.5.19

Compare Source

Bug Fixes
  • use logical margins for breadcrumbs so it works in RTL. closes: #​4443 (6208471)

v5.5.18

Compare Source

Bug Fixes

v5.5.17

Compare Source

mskelton/eslint-plugin-playwright (eslint-plugin-playwright)

v2.9.0

Compare Source

Bug Fixes
  • no-restricted-roles: Catch all uses, not just on page methods (1861fa5)
  • Support nested locators everywhere (0e48186)
Features
  • no-duplicate-hooks: Mark as recommended (fe3ca54)
  • no-duplicate-slow: Mark as recommended (2f0b67d)
  • prefer-hooks-in-order: Mark as recommended (e8ae16e)
  • prefer-hooks-on-top: Mark as recommended (5ab9296)
  • prefer-locator: Mark as recommended (fcab221)
  • prefer-to-have-count: Mark as recommended (fcbf086)
  • prefer-to-have-length: Mark as recommended (c6c923e)

v2.8.0

Compare Source

Bug Fixes
  • Add missing test coverage and fix several minor bugs (#​434) (e3398ec)
  • missing-playwright-await: Handle spread elements (df30163), closes #​430
  • missing-playwright-await: Support more promise edge cases (b4cdcbd)
Features
  • Auto-detect test.extend() fixtures and import aliases (#​432) (8b22ee7)

v2.7.1

Compare Source

Bug Fixes
  • missing-playwirght-await: Fix false positive with promise chains (6e4f5ff)

v2.7.0

Compare Source

Features

v2.6.1

Compare Source

Bug Fixes
  • Exclude @typescript-eslint/utils from the bundle (6547702), closes #​425

v2.6.0

Compare Source

Bug Fixes
  • docs: consistent-spacing-between-blocks name (#​421) (f2306ed)
  • valid-title: Ignore variables we can't statically determine (1597555), closes #​368
Features
sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v3.15.0

Compare Source

Minor Changes
isaacs/node-glob (glob)

v13.0.6

Compare Source

v13.0.5

Compare Source

[v13.0.4](https://redirect.github.com/isaacs/node


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 04:59 AM, on day 1 of the month ( * 0-4 1 * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@github-actions github-actions bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 4cf3dc8 to 583ccdf Compare March 7, 2026 01:45
@github-actions github-actions bot force-pushed the renovate/all-minor-patch branch from 583ccdf to a9b73df Compare March 8, 2026 01:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants