Skip to content

🚨 [security] Update all of nextjs 16.1.6 → 16.1.7 (patch)#780

Closed
depfu[bot] wants to merge 4 commits intomainfrom
depfu/update/todo-list/yarn/group/nextjs-16.1.7
Closed

🚨 [security] Update all of nextjs 16.1.6 → 16.1.7 (patch)#780
depfu[bot] wants to merge 4 commits intomainfrom
depfu/update/todo-list/yarn/group/nextjs-16.1.7

Conversation

@depfu
Copy link
Copy Markdown
Contributor

@depfu depfu Bot commented Mar 17, 2026


🚨 Your current dependencies have known security vulnerabilities 🚨

This dependency update fixes known security vulnerabilities. Please see the details below and assess their impact carefully. We recommend to merge and deploy this as soon as possible!


Here is everything you need to know about this upgrade. Please take a good look at what changed and the test results before merging this pull request.

What changed?

✳️ eslint-config-next (16.1.6 → 16.1.7)

Sorry, we couldn't find anything useful about this release.

✳️ next (16.1.6 → 16.1.7) · Repo

Security Advisories 🚨

🚨 Next.js: null origin can bypass dev HMR websocket CSRF checks

Summary

In next dev, cross-site protection for internal websocket endpoints could treat Origin: null as a bypass case even if allowedDevOrigins is configured, allowing privacy-sensitive/opaque contexts (for example sandboxed documents) to connect unexpectedly.

Impact

If a dev server is reachable from attacker-controlled content, an attacker may be able to connect to the HMR websocket channel and interact with dev websocket traffic. This affects development mode only.
Apps without a configured allowedDevOrigins still allow connections from any origin.

Patches

Fixed by validating Origin: null through the same cross-site origin-allowance checks used for other origins.

Workarounds

If upgrade is not immediately possible:

  • Do not expose next dev to untrusted networks.
  • Block websocket upgrades to /_next/webpack-hmr when Origin is null at your proxy.

🚨 Next.js: null origin can bypass Server Actions CSRF checks

Summary

origin: null was treated as a "missing" origin during Server Action CSRF validation. As a result, requests from opaque contexts (such as sandboxed iframes) could bypass origin verification instead of being validated as cross-origin requests.

Impact

An attacker could induce a victim browser to submit Server Actions from a sandboxed context, potentially executing state-changing actions with victim credentials (CSRF).

Patches

Fixed by treating 'null' as an explicit origin value and enforcing host/origin checks unless 'null' is explicitly allowlisted in experimental.serverActions.allowedOrigins.

Workarounds

If upgrade is not immediately possible:

  • Add CSRF tokens for sensitive Server Actions.
  • Prefer SameSite=Strict on sensitive auth cookies.
  • Do not allow 'null' in serverActions.allowedOrigins unless intentionally required and additionally protected.

🚨 Next.js: Unbounded postponed resume buffering can lead to DoS

Summary

A request containing the next-resume: 1 header (corresponding with a PPR resume request) would buffer request bodies without consistently enforcing maxPostponedStateSize in certain setups. The previous mitigation protected minimal-mode deployments, but equivalent non-minimal deployments remained vulnerable to the same unbounded postponed resume-body buffering behavior.

Impact

In applications using the App Router with Partial Prerendering capability enabled (via experimental.ppr or cacheComponents), an attacker could send oversized next-resume POST payloads that were buffered without consistent size enforcement in non-minimal deployments, causing excessive memory usage and potential denial of service.

Patches

Fixed by enforcing size limits across all postponed-body buffering paths and erroring when limits are exceeded.

Workarounds

If upgrade is not immediately possible:

  • Block requests containing the next-resume header, as this is never valid to be sent from an untrusted client.

🚨 Next.js: Unbounded next/image disk cache growth can exhaust storage

Summary

The default Next.js image optimization disk cache (/_next/image) did not have a configurable upper bound, allowing unbounded cache growth.

Impact

An attacker could generate many unique image-optimization variants and exhaust disk space, causing denial of service.

Patches

Fixed by adding an LRU-backed disk cache with images.maximumDiskCacheSize, including eviction of least-recently-used entries when the limit is exceeded. Setting maximumDiskCacheSize: 0 disables disk caching.

Workarounds

If upgrade is not immediately possible:

  • Periodically clean .next/cache/images.
  • Reduce variant cardinality (e.g., tighten values for images.localPatterns, images.remotePatterns, and images.qualities)

🚨 Next.js: HTTP request smuggling in rewrites

Summary

When Next.js rewrites proxy traffic to an external backend, a crafted DELETE/OPTIONS request using Transfer-Encoding: chunked could trigger request boundary disagreement between the proxy and backend. This could allow request smuggling through rewritten routes.

Impact

An attacker could smuggle a second request to unintended backend routes (for example, internal/admin endpoints), bypassing assumptions that only the configured rewrite destination/path is reachable. This does not impact applications hosted on providers that handle rewrites at the CDN level, such as Vercel.

Patches

The vulnerability originated in an upstream library vendored by Next.js. It is fixed by updating that dependency’s behavior so content-length: 0 is added only when both content-length and transfer-encoding are absent, and transfer-encoding is no longer removed in that code path.

Workarounds

If upgrade is not immediately possible:

  • Block chunked DELETE/OPTIONS requests on rewritten routes at your edge/proxy.
  • Enforce authentication/authorization on backend routes per our security guidance.

Sorry, we couldn't find anything useful about this release.


Depfu Status

Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.

All Depfu comment commands
@​depfu rebase
Rebases against your default branch and redoes this update
@​depfu recreate
Recreates this PR, overwriting any edits that you've made to it
@​depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@​depfu cancel merge
Cancels automatic merging of this PR
@​depfu close
Closes this PR and deletes the branch
@​depfu reopen
Restores the branch and reopens this PR (if it's closed)
@​depfu pause
Ignores all future updates for this dependency and closes this PR
@​depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@​depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)

@depfu depfu Bot added the depfu label Mar 17, 2026
@semanticdiff-com
Copy link
Copy Markdown

semanticdiff-com Bot commented Mar 17, 2026

Review changes with  SemanticDiff

Changed Files
File Status
  todo-list/package.json  0% smaller
  todo-list/yarn.lock Unsupported file format

@pr-code-reviewer
Copy link
Copy Markdown

pr-code-reviewer Bot commented Mar 17, 2026

👋 Hi there!

Update the dependencies "next" from "16.1.6" to "16.1.7" and "eslint-config-next" from "^16.1.6" to "^16.1.7" in package.json.
Ensure that the corresponding changes are reflected in the yarn.lock file for "@next/env" version "16.1.7" by updating its reference accordingly.
Maintain consistency between the package version references in package.json and yarn.lock to prevent dependency conflicts.


Automatically generated with the help of gpt-3.5-turbo.
Feedback? Please don't hesitate to drop me an email at webber@takken.io.

@guibranco guibranco enabled auto-merge (squash) March 17, 2026 16:05
@gstraccini gstraccini Bot added the ☑️ auto-merge Automatic merging of pull requests (gstraccini-bot) label Mar 17, 2026
@github-actions github-actions Bot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Mar 17, 2026
@gooroo-dev
Copy link
Copy Markdown

gooroo-dev Bot commented Mar 17, 2026

Please double check the following review of the pull request:

🐞Mistake 🤪Typo 🚨Security 🚀Performance 💪Best Practices 📖Readability ❓Others
0 0 0 0 0 0 0

Changes in the diff

  • 🛠️ Updated Next.js version from 16.1.6 to 16.1.7 in package.json dependencies.
  • 🛠️ Updated eslint-config-next version from ^16.1.6 to ^16.1.7 in package.json devDependencies.

Identified Issues

No issues found in the incoming changes.

Summary

The pull request updates the Next.js package and its ESLint config to a newer patch version. This is a typical security or bugfix patch update. No code logic changes or new features are introduced. The update is straightforward and does not introduce any mistakes, typos, security issues, performance regressions, or readability problems.

Missing tests

No tests are required for this dependency version bump.

Summon me to re-review when updated! Yours, Gooroo.dev
Feel free to add a reaction or reply to me!

Copy link
Copy Markdown
Member

@guibranco guibranco left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Automatically approved by gstraccini[bot]

@gstraccini gstraccini Bot added the 🤖 bot Automated processes or integrations label Mar 17, 2026
@guibranco
Copy link
Copy Markdown
Member

@depfu merge

@socket-security
Copy link
Copy Markdown

socket-security Bot commented Mar 17, 2026

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatednext@​16.1.6 ⏵ 16.1.762100 +691 +19770
Updatedeslint-config-next@​16.1.6 ⏵ 16.1.7991006798 +1100

View full report

@socket-security
Copy link
Copy Markdown

socket-security Bot commented Mar 17, 2026

Caution

Review the following alerts detected in dependencies.

According to your organization's Security Policy, you must resolve all "Block" alerts before proceeding. Learn more about Socket for GitHub.

Action Severity Alert  (click "▶" to expand/collapse)
Block Low
Embedded URLs or IPs: npm @next/eslint-plugin-next

URLs: https://nextjs.org/docs/messages/no-document-import-in-page, https://nextjs.org/docs/messages/no-async-client-component, https://nextjs.org/docs/messages/google-font-preconnect, https://fonts.gstatic.com, https://nextjs.org/docs/messages/no-duplicate-head, https://nextjs.org/docs/messages/no-page-custom-font, https://fonts.googleapis.com/css, https://nextjs.org/docs/messages/google-font-display, https://nextjs.org/docs/messages/no-before-interactive-script-outside-document, https://nextjs.org/docs/messages/no-head-element, https://nextjs.org/docs/messages/no-css-tags, https://nextjs.org/docs/messages/no-img-element, https://nextjs.org/docs/messages/no-assign-module-variable, Array.prototype.at, Function.prototype.name, Object.is, https://nextjs.org/docs/messages/no-unwanted-polyfillio, https://cdn.polyfill.io/v2/, https://polyfill.io/v3/, https://polyfill-fastly.net/, https://polyfill-fastly.io/, https://cdnjs.cloudflare.com/polyfill/, https://nextjs.org/docs/messages/no-styled-jsx-in-document, https://nextjs.org/docs/messages/no-sync-scripts, https://nextjs.org/docs/messages/no-script-component-in-head, https://nextjs.org/docs/messages/no-html-link-for-pages, www.google-analytics.com/analytics.js, www.googletagmanager.com/gtag/js, www.googletagmanager.com/gtm.js, https://nextjs.org/docs/messages/next-script-for-ga, https://nextjs.org/docs/messages/inline-script-id, https://nextjs.org/docs/messages/no-title-in-document-head, https://nextjs.org/docs/messages/no-head-import-in-document

Location: Package overview

From: ?npm/eslint-config-next@16.1.7npm/@next/eslint-plugin-next@16.1.7

ℹ Read more on: This package | This alert | What are URL strings?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Review all remote URLs to ensure they are intentional, pointing to trusted sources, and not being used for data exfiltration or loading untrusted code at runtime.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/@next/eslint-plugin-next@16.1.7. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Block Low
Embedded URLs or IPs: npm next

URLs: https://nextjs.org/docs/messages/middleware-to-proxy, https://nextjs.org/docs/messages/invalid-page-config, https://nextjs.org/docs/architecture/nextjs-compiler#supported-features, https://github.com/babel/babel-loader/issues/787, https://nextjs.org/docs/messages/export-all-in-page, https://nextjs.org/docs/messages/generatebuildid-not-a-string, https://nextjs.org/docs/messages/babel-font-loader-conflict, server.runtime.prod, https://nextjs.org/docs/messages/import-esm-externals, https://nextjs.org/docs/messages/no-cache, https://nextjs.org/docs/messages/conflicting-public-file-page, https://nextjs.org/docs/messages/nested-reserved-page, https://nextjs.org/docs/messages/page-without-valid-component, https://nextjs.org/docs/messages/invalid-prefetch-configuration, https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config, https://jestjs.io/docs/webpack#mocking-css-modules, https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE, https://github.com/zloirock/core-js, https://nodejs.org/api/process.html#processfeaturestypescript, https://nextjs.org/docs/app/building-your-application/deploying/static-exports, https://github.com/vercel/next.js/blob/4db8c49cc31e4fc182391fae6903fb5ef4e8c66e/packages/next/bin/next.ts#L134=, https://github.com/vercel/next.js/blob/84f347fc86f4efc4ec9f13615c215e4b9fb6f8f0/packages/next/src/build/index.ts#L815-L818, https://nextjs.org/docs/messages/invalid-getstaticpaths-value, https://github.com/napi-rs/napi-rs/issues/1630, https://github.com/nodejs/node/blob/main/doc/api/process.md#a-note-on-process-io, https://github.com/npm/cli/issues/4828, https://nextjs.org/docs/messages/failed-loading-swc, https://github.com/nodejs/modules/issues/307, https://rustwasm.github.io/docs/wasm-bindgen/examples/without-a-bundler.html, https://trace.nextjs.org, https://github.com/vercel/next.js, https://nextjs.org/docs/messages/css-global, https://nextjs.org/docs/messages/css-npm, https://nextjs.org/docs/messages/css-modules-npm, https://mathiasbynens.be/notes/css-escapes#identifiers-strings, https://www.w3.org/TR/CSS21/syndata.html#characters, https://nextjs.org/docs/messages/minification-disabled, https://nextjs.org/docs/messages/invalid-resolve-alias, https://nextjs.org/docs/messages/custom-document-image-import, https://nextjs.org/docs/messages/postcss-ignored-plugin, https://nextjs.org/docs/messages/postcss-function, https://nextjs.org/docs/messages/postcss-shape, https://nextjs.org/docs/routing/dynamic-routes, https://nextjs.org/docs/messages/conflicting-ssg-paths, https://nextjs.org/docs/messages/nested-middleware, https://nextjs.org/docs/messages/improper-devtool, https://nextjs.org/docs/messages/swc-disabled, builder.io/partytown, https://github.com/webpack/webpack/issues/11467, https://github.com/jmblog/how-to-optimize-momentjs-with-webpack, https://nextjs.org/docs/messages/undefined-webpack-config, https://github.com/facebook/create-react-app/blob/fddce8a9e21bf68f37054586deb0c8636a45f50b/packages/react-scripts/config/webpack.config.js#L594, https://nextjs.org/docs/app/building-your-application/upgrading/app-router-migration#step-3-migrating-nexthead, https://nextjs.org/docs/app/building-your-application/routing/route-groups, https://github.com/mozilla/source-map/issues/91, https://nextjs.org/docs/messages/invalid-use-server-value, http://www.sitemaps.org/schemas/sitemap/0.9, http://www.google.com/schemas/sitemap-image/1.1, http://www.google.com/schemas/sitemap-video/1.1, http://www.w3.org/1999/xhtml, https://github.com/webpack/webpack/blob/e237b580e2bda705c5ab39973f786f7c5a7026bc/lib/EvalSourceMapDevToolPlugin.js#L37, https://webpack.js.org/configuration/devtool/, https://webpack.js.org/configuration/mode/, https://nextjs.org/docs/app/api-reference/file-conventions/metadata/opengraph-image#image-files-jpg-png-gif, https://github.com/microsoft/TypeScript/blob/214df64e287804577afa1fea0184c18c40f7d1ca/LICENSE.txt, https://github.com/postcss/postcss-scss/blob/master/README.md#2-inline-comments-for-postcss, https://github.com/sindresorhus/type-fest, https://nextjs.org/docs/api-reference/edge-runtime, https://nextjs.org/docs/messages/node-module-in-edge-runtime, https://nextjs.org/docs/messages/edge-dynamic-code-evaluation, https://cs.github.com/webpack/webpack/blob/9fcaa243573005d6fdece9a3f8d89a0e8b399613/lib/stats/DefaultStatsFactoryPlugin.js#L414, https://github.com/vercel/next.js/pull/72959, https://nextjs.org/docs/messages/next-dynamic-api-wrong-context, https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams, https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering, https://nextjs.org/docs/messages/dynamic-server-error, https://nextjs.org/docs/messages/ppr-caught-error, https://nextjs.org/docs/messages/blocking-route, https://nextjs.org/docs/messages/next-prerender-dynamic-viewport, https://nextjs.org/docs/messages/next-prerender-dynamic-metadata, https://react.dev/errors/, http://www.w3.org/1999/xlink, http://www.w3.org/XML/1998/namespace, http://www.w3.org/2000/svg, http://www.w3.org/1998/Math/MathML, props.name?null:, options.as?options.as:, canonicalUrlForRouteWithNoSearchParams.search?canonicalUrlForRouteWithNoSearchParams.search:requestedSearch,optimisticRenderedSearch=, https://nextjs.org/docs/messages/failed-to-find-server-action, https://nextjs.org/docs/messages/built-in-next-font, https://nextjs.org/telemetry, https://nextjs.org/docs/messages/app-dir-dynamic-href, https://nextjs.org/docs/messages/link-no-children, https://nextjs.org/docs/messages/link-multiple-children, https://github.com/vercel/next.js/releases., https://nextjs.org/docs/messages/opening-an-issue, https://learn.microsoft.com/en-us/cpp/build/reference/dumpbin-reference, https://nextjs.org/docs/messages/next-request-in-use-cache, https://nextjs.org/docs/messages/sync-dynamic-apis, https://example.com/subdir, https://example.com/relative, https://example.com/subdir/, https://example.com/subdir/relative, https://radix-ui.com/primitives/docs/components/, tooltip.open, https://github.com/styled-components/polished/blob/main/src/internalHelpers/errors.md#, modules.data, analyze.data, https://nextjs.org/docs/app/api-reference/functions/redirect#parameters, https://nextjs.org/docs/app/api-reference/functions/use-router#userouter, https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations, https://github.com/facebook/react/blob/942eb80381b96f8410eab1bef1c539bed1ab0eb1/packages/react-client/src/ReactFlightReplyClient.js#L931-L934, https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#defaultjs, https://example.com/search?q=custom%20spacing, https://developer.mozilla.org/docs/Web/API/URLSearchParams, https://nextjs.org/docs/app/api-reference/functions/use-search-params, https://nextjs.org/docs/app/building-your-application/rendering/client-components, https://nextjs.org/docs/app/api-reference/functions/use-params, https://nextjs.org/docs/app/api-reference/functions/use-selected-layout-segments, https://nextjs.org/docs/app/api-reference/functions/use-selected-layout-segment, https://github.com/vercel/next.js/issues/43605#issuecomment-1451617521, https://github.com/vercel/next.js/pull/85903,, https://github.com/webpack/webpack/blob/3aa6b6bc3a64/lib/hmr/HotModuleReplacement.runtime.js#L296-L298, https://webpack.js.org/api/hot-module-replacement/#apply, https://nextjs.org/docs/pages/api-reference/functions/use-router#routerreplace, search-params.browser.dev, https://nextjs.org/docs/messages/next-image-missing-loader, https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns, https://nextjs.org/docs/messages/next-image-unconfigured-host, https://stackoverflow.com/q/39777833/266535, https://developer.mozilla.org/docs/Web/HTTP/Basics_of_HTTP/Data_URIs, https://nextjs.org/docs/messages/placeholder-blur-data-url, https://nextjs.org/docs/messages/next-image-unconfigured-qualities, https://nextjs.org/docs/messages/next-image-missing-loader-width, https://web.dev/lcp/#measure-lcp-in-javascript, https://nextjs.org/docs/api-reference/next/legacy/image#priority, 27http://www.w3.org/2000/svg%27%20version=%271.1%27%20width=%27, params.browser.dev, params.browser.prod, https://nextjs.org/docs/messages/next-router-not-mounted, https://nextjs.org/docs/api-reference/next/image#sizes, https://github.com/facebook/react/issues/25883, https://github.com/vercel/next.js/pull/20748, https://html.spec.whatwg.org/multipage/scripting.html#script-force-async, search-params.browser.prod, https://web.dev/interactive, https://nextjs.org/docs/app/api-reference/components/script, https://nextjs.org/docs/messages/invalid-new-link-with-extra-anchor, https://nextjs.org/docs/app/building-your-application/upgrading/codemods#remove-a-tags-from-link-components, https://nextjs.org/docs/messages/failed-to-fetch-devpagesmanifest, https://nextjs.org/docs/messages/client-side-exception-occurred, https://nextjs.org/docs/messages/app-static-to-dynamic-error, https://wicg.github.io/cookie-store/#dictdef-cookie, https://wicg.github.io/cookie-store/#CookieStore-get, https://wicg.github.io/cookie-store/#CookieStore-getAll, https://wicg.github.io/cookie-store/#CookieStore-set, https://wicg.github.io/cookie-store/#CookieStore-delete, https://github.com/nodejs/undici/issues/2021, https://mimesniff.spec.whatwg.org/#mime-type-essence, https://fetch.spec.whatwg.org/#http-whitespace, https://webidl.spec.whatwg.org/#dfn-default-iterator-object, https://fetch.spec.whatwg.org/#dom-body-text, https://fetch.spec.whatwg.org/#dom-body-json, https://fetch.spec.whatwg.org/#dom-body-blob, https://fetch.spec.whatwg.org/#dom-body-bytes, https://fetch.spec.whatwg.org/#dom-body-arraybuffer, https://fetch.spec.whatwg.org/#dom-body-formdata, https://fetch.spec.whatwg.org/#dom-body-bodyused, https://fetch.spec.whatwg.org/#dom-body-body, https://github.com/nodejs/undici/issues/1447, https://fetch.spec.whatwg.org/#header-list-contains, https://fetch.spec.whatwg.org/#concept-header-list-append, https://fetch.spec.whatwg.org/#concept-header-list-set, https://fetch.spec.whatwg.org/#concept-header-list-delete, https://fetch.spec.whatwg.org/#concept-header-list-get, https://fetch.spec.whatwg.org/#convert-header-names-to-a-sorted-lowercase-set, https://fetch.spec.whatwg.org/#dom-headers-append, https://fetch.spec.whatwg.org/#dom-headers-delete, https://fetch.spec.whatwg.org/#dom-headers-get, https://fetch.spec.whatwg.org/#dom-headers-has, https://fetch.spec.whatwg.org/#dom-headers-set, https://fetch.spec.whatwg.org/#dom-headers-getsetcookie, https://fetch.spec.whatwg.org/#concept-header-list-sort-and-combine, https://fetch.spec.whatwg.org/#dom-request, https://w3c.github.io/webappsec-referrer-policy/#referrer-policy, https://fetch.spec.whatwg.org/#concept-request-mode, https://fetch.spec.whatwg.org/#requestcredentials, https://fetch.spec.whatwg.org/#requestcache, https://fetch.spec.whatwg.org/#requestredirect, https://fetch.spec.whatwg.org/#fetch-controller-abort, CacheStorage.open, https://dom.spec.whatwg.org/#event, https://dom.spec.whatwg.org/#dom-event-none, https://dom.spec.whatwg.org/#dom-event-capturing_phase, https://dom.spec.whatwg.org/#dom-event-at_target, https://dom.spec.whatwg.org/#dom-event-bubbling_phase, https://dom.spec.whatwg.org/#dom-event-event, https://dom.spec.whatwg.org/#dom-event-type, https://dom.spec.whatwg.org/#dom-event-target, https://dom.spec.whatwg.org/#dom-event-srcelement, https://dom.spec.whatwg.org/#dom-event-currenttarget, https://dom.spec.whatwg.org/#dom-event-stoppropagation, https://dom.spec.whatwg.org/#dom-event-cancelbubble, https://dom.spec.whatwg.org/#dom-event-stopimmediatepropagation, https://dom.spec.whatwg.org/#dom-event-bubbles, https://dom.spec.whatwg.org/#dom-event-cancelable, https://dom.spec.whatwg.org/#dom-event-returnvalue, https://dom.spec.whatwg.org/#dom-event-preventdefault, https://dom.spec.whatwg.org/#dom-event-defaultprevented, https://dom.spec.whatwg.org/#dom-event-composed, https://dom.spec.whatwg.org/#dom-event-istrusted, https://dom.spec.whatwg.org/#dom-event-timestamp, https://nextjs.org/docs/app/building-your-application/optimizing/fonts, https://nextjs.org/docs/messages/google-fonts-missing-subsets, https://example.com, https://github.com/vercel/next.js/pull/53797, https://github.com/pmmmwh/react-refresh-webpack-plugin/blob/main/loader/utils/getRefreshModuleRuntime.js#L29, http://json-schema.org/draft-07/schema, http://json-schema.org/schema, https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#, https://github.com/ajv-validator/ajv/blob/master/lib/definition_schema.js, http://json-schema.org/draft-07/schema#, https://json-schema.org/draft/2019-09/schema#, module.hot, https://fonts.googleapis.com/css2?family=, https://en.wikipedia.org/wiki/Letter_frequency, https://developer.chrome.com/blog/font-fallbacks/, https://docs.google.com/document/d/e/2PACX-1vRsazeNirATC7lIj2aErSHpK26hZ6dA9GsQ069GEbq5fyzXEhXbvByoftSfhG82aJXmrQ_sJCPBqcx_/pub, https://mapbox-node-pre-gyp-public-testing-bucket.s3.us-east-1.amazonaws.com, CHANGELOG.md, README.md, readme.md, changelog.md, socket.io, socket.io/lib/index.js, https://github.com/jonschlinkert/fill-range, https://github.com/jonschlinkert/is-number, https://github.com/micromatch/to-regex-range, git://github.com/mapbox/node-pre-gyp.git, https://www.microsoft.com/typography/OTSPEC/featurelist.htm, https://docs.microsoft.com/en-us/typography/opentype/spec/chapter2#class-definition-table, https://docs.microsoft.com/en-us/typography/opentype/spec/chapter2#coverage-table, http://unicode.org/Public/MAPPINGS/VENDORS/APPLE/GAELIC.TXT, http://unicode.org/Public/MAPPINGS/VENDORS/APPLE/INUIT.TXT, https://w3c.github.io/csswg-drafts/css-images/#valdef-rg-size-length-0, https://github.com/vercel/satori#jsx., https://fonts.googleapis.com/css2?, https://api.figma.com/v1/images/, https://github.com/gilmoreorless/css-background-parser, http://gilmoreorless.mit-license.org/, r.name?, r.name:, https://github.com/browserslist/update-db#readme, 2.3.8.0, 2.5.1.0, 3.1.2.0, 3.1.8.25, 3.6.6.6, 3.8.6.0, 3.11.10.10, 3.11.10.15, 3.14.5.8, 3.17.13.0, 3.28.73.0, 4.5.103.30, 4.5.103.33, 4.5.103.35, 4.5.103.37, 4.5.103.43, 4.5.103.45, 4.5.103.53, 4.6.85.28, 4.6.85.31, 4.6.85.32, 5.0.71.35, 5.0.71.47, 5.0.71.52, 5.0.71.60, 8.3.110.9, 9.2.230.21, 9.4.146.19, 9.4.146.24, 9.4.146.26, 9.5.172.21, 9.5.172.25, 9.6.180.14, 9.6.180.15, 10.1.124.8, 10.2.154.4, 10.2.154.13, 10.2.154.15, 10.2.154.23, 10.2.154.26, 10.7.193.13, 10.7.193.20, 10.8.168.20, 10.8.168.21, 10.8.168.25, 11.3.244.4, 11.3.244.8, 11.8.172.13, 11.8.172.15, 11.8.172.17, 12.4.254.14, 12.4.254.20, 12.4.254.21, 12.9.202.26, 12.9.202.28, 13.6.233.8, 13.6.233.10, 14.1.146.11, https://feross.org/opensource, https://github.com/crypto-browserify/crypto-browserify, https://github.com/webpack-contrib/mini-css-extract-plugin#filename, https://github.com/webpack-contrib/mini-css-extract-plugin#chunkfilename, https://github.com/webpack-contrib/mini-css-extract-plugin#experimentaluseimportmodule, https://github.com/webpack-contrib/mini-css-extract-plugin#ignoreorder, https://webpack.js.org/concepts/under-the-hood/#chunks, https://github.com/webpack-contrib/mini-css-extract-plugin#insert, https://github.com/webpack-contrib/mini-css-extract-plugin#attributes, https://github.com/webpack-contrib/mini-css-extract-plugin#linktype, https://github.com/webpack-contrib/mini-css-extract-plugin#noRuntime, https://react.dev/link/dangerously-set-inner-html, https://react.dev/link/invalid-hook-call, https://react.dev/warnings/version-mismatch, https://nextjs.org/docs/app/api-reference/functions/headers, https://nextjs.org/docs/messages/missing-root-layout-tags, https://nextjs.org/docs/app/api-reference/functions/cookies#options, https://nextjs.org/docs/messages/class-component-in-server-component, https://nextjs.org/docs/messages/react-client-hook-in-server-component, https://nextjs.org/docs/app/api-reference/next-config-js/serverActions#bodysizelimit, https://github.com/vercel/next.js/issues/new/, https://nextjs.org/docs/messages/nonce-contained-invalid-characters, https://nextjs.org/docs/advanced-features/static-html-export, https://nextjs.org/docs/messages/missing-suspense-with-csr-bailout, https://nextjs.org/docs/messages/invalid-multi-match, https://github.com/jonschlinkert/repeat-string, https://github.com/webpack-contrib/mini-css-extract-plugin#publicpath, https://github.com/webpack-contrib/mini-css-extract-plugin#emit, https://github.com/webpack-contrib/mini-css-extract-plugin#esmodule, https://github.com/webpack-contrib/mini-css-extract-plugin#getting-started, https://github.com/isaacs/node-glob/issues/167, http://github.com/homebrewing/brauhaus-diff, http://github.com/garycourt/murmurhash-js, http://sites.google.com/site/murmurhash/, gmail.com, gary.court@gmail.com, http://github.com/garycourt/uri-js, e.scheme=e.secure?, commander.help, 127.0.0.1, https://npms.io/search?q=ponyfill., https://getbootstrap.com/, https://github.com/twbs/bootstrap/blob/master/LICENSE, https://github.com/necolas/normalize.css/blob/master/LICENSE.md, https://github.com/babel/babel/blob/efa52324ff835b794c48080f14877b6caf32cd15/packages/babel-code-frame/src/defs.ts#L40-L54, https://github.com/vercel/next.js/discussions/76812, n.name?null:, t.as?t.as:, https://react.dev/link/hydration-mismatch, https://nextjs.org/docs/messages/react-hydration-error, https://nextjs.org, https://react.dev, https://nextjs.org/docs/pages/building-your-application/data-fetching/incremental-static-regeneration, https://nextjs.org/docs/app/building-your-application/data-fetching/incremental-static-regeneration, https://nextjs.org/docs/pages/building-your-application/data-fetching/get-server-side-props, https://nextjs.org/docs/app/building-your-application/rendering/server-components#dynamic-apis, https://nextjs.org/docs/app/api-reference/functions/fetch, https://nextjs.org/docs/pages/building-your-application/rendering/static-site-generation, https://nextjs.org/docs/pages/building-your-application/rendering/server-side-rendering, https://nextjs.org/docs/app/building-your-application/rendering/server-components#static-rendering-default, https://nextjs.org/docs/app/building-your-application/rendering/server-components#dynamic-rendering, https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack, https://mths.be/he, https://github.com/ashtuchkin/iconv-lite/wiki/Node-v4-compatibility, https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding, https://github.com/facebook/react/issues, https://github.com/facebook/react/issues/3236, https://react.dev/link/new-jsx-transform, https://react.dev/link/special-props, https://nextjs.org/docs/messages/public-next-folder-conflict, https://nextjs.org/docs/messages/404-get-initial-props, https://nextjs.org/docs/messages/gssp-export, https://nextjs.org/docs/messages/non-standard-node-env, https://nextjs.org/docs/messages/cache-components, https://nextjs.org/docs/app/api-reference/functions/unstable_cache, https://nextjs.org/docs/messages/next-prerender-sync-request, https://github.com/sindresorhus/cli-spinners/blob/master/spinners.json, https://nextjs.org/docs/messages/gssp-component-member, https://nextjs.org/docs/messages/ssg-fallback-true-export, https://nextjs.org/docs/messages/api-routes-response-size-limit, https://nextjs.org/docs/messages/invalid-api-status-body, https://nextjs.org/docs/api-routes/edge-api-routes, https://react.dev/link/invalid-aria-props, https://react.dev/link/attribute-behavior, https://react.dev/link/controlled-components, https://react.dev/link/rules-of-hooks, https://react.dev/link/warning-keys, https://github.com/browserslist/browserslist#readme, https://twitter.com/browserslist, https://github.com/postcss/autoprefixer#readme, DXImageTransform.Microsoft, https://mths.be/cssesc, https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document, https://github.com/w3c/csswg-drafts/blob/main/css-color-4/multiply-matrices.js., https://github.com/w3c/csswg-drafts/blob/main/css-color-4/multiply-matrices.js, https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js., https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js, https://github.com/w3c/csswg-drafts/blob/main/css-color-4/deltaEOK.js., https://github.com/w3c/csswg-drafts/blob/main/css-color-4/deltaEOK.js, https://www.xarg.org/2014/03/rational-numbers-in-javascript/, https://github.com/csstools/postcss-plugins/discussions/192, https://github.com/csstools/postcss-plugins/blob/main/plugins/css-blank-pseudo/README-BROWSER.md, https://github.com/WICG/focus-visible, https://github.com/jsxtools/focus-within/blob/master/README-BROWSER.md, https://github.com/csstools/postcss-plugins/blob/main/plugins/css-has-pseudo/README-BROWSER.md, https://github.com/csstools/postcss-plugins/blob/main/plugins/css-prefers-color-scheme/README-BROWSER.md, https://github.com/csstools/postcss-plugins/blob/main/plugin-packs/postcss-preset-env/FEATURES.md, https://www.w3.org/TR/css-cascade-3/#all-shorthand, https://developer.mozilla.org/en-US/docs/Web/CSS/all, https://github.com/maximkoretskiy/postcss-initial, https://www.w3.org/TR/selectors-4/#any-link-pseudo, https://developer.mozilla.org/en-US/docs/Web/CSS/:any-link, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-pseudo-class-any-link, https://www.w3.org/TR/selectors-4/#blank, https://developer.mozilla.org/en-US/docs/Web/CSS/:blank, https://github.com/csstools/postcss-plugins/tree/main/plugins/css-blank-pseudo, https://www.w3.org/TR/css-break-3/#breaking-controls, https://developer.mozilla.org/en-US/docs/Web/CSS/break-after, https://github.com/shrpne/postcss-page-break, https://www.w3.org/TR/css-cascade-5/#layering, https://developer.mozilla.org/en-US/docs/Web/CSS/@layer, https://www.w3.org/TR/selectors-4/#attribute-case, https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors, https://github.com/Semigradsky/postcss-attribute-case-insensitive, https://www.w3.org/TR/css-values-4/#funcdef-clamp, https://developer.mozilla.org/en-US/docs/Web/CSS/clamp, https://github.com/polemius/postcss-clamp, https://www.w3.org/TR/css-color-4/#color-adjust, https://developer.mozilla.org/en-US/docs/Web/CSS/color-adjust, https://www.w3.org/TR/css-color-5/#colorcontrast, https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-contrast, https://www.w3.org/TR/css-color-4/#funcdef-color, https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-function, https://www.w3.org/TR/css-color-4/#funcdef-rgb, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation, https://www.w3.org/TR/css-color-5/#color-mix, https://www.w3.org/TR/css-color-4/#funcdef-color-mod, https://github.com/csstools/postcss-color-mod-function, https://www.w3.org/TR/css-contain-3/#container-queries, https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Container_Queries, https://www.npmjs.com/package/container-query-polyfill, https://www.w3.org/TR/mediaqueries-5/#at-ruledef-custom-media, https://github.com/postcss/postcss-custom-media, https://www.w3.org/TR/css-variables-1/, https://developer.mozilla.org/en-US/docs/Web/CSS/var, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties, https://tabatkins.github.io/specs/css-apply-rule/, https://github.com/pascalduez/postcss-apply, https://drafts.csswg.org/css-extensions/#custom-selectors, https://github.com/postcss/postcss-custom-selectors, https://www.w3.org/TR/selectors-4/#dir-pseudo, https://developer.mozilla.org/en-US/docs/Web/CSS/:dir, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-dir-pseudo-class, https://www.w3.org/TR/css-display-3/#the-display-properties, https://developer.mozilla.org/en-US/docs/Web/CSS/display/two-value_syntax_of_display, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-normalize-display-values, https://www.w3.org/TR/css-images-4/#color-stop-syntax, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients, https://drafts.csswg.org/css-env-1/, https://developer.mozilla.org/en-US/docs/Web/CSS/env, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function, https://www.w3.org/TR/css-fonts-4/#fangsong-def, https://developer.mozilla.org/en-US/docs/Web/CSS/font-family#Syntax, https://github.com/JLHwung/postcss-font-family-fangsong, https://www.w3.org/TR/selectors-4/#focus-visible-pseudo, https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-visible, https://www.w3.org/TR/selectors-4/#focus-within-pseudo, https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within, https://github.com/jsxtools/focus-within, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within, https://www.w3.org/TR/css-fonts-4/#font-format-values, https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face, https://github.com/valtlai/postcss-font-format-keywords, https://www.w3.org/TR/css-fonts-3/#propdef-font-variant, https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant, https://github.com/postcss/postcss-font-variant, https://www.w3.org/TR/css-grid-1/#gutters, https://developer.mozilla.org/en-US/docs/Web/CSS/gap, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-gap-properties, https://www.w3.org/TR/css-color-4/#funcdef-gray, https://github.com/postcss/postcss-color-gray, https://www.w3.org/TR/css-grid-1/, https://developer.mozilla.org/en-US/docs/Web/CSS/grid, https://github.com/postcss/autoprefixer, https://www.w3.org/TR/selectors-4/#has-pseudo, https://developer.mozilla.org/en-US/docs/Web/CSS/:has, https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo, https://github.com/csstools/postcss-plugins/tree/main/experimental/css-has-pseudo, https://www.w3.org/TR/css-color-4/#hex-notation, https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Syntax_2, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-hex-alpha, https://www.w3.org/TR/css-color-4/#funcdef-hwb, https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hwb, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-hwb-function, https://www.w3.org/TR/css-values-4/#ic, https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Values_and_Units#dimensions, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-ic-unit, https://www.w3.org/TR/css-images-4/#image-set-notation, https://developer.mozilla.org/en-US/docs/Web/CSS/image-set, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function, https://www.w3.org/TR/selectors-4/#range-pseudos, https://developer.mozilla.org/en-US/docs/Web/CSS/:in-range, https://www.w3.org/TR/selectors-4/#matches-pseudo, https://developer.mozilla.org/en-US/docs/Web/CSS/:is, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-is-pseudo-class, https://www.w3.org/TR/css-color-4/#funcdef-lab, https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/lab, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-lab-function, https://www.w3.org/TR/css-color-4/#funcdef-lch, https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/lch, https://www.w3.org/TR/css-logical-1/, https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical, https://www.w3.org/TR/selectors-4/#selectordef-matches, https://github.com/postcss/postcss-selector-matches, https://www.w3.org/TR/mediaqueries-4/#range-context, https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries#Syntax_improvements_in_Level_4, https://github.com/postcss/postcss-media-minmax, https://www.w3.org/TR/css-nesting-1/, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting, https://www.w3.org/TR/selectors-4/#negation-pseudo, https://developer.mozilla.org/en-US/docs/Web/CSS/:not, https://github.com/postcss/postcss-selector-not, https://www.w3.org/TR/css-color-4/#specifying-oklab-oklch, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-oklab-function, https://www.w3.org/TR/css-color-4/#transparency, https://developer.mozilla.org/en-US/docs/Web/CSS/opacity, https://github.com/mrcgrtz/postcss-opacity-percentage, https://www.w3.org/TR/css-overflow-3/#propdef-overflow, https://developer.mozilla.org/en-US/docs/Web/CSS/overflow, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand, https://www.w3.org/TR/css-text-3/#overflow-wrap-property, https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap, https://github.com/mattdimu/postcss-replace-overflow-wrap, https://www.w3.org/TR/css-overscroll-1/, https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior, https://www.w3.org/TR/css-align-3/#place-items-property, https://developer.mozilla.org/en-US/docs/Web/CSS/place-content, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-place, https://www.w3.org/TR/mediaqueries-5/#prefers-color-scheme, https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme, https://github.com/csstools/postcss-plugins/tree/main/plugins/css-prefers-color-scheme, https://www.w3.org/TR/mediaqueries-5/#prefers-reduced-motion, https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion, https://www.w3.org/TR/selectors-4/#rw-pseudos, https://developer.mozilla.org/en-US/docs/Web/CSS/:read-only, https://www.w3.org/TR/css-color-4/#valdef-color-rebeccapurple, https://developer.mozilla.org/en-US/docs/Web/CSS/color_value, https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-rebeccapurple, https://www.w3.org/TR/css-fonts-4/#system-ui-def, https://github.com/JLHwung/postcss-font-family-system-ui, https://www.w3.org/TR/css-cascade-4/#inherit-initial, https://developer.mozilla.org/en-US/docs/Web/CSS/unset, https://www.w3.org/TR/2021/WD-css-conditional-5-20211221/, https://www.w3.org/TR/selectors-4/#where-pseudo, https://developer.mozilla.org/en-US/docs/Web/CSS/:where, https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method, https://nextjs.org/docs/messages/empty-object-getInitialProps, https://nextjs.org/docs/messages/no-document-import-in-page, https://nextjs.org/docs/messages/no-router-instance, https://nextjs.org/docs/messages/, https://nextjs.org/docs/messages/get-initial-props-export, https://nextjs.org/docs/messages/non-dynamic-getstaticpaths-usage, https://nextjs.org/docs/messages/gssp-mixed-not-found-redirect, https://nextjs.org/docs/messages/gsp-redirect-during-prerender, https://nextjs.org/docs/messages/gssp-no-mutating-res, https://nextjs.org/docs/messages/reserved-page-prop, https://nextjs.org/docs/messages/missing-document-component, https://reactjs.org/link/react-polyfills, https://github.com/tc39/proposal-import-attributes, https://react.dev/warnings/react-dom-test-utils, https://github.com/facebook/react/issues/17626, https://github.com/facebook/react/issues/20417., https://nextjs.org/docs/messages/next-response-next-in-app-route-handler, style.css.map, https://github.com/webpack-contrib/sass-loader#implementation, https://github.com/webpack-contrib/sass-loader#sassoptions, https://github.com/webpack-contrib/sass-loader#additionaldata, https://github.com/webpack-contrib/sass-loader#sourcemap, https://github.com/webpack-contrib/sass-loader#webpackimporter, https://github.com/webpack-contrib/sass-loader#warnruleaswarning, https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume, e.name?, e.name:, http://opensource.org/licenses/BSD-3-Clause, https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?pli=1#, https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit#heading=h.535es3xeprgt, https://github.com/mozilla/source-map/issues/16, SemVer.compare, http://foo.com, http://foo.com/, emergencycalldata.ecall.msd, vnd.adobe.flash.movie, vnd.ahead.space, vnd.curl.car, vnd.dece.data, vnd.desmume.movie, vnd.eudora.data, vnd.f-secure.mobile, vnd.gmx, vnd.muvee.style, vnd.nokia.n-gage.data, vnd.oasis.opendocument.graphics, vnd.previewsystems.box, vnd.rainstor.data, vnd.ruckus.download, vnd.sealed.net, vnd.sun.xml.writer.global, vnd.uplanet.channel, vnd.youtube.yt, vnd.dece.audio, vnd.hns.audio, vnd.rip, vnd.abc, vnd.fly, vnd.in3d.spot, vnd.wap.si, vnd.wap.sl, vnd.dece.mobile, vnd.dece.sd, vnd.dece.video, vnd.hns.video, vnd.motorola.video, vnd.sealedmedia.softseal.mov, vnd.vivo, this.global?, dotenv.org/vault/.env.vault?environment=development, git://github.com/motdotla/dotenv.git, https://github.com/motdotla/dotenv?sponsor=1, https://nextjs.org/docs/messages/next-prerender-current-time, https://nextjs.org/docs/messages/next-prerender-random, https://nextjs.org/docs/messages/next-prerender-crypto, https://nextjs.org/docs/messages/next-prerender-current-time-client, https://nextjs.org/docs/messages/next-prerender-random-client, https://nextjs.org/docs/messages/next-prerender-crypto-client, https://nextjs.org/docs/messages/middleware-relative-urls, https://nextjs.org/docs/messages/middleware-new-signature, https://nextjs.org/docs/messages/middleware-request-page, https://nextjs.org/docs/messages/middleware-parse-user-agent, https://nextjs.org/docs/messages/custom-error-no-custom-404, https://nextjs.org/docs/app/api-reference/config/next-config-js/max-postponed-state-size, https://nextjs.org/docs/messages/render-no-starting-slash, https://nextjs.org/docs/messages/env-key-not-allowed, https://nextjs.org/docs/messages/production-start-no-build-id, https://nextjs.org/docs/app/api-reference/config/next-config-js/middlewareClientMaxBodySize, https://nextjs.org/docs/app/api-reference/functions/use-pathname, https://nextjs.org/docs/app/api-reference/functions/use-router, https://webpack.js.org/api/hot-module-replacement/#check, https://example.com/path?query=1, https://example.com/path?query=1&_rsc=abc123, https://example.com/path?query=1&_rsc, https://example.com/search?q=custom+spacing&rsc=abc123, https://url.spec.whatwg.org/#interface-urlsearchparams,, https://nextjs.org/docs/messages/export-path-mismatch, https://github.com/GoogleChromeLabs/quicklink/blob/453a661fa1fa940e2d2e044452398e38c67a98fb/src/index.mjs#L115-L118, https://nextjs.org/docs/messages/import-next, https://nextjs.org/docs/messages/invalid-project-dir-casing, https://nextjs.org/docs/messages/prerender-error, https://nextjs.org/docs/messages/reserved-port, https://github.com/microsoft/playwright/blob/7d924470d397975a74a19184c136b3573a974e13/packages/playwright-core/src/utils/registry.ts#L141, https://nextjs.org/docs/messages/next-export-no-build-id, https://nextjs.org/docs/messages/export-no-custom-routes, https://nextjs.org/docs/messages/can-not-output-to-public, https://nextjs.org/docs/messages/can-not-output-to-static, https://nextjs.org/docs/messages/export-image-api, https://nextjs.org/docs/app/building-your-application/deploying/static-exports#unsupported-features, https://nextjs.org/docs/messages/api-routes-static-export, https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack#root-directory, https://nextjs.org/docs/app/api-reference/config/next-config-js/output#caveats, registry.yarnpkg.com, https://registry.npmjs.org/, music.song, video.movie, https://github.com/FiloSottile/mkcert/releases/download/, https://nextjs.org/docs/app/api-reference/functions/generate-metadata#metadatabase, https://nextjs.org/docs/messages/routes-must-be-array, https://nextjs.org/docs/messages/invalid-external-rewrite, https://nextjs.org/docs/messages/max-custom-routes-reached, https://nextjs.org/docs/messages/invalid-route-source, https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255, https://nextjs.org/docs/app/api-reference/functions/generate-metadata, https://nextjs.org/docs/app/api-reference/functions/generate-viewport, https://nextjs.org/docs/app/api-reference/config/typescript#the-typescript-plugin, https://nextjs.org/docs/, https://developer.apple.com/library/archive/documentation/AppleScript/Conceptual/AppleScriptLangGuide/reference/ASLR_classes.html#//apple_ref/doc/uid/TP40000983-CH1g-BBCIAHJF:~:text=Special%20String%20Characters, https://github.com/nodejs/node/blob/c3bb4b1aa5e907d489619fb43d233c3336bfc03d/lib/child_process.js#L333, https://github.com/microsoft/WSL/issues/423#issuecomment-221627364, https://github.com/Microsoft/TypeScript/blob/main/src/compiler/diagnosticMessages.json, https://nextjs.org/docs/messages/invalid-segment-export, https://nextjs.org/docs/app/api-reference/next-config-js/turbopack, https://github.com/vercel/next.js/blob/6a40da0345939fe4f7b1ae519b296a86dd103432/packages/next/src/lib/picocolors.ts#L21-L24, builder.io/partytown/integration, https://nextjs.org/docs/messages/invalid-script, https://nextjs.org/docs/messages/no-document-title, https://nextjs.org/docs/messages/no-document-viewport-meta, https://nextjs.org/docs/messages/doc-crossorigin-deprecated, https://nextjs.org/docs/messages/large-page-data, https://nextjs.org/docs/messages/circular-structure, https://github.com/facebook/react/blob/d50323eb845c5fde0d720cae888bf35dedd05506/packages/react-reconciler/src/ReactFiberErrorLogger.js#L78, https://nextjs.org/docs/messages/cache-bypass-in-dev, https://github.com/facebook/react/pull/34846, https://github.com/nodejs/node/blob/c208ffc66bb9418ff026c4e3fa82e5b4387bd147/lib/internal/timers.js#L556-L564, https://registry.npmjs.org/-/package/next/dist-tags, https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopackFileSystemCache, https://nextjs.org/docs/app/api-reference/cli/next#next-lint-options, images.domains, https://nextjs.org/docs/app/building-your-application/routing/internationalization, https://nextjs.org/docs/messages/export-no-i18n, https://nextjs.org/docs/messages/invalid-assetprefix, https://nextjs.org/docs/messages/invalid-images-config, https://nextjs.org/docs/api-reference/next/legacy/image#loader-configuration, https://nextjs.org/docs/messages/invalid-i18n-config, https://nextjs.org/docs/advanced-features/i18n-routing#how-does-this-work-with-static-generation, example.fr, example.vercel.sh, http://www.iana.org/assignments/language-subtag-registry/language-subtag-registry, https://unpkg.com/browse/@mui/icons-material@5.11.16/esm/index.js., https://github.com/nodejs/node/issues/35889, https://nextjs.org/docs/messages/next-config-error, https://nextjs.org/docs/messages/deprecated-target-config, https://nextjs.org/docs/messages/invalid-next-config, https://nextjs.org/docs/messages/fast-refresh-reload, https://github.com/vercel/next.js/blob/08d7a7e5189a835f5dcb82af026174e587575c0e/packages/next/src/client/page-bootstrap.ts#L69-L71, https://github.com/webpack/tapable/issues/32#issuecomment-350644466, https://github.com/stacktracejs/error-stack-parser/blob/9f33c224b5d7b607755eb277f9d51fcdb7287e24/error-stack-parser.js#L59C33-L59C62, https://github.com/vercel/next.js/pull/73274, https://github.com/nodejs/node/pull/7949, https://nodejs.org/docs/latest-v16.x/api/stream.html#writable_writechunk-encoding-callback, https://nodejs.org/api/http.html#responsewriteheadstatuscode-statusmessage-headers, BaseServer.run, https://nextjs.org/docs/app/api-reference/config/next-config-js/allowedDevOrigins, https://react.dev/reference/react-dom/components/form#props, https://nextjs.org/docs/messages/static-dir-deprecated, https://github.com/vercel/next.js/issues/54008, https://nextjs.org/docs/messages/invalid-server-options, 0.0.0.0, https://github.com/nodejs/node/blob/d546e7fd0bc3cbb4bcc2baae6f3aa44d2e81a413/lib/internal/process/task_queues.js#L84, https://nextjs.org/docs/messages/invalid-redirect-gssp, https://github.com/vercel/next.js/issues/5860, https://bugs.webkit.org/show_bug.cgi?id=187726, https://github.com/facebook/react/pull/22644, https://nextjs.org/docs/messages/cant-override-next-props, https://github.com/nodejs/node/issues/52102, https://nodejs.org/api/http.html#event-finish_1, https://nextjs.org/docs/canary/app/api-reference/functions/after, https://nextjs.org/docs/app/api-reference/functions/after, https://nextjs.org/docs/messages/next-prerender-sync-headers, https://opentelemetry.io/docs/specs/semconv/http/http-spans/#status, https://nextjs.org/docs/app/api-reference/file-conventions/error, https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config#dynamic, https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config#preferredregion, https://httpwg.org/specs/rfc9110.html#HEAD, https://sharp.pixelplumbing.com/api-utility#concurrency, https://en.wikipedia.org/wiki/Base64#URL_applications, https://en.wikipedia.org/wiki/List_of_file_signatures, https://react.dev/reference/react/lazy, https://react.dev/reference/react/Suspense, https://nextjs.org/docs/app/building-your-application/optimizing/lazy-loading#nextdynamic, https://developer.mozilla.org/en-US/docs/Web/API/Window/setInterval#the_this_problem, https://github.com/google/j2objc/commit/16820fdbc8f76ca0c33472810ce0cb03d20efe25, https://github.com/tomball, https://github.com/chrusart, https://nextjs.org/docs/messages/revalidate-tag-single-arg, https://nextjs.org/docs/app/api-reference/functions/updateTag, https://nextjs.org/docs/app/api-reference/functions/refresh, https://nextjs.org/docs/app/building-your-application/caching, https://nextjs.org/docs/app/api-reference/functions/revalidatePath, https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/instantiate#primary_overload%E2%80%94_taking_wasm_binary_code, https://nextjs.org/docs/messages/empty-generate-static-params, https://nextjs.org/docs/messages/slot-missing-default, https://nextjs.org/docs/messages/next-image-upgrade-to-13, https://nextjs.org/docs/app/api-reference/components/image#loading, https://github.com/vercel/next.js/discussions/77800, https://nextjs.org/docs/messages/no-script-tags-in-head-component, https://nextjs.org/docs/messages/no-stylesheets-in-head-component, https://nextjs.org/docs/api-reference/data-fetching/get-static-paths#fallback-pages, https://nextjs.org/docs/messages/invalid-relative-url-external-as, https://github.com/vercel/next.js/issues/37139, https://developer.mozilla.org/docs/Web/API/History/replaceState, net.peer.name, https://nextjs.org/test, https://nextjs.org/test2, https://github.com/vercel/next.js/pull/40686, https://nextjs.org/docs/messages/install-sass, http://127.0.0.1:3000, https://github.com/vercel/next.js/issues/47121#issuecomment-1499044345, https://github.com/npm/statusboard/issues/371#issue-920669998, https://github.com/nodejs/node/issues/31710#issuecomment-587345749, https://github.com/pillarjs/send/blob/master/index.js, https://github.com/pillarjs/send/blob/develop/index.js, https://github.com/pillarjs/send/blob/53f0ab476145670a9bdd3dc722ab2fdc8d358fc6/index.js#L392, https://github.com/pillarjs/send/blob/53f0ab476145670a9bdd3dc722ab2fdc8d358fc6/index.js#L421, https://github.com/pillarjs/send/blob/53f0ab476145670a9bdd3dc722ab2fdc8d358fc6/index.js#L484, https://github.com/pillarjs/send/blob/53f0ab476145670a9bdd3dc722ab2fdc8d358fc6/index.js#L520, https://github.com/pillarjs/send/blob/53f0ab476145670a9bdd3dc722ab2fdc8d358fc6/index.js#L632, https://github.com/pillarjs/send/blob/53f0ab476145670a9bdd3dc722ab2fdc8d358fc6/index.js#L669, https://nextjs.org/docs/app/api-reference/metadata, https://example.com/en-US, https://example.com/de-DE, https://example.com/og.png, https://developer.mozilla.org/docs/Glossary/Robots.txt, https://example.com/icon.png, https://example.com/apple-icon.png, https://developer.mozilla.org/docs/Web/HTML/Attributes/rel#attr-icon, https://example.com/manifest.json, https://developer.mozilla.org/docs/Web/Manifest, https://ogp.me/, https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html, https://example.com/archives, https://example.com/assets, https://example.com/bookmarks, https://example.com/items?page=1, https://example.com/items?page=3, https://developers.google.com/search/blog/2011/09/pagination-with-relnext-and-relprev, https://react.dev/reference/react-compiler/configuration, https://react.dev/reference/react-compiler/compilationMode, https://react.dev/reference/react-compiler/panicThreshold, my-app.com, https://nextjs.org/docs/app/api-reference/config/next-config-js/webpack, https://nextjs.org/docs/app/api-reference/config/next-config-js/trailingSlash, https://nextjs.org/docs/app/api-reference/config/next-config-js/env, https://nextjs.org/docs/app/api-reference/config/next-config-js/basePath, https://nextjs.org/docs/app/api-reference/next-config-js/sassOptions, https://nextjs.org/docs/advanced-features/source-maps, https://nextjs.org/docs/app/api-reference/config/next-config-js/reactCompiler, https://nextjs.org/docs/app/api-reference/config/next-config-js/reactStrictMode, https://nextjs.org/docs/app/api-reference/config/next-config-js/reactMaxHeadersLength, https://nextjs.org/docs/app/api-reference/next-config-js/httpAgentOptions, https://developer.mozilla.org/docs/Web/HTML/Attributes/crossorigin, https://nextjs.org/docs/advanced-features/compiler#supported-features, https://nextjs.org/docs/advanced-features/output-file-tracing, https://nextjs.org/docs/advanced-features/compiler#module-transpilation, https://nextjs.org/docs/app/api-reference/config/next-config-js/cacheComponents, https://nextjs.org/docs/pages/api-reference/next-config-js/bundlePagesRouterDependencies, https://nextjs.org/docs/app/api-reference/next-config-js/serverExternalPackages, https://github.com/nodejs/undici?tab=readme-ov-file#garbage-collection, https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/tee, https://github.com/open-telemetry/opentelemetry-js/issues/1923, https://nextjs.org/docs/messages/module-not-found, https://telemetry.nextjs.org/api/v1/record, https://nodejs.org/api/process.html#processhrtimetime, https://nextjs.org/docs/app/getting-started/server-and-client-components#preventing-environment-poisoning

Location: Package overview

From: todo-list/package.jsonnpm/next@16.1.7

ℹ Read more on: This package | This alert | What are URL strings?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Review all remote URLs to ensure they are intentional, pointing to trusted sources, and not being used for data exfiltration or loading untrusted code at runtime.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/next@16.1.7. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

@sonarqubecloud
Copy link
Copy Markdown

@github-actions
Copy link
Copy Markdown

Infisical secrets check: ✅ No secrets leaked!

Scan results:

Update Required: Your current package installation script is outdated and will no longer receive updates.
Please update to the new installation script which can be found here https://infisical.com/docs/cli/overview#installation debian section

A new release of infisical is available: 0.38.0 -> v0.158.21

To update, run: sudo apt-get update && sudo apt-get install infisical

6:47PM INF scanning for exposed secrets...
6:47PM INF 648 commits scanned.
6:47PM INF scan completed in 2s
6:47PM INF no leaks found

@depfu
Copy link
Copy Markdown
Contributor Author

depfu Bot commented Mar 24, 2026

Closing because this update has already been applied

@depfu depfu Bot closed this Mar 24, 2026
auto-merge was automatically disabled March 24, 2026 18:54

Pull request was closed

@depfu depfu Bot deleted the depfu/update/todo-list/yarn/group/nextjs-16.1.7 branch March 24, 2026 18:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

☑️ auto-merge Automatic merging of pull requests (gstraccini-bot) 🤖 bot Automated processes or integrations depfu size/L Denotes a PR that changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants