Stu Mason
Stu Mason

Activity

StuMason/cleanconnect
TidyLinker.com
TypeScript
Pull Request Opened

PR #143 opened: chore(deps): bump the minor-and-patch group across 1 directory with 24 updates

Bumps the minor-and-patch group with 20 updates in the / directory:

PackageFromTo
@headlessui/react2.2.92.2.10
@inertiajs/react3.0.23.0.3
@sentry/react10.47.010.51.0
@stripe/react-stripe-js6.1.06.3.0
@tailwindcss/vite4.2.24.2.4
globals17.4.017.6.0
laravel-echo2.3.32.3.4
laravel-vite-plugin3.0.13.1.0
lucide-react1.7.01.14.0
react19.2.419.2.5
react-dom19.2.419.2.5
typescript6.0.26.0.3
vite8.0.58.0.10
@types/node25.5.225.6.0
eslint-plugin-react-hooks7.0.17.1.1
prettier3.8.13.8.3
prettier-plugin-tailwindcss0.7.20.8.0
typescript-eslint8.58.08.59.1
@rollup/rollup-linux-x64-gnu4.59.04.60.2
@rollup/rollup-win32-x64-msvc4.59.04.60.2

Updates @headlessui/react from 2.2.9 to 2.2.10

Release notes

Sourced from @​headlessui/react's releases.

@​headlessui/react@​v2.2.10

Fixed

  • Don’t render <Portal> while hydrating (#3825)
  • Fix passing props on Fragment error due to Symbol(react.lazy) (#3873)
Changelog

Sourced from @​headlessui/react's changelog.

[2.2.10] - 2026-04-07

Fixed

  • Don’t render <Portal> while hydrating (#3825)
  • Fix passing props on Fragment error due to Symbol(react.lazy) (#3873)
Commits

Updates @inertiajs/react from 3.0.2 to 3.0.3

Release notes

Sourced from @​inertiajs/react's releases.

v3.0.3

What's Changed

Full Changelog: https://github.com/inertiajs/inertia/compare/v3.0.2...v3.0.3

Changelog

Sourced from @​inertiajs/react's changelog.

v3.0.3 - 2026-04-07

What's Changed

Full Changelog: https://github.com/inertiajs/inertia/compare/v3.0.2...v3.0.3

Commits
  • 66241d2 v3.0.3
  • a7a499e Add onHttpException, onNetworkError, and response to onSuccess in useHttp (#3...
  • f757d49 Fix flash event not firing when response contains errors (#3038)
  • 2fe7751 [3.x] Fix layout props callback misclassifying function-valued props as named...
  • ffeef38 [3.x] Infer form data keys in resetOnSuccess and resetOnError (#3048)
  • 5083325 [3.x] Update TSConfig and bump CI actions (#3047)
  • 0d0d99f [3.x] Bump Vite and Vitest (#3046)
  • See full diff in compare view

Updates @sentry/react from 10.47.0 to 10.51.0

Release notes

Sourced from @​sentry/react's releases.

10.51.0

Important Changes

  • feat(cloudflare): Add trace propagation for RPC method calls (#20343)

    Trace context is now propagated across Cloudflare Workers RPC calls, connecting traces between Workers and Durable Objects. This feature is opt-in and requires setting enableRpcTracePropagation: true in your SDK configuration:

    // Worker
    export default Sentry.withSentry(
      env => ({
        dsn: env.SENTRY_DSN,
        enableRpcTracePropagation: true,
      }),
      handler,
    );
    

    // Durable Object
    export const MyDurableObject = Sentry.instrumentDurableObjectWithSentry(
    env => ({
    dsn: env.SENTRY_DSN,
    enableRpcTracePropagation: true,
    }),
    MyDurableObjectBase,
    );

  • feat(hono)!: Change setup for @sentry/hono/node (init in external file) (#20497)

    To improve Node.js instrumentation, the sentry() middleware exported from @sentry/hono/node no longer accepts configuration options. Instead, you must configure the SDK by calling Sentry.init() in a dedicated instrumentation file that runs before your application code (read more in the Hono SDK readme:

    // instrument.mjs (or instrument.ts)
    import * as Sentry from '@sentry/hono/node';
    

    Sentry.init({
    dsn: 'DSN',
    tracesSampleRate: 1.0,
    });

  • feat(nitro): Add @sentry/nitro SDK (#19224)

    A new @sentry/nitro package provides first-class Sentry support for Nitro applications, with HTTP handler and error instrumentation, middleware tracing, request isolation, and build-time source map uploading via withSentryConfig. Read more in the Nitro SDK docs and the Nitro SDK readme.

Other Changes

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

10.51.0

Important Changes

  • feat(cloudflare): Add trace propagation for RPC method calls (#20343)

    Trace context is now propagated across Cloudflare Workers RPC calls, connecting traces between Workers and Durable Objects. This feature is opt-in and requires setting enableRpcTracePropagation: true in your SDK configuration:

    // Worker
    export default Sentry.withSentry(
      env => ({
        dsn: env.SENTRY_DSN,
        enableRpcTracePropagation: true,
      }),
      handler,
    );
    

    // Durable Object
    export const MyDurableObject = Sentry.instrumentDurableObjectWithSentry(
    env => ({
    dsn: env.SENTRY_DSN,
    enableRpcTracePropagation: true,
    }),
    MyDurableObjectBase,
    );

  • feat(hono)!: Change setup for @sentry/hono/node (init in external file) (#20497)

    To improve Node.js instrumentation, the sentry() middleware exported from @sentry/hono/node no longer accepts configuration options. Instead, you must configure the SDK by calling Sentry.init() in a dedicated instrumentation file that runs before your application code (read more in the Hono SDK readme:

    // instrument.mjs (or instrument.ts)
    import * as Sentry from '@sentry/hono/node';
    

    Sentry.init({
    dsn: 'DSN',
    tracesSampleRate: 1.0,
    });

  • feat(nitro): Add @sentry/nitro SDK (#19224)

    A new @sentry/nitro package provides first-class Sentry support for Nitro applications, with HTTP handler and error instrumentation, middleware tracing, request isolation, and build-time source map uploading via withSentryConfig. Read more in the Nitro SDK docs and the Nitro SDK readme.

Other Changes

... (truncated)

Commits
  • dc0b839 release: 10.51.0
  • b3cabee Merge pull request #20599 from getsentry/prepare-release/10.51.0
  • 3be99a9 meta(changelog): Update changelog for 10.51.0
  • bea1aad test(browser): Unflake some more tests (#20591)
  • 50aa085 test(node): Unflake postgres tests (#20593)
  • 1166839 fix(hono): Distinguish .use() middleware in sub-apps from .all() handlers...
  • 217ad4a test(node): Fix flaky ANR test (#20592)
  • 91ffb3f test(node): Fix flaky worker thread integration test (#20588)
  • c4e3902 chore(ci): Do not report flaky test issues if we cannot find a test name (#20...
  • c0005cd test(node): Update timeout for cron integration tests (#20586)
  • Additional commits viewable in compare view

Updates @stripe/react-stripe-js from 6.1.0 to 6.3.0

Release notes

Sourced from @​stripe/react-stripe-js's releases.

v6.3.0

New features

PR stripe/react-stripe-js#672

  • Added useCheckoutElements(): use this inside <CheckoutElementsProvider>.
  • Added useCheckoutForm(): use this inside <CheckoutFormProvider>.
  • Both new hooks throw a clear runtime error if called under the wrong provider.
  • useCheckout() is now deprecated in favor of the two hooks above. It will keep working under both providers for backward compatibility and is planned for removal in the next major release (v7.0.0).

v6.2.0

New features

  • add contactDetails element (#670)

Changes

  • Bump lodash from 4.17.23 to 4.18.1 (#669)
Commits

Updates @stripe/stripe-js from 9.1.0 to 9.4.0

Release notes

Sourced from @​stripe/stripe-js's releases.

v9.4.0

Changed

  • Add ReleaseTrain type (#923)
  • Add hashedValue overload to handleNextAction (#889)

v9.3.1

Fixes

  • Remove client-only actions from form SDK (#922)

v9.3.0

Fixes

  • Add PMC to PE update options (#921)
  • add phone to checkout form change event (#920)
  • Bump lodash from 4.17.23 to 4.18.1 in /examples/parcel (#917)

v9.2.0

New features

  • add contactDetails element (#915)

Changed

  • Bump lodash from 4.17.23 to 4.18.1 (#913)
  • Bump lodash from 4.17.23 to 4.18.1 in /examples/rollup (#912)
Commits

Updates @tailwindcss/vite from 4.2.2 to 4.2.4

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.2.4

Fixed

  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#19947)

v4.2.3

Fixed

  • Canonicalization: improve canonicalizations for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)
  • Upgrade: never migrate files that are ignored by git (#19846)
  • Add .env and .env.* to default ignored content files (#19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#19858)
  • Improve performance when scanning JSONL / NDJSON files (#19862)
  • Support NODE_PATH environment variable in standalone CLI (#19617)
Changelog

Sourced from @​tailwindcss/vite's changelog.

[4.2.4] - 2026-04-21

Fixed

  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#19947)

[4.2.3] - 2026-04-20

Fixed

  • Canonicalization: improve canonicalization for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)
  • Upgrade: never migrate files that are ignored by git (#19846)
  • Add .env and .env.* to default ignored content files (#19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#19858)
  • Improve performance when scanning JSONL / NDJSON files (#19862)
  • Support NODE_PATH environment variable in standalone CLI (#19617)
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​tailwindcss/vite since your current version.


Updates globals from 17.4.0 to 17.6.0

Release notes

Sourced from globals's releases.

v17.6.0

  • Update globals (2026-05-01) (#343) 00a4dd9

https://github.com/sindresorhus/globals/compare/v17.5.0...v17.6.0

v17.5.0

  • Update globals (2026-04-12) (#342) 5d84602

https://github.com/sindresorhus/globals/compare/v17.4.0...v17.5.0

Commits

Updates laravel-echo from 2.3.3 to 2.3.4

Release notes

Sourced from laravel-echo's releases.

v2.3.4

What's Changed

Full Changelog: https://github.com/laravel/echo/compare/v2.3.3...v2.3.4

Changelog

Sourced from laravel-echo's changelog.

v2.3.4 - 2026-04-07

What's Changed

Full Changelog: https://github.com/laravel/echo/compare/v2.3.3...v2.3.4

Commits

Updates laravel-vite-plugin from 3.0.1 to 3.1.0

Release notes

Sourced from laravel-vite-plugin's releases.

v3.1.0

Full Changelog: https://github.com/laravel/vite-plugin/compare/v3.0.3...v3.1.0

v3.0.3

What's Changed

New Contributors

Full Changelog: https://github.com/laravel/vite-plugin/compare/v3.0.1...v3.0.3

Changelog

Sourced from laravel-vite-plugin's changelog.

v3.1.0 - 2026-04-29

Full Changelog: https://github.com/laravel/vite-plugin/compare/v3.0.3...v3.1.0

v3.0.3 - 2026-04-29

What's Changed

New Contributors

Full Changelog: https://github.com/laravel/vite-plugin/compare/v3.0.1...v3.0.3

v3.0.0 - 2026-03-18

What's Changed

Please see the upgrade guide for important upgrade steps.

Full Changelog: https://github.com/laravel/vite-plugin/compare/v2.1.0...v3.0.0

v2.1.0 - 2026-01-20

v2.0.1 - 2025-08-26

v2.0.0 - 2025-07-09

v1.3.0 - 2025-06-03

v1.2.0 - 2025-01-21

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for laravel-vite-plugin since your current version.


Updates lucide-react from 1.7.0 to 1.14.0

Release notes

Sourced from lucide-react's releases.

Version 1.14.0

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/1.13.0...1.14.0

Version 1.13.0

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/1.12.0...1.13.0

Version 1.12.0

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/1.10.0...1.12.0

Version 1.11.0

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/1.9.0...1.11.0

Version 1.10.0

What's Changed

... (truncated)

Commits
  • 50d8af5 docs(readme): Update readme files (#4320)
  • 653e44b feat(packages): use .mjs for ESM bundles (#4285)
  • 7623e23 feat(docs): add Zephyr Cloud to Hero Backers tier & rework updateSponsors scr...
  • See full diff in compare view

Updates react from 19.2.4 to 19.2.5

Release notes

Sourced from react's releases.

19.2.5 (April 8th, 2026)

React Server Components

Commits

Updates react-dom from 19.2.4 to 19.2.5

Release notes

Sourced from react-dom's releases.

19.2.5 (April 8th, 2026)

React Server Components

Commits

Updates tailwindcss from 4.2.2 to 4.2.4

Release notes

Sourced from tailwindcss's releases.

v4.2.4

Fixed

  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#19947)

v4.2.3

Fixed

  • Canonicalization: improve canonicalizations for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)
  • Upgrade: never migrate files that are ignored by git (#19846)
  • Add .env and .env.* to default ignored content files (#19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#19858)
  • Canonicalization: move the - sign outside the arbitrary value ...

    Description has been truncated

+439
additions
-372
deletions
2
files changed