An open index of dependabot pull requests across open source projects.

Bump the npm-dependencies group across 1 directory with 45 updates

Open
Number: #544
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: Unknown
Comments: 3
Created: January 26, 2026 at 03:30 AM UTC
(about 1 month ago)
Updated: February 02, 2026 at 04:19 AM UTC
(29 days ago)
Description:

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

Package From To
@adobe/remark-gridtables 3.0.16 3.0.17
@astrojs/db 0.18.3 0.19.0
@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.9
@playwright/browser-chromium 1.57.0 1.58.0
@playwright/test 1.57.0 1.58.0
@sentry/astro 10.32.1 10.36.0
@shikijs/transformers 3.20.0 3.21.0
@types/eslint-plugin-security 3.0.0 3.0.1
@types/node 25.0.3 25.0.10
@types/nodemailer 7.0.4 7.0.5
@types/react 19.2.7 19.2.9
@typescript-eslint/eslint-plugin 8.51.0 8.53.1
@typescript-eslint/parser 8.51.0 8.53.1
@vitest/coverage-v8 4.0.16 4.0.18
astro 5.16.6 5.16.15
astro-og-canvas 0.8.0 0.10.0
astro-vtbot 2.1.9 2.1.10
eslint-plugin-jsdoc 61.5.0 62.4.1
eslint-plugin-yml 1.19.1 3.0.0
focus-trap 7.7.1 7.8.0
isomorphic-git 1.36.1 1.36.3
libphonenumber-js 1.12.33 1.12.35
npm 11.7.0 11.8.0
postcss-html 1.8.0 1.8.1
preact 10.28.1 10.28.2
prettier 3.7.4 3.8.1
resend 6.6.0 6.8.0
stylelint 16.26.1 17.0.0
stylelint-config-standard 39.0.1 40.0.0
stylelint-declaration-block-no-ignored-properties 2.8.0 3.0.0
timezones-ical-library 1.10.0 2.1.0
typescript-eslint 8.51.0 8.53.1
vercel 50.1.3 50.5.0
vite 7.3.0 7.3.1
vitest 4.0.16 4.0.18
zod 4.3.4 4.3.6
@rollup/rollup-linux-x64-gnu 4.54.0 4.56.0

Updates @adobe/remark-gridtables from 3.0.16 to 3.0.17

Release notes

Sourced from @​adobe/remark-gridtables's releases.

v3.0.17

3.0.17 (2026-01-24)

Bug Fixes

Changelog

Sourced from @​adobe/remark-gridtables's changelog.

3.0.17 (2026-01-24)

Bug Fixes

Commits

Updates @astrojs/db from 0.18.3 to 0.19.0

Release notes

Sourced from @​astrojs/db's releases.

@​astrojs/db@​0.19.0

Minor Changes

  • #15069 d14dfc2 Thanks @​webstackdev! - Adds a --db-app-token CLI flag to astro db commands execute, push, query, and verify

    The new Astro DB CLI flags allow you to provide a remote database app token directly instead of ASTRO_DB_APP_TOKEN. This ensures that no untrusted code (e.g. CI / CD workflows) has access to the secret that is only needed by the astro db commands.

    The following command can be used to safely push database configuration changes to your project database:

    astro db push --db-app-token <token>
    

    See the Astro DB integration documentation for more information.

@​astrojs/db@​0.19.0-beta.2

Patch Changes

@​astrojs/db@​0.19.0-alpha.1

Patch Changes

Changelog

Sourced from @​astrojs/db's changelog.

0.19.0

Minor Changes

  • #15069 d14dfc2 Thanks @​webstackdev! - Adds a --db-app-token CLI flag to astro db commands execute, push, query, and verify

    The new Astro DB CLI flags allow you to provide a remote database app token directly instead of ASTRO_DB_APP_TOKEN. This ensures that no untrusted code (e.g. CI / CD workflows) has access to the secret that is only needed by the astro db commands.

    The following command can be used to safely push database configuration changes to your project database:

    astro db push --db-app-token <token>
    

    See the Astro DB integration documentation for more information.

Commits

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.9

Release notes

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

v20.3.9

:construction_worker_man: Patch fixes

  • Accept Document nodes as valid boundary points in Selection API - By @​skoch13 in task #1952

v20.3.8

:construction_worker_man: Patch fixes

  • The getters for the properties focusNode and focusOffset in the Selection API returned incorrect values - By @​skoch13 in task #1850

v20.3.7

:construction_worker_man: Patch fixes

  • Updates README.md for the "@​happy-dom/server-renderer" package - By @​capricorn86 in task #2035

v20.3.6

:construction_worker_man: Patch fixes

  • Fixes issue where it wasn't possible to toggle the "open" attribute of <details> by clicking on a child of the <summary> element - By @​Nxooah in task #1928

v20.3.5

:construction_worker_man: Patch fixes

  • Use internal property for "location" in BrowserFrameURL to avoid mock interference - By @​marchaos in task #1964
  • Add optional chaining to the "hostname" and pathname" properties to check if they are undefined in CookieURLUtility - By @​marchaos in task #1968

v20.3.4

:construction_worker_man: Patch fixes

v20.3.3

:construction_worker_man: Patch fixes

v20.3.2

:construction_worker_man: Patch fixes

v20.3.1

:construction_worker_man: 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

... (truncated)

Commits
  • d8a50dc fix: #1952 Accept Document nodes as valid boundary points in Selection API ...
  • 77a6cd0 fix: #1850 Selection API focusNode and focusOffset returning incorrect valu...
  • aa2dbb8 fix: #2035 Updates README.md for the server-renderer package (#2037)
  • 4d1c023 fix: #1928 Support details click firing the onToggle event handler (#1929)
  • 92940f6 chore: #2032 Fixes vitest config (#2033)
  • 1f808cc fix: #1964 Use internal PropertySymbol.location in BrowserFrameURL to avoid...
  • 0a37555 fix: #1968 Add optional chaining to CookieURLUtility for undefined hostname...
  • 1ad9eb2 chore: upgrade vitest (#1970)
  • 28f36e1 fix: #1912 Preserve attribute name case in CSS selectors for XML documents ...
  • 63b8f3d fix: #1949 Implement implicit closing of <p> elements per HTML spec (#2007)
  • Additional commits viewable in compare view

Updates @playwright/browser-chromium from 1.57.0 to 1.58.0

Release notes

Sourced from @​playwright/browser-chromium's releases.

v1.58.0

📣 Playwright CLI+SKILLs 📣

We are adding a new token-efficient CLI mode of operation to Playwright with the skills located at playwright-cli. This brings the long-awaited official SKILL-focused CLI mode to our story and makes it more coding agent-friendly.

It is the first snapshot with the essential command set (which is already larger than the original MCP!), but we expect it to grow rapidly. Unlike the token use, that one we expect to go down since snapshots are no longer forced into the LLM!

Timeline

If you're using merged reports, the HTML report Speedboard tab now shows the Timeline:

Timeline chart in the HTML report

UI Mode and Trace Viewer Improvements

  • New 'system' theme option follows your OS dark/light mode preference
  • Search functionality (Cmd/Ctrl+F) is now available in code editors
  • Network details panel has been reorganized for better usability
  • JSON responses are now automatically formatted for readability

Thanks to @​cpAdm for contributing these improvements!

Miscellaneous

browserType.connectOverCDP() now accepts an isLocal option. When set to true, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.

Breaking Changes ⚠️

  • Removed _react and _vue selectors. See locators guide for alternatives.
  • Removed :light selector engine suffix. Use standard CSS selectors instead.
  • Option devtools from browserType.launch() has been removed. Use args: ['--auto-open-devtools-for-tabs'] instead.
  • Removed macOS 13 support for WebKit. We recommend to upgrade your macOS version, or keep using an older Playwright version.

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 144
  • Microsoft Edge 144
Commits

Updates @playwright/test from 1.57.0 to 1.58.0

Release notes

Sourced from @​playwright/test's releases.

v1.58.0

📣 Playwright CLI+SKILLs 📣

We are adding a new token-efficient CLI mode of operation to Playwright with the skills located at playwright-cli. This brings the long-awaited official SKILL-focused CLI mode to our story and makes it more coding agent-friendly.

It is the first snapshot with the essential command set (which is already larger than the original MCP!), but we expect it to grow rapidly. Unlike the token use, that one we expect to go down since snapshots are no longer forced into the LLM!

Timeline

If you're using merged reports, the HTML report Speedboard tab now shows the Timeline:

Timeline chart in the HTML report

UI Mode and Trace Viewer Improvements

  • New 'system' theme option follows your OS dark/light mode preference
  • Search functionality (Cmd/Ctrl+F) is now available in code editors
  • Network details panel has been reorganized for better usability
  • JSON responses are now automatically formatted for readability

Thanks to @​cpAdm for contributing these improvements!

Miscellaneous

browserType.connectOverCDP() now accepts an isLocal option. When set to true, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.

Breaking Changes ⚠️

  • Removed _react and _vue selectors. See locators guide for alternatives.
  • Removed :light selector engine suffix. Use standard CSS selectors instead.
  • Option devtools from browserType.launch() has been removed. Use args: ['--auto-open-devtools-for-tabs'] instead.
  • Removed macOS 13 support for WebKit. We recommend to upgrade your macOS version, or keep using an older Playwright version.

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 144
  • Microsoft Edge 144
Commits

Updates @sentry/astro from 10.32.1 to 10.36.0

Release notes

Sourced from @​sentry/astro's releases.

10.36.0

  • feat(node): Add Prisma v7 support (#18908)
  • feat(opentelemetry): Support db.system.name attribute for database spans (#18902)
  • feat(deps): Bump OpenTelemetry dependencies (#18878)
  • fix(core): Sanitize data URLs in http.client spans (#18896)
  • fix(nextjs): Add ALS runner fallbacks for serverless environments (#18889)
  • fix(node): Profiling debug ID matching (#18817)
  • chore(deps-dev): bump @​remix-run/server-runtime from 2.15.2 to 2.17.3 in /packages/remix (#18750)

Bundle size 📦

Path Size
@​sentry/browser 24.61 KB
@​sentry/browser - with treeshaking flags 23.15 KB
@​sentry/browser (incl. Tracing) 41.04 KB
@​sentry/browser (incl. Tracing, Profiling) 45.56 KB
@​sentry/browser (incl. Tracing, Replay) 78.74 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.63 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 83.32 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 95.24 KB
@​sentry/browser (incl. Feedback) 40.94 KB
@​sentry/browser (incl. sendFeedback) 29.19 KB
@​sentry/browser (incl. FeedbackAsync) 34.07 KB
@​sentry/browser (incl. Metrics) 25.69 KB
@​sentry/browser (incl. Logs) 25.84 KB
@​sentry/browser (incl. Metrics & Logs) 26.48 KB
@​sentry/react 26.3 KB
@​sentry/react (incl. Tracing) 43.22 KB
@​sentry/vue 28.95 KB
@​sentry/vue (incl. Tracing) 42.79 KB
@​sentry/svelte 24.63 KB
CDN Bundle 27.13 KB
CDN Bundle (incl. Tracing) 41.83 KB
CDN Bundle (incl. Tracing, Logs, Metrics) 42.63 KB
CDN Bundle (incl. Tracing, Replay) 77.67 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 82.98 KB
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) 83.87 KB
CDN Bundle - uncompressed 79.36 KB
CDN Bundle (incl. Tracing) - uncompressed 123.84 KB
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed 126.61 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 237.64 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 250.14 KB
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed 252.89 KB

... (truncated)

Changelog

Sourced from @​sentry/astro's changelog.

10.36.0

  • feat(node): Add Prisma v7 support (#18908)
  • feat(opentelemetry): Support db.system.name attribute for database spans (#18902)
  • feat(deps): Bump OpenTelemetry dependencies (#18878)
  • fix(core): Sanitize data URLs in http.client spans (#18896)
  • fix(nextjs): Add ALS runner fallbacks for serverless environments (#18889)
  • fix(node): Profiling debug ID matching
  • chore(deps-dev): bump @​remix-run/server-runtime from 2.15.2 to 2.17.3 in /packages/remix (#18750)

10.35.0

Important Changes

  • feat(tanstackstart-react): Add sentryTanstackStart vite plugin to manage automatic source map uploads (#18712)

    You can now configure source maps upload for TanStack Start using the sentryTanstackStart Vite plugin:

    // vite.config.ts
    import { defineConfig } from 'vite';
    import { sentryTanstackStart } from '@sentry/tanstackstart-react';
    import { tanstackStart } from '@tanstack/react-start/plugin/vite';
    

    export default defineConfig({
    plugins: [
    sentryTanstackStart({
    authToken: process.env.SENTRY_AUTH_TOKEN,
    org: 'your-org',
    project: 'your-project',
    }),
    tanstackStart(),
    ],
    });

Other Changes

  • feat(browser): Add CDN bundle for tracing.replay.feedback.logs.metrics (#18785)
  • feat(browser): Add shim package for logs (#18831)
  • feat(cloudflare): Automatically set the release id when CF_VERSION_METADATA is enabled (#18855)
  • feat(core): Add ignored client report event drop reason (#18815)
  • feat(logs): Add Log exports to browser and node packages (#18857)
  • feat(node-core,bun): Export processSessionIntegration from node-core and add it to bun (#18852)

... (truncated)

Commits
  • 21ec8f1 release: 10.36.0
  • d4660db meta(changelog): Update changelog for 10.36.0 (#18915)
  • d185952 meta(changelog): Update changelog for 10.36.0
  • ba390df fix(node): Profiling debug ID matching
  • f66969d Merge branch 'develop' into timfish/fix/profiling-debug-images
  • 6d9a7f7 PR reivew
  • 65afa6a feat(node): Add Prisma v7 support (#18908)
  • 4695148 fix(core): Sanitize data URLs in http.client spans (#18896)
  • 2f0d9dc feat(opentelemetry): Support db.system.name attribute for database spans (#...
  • 9115e19 feat(deps): Bump OpenTelemetry dependencies (#18878)
  • Additional commits viewable in compare view

Updates @sentry/browser from 10.32.1 to 10.36.0

Release notes

Sourced from @​sentry/browser's releases.

10.36.0

  • feat(node): Add Prisma v7 support (#18908)
  • feat(opentelemetry): Support db.system.name attribute for database spans (#18902)
  • feat(deps): Bump OpenTelemetry dependencies (#18878)
  • fix(core): Sanitize data URLs in http.client spans (#18896)
  • fix(nextjs): Add ALS runner fallbacks for serverless environments (#18889)
  • fix(node): Profiling debug ID matching (#18817)
  • chore(deps-dev): bump @​remix-run/server-runtime from 2.15.2 to 2.17.3 in /packages/remix (#18750)

Bundle size 📦

Path Size
@​sentry/browser 24.61 KB
@​sentry/browser - with treeshaking flags 23.15 KB
@​sentry/browser (incl. Tracing) 41.04 KB
@​sent...

Description has been truncated

Package Dependencies
Package:
vitest
Ecosystem:
npm
Version Change:
4.0.16 → 4.0.18
Update Type:
Patch
Package:
astro
Ecosystem:
npm
Version Change:
5.16.6 → 5.16.15
Update Type:
Patch
Package:
zod
Ecosystem:
npm
Version Change:
4.3.4 → 4.3.6
Update Type:
Patch
Package:
@types/node
Ecosystem:
npm
Version Change:
25.0.3 → 25.0.10
Update Type:
Patch
Ecosystem:
npm
Version Change:
4.0.16 → 4.0.18
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.7 → 19.2.9
Update Type:
Patch
Package:
vite
Ecosystem:
npm
Version Change:
7.3.0 → 7.3.1
Update Type:
Patch
Package:
prettier
Ecosystem:
npm
Version Change:
3.7.4 → 3.8.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.0.14 → 4.0.15
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.51.0 → 8.53.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.51.0 → 8.53.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.6.0 → 3.7.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.57.0 → 1.58.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.51.0 → 8.53.1
Update Type:
Minor
Package:
resend
Ecosystem:
npm
Version Change:
6.6.0 → 6.8.0
Update Type:
Minor
Package:
vercel
Ecosystem:
npm
Version Change:
50.1.3 → 50.5.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.12.33 → 1.12.35
Update Type:
Patch
Package:
stylelint
Ecosystem:
npm
Version Change:
16.26.1 → 17.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
4.54.0 → 4.56.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
61.5.0 → 62.4.1
Update Type:
Major
Ecosystem:
npm
Version Change:
9.0.2 → 9.0.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
39.0.1 → 40.0.0
Update Type:
Major
Package:
npm
Ecosystem:
npm
Version Change:
11.7.0 → 11.8.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.20.0 → 3.21.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
10.32.1 → 10.36.0
Update Type:
Minor
Package:
preact
Ecosystem:
npm
Version Change:
10.28.1 → 10.28.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.19.1 → 3.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
1.57.0 → 1.58.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.36.1 → 1.36.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.8.0 → 1.8.1
Update Type:
Patch
Package:
astro-vtbot
Ecosystem:
npm
Version Change:
2.1.9 → 2.1.10
Update Type:
Patch
Ecosystem:
npm
Version Change:
4.5.0 → 4.6.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
20.0.11 → 20.3.9
Update Type:
Minor
Package:
@astrojs/db
Ecosystem:
npm
Version Change:
0.18.3 → 0.19.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.8.0 → 0.10.0
Update Type:
Minor
Package:
focus-trap
Ecosystem:
npm
Version Change:
7.7.1 → 7.8.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.10.0 → 2.1.0
Update Type:
Major
Ecosystem:
npm
Version Change:
7.0.4 → 7.0.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.0.16 → 3.0.17
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.0.0 → 3.0.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
2.8.0 → 3.0.0
Update Type:
Major
Technical Details
ID: 13159592
UUID: 3854377761
Node ID: PR_kwDOKfapnc6_SROP
Host: GitHub
Repository: webstackdev/astro.webstackbuilders.com