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

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

Open
Number: #551
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: Unknown
Comments: 2
Created: February 06, 2026 at 11:45 PM UTC
(24 days ago)
Updated: February 06, 2026 at 11:46 PM UTC
(24 days ago)
Description:

Bumps the npm-dependencies group with 47 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.1 3.7.0
@astrojs/vercel 9.0.3 9.0.4
@axe-core/playwright 4.11.0 4.11.1
@eslint-community/eslint-plugin-eslint-comments 4.5.0 4.6.0
@eslint/js 9.39.2 10.0.1
@happy-dom/global-registrator 20.1.0 20.5.0
@nanostores/persistent 1.2.0 1.3.3
@playwright/browser-chromium 1.57.0 1.58.2
@playwright/test 1.57.0 1.58.2
@sentry/astro 10.33.0 10.38.0
@shikijs/transformers 3.21.0 3.22.0
@types/eslint-plugin-security 3.0.0 3.0.1
@types/node 25.0.8 25.2.1
@types/react 19.2.8 19.2.13
@typescript-eslint/eslint-plugin 8.53.0 8.54.0
@typescript-eslint/parser 8.53.0 8.54.0
@uppy/dashboard 5.1.0 5.1.1
@vitest/coverage-v8 4.0.17 4.0.18
astro 5.16.9 5.17.1
astro-og-canvas 0.10.0 0.10.1
astro-vtbot 2.1.10 2.1.11
dotenv 17.2.3 17.2.4
eslint 9.39.2 10.0.0
eslint-plugin-jsdoc 62.0.0 62.5.3
eslint-plugin-yml 1.19.1 3.0.0
focus-trap 7.8.0 8.0.0
isomorphic-git 1.36.1 1.36.3
jsdom 27.4.0 28.0.0
libphonenumber-js 1.12.34 1.12.36
nodemailer 7.0.12 8.0.0
npm 11.7.0 11.9.0
preact 10.28.2 10.28.3
prettier 3.7.4 3.8.1
resend 6.7.0 6.9.1
shiki 3.21.0 3.22.0
stylelint 16.26.1 17.1.1
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.11.1 2.1.0
typescript-eslint 8.53.0 8.54.0
vercel 50.3.2 50.13.1
vitest 4.0.17 4.0.18
zod 4.3.5 4.3.6
@rollup/rollup-linux-x64-gnu 4.55.1 4.57.1

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

Patch Changes

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

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

Patch Changes

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

Patch Changes

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

Patch Changes

Changelog

Sourced from @​astrojs/rss's changelog.

4.0.15

Patch Changes

Commits

Updates @astrojs/sitemap from 3.6.1 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`
    },
    

    }), ],

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`
    },
    

    }), ],

Commits

Updates @astrojs/vercel from 9.0.3 to 9.0.4

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​9.0.4

Patch Changes

Changelog

Sourced from @​astrojs/vercel's changelog.

9.0.4

Patch Changes

Commits

Updates @axe-core/playwright from 4.11.0 to 4.11.1

Release notes

Sourced from @​axe-core/playwright's releases.

Release 4.11.1

Bug Fixes

Changelog

Sourced from @​axe-core/playwright's changelog.

4.11.1 (2026-01-09)

Bug Fixes

Commits
Maintainer changes

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


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 @eslint/js from 9.39.2 to 10.0.1

Release notes

Sourced from @​eslint/js's releases.

v10.0.0

Breaking Changes

  • f9e54f4 feat!: estimate rule-tester failure location (#20420) (ST-DDT)
  • a176319 feat!: replace chalk with styleText and add color to ResultsMeta (#20227) (루밀LuMir)
  • c7046e6 feat!: enable JSX reference tracking (#20152) (Pixel998)
  • fa31a60 feat!: add name to configs (#20015) (Kirk Waiblinger)
  • 3383e7e fix!: remove deprecated SourceCode methods (#20137) (Pixel998)
  • 501abd0 feat!: update dependency minimatch to v10 (#20246) (renovate[bot])
  • ca4d3b4 fix!: stricter rule tester assertions for valid test cases (#20125) (唯然)
  • 96512a6 fix!: Remove deprecated rule context methods (#20086) (Nicholas C. Zakas)
  • c69fdac feat!: remove eslintrc support (#20037) (Francesco Trotta)
  • 208b5cc feat!: Use ScopeManager#addGlobals() (#20132) (Milos Djermanovic)
  • a2ee188 fix!: add uniqueItems: true in no-invalid-regexp option (#20155) (Tanuj Kanti)
  • a89059d feat!: Program range span entire source text (#20133) (Pixel998)
  • 39a6424 fix!: assert 'text' is a string across all RuleFixer methods (#20082) (Pixel998)
  • f28fbf8 fix!: Deprecate "always" and "as-needed" options of the radix rule (#20223) (Milos Djermanovic)
  • aa3fb2b fix!: tighten func-names schema (#20119) (Pixel998)
  • f6c0ed0 feat!: report eslint-env comments as errors (#20128) (Francesco Trotta)
  • 4bf739f fix!: remove deprecated LintMessage#nodeType and TestCaseError#type (#20096) (Pixel998)
  • 523c076 feat!: drop support for jiti < 2.2.0 (#20016) (michael faith)
  • 454a292 feat!: update eslint:recommended configuration (#20210) (Pixel998)
  • 4f880ee feat!: remove v10_* and inactive unstable_* flags (#20225) (sethamus)
  • f18115c feat!: no-shadow-restricted-names report globalThis by default (#20027) (sethamus)
  • c6358c3 feat!: Require Node.js ^20.19.0 || ^22.13.0 || >=24 (#20160) (Milos Djermanovic)

Features

  • bff9091 feat: handle Array.fromAsync in array-callback-return (#20457) (Francesco Trotta)
  • 290c594 feat: add self to no-implied-eval rule (#20468) (sethamus)
  • 43677de feat: fix handling of function and class expression names in no-shadow (#20432) (Milos Djermanovic)
  • f0cafe5 feat: rule tester add assertion option requireData (#20409) (fnx)
  • f7ab693 feat: output RuleTester test case failure index (#19976) (ST-DDT)
  • 7cbcbf9 feat: add countThis option to max-params (#20236) (Gerkin)
  • f148a5e feat: add error assertion options (#20247) (ST-DDT)
  • 09e6654 feat: update error loc of require-yield and no-useless-constructor (#20267) (Tanuj Kanti)

Bug Fixes

  • 436b82f fix: update eslint (#20473) (renovate[bot])
  • 1d29d22 fix: detect default this binding in Array.fromAsync callbacks (#20456) (Francesco Trotta)
  • 727451e fix: fix regression of global mode report range in strict rule (#20462) (ntnyq)
  • e80485f fix: remove fake FlatESLint and LegacyESLint exports (#20460) (Francesco Trotta)
  • 9eeff3b fix: update esquery (#20423) (cryptnix)
  • b34b938 fix: use Error.prepareStackTrace to estimate failing test location (#20436) (Francesco Trotta)
  • 51aab53 fix: update eslint (#20443) (renovate[bot])
  • 23490b2 fix: handle space before colon in RuleTester location estimation (#20433) (Francesco Trotta)
  • f244dbf fix: use MessagePlaceholderData type from @eslint/core (#20348) (루밀LuMir)
  • d186f8c fix: update eslint (#20427) (renovate[bot])
  • 2332262 fix: error location should not modify error message in RuleTester (#20421) (Milos Djermanovic)
  • ab99b21 fix: ensure filename is passed as third argument to verifyAndFix() (#20405) (루밀LuMir)
  • 8a60f3b fix: remove ecmaVersion and sourceType from ParserOptions type (#20415) (Pixel998)
  • eafd727 fix: remove TDZ scope type (#20231) (jaymarvelz)

... (truncated)

Commits

Updates @happy-dom/global-registrator from 20.1.0 to 20.5.0

Release notes

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

v20.5.0

:construction_worker_man: Patch fixes

  • Removes circular dependencies internally - By @​capricorn86 in task #2055
    • Compilers can handle simpler circular dependencies, but warnings may be outputted
  • Changes naming of types used internally to follow a consistent pattern - By @​capricorn86 in task #2055
  • Enforces use of the "type" modifier internally in the source code (e.g. import type and export type) - By @​capricorn86 in task #2055

v20.4.0

:art: Features

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

... (truncated)

Commits
  • f070566 feat: #2055 Changes internal types to follow a consistent pattern (#2056)
  • 18e56d0 feat: #2049 Adds support for caching the compiled code of EcmaScript module...
  • 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)
  • Additional commits viewable in compare view

Updates @nanostores/persistent from 1.2.0 to 1.3.3

Release notes

Sourced from @​nanostores/persistent's releases.

1.3.3

  • Reduced decoding calls on no value changes (by @​d8corp).

1.3.2

  • Fixed handling broke JSON in persistentJSON (by @​d8corp).

1.3.1

  • Fixed persistentBoolean restoring on pageshow (by @​d8corp).

1.3.0

1.2.1

  • Fixed keeping user’s value after changes default value by not removing key (by @​d8corp).
  • Initialize store as soon as possible (by @​d8corp).
Changelog

Sourced from @​nanostores/persistent's changelog.

1.3.3

  • Reduced decoding calls on no value changes (by @​d8corp).

1.3.2

  • Fixed handling broke JSON in persistentJSON (by @​d8corp).

1.3.1

  • Fixed persistentBoolean restoring on pageshow (by @​d8corp).

1.3.0

1.2.1

  • Fixed keeping user’s value after changes default (by @​d8corp).
  • Initialize store as soon as possible (by @​d8corp).
Commits
  • 817404d Release 1.3.3 version
  • 0cd621b Reduce size
  • 0c1d5fa Clean up code
  • 5b7d395 Remove IDE since it should be in user global ignore
  • 53c4005 Merge pull request #69 from d8corp/improve_reduce-decode-call-count
  • 03e9eb7 Reduce useless call of decode
  • af59132 Release 1.3.2 version
  • ba28903 Merge pull request #68 from d8corp/fix_json-error
  • af97490 Handle bad JSON storage
  • 09da0fa Handle bad JSON storage
  • Additional commits viewable in compare view

Updates @playwright/browser-chromium from 1.57.0 to 1.58.2

Release notes

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

v1.58.2

Highlights

#39121 fix(trace viewer): make paths via stdin work #39129 fix: do not force swiftshader on chromium mac

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.1

Highlights

#39036 fix(msedge): fix local network permissions #39037 chore: update cft download location #38995 chore(webkit): disable frame sessions on fronzen builds

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

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.

... (truncated)

Commits
Package Dependencies
Ecosystem:
npm
Version Change:
4.0.17 → 4.0.18
Update Type:
Patch
Package:
astro
Ecosystem:
npm
Version Change:
5.16.9 → 5.17.1
Update Type:
Minor
Package:
zod
Ecosystem:
npm
Version Change:
4.3.5 → 4.3.6
Update Type:
Patch
Package:
eslint
Ecosystem:
npm
Version Change:
9.39.2 → 10.0.0
Update Type:
Major
Package:
@types/node
Ecosystem:
npm
Version Change:
25.0.8 → 25.2.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.0.17 → 4.0.18
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.8 → 19.2.13
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.53.0 → 8.54.0
Update Type:
Minor
Package:
nodemailer
Ecosystem:
npm
Version Change:
7.0.12 → 8.0.0
Update Type:
Major
Package:
@eslint/js
Ecosystem:
npm
Version Change:
9.39.2 → 10.0.1
Update Type:
Major
Ecosystem:
npm
Version Change:
8.53.0 → 8.54.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.6.1 → 3.7.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.57.0 → 1.58.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.53.0 → 8.54.0
Update Type:
Minor
Package:
resend
Ecosystem:
npm
Version Change:
6.7.0 → 6.9.1
Update Type:
Minor
Package:
vercel
Ecosystem:
npm
Version Change:
50.3.2 → 50.13.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.12.34 → 1.12.36
Update Type:
Patch
Ecosystem:
npm
Version Change:
4.11.0 → 4.11.1
Update Type:
Patch
Package:
stylelint
Ecosystem:
npm
Version Change:
16.26.1 → 17.1.1
Update Type:
Major
Ecosystem:
npm
Version Change:
4.55.1 → 4.57.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
62.0.0 → 62.5.3
Update Type:
Minor
Package:
dotenv
Ecosystem:
npm
Version Change:
17.2.3 → 17.2.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
9.0.3 → 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.9.0
Update Type:
Minor
Package:
jsdom
Ecosystem:
npm
Version Change:
27.4.0 → 28.0.0
Update Type:
Major
Package:
shiki
Ecosystem:
npm
Version Change:
3.21.0 → 3.22.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.21.0 → 3.22.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
10.33.0 → 10.38.0
Update Type:
Minor
Package:
preact
Ecosystem:
npm
Version Change:
10.28.2 → 10.28.3
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.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.36.1 → 1.36.3
Update Type:
Patch
Package:
astro-vtbot
Ecosystem:
npm
Version Change:
2.1.10 → 2.1.11
Update Type:
Patch
Ecosystem:
npm
Version Change:
4.5.0 → 4.6.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
20.1.0 → 20.5.0
Update Type:
Minor
Package:
@astrojs/db
Ecosystem:
npm
Version Change:
0.18.3 → 0.19.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.10.0 → 0.10.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
5.1.0 → 5.1.1
Update Type:
Patch
Package:
focus-trap
Ecosystem:
npm
Version Change:
7.8.0 → 8.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
1.2.0 → 1.3.3
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.11.1 → 2.1.0
Update Type:
Major
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: 13596198
UUID: 3908856856
Node ID: PR_kwDOKfapnc7CGtxl
Host: GitHub
Repository: webstackdev/astro.webstackbuilders.com