Skip to content

chore(deps): bump the minor-updates group across 1 directory with 16 updates#53

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-updates-307f717f29
Open

chore(deps): bump the minor-updates group across 1 directory with 16 updates#53
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-updates-307f717f29

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 16, 2026

Copy link
Copy Markdown

Bumps the minor-updates group with 15 updates in the / directory:

Package From To
@astrojs/cloudflare 13.2.1 13.7.0
@radix-ui/react-avatar 1.1.2 1.2.0
@radix-ui/react-checkbox 1.1.3 1.3.5
@radix-ui/react-context-menu 2.2.4 2.3.1
@radix-ui/react-radio-group 1.2.2 1.4.1
@radix-ui/react-select 2.1.4 2.3.1
@radix-ui/react-slider 1.2.2 1.4.1
@radix-ui/react-slot 1.1.1 1.3.0
@radix-ui/react-switch 1.1.2 1.3.1
@radix-ui/react-tooltip 1.1.6 1.2.10
astro 6.1.9 6.4.7
cmdk 1.0.4 1.1.1
date-fns 4.1.0 4.4.0
embla-carousel-react 8.5.1 8.6.0
react-hook-form 7.73.1 7.79.0

Updates @astrojs/cloudflare from 13.2.1 to 13.7.0

Release notes

Sourced from @​astrojs/cloudflare's releases.

@​astrojs/cloudflare@​13.7.0

Minor Changes

  • #16571 d4b0cd1 Thanks @​MA2153! - Sets immutable cache headers for static assets

    Static assets under _astro can be cached to improve performance. The adapter now automatically injects a Cache-Control header at build time when possible.

Patch Changes

  • #16968 7a5c001 Thanks @​astrobot-houston! - Fixes a build crash when using experimental.advancedRouting with a custom fetchFile that statically imports cf from @astrojs/cloudflare/fetch. The circular dependency between @astrojs/cloudflare/fetch and astro/app/entrypoint caused createApp or createGetEnv to be undefined at module evaluation time. Initialization is now deferred to the first cf() call, breaking the cycle.

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.3

@​astrojs/cloudflare@​13.6.1

Patch Changes

  • #16914 4bdd240 Thanks @​matthewp! - Fixes astro/fetch and astro/hono being discovered at runtime during dev instead of pre-bundled

  • #16693 9e6edc2 Thanks @​ArmandPhilippot! - Fixes a link in the documentation specifying where to open an issue for the adapter.

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.3

@​astrojs/cloudflare@​13.6.0

13.6.0

Minor Changes

  • #16729 01aa164 Thanks @​matthewp! - Adds @astrojs/cloudflare/fetch and @astrojs/cloudflare/hono exports for composing Cloudflare-specific setup with Astro's advanced routing handlers.

    @astrojs/cloudflare/fetch

    For use with astro/fetch in a custom fetch handler:

    import { astro, FetchState } from 'astro/fetch';
    import { cf } from '@astrojs/cloudflare/fetch';
    export default {
    async fetch(request: Request, env: Env, ctx: ExecutionContext) {
    const state = new FetchState(request);
    const asset = await cf(state, env, ctx);
    if (asset) return asset;
    return astro(state);
    },
    };

    @astrojs/cloudflare/hono

... (truncated)

Changelog

Sourced from @​astrojs/cloudflare's changelog.

13.7.0

Minor Changes

  • #16571 d4b0cd1 Thanks @​MA2153! - Sets immutable cache headers for static assets

    Static assets under _astro can be cached to improve performance. The adapter now automatically injects a Cache-Control header at build time when possible.

Patch Changes

  • #16968 7a5c001 Thanks @​astrobot-houston! - Fixes a build crash when using experimental.advancedRouting with a custom fetchFile that statically imports cf from @astrojs/cloudflare/fetch. The circular dependency between @astrojs/cloudflare/fetch and astro/app/entrypoint caused createApp or createGetEnv to be undefined at module evaluation time. Initialization is now deferred to the first cf() call, breaking the cycle.

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.3

13.6.1

Patch Changes

  • #16914 4bdd240 Thanks @​matthewp! - Fixes astro/fetch and astro/hono being discovered at runtime during dev instead of pre-bundled

  • #16693 9e6edc2 Thanks @​ArmandPhilippot! - Fixes a link in the documentation specifying where to open an issue for the adapter.

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.3

13.6.0

Minor Changes

  • #16729 01aa164 Thanks @​matthewp! - Adds @astrojs/cloudflare/fetch and @astrojs/cloudflare/hono exports for composing Cloudflare-specific setup with Astro's advanced routing handlers.

    @astrojs/cloudflare/fetch

    For use with astro/fetch in a custom fetch handler:

    import { astro, FetchState } from 'astro/fetch';
    import { cf } from '@astrojs/cloudflare/fetch';
    export default {
    async fetch(request: Request, env: Env, ctx: ExecutionContext) {
    const state = new FetchState(request);
    const asset = await cf(state, env, ctx);
    if (asset) return asset;
    return astro(state);
    },
    };

... (truncated)

Commits

Updates @radix-ui/react-avatar from 1.1.2 to 1.2.0

Changelog

Sourced from @​radix-ui/react-avatar's changelog.

1.2.0

  • Fixed several edge cases with Avatar's loading state
    • An avatar's fallback would not be displayed again if its image component unmounted. This is now fixed.
    • Rendering multiple Avatar.Image components per Avatar.Root was never supported and results in buggy, unpredictable behavior. We now warn about this in development.
    • Zero-sized images were treated as loading, meaning that onLoadingStatusChange is never called once loaded. A zero-sized image now triggers an error status on load.

Other updates

  • Fixed console warnings to show in test environments.
  • Updated dependencies: @radix-ui/react-primitive@2.1.6

1.1.12

  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-context@1.1.4, @radix-ui/react-primitive@2.1.5, @radix-ui/react-use-callback-ref@1.1.2, @radix-ui/react-use-is-hydrated@0.1.1, @radix-ui/react-use-layout-effect@1.1.2

1.1.11

  • Updated dependencies: @radix-ui/react-context@1.1.3, @radix-ui/react-primitive@2.1.4

1.1.10

  • Replace deprecated 'ElementRef' with 'ComponentRef' (#3426)
  • Updated dependencies: @radix-ui/react-primitive@2.1.3

1.1.9

  • Updated dependencies: @radix-ui/react-primitive@2.1.2

1.1.8

  • Updated dependencies: @radix-ui/react-primitive@2.1.1

1.1.7

  • Updated dependencies: @radix-ui/react-use-is-hydrated@0.1.0

1.1.6

  • Fix breaking useSyncExternalStore import in Avatar

1.1.5

  • Updated dependencies: @radix-ui/react-primitive@2.1.0
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​radix-ui/react-avatar since your current version.


Updates @radix-ui/react-checkbox from 1.1.3 to 1.3.5

Changelog

Sourced from @​radix-ui/react-checkbox's changelog.

1.3.5

  • Updated dependencies: @radix-ui/react-primitive@2.1.6

1.3.4

  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-presence@1.1.6, @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-use-controllable-state@1.2.3, @radix-ui/react-use-previous@1.1.2, @radix-ui/react-use-size@1.1.2

1.3.3

  • Updated dependencies: @radix-ui/react-presence@1.1.5, @radix-ui/primitive@1.1.3, @radix-ui/react-context@1.1.3, @radix-ui/react-primitive@2.1.4

1.3.2

  • Replace deprecated 'ElementRef' with 'ComponentRef' (#3426)
  • Updated dependencies: @radix-ui/react-primitive@2.1.3

1.3.1

  • Fix type error emitted in build artifacts
  • Updated dependencies: @radix-ui/react-primitive@2.1.2

1.3.0

  • Add unstable Provider, Trigger and BubbleInput parts to Checkbox (#3459)
  • Updated dependencies: @radix-ui/react-primitive@2.1.1

1.2.3

  • Updated dependencies: @radix-ui/react-presence@1.1.4

1.2.2

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.2

1.2.1

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.1

1.2.0

  • All form controls with internal bubble inputs now use the Radix Primitive component by default. This will allow us to expose these components directly so users can better control this behavior in the future.
  • Minor improvements to useControllableState to enhance performance, reduce surface area for bugs, and log warnings when misused (#3455)
  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.0, @radix-ui/react-primitive@2.1.0
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​radix-ui/react-checkbox since your current version.


Updates @radix-ui/react-context-menu from 2.2.4 to 2.3.1

Changelog

Sourced from @​radix-ui/react-context-menu's changelog.

2.3.1

  • Fixed a bug where menus and submenus remained open after a window loses focus.
  • Updated dependencies: @radix-ui/react-menu@2.1.18, @radix-ui/react-primitive@2.1.6

2.3.0

  • Added support for a controlled open prop on ContextMenu.Root. This is intended for reading the open state and closing the menu programmatically, though we discourage opening the menu programmatically since opening the menu depends on user interaction to position the menu.
  • Fixed bug in context menu where submenus stayed expanded after re-opening on long-press touch events
  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-menu@2.1.17, @radix-ui/primitive@1.1.4, @radix-ui/react-context@1.1.4, @radix-ui/react-primitive@2.1.5, @radix-ui/react-use-controllable-state@1.2.3

2.2.16

  • Updated dependencies: @radix-ui/primitive@1.1.3, @radix-ui/react-context@1.1.3, @radix-ui/react-menu@2.1.16, @radix-ui/react-primitive@2.1.4

2.2.15

  • Replace deprecated 'ElementRef' with 'ComponentRef' (#3426)
  • Updated dependencies: @radix-ui/react-menu@2.1.15, @radix-ui/react-primitive@2.1.3

2.2.14

  • Updated dependencies: @radix-ui/react-menu@2.1.14, @radix-ui/react-primitive@2.1.2

2.2.13

  • Updated dependencies: @radix-ui/react-menu@2.1.13, @radix-ui/react-primitive@2.1.1

2.2.12

  • Updated dependencies: @radix-ui/react-menu@2.1.12

2.2.11

  • Updated dependencies: @radix-ui/react-menu@2.1.11

2.2.10

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.2, @radix-ui/react-menu@2.1.10

2.2.9

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.1, @radix-ui/react-menu@2.1.9

2.2.8

  • Minor improvements to useControllableState to enhance performance, reduce surface area for bugs, and log warnings when misused (#3455)
  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.0, @radix-ui/react-primitive@2.1.0, @radix-ui/react-menu@2.1.8
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​radix-ui/react-context-menu since your current version.


Updates @radix-ui/react-radio-group from 1.2.2 to 1.4.1

Changelog

Sourced from @​radix-ui/react-radio-group's changelog.

1.4.1

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

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

1.3.8

  • Updated dependencies: @radix-ui/react-presence@1.1.5, @radix-ui/primitive@1.1.3, @radix-ui/react-context@1.1.3, @radix-ui/react-primitive@2.1.4, @radix-ui/react-roving-focus@1.1.11

1.3.7

  • Replace deprecated 'ElementRef' with 'ComponentRef' (#3426)
  • Updated dependencies: @radix-ui/react-roving-focus@1.1.10, @radix-ui/react-primitive@2.1.3

1.3.6

  • Updated dependencies: @radix-ui/react-primitive@2.1.2, @radix-ui/react-roving-focus@1.1.9

1.3.5

  • Allow passing value of null to controlled Radio Group when all items are unchecked
  • Updated dependencies: @radix-ui/react-primitive@2.1.1, @radix-ui/react-roving-focus@1.1.8

1.3.4

  • Updated dependencies: @radix-ui/react-presence@1.1.4

1.3.3

  • Updated dependencies: @radix-ui/react-roving-focus@1.1.7

1.3.2

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.2, @radix-ui/react-roving-focus@1.1.6

1.3.1

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.1, @radix-ui/react-roving-focus@1.1.5

1.3.0

  • All form controls with internal bubble inputs now use the Radix Primitive component by default. This will allow us to expose these components directly so users can better control this behavior in the future.
  • Minor improvements to useControllableState to enhance performance, reduce surface area for bugs, and log warnings when misused (#3455)
  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.0, @radix-ui/react-roving-focus@1.1.4, @radix-ui/react-primitive@2.1.0
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​radix-ui/react-radio-group since your current version.


Updates @radix-ui/react-select from 2.1.4 to 2.3.1

Changelog

Sourced from @​radix-ui/react-select's changelog.

2.3.1

  • Allowed a Select.Item with an empty string value to act as a "clear" option. Selecting it resets the selection back to the placeholder, restoring the native <select> behavior for optional selects.
  • Fixed a bug where typeahead search resulted in focusing an element that no longer exists.
  • Updated dependencies: @radix-ui/react-slot@1.3.0, @radix-ui/react-popper@1.3.1, @radix-ui/react-dismissable-layer@1.1.13, @radix-ui/react-primitive@2.1.6, @radix-ui/react-collection@1.1.10, @radix-ui/react-focus-scope@1.1.10, @radix-ui/react-portal@1.1.12, @radix-ui/react-visually-hidden@1.2.6

2.3.0

  • Added unstable Provider and BubbleInput parts to Select. Select.unstable_Provider sets up Select's context and state without implicitly rendering the hidden native select, and Select.unstable_BubbleInput exposes that previously internal native select so consumers can recompose it explicitly. Select continues to render both by default.
  • Added support for presence-based exit animations in Select
  • Fixed Select hidden input so it submits empty string when no value is selected
  • Fixed placeholder rendering when a controlled Select is reset to an empty value
  • Added missing __selectScope prop to PopperContent component
  • Fixed Select closing unexpectedly after touch-scrolling its content when rendered inside an open shadow DOM
  • Fixed a bug where iOS text selection and editing on HTML inputs within react-dialog were broken
  • Fixed triggers referencing a non-existent element via aria-controls when their content is removed from the DOM (credit to @​dodomorandi for the original PR)
  • Fixed SelectValue logging invalid prop errors when used with both asChild and a placeholder
  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-presence@1.1.6, @radix-ui/react-popper@1.3.0, @radix-ui/react-slot@1.2.5, @radix-ui/react-focus-guards@1.1.4, @radix-ui/react-dismissable-layer@1.1.12, @radix-ui/react-collection@1.1.9, @radix-ui/react-direction@1.1.2, @radix-ui/number@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-focus-scope@1.1.9, @radix-ui/react-id@1.1.2, @radix-ui/react-portal@1.1.11, @radix-ui/react-primitive@2.1.5, @radix-ui/react-use-callback-ref@1.1.2, @radix-ui/react-use-controllable-state@1.2.3, @radix-ui/react-use-layout-effect@1.1.2, @radix-ui/react-use-previous@1.1.2, @radix-ui/react-visually-hidden@1.2.5

2.2.6

  • Updated dependencies: @radix-ui/react-slot@1.2.4, @radix-ui/react-popper@1.2.8, @radix-ui/react-focus-guards@1.1.3, @radix-ui/primitive@1.1.3, @radix-ui/react-context@1.1.3, @radix-ui/react-collection@1.1.8, @radix-ui/react-primitive@2.1.4, @radix-ui/react-dismissable-layer@1.1.11, @radix-ui/react-focus-scope@1.1.8, @radix-ui/react-portal@1.1.10, @radix-ui/react-visually-hidden@1.2.4

2.2.5

  • Replace deprecated 'ElementRef' with 'ComponentRef' (#3426)
  • Updated dependencies: @radix-ui/react-dismissable-layer@1.1.10, @radix-ui/react-visually-hidden@1.2.3, @radix-ui/react-focus-scope@1.1.7, @radix-ui/react-popper@1.2.7, @radix-ui/react-portal@1.1.9, @radix-ui/react-slot@1.2.3, @radix-ui/react-collection@1.1.7, @radix-ui/react-primitive@2.1.3

2.2.4

  • Updated dependencies: @radix-ui/react-slot@1.2.2, @radix-ui/react-collection@1.1.6, @radix-ui/react-primitive@2.1.2, @radix-ui/react-dismissable-layer@1.1.9, @radix-ui/react-focus-scope@1.1.6, @radix-ui/react-popper@1.2.6, @radix-ui/react-portal@1.1.8, @radix-ui/react-visually-hidden@1.2.2

2.2.3

  • Updated dependencies: @radix-ui/react-slot@1.2.1, @radix-ui/react-collection@1.1.5, @radix-ui/react-primitive@2.1.1, @radix-ui/react-dismissable-layer@1.1.8, @radix-ui/react-focus-scope@1.1.5, @radix-ui/react-popper@1.2.5, @radix-ui/react-portal@1.1.7, @radix-ui/react-visually-hidden@1.2.1

2.2.2

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.2

2.2.1

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.1

2.2.0

  • All form controls with internal bubble inputs now use the Radix Primitive component by default. This will allow us to expose these components directly so users can better control this behavior in the future.
  • Minor improvements to useControllableState to enhance performance, reduce surface area for bugs, and log warnings when misused (#3455)
  • Updated dependencies: @radix-ui/react-collection@1.1.4, @radix-ui/react-use-controllable-state@1.2.0, @radix-ui/react-visually-hidden@1.2.0, @radix-ui/react-primitive@2.1.0, @radix-ui/react-dismissable-layer@1.1.7, @radix-ui/react-focus-scope@1.1.4, @radix-ui/react-popper@1.2.4, @radix-ui/react-portal@1.1.6
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​radix-ui/react-select since your current version.


Updates @radix-ui/react-slider from 1.2.2 to 1.4.1

Changelog

Sourced from @​radix-ui/react-slider's changelog.

1.4.1

  • Fixed Duplicate index signature errors that surfaced when consuming multiple packages together.
  • Updated dependencies: @radix-ui/react-primitive@2.1.6, @radix-ui/react-collection@1.1.10

1.4.0

  • Added unstable ThumbProvider, ThumbTrigger, and BubbleInput parts to Slider. SliderThumb was previously a single component that implicitly rendered a hidden native input for form submission. It is now composed from these new parts, which are exposed so consumers can decouple the bubble input from the thumb (for example, to render or customize it independently) instead of relying on SliderThumb to render it implicitly. SliderThumb continues to render all three by default, so existing usage is unaffected.
  • Added focusVisible for non-keyboard interactions with slider thumbs for progressively enabling styles using :focus-visible alongside programmatic focus management
  • Fixed Slider focus bugs in scrollable context
  • Fixed a Slider bug where very small step values made the thumbs unresponsive
  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-collection@1.1.9, @radix-ui/react-direction@1.1.2, @radix-ui/number@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-use-controllable-state@1.2.3, @radix-ui/react-use-layout-effect@1.1.2, @radix-ui/react-use-previous@1.1.2, @radix-ui/react-use-size@1.1.2

1.3.6

  • Updated dependencies: @radix-ui/primitive@1.1.3, @radix-ui/react-context@1.1.3, @radix-ui/react-collection@1.1.8, @radix-ui/react-primitive@2.1.4

1.3.5

  • Replace deprecated 'ElementRef' with 'ComponentRef' (#3426)
  • Updated dependencies: @radix-ui/react-collection@1.1.7, @radix-ui/react-primitive@2.1.3

1.3.4

  • Updated dependencies: @radix-ui/react-collection@1.1.6, @radix-ui/react-primitive@2.1.2

1.3.3

  • Updated dependencies: @radix-ui/react-collection@1.1.5, @radix-ui/react-primitive@2.1.1

1.3.2

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.2

1.3.1

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.1

1.3.0

  • All form controls with internal bubble inputs now use the Radix Primitive component by default. This will allow us to expose these components directly so users can better control this behavior in the future.
  • Updated dependencies: @radix-ui/react-collection@1.1.4, @radix-ui/react-use-controllable-state@1.2.0, @radix-ui/react-primitive@2.1.0
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​radix-ui/react-slider since your current version.


Updates @radix-ui/react-slot from 1.1.1 to 1.3.0

Changelog

Sourced from @​radix-ui/react-slot's changelog.

1.3.0

Added generic type arguments for SlotProps and createSlot

SlotProps and createSlot now accept generic type arguments to specify the type of element a slot should render, as well as its props.

const Slot = createSlot<HTMLButtonElement, MyCustomButtonProps>("Slot");

1.2.5

  • Fixed infinite re-render loop in React 19 caused by Slot creating a new ref callback on every render
  • Added support for nested Slottable via a render prop, so a slotted element can be wrapped while still merging Slot props and refs onto it
  • Added repository.directory to all package.json files
  • Improved error messages for invalid slot children
  • Updated dependencies: @radix-ui/react-compose-refs@1.1.3

1.2.4

  • Fixed an issue with how slot components interact with lazy React components. In the case of a lazy component instance, the resulting promise must be consumed to render the desired component.

1.2.3

  • Replace deprecated 'ElementRef' with 'ComponentRef' (#3426)
  • Revert slot changes causing errors in server components

1.2.2

  • Add use client to slot entry to prevent RSC errors

1.2.1

  • Use stable composed refs in SlotClone (#3477)
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​radix-ui/react-slot since your current version.


Updates @radix-ui/react-switch from 1.1.2 to 1.3.1

Changelog

Sourced from @​radix-ui/react-switch's changelog.

1.3.1

  • Updated dependencies: @radix-ui/react-primitive@2.1.6

1.3.0

  • Added unstable Provider, Trigger and BubbleInput parts to Switch. These expose the previously internal composition (context provider, the interactive control, and the hidden form input) so consumers can directly access and recompose them. The Switch component continues to render them by default.
  • Added repository.directory to all package.json files
  • Updated dependencies: @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-use-controllable-state@1.2.3, @radix-ui/react-use-previous@1.1.2, @radix-ui/react-use-size@1.1.2

1.2.6

  • Updated dependencies: @radix-ui/primitive@1.1.3, @radix-ui/react-context@1.1.3, @radix-ui/react-primitive@2.1.4

1.2.5

  • Replace deprecated 'ElementRef' with 'ComponentRef' (#3426)
  • Updated dependencies: @radix-ui/react-primitive@2.1.3

1.2.4

  • Updated dependencies: @radix-ui/react-primitive@2.1.2

1.2.3

  • Updated dependencies: @radix-ui/react-primitive@2.1.1

1.2.2

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.2

1.2.1

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.1

1.2.0

  • All form controls with internal bubble inputs now use the Radix Primitive component by default. This will allow us to expose these components directly so users can better control this behavior in the future.
  • Minor improvements to useControllableState to enhance performance, reduce surface area for bugs, and log warnings when misused (#3455)
  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.0, @radix-ui/react-primitive@2.1.0
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​radix-ui/react-switch since your current version.


Updates @radix-ui/react-tooltip from 1.1.6 to 1.2.10

Changelog

Sourced from @​radix-ui/react-tooltip's changelog.

1.2.10

  • Updated dependencies: @radix-ui/react-slot@1.3.0, @radix-ui/react-popper@1.3.1, @radix-ui/react-dismissable-layer@1.1.13, @radix-ui/react-primitive@2.1.6, @radix-ui/react-portal@1.1.12, @radix-ui/react-visually-hidden@1.2.6

1.2.9

  • Fixed runtime error when event target is non-Node
  • Fixed a Tooltip bug so that skipDelayDuration={0} works as expected. Previously, the open delay could still be skipped when moving between triggers.
  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-presence@1.1.6, @radix-ui/react-popper@1.3.0, @radix-ui/react-slot@1.2.5, @radix-ui/react-dismissable-layer@1.1.12, @radix-ui/primitive@1.1.4, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.1.4, @radix-ui/react-id@1.1.2, @radix-ui/react-portal@1.1.11, @radix-ui/react-primitive@2.1.5, @radix-ui/react-use-controllable-state@1.2.3, @radix-ui/react-visually-hidden@1.2.5

1.2.8

  • Updated dependencies: @radix-ui/react-presence@1.1.5, @radix-ui/react-slot@1.2.4, @radix-ui/react-popper@1.2.8, @radix-ui/primitive@1.1.3, @radix-ui/react-context@1.1.3, @radix-ui/react-primitive@2.1.4, @radix-ui/react-dismissable-layer@1.1.11, @radix-ui/react-portal@1.1.10, @radix-ui/react-visually-hidden@1.2.4

1.2.7

  • Replace deprecated 'ElementRef' with 'ComponentRef' (#3426)
  • Updated dependencies: @radix-ui/react-dismissable-layer@1.1.10, @radix-ui/react-visually-hidden@1.2.3, @radix-ui/react-popper@1.2.7, @radix-ui/react-portal@1.1.9, @radix-ui/react-slot@1.2.3, @radix-ui/react-primitive@2.1.3

1.2.6

  • Updated dependencies: @radix-ui/react-slot@1.2.2, @radix-ui/react-primitive@2.1.2, @radix-ui/react-dismissable-layer@1.1.9, @radix-ui/react-popper@1.2.6, @radix-ui/react-portal@1.1.8, @radix-ui/react-visually-hidden@1.2.2

1.2.5

  • Updated dependencies: @radix-ui/react-slot@1.2.1, @radix-ui/react-primitive@2.1.1, @radix-ui/react-dismissable-layer@1.1.8, @radix-ui/react-popper@1.2.5, @radix-ui/react-portal@1.1.7, @radix-ui/react-visually-hidden@1.2.1

1.2.4

  • Updated dependencies: @radix-ui/react-presence@1.1.4

1.2.3

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.2

1.2.2

  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.1

1.2.1

  • Minor improvements to useControllableState to enhance performance, reduce surface area for bugs, and log warnings when misused (#3455)
  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.0, @radix-ui/react-visually-hidden@1.2.0, @radix-ui/react-primitive@2.1.0, @radix-ui/react-dismissable-layer@1.1.7, @radix-ui/react-popper@1.2.4, @radix-ui/react-portal@1.1.6
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​radix-ui/react-tooltip since your current version.


Updates astro from 6.1.9 to 6.4.7

Release notes

Sourced from astro's releases.

astro@6.4.7

Patch Changes

  • #17035 197e50e Thanks @​astrobot-houston! - Fixes getRelativeLocaleUrl, getAbsoluteLocaleUrl, and getAbsoluteLocaleUrlList to strip trailing slashes when trailingSlash: 'never' is configured

  • #16967 3719765 Thanks @​astrobot-houston! - Fixes double URL-encoded paths returning 400 Bad Request on on-demand routes

    Previously, any URL containing a double-encoded character (like %255B, which is [ encoded twice) was unconditionally rejected with a 400 Bad Request before middleware or route handlers could run. This broke embedded tools like Sanity Studio whose client-side router legitimately produces double-encoded URLs.

    The fix replaces the rejection approach with iterative decoding — multi-level percent-encoding is now fully resolved to its canonical form before being passed to middleware and route matching. This preserves the security fix for CVE-2025-66202 (middleware authorization bypass via double encoding) because middleware now always sees the fully decoded path, making bypass impossible. For example, /api/%2561dmin is decoded to /api/admin, which middleware can correctly block.

  • #17066 2f4d92a Thanks @​matthewp! - Fixes prerendered redirect targets being incorrectly bundled into the SSR function in hybrid mode, causing massive bundle size inflation

  • #16882 621beb7 Thanks @​jettwayio! - fix(render): honour compressHTML when joining head elements

  • #16892 8d753b0 Thanks @​astrobot-houston! - Fixes custom elements in MDX having their children's slot attribute stripped by the JSX runtime

    When custom elements (tags with hyphens like <my-element>) are used in MDX files, the slot HTML attribute on their children is now correctly preserved. Previously, the shared JSX runtime would treat slot as an Astro slot assignment and remove it from the output, breaking Shadow DOM named slot distribution for web components.

  • #16957 544ee76 Thanks @​thelazylamaGit! - Fixes stale inline CSS in server-rendered HTML after CSS file edits during dev

    When editing a CSS file (.css, .scss, etc.) during development, the inline <style> tags in server-rendered HTML would retain old CSS content instead of updating. This caused a brief flash of old CSS (FOUC) on fresh page loads before Vite's client-side HMR corrected the styles.

    The fix ensures that Astro's per-route dev CSS virtual modules are invalidated in both the SSR module graph and the module runner's evaluation cache when a style file changes, so the next page render picks up the fresh CSS.

  • #17044 2220d22 Thanks @​astrobot-houston! - Fixes CSS from client:only islands leaking to unrelated pages when Rollup bundles non-CSS-importing modules into the same chunk as CSS-importing modules

  • #17040 7c4763d Thanks @​astrobot-houston! - Fixes HMR not triggering for files inside the src/middleware/ directory during dev

  • #16672 52fc862 Thanks @​martinheidegger! - Fixes support for numeric IDs in YAML frontmatter when using content collection references

  • #16762 9de80ae Thanks @​alexanderdombroski! - Adds a JSON schema to the Wrangler configuration file generated when running astro add cloudflare

  • #17046 ef771ec Thanks @​ematipico! - Improves the diagnostics emitted when Astro parses incorrect .astro files.

astro@6.4.6

Patch Changes

  • #16765 b10e86e Thanks @​fkatsuhiro! - Fixes an issue where renaming an image file while the dev server is running triggers a build error. Now Astro correctly hot-reloads the image without crashing.

  • #17026 add3df1 Thanks @​matthewp! - Hardens addAttribute to drop attribute names containing characters that are invalid per the HTML spec (", ', >, /, =, whitespace)

  • #17033 ffda27b Thanks @​matthewp! - Validates the request origin against allowedDomains before fetching prerendered error pages. When allowedDomains is configured and the Host header matches, the original origin is used. Otherwise, the fetch falls back to localhost.

astro@6.4.5

Patch Changes

  • #16985 4ecff32 Thanks @​maximslo! - Fixes the experimental.logger destination not being used for the "Server listening on..." startup message. The logger is now resolved before the server starts listening, and adapterLogger re-creates itself when the underlying logger changes so the startup message uses the correct destination.

  • #16947 e0703a6 Thanks @​ematipico! - Fixes Astro.request.url not reflecting validated X-Forwarded-Proto/X-Forwarded-Host headers when security.allowedDomains is configured. Previously, only Astro.url was updated with the forwarded origin while Astro.request.url retained the socket-derived URL, causing the two to diverge behind TLS-terminating proxies.

... (truncated)

Changelog

Sourced from astro's changelog.

6.4.7

Patch Changes

  • #17035 197e50e Thanks @​astrobot-houston! - Fixes getRelativeLocaleUrl, getAbsoluteLocaleUrl, and getAbsoluteLocaleUrlList to strip trailing slashes when trailingSlash: 'never' is configured

  • #16967 3719765 Thanks @​astrobot-houston! - Fixes double URL-encoded paths returning 400 Bad Request on on-demand routes

    Previously, any URL containing a double-encoded character (like %255B, which is [ encoded twice) was unconditionally rejected with a 400 Bad Request before middleware or route handlers could run. This broke embedded tools like Sanity Studio whose client-side router legitimately produces double-encoded URLs.

    The fix replaces the rejection approach with iterative decoding — multi-level percent-encoding is now fully resolved to its canonical form before being passed to middleware and route matching. This preserves the security fix for CVE-2025-66202 (middleware authorization bypass via double encoding) because middleware now always sees the fully decoded path, making bypass impossible. For example, /api/%2561dmin is decoded to /api/admin, which middleware can correctly block.

  • #17066 2f4d92a Thanks @​matthewp! - Fixes prerendered redirect targets being incorrectly bundled into the SSR function in hybrid mode, causing massive bundle size inflation

  • #16882 621beb7 Thanks @​jettwayio! - fix(render): honour compressHTML when joining head elements

  • #16892 8d753b0 Thanks @​astrobot-houston! - Fixes custom elements in MDX having their children's slot attribute stripped by the JSX runtime

    When custom elements (tags with hyphens like <my-element>) are used in MDX files, the slot HTML attribute on their children is now correctly preserved. Previously, the shared JSX runtime would treat slot as an Astro slot assignment and remove it from the output, breaking Shadow DOM named slot distribution for web components.

  • #16957 544ee76 Thanks @​thelazylamaGit! - Fixes stale inline CSS in server-rendered HTML after CSS file edits during dev

    When editing a CSS file (.css, .scss, etc.) during development, the inline <style> tags in server-rendered HTML would retain old CSS content instead of updating. This caused a brief flash of old CSS (FOUC) on fresh page loads before Vite's client-side HMR corrected the styles.

    The fix ensures that Astro's per-route dev CSS virtual modules are invalidated in both the SSR module graph and the module runner's evaluation cache when a style file changes, so the next page render picks up the fresh CSS.

  • #17044 2220d22 Thanks @​astrobot-houston! - Fixes CSS from client:only islands leaking to unrelated pages when Rollup bundles non-CSS-importing modules into the same chunk as CSS-importing modules

  • #17040 7c4763d Thanks @​astrobot-houston! - Fixes HMR not triggering for files inside the src/middleware/ directory during dev

  • #16672 52fc862 Thanks @​martinheidegger! - Fixes support for numeric IDs in YAML frontmatter when using content collection references

  • #16762 9de80ae Thanks @​alexanderdombroski! - Adds a JSON schema to the Wrangler configuration file generated when running astro add cloudflare

  • #17046 ef771ec Thanks @​ematipico! - Improves the diagnostics emitted when Astro parses incorrect .astro files.

6.4.6

Patch Changes

  • #16765 b10e86e Thanks @​fkatsuhiro! - Fixes an issue where renaming an image file while the dev server is running triggers a build error. Now Astro correctly hot-reloads the image without crashing.

  • #17026 add3df1 Thanks @​matthewp! - Hardens addAttribute to drop attribute names containing characters that are invalid per the HTML spec (", ', >, /, =, whitespace)

  • #17033 ffda27b Thanks @​matthewp! - Validates the request origin against allowedDomains before fetching prerendered err...

    Description has been truncated

…updates

Bumps the minor-updates group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/cloudflare](https://github.com/withastro/astro/tree/HEAD/packages/integrations/cloudflare) | `13.2.1` | `13.7.0` |
| [@radix-ui/react-avatar](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/avatar) | `1.1.2` | `1.2.0` |
| [@radix-ui/react-checkbox](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/checkbox) | `1.1.3` | `1.3.5` |
| [@radix-ui/react-context-menu](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/context-menu) | `2.2.4` | `2.3.1` |
| [@radix-ui/react-radio-group](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/radio-group) | `1.2.2` | `1.4.1` |
| [@radix-ui/react-select](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/select) | `2.1.4` | `2.3.1` |
| [@radix-ui/react-slider](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/slider) | `1.2.2` | `1.4.1` |
| [@radix-ui/react-slot](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/slot) | `1.1.1` | `1.3.0` |
| [@radix-ui/react-switch](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/switch) | `1.1.2` | `1.3.1` |
| [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/tooltip) | `1.1.6` | `1.2.10` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `6.1.9` | `6.4.7` |
| [cmdk](https://github.com/pacocoursey/cmdk/tree/HEAD/cmdk) | `1.0.4` | `1.1.1` |
| [date-fns](https://github.com/date-fns/date-fns) | `4.1.0` | `4.4.0` |
| [embla-carousel-react](https://github.com/davidjerleke/embla-carousel) | `8.5.1` | `8.6.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.73.1` | `7.79.0` |



Updates `@astrojs/cloudflare` from 13.2.1 to 13.7.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/cloudflare/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/cloudflare@13.7.0/packages/integrations/cloudflare)

Updates `@radix-ui/react-avatar` from 1.1.2 to 1.2.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/avatar/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/avatar)

Updates `@radix-ui/react-checkbox` from 1.1.3 to 1.3.5
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/checkbox/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/checkbox)

Updates `@radix-ui/react-context-menu` from 2.2.4 to 2.3.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/context-menu/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/context-menu)

Updates `@radix-ui/react-radio-group` from 1.2.2 to 1.4.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/radio-group/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/radio-group)

Updates `@radix-ui/react-select` from 2.1.4 to 2.3.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/select/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/select)

Updates `@radix-ui/react-slider` from 1.2.2 to 1.4.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/slider/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/slider)

Updates `@radix-ui/react-slot` from 1.1.1 to 1.3.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/slot/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/slot)

Updates `@radix-ui/react-switch` from 1.1.2 to 1.3.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/switch/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/switch)

Updates `@radix-ui/react-tooltip` from 1.1.6 to 1.2.10
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/tooltip/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/tooltip)

Updates `astro` from 6.1.9 to 6.4.7
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@6.4.7/packages/astro)

Updates `cmdk` from 1.0.4 to 1.1.1
- [Release notes](https://github.com/pacocoursey/cmdk/releases)
- [Commits](https://github.com/pacocoursey/cmdk/commits/v1.1.1/cmdk)

Updates `date-fns` from 4.1.0 to 4.4.0
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Commits](date-fns/date-fns@v4.1.0...v4.4.0)

Updates `embla-carousel-react` from 8.5.1 to 8.6.0
- [Release notes](https://github.com/davidjerleke/embla-carousel/releases)
- [Commits](davidjerleke/embla-carousel@v8.5.1...v8.6.0)

Updates `react-hook-form` from 7.73.1 to 7.79.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.73.1...v7.79.0)

Updates `wrangler` from 4.84.1 to 4.100.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.100.0/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@astrojs/cloudflare"
  dependency-version: 13.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@radix-ui/react-avatar"
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@radix-ui/react-checkbox"
  dependency-version: 1.3.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@radix-ui/react-context-menu"
  dependency-version: 2.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@radix-ui/react-radio-group"
  dependency-version: 1.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@radix-ui/react-select"
  dependency-version: 2.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@radix-ui/react-slider"
  dependency-version: 1.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@radix-ui/react-slot"
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@radix-ui/react-switch"
  dependency-version: 1.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@radix-ui/react-tooltip"
  dependency-version: 1.2.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: astro
  dependency-version: 6.4.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: cmdk
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: date-fns
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: embla-carousel-react
  dependency-version: 8.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: react-hook-form
  dependency-version: 7.79.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: wrangler
  dependency-version: 4.100.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
...

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 Jun 16, 2026
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jun 16, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
b3-app 8798326 Commit Preview URL

Branch Preview URL
Jun 16 2026, 06:27 AM

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.

0 participants