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
9cd5de75888d67b20bb7faf59ca4272323895c62
a83f9c06d701f1126eaf8da605e27125c90edb87
fix: use generic capturer to list both screens and windows when possible (#39111) Screensharing with PipeWire via XDG Desktop Portal requires explicit user permission via permission dialogs. Chromium has separate tabs for screens and windows and thus its portal implementation requests permissions separately for eac...
[ { "path": "patches/chromium/.patches", "patch": "@@ -131,3 +131,4 @@ fix_select_the_first_menu_item_when_opened_via_keyboard.patch\n fix_return_v8_value_from_localframe_requestexecutescript.patch\n fix_harden_blink_scriptstate_maybefrom.patch\n chore_add_buildflag_guard_around_new_include.patch\n+fix_use_de...
2023-07-21T23:03:01
golang/go
1b40dbce1ab039f6715b8b151a4db093ede87fff
f760e1fe494681297c5f050b646b5bcde9c71662
runtime: mark and scan small objects in whole spans [green tea] Our current parallel mark algorithm suffers from frequent stalls on memory since its access pattern is essentially random. Small objects are the worst offenders, since each one forces pulling in at least one full cache line to access even when the amount ...
[ { "path": "src/cmd/compile/internal/test/inl_test.go", "patch": "@@ -67,16 +67,18 @@ func TestIntendedInlining(t *testing.T) {\n \t\t\t// GC-related ones\n \t\t\t\"cgoInRange\",\n \t\t\t\"gclinkptr.ptr\",\n+\t\t\t\"gcUsesSpanInlineMarkBits\",\n \t\t\t\"guintptr.ptr\",\n \t\t\t\"heapBitsSlice\",\n \t\t\t\"ma...
2025-03-12T18:52:58
nodejs/node
d0f5943363fd6b7dd78cfd288b59af7727d79ce7
1d35a066e75c4f99a307b5f7f83321ca7ae8e1aa
test_runner: do not expose internal loader PR-URL: https://github.com/nodejs/node/pull/54106 Fixes: https://github.com/nodejs/node/issues/54071 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/modules/esm/hooks.js", "patch": "@@ -145,13 +145,15 @@ class Hooks {\n * @param {any} [data] Arbitrary data to be passed from the custom\n * loader (user-land) to the worker.\n */\n- async register(urlOrSpecifier, parentURL, data) {\n+ async register(urlOrSpecifier, parent...
2024-08-13T13:17:50
vercel/next.js
aacb58d00a7f4d467adb51c1701c2b724a29a983
9d44731ae34ac60f9db3b5c36b4d4060e5d29af1
chore(deps): update `browserslist` (#81851) Update browserslist v4.24.4 -> 4.25.1 (latest) Update `browserslist` to 4.25.1 to enable custom statistics query support that was added in 4.25.0. This query allows browserslist to be configured based on custom data sources (like Google Analytics) rather than the default br...
[ { "path": "package.json", "patch": "@@ -151,7 +151,7 @@\n \"alex\": \"9.1.0\",\n \"async-sema\": \"3.0.1\",\n \"babel-plugin-react-compiler\": \"19.0.0-beta-e552027-20250112\",\n- \"browserslist\": \"4.24.4\",\n+ \"browserslist\": \"4.25.1\",\n \"buffer\": \"5.6.0\",\n \"cheerio\":...
2025-07-21T20:59:39
facebook/react
89021fb4ec9aa82194b0788566e736a4cedfc0e4
7d6f1e3c13686272c1d76813992d4e782fcb84e6
Remove invokeGuardedCallback and replay trick (#28515) We broke the ability to "break on uncaught exceptions" by adding a try/catch higher up in the scheduling. We're giving up on fixing that so we can remove the replay trick inside an event handler. The issue with that approach is that we end up double logging a...
[ { "path": "fixtures/dom/src/toWarnDev.js", "patch": "@@ -7,11 +7,6 @@ const util = require('util');\n function shouldIgnoreConsoleError(format, args) {\n if (__DEV__) {\n if (typeof format === 'string') {\n- if (format.indexOf('Error: Uncaught [') === 0) {\n- // This looks like an uncaught...
2024-03-12T00:17:07
electron/electron
6688b0f31ae3ef0648eb27679dcfa15825cb2be8
565705bd1da46e9c519845463176454b33d0e6fb
build: fix Appveyor test workflow checkout (#39137) * build: fix Appveyor test workflow checkout * fix: +refs/pull/num/merge -> +refs/pull/num/head * chore: add to appveyor-woa as well
[ { "path": "appveyor-woa.yml", "patch": "@@ -51,6 +51,11 @@ environment:\n APPVEYOR_BUILD_WORKER_IMAGE: base-woa\n APPVEYOR_BUILD_WORKER_CLOUD: electronhq-woa\n \n+clone_script:\n+- ps: git clone -q $(\"--branch=\" + $Env:APPVEYOR_REPO_BRANCH) $(\"https://github.com/\" + $Env:APPVEYOR_REPO_NAME +...
2023-07-20T09:19:57
golang/go
7785528c505f6ef9afdb3e089d23dadb860aee11
9921537a96deb3cdfc64478bc041dc97326590ab
os: fix Root.Mkdir permission bits on OpenBSD Pass missing mode bits in the mkdirat() syscall wrapper. Fixes #73559 Change-Id: I54b1985bd77b1fe5d1a48acab9f2597f8c931854 GitHub-Last-Rev: 669c17361d86bc9065bb6b47a2d60aa86bcfa12d GitHub-Pull-Request: golang/go#73565 Reviewed-on: https://go-review.googlesource.com/c/go/...
[ { "path": "src/internal/syscall/unix/at_openbsd.go", "patch": "@@ -43,7 +43,7 @@ func Mkdirat(dirfd int, path string, mode uint32) error {\n \tif err != nil {\n \t\treturn err\n \t}\n-\t_, _, errno := syscall_syscall6(abi.FuncPCABI0(libc_mkdirat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(p)), 0, 0,...
2025-05-01T15:09:40
nodejs/node
1d35a066e75c4f99a307b5f7f83321ca7ae8e1aa
9e8cc2933e9a915c2ab79efbd5f1b8afd3aab4f4
src,test: ensure that V8 fast APIs are called Adds a debug-only macro that can be used to track when a V8 fast API is called. A map of counters is maintained in in thread-local storage and an internal API can be called to get the total count associated with a call id. Specific tests are added and `crypto.timingSafeEqu...
[ { "path": "doc/contributing/adding-v8-fast-api.md", "patch": "@@ -29,6 +29,12 @@ for example, they may not trigger garbage collection.\n * To test fast APIs, make sure to run the tests in a loop with a decent\n iterations count to trigger relevant optimizations that prefer the fast API\n over the slow o...
2024-08-13T12:37:02
vercel/next.js
89996f105fcbacd5a708c6a628fb8180a9c018b6
2632a4598f304a39b3ebacc6d23f78369171e1b2
refactor: handle null RenderResult responses gracefully (#81895) ### What? - Removed unused `toUnchunkedBuffer` method from RenderResult - Changed null response handling to return empty values instead of throwing errors ### Why? The codebase now provides `RenderResult.EMPTY` for null responses, making it a valid stat...
[ { "path": "packages/next/src/server/render-result.ts", "patch": "@@ -6,7 +6,6 @@ import {\n chainStreams,\n streamFromBuffer,\n streamFromString,\n- streamToBuffer,\n streamToString,\n } from './stream-utils/node-web-streams-helper'\n import { isAbortError, pipeToNodeResponse } from './pipe-readabl...
2025-07-21T15:45:59
facebook/react
605b7c018d61601e72f72c232b0c965b0164914e
56e20051c3c1611f9495081d01f1946184332c6b
Concurrent rendering in ReactDevToolsHooksIntegration-test (#28522) ## Summary We need to unblock flipping the default for RTR to be concurrent rendering. Update ReactDevToolsHooksIntegration-test to use `unstable_isConcurrent` in place. ## How did you test this change? `yarn test packages/react-debug-tool...
[ { "path": "packages/react-debug-tools/src/__tests__/ReactDevToolsHooksIntegration-test.js", "patch": "@@ -43,7 +43,7 @@ describe('React hooks DevTools integration', () => {\n const InternalTestUtils = require('internal-test-utils');\n waitForAll = InternalTestUtils.waitForAll;\n \n- act = ReactTe...
2024-03-11T19:06:35
electron/electron
565705bd1da46e9c519845463176454b33d0e6fb
e02cf8674d3c3b593f8bcce739ecd736fd10e906
docs: fix casing of _Deprecated_ (#39152)
[ { "path": "docs/api/system-preferences.md", "patch": "@@ -297,7 +297,7 @@ This API is only available on macOS 10.14 Mojave or newer.\n * `window-frame` - Window frame.\n * `window-text` - Text in windows.\n * On **macOS**\n- * `alternate-selected-control-text` - The text on a selected surface i...
2023-07-20T09:16:20
golang/go
9921537a96deb3cdfc64478bc041dc97326590ab
12110c3f7ed378cd1819abf72ffadcb18502c127
sync: WaitGroup.Go: document that f must not panic Fixes #63796 Change-Id: Ib11d32574011e13aab3a0ad504f0d10009627503 Reviewed-on: https://go-review.googlesource.com/c/go/+/667695 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <dneil@google.com> Commi...
[ { "path": "src/sync/waitgroup.go", "patch": "@@ -163,6 +163,8 @@ func (wg *WaitGroup) Wait() {\n // Go calls f in a new goroutine and adds that task to the [WaitGroup].\n // When f returns, the task is removed from the WaitGroup.\n //\n+// The function f must not panic.\n+//\n // If the WaitGroup is empty, ...
2025-04-24T02:58:05
nodejs/node
b8a2550ec0a7fd6ce1f9a6b6b7cf2bfbf96fb484
916865ba8b465f4994f3531fbb802cc53287acb9
test: unmark test-sqlite as flaky PR-URL: https://github.com/nodejs/node/pull/54014 Fixes: https://github.com/nodejs/node/issues/54006 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizi...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -19,9 +19,6 @@ test-fs-read-stream-concurrent-reads: PASS, FLAKY\n # https://github.com/nodejs/node/issues/52630\n test-error-serdes: PASS, FLAKY\n \n-# https://github.com/nodejs/node/issues/54006\n-test-sqlite: PASS, FLAKY\n-\n [$system==win32]\n \n #...
2024-08-06T22:51:02
vercel/next.js
2632a4598f304a39b3ebacc6d23f78369171e1b2
d56855041c23dca9f2383dbc88a57e7600255979
Turbopack: fix unhelpful error message when deleting folder fails (#81718) ### What? Fixes the unhelpful error message: ``` [Error: No such file or directory (os error 2)] { code: 'GenericFailure' } ```
[ { "path": "turbopack/crates/turbo-tasks-backend/src/database/db_versioning.rs", "patch": "@@ -143,8 +143,11 @@ pub fn handle_db_versioning(\n }\n } else {\n path = base_path.join(\"temp\");\n- // propagate errors: if this fails we may have stale files left over in the temp directo...
2025-07-21T15:14:00
facebook/react
16852386a5ac9ccffa265ad96f2d7e1db544aecb
5f3ed3f7241df57cfbc98edabf84100ceea7bfb1
Support more cases of reassignment within value blocks Fixes T175283039 — it's totally fine to have a StoreLocal as an instruction in a value block, so long as its a reassignment.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -1752,13 +1752,29 @@ function codegenInstructionValue(\n );\n break;\n }\n+ case \"StoreLocal\": {\n+ CompilerError.invariant(\n+ instrValue.lvalue.kind === Inst...
2024-03-08T21:59:22
golang/go
12110c3f7ed378cd1819abf72ffadcb18502c127
4d10d4ad849467f12a1a16a5ade26cc03d8f1a1f
cmd/compile: improve multiplication strength reduction Use an automatic algorithm to generate strength reduction code. You give it all the linear combination (a*x+b*y) instructions in your architecture, it figures out the rest. Just amd64 and arm64 for now. Fixes #67575 Change-Id: I35c69382bebb1d2abf4bb4e7c43fd8548...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules", "patch": "@@ -882,44 +882,10 @@\n // (ANDQconst [0xFFFFFFFF] x) => (MOVLQZX x)\n \n // strength reduction\n-// Assumes that the following costs from https://gmplib.org/~tege/x86-timing.pdf:\n-// 1 - addq, shlq, leaq, negq, subq\n-// 3 - imulq\...
2024-11-11T20:21:14
nodejs/node
916865ba8b465f4994f3531fbb802cc53287acb9
717b4018f1cd00bf20720f40ad0b201b0946c9e0
sqlite: split up large test file The original test/parallel/test-sqlite.js test appears to time out in the CI occasionally. This commit splits the test into several smaller test files. Fixes: https://github.com/nodejs/node/issues/54006 PR-URL: https://github.com/nodejs/node/pull/54014 Reviewed-By: Moshe Atlow <moshe@...
[ { "path": "test/parallel/test-sqlite-data-types.js", "patch": "@@ -0,0 +1,157 @@\n+// Flags: --experimental-sqlite\n+'use strict';\n+require('../common');\n+const tmpdir = require('../common/tmpdir');\n+const { join } = require('node:path');\n+const { DatabaseSync } = require('node:sqlite');\n+const { suite...
2024-07-24T04:35:00
electron/electron
e02cf8674d3c3b593f8bcce739ecd736fd10e906
3e7c904f02d156555e5ec21b13bf5b38d663042e
chore: bump chromium to 117.0.5897.0 (main) (#39147) * chore: bump chromium in DEPS to 117.0.5896.0 * chore: update patches * 4622260: [Service Workers] Allow fetches from workers to use auto-picked certs https://chromium-review.googlesource.com/c/chromium/src/+/4622260 * chore: bump chromium in DEPS to 11...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '117.0.5892.0',\n+ '117.0.5897.0',\n 'node_version':\n 'v18.16.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-07-20T07:36:59
facebook/react
5f3ed3f7241df57cfbc98edabf84100ceea7bfb1
052f5fe973e2d5c08293509063163b0b63a6d948
Fixture for reassignment within value block Fixture from T175283039, a reassignment within an expression can sometimes generate a StoreLocal within a value block. Depending on the case this can end up as the last instruction of the block, which then hits an invariant.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.todo-reassign-in-while-loop-condition.expect.md", "patch": "@@ -0,0 +1,38 @@\n+\n+## Input\n+\n+```javascript\n+import { makeArray } from \"shared-runtime\";\n+\n+// @flow\n+function Component() {\n+ const items = ...
2024-03-08T21:59:21
vercel/next.js
d56855041c23dca9f2383dbc88a57e7600255979
8c94014befd234ded33fe0dd1810f279330f34e8
refactor: encapsulate content type within RenderResult (#81861) ### Problem The PPR boundary sentinel was being incorrectly added to responses due to flawed content type logic in `sendRenderResult`. The original conditional logic had complex fallbacks that caused the sentinel to be added when it shouldn't be: ```java...
[ { "path": "packages/next/errors.json", "patch": "@@ -728,5 +728,8 @@\n \"727\": \"Route %s couldn't be rendered statically because it used IO that was not cached. See more info here: https://nextjs.org/docs/messages/cache-components\",\n \"728\": \"CacheSignal cannot be used in the edge runtime, because...
2025-07-21T15:06:51
nodejs/node
717b4018f1cd00bf20720f40ad0b201b0946c9e0
0301309493b2a4e80796517bdb46ec55202a4800
sqlite: ensure statement finalization on db close This commit adds statement tracking to the DatabaseSync class. When a database is closed manually or via garbage collection, it will force all associated prepared statements to be finalized. This should mitigate "zombie" connections which can introduce test flakiness i...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -91,16 +91,19 @@ DatabaseSync::DatabaseSync(Environment* env,\n }\n \n DatabaseSync::~DatabaseSync() {\n- sqlite3_close_v2(connection_);\n- connection_ = nullptr;\n+ if (IsOpen()) {\n+ FinalizeStatements();\n+ sqlite3_close_v2(connection_);\n+ connect...
2024-08-06T03:37:13
golang/go
6109185cf9641ea401812c63ba3538742b872952
b48e52b4282631ecda45ac985d398e19eca1e745
math/big: fix incorrect register allocation for mipsx/mips64x According to the MIPS ABI, R26/R27 are reserved for OS kernel, and may be clobbered by it. They must not be used by user mode. See Figure 3-18 of MIPS ELF ABI specification: https://refspecs.linuxfoundation.org/elf/mipsabi.pdf Fixes #73472 Change-Id: Ifd...
[ { "path": "src/math/big/arith_mips64x.s", "patch": "@@ -17,18 +17,18 @@ TEXT ·addVV(SB), NOSPLIT, $0\n \t// compute unrolled loop lengths\n \tAND $3, R1, R5\n \tSRLV $2, R1\n-\tXOR R26, R26\t// clear carry\n+\tXOR R24, R24\t// clear carry\n loop1:\n \tBEQ R5, loop1done\n loop1cont:\n \t// unroll 1X\n \tMOVV...
2025-04-25T12:59:13
facebook/react
338dddc089d5865761219f02b5175db85c54c489
c35b9b05fee039a8c3a99fdb7e35d5ca30db9eb0
Remove RTR from DebugTracing-test (#28411) ## Summary Internal cleanup of ReactTestRenderer ## How did you test this change? `yarn test packages/react-reconciler/src/__tests__/DebugTracing-test.internal.js`
[ { "path": "packages/react-reconciler/src/__tests__/DebugTracing-test.internal.js", "patch": "@@ -11,9 +11,10 @@\n \n describe('DebugTracing', () => {\n let React;\n- let ReactTestRenderer;\n+ let ReactNoop;\n let waitForPaint;\n let waitForAll;\n+ let act;\n \n let logs;\n \n@@ -27,10 +28,11 @@ d...
2024-03-07T21:36:50
vercel/next.js
5fbf29ca10480f509a0e0ac61e5206947d3e088a
443a31b99021d8c2a191cc5abb1c21859d720fb9
fix: remove boundary sentinel from RSC responses (#81857) ## Summary This PR fixes an issue where the test mode boundary sentinel was being incorrectly added to RSC (React Server Component) responses. The sentinel should only be added to HTML responses during PPR (Partial Prerendering) test mode. ## Changes - Added...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -32,6 +32,7 @@ import {\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_IS_PRERENDER_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n+ RSC_CONTENT_TYPE_HEADER,\n } from '../../client/components/app-router-headers'\n import { getBotType, isBot } from ...
2025-07-19T21:23:21
nodejs/node
4dae01ba2c106e2e2f52c5cccb4ab291dbedb165
bc5ebe44f95755e97e60bcab50ea59358d1faee5
deps: fix GN build warning in ncrypto PR-URL: https://github.com/nodejs/node/pull/54222 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "deps/ncrypto/unofficial.gni", "patch": "@@ -14,6 +14,7 @@ template(\"ncrypto_gn_build\") {\n \"-Wno-deprecated-declarations\",\n \"-Wno-pessimizing-move\",\n \"-Wno-shadow\",\n+ \"-Wno-unused-variable\",\n ]\n }\n ", "additions": 1, "deletions": 0, "langua...
2024-08-11T17:54:31
golang/go
b48e52b4282631ecda45ac985d398e19eca1e745
12e5efd71011fbb5816a1d815e91b5c865fa9a83
cmd/dist: move "devel" substring in git-inferred development version Keep the property that the "devel" substring is always present in these development versions of Go, but also gain the property that it's viable to use functions in the go/version package such as Lang, Compare, and get the expected results without nee...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -426,6 +426,10 @@ func findgoversion() string {\n \t// Otherwise, use Git.\n \t//\n \t// Include 1.x base version, hash, and date in the version.\n+\t// Make sure it includes the substring \"devel\", but otherwise\n+\t// use a format compatible with https://go...
2025-04-25T00:48:10
electron/electron
bbdd037219f81f8c11f4cd92239f15d5365ee905
ee4460ac686511b21a235cd6e9f3d29e3588e1d8
chore: bump chromium to 117.0.5892.0 (main) (#39118) * chore: bump chromium in DEPS to 117.0.5892.0 * 4670267: Don't send javascript: or empty URLs to browser in CreateNewWindow. https://chromium-review.googlesource.com/c/chromium/src/+/4670267 * 4662090: Add metrics for WebGPU support https://chromium-rev...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -526,6 +526,10 @@ step-fix-sync: &step-fix-sync\n sed -i '' \"s/Updating depot_tools... //g\" esbuild_ensure_file\n cipd ensure --root src/third_party/devtools-frontend/src/third_party/esbuild -ensure-file esbuild_ensure_file\n \n+ #...
2023-07-18T22:26:27
facebook/react
c35b9b05fee039a8c3a99fdb7e35d5ca30db9eb0
447fc27e3613d9fd026fbf48aa8a5e5a3f5167d4
Fix ReactHooksInspection-test.js (#28520) ## Summary Currently, `ReactHooksInspection-test.js` fails because something is polluting the resulting `Promise` with symbol properties. This changes the unit test to be more resilient to such symbol properties. ## How did you test this change? Ran the following su...
[ { "path": "packages/react-debug-tools/src/__tests__/ReactHooksInspection-test.js", "patch": "@@ -584,24 +584,29 @@ describe('ReactHooksInspection', () => {\n return <div>{value}</div>;\n }\n const tree = ReactDebugTools.inspectHooks(Foo, {});\n- expect(normalizeSourceLoc(tree)).toMatchInlin...
2024-03-07T19:22:42
vercel/next.js
443a31b99021d8c2a191cc5abb1c21859d720fb9
e5711ab66dfb7e2e6c05684c358a397297c8401a
Turbopack: fix dist dir on Windows (#81758) Regression from #80683 Closes PACK-5071 Closes https://github.com/vercel/next.js/issues/81628
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -705,10 +705,11 @@ jobs:\n afterBuild: |\n export NEXT_TEST_MODE=start\n \n- node run-tests.js \\\n+ node run-tests.js --type production \\\n test/e2e/app-dir/app/index.test.ts \\\n test/e2e/app-di...
2025-07-19T05:56:41
nodejs/node
298ff4fdb1513a944470a09619c5f494d142b3a2
90f257176c064796b0ed25504061c7c7b77b3b82
tty: initialize winSize array with values Assigning to a holey array in the native layer may crash if it has getters that throw. Refs: https://github.com/nodejs/node/issues/54186 PR-URL: https://github.com/nodejs/node/pull/54281 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Joyee Cheung <joyeec9h...
[ { "path": "lib/tty.js", "patch": "@@ -22,7 +22,6 @@\n 'use strict';\n \n const {\n- Array,\n NumberIsInteger,\n ObjectSetPrototypeOf,\n } = primordials;\n@@ -111,7 +110,7 @@ function WriteStream(fd) {\n // Ref: https://github.com/nodejs/node/pull/1771#issuecomment-119351671\n this._handle.setBlocki...
2024-08-11T06:32:13
golang/go
12e5efd71011fbb5816a1d815e91b5c865fa9a83
214b208e248d30a3b6c35a5ebf344cc2de3b9e3f
cmd/link: fix cgo on riscv64 when building with gcc-15 It's not currently possible to build cgo programs that are partially compiled with gcc-15 on riscv64 using the internal linker. There are two reasons for this. 1. When gcc-15 compiles _cgo_export.c, which contains no actual code, for a riscv64 target, it emits...
[ { "path": "src/cmd/link/internal/loadelf/ldelf.go", "patch": "@@ -609,7 +609,7 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\tif strings.HasPrefix(elfsym.name, \".LASF\") || strings.HasPrefix(elfsym.name, \".LLRL\") || strings.HasPr...
2025-04-25T15:23:49
electron/electron
00d96970cb4879773b8b4651f9e7136db383243e
139774ce4857af1d897383eb81fc3dcb65f7170c
build: fixup Codespaces build-tools setup (#39138) * build: fixup Codespaces build-tools setup * oops evm.testing1.json -> evm.testing.json
[ { "path": ".devcontainer/on-create-command.sh", "patch": "@@ -16,6 +16,8 @@ ln -s $buildtools_configs $buildtools/configs\n \n # Write the gclient config if it does not already exist\n if [ ! -f $gclient_root/.gclient ]; then\n+ echo \"Creating gclient config\"\n+\n echo \"solutions = [\n { \\\"nam...
2023-07-18T20:58:26
facebook/react
447fc27e3613d9fd026fbf48aa8a5e5a3f5167d4
850fac4915864a487e7cb9ecae8a75dbac144174
fix[devtools/e2e]: fixed source inspection in e2e tests (#28518) DevTools e2e tests started to fail after landing https://github.com/facebook/react/pull/28471: - https://app.circleci.com/pipelines/github/facebook/react/50984/workflows/a7be25ed-9547-40e9-87bd-b14d9d2e87da/jobs/798270 - https://app.circleci.com/pip...
[ { "path": "packages/react-devtools-inline/__tests__/__e2e__/components.test.js", "patch": "@@ -59,7 +59,7 @@ test.describe('Components', () => {\n const isEditableValue = semver.gte(config.use.react_version, '16.8.0');\n \n // Then read the inspected values.\n- const [propName, propValue, sourceT...
2024-03-07T17:59:37
vercel/next.js
5c7daf5aff50992d4653ed96becd3a7818af51fd
d3ed546f49d903738bc09848e90afeefefe3cdfa
fix(ppr): ensure fallback route params trigger dynamic resume (#81812) ### What? This PR fixes an issue where pages with fallback route params weren't triggering dynamic resume behavior in PPR (Partial Pre-Rendering). ### Why? When fallback route params exist, the RSC (React Server Components) data is inherently dy...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -1075,6 +1075,16 @@ export async function handler(\n // should also be the case for a resume request because it's completed\n // as a server render (rather than a static render).\n if (!didPostpone || minimalMode) {\n+...
2025-07-18T23:02:42
facebook/react
fe91bcefd2bbc3da9f1998befb466acc8b4afdca
449aa70f99c4984e7550fb9ef1aa16b1b60d6544
Fix promotion of catch bindings w/in function expressions One of our visitors wasn't visiting TryTerminal's handlerBinding, which meant that we missed renaming those identifiers in RenameVariables. I also updated the printers to print this binding.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/PrintHIR.ts", "patch": "@@ -266,8 +266,10 @@ export function printTerminal(terminal: Terminal): Array<string> | string {\n break;\n }\n case \"try\": {\n- value = `Try block=bb${terminal.block} catch=bb${\n- terminal.ha...
2024-03-07T17:21:33
golang/go
06751c455d89e09d29affc343ca9e38a02e2f5a2
c966f1c0c0e872773c38a6ddbd08df72726c8ba8
syscall: cache Errno.Error() on Windows Windows is unlike the other OSs and depends on a syscall for most errors. This can be costly; cache the returned string for later reuse. This helps test caching, since errors are written out as string to the test ID, which are often PathErrors wrapping Errnos. For now, only ca...
[ { "path": "src/syscall/syscall_windows.go", "patch": "@@ -138,12 +138,32 @@ func FormatMessage(flags uint32, msgsrc uint32, msgid uint32, langid uint32, buf\n \treturn formatMessage(flags, uintptr(msgsrc), msgid, langid, buf, args)\n }\n \n+var errnoErrorCache sync.Map\n+\n func (e Errno) Error() string {\n...
2025-03-24T23:01:06
electron/electron
8874306dc021f2beb4c2b7cd49b8f3bec614e373
4ab0a5ade47534db85d333e17f40530cc9726475
fix: `window.open` causing occasional Node.js crashes (#38754) * fix: window.open causing occasional Node.js crashes * chore: always free isolate data * chore: clear pending ticks in worker thread * fix: UAF crash when creating WebWorkerObserver --------- Co-authored-by: deepak1556 <hop2deep@gmail.com>
[ { "path": "patches/chromium/fix_harden_blink_scriptstate_maybefrom.patch", "patch": "@@ -40,13 +40,14 @@ accessing uninitialized lower indexes can return garbage values that cannot be n\n Refer to v8::EmbedderDataSlot::store_aligned_pointer for context.\n \n diff --git a/gin/public/gin_embedders.h b/gin/pub...
2023-07-18T08:41:50
vercel/next.js
d3ed546f49d903738bc09848e90afeefefe3cdfa
afec9909a066154c4ccc1e1d9ee10e3678ec2e2f
[devtool] fix scrollbar styling (#81814) * The scrollbar styling was lost before while we enabling the draggable panel. Share that styles between all scrollable content * Migrate the inline style to css and dynamic css into css variables, so we'll create less dynamic object during rendering. <video src="https://gi...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/dialog/dialog.tsx", "patch": "@@ -87,6 +87,7 @@ const Dialog: React.FC<DialogProps> = function Dialog({\n ref={dialogRef}\n tabIndex={-1}\n data-nextjs-dialog\n+ data-nextjs-scrollable-content\n role={role}\n ...
2025-07-18T21:35:12
rust-lang/rust
200968c81db4920f6d2f1546c476a00ab6ea98af
15d02fc0d71f86fe09a882ed16a541b3f4de4ca0
ci: Pin Miri to the 2026-02-11 nightly CI is failing with: error: failed to run custom build command for `quote v1.0.44` Caused by: process didn't exit successfully: `/home/runner/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/cargo-miri runner /home/runner/work/compiler-builtins/compiler-buil...
[ { "path": "library/compiler-builtins/.github/workflows/main.yaml", "patch": "@@ -303,7 +303,9 @@ jobs:\n steps:\n - uses: actions/checkout@v4\n - name: Install Rust (rustup)\n- run: rustup update nightly --no-self-update && rustup default nightly\n+ # FIXME(ci): not working in the 2026...
2026-02-12T02:55:17
nodejs/node
37f9eca5b522c9ff3214f909d154ba3588a7afff
90d91abbfe32d9ce6606bd8db3cef1ac37e45923
module,win: fix long path resolve PR-URL: https://github.com/nodejs/node/pull/53294 Fixes: https://github.com/nodejs/node/issues/50753 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
[ { "path": "src/node_file.cc", "patch": "@@ -3340,8 +3340,14 @@ void BindingData::LegacyMainResolve(const FunctionCallbackInfo<Value>& args) {\n \n for (int i = 0; i < legacy_main_extensions_with_main_end; i++) {\n file_path = *initial_file_path + std::string(legacy_main_extensions[i]);\n-\n- ...
2024-08-10T14:12:53
facebook/react
449aa70f99c4984e7550fb9ef1aa16b1b60d6544
854a810f0598def185f3f9593b070960433b21fd
Fix promotion of locals referenced outside of scopes
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PropagateScopeDependencies.ts", "patch": "@@ -23,6 +23,7 @@ import {\n ReactiveScopeDependency,\n ReactiveTerminalStatement,\n ReactiveValue,\n+ ScopeId,\n } from \"../HIR/HIR\";\n import {\n eachInstructionValueOperand,\n@@ ...
2024-03-07T00:19:28
electron/electron
4ab0a5ade47534db85d333e17f40530cc9726475
626f46f75a848cf9641ae40f0c82aa1a81d64e64
docs: fix a capitalization problem in messagePort tutorial (#39083) fix a capitalization problem For a rookie, this little mistake took a long time to find out.
[ { "path": "docs/tutorial/message-ports.md", "patch": "@@ -150,7 +150,7 @@ renderer.\n \n ```js title='renderer.js (Renderer Process)' @ts-nocheck\n // elsewhere in your code to send a message to the other renderers message handler\n-window.electronMessagePort.postmessage('ping')\n+window.electronMessagePort...
2023-07-17T17:41:46
golang/go
c966f1c0c0e872773c38a6ddbd08df72726c8ba8
8270b858ee8744e5b7584b49ae6ed93aa975c8bc
net: support IPv6 addresses in ListenMulticastUDP on Windows Fixes #63529. Change-Id: Id9246af1a72beef3149af571f0891437bba2f4e0 Reviewed-on: https://go-review.googlesource.com/c/go/+/668216 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Junyang Shao <shaojunyang...
[ { "path": "doc/next/6-stdlib/99-minor/net/63529.md", "patch": "@@ -0,0 +1 @@\n+On Windows, the [ListenMulticastUDP] now supports IPv6 addresses.", "additions": 1, "deletions": 0, "language": "Markdown" }, { "path": "src/net/listen_test.go", "patch": "@@ -610,7 +610,8 @@ func TestIPv6...
2025-04-25T13:30:53
vercel/next.js
8a8888ca96aee5e75c03b257f1e6c194cb9a43f1
ae2c750d2ba7f0d6be9de9346bfb2e3dad59a70d
[turbopack] use `require` to load chunks in our node runtime (#81738) ## Use `require` to load chunks in node instead of readFile+eval The benefit of this is that we can slightly simplify chunk loading and make it easier for hosting services to cache bytecode. Much like [browsers](https://v8.dev/blog/code-caching-fo...
[ { "path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts", "patch": "@@ -657,14 +657,16 @@ describe('Cache Components Errors', () => {\n } else {\n expect(output).toMatchInlineSnapshot(`\n \"Error: Route \"/dynamic-root\": A component acces...
2025-07-18T19:54:20
rust-lang/rust
461e7b14e627957a659dea69c14b17fd5c58a380
53e39cceb48b5e42cbde66162895b6a2148be959
fix: properly wrap long `impl trait` function parameters Before we weren't taking the length of `impl ` into account so the trait thought it had more room than it actually did to format itself on a single line.
[ { "path": "src/types.rs", "patch": "@@ -1016,9 +1016,14 @@ impl Rewrite for ast::Ty {\n }\n let rw = if context.config.style_edition() <= StyleEdition::Edition2021 {\n it.rewrite_result(context, shape)\n+ } else if context.config.style_editi...
2026-02-11T02:19:55
nodejs/node
30f6c56e03125183c4ece1b5e1e658b74e3ef776
9e6c526f6c4e21b96f999869ceb265fb1891bf15
test: fix timeout not being cleared PR-URL: https://github.com/nodejs/node/pull/54242 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im>
[ { "path": "test/parallel/test-pipe-file-to-http.js", "patch": "@@ -32,11 +32,10 @@ const filename = tmpdir.resolve('big');\n let count = 0;\n \n const server = http.createServer((req, res) => {\n- let timeoutId;\n assert.strictEqual(req.method, 'POST');\n req.pause();\n \n- setTimeout(() => {\n+ cons...
2024-08-09T05:42:10
golang/go
1e756dc5f73dc19eb1cbf038807d18ef1cc54ebc
29595ffeca93390dc9c03753b01406c4470c1490
cmd/compile: relax tighten register-pressure heuristic slightly Sometimes a value has multiple args, but they are the same dependency. Relax the regalloc heuristic for those. No measurable compile-time regression according to compilebench, maybe even a small improvement. name old time/op new time/op delta StdCm...
[ { "path": "src/cmd/compile/internal/ssa/tighten.go", "patch": "@@ -27,6 +27,8 @@ func tighten(f *Func) {\n \tdefer f.Cache.freeValueSlice(startMem)\n \tendMem := f.Cache.allocValueSlice(f.NumBlocks())\n \tdefer f.Cache.freeValueSlice(endMem)\n+\tdistinctArgs := f.newSparseSet(f.NumValues())\n+\tdefer f.retS...
2025-04-19T11:27:31
facebook/react
8faed2af4cfd39b32063189f3e7c845984e513ea
2ae0f36543e3306bc4b72de01a1ad8554c9176bf
Avoid conflicting names for reactive scope codegen This is a key part of avoiding generating conflicting names in our output. To start, RenameVariables now returns a Set of the unique identifier names that exist in the function. Codegen uses this to avoid generating duplicate names for change variables and for the...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -348,7 +348,7 @@ function* runWithEnvironment(\n value: reactiveFunction,\n });\n \n- renameVariables(reactiveFunction);\n+ const uniqueIdentifiers = renameVariables(reactiveFunction);\n yield log({\n ...
2024-03-06T19:07:11
vercel/next.js
298acda3b19d2ec1077a93887662a0cd83a12762
f3beddf12a2195a9d1c4d7378d99c2df301c15c3
Add VSCode tasks to show TypeScript compilation errors in problems view (#81799) Showing compilation errors for files that aren't currently open is very useful during refactorings. https://github.com/user-attachments/assets/629f8f2a-37ba-44c1-be6d-9a2e0f93e4f1
[ { "path": ".vscode/tasks.json", "patch": "@@ -0,0 +1,31 @@\n+{\n+ \"version\": \"2.0.0\",\n+ \"tasks\": [\n+ {\n+ \"label\": \"types\",\n+ \"command\": \"pnpm\",\n+ \"args\": [\"typescript\", \"--watch\"],\n+ \"isBackground\": true,\n+ \"group\": {\n+ \"kind\": \"build\"...
2025-07-18T10:38:57
rust-lang/rust
07537b403fad8720003aab23bc763796f2a28c02
23e44f65aa6703c4ff7690eb3ba66ed684d1b72e
num: Move user-public float parsing items directly under core::num Follow up to the previous commit refactoring `core::num` by moving the user-facing error types and trait implementations back out of `imp` and into a new module under `core::num`.
[ { "path": "library/core/src/num/float_parse.rs", "patch": "@@ -0,0 +1,133 @@\n+//! User-facing API for float parsing.\n+\n+use crate::error::Error;\n+use crate::fmt;\n+use crate::num::imp::dec2flt;\n+use crate::str::FromStr;\n+\n+macro_rules! from_str_float_impl {\n+ ($t:ty) => {\n+ #[stable(featu...
2026-01-31T10:24:47
nodejs/node
90dea9e3e003945f113aaca09c45f963fe566a47
88bac52b238427a12521e8d22ddb8a53033793ee
doc: warn for windows build bug Refs: https://github.com/nodejs/build/issues/3739 PR-URL: https://github.com/nodejs/node/pull/54217 Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -644,6 +644,8 @@ Optional requirements to build the MSI installer package:\n Optional requirements for compiling for Windows on ARM (ARM64):\n \n * Visual Studio 17.6.0 or newer\n+ > **Note:** There is [a bug](https://github.com/nodejs/build/issues/3739) in `17.10.x`\n...
2024-08-08T05:58:53
golang/go
29595ffeca93390dc9c03753b01406c4470c1490
b386b628521780c048af14a148f373c84e687b26
doc: fix grammar and spelling Minor typo fixes in the docs Change-Id: I56b5d0318936aecc7775fb5bc70534456707da49 GitHub-Last-Rev: b4d042f8a997aa0d3824d8f9350dd24090b21073 GitHub-Pull-Request: golang/go#73531 Reviewed-on: https://go-review.googlesource.com/c/go/+/668815 Reviewed-by: Keith Randall <khr@golang.org> LUCI-...
[ { "path": "doc/godebug.md", "patch": "@@ -370,7 +370,7 @@ certificate policy OIDs with components larger than 31 bits. By default this\n field is only used during parsing, when it is populated with policy OIDs, but\n not used during marshaling. It can be used to marshal these larger OIDs, instead\n of the e...
2025-04-29T11:46:09
facebook/react
4af3ff1e759682c05336341f242bb886a81839f3
f4455ef51a11570a397c341a4119eab76955f267
Fixture for transitive invalidation of effect dep This fixture shows that this optimization partially improves transitive checking for validateMemoizedEffectDependencies.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.validate-memoized-effect-deps-invalidated-dep-value.expect.md", "patch": "@@ -0,0 +1,44 @@\n+\n+## Input\n+\n+```javascript\n+// @validateMemoizedEffectDependencies\n+import { useHook } from \"shared-runtime\";\n+\n...
2024-03-06T17:28:03
electron/electron
9645f7f6d8ab1adf839ca44ddd64331ccb21d298
f61425efdb1357795a2c05a80923e2064158002b
chore: bump chromium to 117.0.5884.1 (main) (#38969) * chore: bump chromium in DEPS to 117.0.5866.0 * chore: bump chromium in DEPS to 117.0.5868.0 * chore: update mas_no_private_api.patch Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4634925 Minor manual patch syncing due to upstream code...
[ { "path": "BUILD.gn", "patch": "@@ -748,20 +748,34 @@ if (is_mac) {\n source_set(\"electron_lib_arc\") {\n include_dirs = [ \".\" ]\n sources = [\n+ \"shell/browser/browser_mac.mm\",\n \"shell/browser/mac/dict_util.h\",\n \"shell/browser/mac/dict_util.mm\",\n+ \"shell/browser...
2023-07-16T14:14:43
vercel/next.js
2256b6befe223fba2f141d11d2ca1c0524b67b7a
8abbb3dc2e36308249fe1084ae2df032c87431f7
Properly handle hanging promise rejections during prerendering (#81754) We are using hanging promises for excluding request-specific data from a prerender. When prerendering is aborted, we reject all hanging promises. In dev mode, React uses these rejections to construct more detailed owner stacks. This allows us to p...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -711,6 +711,7 @@ async function warmupDevRender(\n \n const renderController = new AbortController()\n const prerenderController = new AbortController()\n+ const reactController = new AbortController()\n const cacheSignal = ...
2025-07-18T07:33:23
rust-lang/rust
0bcec3760467995fb08e55ef6e7be697d13490a5
7057231bd78d6c7893f905ea1832365d4c5efe17
Improve write! and writeln! error when called without destination
[ { "path": "library/core/src/macros/mod.rs", "patch": "@@ -611,6 +611,9 @@ macro_rules! write {\n ($dst:expr, $($arg:tt)*) => {\n $dst.write_fmt($crate::format_args!($($arg)*))\n };\n+ ($($arg:tt)*) => {\n+ compile_error!(\"requires a destination and format arguments, like `write!(d...
2026-02-12T01:37:45
nodejs/node
88bac52b238427a12521e8d22ddb8a53033793ee
2bcf9995d28758584f34382bc402995f268d1b64
test_runner: fix erroneous diagnostic warning when only: false Co-author: rstagi <r.stagi96@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54116 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -409,9 +409,9 @@ class Test extends AsyncResource {\n \n this.concurrency = parent.concurrency;\n this.nesting = nesting;\n- this.only = only ?? !parent.runOnlySubtests;\n+ this.only = only ?? (parent.only && !parent.runOnlySub...
2024-08-08T05:50:32
golang/go
b386b628521780c048af14a148f373c84e687b26
760f22848de788806cb4ed25383cd92ea9091eef
cmd/internal/obj/loong64: fix the error parameters when calling UnspillRegisterArgs This bug was introduced in CL 648518. Fixes #73518. Change-Id: I4988dd0b636c6a6a48d2aa2e2ae868e43f69995a Reviewed-on: https://go-review.googlesource.com/c/go/+/668475 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.i...
[ { "path": "src/cmd/internal/obj/loong64/obj.go", "patch": "@@ -836,7 +836,7 @@ func (c *ctxt0) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {\n \t}\n \tcall.Mark |= BRANCH\n \n-\tunspill := c.cursym.Func().UnspillRegisterArgs(pcdata, c.newprog)\n+\tunspill := c.cursym.Func().UnspillRegisterArgs(call, ...
2025-04-28T11:35:38
vercel/next.js
290ecac91021ffcbd203e751e179b460df8fa63f
2817a46d48d5a1b5d50644ca4cb3b0dc0c50fab3
fix(build): add sourcePage context for PPR dynamic route lambda creation (#81781) ### What? This PR adds a `sourcePage` property to dynamic routes in the routes manifest to provide the necessary context for lambda creation during the build process when PPR is enabled. ### Why? The build process was missing the requ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -412,6 +412,15 @@ export type ManifestRoute = ManifestBuiltRoute & {\n skipInternalRouting?: boolean\n }\n \n+type DynamicManifestRoute = ManifestRoute & {\n+ /**\n+ * The source page that this route is based on. This is used to determine the\n...
2025-07-18T00:56:31
electron/electron
f61425efdb1357795a2c05a80923e2064158002b
34e7c3696a1375080197ebc68c222d221fbc2ef3
fix: `clipboard.readImage()` should be synchronous (#39069) * feat: clipboard.readImage returns a Promise * chore: update breaking changes doc * fix: make function synchronous * Update docs/api/native-image.md Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> --------- Co-authored-by: John ...
[ { "path": "shell/common/api/electron_api_clipboard.cc", "patch": "@@ -7,6 +7,7 @@\n #include <map>\n \n #include \"base/containers/contains.h\"\n+#include \"base/run_loop.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"shell/common/gin_converters/image_converter.h\"\n #include \"shell/...
2023-07-13T20:59:14
facebook/react
48e08c42be4ce37269b1ddc49ab349c1b74807cf
22ea72d4e909e607d79bca8b46f09ded00153e06
Fixtures where unmemoized value invalidates later scopes These fixtures demonstrate how currently, even if the dependency of a scope doesn't get memoized (ie the scope gets pruned), we don't remove later scopes that depend on that value. Those later scopes will always invalidate, so we might as well remove them.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/prune-scopes-whose-deps-invalidate-array.expect.md", "patch": "@@ -0,0 +1,63 @@\n+\n+## Input\n+\n+```javascript\n+import { useHook } from \"shared-runtime\";\n+\n+function Component(props) {\n+ const x = [];\n+ useHook...
2024-03-06T17:28:01
nodejs/node
2bcf9995d28758584f34382bc402995f268d1b64
e9deab9915f70c3e7e6baf5164a419fea0bffbdc
src: skip inspector wait in internal workers Internal workers are essential to load user scripts and bootstrapped with internal entrypoints. They should not be waiting for inspectors even when `--inspect-brk` and `--inspect-wait` were specified, and avoid blocking main thread to bootstrap. IsolateData can be created ...
[ { "path": "src/api/environment.cc", "patch": "@@ -371,9 +371,8 @@ IsolateData* CreateIsolateData(\n MultiIsolatePlatform* platform,\n ArrayBufferAllocator* allocator,\n const EmbedderSnapshotData* embedder_snapshot_data) {\n- const SnapshotData* snapshot_data =\n- SnapshotData::FromEmbedde...
2024-08-07T21:56:59
golang/go
c8b589e26643f83cf5469e5bcb06af40c10932e2
f9ce1dddc264cb30e68bfedbabf159b32bb6a719
cmd/list: fix -retracted flag description Change-Id: Ia1ab220485af2f38c3ddcd4c5d5bca1b195a33ed GitHub-Last-Rev: fb9933427d852518c93efbc4f2c2e4d4ee9b9197 GitHub-Pull-Request: golang/go#59847 Reviewed-on: https://go-review.googlesource.com/c/go/+/489175 Auto-Submit: Sam Thanawalla <samthanawalla@google.com> LUCI-TryBot-...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1071,8 +1071,8 @@\n //\n // The -retracted flag causes list to report information about retracted\n // module versions. When -retracted is used with -f or -json, the Retracted\n-// field will be set to a string explaining why the version was retracted.\n-// T...
2023-05-29T09:23:27
vercel/next.js
2817a46d48d5a1b5d50644ca4cb3b0dc0c50fab3
7d030a0295d36e649320ae501b609d9eac48bcb6
Turbopack: Split DynamicEqHash trait into smaller traits in a separate re-usable crate (#81741) I originally split this off to support #81742, but I ended up rewriting that PR to not depend on this... However, I think this is still a code quality improvement, so I'm publishing the PR anyways. A few notable changes: ...
[ { "path": "Cargo.lock", "patch": "@@ -9107,6 +9107,10 @@ dependencies = [\n \"utf-8\",\n ]\n \n+[[package]]\n+name = \"turbo-dyn-eq-hash\"\n+version = \"0.0.1\"\n+\n [[package]]\n name = \"turbo-esregex\"\n version = \"0.1.0\"\n@@ -9224,6 +9228,7 @@ dependencies = [\n \"tokio-util\",\n \"tracing\",\n \"...
2025-07-18T00:18:10
electron/electron
b14b876d5001f7adbe0b78f1c2781ca744fe72f3
a8622aed7b6c378b25c39cc025552412dccf2538
docs: fix fiddles (#39060) * refactor: replace Array.prototype.forEach.call with plain for-of * fix: add missing contextIsolation: false * fix: open links in default browser
[ { "path": "docs/fiddles/media/screenshot/take-screenshot/main.js", "patch": "@@ -12,6 +12,7 @@ function createWindow () {\n height: 300,\n title: 'Take a Screenshot',\n webPreferences: {\n+ contextIsolation: false,\n nodeIntegration: true\n }\n }", "additions": 1, "delet...
2023-07-13T08:10:37
nodejs/node
7327e44a05506e108b075ff15dc0ee50a6751eec
e0634f58aba6a1634fe03107d5be849fd008cc02
doc: sort versions to fix the linter error PR-URL: https://github.com/nodejs/node/pull/54229 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "doc/api/test.md", "patch": "@@ -3214,8 +3214,8 @@ test('top level test', (t) => {\n \n <!-- YAML\n added:\n- - v20.16.0\n - v22.6.0\n+ - v20.16.0\n -->\n \n The absolute path of the test file that created the current test. If a test file", "additions": 1, "deletions": 1, "language...
2024-08-06T21:56:00
golang/go
eb55b985a1b75bd796883a7a22dd41e76f0a45ba
3f3782feed6e0726ddb08afd32dad7d94fbb38c6
cmd/dist: add "devel" substring check to isRelease computation Non-release versions that are built from source without a VERSION file specifying any particular version end up with a development version like "devel go1.25-67e0681aef Thu Apr 24 12:17:27 2025 -0700". Right now those versions are correctly determined to b...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -274,7 +274,8 @@ func xinit() {\n \ttooldir = pathf(\"%s/pkg/tool/%s_%s\", goroot, gohostos, gohostarch)\n \n \tgoversion := findgoversion()\n-\tisRelease = strings.HasPrefix(goversion, \"release.\") || strings.HasPrefix(goversion, \"go\")\n+\tisRelease = (str...
2025-04-24T21:07:04
vercel/next.js
7d030a0295d36e649320ae501b609d9eac48bcb6
cf1b7194a882b07f2e59021fedb6fbed44ac8f4c
[devtool] copy decoded info of error details (#81735) Change the copy button's content from the original error stack trace to a prompt template with error details from the error page and ask AI to fix it. You can copy it for either bug reporting or asking AI agent to explain/fix the errors for you. ### Example cont...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/copy-button/index.tsx", "patch": "@@ -133,20 +133,35 @@ function useCopyModern(content: string) {\n const useCopy =\n typeof React.useActionState === 'function' ? useCopyModern : useCopyLegacy\n \n-export function CopyButton({\n- actionLab...
2025-07-18T00:17:09
electron/electron
da3475998f154c19d3102c26fec175b9dd4eecec
9d1a16b2e62cf5838ecd1aeaf195952bb0a83f47
fix: `BrowserWindow.moveAbove()` not working for child windows (#39034) fix: BrowserWindow.moveAbove() not working for child windows
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -162,6 +162,47 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n [self setFrame:[[self superview] bounds]];\n }\n \n+// -[NSWindow orderWindow] does not handle reordering for children\n+// windows. Their order is fixed to the attachment...
2023-07-12T15:42:24
nodejs/node
78150f3e9ccf9c090a42497a3d556c8edebf2be4
e2c62203ccd44bbc22bf7f1945fa39b54a5fac7f
lib: fix unhandled errors in webstream adapters WebStream's Readable controller does not tolerate `.close()` being called after an `error`. However, when wrapping a Node's Readable stream it is possible that the sequence of events leads to `finished()`'s callback being invoked after such `error`. In order to handle t...
[ { "path": "lib/internal/webstreams/adapters.js", "patch": "@@ -459,6 +459,7 @@ function newReadableStreamFromStreamReadable(streamReadable, options = kEmptyObj\n const strategy = evaluateStrategyOrFallback(options?.strategy);\n \n let controller;\n+ let wasCanceled = false;\n \n function onData(chunk...
2024-08-06T18:34:35
golang/go
da64b60c7eea880ccdeda2dfdf1b9af9a4a6fcc7
67e0681aef41cfd9794d3f7819450acd08a67905
runtime: fix typo in comment Change-Id: I85f518e36c18f4f0eda8b167750b43cd8c48ecff Reviewed-on: https://go-review.googlesource.com/c/go/+/622675 Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Austin Clements <austin@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserv...
[ { "path": "src/runtime/mheap.go", "patch": "@@ -431,12 +431,12 @@ type mspan struct {\n \t// indicating a free object. freeindex is then adjusted so that subsequent scans begin\n \t// just past the newly discovered free object.\n \t//\n-\t// If freeindex == nelem, this span has no free objects.\n+\t// If fr...
2024-10-25T15:46:35
facebook/react
c11b196ae3e2e3c5d143d9102b35a6b6fa97c849
966d17483c2a628fda36794bc193c7ad2c3124eb
Move tail hydration mismatch back to hydration context (#28501) In #23176 we added a special case in completeWork for SuspenseBoundaries if they still have trailing children. However, that misses a case because it doesn't log a recoverable error for the hydration mismatch. So we get an error that we rerendered. ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js", "patch": "@@ -538,6 +538,7 @@ describe('ReactDOMServerPartialHydration', () => {\n assertLog([\n 'Server rendered',\n 'Client rendered',\n+ 'Hydration failed because the initial UI does not mat...
2024-03-06T01:54:24
rust-lang/rust
dd1b72a0d8eacf5f774b0fcb34d86d772892a748
30bd49283c4e8f50182de032f05c7b0a0395b70d
Fix typos and grammar in documentation - Readme.md: add missing "you" ("If don't" → "If you don't") - Readme.md: fix wrong preposition ("without this backend" → "with this backend") - Readme.md: fix double space - doc/errors.md: fix transposed letters ("libgccijt" → "libgccjit") - doc/debugging.md: remove extra word (...
[ { "path": "Readme.md", "patch": "@@ -45,12 +45,12 @@ The default configuration (see below in the [Quick start](#quick-start) section)\n ./y.sh test --release\n ```\n \n-If don't need to test GCC patches you wrote in our GCC fork, then the default configuration should\n+If you don't need to test GCC pa...
2026-02-10T15:50:57
electron/electron
b142fce229c5821083ad6b7c9aa6aa5790032127
f959fb0c963701c40f309eb8256530f788d5851e
fix: `protocol.handle` not intercepting file protocol (#39048) fix: protocol.handle not intercepting file protocol
[ { "path": "lib/browser/api/protocol.ts", "patch": "@@ -9,7 +9,7 @@ const { registerSchemesAsPrivileged, getStandardSchemes, Protocol } = process._l\n const ERR_FAILED = -2;\n const ERR_UNEXPECTED = -9;\n \n-const isBuiltInScheme = (scheme: string) => scheme === 'http' || scheme === 'https';\n+const isBuiltI...
2023-07-12T09:42:49
golang/go
67e0681aef41cfd9794d3f7819450acd08a67905
3672a09a48464d18d0c669cc3590d13091a2e77a
cmd/compile: put constant value on node inside parentheses That's where the unified IR writer expects it. Fixes #73476 Change-Id: Ic22bd8dee5be5991e6d126ae3f6eccb2acdc0b19 Reviewed-on: https://go-review.googlesource.com/c/go/+/667415 Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <gol...
[ { "path": "src/cmd/compile/internal/types2/range.go", "patch": "@@ -37,6 +37,16 @@ func (check *Checker) rangeStmt(inner stmtContext, rangeStmt *syntax.ForStmt, no\n \n \tif isTypes2 && x.mode != invalid && sValue == nil && !check.hasCallOrRecv {\n \t\tif t, ok := arrayPtrDeref(under(x.typ)).(*Array); ok {\...
2025-04-22T22:14:17
nodejs/node
3660ad5c9234c6db7df2f7d75cb6712730338d78
54119757a39a9f51cc58a936d74f001177b247d7
2024-08-06, Version 22.6.0 (Current) Notable changes: deps: * (SEMVER-MINOR) V8: backport 7857eb34db42 (Stephen Belanger) https://github.com/nodejs/node/pull/53997 http: * (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) https://github.com/nodejs/node/pull/54054 inspector: * (SEMV...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,7 +38,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.1\">22.5.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.6.0\">22.6.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.1\">2...
2024-07-30T13:11:29
facebook/react
22ea72d4e909e607d79bca8b46f09ded00153e06
f5d99baf8e64530473fac5fe0dd2bd489f3bf8fc
Allow global mutation within useEffect (#2646) Summary: Currently Forget bails on mutations to globals within any callback function. However, callbacks passed to useEffect should not bail and are not subject to the rules of react in the same way. We allow this by instead of immediately raising errors when we see il...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -165,6 +165,12 @@ export class CompilerError extends Error {\n throw errors;\n }\n \n+ static throw(options: CompilerErrorDetailOptions): never {\n+ const errors = new CompilerError();\n+ errors.pushError...
2024-03-05T19:54:29
electron/electron
905e41bbddd72f4d19c294b430d1a7c282e22a5d
3e3152008ff569632e0b36d53ac9a24fae515709
fix: use StartUpdating method for PipeWire capturer (#38833) * fix: use StartUpdating method for PipeWire capturer Fixed a crash related to PipeWire capturer by adapting to Chromium's interface changes. Chromium expects a call to `NativeDesktopMediaList::StartUpdating` with an implementation of `DesktopMediaList...
[ { "path": "patches/chromium/desktop_media_list.patch", "patch": "@@ -82,7 +82,7 @@ index 33ca7a53dfb6d2c9e3a33f0065a3acd806e82e01..9fdf2e8ff0056ff407015b914c6b03eb\n const Source& GetSource(int index) const override;\n DesktopMediaList::Type GetMediaListType() const override;\n diff --git a/chrome/bro...
2023-07-11T08:21:11
nodejs/node
c852e222cb4c9bba4f81d290d3ccfc671b525938
5bfebfec88090476064d367b9185fe4a249d6a76
path: fix relative on Windows PR-URL: https://github.com/nodejs/node/pull/53991 Fixes: https://github.com/nodejs/node/issues/27534 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "benchmark/path/relative-win32.js", "patch": "@@ -9,6 +9,7 @@ const bench = common.createBenchmark(main, {\n ['C:\\\\foo\\\\bar\\\\baz', 'C:\\\\foo\\\\bar\\\\baz'].join('|'),\n ['C:\\\\foo\\\\BAR\\\\BAZ', 'C:\\\\foo\\\\bar\\\\baz'].join('|'),\n ['C:\\\\foo\\\\bar\\\\baz\\\\quux', 'C:\\...
2024-08-06T09:40:23
golang/go
3672a09a48464d18d0c669cc3590d13091a2e77a
3452d80da3cf4f08da0f5905b1aa19cec475936e
runtime/debug: update SetCrashOutput example to not pass parent env vars Fixes #73490 Change-Id: I500fa73f4215c7f490779f53c1c2c0d775f51a95 Reviewed-on: https://go-review.googlesource.com/c/go/+/667775 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam....
[ { "path": "src/runtime/debug/example_monitor_test.go", "patch": "@@ -84,7 +84,10 @@ func monitor() {\n \t\tlog.Fatal(err)\n \t}\n \tcmd := exec.Command(exe, \"-test.run=^ExampleSetCrashOutput_monitor$\")\n-\tcmd.Env = append(os.Environ(), monitorVar+\"=1\")\n+\t// Be selective in which variables we allow th...
2025-04-24T14:38:58
facebook/react
966d17483c2a628fda36794bc193c7ad2c3124eb
e5287287aacd3c51d24e223651b7f38ece584c49
React DevTools 5.0.1 -> 5.0.2 (#28496) * feat[devtools]: symbolicate source for inspected element ([hoxyq](https://github.com/hoxyq) in [#28471](https://github.com/facebook/react/pull/28471)) * refactor[devtools]: lazily define source for fiber based on component stacks ([hoxyq](https://github.com/hoxyq) in [#283...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.0.1\",\n+ \"version\": \"5.0.2\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2024-03-05T14:11:30
electron/electron
3e3152008ff569632e0b36d53ac9a24fae515709
f3f3f5390423207bd2d26e398a565bf2f13dc759
fix: remove types from GTK CSS selectors (#39003) Remove types from GTK CSS selectors similar to Chromium's changes in CL 4289229. Fixes #38786 Co-authored-by: Athul Iddya <athul@iddya.com>
[ { "path": "shell/browser/ui/views/client_frame_view_linux.cc", "patch": "@@ -309,13 +309,13 @@ void ClientFrameViewLinux::PaintAsActiveChanged() {\n \n void ClientFrameViewLinux::UpdateThemeValues() {\n gtk::GtkCssContext window_context =\n- gtk::AppendCssNodeToStyleContext({}, \"GtkWindow#window.bac...
2023-07-10T20:52:12
vercel/next.js
53a92f872236c9fd0208519a6e91e3d3187d8722
a87a0721098e3fb6fbfb9102f7c160917ae72461
Add trigger for v0 sync workflow (#81645) <!-- 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 ### Impr...
[ { "path": ".github/workflows/test_e2e_deploy_release.yml", "patch": "@@ -89,10 +89,20 @@ jobs:\n DD_ENV=ci npx @datadog/datadog-ci@2.23.1 junit upload --tags test.type:deploy --service nextjs ./test/test-junit-report\n fi\n \n- front-sync:\n+ sync-repositories:\n needs: test-depl...
2025-07-17T22:53:03
golang/go
3452d80da3cf4f08da0f5905b1aa19cec475936e
3009566a46f19e9c94df4cf51cc374763698cba0
cmd/compile: add cast in range loop final value computation When replacing a loop where the iteration variable has a named type, we need to compute the last iteration value as i = T(len(a)-1), not just i = len(a)-1. Fixes #73491 Change-Id: Ic1cc3bdf8571a40c10060f929a9db8a888de2b70 Reviewed-on: https://go-review.goog...
[ { "path": "src/cmd/compile/internal/walk/range.go", "patch": "@@ -605,7 +605,7 @@ func arrayClear(wbPos src.XPos, a ir.Node, nrange *ir.RangeStmt) ir.Node {\n \n \t// For array range clear, also set \"i = len(a) - 1\"\n \tif nrange != nil {\n-\t\tidx := ir.NewAssignStmt(base.Pos, nrange.Key, ir.NewBinaryExp...
2025-04-24T15:38:56
nodejs/node
5bfebfec88090476064d367b9185fe4a249d6a76
24ed890663e494c3f5b29ed3533f37aba4393f67
test_runner: make mock_loader not confuse CJS and ESM resolution PR-URL: https://github.com/nodejs/node/pull/53846 Fixes: https://github.com/nodejs/node/issues/53807 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/test/mock_loader.js", "patch": "@@ -23,6 +23,8 @@ let debug = require('internal/util/debuglog').debuglog('test_runner', (fn) => {\n debug = fn;\n });\n const { createRequire, isBuiltin } = require('module');\n+const { defaultGetFormatWithoutErrors } = require('internal/modules/esm/get_forma...
2024-08-06T09:24:24
electron/electron
117a700724074dfc62649e3e561ff284f07e7cae
c7bdd907d7e1fdcb7741de02f5ca23d47a436437
fix: printing optional access crash on Windows (#38976)
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -91,7 +91,7 @@ index 3a66a52b8d3c6da9cd8d7e9afdc8d59f528ec3d5..facaa6fbca8ee7c04f83607e62b81b95\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/...
2023-07-10T13:26:29
facebook/react
e5287287aacd3c51d24e223651b7f38ece584c49
61bd00498d2a6e23885bac42f3aeb0e02cadb8eb
feat[devtools]: symbolicate source for inspected element (#28471) Stacked on https://github.com/facebook/react/pull/28351, please review only the last commit. Top-level description of the approach: 1. Once user selects an element from the tree, frontend asks backend to return the inspected element, this is where...
[ { "path": ".eslintrc.js", "patch": "@@ -455,6 +455,13 @@ module.exports = {\n __IS_CHROME__: 'readonly',\n __IS_FIREFOX__: 'readonly',\n __IS_EDGE__: 'readonly',\n+ __IS_INTERNAL_VERSION__: 'readonly',\n+ },\n+ },\n+ {\n+ files: ['packages/react-devtools-shared...
2024-03-05T12:32:11
golang/go
3009566a46f19e9c94df4cf51cc374763698cba0
8a8f506516e1210c9ca3a352d76bd1d570c407fd
runtime: fix tag pointers on aix Clean up tagged pointers a bit. I got the shifts wrong for the weird aix case. Change-Id: I21449fd5973f4651fd1103d3b8be9c2b9b93a490 Reviewed-on: https://go-review.googlesource.com/c/go/+/667715 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Keith Randall <khr@google.c...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -455,8 +455,8 @@ func mallocinit() {\n \t\tthrow(\"max pointer/scan bitmap size for headerless objects is too large\")\n \t}\n \n-\tif minTagBits > taggedPointerBits {\n-\t\tthrow(\"taggedPointerBits too small\")\n+\tif minTagBits > tagBits {\n+\t\tthrow(\"tag...
2025-04-24T06:23:53
vercel/next.js
a87a0721098e3fb6fbfb9102f7c160917ae72461
65e0b7b7579614b07a53ed24d229064c7e2f869d
fix(turbopack) Adjust the way catchall routes are handled when a more specific parallel route exists (#81634) ## Improve App Router Route Prioritization ### What? Fixed a logic bug where we were failing to correctly identify routes as catchall routes due to treating parallel routes as a completed route path. This sho...
[ { "path": "crates/next-core/src/next_app/mod.rs", "patch": "@@ -257,17 +257,22 @@ impl AppPage {\n matches!(self.0.last(), Some(PageSegment::PageType(..)))\n }\n \n- pub fn is_catchall(&self) -> bool {\n- let segment = if self.is_complete() {\n- // The `PageType` is the last...
2025-07-17T21:22:47
rust-lang/rust
fcb881244ba9b1b807a22999dc33b423ade01674
b1e033649cd6de95e6d045244ca808f11efd86ed
align_strange_enum_discriminant_offset: fix accidentally unused variable
[ { "path": "src/tools/miri/tests/pass/align_strange_enum_discriminant_offset.rs", "patch": "@@ -1,5 +1,4 @@\n-#![allow(unused)]\n-\n+#[allow(unused)]\n #[repr(u16)]\n enum DeviceKind {\n Nil = 0,\n@@ -19,5 +18,5 @@ fn main() {\n let x = None::<(DeviceInfo, u8)>;\n let y = None::<(DeviceInfo, u16)...
2026-02-11T21:43:14
electron/electron
c7bdd907d7e1fdcb7741de02f5ca23d47a436437
56b5c003122562066971c4fb44ab933563bb10db
fix: set prototype names on `gin::Constructible` classes (#39006) * fix: set prototype names on gin::Constructible classes * test: add tests
[ { "path": "shell/browser/api/electron_api_browser_view.cc", "patch": "@@ -198,7 +198,7 @@ v8::Local<v8::Value> BrowserView::GetWebContents(v8::Isolate* isolate) {\n // static\n void BrowserView::FillObjectTemplate(v8::Isolate* isolate,\n v8::Local<v8::ObjectTemplate> tem...
2023-07-10T09:49:20
facebook/react
61bd00498d2a6e23885bac42f3aeb0e02cadb8eb
aa4eae6b99a6081afabf180d02fa0a8b0cb1b3ab
refactor[devtools]: lazily define source for fiber based on component stacks (#28351) `_debugSource` was removed in https://github.com/facebook/react/pull/28265. This PR migrates DevTools to define `source` for Fiber based on component stacks. This will be done lazily for inspected elements, once user clicks on ...
[ { "path": "packages/react-devtools-core/src/standalone.js", "patch": "@@ -144,7 +144,7 @@ function canViewElementSourceFunction(\n \n const {source} = inspectedElement;\n \n- return doesFilePathExist(source.fileName, projectRoots);\n+ return doesFilePathExist(source.sourceURL, projectRoots);\n }\n \n fu...
2024-03-05T12:10:36
vercel/next.js
65e0b7b7579614b07a53ed24d229064c7e2f869d
8a4abf7dc3b378bf9795c122b270534cae598357
bugfix: static resources staleTime should be renewed once refetched (#81771) When the `x-nextjs-staletime` header is sent from the server, the client router was discarding all of its staleTime heuristics (such as lastUsedTime and "reusable" cache entries). This caused an issue where after the static staleTime window e...
[ { "path": "packages/next/src/client/components/router-reducer/prefetch-cache-utils.ts", "patch": "@@ -404,22 +404,7 @@ function getPrefetchEntryCacheStatus({\n kind,\n prefetchTime,\n lastUsedTime,\n- staleTime,\n }: PrefetchCacheEntry): PrefetchCacheEntryStatus {\n- if (staleTime !== -1) {\n- //...
2025-07-17T20:31:55
nodejs/node
24ed890663e494c3f5b29ed3533f37aba4393f67
1f69085db557d92edece566b5c8d7984bf473af0
doc: fix sea assets example PR-URL: https://github.com/nodejs/node/pull/54192 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/single-executable-applications.md", "patch": "@@ -219,7 +219,7 @@ executable, users can retrieve the assets using the [`sea.getAsset()`][] and\n The single-executable application can access the assets as follows:\n \n ```cjs\n-const { getAsset } = require('node:sea');\n+const { getAsset, ...
2024-08-06T08:24:23
golang/go
8a8f506516e1210c9ca3a352d76bd1d570c407fd
c1fc209c41c18806b7cef1cf114f1ca9b3731eb9
os,internal/poll: disassociate handle from IOCP in File.Fd Go 1.25 will gain support for overlapped IO on handles passed to os.NewFile thanks to CL 662236. It was previously not possible to add an overlapped handle to the Go runtime's IO completion port (IOCP), and now happens on the first call the an IO method. This...
[ { "path": "src/internal/poll/fd_plan9.go", "patch": "@@ -36,10 +36,6 @@ type FD struct {\n \tisFile bool\n }\n \n-func (fd *FD) initIO() error {\n-\treturn nil\n-}\n-\n // We need this to close out a file descriptor when it is unlocked,\n // but the real implementation has to live in the net package because...
2025-04-10T15:45:47
facebook/react
aa4eae6b99a6081afabf180d02fa0a8b0cb1b3ab
0ae2b13412e0e4cf10a799ec645035213834556c
fix[devtools/tree/element]: onClick -> onMouseDown to handle first click correctly (#28486) There is a weird behaviour in all shells of RDT: when user opens `Components` tab and scrolls down a tree (without any prior click or focus event), and then clicks on some element, the `click` event will not be fired. Becaus...
[ { "path": "packages/react-devtools-inline/__tests__/__e2e__/devtools-utils.js", "patch": "@@ -37,7 +37,10 @@ async function selectElement(page, displayName, waitForOwnersText) {\n createTestNameSelector('ComponentTreeListItem'),\n createTextSelector(listItemText),\n ])[0];\n- listItem.cli...
2024-03-05T11:42:10
vercel/next.js
5b998d69553df2f96c0dc398d8e483a6cc7c387f
cff812b4d02764961571069818e172053984003f
fix: revert client segment route changes for sub shell generation (#81740) ### What? Implements a new sortable routes system that distinguishes between source pages and rendered pages for sub-shell generation. ### Why? The existing route sorting logic in Next.js doesn't account for the distinction between the origi...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -81,11 +81,7 @@ import {\n DYNAMIC_CSS_MANIFEST,\n TURBOPACK_CLIENT_MIDDLEWARE_MANIFEST,\n } from '../shared/lib/constants'\n-import {\n- getSortedRoutes,\n- isDynamicRoute,\n- getSortedRouteObjects,\n-} from '../shared/lib/router/utils'\n+im...
2025-07-17T19:23:46
nodejs/node
1f69085db557d92edece566b5c8d7984bf473af0
2b41c237c03e8223f4189c0159456024704ca573
test: set test-structuredclone-jstransferable non-flaky Fixes: https://github.com/nodejs/node/issues/50260 PR-URL: https://github.com/nodejs/node/pull/54115 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "test/pummel/pummel.status", "patch": "@@ -9,8 +9,6 @@ prefix pummel\n [$system==win32]\n # https://github.com/nodejs/node/issues/40728\n test-fs-watch-non-recursive: PASS,FLAKY\n-# https://github.com/nodejs/node/issues/50260\n-test-structuredclone-jstransferable: PASS,FLAKY\n \n [$system==macos]\...
2024-08-06T08:24:15
golang/go
c1fc209c41c18806b7cef1cf114f1ca9b3731eb9
9d0320de2574586f3b0610c1b5fd15b8f9c85dec
runtime: use precise bounds of Go data/bss for race detector We only want to call into the race detector for Go global variables. By rounding up the region bounds, we can include some C globals. Even worse, we can include only *part* of a C global, leading to race{read,write}range calls which straddle the end of shado...
[ { "path": "src/runtime/race.go", "patch": "@@ -455,7 +455,6 @@ func raceinit() (gctx, pctx uintptr) {\n \n \tracecall(&__tsan_init, uintptr(unsafe.Pointer(&gctx)), uintptr(unsafe.Pointer(&pctx)), abi.FuncPCABI0(racecallbackthunk), 0)\n \n-\t// Round data segment to page boundaries, because it's used in mmap...
2025-04-23T21:15:51
vercel/next.js
cff812b4d02764961571069818e172053984003f
a093d32d3e6f90d5afd3ac7d0dd1e4c6267f505c
Turbopack: include more details in panic (#81773) <!-- 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 ...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -2430,7 +2430,10 @@ impl CodeGenResultComments {\n } else if old_high_bits == 0 {\n false\n } else {\n- panic!(\"The high bits of the position {pos} are not all 0s or 1s: {old_high_bits:b}\",);\...
2025-07-17T19:21:12