Skip to content

Bump the npm-dependencies group across 1 directory with 36 updates#541

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/npm-dependencies-25ea72f67b
Closed

Bump the npm-dependencies group across 1 directory with 36 updates#541
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/npm-dependencies-25ea72f67b

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 19, 2026

Bumps the npm-dependencies group with 34 updates in the / directory:

Package From To
@astrojs/rss 4.0.14 4.0.15
@astrojs/sitemap 3.6.0 3.7.0
@astrojs/vercel 9.0.2 9.0.4
@eslint-community/eslint-plugin-eslint-comments 4.5.0 4.6.0
@happy-dom/global-registrator 20.0.11 20.3.3
@sentry/astro 10.32.1 10.34.0
@shikijs/transformers 3.20.0 3.21.0
@types/node 25.0.3 25.0.9
@types/nodemailer 7.0.4 7.0.5
@types/react 19.2.7 19.2.8
@typescript-eslint/eslint-plugin 8.51.0 8.53.0
@typescript-eslint/parser 8.51.0 8.53.0
@vitest/coverage-v8 4.0.16 4.0.17
astro 5.16.6 5.16.11
astro-og-canvas 0.8.0 0.10.0
astro-vtbot 2.1.9 2.1.10
eslint-plugin-jsdoc 61.5.0 62.1.0
eslint-plugin-yml 1.19.1 2.0.0
focus-trap 7.7.1 7.8.0
libphonenumber-js 1.12.33 1.12.34
postcss-html 1.8.0 1.8.1
preact 10.28.1 10.28.2
prettier 3.7.4 3.8.0
resend 6.6.0 6.7.0
shiki 3.20.0 3.21.0
stylelint 16.26.1 17.0.0
stylelint-config-standard 39.0.1 40.0.0
timezones-ical-library 1.10.0 2.0.0
typescript-eslint 8.51.0 8.53.0
vercel 50.1.3 50.4.5
vite 7.3.0 7.3.1
vitest 4.0.16 4.0.17
zod 4.3.4 4.3.5
@rollup/rollup-linux-x64-gnu 4.54.0 4.55.1

Updates @astrojs/rss from 4.0.14 to 4.0.15

Release notes

Sourced from @​astrojs/rss's releases.

@​astrojs/rss@​4.0.15

Patch Changes

@​astrojs/rss@​4.0.15-beta.1

Patch Changes

@​astrojs/rss@​4.0.15-alpha.0

Patch Changes

Changelog

Sourced from @​astrojs/rss's changelog.

4.0.15

Patch Changes

Commits

Updates @astrojs/sitemap from 3.6.0 to 3.7.0

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.7.0

Minor Changes

  • #14471 4296373 Thanks @​Slackluky! - Adds the ability to split sitemap generation into chunks based on customizable logic. This allows for better management of large sitemaps and improved performance. The new chunks option in the sitemap configuration allows users to define functions that categorize sitemap items into different chunks. Each chunk is then written to a separate sitemap file.

    integrations: [
      sitemap({
        serialize(item) { th
          return item
        },
        chunks: { // this property will be treated last on the configuration
          'blog': (item) => {  // will produce a sitemap file with `blog` name (sitemap-blog-0.xml)
            if (/blog/.test(item.url)) { // filter path that will be included in this specific sitemap file
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.9; // define specific properties for this filtered path
              return item;
            }
          },
          'glossary': (item) => {
            if (/glossary/.test(item.url)) {
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.7;
              return item;
            }
          }
    
      // the rest of the path will be stored in `sitemap-pages.0.xml`
    },
    

    }), ],

@​astrojs/sitemap@​3.6.1

Patch Changes

@​astrojs/sitemap@​3.6.1-beta.2

Patch Changes

@​astrojs/sitemap@​3.6.1-alpha.1

Patch Changes

... (truncated)

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.7.0

Minor Changes

  • #14471 4296373 Thanks @​Slackluky! - Adds the ability to split sitemap generation into chunks based on customizable logic. This allows for better management of large sitemaps and improved performance. The new chunks option in the sitemap configuration allows users to define functions that categorize sitemap items into different chunks. Each chunk is then written to a separate sitemap file.

    integrations: [
      sitemap({
        serialize(item) { th
          return item
        },
        chunks: { // this property will be treated last on the configuration
          'blog': (item) => {  // will produce a sitemap file with `blog` name (sitemap-blog-0.xml)
            if (/blog/.test(item.url)) { // filter path that will be included in this specific sitemap file
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.9; // define specific properties for this filtered path
              return item;
            }
          },
          'glossary': (item) => {
            if (/glossary/.test(item.url)) {
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.7;
              return item;
            }
          }
    
      // the rest of the path will be stored in `sitemap-pages.0.xml`
    },
    

    }), ],

3.6.1

Patch Changes

Commits
Maintainer changes

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


Updates @astrojs/vercel from 9.0.2 to 9.0.4

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​9.0.4

Patch Changes

@​astrojs/vercel@​9.0.3

Patch Changes

Changelog

Sourced from @​astrojs/vercel's changelog.

9.0.4

Patch Changes

9.0.3

Patch Changes

Commits

Updates @eslint-community/eslint-plugin-eslint-comments from 4.5.0 to 4.6.0

Release notes

Sourced from @​eslint-community/eslint-plugin-eslint-comments's releases.

v4.6.0

4.6.0 (2026-01-14)

Features

Commits
  • 10bd8ab feat: add type definitions (#246)
  • 05ee4cb chore: add Prettier (#291)
  • 78f679c chore(deps): Bump ignore from 5.3.2 to 7.0.5 (#287)
  • c07dff9 chore(dev-deps): remove unused fs-extra dependency
  • c9c5b0b chore(ci): use Node 24 for main tests
  • 2b0dfc7 chore(ci): cleanup CI to be in line with other repos
  • 749bdab chore(deps): update to latest minor
  • 5fe1c36 chore(dev-deps): update to latest minor
  • 47349c6 chore(dev-deps): Bump esbuild from 0.19.12 to 0.27.2 (#276)
  • 302641d chore(dev-deps): Bump monaco-editor from 0.47.0 to 0.55.1 (#280)
  • 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 @​eslint-community/eslint-plugin-eslint-comments since your current version.


Updates @happy-dom/global-registrator from 20.0.11 to 20.3.3

Release notes

Sourced from @​happy-dom/global-registrator's releases.

v20.3.3

👷‍♂️ Patch fixes

v20.3.2

👷‍♂️ Patch fixes

v20.3.1

👷‍♂️ Patch fixes

  • Normalizes the "format" parameter according to the HTML specification in DataTransfer.getData() - By @​marchaos in task #1965
  • Handle partial responses in XMLHttpRequest - By @​rexxars in task #1890

v20.3.0

🎨 Features

v20.2.0

🎨 Features

  • Use Element.classList.contains() instead of splitting className in query selectors to improve performance as it's cached - By @​TrevorBurnham in task #1884

v20.1.1

👷‍♂️ Patch fixes

v20.1.0

🎨 Features

... (truncated)

Commits
  • d368d4e fix: #1897 Add which property to KeyboardEvent (#1992)
  • b2ee4fd fix: #1941 Node.getRootNode returns correct root for detached shadow trees ...
  • 0e4b92d fix: #1876 Use proxy in Node.contains() for HTMLFormElement/HTMLSelectEleme...
  • 54bf6e7 fix: #1880 Replace setTimeout with queueMicrotask where appropriate (#1881)
  • 74a94fd fix: #1983 Optimize XMLEncodeUtility with pre-compiled RegExp and lookup ta...
  • 87b15b9 fix: #1985 Use parseFloat for Cache-Control max-age parsing (#1986)
  • c594edb fix: #1981 Remove redundant RegExp flags in HTMLParser (#1982)
  • 2175b74 fix: #1966 Widen @​types/node version range to support Node 24+ (#2002)
  • 0c0eb53 fix: #1963 Use PropertySymbol.body to set body in cloneBodyStream (#1995)
  • d8f9f94 fix: #1989 Optimize DOMTokenList add/remove with Set for O(1) lookups (#1990)
  • Additional commits viewable in compare view

Updates @sentry/astro from 10.32.1 to 10.34.0

Release notes

Sourced from @​sentry/astro's releases.

10.34.0

Important Changes

  • feat(core): Add option to enhance the fetch error message (#18466)

    You can now enable enhanced fetch error messages by setting the enhancedFetchErrorMessage option. When enabled, the SDK will include additional context in fetch error messages to help with debugging.

  • feat(nextjs): Add routeManifestInjection option to exclude routes from client bundle (#18798)

    A new routeManifestInjection option allows you to exclude sensitive routes from being injected into the client bundle.

  • feat(tanstackstart-react): Add wrapMiddlewaresWithSentry for manual middleware instrumentation (#18680)

    You can now wrap your middlewares using wrapMiddlewaresWithSentry, allowing you to trace middleware execution in your TanStack Start application.

    import { createMiddleware } from '@tanstack/react-start';
    import { wrapMiddlewaresWithSentry } from '@sentry/tanstackstart-react';
    const loggingMiddleware = createMiddleware({ type: 'function' }).server(async ({ next }) => {
    console.log('Request started');
    return next();
    });
    export const [wrappedLoggingMiddleware] = wrapMiddlewaresWithSentry({ loggingMiddleware });

Other Changes

  • feat(browser): Add CDN bundle for tracing.logs.metrics (#18784)
  • feat(core,node-core): Consolidate bun and node types with ServerRuntimeOptions (#18734)
  • feat(nextjs): Remove tracing from generation function template (#18733)
  • fix(core): Don't record outcomes for failed client reports (#18808)
  • fix(deno,cloudflare): Prioritize name from params over name from options (#18800)
  • fix(web-vitals): Add error handling for invalid object keys in WeakMap (#18809)
  • ref(nextjs): Split withSentryConfig (#18777)
  • test(e2e): Pin @​shopify/remix-oxygen to unblock ci (#18811)

Bundle size 📦

Path Size
@​sentry/browser 24.52 KB
@​sentry/browser - with treeshaking flags 23.06 KB

... (truncated)

Changelog

Sourced from @​sentry/astro's changelog.

10.34.0

Important Changes

  • feat(core): Add option to enhance the fetch error message (#18466)

    You can now enable enhanced fetch error messages by setting the enhancedFetchErrorMessage option. When enabled, the SDK will include additional context in fetch error messages to help with debugging.

  • feat(nextjs): Add routeManifestInjection option to exclude routes from client bundle (#18798)

    A new routeManifestInjection option allows you to exclude sensitive routes from being injected into the client bundle.

  • feat(tanstackstart-react): Add wrapMiddlewaresWithSentry for manual middleware instrumentation (#18680)

    You can now wrap your middlewares using wrapMiddlewaresWithSentry, allowing you to trace middleware execution in your TanStack Start application.

    import { createMiddleware } from '@tanstack/react-start';
    import { wrapMiddlewaresWithSentry } from '@sentry/tanstackstart-react';
    const loggingMiddleware = createMiddleware({ type: 'function' }).server(async ({ next }) => {
    console.log('Request started');
    return next();
    });
    export const [wrappedLoggingMiddleware] = wrapMiddlewaresWithSentry({ loggingMiddleware });

Other Changes

  • feat(browser): Add CDN bundle for tracing.logs.metrics (#18784)
  • feat(core,node-core): Consolidate bun and node types with ServerRuntimeOptions (#18734)
  • feat(nextjs): Remove tracing from generation function template (#18733)
  • fix(core): Don't record outcomes for failed client reports (#18808)
  • fix(deno,cloudflare): Prioritize name from params over name from options (#18800)
  • fix(web-vitals): Add error handling for invalid object keys in WeakMap (#18809)
  • ref(nextjs): Split withSentryConfig (#18777)
  • test(e2e): Pin @​shopify/remix-oxygen to unblock ci (#18811)

10.33.0

Important Changes

  • feat(core): Apply scope attributes to metrics (#18738)

... (truncated)

Commits
  • 9f6388e release: 10.34.0
  • 22f80b8 Merge pull request #18820 from getsentry/prepare-release/10.34.0
  • f9e4fc1 meta(changelog): Update changelog for 10.34.0
  • 5da93d8 feat(nextjs): Add routeManifestInjection option to exclude routes from client...
  • 419a0e6 feat(browser): Add CDN bundle for tracing.logs.metrics (#18784)
  • ad3dd01 fix(core): Don't record outcomes for failed client reports (#18808)
  • 7a975c9 fix(web-vitals): Add error handling for invalid object keys in WeakMap (#18...
  • ca02322 test(e2e): Pin @​shopify/remix-oxygen to unblock ci (#18811)
  • 6903407 fix(deno,cloudflare): Prioritize name from params over name from options (#18...
  • d350c81 feat(core,node-core): Consolidate bun and node types with ServerRuntimeOption...
  • Additional commits viewable in compare view

Updates @sentry/browser from 10.32.1 to 10.34.0

Release notes

Sourced from @​sentry/browser's releases.

10.34.0

Important Changes

  • feat(core): Add option to enhance the fetch error message (#18466)

    You can now enable enhanced fetch error messages by setting the enhancedFetchErrorMessage option. When enabled, the SDK will include additional context in fetch error messages to help with debugging.

  • feat(nextjs): Add routeManifestInjection option to exclude routes from client bundle (#18798)

    A new routeManifestInjection option allows you to exclude sensitive routes from being injected into the client bundle.

  • feat(tanstackstart-react): Add wrapMiddlewaresWithSentry for manual middleware instrumentation (#18680)

    You can now wrap your middlewares using wrapMiddlewaresWithSentry, allowing you to trace middleware execution in your TanStack Start application.

    import { createMiddleware } from '@tanstack/react-start';
    import { wrapMiddlewaresWithSentry } from '@sentry/tanstackstart-react';
    const loggingMiddleware = createMiddleware({ type: 'function' }).server(async ({ next }) => {
    console.log('Request started');
    return next();
    });
    export const [wrappedLoggingMiddleware] = wrapMiddlewaresWithSentry({ loggingMiddleware });

Other Changes

  • feat(browser): Add CDN bundle for tracing.logs.metrics (#18784)
  • feat(core,node-core): Consolidate bun and node types with ServerRuntimeOptions (#18734)
  • feat(nextjs): Remove tracing from generation function template (#18733)
  • fix(core): Don't record outcomes for failed client reports (#18808)
  • fix(deno,cloudflare): Prioritize name from params over name from options (#18800)
  • fix(web-vitals): Add error handling for invalid object keys in WeakMap (#18809)
  • ref(nextjs): Split withSentryConfig (#18777)
  • test(e2e): Pin @​shopify/remix-oxygen to unblock ci (#18811)

Bundle size 📦

Path Size
@​sentry/browser 24.52 KB
@​sentry/browser - with treeshaking flags 23.06 KB

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

10.34.0

Important Changes

  • feat(core): Add option to enhance the fetch error message (#18466)

    You can now enable enhanced fetch error messages by setting the enhancedFetchErrorMessage option. When enabled, the SDK will include additional context in fetch error messages to help with debugging.

  • feat(nextjs): Add routeManifestInjection option to exclude routes from client bundle (#18798)

    A new routeManifestInjection option allows you to exclude sensitive routes from being injected into the client bundle.

  • feat(tanstackstart-react): Add wrapMiddlewaresWithSentry for manual middleware instrumentation (#18680)

    You can now wrap your middlewares using wrapMiddlewaresWithSentry, allowing you to trace middleware execution in your TanStack Start application.

    import { createMiddleware } from '@tanstack/react-start';
    import { wrapMiddlewaresWithSentry } from '@sentry/tanstackstart-react';
    const loggingMiddleware = createMiddleware({ type: 'function' }).server(async ({ next }) => {
    console.log('Request started');
    return next();
    });
    export const [wrappedLoggingMiddleware] = wrapMiddlewaresWithSentry({ loggingMiddleware });

Other Changes

  • feat(browser): Add CDN bundle for tracing.logs.metrics (#18784)
  • feat(core,node-core): Consolidate bun and node types with ServerRuntimeOptions (#18734)
  • feat(nextjs): Remove tracing from generation function template (#18733)
  • fix(core): Don't record outcomes for failed client reports (#18808)
  • fix(deno,cloudflare): Prioritize name from params over name from options (#18800)
  • fix(web-vitals): Add error handling for invalid object keys in WeakMap (#18809)
  • ref(nextjs): Split withSentryConfig (#18777)
  • test(e2e): Pin @​shopify/remix-oxygen to unblock ci (#18811)

10.33.0

Important Changes

  • feat(core): Apply scope attributes to metrics (#18738)

... (truncated)

Commits
  • 9f6388e release: 10.34.0
  • 22f80b8 Merge pull request #18820 from getsentry/prepare-release/10.34.0
  • f9e4fc1 meta(changelog): Update changelog for 10.34.0
  • 5da93d8 feat(nextjs): Add routeManifestInjection option to exclude routes from client...
  • 419a0e6 feat(browser): Add CDN bundle for tracing.logs.metrics (#18784)
  • ad3dd01 fix(core): Don't record outcomes for failed client reports (#18808)
  • 7a975c9 fix(web-vitals): Add error handling for invalid object keys in WeakMap (#18...
  • ca02322 test(e2e): Pin @​shopify/remix-oxygen to unblock ci (#18811)
  • 6903407 fix(deno,cloudflare): Prioritize name from params over name from options (#18...
  • d350c81 feat(core,node-core): Consolidate bun and node types with ServerRuntimeOption...
  • Additional commits viewable in compare view

Updates @shikijs/transformers from 3.20.0 to 3.21.0

Release notes

Sourced from @​shikijs/transformers's releases.

v3.21.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @types/node from 25.0.3 to 25.0.9

Commits

Updates @types/nodemailer from 7.0.4 to 7.0.5

Commits

Updates @types/react from 19.2.7 to 19.2.8

Commits

Updates @typescript-eslint/eslint-plugin from 8.51.0 to 8.53.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.53.0

8.53.0 (2026-01-12)

🚀 Features

  • eslint-plugin: [no-unused-vars] add a fixer to remove unused imports (#11922)
  • eslint-plugin: add rule [strict-void-return] (#9707)
  • project-service: allow passing Partial<ts.server.ServerHost> to project service (#11932)

🩹 Fixes

  • eslint-plugin: replace unclear "error typed" with more helpful description (#11704)
  • eslint-plugin: [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter (#11916)
  • typescript-estree: forbid type-only import with both default and named specifiers (#11930)
  • typescript-estree: fix syntax check for using declaration (#11910)
  • typescript-estree: forbid invalid class implements (#11934)
  • typescript-estree: forbid invalid "import equals" declaration (#11936)
  • typescript-estree: forbid invalid extends and implements in interface declaration (#11935)

❤️ Thank You

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

v8.52.0

8.52.0 (2026-01-05)

🚀 Features

  • eslint-plugin-internal: [no-multiple-lines-of-errors] add rule (#11899)
  • typescript-estree: add tseslint.com redirects for CLI outputs (#11895)

🩹 Fixes

  • eslint-plugin: [no-useless-default-assignment] handle conditional initializer (#11908)
  • eslint-plugin: [no-base-to-string] detect @@​toPrimitive and valueOf (#11901)

❤️ Thank You

  • Josh Goldberg ✨

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.53.0 (2026-01-12)

🚀 Features

  • eslint-plugin: add rule [strict-void-return] (#9707)
  • eslint-plugin: [no-unused-vars] add a fixer to remove unused imports (#11922)

🩹 Fixes

  • eslint-plugin: [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter (#11916)
  • eslint-plugin: replace unclear "error typed" with more helpful description (#11704)
  • typescript-estree: forbid invalid extends and implements in interface declaration (#11935)
  • typescript-estree: forbid invalid class implements (#11934)
  • typescript-estree: forbid type-only import with both default and named specifiers (#11930)

❤️ Thank You

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

8.52.0 (2026-01-05)

🚀 Features

  • eslint-plugin-internal: [no-multiple-lines-of-errors] add rule (#11899)

🩹 Fixes

  • eslint-plugin: [no-base-to-string] detect @@​toPrimitive and valueOf (#11901)
  • eslint-plugin: [no-useless-default-assignment] handle conditional initializer (#11908)

❤️ Thank You

  • Josh Goldberg ✨
  • Ulrich Stark

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

Description has been truncated

Bumps the npm-dependencies group with 34 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/rss](https://github.com/withastro/astro/tree/HEAD/packages/astro-rss) | `4.0.14` | `4.0.15` |
| [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `3.6.0` | `3.7.0` |
| [@astrojs/vercel](https://github.com/withastro/astro/tree/HEAD/packages/integrations/vercel) | `9.0.2` | `9.0.4` |
| [@eslint-community/eslint-plugin-eslint-comments](https://github.com/eslint-community/eslint-plugin-eslint-comments) | `4.5.0` | `4.6.0` |
| [@happy-dom/global-registrator](https://github.com/capricorn86/happy-dom) | `20.0.11` | `20.3.3` |
| [@sentry/astro](https://github.com/getsentry/sentry-javascript) | `10.32.1` | `10.34.0` |
| [@shikijs/transformers](https://github.com/shikijs/shiki/tree/HEAD/packages/transformers) | `3.20.0` | `3.21.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.0.3` | `25.0.9` |
| [@types/nodemailer](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/nodemailer) | `7.0.4` | `7.0.5` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.7` | `19.2.8` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.51.0` | `8.53.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.51.0` | `8.53.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.0.16` | `4.0.17` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.16.6` | `5.16.11` |
| [astro-og-canvas](https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas) | `0.8.0` | `0.10.0` |
| [astro-vtbot](https://github.com/martrapp/astro-vtbot) | `2.1.9` | `2.1.10` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `61.5.0` | `62.1.0` |
| [eslint-plugin-yml](https://github.com/ota-meshi/eslint-plugin-yml) | `1.19.1` | `2.0.0` |
| [focus-trap](https://github.com/focus-trap/focus-trap) | `7.7.1` | `7.8.0` |
| [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) | `1.12.33` | `1.12.34` |
| [postcss-html](https://github.com/ota-meshi/postcss-html) | `1.8.0` | `1.8.1` |
| [preact](https://github.com/preactjs/preact) | `10.28.1` | `10.28.2` |
| [prettier](https://github.com/prettier/prettier) | `3.7.4` | `3.8.0` |
| [resend](https://github.com/resend/resend-node) | `6.6.0` | `6.7.0` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `3.20.0` | `3.21.0` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.26.1` | `17.0.0` |
| [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) | `39.0.1` | `40.0.0` |
| [timezones-ical-library](https://github.com/add2cal/timezones-ical-library) | `1.10.0` | `2.0.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.51.0` | `8.53.0` |
| [vercel](https://github.com/vercel/vercel/tree/HEAD/packages/cli) | `50.1.3` | `50.4.5` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.3.0` | `7.3.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.16` | `4.0.17` |
| [zod](https://github.com/colinhacks/zod) | `4.3.4` | `4.3.5` |
| [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup) | `4.54.0` | `4.55.1` |



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

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

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

Updates `@eslint-community/eslint-plugin-eslint-comments` from 4.5.0 to 4.6.0
- [Release notes](https://github.com/eslint-community/eslint-plugin-eslint-comments/releases)
- [Commits](eslint-community/eslint-plugin-eslint-comments@v4.5.0...v4.6.0)

Updates `@happy-dom/global-registrator` from 20.0.11 to 20.3.3
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.0.11...v20.3.3)

Updates `@sentry/astro` from 10.32.1 to 10.34.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.32.1...10.34.0)

Updates `@sentry/browser` from 10.32.1 to 10.34.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.32.1...10.34.0)

Updates `@shikijs/transformers` from 3.20.0 to 3.21.0
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v3.21.0/packages/transformers)

Updates `@types/node` from 25.0.3 to 25.0.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/nodemailer` from 7.0.4 to 7.0.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/nodemailer)

Updates `@types/react` from 19.2.7 to 19.2.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@typescript-eslint/eslint-plugin` from 8.51.0 to 8.53.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.53.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.51.0 to 8.53.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.53.0/packages/parser)

Updates `@vitest/coverage-v8` from 4.0.16 to 4.0.17
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.17/packages/coverage-v8)

Updates `astro` from 5.16.6 to 5.16.11
- [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@5.16.11/packages/astro)

Updates `astro-og-canvas` from 0.8.0 to 0.10.0
- [Release notes](https://github.com/delucis/astro-og-canvas/releases)
- [Changelog](https://github.com/delucis/astro-og-canvas/blob/latest/packages/astro-og-canvas/CHANGELOG.md)
- [Commits](https://github.com/delucis/astro-og-canvas/commits/astro-og-canvas@0.10.0/packages/astro-og-canvas)

Updates `astro-vtbot` from 2.1.9 to 2.1.10
- [Changelog](https://github.com/martrapp/astro-vtbot/blob/main/CHANGELOG.md)
- [Commits](https://github.com/martrapp/astro-vtbot/commits)

Updates `eslint-plugin-jsdoc` from 61.5.0 to 62.1.0
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Commits](gajus/eslint-plugin-jsdoc@v61.5.0...v62.1.0)

Updates `eslint-plugin-yml` from 1.19.1 to 2.0.0
- [Release notes](https://github.com/ota-meshi/eslint-plugin-yml/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-yml/blob/master/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-yml@v1.19.1...v2.0.0)

Updates `focus-trap` from 7.7.1 to 7.8.0
- [Release notes](https://github.com/focus-trap/focus-trap/releases)
- [Changelog](https://github.com/focus-trap/focus-trap/blob/master/CHANGELOG.md)
- [Commits](focus-trap/focus-trap@v7.7.1...v7.8.0)

Updates `happy-dom` from 20.0.11 to 20.3.3
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.0.11...v20.3.3)

Updates `libphonenumber-js` from 1.12.33 to 1.12.34
- [Changelog](https://gitlab.com/catamphetamine/libphonenumber-js/blob/master/CHANGELOG.md)
- [Commits](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.12.33...v1.12.34)

Updates `postcss-html` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/ota-meshi/postcss-html/releases)
- [Commits](ota-meshi/postcss-html@v1.8.0...v1.8.1)

Updates `preact` from 10.28.1 to 10.28.2
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.28.1...10.28.2)

Updates `prettier` from 3.7.4 to 3.8.0
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.7.4...3.8.0)

Updates `resend` from 6.6.0 to 6.7.0
- [Release notes](https://github.com/resend/resend-node/releases)
- [Commits](resend/resend-node@v6.6.0...v6.7.0)

Updates `shiki` from 3.20.0 to 3.21.0
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v3.21.0/packages/shiki)

Updates `stylelint` from 16.26.1 to 17.0.0
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint@16.26.1...17.0.0)

Updates `stylelint-config-standard` from 39.0.1 to 40.0.0
- [Release notes](https://github.com/stylelint/stylelint-config-standard/releases)
- [Changelog](https://github.com/stylelint/stylelint-config-standard/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint-config-standard@39.0.1...40.0.0)

Updates `timezones-ical-library` from 1.10.0 to 2.0.0
- [Release notes](https://github.com/add2cal/timezones-ical-library/releases)
- [Commits](add2cal/timezones-ical-library@v1.10.0...v2.0.0)

Updates `typescript-eslint` from 8.51.0 to 8.53.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.53.0/packages/typescript-eslint)

Updates `vercel` from 50.1.3 to 50.4.5
- [Release notes](https://github.com/vercel/vercel/releases)
- [Changelog](https://github.com/vercel/vercel/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/vercel/vercel/commits/vercel@50.4.5/packages/cli)

Updates `vite` from 7.3.0 to 7.3.1
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v7.3.1/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.3.1/packages/vite)

Updates `vitest` from 4.0.16 to 4.0.17
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.17/packages/vitest)

Updates `zod` from 4.3.4 to 4.3.5
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.3.4...v4.3.5)

Updates `@rollup/rollup-linux-x64-gnu` from 4.54.0 to 4.55.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.54.0...v4.55.1)

---
updated-dependencies:
- dependency-name: "@astrojs/rss"
  dependency-version: 4.0.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@astrojs/sitemap"
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@astrojs/vercel"
  dependency-version: 9.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@eslint-community/eslint-plugin-eslint-comments"
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@happy-dom/global-registrator"
  dependency-version: 20.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@sentry/astro"
  dependency-version: 10.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@sentry/browser"
  dependency-version: 10.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@shikijs/transformers"
  dependency-version: 3.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@types/nodemailer"
  dependency-version: 7.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.53.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.53.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: astro
  dependency-version: 5.16.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: astro-og-canvas
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: astro-vtbot
  dependency-version: 2.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 62.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: eslint-plugin-yml
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: focus-trap
  dependency-version: 7.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: happy-dom
  dependency-version: 20.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: libphonenumber-js
  dependency-version: 1.12.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: postcss-html
  dependency-version: 1.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: preact
  dependency-version: 10.28.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: prettier
  dependency-version: 3.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: resend
  dependency-version: 6.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: shiki
  dependency-version: 3.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: stylelint
  dependency-version: 17.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: stylelint-config-standard
  dependency-version: 40.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: timezones-ical-library
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.53.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: vercel
  dependency-version: 50.4.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: vite
  dependency-version: 7.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: vitest
  dependency-version: 4.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: zod
  dependency-version: 4.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@rollup/rollup-linux-x64-gnu"
  dependency-version: 4.55.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 19, 2026

Labels

The following labels could not be found: automerge 🤞, type: dependencies 🔗. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@github-actions
Copy link

Dependency Review

The following issues were found:

  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 29 package(s) with unknown licenses.
  • ⚠️ 1 packages with OpenSSF Scorecard issues.

View full job summary

@github-actions
Copy link

Coverage Report

Status Category Percentage Covered / Total
🔵 Lines 73.87% 7246 / 9808
🔵 Statements 72.15% 7604 / 10539
🔵 Functions 75.49% 1476 / 1955
🔵 Branches 60.24% 3788 / 6288
File CoverageNo changed files found.
Generated in workflow #164 for commit c218742 by the Vitest Coverage Report Action

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 26, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 26, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-dependencies-25ea72f67b branch January 26, 2026 03:26
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.

0 participants