Bump the npm-dependencies group across 1 directory with 36 updates
Type: Pull Request
State: Open
Association: Unknown
Comments: 3
(about 1 month ago)
(about 1 month ago)
Bumps the npm-dependencies group with 34 updates in the / directory:
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.3
Release notes
Sourced from @happy-dom/global-registrator's releases.
v20.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 #1890v20.3.0
:art: Features
- Use
RegExpto convert ASCII character casing to improve performance - By@TrevorBurnhamin task #1886v20.2.0
:art: Features
- Use
Element.classList.contains()instead of splittingclassNamein query selectors to improve performance as it's cached - By@TrevorBurnhamin task #1884v20.1.1
:construction_worker_man: Patch fixes
- Fixes caching in
querySelector()- By@TrevorBurnhamin task #1882- Avoid sort in
querySelector()to improve performance - By@TrevorBurnhamin task #1882v20.1.0
:art: Features
- Adds support for
BrowserPage.evaluateModule()andBrowserFrame.evaluateModule()- By@capricorn86in task #1944- Adds support for
moduleto the browser settings - By@capricorn86in task #1944
- This makes it possible to add a custom resolver or a node module resolver
- Adds support for dynamic
import()to JavaScript evaluation - By@capricorn86in task #1944
- It was previously only supported when using
type="module"on script elements- Adds support for
WebSocket- By@capricorn86in task #1944- Adds support for
CloseEvent- By@capricorn86in task #1944- Adds support for
render.setupScriptandrender.modeto the configuration in@happy-dom/server-renderer- By@capricorn86in task #1944- Changes name from
urlstorenderItemsin the configuration in@happy-dom/server-renderer- By@capricorn86in task #1944- Adds support for rendering HTML strings to
ServerRendererin@happy-dom/server-renderer- By@capricorn86in task #1944
- It previously only had support for rendering URLs
... (truncated)
Commits
d368d4efix: #1897 Add which property to KeyboardEvent (#1992)b2ee4fdfix: #1941 Node.getRootNode returns correct root for detached shadow trees ...0e4b92dfix: #1876 Use proxy in Node.contains() for HTMLFormElement/HTMLSelectEleme...54bf6e7fix: #1880 Replace setTimeout with queueMicrotask where appropriate (#1881)74a94fdfix: #1983 Optimize XMLEncodeUtility with pre-compiled RegExp and lookup ta...87b15b9fix: #1985 Use parseFloat for Cache-Control max-age parsing (#1986)c594edbfix: #1981 Remove redundant RegExp flags in HTMLParser (#1982)2175b74fix: #1966 Widen@types/nodeversion range to support Node 24+ (#2002)0c0eb53fix: #1963 Use PropertySymbol.body to set body in cloneBodyStream (#1995)d8f9f94fix: #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
enhancedFetchErrorMessageoption. 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
routeManifestInjectionoption allows you to exclude sensitive routes from being injected into the client bundle.feat(tanstackstart-react): Add
wrapMiddlewaresWithSentryfor 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-oxygento unblock ci (#18811)Bundle size 📦
Path Size @sentry/browser24.52 KB @sentry/browser- with treeshaking flags23.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
enhancedFetchErrorMessageoption. 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
routeManifestInjectionoption allows you to exclude sensitive routes from being injected into the client bundle.feat(tanstackstart-react): Add
wrapMiddlewaresWithSentryfor 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-oxygento unblock ci (#18811)10.33.0
Important Changes
- feat(core): Apply scope attributes to metrics (#18738)
... (truncated)
Commits
9f6388erelease: 10.34.022f80b8Merge pull request #18820 from getsentry/prepare-release/10.34.0f9e4fc1meta(changelog): Update changelog for 10.34.05da93d8feat(nextjs): Add routeManifestInjection option to exclude routes from client...419a0e6feat(browser): Add CDN bundle fortracing.logs.metrics(#18784)ad3dd01fix(core): Don't record outcomes for failed client reports (#18808)7a975c9fix(web-vitals): Add error handling for invalid object keys inWeakMap(#18...ca02322test(e2e): Pin@shopify/remix-oxygento unblock ci (#18811)6903407fix(deno,cloudflare): Prioritize name from params over name from options (#18...d350c81feat(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
enhancedFetchErrorMessageoption. 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
routeManifestInjectionoption allows you to exclude sensitive routes from being injected into the client bundle.feat(tanstackstart-react): Add
wrapMiddlewaresWithSentryfor 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-oxygento unblock ci (#18811)Bundle size 📦
Path Size @sentry/browser24.52 KB @sentry/browser- with treeshaking flags23.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
enhancedFetchErrorMessageoption. 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
routeManifestInjectionoption allows you to exclude sensitive routes from being injected into the client bundle.feat(tanstackstart-react): Add
wrapMiddlewaresWithSentryfor 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-oxygento unblock ci (#18811)10.33.0
Important Changes
- feat(core): Apply scope attributes to metrics (#18738)
... (truncated)
Commits
9f6388erelease: 10.34.022f80b8Merge pull request #18820 from getsentry/prepare-release/10.34.0f9e4fc1meta(changelog): Update changelog for 10.34.05da93d8feat(nextjs): Add routeManifestInjection option to exclude routes from client...419a0e6feat(browser): Add CDN bundle fortracing.logs.metrics(#18784)ad3dd01fix(core): Don't record outcomes for failed client reports (#18808)7a975c9fix(web-vitals): Add error handling for invalid object keys inWeakMap(#18...ca02322test(e2e): Pin@shopify/remix-oxygento unblock ci (#18811)6903407fix(deno,cloudflare): Prioritize name from params over name from options (#18...d350c81feat(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
- Update grammar - by
@antfu(6d109)- core: Preserve HAST data and properties in codeToHast - by
@AmanCraftsin shikijs/shiki#1204 (747ea)🐞 Bug Fixes
- vitepress-twoslash: Fix scroll blocking on mobile viewports - by
@dahliain shikijs/shiki#1235 (8e931)View changes on GitHub
Commits
5c9cb94chore: release v3.21.0- See full diff in compare view
Updates @types/node from 25.0.3 to 25.0.9
Commits
- See full diff in compare view
Updates @types/nodemailer from 7.0.4 to 7.0.5
Commits
- See full diff in compare view
Updates @types/react from 19.2.7 to 19.2.8
Commits
- See full diff in compare view
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 "
errortyped" 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
usingdeclaration (#11910)- typescript-estree: forbid invalid class implements (#11934)
- typescript-estree: forbid invalid "import equals" declaration (#11936)
- typescript-estree: forbid invalid
extendsandimplementsin interface declaration (#11935)❤️ Thank You
- auvred
@auvred- Brad Zacher
@bradzacher- fisker Cheung
@fisker- Josh Goldberg
- Josh Goldberg ✨
- Kirk Waiblinger
- Niki
@phaux- Nikita
- SungHyun627
@SungHyun627- Will Harney
@wjhsfYou 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 @
@toPrimitiveand 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 "
errortyped" with more helpful description (#11704)- typescript-estree: forbid invalid
extendsandimplementsin 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
- Brad Zacher
@bradzacher- fisker Cheung
@fisker- Josh Goldberg
- Josh Goldberg ✨
- Kirk Waiblinger
- Niki
@phaux- Nikita
- SungHyun627
@SungHyun627- Will Harney
@wjhsfYou 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 @
@toPrimitiveand 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
Package Dependencies
@typescript-eslint/parser
npm
8.51.0 → 8.53.0
Minor
@typescript-eslint/eslint-plugin
npm
8.51.0 → 8.53.0
Minor
@rollup/rollup-linux-x64-gnu
npm
4.54.0 → 4.55.1
Minor
stylelint-config-standard
npm
39.0.1 → 40.0.0
Major
npm
4.5.0 → 4.6.0
Minor
@happy-dom/global-registrator
npm
20.0.11 → 20.3.3
Minor
Technical Details
| ID: | 12897861 |
| UUID: | 3827851594 |
| Node ID: | PR_kwDOKfapnc696Wa9 |
| Host: | GitHub |
| Repository: | webstackdev/astro.webstackbuilders.com |