Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #492

Merged
merged 4 commits into from
Mar 25, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 24, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cloudflare/workers-types ^4.20250313.0 -> ^4.20250321.0 age adoption passing confidence
@eslint/js (source) ^9.22.0 -> ^9.23.0 age adoption passing confidence
@hono/node-server ^1.13.8 -> ^1.14.0 age adoption passing confidence
@pandacss/dev (source) ^0.53.1 -> ^0.53.3 age adoption passing confidence
@sentry/react (source) ^9.5.0 -> ^9.9.0 age adoption passing confidence
@sentry/solid (source) ^9.5.0 -> ^9.9.0 age adoption passing confidence
@sentry/vue (source) ^9.5.0 -> ^9.9.0 age adoption passing confidence
@tailwindcss/vite (source) ^4.0.14 -> ^4.0.15 age adoption passing confidence
@types/aws-lambda (source) ^8.10.147 -> ^8.10.148 age adoption passing confidence
@types/estree (source) ^1.0.6 -> ^1.0.7 age adoption passing confidence
@types/react (source) ^19.0.10 -> ^19.0.12 age adoption passing confidence
@typescript-eslint/parser (source) ^8.26.1 -> ^8.28.0 age adoption passing confidence
@typescript-eslint/utils (source) ^8.26.1 -> ^8.28.0 age adoption passing confidence
@vitejs/plugin-vue (source) ^5.2.2 -> ^5.2.3 age adoption passing confidence
aws-cdk (source) ^2.1004.0 -> ^2.1005.0 age adoption passing confidence
aws-cdk-lib (source) ^2.184.1 -> ^2.185.0 age adoption passing confidence
better-sqlite3 ^11.9.0 -> ^11.9.1 age adoption passing confidence
cdk (source) ^2.1004.0 -> ^2.1005.0 age adoption passing confidence
daisyui (source) ^5.0.4 -> ^5.0.9 age adoption passing confidence
drizzle-orm (source) ^0.40.0 -> ^0.41.0 age adoption passing confidence
eslint (source) ^9.22.0 -> ^9.23.0 age adoption passing confidence
eslint-plugin-prettier ^5.2.3 -> ^5.2.5 age adoption passing confidence
firebase (source, changelog) ^11.4.0 -> ^11.5.0 age adoption passing confidence
hono (source) ^4.7.4 -> ^4.7.5 age adoption passing confidence
lucide-react (source) ^0.482.0 -> ^0.483.0 age adoption passing confidence
tailwindcss (source) ^4.0.14 -> ^4.0.15 age adoption passing confidence
telefunc (source) ^0.2.1 -> ^0.2.2 age adoption passing confidence
typescript-eslint (source) ^8.26.1 -> ^8.28.0 age adoption passing confidence
vike ^0.4.225 -> ^0.4.227 age adoption passing confidence
vike-vue ^0.8.7 -> ^0.9.0 age adoption passing confidence
vite (source) ^6.2.2 -> ^6.2.3 age adoption passing confidence
vitest (source) ^3.0.8 -> ^3.0.9 age adoption passing confidence
wrangler (source) ^4.0.0 -> ^4.4.0 age adoption passing confidence

Release Notes

cloudflare/workerd (@​cloudflare/workers-types)

v4.20250321.0

Compare Source

v4.20250320.0

Compare Source

v4.20250319.0

Compare Source

v4.20250317.0

Compare Source

eslint/eslint (@​eslint/js)

v9.23.0

Compare Source

honojs/node-server (@​hono/node-server)

v1.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.13.8...v1.14.0

chakra-ui/panda (@​pandacss/dev)

v0.53.3

Compare Source

Patch Changes

v0.53.2

Compare Source

Patch Changes
getsentry/sentry-javascript (@​sentry/react)

v9.9.0

Compare Source

Important Changes
  • feat(nextjs): Support instrumentation-client.ts (#​15705)

    Next.js recently added a feature to support client-side (browser) instrumentation via the experimental.clientInstrumentationHook flag and the instrumentation-client.ts file.

    To be forwards compatible, the Sentry Next.js SDK will now pick up instrumentation-client.ts files even on older Next.js versions and add them to your client bundles.
    It is suggested that you either rename your sentry.client.config.ts file to instrumentation-client.ts, or if you already happen to have a instrumentation-client.ts file move the contents of sentry.client.config.ts to instrumentation-client.ts.

  • feat(browser): Add previous_trace span links (#​15569)

    The @sentry/browser SDK and SDKs based on @sentry/browser now emits a link from the first root span of a newly started trace to the root span of a previously started trace. You can control this feature via an option in browserTracingIntegration():

    Sentry.init({
      dsn: 'your-dsn-here'
      integrations: [
        Sentry.browserTracingIntegration({
          // Available settings:
          // - 'in-memory' (default): Stores previous trace information in memory
          // - 'session-storage': Stores previous trace information in the browser's `sessionStorage`
          // - 'off': Disable storing and sending previous trace information
          linkPreviousTrace: 'in-memory',
        }),
      ],
    });
  • feat(browser): Add logger.X methods to browser SDK (#​15763)

    For Sentry's upcoming logging product, the SDK now supports sending logs via dedicated

    Sentry.init({
      dsn: 'your-dsn-here',
      _experiments: {
        enableLogs: true, // This is required to use the logging features
      },
    });
    
    Sentry.logger.info('This is a trace message', { userId: 123 });
    // See PR for better documentation

    Please note that the logs product is still in early access. See the link above for more information.

Other Changes
  • feat(browser): Attach host as part of error message to "Failed to fetch" errors (#​15729)
  • feat(core): Add parseStringToURL method (#​15768)
  • feat(core): Optimize dropUndefinedKeys (#​15760)
  • feat(node): Add fastify shouldHandleError (#​15771)
  • fix(nuxt): Delete no longer needed Nitro 'close' hook (#​15790)
  • perf(nestjs): Remove usage of addNonEnumerableProperty (#​15766)
  • ref: Avoid some usage of dropUndefinedKeys() (#​15757)
  • ref: Remove some usages of dropUndefinedKeys() (#​15781)
  • ref(nextjs): Fix Next.js vercel-edge runtime package information (#​15789)

v9.8.0

Compare Source

  • feat(node): Implement new continuous profiling API spec (#​15635)
  • feat(profiling): Add platform to chunk envelope (#​15758)
  • feat(react): Export captureReactException method (#​15746)
  • fix(node): Check for res.end before passing to Proxy (#​15776)
  • perf(core): Add short-circuits to eventFilters integration (#​15752)
  • perf(node): Short circuit flushing on Vercel only for Vercel (#​15734)

v9.7.0

Compare Source

  • feat(core): Add captureLog method (#​15717)
  • feat(remix/cloudflare): Export sentryHandleError (#​15726)
  • fix(node): Always flush on Vercel before Lambda freeze (#​15602)
  • fix(node): Ensure incoming traces are propagated without HttpInstrumentation (#​15732)
  • fix(node): Use fatal level for unhandled rejections in strict mode (#​15720)
  • fix(nuxt): Delete Nuxt server template injection (#​15749)

v9.6.1

Compare Source

v9.6.0

Compare Source

Important Changes
  • feat(tanstackstart): Add @sentry/tanstackstart-react package and make @sentry/tanstackstart package a utility package (#​15629)

    Since TanStack Start is supposed to be a generic framework that supports libraries like React and Solid, the @sentry/tanstackstart SDK package was renamed to @sentry/tanstackstart-react to reflect that the SDK is specifically intended to be used for React TanStack Start applications.
    Note that the TanStack Start SDK is still in alpha status and may be subject to breaking changes in non-major package updates.

Other Changes
  • feat(astro): Accept all vite-plugin options (#​15638)
  • feat(deps): bump @​sentry/webpack-plugin from 3.2.1 to 3.2.2 (#​15627)
  • feat(tanstackstart): Refine initial API (#​15574)
  • fix(core): Ensure fill only patches functions (#​15632)
  • fix(nextjs): Consider pageExtensions when looking for instrumentation file (#​15701)
  • fix(remix): Null-check options (#​15610)
  • fix(sveltekit): Correctly parse angle bracket type assertions for auto instrumentation (#​15578)
  • fix(sveltekit): Guard process variable (#​15605)

Work in this release was contributed by @​angelikatyborska and @​nwalters512. Thank you for your contributions!

tailwindlabs/tailwindcss (@​tailwindcss/vite)

v4.0.15

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.28.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.27.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/utils)

v8.28.0

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.27.0

Compare Source

🚀 Features
  • utils: support DeprecatedInfo for rule.meta.deprecated (#​10932)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

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

v5.2.3

aws/aws-cdk-cli (aws-cdk)

v2.1005.0

Compare Source

2.1005.0 (2025-03-19)

Features
  • toolkit-lib: report hotswap messages into a message span (#​247) (fe143da)
Bug Fixes
aws/aws-cdk (aws-cdk-lib)

v2.185.0

Compare Source

Features
Bug Fixes

Alpha modules (2.185.0-alpha.0)

⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
  • scheduler-targets-alpha: The class KinesisDataFirehosePutRecord has been renamed to FirehosePutRecord.
Bug Fixes
WiseLibs/better-sqlite3 (better-sqlite3)

v11.9.1

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v11.9.0...v11.9.1

saadeghi/daisyui (daisyui)

v5.0.9

Compare Source

Bug Fixes

v5.0.8

Compare Source

Bug Fixes

v5.0.7

Compare Source

v5.0.6

Compare Source

Bug Fixes

v5.0.5

Compare Source

Bug Fixes
  • fix: Floating labels font sizes. closes: #​3676
  • fix: . select > select caret. closes: #​3613
  • fix: theme generator untrimmed color issue. closes: #​3636
  • fix: btn-active working with Tailwind variant prefixes. closes: #​3652
  • fix: badge-outline border-* override. closes: #​3657
  • fix: Swap Indeterminate rotate style. closes: #​3678
  • fix: hero-content isolation issue. closes: #​3682
  • fix: checked button style for outline and dash. closes: #​3591
  • fix: fieldset-label cursor
drizzle-team/drizzle-orm (drizzle-orm)

v0.41.0

Compare Source

  • bigint, number modes for SQLite, MySQL, PostgreSQL, SingleStore decimal & numeric column types
  • Changed behavior of sql-js query preparation to query prebuild instead of db-side prepare due to need to manually free prepared queries, removed .free() method
  • Fixed MySQL, SingleStore varchar allowing not specifying length in config
  • Fixed MySQL, SingleStore binary, varbinary data\type mismatches
  • Fixed numeric\decimal data\type mismatches: #​1290, #​1453
  • Fixed drizzle-studio + AWS Data Api connection issue: #​3224
  • Fixed isConfig utility function checking types of wrong fields
  • Enabled supportBigNumbers in auto-created mysql2 driver instances
  • Fixed custom schema tables querying in RQBv1: #​4060
  • Removed in-driver mapping for postgres types 1231 (numeric[]), 1115 (timestamp[]), 1185 (timestamp_with_timezone[]), 1187 (interval[]), 1182 (date[]), preventing precision loss and data\type mismatches
  • Fixed SQLite buffer-mode blob sometimes returning number[]

v0.40.1

Compare Source

Updates to neon-http for @neondatabase/[email protected] - thanks @​jawj

Starting from this version, drizzle-orm will be compatible with both @neondatabase/serverless <1.0 and >1.0

eslint/eslint (eslint)

v9.23.0

Compare Source

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.5

Compare Source

Patch Changes

[v5.2.4](https://github.com/prettier/eslint-plugin-prettier/blob/HEAD


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 7c79e47 to 7f34db7 Compare March 24, 2025 19:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7f34db7 to 94afe02 Compare March 25, 2025 11:55
Copy link
Contributor Author

renovate bot commented Mar 25, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@magne4000 magne4000 merged commit 57c0542 into main Mar 25, 2025
11 checks passed
@magne4000 magne4000 deleted the renovate/all-minor-patch branch March 25, 2025 13:58
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