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

Update all non-major dependencies #482

Merged
merged 1 commit into from
Jan 28, 2025
Merged

Update all non-major dependencies #482

merged 1 commit into from
Jan 28, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 18, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@babel/core (source) 7.26.0 -> 7.26.7 age adoption passing confidence devDependencies patch
@cloudscape-design/components (source) 3.0.871 -> 3.0.879 age adoption passing confidence dependencies patch
@cloudscape-design/global-styles (source) 1.0.34 -> 1.0.35 age adoption passing confidence dependencies patch
@graphql-codegen/cli (source) 5.0.3 -> 5.0.4 age adoption passing confidence devDependencies patch
@graphql-codegen/client-preset (source) 4.5.1 -> 4.6.0 age adoption passing confidence devDependencies minor
@graphql-codegen/typed-document-node (source) 5.0.12 -> 5.0.13 age adoption passing confidence devDependencies patch
@graphql-codegen/typescript (source) 4.1.2 -> 4.1.3 age adoption passing confidence devDependencies patch
@graphql-codegen/typescript-operations (source) 4.4.0 -> 4.4.1 age adoption passing confidence devDependencies patch
@sentry/nextjs (source) 8.50.0 -> 8.52.0 age adoption passing confidence dependencies minor
@storybook/addon-actions (source) 8.5.0 -> 8.5.2 age adoption passing confidence devDependencies patch
@storybook/addon-essentials (source) 8.5.0 -> 8.5.2 age adoption passing confidence devDependencies patch
@storybook/addon-interactions (source) 8.5.0 -> 8.5.2 age adoption passing confidence devDependencies patch
@storybook/addon-links (source) 8.5.0 -> 8.5.2 age adoption passing confidence devDependencies patch
@storybook/cli (source) 8.5.0 -> 8.5.2 age adoption passing confidence devDependencies patch
@storybook/nextjs (source) 8.5.0 -> 8.5.2 age adoption passing confidence devDependencies patch
@storybook/react (source) 8.5.0 -> 8.5.2 age adoption passing confidence devDependencies patch
@storybook/test (source) 8.5.0 -> 8.5.2 age adoption passing confidence dependencies patch
@types/node (source) 22.10.7 -> 22.12.0 age adoption passing confidence devDependencies minor
eslint (source) 9.18.0 -> 9.19.0 age adoption passing confidence devDependencies minor
eslint-config-next (source) 15.1.4 -> 15.1.6 age adoption passing confidence devDependencies patch
jotai 2.11.0 -> 2.11.1 age adoption passing confidence dependencies patch
next (source) 15.1.4 -> 15.1.6 age adoption passing confidence dependencies patch
node (source) 22.13.0 -> 22.13.1 age adoption passing confidence patch
recharts 2.15.0 -> 2.15.1 age adoption passing confidence dependencies patch
storybook (source) 8.5.0 -> 8.5.2 age adoption passing confidence devDependencies patch

Release Notes

babel/babel (@​babel/core)

v7.26.7

Compare Source

🐛 Bug Fix
cloudscape-design/components (@​cloudscape-design/components)

v3.0.879

Compare Source

3.0.879 (2025-01-28)
Bug Fixes
Reverts

v3.0.878

Compare Source

3.0.878 (2025-01-27)

No customer visible changes in this release

v3.0.877

Compare Source

3.0.877 (2025-01-26)
Reverts

v3.0.876

Compare Source

3.0.876 (2025-01-24)

No customer visible changes in this release

v3.0.875

Compare Source

3.0.875 (2025-01-24)
Features
Bug Fixes

v3.0.874

Compare Source

3.0.874 (2025-01-22)
Features
Reverts

v3.0.873

Compare Source

3.0.873 (2025-01-21)

No customer visible changes in this release

v3.0.872

Compare Source

3.0.872 (2025-01-20)
Bug Fixes
  • Fixes unexpected autosuggest dropdown reopen when clicking outside browser window and back (#​3176) (7dcb676)
  • Remove background color from embedded table header (#​3198) (89ffd99)
  • Remove background color of embedded table only in VR (#​3204) (e51dbde)
cloudscape-design/global-styles (@​cloudscape-design/global-styles)

v1.0.35

Compare Source

1.0.35 (2025-01-28)

No customer visible changes in this release

dotansimha/graphql-code-generator (@​graphql-codegen/cli)

v5.0.4

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/client-preset)

v4.6.0

Compare Source

Minor Changes
Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/typed-document-node)

v5.0.13

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/typescript)

v4.1.3

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/typescript-operations)

v4.4.1

Compare Source

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

v8.52.0

Compare Source

Important Changes
  • feat(solidstart): Add withSentry wrapper for SolidStart config (#​15135)

To enable the SolidStart SDK, wrap your SolidStart Config with withSentry. The sentrySolidStartVite plugin is now automatically
added by withSentry and you can pass the Sentry build-time options like this:

import { defineConfig } from '@​solidjs/start/config';
import { withSentry } from '@​sentry/solidstart';

export default defineConfig(
  withSentry(
    {
      /* Your SolidStart config options... */
    },
    {
      // Options for setting up source maps
      org: process.env.SENTRY_ORG,
      project: process.env.SENTRY_PROJECT,
      authToken: process.env.SENTRY_AUTH_TOKEN,
    },
  ),
);

With the withSentry wrapper, the Sentry server config should not be added to the public directory anymore.
Add the Sentry server config in src/instrument.server.ts. Then, the server config will be placed inside the server build output as instrument.server.mjs.

Now, there are two options to set up the SDK:

  1. (recommended) Provide an --import CLI flag to the start command like this (path depends on your server setup):
    node --import ./.output/server/instrument.server.mjs .output/server/index.mjs
  2. Add autoInjectServerSentry: 'top-level-import' and the Sentry config will be imported at the top of the server entry (comes with tracing limitations)
    withSentry(
      {
        /* Your SolidStart config options... */
      },
      {
        // Optional: Install Sentry with a top-level import
        autoInjectServerSentry: 'top-level-import',
      },
    );
Other Changes
  • feat(v8/core): Add client outcomes for breadcrumbs buffer (#​15149)
  • feat(v8/core): Improve error formatting in ZodErrors integration (#​15155)
  • fix(v8/bun): Ensure instrumentation of Bun.serve survives a server reload (#​15157)
  • fix(v8/core): Pass module into loadModule (#​15139) (#​15166)

Work in this release was contributed by @​jahands, @​jrandolf, and @​nathankleyn. Thank you for your contributions!

Bundle size 📦
Path Size
@​sentry/browser 23.32 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 35.88 KB
@​sentry/browser (incl. Tracing, Replay) 73.23 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.7 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.54 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.47 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.94 KB
@​sentry/browser (incl. FeedbackAsync) 32.73 KB
@​sentry/react 26 KB
@​sentry/react (incl. Tracing) 38.71 KB
@​sentry/vue 27.6 KB
@​sentry/vue (incl. Tracing) 37.74 KB
@​sentry/svelte 23.49 KB
CDN Bundle 24.52 KB
CDN Bundle (incl. Tracing) 37.59 KB
CDN Bundle (incl. Tracing, Replay) 72.87 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.24 KB
CDN Bundle - uncompressed 72.01 KB
CDN Bundle (incl. Tracing) - uncompressed 111.51 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.76 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.86 KB
@​sentry/nextjs (client) 38.96 KB
@​sentry/sveltekit (client) 36.39 KB
@​sentry/node 162.87 KB
@​sentry/node - without tracing 99.18 KB
@​sentry/aws-serverless 126.69 KB

v8.51.0

Compare Source

Important Changes
  • feat(v8/node): Add prismaInstrumentation option to Prisma integration as escape hatch for all Prisma versions (#​15128)

    This release adds a compatibility API to add support for Prisma version 6.
    To capture performance data for Prisma version 6:

    1. Install the @prisma/instrumentation package on version 6.

    2. Pass a new PrismaInstrumentation() instance as exported from @prisma/instrumentation to the prismaInstrumentation option:

      import { PrismaInstrumentation } from '@​prisma/instrumentation';
      
      Sentry.init({
        integrations: [
          prismaIntegration({
            // Override the default instrumentation that Sentry uses
            prismaInstrumentation: new PrismaInstrumentation(),
          }),
        ],
      });

      The passed instrumentation instance will override the default instrumentation instance the integration would use, while the prismaIntegration will still ensure data compatibility for the various Prisma versions.

    3. Remove the previewFeatures = ["tracing"] option from the client generator block of your Prisma schema.

Other Changes
  • feat(v8/browser): Add multiplexedtransport.js CDN bundle (#​15046)
  • feat(v8/browser): Add Unleash integration (#​14948)
  • feat(v8/deno): Deprecate Deno SDK as published on deno.land (#​15121)
  • feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#​15011)
  • fix(v8/aws-lambda): Avoid overwriting root span name (#​15054)
  • fix(v8/core): fatal events should set session as crashed (#​15073)
  • fix(v8/node/nestjs): Use method on current fastify request (#​15104)

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

Bundle size 📦

Path Size
@​sentry/browser 23.29 KB
@​sentry/browser - with treeshaking flags 23.17 KB
@​sentry/browser (incl. Tracing) 35.85 KB
@​sentry/browser (incl. Tracing, Replay) 73.2 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.66 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.51 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.44 KB
@​sentry/browser (incl. Feedback) 39.5 KB
@​sentry/browser (incl. sendFeedback) 27.9 KB
@​sentry/browser (incl. FeedbackAsync) 32.7 KB
@​sentry/react 25.97 KB
@​sentry/react (incl. Tracing) 38.68 KB
@​sentry/vue 27.57 KB
@​sentry/vue (incl. Tracing) 37.71 KB
@​sentry/svelte 23.46 KB
CDN Bundle 24.5 KB
CDN Bundle (incl. Tracing) 37.56 KB
CDN Bundle (incl. Tracing, Replay) 72.85 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.21 KB
CDN Bundle - uncompressed 71.94 KB
CDN Bundle (incl. Tracing) - uncompressed 111.44 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.69 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.79 KB
@​sentry/nextjs (client) 38.93 KB
@​sentry/sveltekit (client) 36.36 KB
@​sentry/node 162.83 KB
@​sentry/node - without tracing 99.14 KB
@​sentry/aws-serverless 126.65 KB
storybookjs/storybook (@​storybook/addon-actions)

v8.5.2

Compare Source

v8.5.1

Compare Source

storybookjs/storybook (@​storybook/addon-essentials)

v8.5.2

Compare Source

v8.5.1

Compare Source

eslint/eslint (eslint)

v9.19.0

Compare Source

vercel/next.js (eslint-config-next)

v15.1.6

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • fix: don't memory-leak promises passed to waitUntil (#​75041)
  • backport: fix prerender issue with intercepting routes + generateStaticParams (#​75170)
Credits

Huge thanks to @​lubieowoce and @​ztanner for helping!

v15.1.5

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • Fix missing revalidate with notFound() (#​75009)
  • fix: when metadatabase is set we should not warn (#​74840)
  • Fix @​vercel/og license SPDX expression (#​74745)
  • fix: ts language server rule metadata should allow null (#​74704)
  • fix: eslint rule of using img in metadata routes (#​74864)
  • Fix presentation when onerror receives an event without error (#​74643)
  • fix fetch lock not being consistently released #​74623 (#​75028)
Credits

Huge thanks to @​ijjk, @​huozhi, @​matmannion and @​ztanner for helping!

pmndrs/jotai (jotai)

v2.11.1

Compare Source

Jotai v2.11.0 was a big change, and we faced some fundamental issues. It required time to reconsider the architecture from the ground up. We've added various tests, and this patch version should be more stable.

Having that said, we are still in the middle of the re-architecture. If you prefer to stay away from bleeding-edge features and encounter no bugs, feel free to keep using the previous versions.

Kudos to @​dmaskasky

What's Changed


Configuration

📅 Schedule: 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.

Copy link

socket-security bot commented Jan 18, 2025

New, updated, and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@babel/[email protected] 🔁 npm/@babel/[email protected] None +2 906 kB existentialism, hzoo, jlhwung, ...1 more
npm/@babel/[email protected] 🔁 npm/@babel/[email protected] None 0 863 kB existentialism, hzoo, jlhwung, ...1 more
npm/@babel/[email protected] 🔁 npm/@babel/[email protected] None 0 1.91 MB nicolo-ribaudo
npm/@babel/[email protected] 🔁 npm/@babel/[email protected] None 0 674 kB existentialism, hzoo, jlhwung, ...1 more
npm/@babel/[email protected] environment 0 2.56 MB nicolo-ribaudo
npm/@cloudscape-design/[email protected] 🔁 npm/@cloudscape-design/[email protected] None 0 15.9 MB awsui-ci
npm/@cloudscape-design/[email protected] 🔁 npm/@cloudscape-design/[email protected] None 0 211 kB awsui-ci
npm/@graphql-codegen/[email protected] 🔁 npm/@graphql-codegen/[email protected] None 0 239 kB ardatan, dotansimha, kamilkisiela, ...1 more
npm/@graphql-codegen/[email protected] 🔁 npm/@graphql-codegen/[email protected] None 0 68.5 kB ardatan, dotansimha, kamilkisiela, ...1 more
npm/@graphql-codegen/[email protected] 🔁 npm/@graphql-codegen/[email protected] None +1 596 kB dotansimha
npm/@graphql-codegen/[email protected] 🔁 npm/@graphql-codegen/[email protected] None 0 17.9 kB ardatan, dotansimha, kamilkisiela, ...1 more
npm/@graphql-codegen/[email protected] 🔁 npm/@graphql-codegen/[email protected] None 0 45.1 kB ardatan, dotansimha, kamilkisiela, ...1 more
npm/@graphql-codegen/[email protected] 🔁 npm/@graphql-codegen/[email protected] None 0 90.2 kB ardatan, dotansimha, kamilkisiela, ...1 more
npm/@next/[email protected] 🔁 npm/@next/[email protected] None 0 11.8 kB matt.straka, rauchg, timer, ...2 more
npm/@next/[email protected] 🔁 npm/@next/[email protected] None 0 128 MB matt.straka, rauchg, timer, ...2 more
npm/@next/[email protected] 🔁 npm/@next/[email protected] None 0 127 MB matt.straka, rauchg, timer, ...2 more
npm/@next/[email protected] 🔁 npm/@next/[email protected] None 0 128 MB matt.straka, rauchg, timer, ...2 more
npm/@next/[email protected] 🔁 npm/@next/[email protected] None 0 156 MB matt.straka, rauchg, timer, ...2 more
npm/@next/[email protected] 🔁 npm/@next/[email protected] None 0 142 MB matt.straka, rauchg, timer, ...2 more
npm/@next/[email protected] 🔁 npm/@next/[email protected] None 0 171 MB matt.straka, rauchg, timer, ...2 more
npm/@next/[email protected] 🔁 npm/@next/[email protected] None 0 114 MB matt.straka, rauchg, timer, ...2 more
npm/@next/[email protected] 🔁 npm/@next/[email protected] None 0 0 B
npm/@sentry-internal/[email protected] 🔁 npm/@sentry-internal/[email protected] None 0 720 kB billyvg, evanpurkhiser, haza, ...6 more
npm/@sentry-internal/[email protected] 🔁 npm/@sentry-internal/[email protected] None 0 550 kB billyvg, evanpurkhiser, haza, ...6 more
npm/@sentry-internal/[email protected] 🔁 npm/@sentry-internal/[email protected] None 0 530 kB sentry-bot
npm/@sentry-internal/[email protected] 🔁 npm/@sentry-internal/[email protected] None 0 3.93 MB billyvg, evanpurkhiser, haza, ...6 more
npm/@sentry/[email protected] 🔁 npm/@sentry/[email protected] None 0 1.07 MB billyvg, evanpurkhiser, haza, ...7 more
npm/@sentry/[email protected] 🔁 npm/@sentry/[email protected] None 0 3.6 MB billyvg, evanpurkhiser, haza, ...7 more
npm/@sentry/[email protected] 🔁 npm/@sentry/[email protected] None 0 2.04 MB billyvg, evanpurkhiser, haza, ...7 more
npm/@sentry/[email protected] 🔁 npm/@sentry/[email protected] None 0 3.19 MB sentry-bot
npm/@sentry/[email protected] 🔁 npm/@sentry/[email protected] None 0 1.02 MB billyvg, evanpurkhiser, haza, ...7 more
npm/@sentry/[email protected] 🔁 npm/@sentry/[email protected] None 0 443 kB billyvg, evanpurkhiser, haza, ...7 more
npm/@sentry/[email protected] 🔁 npm/@sentry/[email protected] None 0 3.47 MB sentry-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 59.1 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 27 kB domyen, ghengeveld, jreinhold, ...9 more
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 259 kB domyen, ghengeveld, jreinhold, ...9 more
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 2.2 MB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 12.3 kB domyen, ghengeveld, jreinhold, ...9 more
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 9.04 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 127 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 18.9 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 32 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 22.7 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 9.69 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 26.9 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] environment, eval 0 604 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 503 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 612 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 19.1 MB domyen, ghengeveld, jreinhold, ...9 more
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] filesystem 0 10.4 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] environment 0 221 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 10.1 kB storybook-bot
npm/@storybook/[email protected] 🔁 npm/@storybook/[email protected] None 0 1.82 MB storybook-bot
npm/@whatwg-node/[email protected] 🔁 npm/@whatwg-node/[email protected] None 0 45.8 kB ardatan
npm/@whatwg-node/[email protected] 🔁 npm/@whatwg-node/[email protected] None 0 223 kB ardatan
npm/[email protected] eval 0 1.03 MB esp
npm/[email protected] 🔁 npm/[email protected] None 0 1.11 MB storybook-bot
npm/[email protected] 🔁 npm/[email protected] None 0 449 kB daishi
npm/[email protected] 🔁 npm/[email protected] None 0 120 MB rauchg, timneutkens, vercel-release-bot
npm/[email protected] 🔁 npm/[email protected] environment 0 4.64 MB ckifer
npm/[email protected] 🔁 npm/[email protected] None 0 22.1 kB storybook-bot

🚮 Removed packages: npm/@babel/[email protected], npm/@kamilkisiela/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected]

View full report↗︎

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e9e768c to 1c5e3ef Compare January 20, 2025 09:27
@renovate renovate bot changed the title Update all non-major dependencies to v15.1.5 Update all non-major dependencies Jan 20, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 87c635f to 2718d5d Compare January 26, 2025 16:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 3e81997 to 1556b86 Compare January 28, 2025 13:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1556b86 to 6e4b0a4 Compare January 28, 2025 18:28
@tumugin tumugin merged commit 51549d6 into main Jan 28, 2025
6 checks passed
@tumugin tumugin deleted the renovate/all-minor-patch branch January 28, 2025 21:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant