repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
electron/electron
58fd8825d224c855cc8290f0a9985c21d4f3c326
6a8b70639ba20655812fbd8201380fd0769ca70b
fix: add support for ELECTRON_OZONE_PLATFORM_HINT env var (#39792) Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "docs/api/environment-variables.md", "patch": "@@ -111,6 +111,16 @@ Options:\n * `kioclient5`\n * `kioclient`\n \n+### `ELECTRON_OZONE_PLATFORM_HINT` _Linux_\n+\n+Selects the preferred platform backend used on Linux. The default one is `x11`. `auto` selects Wayland if possible, X11 otherwise.\n+\n...
2023-09-20T20:21:23
vercel/next.js
46709a2a0eb9d3fd92320e1bd4889006c90c5293
e590df4b20838df1bf0558570de49cc933c2f423
docs: update revalidatePath, revalidateTag docs to be more consistent + highlight res.revalidate case (#82479) - uses invalidate instead of revalidate to make more explicit the revalidatePath, revalidateTag behavior - highlights that eager revalidation can still happen with the pages router method <!-- Thanks for ope...
[ { "path": "docs/01-app/02-guides/incremental-static-regeneration.mdx", "patch": "@@ -281,17 +281,19 @@ We recommend setting a high revalidation time. For instance, 1 hour instead of 1\n \n ### On-demand revalidation with `revalidatePath`\n \n-For a more precise method of revalidation, invalidate pages on-de...
2025-08-08T18:39:22
facebook/react
48ec17b865f439754fcdaa289ef0aa98f15a05c2
4ecea96c55a936c208f770e151cc5e3985817c9a
Differentiate null and undefined in Custom Elements - removing sets to undefined (#28716) In React DOM, in general, we don't differentiate between `null` and `undefined` because we expect to target DOM APIs. When we're setting a property on a Custom Element, in the new heuristic, the goal is to allow passing whatev...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -1301,7 +1301,7 @@ export function setInitialProperties(\n continue;\n }\n const propValue = props[propKey];\n- if (propValue == null) {\n+ if (propValue === undefined) {\n...
2024-04-02T15:48:27
golang/go
be0cc937ec9c109da90ec4d7da5af89606f8c0cf
0c7311e9ca8440801b40928878db623f98e3008f
net: avoid using Windows' TransmitFile on non-server machines Windows API's TransmitFile function is limited to two concurrent operations on workstation and client versions of Windows. This change modifies the net.sendFile function to perform no work in such cases so that TransmitFile is avoided. Fixes #73746 Change...
[ { "path": "src/internal/syscall/windows/types_windows.go", "patch": "@@ -256,3 +256,7 @@ type FILE_COMPLETION_INFORMATION struct {\n \tPort syscall.Handle\n \tKey uintptr\n }\n+\n+// https://learn.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-osversioninfoexa\n+// https://learn.microsoft.com/en-us/w...
2025-05-20T03:59:15
nodejs/node
e60caeebdab832291f71bf2684adca5470ec9ec3
6cc4d5fc87503a6bc033b70f125d319d46f1c01e
test: deflake test-http2-misbehaving-multiplex Fixes: https://github.com/nodejs/node/issues/54859 PR-URL: https://github.com/nodejs/node/pull/54872 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "test/parallel/test-http2-misbehaving-multiplex.js", "patch": "@@ -11,18 +11,30 @@ const h2 = require('http2');\n const net = require('net');\n const { NghttpError } = require('internal/http2/util');\n const h2test = require('../common/http2');\n+let client;\n \n const server = h2.createServer();\...
2024-09-12T15:48:13
facebook/react
4eb241a94ff42d4226e4f9d6d397f4f8a8fadc8e
6e650109999e5f483fcb910ff20fe8148a566cb2
Bump nvmrc to Node.js v18 (#28707) Bump nvmrc to Node.js v18 Node.js v16 is long deprecated, seems like for v20 there's some more stuff to fix.
[ { "path": ".nvmrc", "patch": "@@ -1 +1 @@\n-v16.19.1\n+v18.20.0", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2024-04-02T14:04:19
vercel/next.js
6797a087e54184b4cbe1b0ce18d3fe64d89e40eb
dcece129286274b6c4bc510cfdb2ff2c84bdf9b5
Fix: Do not force BLOCKING_STATIC_RENDER for DOM bots (#82427) The issue was that DOM bots with PPR-enabled routes were being forced to use BLOCKING_STATIC_RENDER mode, which prevented them from using the fallback cache lookup mechanism. This caused them to generate new content with isRevalidating: true, which blocks ...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -653,11 +653,13 @@ export async function handler(\n fallbackMode = parseFallbackField(prerenderInfo.fallback)\n }\n \n- // When serving a bot request, we want to serve a blocking render and not\n- // the prerende...
2025-08-08T17:03:27
electron/electron
6a8b70639ba20655812fbd8201380fd0769ca70b
1766511e3462274efb93858ab4c083a3d212482e
fix: `app.runningUnderARM64Translation()` always returning true on Windows ARM64 (#39920) fix: app.runningUnderARM64Translation() always returning true on ARM64
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -19,6 +19,7 @@\n #include \"base/path_service.h\"\n #include \"base/system/sys_info.h\"\n #include \"base/values.h\"\n+#include \"base/win/windows_version.h\"\n #include \"chrome/browser/browser_process.h\"\n #include \"chrome/browser/icon_mana...
2023-09-20T20:15:19
golang/go
0c7311e9ca8440801b40928878db623f98e3008f
3e82316a4357c44c193790bdc02d1f8032f34289
cmd/go: do not try to load 'all' packages with invalid import paths Before this change, when we tried to compute the set of packages in 'all', we'd add packages with invalid import paths to the set and try to load them, which would fail. Instead, do not add them to the list of packages to load in the second iteration ...
[ { "path": "src/cmd/go/internal/modload/load.go", "patch": "@@ -2009,6 +2009,13 @@ func (ld *loader) stdVendor(parentPath, path string) string {\n // starting with a list of the import paths for the packages in the main module.\n func (ld *loader) computePatternAll() (all []string) {\n \tfor _, pkg := range ...
2025-05-16T20:40:55
nodejs/node
6cc4d5fc87503a6bc033b70f125d319d46f1c01e
9db6327af3272c4125d20c078010600629506a26
doc, meta: fix broken link in `onboarding.md` PR-URL: https://github.com/nodejs/node/pull/54886 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com...
[ { "path": "onboarding.md", "patch": "@@ -117,7 +117,7 @@ The project has a venue for real-time discussion:\n * You can always refer to the\n [full moderation policy](https://github.com/nodejs/admin/blob/main/Moderation-Policy.md).\n * You can contact someone in the\n- [full list of moderation tea...
2024-09-12T06:35:07
vercel/next.js
dcece129286274b6c4bc510cfdb2ff2c84bdf9b5
e30dd09f29cf4a82c50c7719a773a388e98b3ddc
[errors] revamp graceful degrade error boundary (#82474)
[ { "path": "packages/next/src/client/app-index.tsx", "patch": "@@ -21,7 +21,6 @@ import type { InitialRSCPayload } from '../server/app-render/types'\n import { createInitialRouterState } from './components/router-reducer/create-initial-router-state'\n import { MissingSlotContext } from '../shared/lib/app-rou...
2025-08-08T16:58:42
electron/electron
1766511e3462274efb93858ab4c083a3d212482e
28eda03abaf83ac2c481fa1ae6c4d90b2f4a19f0
chore: bump node to v18.18.0 (main) (#39915) * chore: bump node in DEPS to v18.18.0 * child_process: harden against prototype pollution https://github.com/nodejs/node/pull/48726 * deps: upgrade to libuv 1.46.0 https://github.com/nodejs/node/pull/49591 * module: reduce url invocations in esm/load.js h...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '119.0.6019.2',\n 'node_version':\n- 'v18.17.1',\n+ 'v18.18.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2023-09-20T20:13:43
facebook/react
cd3f56bb18a88562d767d466ecae489fb3c2fb86
1de6c5aea207ac2beac375aa80287acfcfb567a0
[eslint] Enforce generic array type syntax Fix and enforce generic array type syntax
[ { "path": "compiler/packages/babel-plugin-react-forget/.eslintrc.js", "patch": "@@ -73,7 +73,7 @@ module.exports = {\n \"off\",\n \"constructor\",\n ],\n- \"@typescript-eslint/array-type\": [\"off\", \"generic\"],\n+ \"@typescript-eslint/array-type\": [\"error\", { default: \"generic\"...
2024-04-02T14:31:25
golang/go
3e82316a4357c44c193790bdc02d1f8032f34289
123141166bf77b60062d830224b85131791647fd
cmd/compile: don't instrument counter globals in internal/fuzz Fixes: #72766 Change-Id: I45b521e53c2a11e259dc99e2dfc8e40cac39139a Reviewed-on: https://go-review.googlesource.com/c/go/+/673575 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@goog...
[ { "path": "src/cmd/cgo/internal/testsanitizers/asan_test.go", "patch": "@@ -135,6 +135,9 @@ func TestASANFuzz(t *testing.T) {\n \tif bytes.Contains(out, []byte(\"AddressSanitizer\")) {\n \t\tt.Error(`output contains \"AddressSanitizer\", but should not`)\n \t}\n+\tif !bytes.Contains(out, []byte(\"FUZZ FAILE...
2025-05-16T19:07:46
nodejs/node
d9ca8b018efd172a99365ada8f536491b19bd87b
8eb9353b037f1b494f70ba6dd446471672a7034a
test: fix test-tls-client-mindhsize for OpenSSL32 Refs: https://github.com/nodejs/node/issues/53382 - OpenSSL32 has a minimum dh key size by 2048 by default. - Create larter 3072 dh key needed for testing and adjust tests to use it for builds with OpenSSL32 Signed-off-by: Michael Dawson <midawson@redhat.com> PR-...
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -24,6 +24,7 @@ all: \\\n dh512.pem \\\n dh1024.pem \\\n dh2048.pem \\\n+ dh3072.pem \\\n dherror.pem \\\n dh_private.pem \\\n dh_public.pem \\\n@@ -596,6 +597,9 @@ dh1024.pem:\n dh2048.pem:\n \topenssl dhparam -out dh2048.pem 2048\n \n+dh307...
2024-09-03T16:27:53
vercel/next.js
e30dd09f29cf4a82c50c7719a773a388e98b3ddc
428616e1cf582b466295073416b01b698a46008b
Add `path` to Image documentation (#82329) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Imp...
[ { "path": "docs/01-app/03-api-reference/02-components/image.mdx", "patch": "@@ -636,6 +636,18 @@ export default function myImageLoader({ src, width, quality }) {\n \n > Alternatively, you can use the [`loader` prop](#loader) to configure each instance of `next/image`.\n \n+#### `path`\n+\n+If you want to ch...
2025-08-08T14:41:22
facebook/react
1de6c5aea207ac2beac375aa80287acfcfb567a0
ba661c80f3716eaaf8845b480a9d4558d0fb7e4a
[eslint] Don't lint generated files drive by fix multi line comments in .eslintrc
[ { "path": "compiler/packages/babel-plugin-react-forget/.eslintrc.js", "patch": "@@ -9,44 +9,56 @@\n module.exports = {\n extends: [\"eslint:recommended\", \"plugin:@typescript-eslint/recommended\"],\n rules: {\n- // We prefer using const where variables are not reassigned, but occassional mistakes\n-...
2024-04-02T11:03:26
nodejs/node
37834997ff16d3f9e6d654b1efd9365635d65da6
53cdffea20d45346d4db34c01225cd58f2d04f5e
test: reduce stack size for test-error-serdes Hopefully reduces the run time and the likelihood of the test failing with a flaky timeout error. remove test-error-serdes from flaky list move test-error-serdes to sequential PR-URL: https://github.com/nodejs/node/pull/54840 Refs: https://github.com/nodejs/node/issues/...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -16,9 +16,6 @@ test-worker-arraybuffer-zerofill: PASS, FLAKY\n # https://github.com/nodejs/node/issues/51862\n test-fs-read-stream-concurrent-reads: PASS, FLAKY\n \n-# https://github.com/nodejs/node/issues/52630\n-test-error-serdes: PASS, FLAKY\n-\n # ...
2024-09-07T20:50:25
electron/electron
28eda03abaf83ac2c481fa1ae6c4d90b2f4a19f0
7685f27b31bd565ecde05307174b1738c0bbd777
chore: bump chromium to 119.0.6019.2 (main) (#39925) * chore: bump chromium in DEPS to 119.0.6018.4 * chore: update patches * chore: bump chromium in DEPS to 119.0.6019.2 * chore: update patches * 4876292: Roll libc++ from 7cee6b00d34a to 3e8a3b3c5d49 (6 revisions) https://chromium-review.googlesource.c...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '119.0.6017.0',\n+ '119.0.6019.2',\n 'node_version':\n 'v18.17.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2023-09-20T20:08:26
golang/go
123141166bf77b60062d830224b85131791647fd
3df078fc74a550168440d5afd5f9a9204b77f0f9
cmd/compile: add generic simplifications on riscv64 file before after Δ % addr2line 3636263 3636215 -48 -0.001% asm 6318110 6317966 -144 -0.002% buildid 3463352 3463224 -128 -0.004% cgo 5672502 5672214 -288 -0.005% compile 26904997 26905719 +722 +0.00...
[ { "path": "src/cmd/compile/internal/ssa/_gen/RISCV64.rules", "patch": "@@ -743,6 +743,15 @@\n (ROL x (NEG y)) => (ROR x y)\n (ROLW x (NEG y)) => (RORW x y)\n \n+// generic simplifications\n+(ADD x (NEG y)) => (SUB x y)\n+(SUB x (NEG y)) => (ADD x y)\n+(SUB x x) => (MOVDconst [0])\n+(AND x x) => x\n+(OR x...
2025-05-17T13:45:50
vercel/next.js
3552445eba3ff9dd35f43d66bf207ab2603a40a2
4eb46d8ea51251ac8bc7ea974ecd059c1890ea5f
Docs/polyfills fix pages only (#82462) Follow up for: https://github.com/vercel/next.js/issues/74730
[ { "path": "docs/03-architecture/supported-browsers.mdx", "patch": "@@ -43,19 +43,37 @@ In addition, to reduce bundle size, Next.js will only load these polyfills for b\n \n If your own code or any external npm dependencies require features not supported by your target browsers (such as IE 11), you need to a...
2025-08-08T08:45:32
facebook/react
5516cbb7089c8c42b79f2eb169ec2eb271ae0765
0af58d6c9ed22f5784010a5bc72974e21d82f664
[ez] Fix unneeded path in copyright script
[ { "path": "compiler/scripts/copyright.js", "patch": "@@ -27,8 +27,6 @@ const files = glob.sync(\"**/*.{js,ts,tsx,jsx}\", {\n \"packages/js-fuzzer/**\",\n \"**/tests/fixtures/**\",\n \"**/__tests__/fixtures/**\",\n- // Special case where we need to preserve a jest directive\n- \"packages/fo...
2024-04-02T14:32:22
electron/electron
7685f27b31bd565ecde05307174b1738c0bbd777
463586a6c57e3ae49d6b730e00eb724bfb05371f
feat: expose app accessibility transparency settings api (#39631) * feat: expose app accessibility transparency settings api * docs: fix typo * chore: add doc * change to property * add as property instead of method * chore: fix lint * rename function name in header --------- Co-authored-by: Ke...
[ { "path": "docs/api/system-preferences.md", "patch": "@@ -401,6 +401,10 @@ Returns an object with system animation settings.\n \n ## Properties\n \n+### `systemPreferences.accessibilityDisplayShouldReduceTransparency()` _macOS_\n+\n+A `boolean` property which determines whether the app avoids using semitran...
2023-09-20T19:48:02
golang/go
3df078fc74a550168440d5afd5f9a9204b77f0f9
2a65100e68cd82172b214a4d12cd2586c0b9ef99
runtime: add new GODEBUG checkfinalizer This new debug mode detects cleanup/finalizer leaks using checkmark mode. It runs a partial GC using only specials as roots. If the GC can find a path from one of these roots back to the object the special is attached to, then the object might never be reclaimed. (The cycle coul...
[ { "path": "src/runtime/gc_test.go", "patch": "@@ -1073,3 +1073,17 @@ func TestMSpanQueue(t *testing.T) {\n \t\texpectMSpan(t, p.Pop(), nil, \"pop\")\n \t})\n }\n+\n+func TestDetectFinalizerAndCleanupLeaks(t *testing.T) {\n+\tgot := runTestProg(t, \"testprog\", \"DetectFinalizerAndCleanupLeaks\", \"GODEBUG=c...
2024-12-09T19:07:40
nodejs/node
53cdffea20d45346d4db34c01225cd58f2d04f5e
cc780ddf1e657e1f0104b7be86572f09218726d6
esm: throw `ERR_REQUIRE_ESM` instead of `ERR_INTERNAL_ASSERTION` PR-URL: https://github.com/nodejs/node/pull/54868 Fixes: https://github.com/nodejs/node/issues/54773 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -326,8 +326,6 @@ class ModuleLoader {\n * @returns {ModuleJobBase}\n */\n getModuleJobForRequire(specifier, parentURL, importAttributes) {\n- assert(getOptionValue('--experimental-require-module'));\n-\n const parsed = URLParse(spec...
2024-09-11T21:48:02
vercel/next.js
686ba5bd6b4ef2ca9f7059047cfb72700e3e0ef5
0b2c3b15fe6ca33f0f25eb4ae1af4b8486a69f72
fix: static not-found missing in prerender manifest (#82199)
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -76,8 +76,8 @@ import {\n MIDDLEWARE_REACT_LOADABLE_MANIFEST,\n SERVER_REFERENCE_MANIFEST,\n FUNCTIONS_CONFIG_MANIFEST,\n- UNDERSCORE_NOT_FOUND_ROUTE_ENTRY,\n UNDERSCORE_NOT_FOUND_ROUTE,\n+ UNDERSCORE_NOT_FOUND_ROUTE_ENTRY,\n DYNAMIC_CSS...
2025-08-07T23:10:23
facebook/react
832285fed2aaaff58001539a5eebe6d580cb280a
8d2cd323a449e49ef041227dfe8d9f9d2ad2f395
Only create mutable ranges for phis *mutated* later This PR was the result of a long chain of ~yak-shaving~ debugging kicked off as a result of fixing up invariants. Where this started was that i noticed some cases of loops where the first instance we saw of a reactive scope was after its starting instruction. Eg ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferMutableLifetimes.ts", "patch": "@@ -112,28 +112,22 @@ export function inferMutableLifetimes(\n >();\n for (const [_, block] of func.body.blocks) {\n for (const phi of block.phis) {\n- for (const [_, operand] of phi.operan...
2024-04-01T21:21:48
electron/electron
75ea294b6f0dc5c7186fb1fadcd326f0cea24532
18717ee62d4f54a880e00ccd80f2a33423bb74eb
build: use afs on aks instead of circle cache (#39881) * build: use afs on aks instead of circle cache * build: do not use aks logic on linux hosts checking out for macOS * build: fix gn-check could-be-aks * build: sigh * build: no ls mnt * build: keep build alive while debugging * build: make debugg...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -34,6 +34,11 @@ parameters:\n type: enum\n default: all\n enum: [\"all\", \"osx-x64\", \"osx-arm64\", \"mas-x64\", \"mas-arm64\"]\n+\n+ medium-linux-executor:\n+ type: enum\n+ default: electronjs/aks-linux-medium\n+ enum: [\"electronj...
2023-09-19T10:12:14
nodejs/node
123bb4cb22e739a039392d83d512601982f40fc0
94a457a1ebebbe854ca7a8d9b430a61b04439638
test_runner: improve code coverage cleanup The test runner's code coverage leaves old coverage data in the temp directory. This commit updates the cleanup logic to: - Stop code collection. Otherwise V8 would write collection data again when the process exits. - Remove the temp directory containing the coverage data...
[ { "path": "lib/internal/test_runner/coverage.js", "patch": "@@ -23,6 +23,7 @@ const {\n mkdtempSync,\n opendirSync,\n readFileSync,\n+ rmSync,\n } = require('fs');\n const { setupCoverageHooks } = require('internal/util');\n const { tmpdir } = require('os');\n@@ -272,28 +273,35 @@ class TestCoverage ...
2024-09-11T02:50:28
golang/go
2a65100e68cd82172b214a4d12cd2586c0b9ef99
ff9da9bcd579a08cf9ca62620c5956676ac28586
cmd/internal/testdir: filter out errors outside input file set When an errorcheck test uses -m and instantiates an imported generic function, the errors will include -m messages from the imported package (since the new function has not previously been walked). These errors cannot be matched since we can't write errors...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -1242,6 +1242,24 @@ func (t test) errorCheck(outStr string, wantAuto bool, fullshort ...string) (err\n \t\t}\n \t}\n \n+\tif len(out) > 0 {\n+\t\t// If a test uses -m and instantiates an imported generic function,\n+\t\t// the errors will in...
2025-05-14T05:01:43
vercel/next.js
0b2c3b15fe6ca33f0f25eb4ae1af4b8486a69f72
2f081765dd6ca130fde9571d142ba702c1dec70a
[Cache Components] Only validate the shell on SSR render (#82381) Prior to this change on every navigation we would validate that the initial static shell satisified the rules of cache components. This offers more protection as you edit pages but it slows down navigations and we are already concerned with dev speed an...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -572,31 +572,6 @@ async function generateDynamicFlightRenderResult(\n options\n )\n \n- if (\n- // We only want this behavior when running `next dev`\n- renderOpts.dev &&\n- // We only want this behavior when we hav...
2025-08-07T21:04:03
facebook/react
8833338c8f929281cd1f2d39e11dd2b5e0739f10
5ab97b73457e2da72749322a1925a970a967f3bc
Convert deprecated stalebot to github action (#28695) ## Summary This repo uses [Stalebot](https://github.com/probot/stale) to manage stale Issues and PRs. Stalebot hasn't been maintained for a couple of years and is officially archived. The number of open Issues and PRs has increased rapidly since early 2022. S...
[ { "path": ".github/stale.yml", "patch": "@@ -1,35 +0,0 @@\n-# Configuration for probot-stale - https://github.com/probot/stale\n-# Number of days of inactivity before an issue becomes stale\n-daysUntilStale: 90\n-# Number of days of inactivity before a stale issue is closed\n-daysUntilClose: 7\n-# Issues wi...
2024-04-01T18:32:28
golang/go
ff9da9bcd579a08cf9ca62620c5956676ac28586
326e5e1b7a9f421db972fed0a6e79a1c9601d0ae
cmd/dist: pass GO_GCFLAGS to cpuN runtime tests We want gcflags, which control builder type (e.g. noopt) to be used for these tests also. Should fix noopt and maybe other builders. Change-Id: Iad34beab51714f0c38989ec0fc8778cf79087f72 Reviewed-on: https://go-review.googlesource.com/c/go/+/674455 Reviewed-by: Keith Ra...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -952,6 +952,7 @@ func (t *tester) registerTests() {\n \t\t\t\t\tvariant: \"cpu\" + strconv.Itoa(i),\n \t\t\t\t\ttimeout: 300 * time.Second,\n \t\t\t\t\tcpu: strconv.Itoa(i),\n+\t\t\t\t\tgcflags: gogcflags,\n \t\t\t\t\tshort: true,\n \t\t\t\t\tte...
2025-05-20T15:42:24
nodejs/node
2ef33af16ebc5da9bd1b7261ee88add0ae9a835a
5c8d0ebf305bc4bc5a5adc293977389df4d5b222
esm: fix support for `URL` instances in `import.meta.resolve` PR-URL: https://github.com/nodejs/node/pull/54690 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: James M...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -512,6 +512,7 @@ class ModuleLoader {\n * @returns {{ format: string, url: URL['href'] }}\n */\n resolve(originalSpecifier, parentURL, importAttributes) {\n+ originalSpecifier = `${originalSpecifier}`;\n if (this.#customizations) {\...
2024-09-09T23:00:33
electron/electron
73e33bc8762114c4a365d81b70147a8f9f18d20c
c8544e25dffd7a7ca6133e00518afa72fc976c63
chore: bump chromium to 119.0.6006.0 (main) (#39774) * chore: bump chromium in DEPS to 119.0.5994.0 * chore: update patches * Add some more debugging for navigation origin & process lock mismatch https://chromium-review.googlesource.com/c/chromium/src/+/4829483 * chore: bump chromium in DEPS to 119.0.5996....
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '118.0.5993.0',\n+ '119.0.6006.0',\n 'node_version':\n 'v18.17.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "packag...
2023-09-18T20:44:09
rust-lang/rust
1f94802603aa571c4d7cdf7045b35b8907eb2ee9
27d5b14aef576787388c7f5fe0bef4c5a9a61988
Fix libgccjit version
[ { "path": "compiler/rustc_codegen_gcc/libgccjit.version", "patch": "@@ -1 +1 @@\n-896045775f7c40fafe48c6e398f6c53bf6af889e\n+efdd0a7290c22f5438d7c5380105d353ee3e8518", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2026-02-14T16:12:51
vercel/next.js
2ba4a8548ca0c02f69120265b18f666bf79a6295
d016157ce646565a6ca806afa260e1ceb89b063e
global-error, revalidatePath and PWA headings (#82408) Complement to: https://github.com/vercel/next.js/issues/82379 Also adding corrections to other sections
[ { "path": "docs/01-app/01-getting-started/14-metadata-and-og-images.mdx", "patch": "@@ -23,6 +23,8 @@ The Metadata APIs can be used to define your application metadata for improved S\n \n With all the options above, Next.js will automatically generate the relevant `<head>` tags for your page, which can be i...
2025-08-07T08:10:21
facebook/react
93f91795a0c71bae4aadd7f082b91de0068a0f91
95e6f032cf59f27b41e150e8a7746ee689acf634
[Flight] Update stale blocked values in `createModelResolver` (#28669) Alternative to #28620. Instead of emitting lazy references to not-yet-emitted models in the Flight Server, this fixes the observed issue in https://github.com/unstubbable/ai-rsc-test/pull/1 by adjusting the lazy model resolution in the Flight...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -584,6 +584,13 @@ function createModelResolver<T>(\n }\n return value => {\n parentObject[key] = value;\n+\n+ // If this is the root object for a model reference, where `blocked.value`\n+ // is a stale `null`, the resolve...
2024-04-01T16:37:27
golang/go
1635aed9413233ba8f974447ca3359b7a9159985
b69f50faef360beedd408048d19909c85a2e0de0
hash/maphash: hash channels in purego version of maphash.Comparable This change makes purego implementation of maphash.Comparable consistent with the one in runtime and fixes hashing of channels. Fixes #73657 Change-Id: If78a21d996f0c20c0224d4014e4a4177b09c3aa3 GitHub-Last-Rev: 2537216a1e4e62791c7e417441ee770ca149f3...
[ { "path": "src/hash/maphash/maphash_purego.go", "patch": "@@ -161,7 +161,7 @@ func appendT(h *Hash, v reflect.Value) {\n \tcase reflect.Bool:\n \t\th.WriteByte(btoi(v.Bool()))\n \t\treturn\n-\tcase reflect.UnsafePointer, reflect.Pointer:\n+\tcase reflect.UnsafePointer, reflect.Pointer, reflect.Chan:\n \t\tv...
2025-05-10T17:58:48
nodejs/node
c3a7b29e56a5ada6327ebb622ba746d022685742
2ef4b15604082abfd7aa26a4619a46802258ff3c
tls: add `allowPartialTrustChain` flag This commit exposes the `X509_V_FLAG_PARTIAL_CHAIN` OpenSSL flag to users. This is behavior that has been requested repeatedly in the Github issues, and allows aligning behavior with other TLS libraries and commonly used applications (e.g. `curl`). As a drive-by, simplify the `S...
[ { "path": "doc/api/tls.md", "patch": "@@ -1856,6 +1856,9 @@ argument.\n <!-- YAML\n added: v0.11.13\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/54790\n+ description: The `allowPartialTrustChain` option has been added.\n - version:\n - v22.4.0\n - v20.16...
2024-09-05T14:31:24
electron/electron
c8544e25dffd7a7ca6133e00518afa72fc976c63
9c7086074eb0e883e8af5a7b1ba8b59f3b3de1f9
build: fixup autoninja (#39896) chore: set GOMA_DIR for autoninja (cherry picked from commit 94f24bde4dd19764fbbae083f5970b007c9dc8b2) (cherry picked from commit 90c1f6e1cb8d22d94dd01791dc4b9c3e0a7e86fc)
[ { "path": ".circleci/config/base.yml", "patch": "@@ -354,7 +354,7 @@ step-setup-goma-for-build: &step-setup-goma-for-build\n exit 1\n fi\n echo 'export GN_GOMA_FILE='`node -e \"console.log(require('./src/utils/goma.js').gnFilePath)\"` >> $BASH_ENV\n- echo 'export LOCAL_GOMA_DIR='`no...
2023-09-18T20:43:27
vercel/next.js
f63290fef95f4174044b515fafdb05956feb6022
6cae6d86b8dc8e53f81e7d1100a16766eecde9b1
[Segment Cache]: fix infinite prefetching when staleTime is 0 (#82388) This PR fixes an infinite loop bug that occurred when using `cacheLife({ stale: 0 })` with `clientSegmentCache`. When the server returned a stale time of 0 seconds, cache entries would have `staleAt = Date.now()`, making them immediately stale. The...
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache.ts", "patch": "@@ -244,6 +244,14 @@ const isOutputExportMode =\n process.env.NODE_ENV === 'production' &&\n process.env.__NEXT_CONFIG_OUTPUT === 'export'\n \n+/**\n+ * Ensures a minimum stale time of 30s to avoid issues where the se...
2025-08-06T23:11:55
golang/go
b69f50faef360beedd408048d19909c85a2e0de0
df9888ea4e97feb755e452609be5078686370995
net/http: upon http redirect, copy Request.GetBody in new request This enable http.RoundTripper implementation to retry POST request (let's say after a 500) after a 307/308 redirect. Fixes #73439 Change-Id: I4365ff58b012c7f0d60e0317a08c98b1d48f657e Reviewed-on: https://go-review.googlesource.com/c/go/+/666735 Review...
[ { "path": "src/net/http/client.go", "patch": "@@ -672,6 +672,7 @@ func (c *Client) do(req *Request) (retres *Response, reterr error) {\n \t\t\t\t\tresp.closeBody()\n \t\t\t\t\treturn nil, uerr(err)\n \t\t\t\t}\n+\t\t\t\treq.GetBody = ireq.GetBody\n \t\t\t\treq.ContentLength = ireq.ContentLength\n \t\t\t}\n ...
2025-04-18T17:48:04
facebook/react
df95577db0d1d7ca383f281bc1d9e6ba5579bef2
9f835e69ab1c87192b5da4421519b69785c12f69
Finish cleaning up digest from onRecoverableError (#28686) Don't need to track it separately on the captured value anymore. Shouldn't be in the types. I used a getter for the warning instead because Proxies are kind of heavy weight options for this kind of warning. We typically use getters.
[ { "path": "packages/react-dom/src/client/ReactDOMRoot.js", "patch": "@@ -45,7 +45,7 @@ export type CreateRootOptions = {\n ) => void,\n onRecoverableError?: (\n error: mixed,\n- errorInfo: {+digest?: ?string, +componentStack?: ?string},\n+ errorInfo: {+componentStack?: ?string},\n ) => void,...
2024-03-30T22:32:20
nodejs/node
79a33a7433b55de4f5e749524b9a22f7b72b5f4e
9404d3aaaf0a8264ee08ba169ec24685bf8d487d
build,win: enable clang-cl compilation This uses the backported ICU fix needed for compiling with ClangCL. Refs: https://github.com/nodejs/node/pull/54502 Fixes: https://github.com/nodejs/node/issues/34201 PR-URL: https://github.com/nodejs/node/pull/54655 Refs: https://github.com/nodejs/node/issues/52809 Reviewed-By:...
[ { "path": "tools/icu/icu-generic.gyp", "patch": "@@ -139,20 +139,43 @@\n # full data - just build the full data file, then we are done.\n 'sources': [ '<(SHARED_INTERMEDIATE_DIR)/icudt<(icu_ver_major)<(icu_endianness)_dat.<(icu_asm_ext)' ],\n 'dependencies': [ 'genc...
2024-09-09T10:26:00
electron/electron
9c7086074eb0e883e8af5a7b1ba8b59f3b3de1f9
d7e4bb660848dc68856dd62d33d5257d147f9b26
docs: add missing `ipcRenderer.off()` / `ipcRenderer.addListener()` aliases (#39816) * docs: add missing `ipcRenderer.off()` / `ipcRenderer.addListener()` aliases * Update docs/api/ipc-renderer.md Co-authored-by: David Sanders <dsanders11@ucsbalum.com> * fix ipcRenderer.removeListener * update ts-smoke ...
[ { "path": "docs/api/ipc-renderer.md", "patch": "@@ -32,6 +32,15 @@ The `ipcRenderer` module has the following method to listen for events and send\n Listens to `channel`, when a new message arrives `listener` would be called with\n `listener(event, args...)`.\n \n+### `ipcRenderer.off(channel, listener)`\n+...
2023-09-18T16:58:20
facebook/react
b9149cc6e6442389accf1f7c34a77ba2e6e52b5e
5d4b7587da52dd81bc5c366b909c4511e2970cd1
Include regular stack trace in serialized errors from Fizz (#28684) We previously only included the component stack. Cleaned up the fields in Fizz server that wasn't using consistent hidden classes in dev vs prod. Added a prefix to errors serialized from server rendering. It can be a bit confusing to see w...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1226,22 +1226,29 @@ export function isSuspenseInstanceFallback(\n \n export function getSuspenseInstanceFallbackErrorDetails(\n instance: SuspenseInstance,\n-): {digest: ?string, message?: string, stack?: string} {\n+...
2024-03-30T15:08:54
vercel/next.js
6cae6d86b8dc8e53f81e7d1100a16766eecde9b1
0a42be97b0b8c5f8ba3fd597c379fbdc2e15b529
docs: polyfills usage in app router (#80447) Closes: https://linear.app/vercel/issue/DOC-4752/docs-polyfills-in-app-router Fixes: https://github.com/vercel/next.js/issues/74730
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/instrumentation-client.mdx", "patch": "@@ -3,7 +3,7 @@ title: instrumentation-client.js\n description: Learn how to add client-side instrumentation to track and monitor your Next.js application's frontend performance.\n ---\n \n-The `instrumentatio...
2025-08-06T21:09:51
golang/go
df9888ea4e97feb755e452609be5078686370995
24ea1aa25c954bbbe9968d735795a649833b0b1c
runtime: prevent unnecessary zeroing of large objects with pointers CL 614257 refactored mallocgc but lost an optimization: if a span for a large object is already backed by memory fresh from the OS (and thus zeroed), we don't need to zero it. CL 614257 unconditionally zeroed spans for large objects that contain point...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1548,12 +1548,13 @@ func mallocgcLarge(size uintptr, typ *_type, needzero bool) (unsafe.Pointer, uin\n \tsize = span.elemsize\n \tx := unsafe.Pointer(span.base())\n \n-\t// Ensure that the stores above that initialize x to\n-\t// type-safe memory and set the ...
2025-03-21T16:26:15
nodejs/node
e1e312d7f0c45f5e280c0b34ecf7e506bdcaba28
533853337381cd73104c04c2f404e8960061dc21
test: fix Windows async-context-frame memory failure PR-URL: https://github.com/nodejs/node/pull/54823 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "test/parallel/test-async-context-frame.mjs", "patch": "@@ -42,7 +42,8 @@ const tests = testSets.reduce((m, v) => {\n }, []);\n \n describe('AsyncContextFrame', {\n- concurrency: tests.length\n+ // TODO(qard): I think high concurrency causes memory problems on Windows\n+ // concurrency: tests.l...
2024-09-08T14:21:18
electron/electron
706653d5e4d06922f75aa5621533a16fc34d3a77
65952abc995b86783922094ace75323dcaf36892
ci: fix issue-commented workflow sytnax (#39875)
[ { "path": ".github/workflows/issue-commented.yml", "patch": "@@ -10,7 +10,7 @@ permissions: {}\n jobs:\n issue-commented:\n name: Remove blocked/need-repro on comment\n- if: ${{ contains(github.event.issue.labels.*.name, 'blocked/need-repro') && !contains(fromJSON('[\"MEMBER\", \"OWNER\"]'), github...
2023-09-18T02:23:59
facebook/react
5d4b7587da52dd81bc5c366b909c4511e2970cd1
2aed507a76a0b1524426c398897cbe47d80c51e5
Don't let error boundaries catch errors during hydration (#28675) When an error boundary catches an error during hydration it'll try to render the error state which will then try to hydrate that state, causing hydration warnings. When an error happens inside a Suspense boundary during hydration, we instead let t...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzShellHydration-test.js", "patch": "@@ -314,4 +314,229 @@ describe('ReactDOMFizzShellHydration', () => {\n 'RangeError: Maximum call stack size exceeded',\n );\n });\n+\n+ it('client renders when an error is thrown in an error boundary', as...
2024-03-29T20:43:22
vercel/next.js
5c9d8551c6189e2c1e09ae74bb29f8262150c739
0a890da22cb368ea0edcd3897d163fa9e6c6884a
fix(turbopack): external module shouldn't wrap by esm when type as global (#82374) When use externalType: `global` or `script` under utoopack(turbopack only use esm or cjs external): like externalType is global , and the external package is react. The generate external module code like: ```ts 263: ((__turbopack_cont...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/references/external_module.rs", "patch": "@@ -28,8 +28,8 @@ use crate::{\n },\n references::async_module::{AsyncModule, OptionAsyncModule},\n runtime_functions::{\n- TURBOPACK_EXPORT_NAMESPACE, TURBOPACK_EXTERNAL_IMPORT, TURBOPACK_EXTER...
2025-08-06T18:28:28
golang/go
24ea1aa25c954bbbe9968d735795a649833b0b1c
693d8d920c57489f427c22162986bd6cef2550ae
runtime: only update freeIndexForScan outside of the mark phase Currently, it's possible for asynchronous preemption to observe a partially initialized object. The sequence of events goes like this: - The GC is in the mark phase. - Thread T1 is allocating object O1. - Thread T1 zeroes the allocation, runs the publicat...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1196,23 +1196,23 @@ func mallocgcTiny(size uintptr, typ *_type) (unsafe.Pointer, uintptr) {\n \t// the garbage collector could follow a pointer to x,\n \t// but see uninitialized memory or stale heap bits.\n \tpublicationBarrier()\n-\t// As x and the heap bit...
2025-05-13T20:09:57
nodejs/node
67357ba8ff3d71f837a100aacd76e5ed3b15592b
3d410f863508107c9e1d61cb06db13b7d6f1789d
doc: add `ERR_INVALID_ADDRESS` to `errors.md` PR-URL: https://github.com/nodejs/node/pull/54661 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -1855,6 +1855,12 @@ the worker thread.\n There was a bug in Node.js or incorrect usage of Node.js internals.\n To fix the error, open an issue at <https://github.com/nodejs/node/issues>.\n \n+<a id=\"ERR_INVALID_ADDRESS\"></a>\n+\n+### `ERR_INVALID_ADDRESS`\n+\n+T...
2024-09-07T23:16:40
electron/electron
65952abc995b86783922094ace75323dcaf36892
50ce02c312ac78d170d3e94dda0282fc64080862
test: fixup node flakes (#39871) chore: fixup node flakes
[ { "path": "patches/node/chore_update_fixtures_errors_force_colors_snapshot.patch", "patch": "@@ -11,7 +11,7 @@ trying to see whether or not the lines are greyed out. One possibility\n would be to upstream a changed test that doesn't hardcode line numbers.\n \n diff --git a/test/fixtures/errors/force_colors....
2023-09-15T10:43:13
golang/go
4f1146e6614676126d3810ea319e3f658d4f8116
c8bf388bad9bf350b513c562bba22868bc976247
testing: use a pattern to match the elapsed time in TestTRun Fixes #73723 Fixes #73737 Fixes #73739 Change-Id: I1ebd3614614285c3e660d48241389bb0f896be23 Reviewed-on: https://go-review.googlesource.com/c/go/+/674355 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: ...
[ { "path": "src/testing/sub_test.go", "patch": "@@ -505,8 +505,8 @@ func TestTRun(t *T) {\n \t\tdesc: \"buffered output gets flushed at test end\",\n \t\tok: false,\n \t\toutput: `\n---- FAIL: buffered output gets flushed at test end (0.00s)\n- --- FAIL: buffered output gets flushed at test end/#00 (0.0...
2025-05-20T07:46:53
vercel/next.js
2dc45422a1c61952a9d8503341cd88d68d674d77
95d7db7d203936d8301b6207f4507ec5385808b0
add unstable_isUnrecognizedActionError (#78933) `unstable_isUnrecognizedActionError` is a new API that lets user code check if a server action call failed because the action id wasn't recognized by the server. This usually happens as a result of version skew between client and server. Example usage: ```ts try { ...
[ { "path": "crates/next-custom-transforms/src/transforms/react_server_components.rs", "patch": "@@ -624,6 +624,7 @@ impl ReactServerComponentValidator {\n \"useRouter\",\n \"useServerInsertedHTML\",\n \"ServerInsertedHTMLContext\",\n+ ...
2025-08-06T16:41:30
nodejs/node
eab9729d166311d0e3da512bfb3da0f8ae245160
46c6f8ce26ce1223b0e8e1442d7193529932481d
src: fix unhandled error in structuredClone Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54764 Fixes: https://github.com/nodejs/node/issues/54602 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_messaging.cc", "patch": "@@ -567,7 +567,9 @@ Maybe<bool> Message::Serialize(Environment* env,\n if (host_object &&\n host_object->GetTransferMode() == TransferMode::kTransferable) {\n delegate.AddHostObject(host_object);\n- continue;\n+ } else {\n+ ThrowDat...
2024-09-07T23:05:00
electron/electron
50ce02c312ac78d170d3e94dda0282fc64080862
fb6b92076e4a0a75e3b2ea67f9ef3b7a4cba2399
fix: check PipeWire init before creating generic capturer (#39846) Check if PipeWire can be initialized before creating generic capturer. This harmonizes the conditions with the ones used in Linux implementations of DesktopCapturer::CreateRawScreenCapturer and DesktopCapturer::CreateRawWindowCapturer.
[ { "path": "patches/webrtc/.patches", "patch": "@@ -1,2 +1,3 @@\n fix_fallback_to_x11_capturer_on_wayland.patch\n fix_mark_pipewire_capturer_as_failed_after_session_is_closed.patch\n+fix_check_pipewire_init_before_creating_generic_capturer.patch", "additions": 1, "deletions": 0, "language": "Unkn...
2023-09-14T19:50:20
facebook/react
13f35433bca9fc08fc7c4ab001f39c982cbde051
6cd6ba703de77e332ab201518b6e30e47cd49aaf
Mock modules in tests using `Module` (#28678) ## Summary Fixes a type validation error introduced in newer versions of Node.js when calling `Module.prototype._compile` in our unit tests. (I tried but have yet to pinpoint the precise change in Node.js that introduced this vaildation.) The specific error that c...
[ { "path": "packages/react-server-dom-turbopack/src/__tests__/utils/TurbopackMock.js", "patch": "@@ -55,7 +55,7 @@ exports.clientModuleError = function clientModuleError(moduleError) {\n chunks: [],\n name: '*',\n };\n- const mod = {exports: {}};\n+ const mod = new Module();\n nodeCompile.call(...
2024-03-29T20:19:54
golang/go
c8bf388bad9bf350b513c562bba22868bc976247
524946d2475d0b541ba84396f759b9e4c7aa4a98
cmd/compile: align stack-allocated backing stores higher than required Because that's what mallocgc did and some user code came to rely on it. Fixes #73199 Change-Id: I45ca00d2ea448e6729ef9ac4cec3c1eb0ceccc89 Reviewed-on: https://go-review.googlesource.com/c/go/+/666116 Reviewed-by: t hepudds <thepudds1460@gmail.com...
[ { "path": "src/cmd/compile/internal/walk/builtin.go", "patch": "@@ -600,11 +600,23 @@ func walkMakeSlice(n *ir.MakeExpr, init *ir.Nodes) ir.Node {\n \t\t\tlenCap.Body.Append(mkcall(\"panicmakeslicecap\", nil, &lenCap.Body))\n \t\t\tnif.Body.Append(lenCap)\n \n-\t\t\tt := types.NewArray(t.Elem(), K) ...
2025-04-17T05:48:06
vercel/next.js
95d7db7d203936d8301b6207f4507ec5385808b0
5ae7baa0e8dea2528c7b6e07d774ec729c5aa8cb
update rspack-dev-tests-manifest for failing tests (#82414) Rspack `testing for test/development/tsconfig-path-reloading` is failing often these days. Noticed `test/development/jsconfig-path-reloading` is already in the manifest of the "failed" section. - [Failed CI](https://github.com/vercel/next.js/actions/runs/166...
[ { "path": "test/rspack-dev-tests-manifest.json", "patch": "@@ -4289,14 +4289,14 @@\n },\n \"test/development/tsconfig-path-reloading/index.test.ts\": {\n \"passed\": [\n- \"tsconfig-path-reloading tsconfig added after starting dev should automatically fast refresh content when path is added wit...
2025-08-06T16:34:34
nodejs/node
38974a2eb3609cac6417d15ada264f87a0ffc940
8882a21b04ceba1030e961aedf009e2d2abec6b4
test: fix volatile for CauseSegfault with clang PR-URL: https://github.com/nodejs/node/pull/54325 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_process_methods.cc", "patch": "@@ -73,7 +73,7 @@ static void Abort(const FunctionCallbackInfo<Value>& args) {\n // For internal testing only, not exposed to userland.\n static void CauseSegfault(const FunctionCallbackInfo<Value>& args) {\n // This should crash hard all platforms.\n- v...
2024-09-07T22:29:24
electron/electron
fb6b92076e4a0a75e3b2ea67f9ef3b7a4cba2399
d6c04a3787eed78f0eaab5858fcb5ba6071cdcf3
fix: prevent `gin_helper::Locker` heap allocation (#39847) fix: prevent gin_helper::Locker heap allocation
[ { "path": "shell/common/gin_helper/locker.h", "patch": "@@ -21,6 +21,10 @@ class Locker {\n Locker(const Locker&) = delete;\n Locker& operator=(const Locker&) = delete;\n \n+ // prevent heap allocation\n+ void* operator new(size_t size) = delete;\n+ void operator delete(void*, size_t) = delete;\n+\n ...
2023-09-14T19:48:43
golang/go
524946d2475d0b541ba84396f759b9e4c7aa4a98
ce88e341b90a0878385535bcb54206ec97bcc518
cmd/compile: don't preload registers if destination already scheduled In regalloc, we allocate some values to registers before loop entry, so that they don't need to be loaded (from spill locations) during the loop. But it is pointless if we've already regalloc'd the loop body. Whatever restores we needed for the bod...
[ { "path": "src/cmd/compile/internal/ssa/layout.go", "patch": "@@ -15,7 +15,7 @@ func layout(f *Func) {\n // imposed by the linear-scan algorithm.\n func layoutRegallocOrder(f *Func) []*Block {\n \t// remnant of an experiment; perhaps there will be another.\n-\treturn layoutOrder(f)\n+\treturn f.Blocks\n }\n...
2025-05-14T00:53:45
facebook/react
f2690747239533fa266612d2d4dd9ae88ea92fbc
cc56bed38cbe5a5c76dfdc4e9c642fab4884a3fc
Revert "Remove module pattern function component support" (#28670) This breaks internal tests, so must be something in the refactor. Since it's the top commit let's revert and split into two PRs, one that removes the flag and one that does the refactor, so we can find the bug.
[ { "path": "packages/react-devtools-shared/src/backend/renderer.js", "patch": "@@ -225,7 +225,7 @@ export function getInternalReactConstants(version: string): {\n HostSingleton: 27, // Same as above\n HostText: 6,\n IncompleteClassComponent: 17,\n- IndeterminateComponent: 2, // removed...
2024-03-29T14:10:11
rust-lang/rust
3fdb366140b46097434b608707fc93e0b3e26439
d29c931c9dc4bd4cca3695d54c7b46153ac99e2b
Fix clippy warning
[ { "path": "src/declare.rs", "patch": "@@ -151,7 +151,6 @@ impl<'gcc, 'tcx> CodegenCx<'gcc, 'tcx> {\n ///\n /// If there’s a value with the same name already declared, the function will\n /// update the declaration and return existing Value instead.\n-#[expect(clippy::let_and_return)]\n fn declare_raw_fn<'gc...
2026-02-14T12:47:54
vercel/next.js
373f3e1de16b01150698df6ab6a24e3a1c81b850
ea08bf273ce03ac2ba8c6b021f35c27a8facdac1
fix: implications of global-not-found skipping 'normal' rendering (#82399) Fixes: https://github.com/vercel/next.js/issues/82379 Also fixing the Metadata snippets at the bottom of the page
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/not-found.mdx", "patch": "@@ -44,7 +44,11 @@ export default function NotFound() {\n \n The `global-not-found.js` file lets you define a 404 page for your entire application. Unlike `not-found.js`, which works at the route level, this is used when a...
2025-08-06T11:13:29
nodejs/node
17b49bd7d370b9973eeebe7ef87c6242c6ce42d4
6c85d40593735a1dd4186a27425a091ed0788b9c
sqlite: fix segfault in expandedSQL The call to sqlite3_expanded_sql() may return NULL depending on various factors. Handle this case instead of running into a segmentation fault. PR-URL: https://github.com/nodejs/node/pull/54687 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonma...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -52,18 +52,23 @@ using v8::Value;\n } \\\n } while (0)\n \n-inline Local<Value> CreateSQLiteError(Isolate* isolate, sqlite3* db) {\n- int errcode = sqlite3_extended_errcode(db);\n- c...
2024-09-07T09:20:45
facebook/react
299a9c0598576f7dba170771b1c0b821281b1e15
e10a7b5cd541882a78ff659147c1a0294413ccb0
[Fiber] Remove the digest property from errorInfo passed to onRecoverableError (#28222) Removes the digest property from errorInfo passed to onRecoverableError when handling an error propagated from the server. Previously we warned in Dev but still provided the digest on the errorInfo object. This change removes di...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -3563,11 +3563,11 @@ describe('ReactDOMFizzServer', () => {\n onRecoverableError(error, errorInfo) {\n expect(() => {\n expect(error.digest).toBe('a digest');\n- expect(errorInfo.di...
2024-03-28T15:01:35
golang/go
ce88e341b90a0878385535bcb54206ec97bcc518
3baf53aec6c2209562495d4ac1dc035c2881f6eb
cmd/compile: allocate backing store for append on the stack When appending, if the backing store doesn't escape and a constant-sized backing store is big enough, use a constant-sized stack-allocated backing store instead of allocating it from the heap. cmd/go is <0.1% bigger. As an example of how this helps, if you ...
[ { "path": "src/cmd/compile/internal/escape/call.go", "patch": "@@ -159,6 +159,14 @@ func (e *escape) call(ks []hole, call ir.Node) {\n \t\t}\n \t\te.discard(call.RType)\n \n+\t\t// Model the new backing store that might be allocated by append.\n+\t\t// Its address flows to the result.\n+\t\t// Users of esca...
2025-04-09T21:38:03
rust-lang/rust
2737b26c2e5eee9229663552d0c70e2affbb8511
0f4f81df13a18212e1b3b578ccfc8d055ad120be
Fix the compile-test tests when setting Cargo's `build.build-dir` setting to a path that's distinct from `target-dir`.
[ { "path": "tests/compile-test.rs", "patch": "@@ -197,10 +197,6 @@ impl TestContext {\n defaults.set_custom(\"diagnostic-collector\", collector);\n }\n config.with_args(&self.args);\n- let current_exe_path = env::current_exe().unwrap();\n- let deps_path = current_exe...
2026-02-14T12:01:38
vercel/next.js
fc70d77d571ad7fd7ade56ddbf5dd640585563bb
4b613a569eb5dd0eef616a151fc34e418e470934
fix: add `?dpl` to fonts in `/_next/static/media` (#82384) Fonts were not protected from version skew so this PR fixes it https://nextjs.org/docs/14/app/building-your-application/deploying#version-skew
[ { "path": "packages/next/src/pages/_document.tsx", "patch": "@@ -363,7 +363,8 @@ function getAmpPath(ampPath: string, asPath: string): string {\n function getNextFontLinkTags(\n nextFontManifest: DeepReadonly<NextFontManifest> | undefined,\n dangerousAsPath: string,\n- assetPrefix: string = ''\n+ asse...
2025-08-05T23:45:15
nodejs/node
6c85d40593735a1dd4186a27425a091ed0788b9c
dcc2ed944f641004c0339bf76db58ccfefedd138
esm: use Undici/`fetch` `data:` URL parser Fixes: https://github.com/nodejs/node/issues/53775 PR-URL: https://github.com/nodejs/node/pull/54748 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/data_url.js", "patch": "@@ -0,0 +1,352 @@\n+'use strict';\n+\n+const {\n+ RegExpPrototypeExec,\n+ RegExpPrototypeSymbolReplace,\n+ StringFromCharCodeApply,\n+ StringPrototypeCharCodeAt,\n+ StringPrototypeIndexOf,\n+ StringPrototypeSlice,\n+ TypedArrayPrototypeSubarray,\n+ Uin...
2024-09-07T08:22:03
facebook/react
7748ce8f3ff89065b7c25622873f86e3693a5667
df5ff9753a7d338b90c57a1d1471fb01fb405870
Update compiler naming in remaining error text
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Suppression.ts", "patch": "@@ -164,12 +164,12 @@ export function suppressionsToCompilerError(\n switch (suppressionRange.source) {\n case \"Eslint\":\n reason =\n- \"React Forget has bailed out of optimizing thi...
2024-03-28T14:40:05
rust-lang/rust
87166b545e435a1bffac968a023260d3795e532c
873e96b6752a323f149495abc2479d3d70df611a
libm: Reenable should_panic tests on ppc64le The tests pass successfully for me on powerpc64le-unknown-linux-gnu with nightly 1.95.
[ { "path": "library/compiler-builtins/libm/src/math/support/big/tests.rs", "patch": "@@ -261,8 +261,6 @@ fn shr_u256() {\n #[test]\n #[should_panic]\n #[cfg(debug_assertions)]\n-// FIXME(ppc): ppc64le seems to have issues with `should_panic` tests.\n-#[cfg(not(all(target_arch = \"powerpc64\", target_endian =...
2026-02-14T03:59:28
golang/go
498899e20549a9e30f7641fc3a3592f89a933a95
2cde950049dd46cae3ae91cde3e270825793ba0f
math: fix portable FMA implementation when x*y ~ 0, x*y < 0 and z = 0 Adding zero usually does not change the original value. However, there is an exception with negative zero. (e.g. (-0) + (+0) = (+0)) This applies when x * y is negative and underflows. Fixes #73757 Change-Id: Ib7b54bdacd1dcfe3d392802ea35cdb4e989f9...
[ { "path": "src/math/all_test.go", "patch": "@@ -2126,6 +2126,11 @@ var fmaC = []struct{ x, y, z, want float64 }{\n \t// Issue #61130\n \t{-1, 1, 1, 0},\n \t{1, 1, -1, 0},\n+\n+\t// Issue #73757\n+\t{0x1p-1022, -0x1p-1022, 0, Copysign(0, -1)},\n+\t{Copysign(0, -1), 1, 0, 0},\n+\t{1, Copysign(0, -1), 0, 0},\n...
2025-05-18T17:28:09
vercel/next.js
b6d4433c1c4c59701705f3d8c22c7423de526757
08e5b06bce04e034d2e82ad79038b4420c3771f9
loader tree: add special segment name to virtual parallel route segments (#82383) When constructing the loader tree for parallel route segments, we inject a `children` segment, which could contain things like slot level layout/error/loading files. We want a way to distinguish between these virtual segments that exist ...
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -1054,7 +1054,7 @@ async fn directory_tree_to_loader_tree_internal(\n let current_level_is_parallel_route = is_parallel_route(&directory_name);\n \n if current_level_is_parallel_route {\n- tree.segment = rcstr!(\"children\");\n+ ...
2025-08-05T22:23:41
nodejs/node
c4c580bfd596a440f2de722bd32608ec8ee5c7b5
c813de46fc17dea8eb724f115fa1860d14bba694
test: set `test-debugger-heap-profiler` as flaky PR-URL: https://github.com/nodejs/node/pull/54802 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "test/parallel/parallel.status", "patch": "@@ -52,6 +52,8 @@ test-crypto-dh-stateless: SKIP\n test-crypto-keygen: SKIP\n # https://github.com/nodejs/node/issues/52963\n test-pipe-file-to-http: PASS, FLAKY\n+# https://github.com/nodejs/node/issues/54801\n+test-debugger-heap-profiler: PASS, FLAKY\n ...
2024-09-06T14:40:06
golang/go
2cde950049dd46cae3ae91cde3e270825793ba0f
fd6afa352d0dfc86a158a6ef011454891593d065
runtime: disable TestSegv in race mode This was just enabled in CL 643897. It seems to work fine on Linux, but there are traceback issues on Darwin. We could disable just on Darwin, but I'm not sure SIGSEGV inside of TSAN is something we care to support. Fixes #73784. Cq-Include-Trybots: luci.golang.try:gotip-darwin...
[ { "path": "src/runtime/crash_cgo_test.go", "patch": "@@ -659,8 +659,8 @@ func TestSegv(t *testing.T) {\n \tcase \"plan9\", \"windows\":\n \t\tt.Skipf(\"no signals on %s\", runtime.GOOS)\n \t}\n-\tif asan.Enabled || msan.Enabled {\n-\t\tt.Skip(\"skipping test on ASAN/MSAN: triggers SIGSEGV in sanitizer runti...
2025-05-19T20:20:47
rust-lang/rust
ed091aaf5dcaba246cb6193872145f42ed080a3a
fa3b046aa5aed92eb7501c8c3ded322c247539ab
Move `rustc_query_system::query::dep_graph` to `rustc_middle`. Most of the files within the `dep_graph` module can be moved wholesale into `rustc_middle`. But two of them (`mod.rs` and `dep_node.rs`) have the same name as existing files in `rustc_middle`, so for those I just copied the contents into the existing files...
[ { "path": "Cargo.lock", "patch": "@@ -4093,7 +4093,6 @@ dependencies = [\n \"rustc_passes\",\n \"rustc_privacy\",\n \"rustc_query_impl\",\n- \"rustc_query_system\",\n \"rustc_resolve\",\n \"rustc_session\",\n \"rustc_span\",\n@@ -4519,13 +4518,11 @@ dependencies = [\n \"rustc_errors\",\n \"rustc_fea...
2026-02-11T06:02:27
vercel/next.js
08e5b06bce04e034d2e82ad79038b4420c3771f9
1180a6ecf0a4aa4a47d7fc95d0e0bf8c5a3fa1e8
Bump swc to 35 (#82237) To pull in a minifier bugfix: https://github.com/swc-project/swc/pull/10950 Fixes error locations again: https://github.com/swc-project/swc/issues/10930 https://vercel.slack.com/archives/C02HY34AKME/p1753429211338319 Blocked on https://github.com/swc-project/plugins/pull/514
[ { "path": "Cargo.lock", "patch": "@@ -588,9 +588,9 @@ dependencies = [\n \n [[package]]\n name = \"binding_macros\"\n-version = \"33.0.0\"\n+version = \"34.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"48bdcc71d9d0d017c17b486367323ff3931ed3ab545d65030133e4a7e94bec...
2025-08-05T21:55:30
nodejs/node
f061210819669931fbb5fc96fc1a5ca175bd240f
18101d83a158b877ac765936aba973c664130ea2
doc: fix typo in recognizing-contributors PR-URL: https://github.com/nodejs/node/pull/54822 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "doc/contributing/recognizing-contributors.md", "patch": "@@ -47,7 +47,7 @@ by the Node.js social media accounts. They can request that a post highlighting\n that they are speaking at the event be amplified by the Node.js accounts by\n making a request in the #nodejs-social channel in the OpenJS F...
2024-09-06T22:31:12
facebook/react
df5ff9753a7d338b90c57a1d1471fb01fb405870
f4229cdb7fd53cf95bdb79209fa86f4216701c9b
Fix jest script
[ { "path": "compiler/packages/babel-plugin-react-forget/package.json", "patch": "@@ -10,7 +10,7 @@\n \"scripts\": {\n \"build\": \"rimraf dist && rollup --config --bundleConfigAsCjs\",\n \"test\": \"yarn snap:ci\",\n- \"jest\": \"tsc && ts-node \\\"$(yarn --silent which jest)\\\"\",\n+ \"jest...
2024-03-28T14:40:05
golang/go
177d5eb630ab25916b6c44a6fa89ab371433f9fa
3602cec3af6083d095729f3db8493a226b9273c3
net/http: clarify ServeMux.Handler behavior Explain that ServeMux.Handler doesn't populate the request with matches. Fixes #69623. Change-Id: If625b3f8e8f4e54b05e1d9a86e8c471045e77763 Reviewed-on: https://go-review.googlesource.com/c/go/+/674095 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Chressie Himpe...
[ { "path": "src/net/http/server.go", "patch": "@@ -836,6 +836,7 @@ var copyBufPool = sync.Pool{New: func() any { return new([copyBufPoolSize]byte)\n func getCopyBuf() []byte {\n \treturn copyBufPool.Get().(*[copyBufPoolSize]byte)[:]\n }\n+\n func putCopyBuf(b []byte) {\n \tif len(b) != copyBufPoolSize {\n \t...
2025-05-19T13:20:04
electron/electron
a1c44a18e2acc1d4e4443ada75eee49ae0dd434f
ec9c8476fe2c789d8d3bfe94eee6ab88dceeede2
fix: NodeService order-of-destruction issue (#39783) * refactor: make ElectronRendererClient::node_bindings_ a const ptr refactor: make ElectronRendererClient::electron_bindings_ a const ptr * fix: order-of-destruction bug in NodeService js_env_ depends on the uv_loop from node_bindings_, but is destroyed aft...
[ { "path": "shell/services/node/node_service.cc", "patch": "@@ -20,10 +20,10 @@ namespace electron {\n \n NodeService::NodeService(\n mojo::PendingReceiver<node::mojom::NodeService> receiver)\n- : node_bindings_(\n- NodeBindings::Create(NodeBindings::BrowserEnvironment::kUtility)),\n- el...
2023-09-12T10:27:14
rust-lang/rust
924dbc46d9afea739aa51769f426c52a4f267e58
940f30792c614ee18c551c7321470c8f60ae6422
Move `CycleErrorHandling`. From `rustc_query_system` to `rustc_middle`.
[ { "path": "compiler/rustc_middle/src/query/mod.rs", "patch": "@@ -7,8 +7,8 @@ pub use self::caches::{\n pub use self::job::{QueryInfo, QueryJob, QueryJobId, QueryLatch, QueryWaiter};\n pub use self::keys::{AsLocalKey, Key, LocalCrate};\n pub use self::plumbing::{\n- ActiveKeyStatus, CycleError, IntoQuery...
2026-02-11T03:57:33
nodejs/node
18101d83a158b877ac765936aba973c664130ea2
c046c9b3d8bc933b1c9760ad5663c365785ceac7
crypto: reject dh,x25519,x448 in {Sign,Verify}Final Fixes: https://github.com/nodejs/node/issues/53742 PR-URL: https://github.com/nodejs/node/pull/53774 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "src/crypto/crypto_sig.cc", "patch": "@@ -92,12 +92,15 @@ std::unique_ptr<BackingStore> Node_SignFinal(Environment* env,\n sig = ArrayBuffer::NewBackingStore(env->isolate(), sig_len);\n }\n EVPKeyCtxPointer pkctx(EVP_PKEY_CTX_new(pkey.get(), nullptr));\n- if (pkctx &&\n- EVP_PKEY_sig...
2024-09-06T22:07:16
vercel/next.js
1180a6ecf0a4aa4a47d7fc95d0e0bf8c5a3fa1e8
ff4f10a510328151ae618c1689e203cc76b00e15
fix(Turbopack): Address duplicated metadata image modules when they are impored (#82367)
[ { "path": "crates/next-core/src/next_image/source_asset.rs", "patch": "@@ -35,9 +35,16 @@ pub struct StructuredImageFileSource {\n impl Source for StructuredImageFileSource {\n #[turbo_tasks::function]\n fn ident(&self) -> Vc<AssetIdent> {\n+ let modifier = match self.blur_placeholder_mode {\...
2025-08-05T18:19:06
facebook/react
f4229cdb7fd53cf95bdb79209fa86f4216701c9b
638f8e3ddc9a73036d527dfc396e21fa8862a20f
Rename error type
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -173,7 +173,7 @@ export class CompilerError extends Error {\n \n constructor(...args: any[]) {\n super(...args);\n- this.name = \"ReactForgetCompilerError\";\n+ this.name = \"ReactCompilerError\";\n }\n ...
2024-03-28T14:40:04
golang/go
3602cec3af6083d095729f3db8493a226b9273c3
d52679006c8e08875fac92aca1f723fce488d0d2
net/http: fix ServeMux.Handler on trailing-slash redirect When a match involves a trailing-slash redirect, ServeMux.Handler now returns the pattern that matched. Fixes #73688. Change-Id: I682d9cc9a3628bed8bf21139b98369ffa6c53792 Reviewed-on: https://go-review.googlesource.com/c/go/+/673815 Reviewed-by: Filippo Vals...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -391,6 +391,19 @@ func TestServeMuxHandler(t *testing.T) {\n \t}\n }\n \n+// Issue 73688\n+func TestServeMuxHandlerTrailingSlash(t *testing.T) {\n+\tsetParallel(t)\n+\tmux := NewServeMux()\n+\tconst original = \"/{x}/\"\n+\tmux.Handle(original, NotFoundHa...
2025-05-17T23:36:06
electron/electron
ec9c8476fe2c789d8d3bfe94eee6ab88dceeede2
470a14d8d4c2748ede41fe78d686f63cff4d6fe3
fix: `keyCode`s being incorrectly converted in `webContents.sendInputEvent()` (#39776) fix: sendInputEvent keyCodes being incorrectly converted
[ { "path": "shell/common/gin_converters/blink_converter.cc", "patch": "@@ -10,6 +10,7 @@\n \n #include \"base/containers/fixed_flat_map.h\"\n #include \"base/strings/string_util.h\"\n+#include \"base/strings/utf_string_conversion_utils.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"gin...
2023-09-12T09:28:45
nodejs/node
973144b7c6ce60da2f51c43ac9b65e7de25e54f2
1c67899ffb32871461c7ff2d82597d8f9c5cd6af
lib: convert signals to array before validation Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54714 Fixes: https://github.com/nodejs/node/issues/54674 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Rev...
[ { "path": "lib/internal/abort_controller.js", "patch": "@@ -39,6 +39,10 @@ const {\n ERR_INVALID_THIS,\n },\n } = require('internal/errors');\n+const {\n+ converters,\n+ createSequenceConverter,\n+} = require('internal/webidl');\n \n const {\n validateAbortSignal,\n@@ -225,15 +229,19 @@ class Abor...
2024-09-06T17:40:21
vercel/next.js
ff4f10a510328151ae618c1689e203cc76b00e15
ffd7f13c17c33e59ddc0b24b99828dca32113322
[Pages] fix: use `asPath` for query-only navigation with `useRouter` (#82236) ### Why? The issue was brought up when the app had rewrites (say `/ -> /foo`), and the page used `useRouter.push/replace` to add the search queries; it used the destination's pathname (`/foo?query=1`) instead of just adding the query (`/?qu...
[ { "path": "packages/next/src/client/resolve-href.ts", "patch": "@@ -8,6 +8,8 @@ import { normalizePathTrailingSlash } from './normalize-trailing-slash'\n import { isLocalURL } from '../shared/lib/router/utils/is-local-url'\n import { isDynamicRoute } from '../shared/lib/router/utils'\n import { interpolateA...
2025-08-05T18:15:16
rust-lang/rust
8b0dc1ece0a6fd515b7bdb5c3d28f2fdd54bef61
1ac199af0a923580b97db6fdf6e798b37f97d43f
Move `rustc_query_system::query::job` to `rustc_middle`. This includes the types `QueryInfo`, `QueryJob`, `QueryJobId`, `QueryWaiter`, `QueryLatch`, and `QueryLatchInfo`. `CycleError` and `QueryStack*` had to come along too, due to type interdependencies. The `QueryStack*` types are put into a new submodule `rustc_mi...
[ { "path": "Cargo.lock", "patch": "@@ -4226,6 +4226,7 @@ dependencies = [\n \"bitflags\",\n \"either\",\n \"gsgdt\",\n+ \"parking_lot\",\n \"polonius-engine\",\n \"rustc_abi\",\n \"rustc_apfloat\",\n@@ -4512,20 +4513,17 @@ dependencies = [\n name = \"rustc_query_system\"\n version = \"0.0.0\"\n depende...
2026-02-11T02:16:31
electron/electron
5bff0fe342be7579191a7ddccf6b777c8fafb455
16aec702b407af24aab4632c97a21d24c2015acc
feat: add new ElectronSquirrelPreventDowngrades flag (#38625) * sketch * feat: add new ElectronSquirrelPreventDowngrades flag * test: remove only * chore: fix lint
[ { "path": "patches/squirrel.mac/.patches", "patch": "@@ -5,3 +5,4 @@ feat_add_new_squirrel_mac_bundle_installation_method_behind_flag.patch\n refactor_use_posix_spawn_instead_of_nstask_so_we_can_disclaim_the.patch\n fix_abort_installation_attempt_at_the_final_mile_if_the_app_is.patch\n chore_disable_api_dep...
2023-09-11T18:54:51
golang/go
d52679006c8e08875fac92aca1f723fce488d0d2
972639fc4cf257f04f9690e63bea7cd729b3edd2
cmd/compile: fold negation into addition/subtraction on mipsx Fold negation into addition/subtraction and avoid double negation. file before after Δ % addr2line 3742022 3741986 -36 -0.001% asm 6668616 6668628 +12 +0.000% buildid 3583786 3583630 -156 -0.004% cgo 6...
[ { "path": "src/cmd/compile/internal/ssa/_gen/MIPS.rules", "patch": "@@ -614,11 +614,14 @@\n \n // generic simplifications\n (ADD x (NEG y)) => (SUB x y)\n+(SUB x (NEG y)) => (ADD x y)\n (SUB x x) => (MOVWconst [0])\n (SUB (MOVWconst [0]) x) => (NEG x)\n (AND x x) => x\n (OR x x) => x\n (XOR x x) => (MOVWco...
2025-05-16T16:27:37
facebook/react
638f8e3ddc9a73036d527dfc396e21fa8862a20f
51668692046ebd997d93c45a91f7cc1ca1479fac
Remove [ReactForget] prefix from error messages
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -93,7 +93,7 @@ export class CompilerErrorDetail {\n }\n \n toString(): string {\n- return `[ReactForget] ${this.printErrorMessage()}`;\n+ return this.printErrorMessage();\n }\n }\n ", "additions": 1, ...
2024-03-28T14:40:03
vercel/next.js
ffd7f13c17c33e59ddc0b24b99828dca32113322
1122b1f26fda9da45f0d69430e24e69d55161a84
[Pages] fix: `_error` page's `req.url` can be overwritten to dynamic param on minimal mode (#82347) In minimal mode, if there was `/[slug].js` with `notFound: true` on the same segment of `_error.js`, `req.url` and `ctx.asPath` were returned as `/[slug]`, since it was re-initialized to the request url. Therefore, don...
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -2355,7 +2355,13 @@ export default abstract class Server<\n initPathname = normalizer.normalize(initPathname)\n }\n }\n- request.url = `${initPathname}${parsedInitUrl.search || ''}`\n+\n+ // On minimal mode, the reques...
2025-08-05T18:06:32