Skip to content

⬆️(deps): Bump the security-updates group across 1 directory with 9 updates#48

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/security-updates-985954a003
Open

⬆️(deps): Bump the security-updates group across 1 directory with 9 updates#48
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/security-updates-985954a003

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 13, 2026

Bumps the security-updates group with 9 updates in the / directory:

Package From To
@contentful/rich-text-html-renderer 17.1.6 17.2.2
@contentful/rich-text-types 17.2.5 17.2.7
@sentry/nextjs 10.34.0 10.48.0
contentful 11.10.2 11.12.0
geist 1.5.1 1.7.0
lucide-react 0.562.0 1.8.0
shadcn 3.7.0 4.2.0
tailwind-merge 3.4.0 3.5.0
web-vitals 5.1.0 5.2.0

Updates @contentful/rich-text-html-renderer from 17.1.6 to 17.2.2

Release notes

Sourced from @​contentful/rich-text-html-renderer's releases.

@​contentful/rich-text-html-renderer@​17.2.2

17.2.2 (2026-04-09)

Bug Fixes

  • rich-text-types: improve esm compability [ZEND-7778] (#1073) (204aaec)

@​contentful/rich-text-html-renderer@​17.2.1

17.2.1 (2026-04-08)

Bug Fixes

  • rich-text-html-renderer: parse and render asset [] (#854) (3ca028d), closes #853

@​contentful/rich-text-html-renderer@​17.2.0

17.2.0 (2026-04-08)

Features

Commits
  • 1ebea53 chore(release): updated release notes and package versions [ci skip]
  • 204aaec fix(rich-text-types): improve esm compability [ZEND-7778] (#1073)
  • c07bf4d fix: missing dist directory after release []
  • 88cd2c5 chore: bump lodash from 4.17.21 to 4.18.1 (#1071)
  • dbb3768 chore(release): updated release notes and package versions [ci skip]
  • 3ca028d fix(rich-text-html-renderer): parse and render asset [] (#854)
  • f0297e7 chore: remove unused dependencies [] (#1070)
  • 3eddc41 chore: migrate from yarn to pnpm [] (#1067)
  • 3f8e97d chore(release): updated release notes and package versions [ci skip]
  • 8c320bd feat: add esm support [ZEND-7778] (#1069)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​contentful/rich-text-html-renderer since your current version.


Updates @contentful/rich-text-types from 17.2.5 to 17.2.7

Release notes

Sourced from @​contentful/rich-text-types's releases.

@​contentful/rich-text-types@​17.2.7

17.2.7 (2026-04-09)

Bug Fixes

  • rich-text-types: improve esm compability [ZEND-7778] (#1073) (204aaec)

@​contentful/rich-text-types@​17.2.6

17.2.6 (2026-04-08)

Note: Version bump only for package @​contentful/rich-text-types

Commits
  • 1ebea53 chore(release): updated release notes and package versions [ci skip]
  • 204aaec fix(rich-text-types): improve esm compability [ZEND-7778] (#1073)
  • c07bf4d fix: missing dist directory after release []
  • 88cd2c5 chore: bump lodash from 4.17.21 to 4.18.1 (#1071)
  • dbb3768 chore(release): updated release notes and package versions [ci skip]
  • 3ca028d fix(rich-text-html-renderer): parse and render asset [] (#854)
  • f0297e7 chore: remove unused dependencies [] (#1070)
  • 3eddc41 chore: migrate from yarn to pnpm [] (#1067)
  • 3f8e97d chore(release): updated release notes and package versions [ci skip]
  • 8c320bd feat: add esm support [ZEND-7778] (#1069)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​contentful/rich-text-types since your current version.


Updates @sentry/nextjs from 10.34.0 to 10.48.0

Release notes

Sourced from @​sentry/nextjs's releases.

10.48.0

Important Changes

  • feat(aws-serverless): Ship Lambda extension in npm package for container image Lambdas (#20133)

    The Sentry Lambda extension is now included in the npm package, enabling container image-based Lambda functions to use it. Copy the extension files into your Docker image and set the tunnel option:

    RUN mkdir -p /opt/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/sentry-extension /opt/extensions/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/index.mjs /opt/sentry-extension/index.mjs
    RUN chmod +x /opt/extensions/sentry-extension /opt/sentry-extension/index.mjs
    Sentry.init({
      dsn: '__DSN__',
      tunnel: 'http://localhost:9000/envelope',
    });

    This works with any Sentry SDK (@sentry/aws-serverless, @sentry/sveltekit, @sentry/node, etc.).

  • feat(cloudflare): Support basic WorkerEntrypoint (#19884)

    withSentry now supports instrumenting classes extending Cloudflare's WorkerEntrypoint. This instruments fetch, scheduled, queue, and tail handlers.

    import * as Sentry from '@sentry/cloudflare';
    import { WorkerEntrypoint } from 'cloudflare:workers';
    class MyWorker extends WorkerEntrypoint {
    async fetch(request: Request): Promise<Response> {
    return new Response('Hello World!');
    }
    }
    export default Sentry.withSentry(env => ({ dsn: env.SENTRY_DSN, tracesSampleRate: 1.0 }), MyWorker);

  • ref(core): Unify .do* span ops to gen_ai.generate_content (#20074)

    All Vercel AI do* spans (ai.generateText.doGenerate, ai.streamText.doStream, ai.generateObject.doGenerate, ai.streamObject.doStream) now use a single unified span op gen_ai.generate_content instead of separate ops like gen_ai.generate_text, gen_ai.stream_text, gen_ai.generate_object, and gen_ai.stream_object.

  • ref(core): Remove provider-specific AI span attributes in favor of gen_ai attributes in sentry conventions (#20011)

    The following provider-specific span attributes have been removed from the OpenAI and Anthropic AI integrations. Use the standardized gen_ai.* equivalents instead:

    Removed attribute Replacement

... (truncated)

Changelog

Sourced from @​sentry/nextjs's changelog.

10.48.0

Important Changes

  • feat(aws-serverless): Ship Lambda extension in npm package for container image Lambdas (#20133)

    The Sentry Lambda extension is now included in the npm package, enabling container image-based Lambda functions to use it. Copy the extension files into your Docker image and set the tunnel option:

    RUN mkdir -p /opt/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/sentry-extension /opt/extensions/sentry-extension
    COPY node_modules/@sentry/aws-serverless/build/lambda-extension/index.mjs /opt/sentry-extension/index.mjs
    RUN chmod +x /opt/extensions/sentry-extension /opt/sentry-extension/index.mjs
    Sentry.init({
      dsn: '__DSN__',
      tunnel: 'http://localhost:9000/envelope',
    });

    This works with any Sentry SDK (@sentry/aws-serverless, @sentry/sveltekit, @sentry/node, etc.).

  • feat(cloudflare): Support basic WorkerEntrypoint (#19884)

    withSentry now supports instrumenting classes extending Cloudflare's WorkerEntrypoint. This instruments fetch, scheduled, queue, and tail handlers.

    import * as Sentry from '@sentry/cloudflare';
    import { WorkerEntrypoint } from 'cloudflare:workers';
    class MyWorker extends WorkerEntrypoint {
    async fetch(request: Request): Promise<Response> {
    return new Response('Hello World!');
    }
    }
    export default Sentry.withSentry(env => ({ dsn: env.SENTRY_DSN, tracesSampleRate: 1.0 }), MyWorker);

  • ref(core): Unify .do* span ops to gen_ai.generate_content (#20074)

    All Vercel AI do* spans (ai.generateText.doGenerate, ai.streamText.doStream, ai.generateObject.doGenerate, ai.streamObject.doStream) now use a single unified span op gen_ai.generate_content instead of separate ops like gen_ai.generate_text, gen_ai.stream_text, gen_ai.generate_object, and gen_ai.stream_object.

  • ref(core): Remove provider-specific AI span attributes in favor of gen_ai attributes in sentry conventions (#20011)

    The following provider-specific span attributes have been removed from the OpenAI and Anthropic AI integrations. Use the standardized gen_ai.* equivalents instead:

    | Removed attribute | Replacement |

... (truncated)

Commits
  • a67df4d release: 10.48.0
  • e0732ff Merge pull request #20172 from getsentry/prepare-release/10.48.0
  • d1ee40f meta(changelog): Update changelog for 10.48.0
  • 2897297 feat(nuxt): Exclude tracing meta tags on cached pages in Nuxt 5 (#20168)
  • 1cc3dd0 chore(deps-dev): Bump effect from 3.20.0 to 3.21.0 (#19999)
  • c273167 fix(core): Fix withStreamedSpan typing error add missing exports (#20124)
  • b6f7b86 feat(core): Apply ignoreSpans to streamed spans (#19934)
  • 7bd8449 test(node,node-core): Add span streaming integration tests (#19806)
  • 51fc6d1 feat(node-core): Add POtel server-side span streaming implementation (#19741)
  • 77357c7 fix(core): Replace global interval with trace-specific interval based flushin...
  • Additional commits viewable in compare view

Updates contentful from 11.10.2 to 11.12.0

Release notes

Sourced from contentful's releases.

v11.12.0

11.12.0 (2026-03-23)

Features

  • add integration for locale based publishing in CDA [TOL-3653] (#2649) (1952af9)

v11.11.1

11.11.1 (2026-03-20)

v11.11.0

11.11.0 (2026-03-18)

Features

  • types: align CreateClientParams with contentful-sdk-core (#2635) (4c42bdc)

v11.10.7

11.10.7 (2026-03-17)

v11.10.6

11.10.6 (2026-03-11)

v11.10.5

11.10.5 (2026-02-24)

v11.10.4

11.10.4 (2026-02-17)

v11.10.3

11.10.3 (2026-01-27)

Bug Fixes

  • deps: bump contentful-sdk-core version [DX-704] (#2631) (258aebf)
Commits
  • 1952af9 feat: add integration for locale based publishing in CDA [TOL-3653] (#2649)
  • af346f2 build(deps): update @​semantic-release/npm, which updates @​actions/core, which...
  • 6fae9ed [DX-820] Fix security vulnerabilities (#2660)
  • 4c42bdc feat(types): align CreateClientParams with contentful-sdk-core (#2635)
  • 2ef4adb ci(github-actions): update main on triggers to include pull requests (#2658)
  • 2ff7175 build(deps): bump axios in the production-dependencies group (#2657)
  • 57e399b Fix/ts query contentype (#2655)
  • 6d85031 build(deps-dev): bump @​optimize-lodash/rollup-plugin from 4.0.4 to 6.0.0 (#2654)
  • 48081cb build(deps-dev): bump @​rollup/plugin-babel, prettier, semantic-release, types...
  • 338157b build(deps): bump contentful-resolve-response (#2652)
  • Additional commits viewable in compare view

Updates geist from 1.5.1 to 1.7.0

Release notes

Sourced from geist's releases.

geist@1.7.0

We're excited to announce a new member to our font family: Geist Pixel

It's a display typeface family featuring five unique pixel-based variants, each with a distinct visual style. It is designed for decorative use in headlines, logos, and other display contexts where a pixelated aesthetic is desired.

It includes five distinct variants, each exported separately:

Export CSS Variable Description
GeistPixelSquare --font-geist-pixel-square Square pixel shapes
GeistPixelGrid --font-geist-pixel-grid Grid-based pixel pattern
GeistPixelCircle --font-geist-pixel-circle Circular pixel shapes
GeistPixelTriangle --font-geist-pixel-triangle Triangular pixel shapes
GeistPixelLine --font-geist-pixel-line Line-based pixel pattern
import {
  GeistPixelSquare,
  GeistPixelGrid,
  GeistPixelCircle,
  GeistPixelTriangle,
  GeistPixelLine,
} from "geist/font/pixel";
Changelog

Sourced from geist's changelog.

1.7.0

Minor Changes

  • d7ef63c: We're excited to announce a new member to our font family: Geist Pixel

    It's a display typeface family featuring five unique pixel-based variants, each with a distinct visual style. It is designed for decorative use in headlines, logos, and other display contexts where a pixelated aesthetic is desired.

    It includes five distinct variants, each exported separately:

    Export CSS Variable Description
    GeistPixelSquare --font-geist-pixel-square Square pixel shapes
    GeistPixelGrid --font-geist-pixel-grid Grid-based pixel pattern
    GeistPixelCircle --font-geist-pixel-circle Circular pixel shapes
    GeistPixelTriangle --font-geist-pixel-triangle Triangular pixel shapes
    GeistPixelLine --font-geist-pixel-line Line-based pixel pattern
    import {
      GeistPixelSquare,
      GeistPixelGrid,
      GeistPixelCircle,
      GeistPixelTriangle,
      GeistPixelLine,
    } from "geist/font/pixel";
Commits
Maintainer changes

This version was pushed to npm by vercel-release-bot, a new releaser for geist since your current version.


Updates lucide-react from 0.562.0 to 1.8.0

Release notes

Sourced from lucide-react's releases.

Version 1.8.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.7.0...1.8.0

Version 1.7.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.6.0...1.7.0

Version 1.6.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.5.0...1.6.0

Version 1.5.0

What's Changed

... (truncated)

Commits

Updates shadcn from 3.7.0 to 4.2.0

Release notes

Sourced from shadcn's releases.

shadcn@4.2.0

Minor Changes

shadcn@4.1.2

Patch Changes

shadcn@4.1.1

Patch Changes

shadcn@4.1.0

Minor Changes

shadcn@4.0.8

Patch Changes

shadcn@4.0.7

Patch Changes

shadcn@4.0.6

Patch Changes

shadcn@4.0.5

Patch Changes

shadcn@4.0.4

Patch Changes

shadcn@4.0.3

Patch Changes

... (truncated)

Changelog

Sourced from shadcn's changelog.

4.2.0

Minor Changes

4.1.2

Patch Changes

4.1.1

Patch Changes

4.1.0

Minor Changes

4.0.8

Patch Changes

4.0.7

Patch Changes

4.0.6

Patch Changes

4.0.5

Patch Changes

... (truncated)

Commits

Updates tailwind-merge from 3.4.0 to 3.5.0

Release notes

Sourced from tailwind-merge's releases.

v3.5.0

New Features

Full Changelog: dcastil/tailwind-merge@v3.4.1...v3.5.0

Thanks to @​brandonmcconnell, @​manavm1990, @​langy, @​roboflow, @​syntaxfm, @​getsentry, @​codecov, a private sponsor, @​block, @​openclaw, @​sourcegraph and more via @​thnxdev for sponsoring tailwind-merge! ❤️

v3.4.1

Bug Fixes

Full Changelog: dcastil/tailwind-merge@v3.4.0...v3.4.1

Thanks to @​brandonmcconnell, @​manavm1990, @​langy, @​roboflow, @​syntaxfm, @​getsentry, @​codecov, a private sponsor, @​block, @​openclaw, @​sourcegraph and more via @​thnxdev for sponsoring tailwind-merge! ❤️

Commits
  • 270ac79 v3.5.0
  • 86f772e add changelog for 3.5.0
  • 6c1f77c Merge pull request #651 from dcastil/feature/add-support-for-tailwind-css-v4.2
  • 7a4cacf Add support for decimal fraction values
  • 9ef0f79 fix incorrectly escaped characters
  • f4938b0 update README with v4.2 support
  • b02a572 Add Tailwind v4.2 font-features utilities support
  • 5bd25ec Add Tailwind v4.2 logical sizing utilities
  • 697c920 Add Tailwind v4.2 logical border block utilities
  • 6656a47 Improve JSDoc comments for logical insets
  • Additional commits viewable in compare view

Updates web-vitals from 5.1.0 to 5.2.0

Changelog

Sourced from web-vitals's changelog.

v5.2.0 (2026-03-25)

  • Replace filter()[0] with find() for better performance (#658)
  • Use queueMicrotask for microtask scheduling (#660)
  • Simplify the event and LoAF entry clean up logic (#662)
  • Remove obsolete FID polyfill types (#675)
  • Use LargestContentfulPaint.id as fallback when element is removed from DOM (#676)
  • Fix bug for onLCP when attached late (#697)
  • FHandle initially hidden pages and onLCP registered on visibility change (#698)
  • Ensure we clear idle callbacks in whenIdleOrHidden (#707)
  • Limit pending events to conserve memory (#710)
  • Add includeProcessedEventEntries option (#714)
  • Reduce bundle size by refactoring (#713)
Commits
Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…pdates

Bumps the security-updates group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@contentful/rich-text-html-renderer](https://github.com/contentful/rich-text) | `17.1.6` | `17.2.2` |
| [@contentful/rich-text-types](https://github.com/contentful/rich-text) | `17.2.5` | `17.2.7` |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) | `10.34.0` | `10.48.0` |
| [contentful](https://github.com/contentful/contentful.js) | `11.10.2` | `11.12.0` |
| [geist](https://github.com/vercel/geist-font/tree/HEAD/packages/next) | `1.5.1` | `1.7.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.562.0` | `1.8.0` |
| [shadcn](https://github.com/shadcn-ui/ui/tree/HEAD/packages/shadcn) | `3.7.0` | `4.2.0` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.4.0` | `3.5.0` |
| [web-vitals](https://github.com/GoogleChrome/web-vitals) | `5.1.0` | `5.2.0` |



Updates `@contentful/rich-text-html-renderer` from 17.1.6 to 17.2.2
- [Release notes](https://github.com/contentful/rich-text/releases)
- [Changelog](https://github.com/contentful/rich-text/blob/master/CHANGELOG.md)
- [Commits](https://github.com/contentful/rich-text/compare/@contentful/rich-text-html-renderer@17.1.6...@contentful/rich-text-html-renderer@17.2.2)

Updates `@contentful/rich-text-types` from 17.2.5 to 17.2.7
- [Release notes](https://github.com/contentful/rich-text/releases)
- [Changelog](https://github.com/contentful/rich-text/blob/master/CHANGELOG.md)
- [Commits](https://github.com/contentful/rich-text/compare/@contentful/rich-text-types@17.2.5...@contentful/rich-text-types@17.2.7)

Updates `@sentry/nextjs` from 10.34.0 to 10.48.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.34.0...10.48.0)

Updates `contentful` from 11.10.2 to 11.12.0
- [Release notes](https://github.com/contentful/contentful.js/releases)
- [Commits](contentful/contentful.js@v11.10.2...v11.12.0)

Updates `geist` from 1.5.1 to 1.7.0
- [Release notes](https://github.com/vercel/geist-font/releases)
- [Changelog](https://github.com/vercel/geist-font/blob/main/packages/next/CHANGELOG.md)
- [Commits](https://github.com/vercel/geist-font/commits/geist@1.7.0/packages/next)

Updates `lucide-react` from 0.562.0 to 1.8.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.8.0/packages/lucide-react)

Updates `shadcn` from 3.7.0 to 4.2.0
- [Release notes](https://github.com/shadcn-ui/ui/releases)
- [Changelog](https://github.com/shadcn-ui/ui/blob/main/packages/shadcn/CHANGELOG.md)
- [Commits](https://github.com/shadcn-ui/ui/commits/shadcn@4.2.0/packages/shadcn)

Updates `tailwind-merge` from 3.4.0 to 3.5.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v3.4.0...v3.5.0)

Updates `web-vitals` from 5.1.0 to 5.2.0
- [Changelog](https://github.com/GoogleChrome/web-vitals/blob/main/CHANGELOG.md)
- [Commits](GoogleChrome/web-vitals@v5.1.0...v5.2.0)

---
updated-dependencies:
- dependency-name: "@contentful/rich-text-html-renderer"
  dependency-version: 17.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: security-updates
- dependency-name: "@contentful/rich-text-types"
  dependency-version: 17.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: security-updates
- dependency-name: "@sentry/nextjs"
  dependency-version: 10.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: security-updates
- dependency-name: contentful
  dependency-version: 11.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: security-updates
- dependency-name: geist
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: security-updates
- dependency-name: lucide-react
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: security-updates
- dependency-name: shadcn
  dependency-version: 4.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: security-updates
- dependency-name: tailwind-merge
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: security-updates
- dependency-name: web-vitals
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: security-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@codacy-production
Copy link
Copy Markdown

Not up to standards ⛔

🔴 Issues 3 high · 2 minor

Alerts:
⚠ 5 issues (≤ 0 issues of at least minor severity)

Results:
5 new issues

Category Results
Security 2 minor
3 high

View in Codacy

🟢 Metrics 0 complexity · 0 duplication

Metric Results
Complexity 0
Duplication 0

View in Codacy

TIP This summary will be updated as you push new changes. Give us feedback

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