Bump the npm-dependencies group across 1 directory with 45 updates
Type: Pull Request
State: Open
Association: Unknown
Comments: 3
(about 1 month ago)
(29 days ago)
Bumps the npm-dependencies group with 41 updates in the / directory:
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
Commits
Updates @astrojs/db from 0.18.3 to 0.19.0
Release notes
Sourced from @astrojs/db's releases.
@astrojs/db@0.19.0Minor Changes
#15069
d14dfc2Thanks@webstackdev! - Adds a--db-app-tokenCLI flag toastro dbcommandsexecute,push,query, andverifyThe 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 theastro dbcommands.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.2Patch Changes
- #15187
bbb5811Thanks@matthewp! - Update to Astro 6 beta
@astrojs/db@0.19.0-alpha.1Patch Changes
- #14956
0ff51dfThanks@matthewp! - Updates usage of zod to own dependency rather than relying onastro/zod
Changelog
Sourced from @astrojs/db's changelog.
0.19.0
Minor Changes
#15069
d14dfc2Thanks@webstackdev! - Adds a--db-app-tokenCLI flag toastro dbcommandsexecute,push,query, andverifyThe 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 theastro dbcommands.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
ce0c346[ci] release (#15270)f9679dd[ci] formatd14dfc2Add a --db-app-token flag to "astro db" execute, push, and verify commands (#...950005afix(deps): update all non-major dependencies (#15242)0d2adacfix(deps): update all non-major dependencies (#15020)deb6f14fix(deps): update all non-major dependencies (#14977)3805e65fix(deps): update all non-major dependencies (#14707)- See full diff in compare view
Updates @astrojs/rss from 4.0.14 to 4.0.15
Release notes
Sourced from @astrojs/rss's releases.
@astrojs/rss@4.0.15Patch Changes
- #15199
d8e64efThanks@ArmandPhilippot! - Fixes the links to Astro Docs so that they match the current docs structure.
@astrojs/rss@4.0.15-beta.1Patch Changes
- #15187
bbb5811Thanks@matthewp! - Update to Astro 6 beta
@astrojs/rss@4.0.15-alpha.0Patch Changes
- #14956
0ff51dfThanks@matthewp! - Updates usage of zod to own dependency rather than relying onastro/zod
Changelog
Sourced from @astrojs/rss's changelog.
4.0.15
Patch Changes
- #15199
d8e64efThanks@ArmandPhilippot! - Fixes the links to Astro Docs so that they match the current docs structure.
Commits
Updates @astrojs/sitemap from 3.6.0 to 3.7.0
Release notes
Sourced from @astrojs/sitemap's releases.
@astrojs/sitemap@3.7.0Minor Changes
#14471
4296373Thanks@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 newchunksoption 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.1Patch Changes
- #15033
dd06779Thanks@florian-lefebvre! - Updates how routes are retrieved to avoid relying on a deprecated API
@astrojs/sitemap@3.6.1-beta.2Patch Changes
- #15187
bbb5811Thanks@matthewp! - Update to Astro 6 beta
@astrojs/sitemap@3.6.1-alpha.1Patch Changes
- #15036
f125a73Thanks@florian-lefebvre! - Updates how routes are retrieved to avoid relying on a deprecated API
... (truncated)
Changelog
Sourced from @astrojs/sitemap's changelog.
3.7.0
Minor Changes
#14471
4296373Thanks@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 newchunksoption 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
- #15033
dd06779Thanks@florian-lefebvre! - Updates how routes are retrieved to avoid relying on a deprecated API
Commits
44f4e78[ci] release (#15188)220b979[ci] format4296373Feature(sitemap): named files chunking strategy (#14471)e73deb8[ci] release (#15031)dd06779chore(sitemap): migrate to astro:routes:resolved (#15033)3805e65fix(deps): update all non-major dependencies (#14707)- See full diff in compare view
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.4Patch Changes
- #14863
29fd188Thanks@drwpow! - Improves error message when using Node builtins inside Edge middlewares
@astrojs/vercel@9.0.3Patch Changes
- #15116
9fc4562Thanks@Raanelom! - Updates Node versions data to account for v24 as the default
Changelog
Sourced from @astrojs/vercel's changelog.
9.0.4
Patch Changes
- #14863
29fd188Thanks@drwpow! - Improves error message when using Node builtins inside Edge middlewares9.0.3
Patch Changes
- #15116
9fc4562Thanks@Raanelom! - Updates Node versions data to account for v24 as the default
Commits
44f4e78[ci] release (#15188)8068bad[ci] format29fd188Revert fix: Allow node: prefix for Node builtins for Vercel middleware (#14863)fc1f331fix(deps): update astro adapters (#15173)e73deb8[ci] release (#15031)9fc4562Feature/allow node 24 vercel adapter (#15116)5fdd541fix(deps): update astro adapters (#15084)- See full diff in compare view
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
10bd8abfeat: add type definitions (#246)05ee4cbchore: add Prettier (#291)78f679cchore(deps): Bump ignore from 5.3.2 to 7.0.5 (#287)c07dff9chore(dev-deps): remove unusedfs-extradependencyc9c5b0bchore(ci): use Node 24 for main tests2b0dfc7chore(ci): cleanup CI to be in line with other repos749bdabchore(deps): update to latest minor5fe1c36chore(dev-deps): update to latest minor47349c6chore(dev-deps): Bump esbuild from 0.19.12 to 0.27.2 (#276)302641dchore(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
v20.3.8
:construction_worker_man: Patch fixes
- The getters for the properties
focusNodeandfocusOffsetin the Selection API returned incorrect values - By@skoch13in task #1850v20.3.7
:construction_worker_man: Patch fixes
- Updates README.md for the "
@happy-dom/server-renderer" package - By@capricorn86in task #2035v20.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@Nxooahin task #1928v20.3.5
:construction_worker_man: Patch fixes
- Use internal property for "location" in
BrowserFrameURLto avoid mock interference - By@marchaosin task #1964- Add optional chaining to the "hostname" and pathname" properties to check if they are undefined in
CookieURLUtility- By@marchaosin task #1968v20.3.4
:construction_worker_man: Patch fixes
- Preserve attribute name case in CSS selectors for XML documents - By
@TrevorBurnhamin task #1912- Implement implicit closing of
<p>elements per HTML spec - By@TrevorBurnhamin task #1949EventTargetshould not call arbitrary on* properties - By@TrevorBurnhamin task #1895v20.3.3
:construction_worker_man: Patch fixes
- Add "which" property to
KeyboardEvent- By@TrevorBurnhamin task #1897Node.getRootNode()returns correct root for detached shadow trees - By@TrevorBurnhamin task #1941- Fixes issue that prevented
Node.contains()to work for<select>and<form>elements - By@TrevorBurnhamin task #1876- Replace
setTimeout()withqueueMicrotask()where appropriate - By@TrevorBurnhamin task #1880- Optimize
XMLEncodeUtilitywith pre-compiledRegExpand lookup tables - By@TrevorBurnhamin task #1983- Use
parseFloat()for "Cache-Control" header max-age parsing - By@TrevorBurnhamin task #1985- Remove redundant
RegExpflags inHTMLParser- By@TrevorBurnhamin task #1981- Widen "types/node" version range to support Node 24+ - By
@TrevorBurnhamin task #1966v20.3.2
:construction_worker_man: Patch fixes
- Use
PropertySymbol.bodyto set body incloneBodyStream- By@TrevorBurnhamin task #1963- Optimize
DOMTokenListadd/remove with Set for O - By@TrevorBurnhamin task #1989- Allow paths in
WebSocketURLs - By@TrevorBurnhamin task #1975- Decode named HTML entities correctly - By
@TrevorBurnhamin task #1951v20.3.1
:construction_worker_man: Patch fixes
- Normalizes the "format" parameter according to the HTML specification in
DataTransfer.getData()- By@marchaosin task #1965- Handle partial responses in
XMLHttpRequest- By@rexxarsin task #1890
... (truncated)
Commits
d8a50dcfix: #1952 Accept Document nodes as valid boundary points in Selection API ...77a6cd0fix: #1850 Selection API focusNode and focusOffset returning incorrect valu...aa2dbb8fix: #2035 Updates README.md for the server-renderer package (#2037)4d1c023fix: #1928 Support details click firing the onToggle event handler (#1929)92940f6chore: #2032 Fixes vitest config (#2033)1f808ccfix: #1964 Use internal PropertySymbol.location in BrowserFrameURL to avoid...0a37555fix: #1968 Add optional chaining to CookieURLUtility for undefined hostname...1ad9eb2chore: upgrade vitest (#1970)28f36e1fix: #1912 Preserve attribute name case in CSS selectors for XML documents ...63b8f3dfix: #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:
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
@cpAdmfor contributing these improvements!Miscellaneous
browserType.connectOverCDP() now accepts an
isLocaloption. When set totrue, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.Breaking Changes ⚠️
- Removed
_reactand_vueselectors. See locators guide for alternatives.- Removed
:lightselector engine suffix. Use standard CSS selectors instead.- Option
devtoolsfrom browserType.launch() has been removed. Useargs: ['--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
961381echore: mark 1.58.0 (#38921)0c1b64cchore: hide stuff (#38882)b1fd5d0test: unflake some ui-mode tests (#38907)faf317cchore: tune press/type via cli (#38898)ba4b983docs: add v1.58 release notes (#38879)00fb7a9chore: implement shard weights feedback (#38902)42d4f18test: unflake/skip/fix some tests (#38905)42b9784feat(dot): onTestPause + make --pause private (#38904)428b557fix(html): truncate step titles (#38884)5959834chore(list): onTestPaused (#38777)- Additional commits viewable in compare view
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:
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
@cpAdmfor contributing these improvements!Miscellaneous
browserType.connectOverCDP() now accepts an
isLocaloption. When set totrue, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.Breaking Changes ⚠️
- Removed
_reactand_vueselectors. See locators guide for alternatives.- Removed
:lightselector engine suffix. Use standard CSS selectors instead.- Option
devtoolsfrom browserType.launch() has been removed. Useargs: ['--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
961381echore: mark 1.58.0 (#38921)0c1b64cchore: hide stuff (#38882)b1fd5d0test: unflake some ui-mode tests (#38907)faf317cchore: tune press/type via cli (#38898)ba4b983docs: add v1.58 release notes (#38879)00fb7a9chore: implement shard weights feedback (#38902)42d4f18test: unflake/skip/fix some tests (#38905)42b9784feat(dot): onTestPause + make --pause private (#38904)428b557fix(html): truncate step titles (#38884)5959834chore(list): onTestPaused (#38777)- Additional commits viewable in compare view
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.nameattribute for database spans (#18902)- feat(deps): Bump OpenTelemetry dependencies (#18878)
- fix(core): Sanitize data URLs in
http.clientspans (#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-runtimefrom 2.15.2 to 2.17.3 in /packages/remix (#18750)Bundle size 📦
Path Size @sentry/browser24.61 KB @sentry/browser- with treeshaking flags23.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 flags68.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/react26.3 KB @sentry/react(incl. Tracing)43.22 KB @sentry/vue28.95 KB @sentry/vue(incl. Tracing)42.79 KB @sentry/svelte24.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.nameattribute for database spans (#18902)- feat(deps): Bump OpenTelemetry dependencies (#18878)
- fix(core): Sanitize data URLs in
http.clientspans (#18896)- fix(nextjs): Add ALS runner fallbacks for serverless environments (#18889)
- fix(node): Profiling debug ID matching
- chore(deps-dev): bump
@remix-run/server-runtimefrom 2.15.2 to 2.17.3 in /packages/remix (#18750)10.35.0
Important Changes
feat(tanstackstart-react): Add
sentryTanstackStartvite plugin to manage automatic source map uploads (#18712)You can now configure source maps upload for TanStack Start using the
sentryTanstackStartVite 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
ignoredclient report event drop reason (#18815)- feat(logs): Add
Logexports to browser and node packages (#18857)- feat(node-core,bun): Export processSessionIntegration from node-core and add it to bun (#18852)
... (truncated)
Commits
21ec8f1release: 10.36.0d4660dbmeta(changelog): Update changelog for 10.36.0 (#18915)d185952meta(changelog): Update changelog for 10.36.0ba390dffix(node): Profiling debug ID matchingf66969dMerge branch 'develop' into timfish/fix/profiling-debug-images6d9a7f7PR reivew65afa6afeat(node): Add Prisma v7 support (#18908)4695148fix(core): Sanitize data URLs inhttp.clientspans (#18896)2f0d9dcfeat(opentelemetry): Supportdb.system.nameattribute for database spans (#...9115e19feat(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.nameattribute for database spans (#18902)- feat(deps): Bump OpenTelemetry dependencies (#18878)
- fix(core): Sanitize data URLs in
http.clientspans (#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-runtimefrom 2.15.2 to 2.17.3 in /packages/remix (#18750)Bundle size 📦
Path Size @sentry/browser24.61 KB @sentry/browser- with treeshaking flags23.15 KB @sentry/browser(incl. Tracing)41.04 KB @sent...Description has been truncated
Package Dependencies
Package:
@typescript-eslint/parserEcosystem:
npmVersion Change:
8.51.0 → 8.53.1Update Type:
MinorPackage:
@typescript-eslint/eslint-pluginEcosystem:
npmVersion Change:
8.51.0 → 8.53.1Update Type:
MinorPackage:
@rollup/rollup-linux-x64-gnuEcosystem:
npmVersion Change:
4.54.0 → 4.56.0Update Type:
MinorPackage:
stylelint-config-standardEcosystem:
npmVersion Change:
39.0.1 → 40.0.0Update Type:
MajorPackage:
@playwright/browser-chromiumEcosystem:
npmVersion Change:
1.57.0 → 1.58.0Update Type:
MinorEcosystem:
npmVersion Change:
4.5.0 → 4.6.0Update Type:
MinorPackage:
@happy-dom/global-registratorEcosystem:
npmVersion Change:
20.0.11 → 20.3.9Update Type:
MinorPackage:
@types/eslint-plugin-securityEcosystem:
npmVersion Change:
3.0.0 → 3.0.1Update Type:
PatchEcosystem:
npmVersion Change:
2.8.0 → 3.0.0Update Type:
MajorTechnical Details
ID: 13159592UUID: 3854377761Node ID: PR_kwDOKfapnc6_SROPHost: GitHub Repository: webstackdev/astro.webstackbuilders.com
