Skip to content

fix(deps): update other dependencies (minor)#577

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/other-dependencies-(minor)
Open

fix(deps): update other dependencies (minor)#577
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/other-dependencies-(minor)

Conversation

@renovate

@renovate renovate Bot commented May 7, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@adobe/leonardo-contrast-colors 1.0.01.1.0 age confidence
@antebudimir/eslint-plugin-vanilla-extract ^1.16.0^1.17.0 age confidence
@figma/plugin-typings ^1.125.0^1.130.0 age confidence
@fumadocs/mdx-remote 1.4.101.5.1 age confidence
@playwright/test (source) ^1.60.0^1.61.1 age confidence
@radix-ui/react-radio-group (source) ^1.3.8^1.4.3 age confidence
@tailwindcss/postcss (source) ^4.2.4^4.3.2 age confidence
@tailwindcss/vite (source) ^4.2.4^4.3.2 age confidence
@types/node (source) ^22.19.20^22.20.1 age confidence
eslint-config-turbo (source) ^2.9.16^2.10.5 age confidence
eslint-plugin-import-x ^4.16.2^4.17.1 age confidence
fumadocs-core 16.8.1116.11.4 age confidence
fumadocs-docgen 3.0.103.1.0 age confidence
fumadocs-typescript 5.2.65.3.0 age confidence
fumadocs-ui 16.8.1116.11.4 age confidence
fuse.js (source) ^7.3.0^7.5.0 age confidence
happy-dom ^20.9.0^20.10.6 age confidence
jest (source) ^30.3.0^30.4.2 age confidence
pnpm (source) 10.33.410.34.5 age confidence
prettier (source) ^3.8.3^3.9.5 age confidence
rollup (source) ^4.60.4^4.62.2 age confidence
sass ^1.99.0^1.101.0 age confidence
semver ^7.7.4^7.8.5 age confidence
tailwindcss (source) ^4.2.4^4.3.2 age confidence
tsx (source) ^4.21.0^4.23.1 age confidence
turbo (source) ^2.9.16^2.10.5 age confidence
typescript-eslint (source) ^8.59.4^8.64.0 age confidence

Release Notes

adobe/leonardo (@​adobe/leonardo-contrast-colors)

v1.1.0

Compare Source

Minor Changes
  • 7385295: Add colorSpace as the canonical property name and deprecate colorspace (non-breaking). The constructor, Theme.updateColor, and createScale() accept both names; colorSpace takes precedence. The old colorspace getter/setter remain as deprecated aliases and emit a console warning. TypeScript types include colorSpace and mark colorspace as @deprecated. Existing code continues to work.

v1.0.1

Compare Source

Patch Changes
  • 35073e8: Upgrade chroma-js from ^2 to ^3 and hsluv from ^0.1 to ^1.0. The hsluv 1.0 class-based API is wrapped internally so the public interface is unchanged. Color output for HSLuv-interpolated scales may differ by a small precision amount due to updated interpolation in the new libraries.
antebudimir/eslint-plugin-vanilla-extract (@​antebudimir/eslint-plugin-vanilla-extract)

v1.17.0

Compare Source

  • Improve rule support for recipe base arrays by properly linting ComplexStyleRule[] values inside recipes. This ensures ordering rules now analyze and validate array-based base definitions instead of skipping them.
    • Fixes support for ComplexStyleRule arrays in recipe base.
    • Adds test coverage for array sorting in recipe base for both alphabetical and custom order rules.
  • Improve wrapper detection by moving it into global settings and adding support for cross-module style and recipe wrappers. This helps ordering rules keep working when style or recipe helpers are wrapped and re-exported from other modules.
    • Supports cross-module wrapper detection for style and recipe utilities.
    • Expands test coverage for wrapped style and recipe usage across the ordering rules.
figma/plugin-typings (@​figma/plugin-typings)

v1.130.0

Compare Source

v1.129.0

Compare Source

v1.128.0

Compare Source

v1.127.0

Compare Source

v1.126.0

Compare Source

microsoft/playwright (@​playwright/test)

v1.61.1

Compare Source

v1.61.0

Compare Source

🔑 WebAuthn passkeys

New Credentials virtual authenticator, available via browserContext.credentials, lets tests register passkeys and answer navigator.credentials.create() / navigator.credentials.get() ceremonies in the page — no real hardware key required, works in all browsers:

const context = await browser.newContext();

// Seed a passkey your backend provisioned for a test user.
await context.credentials.create('example.com', {
  id: credentialId,
  userHandle,
  privateKey,
  publicKey,
});
await context.credentials.install();

const page = await context.newPage();
await page.goto('https://example.com/login');
// The page's navigator.credentials.get() is answered with the seeded passkey.

You can also let the app register a passkey once in a setup test, read it back with credentials.get(), and seed it into later tests — see Credentials for details.

🗃️ Web Storage

New WebStorage API, available via page.localStorage and page.sessionStorage, reads and writes the page's storage for the current origin:

await page.localStorage.setItem('token', 'abc');
const token = await page.localStorage.getItem('token');
const items = await page.sessionStorage.items();
New APIs
Network
Browser and Screencast
  • New option artifactsDir in browserType.connectOverCDP() controls where artifacts such as traces and downloads are stored when attached to an existing browser.
  • New option cursor in screencast.showActions() controls the cursor decoration rendered for pointer actions.
  • The onFrame callback in screencast.start() now receives a timestamp of when the frame was presented by the browser.
Test runner
  • The testOptions.video option now supports the same set of modes as trace: new 'on-all-retries', 'retain-on-first-failure' and 'retain-on-failure-and-retries' values. See the video modes table for which runs are recorded and kept in each mode.
  • Supported expect.soft.poll(...).
  • New fullConfig.argv — a snapshot of process.argv from the runner process, handy for reading custom arguments passed after the -- separator.
  • New fullConfig.failOnFlakyTests mirrors the config option, so reporters can explain why a flaky run failed.
  • testInfo.errors now lists each sub-error of an AggregateError as a separate entry.
  • New -G command line shorthand for --grep-invert.
🛠️ Other improvements
  • Playwright now supports Ubuntu 26.04.
  • HAR and trace recordings now include WebSocket requests.
Browser Versions
  • Chromium 149.0.7827.55
  • Mozilla Firefox 151.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 149
  • Microsoft Edge 149
radix-ui/primitives (@​radix-ui/react-radio-group)

v1.4.3

  • Fixed a bug in form control components to ensure their values are updated when their associated form's is reset. This affects RadioGroup, Slider, Select, and Switch.
  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-roving-focus@1.1.15, @radix-ui/react-presence@1.1.7

v1.4.2

  • Updated dependencies: @radix-ui/react-primitive@2.1.7, @radix-ui/react-roving-focus@1.1.14

v1.4.1

  • Updated dependencies: @radix-ui/react-primitive@2.1.6, @radix-ui/react-roving-focus@1.1.13

v1.4.0

  • Added unstable RadioGroupItemProvider, RadioGroupItemTrigger and RadioGroupItemBubbleInput parts. These expose the previously internal composition of a radio item (context provider, the interactive control, and the hidden form input) so consumers can directly access and recompose them. The RadioGroupItem component continues to render them by default.
  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-presence@1.1.6, @radix-ui/react-direction@1.1.2, @radix-ui/primitive@1.1.4, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.1.4, @radix-ui/react-primitive@2.1.5, @radix-ui/react-roving-focus@1.1.12, @radix-ui/react-use-controllable-state@1.2.3, @radix-ui/react-use-previous@1.1.2, @radix-ui/react-use-size@1.1.2
tailwindlabs/tailwindcss (@​tailwindcss/postcss)

v4.3.2

Compare Source

Fixed
  • Support bare spacing values for auto-rows-* and auto-cols-* utilities (e.g. auto-rows-12 and auto-cols-16) (#​20229)
  • Prevent @tailwindcss/cli in --watch mode from crashing on Windows when @source points to a directory that doesn't exist (#​20242)
  • Prevent @tailwindcss/vite from crashing in Deno v2.8.x when context.parentURL is not a valid URL (#​20245)
  • Ensure @tailwindcss/cli in --watch mode rebuilds when the input CSS file changes in an ignored directory (#​20246)
  • Allow @variant rules used in addBase(…) to use custom variants defined later (#​20247)
  • Prevent @tailwindcss/vite from crashing during HMR when scanned files or directories are deleted (#​20259)
  • Generate font-size instead of color declarations for text-[--spacing(…)] (#​20260)
  • Prevent @source patterns from scanning unrelated sibling files and folders (#​20263)
  • Extract class candidates adjacent to Template Toolkit delimiters like %]…[% in .tt, .tt2, and .tx files (#​20269)
  • Extract class candidates from conditional Maud syntax like p.text-black[condition] (#​20269)
  • Prevent @position-try rules from triggering unknown at-rule warnings when optimizing CSS (#​20277)
  • Support class suggestions for named opacity modifiers from --opacity theme values (#​20287)
  • Prevent type errors in @tailwindcss/postcss when used with newer PostCSS patch releases (#​20289)

v4.3.1

Compare Source

Added
  • Add --silent option to suppress output in @tailwindcss/cli (#​20100)
Fixed
  • Remove deprecation warnings by using Module#registerHooks instead of Module#register on Node 26+ (#​20028)
  • Canonicalization: don't crash when plugin utilities throw for unsupported values (#​20052)
  • Allow @apply to be used with CSS mixins (#​19427)
  • Ensure not-* correctly negates @container queries, including style(…) queries (#​20059)
  • Ensure drop-shadow-* color utilities work with custom shadow values containing calc(…) (#​20080)
  • Fix 'Sourcemap is likely to be incorrect' warnings when using @tailwindcss/vite (#​20103)
  • Ensure @tailwindcss/webpack can be installed in Rspack projects without requiring webpack as a peer dependency (#​20027)
  • Canonicalization: don't suggest invalid calc(…) expressions (e.g. px-[calc(1rem+0px)]px-[calc(1rem+0)]) (#​20127)
  • Canonicalization: avoid suggesting large spacing-scale values for arbitrary lengths (e.g. left-[99999px]left-[99999px], not left-24999.75) (#​20130)
  • Ensure @tailwindcss/cli in --watch mode recovers when a tracked dependency is deleted and restored (#​20137)
  • Ensure standalone @tailwindcss/cli binaries are ignored when scanning for class candidates (#​20139)
  • Ensure class candidates are extracted from Twig addClass(…) and removeClass(…) calls (#​20198)
  • Don't crash in the Ruby or Vue preprocessors when scanning files containing invalid UTF-8 bytes (#​19588)
  • Allow @variant to be used inside addBase (#​19480)
  • Ensure @source globs with symlinks are preserved (#​20203)
  • Ensure later @source rules can re-include files excluded by earlier @source not rules (#​20203)
  • Upgrade: don't migrate empty class rules to invalid @utility rules (#​20205)
  • Ensure transitions between inset-shadow-none and other inset shadows work correctly (#​20208)
  • Ensure explicitly referenced @source directories are scanned even when ignored by git (#​20214)
  • Ensure @source globs ending in **/* preserve dynamic path segments to avoid scanning too many files (#​20217)
  • Canonicalization: don't fold calc(…) divisions when the result would require high precision (e.g. w-[calc(100%/3.5)]w-[calc(100%/3.5)], not w-[28.571428571428573%]) (#​20221)
  • Serve ESM type declarations to ESM importers of @tailwindcss/postcss (#​20228)
Changed
  • Generate 0 instead of calc(var(--spacing) * 0) for spacing utilities like m-0 and left-0 (#​20196)
  • Generate var(--spacing) instead of calc(var(--spacing) * 1) for spacing utilities like m-1 and left-1 (#​20196)

v4.3.0

Compare Source

Added
  • Add @container-size utility (#​18901)
  • Add scrollbar-{auto,thin,none} utilities for scrollbar-width, and scrollbar-thumb-* / scrollbar-track-* color utilities for scrollbar-color (#​19981, #​20019)
  • Add scrollbar-gutter-* utilities (#​20018)
  • Add zoom-* utilities (#​20020)
  • Add tab-* utilities (#​20022)
  • Allow using @variant with stacked variants (e.g. @variant hover:focus { … }) (#​19996)
  • Allow using @variant with compound variants (e.g. @variant hover, focus { … }) (#​19996)
  • Support --default(…) in --value(…) and --modifier(…) for functional @utility definitions (#​19989)
Fixed
  • Ensure @plugin resolves package JavaScript entries instead of browser CSS entries when using @tailwindcss/vite (#​19949)
  • Fix relative @import and @plugin paths resolving from the wrong directory when using @tailwindcss/vite (#​19965)
  • Ensure CSS files containing @variant are processed by @tailwindcss/vite (#​19966)
  • Resolve imports relative to base when result.opts.from is not provided when using @tailwindcss/postcss (#​19980)
  • Canonicalization: preserve significant _ whitespace in arbitrary values (#​19986)
  • Canonicalization: add parentheses when removing whitespace from arbitrary values would hurt readability (e.g. w-[calc(100%---spacing(60))]w-[calc(100%-(--spacing(60)))]) (#​19986)
  • Canonicalization: preserve the original unit in arbitrary values instead of normalizing to base units (e.g. -mt-[20in]mt-[-20in], not mt-[-1920px]) (#​19988)
  • Canonicalization: migrate arbitrary :has() variants from [&:has(…)] to has-[…] (#​19991)
  • Upgrade: don’t migrate inline style attributes (e.g. style="flex-grow: 1"style="flex-grow: 1", not style="grow: 1") (#​19918)
  • Allow multiple @utility definitions with the same name but different value types (#​19777)
  • Export missing PluginWithConfig type from tailwindcss/plugin to fix errors when inferring plugin config types (#​19707)
  • Ensure start and end legacy utilities without values do not generate CSS (#​20003)
  • Ensure --value(…) is required in functional @utility definitions (#​20005)
  • Canonicalization: preserve required whitespace around operators in negated arbitrary values (e.g. -left-[(var(--a)+var(--b))]) (#​20011)
vercel/turborepo (eslint-config-turbo)

v2.10.5: Turborepo v2.10.5

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.10.4...v2.10.5

v2.10.4: Turborepo v2.10.4

Compare Source

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.10.3...v2.10.4

v2.10.3: Turborepo v2.10.3

Compare Source

What's Changed

Changelog

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@vercel

vercel Bot commented May 7, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
vapor-ui Error Error Jul 14, 2026 6:10am

Request Review

@changeset-bot

changeset-bot Bot commented May 7, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 684b3f8

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 3d22c53 to 93aa1f8 Compare May 7, 2026 01:53
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 93aa1f8 to 1bca716 Compare May 7, 2026 21:26
@renovate renovate Bot changed the title fix(deps): update dependency @adobe/leonardo-contrast-colors to v1.1.0 fix(deps): update other dependencies (minor) May 7, 2026
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 1bca716 to 0005d96 Compare May 8, 2026 00:32
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 0005d96 to 4350d21 Compare May 8, 2026 09:53
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 4350d21 to 4d5e4b8 Compare May 8, 2026 12:14
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 4d5e4b8 to 643cf47 Compare May 8, 2026 21:47
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 643cf47 to e6138f6 Compare May 9, 2026 00:53
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from e6138f6 to e7fce43 Compare May 10, 2026 01:54
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from e7fce43 to 479fe3e Compare May 10, 2026 12:21
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 479fe3e to fe66593 Compare May 11, 2026 01:49
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from fe66593 to e6cb1dd Compare May 11, 2026 22:24
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from f606d6c to 0812ce1 Compare May 14, 2026 18:44
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 0812ce1 to 192fef7 Compare May 15, 2026 04:30
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 192fef7 to 621e221 Compare May 17, 2026 04:44
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 621e221 to 3b6d3d3 Compare May 17, 2026 12:36
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 3b6d3d3 to a57e95d Compare May 18, 2026 21:00
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from a57e95d to 4c8db84 Compare May 19, 2026 02:41
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 4c8db84 to de1572c Compare May 19, 2026 11:03
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from de1572c to 2516907 Compare May 21, 2026 09:08
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 2516907 to 9e1655a Compare May 21, 2026 21:29
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 9e1655a to 8ddf11c Compare May 22, 2026 02:10
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 8ddf11c to 5a024be Compare May 22, 2026 21:38
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 5a024be to c500121 Compare May 23, 2026 13:46
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from c500121 to 2278e61 Compare May 24, 2026 20:57
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 2278e61 to 9b45a60 Compare May 25, 2026 18:03
@renovate renovate Bot force-pushed the renovate/other-dependencies-(minor) branch from 9b45a60 to 60241eb Compare May 27, 2026 15:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant