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
golang/go
71c2bf551303930faa32886446910fa5bd0a701a
c74399e7f5e763e6c25978d090122a0a73a695ee
cmd/compile: fix loclist for heap return vars without optimizations When compiling without optimizations certain variables such as return params end up missing location lists. Fixes #65405 Change-Id: Id4ec6b1ab6681fd77b8fefb47a4ec05060c128ef GitHub-Last-Rev: 5ab6a5398162119dd0cd5325f4239b4559b030bd GitHub-Pull-Reque...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -248,11 +248,6 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t\tif n.Class == ir.PPARAM || n.Class == ir.PPARAMOUT {\n \t\t\ttag = dwarf.DW_TAG_formal_parameter\n \t\t}\n-\t\tif n.Esc() == ir.EscHea...
2025-07-22T22:05:06
facebook/react
2243b40abad449fe90a9af10f592d0c5c52591d5
dfc64c6e31586f63703b81284b69b4ee5be82e5b
[tests] assertLog before act in useEffectEvent (#28763) Fixes tests blocking https://github.com/facebook/react/pull/28737
[ { "path": "packages/react-reconciler/src/__tests__/useEffectEvent-test.js", "patch": "@@ -742,7 +742,7 @@ describe('useEffectEvent', () => {\n await act(() =>\n ReactNoop.render(<ChatRoom roomId=\"general\" theme=\"light\" />),\n );\n- await act(() => jest.runAllTimers());\n+\n assertLo...
2024-04-10T14:34:34
vercel/next.js
17d80397814086029b8b22269dd7f5dda9eca4f2
90c5a66bfaaa0391d9d6734dedc1459792e0281b
Turbopack: Remove 20ms overhead on bootup (#83554) ## What? This fetch, even though not awaited, was kicked off eagerly and the first `fetch()` in Node.js loads the SSL certificate store which takes roughly 20ms. Made sure that it's only fetched when the version is needed, which is the first time errors happen, and t...
[ { "path": "packages/next/src/server/dev/hot-reloader-turbopack.ts", "patch": "@@ -690,7 +690,17 @@ export async function createHotReloaderTurbopack(\n }),\n ]\n \n- const versionInfoPromise = getVersionInfo()\n+ let versionInfoCached: ReturnType<typeof getVersionInfo> | undefined\n+ // This fetch, ...
2025-09-08T14:47:30
rust-lang/rust
fd20f16ffcfc9d19ae191ebef7dbc9469ad1d1c6
0376d43d443cba463a0b6a6ec9140ea17d7b7130
Always check compile_flags for revision Previously, `self.props.compile_flags.windows(2)` would return an empty iterator in the case where `self.props.compile_flags` was 1 or 0 length. This created incorrectness where tests like `tests/mir-opt/pre-codegen/copy_and_clone.rs` would pass when they should fail.
[ { "path": "src/tools/compiletest/src/runtest.rs", "patch": "@@ -504,12 +504,10 @@ impl<'test> TestCx<'test> {\n let normalized_revision = normalize_revision(revision);\n let cfg_arg = [\"--cfg\", &normalized_revision];\n let arg = format!(\"--cfg={normalized_revision}\");...
2026-02-20T21:12:31
golang/go
c74399e7f5e763e6c25978d090122a0a73a695ee
4ed9943b264170b11af375f9cc82807516578c77
net: correct comment for ListenConfig.ListenPacket Fixes #74634 Change-Id: I21196c4aef1b717bfda0b54e61b35e83cfa9dc1b Reviewed-on: https://go-review.googlesource.com/c/go/+/689075 Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "src/net/dial.go", "patch": "@@ -837,7 +837,7 @@ func (lc *ListenConfig) Listen(ctx context.Context, network, address string) (Li\n // parameters.\n //\n // The ctx argument is used while resolving the address on which to listen;\n-// it does not affect the returned Listener.\n+// it does not affe...
2025-07-20T23:20:11
facebook/react
dfc64c6e31586f63703b81284b69b4ee5be82e5b
b02199d322c3876f213dc9bba815acaa839609fd
[tests] assertLog before act in ReactUse (#28762) Fixes tests blocking https://github.com/facebook/react/pull/28737
[ { "path": "packages/react-reconciler/src/__tests__/ReactUse-test.js", "patch": "@@ -663,6 +663,8 @@ describe('ReactUse', () => {\n }\n \n const root1 = ReactNoop.createRoot();\n+ assertLog(['Async text requested [Hi]']);\n+\n await act(() => {\n root1.render(<Suspense fallback={<Text te...
2024-04-10T14:34:27
electron/electron
04df5ce492f61fd67912fc8bc0cd6a064618f231
13e601e35c43ad640fbe2bfea57e9a054f1dca4c
chore: bump chromium to 124.0.6323.0 (main) (#41412) * chore: bump chromium in DEPS to 124.0.6315.0 * chore: update patches * 5279678: Stream AIDA responses https://chromium-review.googlesource.com/c/chromium/src/+/5279678 * 5276439: Remove non_network_url_loader_factory_remotes_ https://chromium-review...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '123.0.6312.5',\n+ '124.0.6323.0',\n 'node_version':\n 'v20.11.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "docs/a...
2024-02-29T09:31:13
vercel/next.js
646c9ab4471e07da82d3c0d1b9a08e235bf07ddc
d165670ed1656f86b239ccf44988c880007a915d
Disable React debug channel by default (#83552) While dogfooding the debug channel in internal applications, we found bugs (most likely in React) that trigger runtime errors, when the debug channel is used to transport debug information. Those need to be investigated and fixed first, before we can enable the feature b...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -852,8 +852,6 @@ export interface ExperimentalConfig {\n /**\n * When enabled, in dev mode, Next.js will send React's debug info through the\n * WebSocket connection, instead of including it in the main RSC payload.\n- *\n- * @d...
2025-09-08T09:49:14
golang/go
d5ec0815e69175d93bb741e9bb0a55b919facc6d
f7cc61e7d7f77521e073137c6045ba73f66ef902
runtime: relax TestMemoryLimitNoGCPercent a bit It seems to be pretty flaky. I've seen: retained=289438024 limit=268435456 bound=285212672 Which is ~4MB over the bound. Not sure why this tends to be darwin-specific, but we'll fix just darwin for now. (It isn't quite darwin-only, as it appeared in #66893. But ...
[ { "path": "src/runtime/testdata/testprog/gc.go", "patch": "@@ -395,6 +395,9 @@ func gcMemoryLimit(gcPercent int) {\n \t\t// somewhat heavily here) this bound is kept loose. In practice the Go runtime\n \t\t// should do considerably better than this bound.\n \t\tbound := int64(myLimit + 16<<20)\n+\t\tif runt...
2025-07-21T20:37:27
facebook/react
b02199d322c3876f213dc9bba815acaa839609fd
6e1e2f2198b9c1f9259417cb569d92206ccf55f5
[tests] assertLog before act in ReactErrorBoundaries (#28761) Fixes tests blocking https://github.com/facebook/react/pull/28737
[ { "path": "packages/react-dom/src/__tests__/ReactErrorBoundaries-test.internal.js", "patch": "@@ -584,6 +584,7 @@ describe('ReactErrorBoundaries', () => {\n });\n }).rejects.toThrow('Hello');\n \n+ Scheduler.unstable_clearLog();\n container = document.createElement('div');\n root = Reac...
2024-04-10T14:34:19
electron/electron
a6133e85d19d5f87ba12ec42bdbeca7061762aee
267c0796dd779aa443d7d17f2eae23972bd7d083
test: disable flaky macOS panel test & refactor screen capture testing (#41441) * Disable flaky test * Add helper for storing test artifacts * Refactor screen capture tests We have a pattern for inspecting a screen capture, so this refactor codifies that pattern into a helper. This gives us shorter test code,...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -1642,6 +1642,8 @@ commands:\n fi\n - store_test_results:\n path: src/junit\n+ - store_artifacts:\n+ path: src/electron/spec/artifacts\n \n - *step-verify-mksnapshot\n - *step-verify-chromedriver", ...
2024-02-28T03:54:20
nodejs/node
743eacc48f778345c6289f9d6cc581e631a0d19e
203398dd18c6fcda92a10644ac1abf00f3cf9df2
test: fix test-abortsignal-drop-settled-signals flakiness PR-URL: https://github.com/nodejs/node/pull/56197 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By:...
[ { "path": "test/parallel/test-abortsignal-drop-settled-signals.mjs", "patch": "@@ -1,6 +1,7 @@\n // Flags: --expose_gc\n //\n import '../common/index.mjs';\n+import { gcUntil } from '../common/gc.js';\n import { describe, it } from 'node:test';\n \n function makeSubsequentCalls(limit, done, holdReferences =...
2024-12-12T18:34:28
vercel/next.js
d165670ed1656f86b239ccf44988c880007a915d
85a2a029bcffe64aacf5c5872db43b70d8c660f9
feat: use Node.js native TS resolver for `next.config.ts` (#83240) ### Why? Since `next.config.ts` was resolved via require-hook, it had a restriction with Native ESM syntax, like top-level await, dynamic import, and Node.js ESM APIs like `import.meta.url`. There were previous attempts to resolve this via the ESM loa...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -521,6 +521,50 @@ jobs:\n \n secrets: inherit\n \n+ # TODO: Remove this once we bump minimum Node.js version to v22\n+ test-next-config-ts-native-ts-dev:\n+ name: test next-config-ts-native-ts dev\n+ needs: ['changes', 'build-next', ...
2025-09-08T08:56:12
facebook/react
6e1e2f2198b9c1f9259417cb569d92206ccf55f5
88df5242d6f8e319d7903f6fa984e3a02cd44b34
[tests] assertLog before act in ReactUpdates (#28760) Fixes tests blocking https://github.com/facebook/react/pull/28737
[ { "path": "packages/react-dom/src/__tests__/ReactUpdates-test.js", "patch": "@@ -1900,6 +1900,8 @@ describe('ReactUpdates', () => {\n await act(() => {\n root.render(<Terminating />);\n });\n+\n+ assertLog(Array.from({length: LIMIT + 1}, (_, k) => k));\n expect(container.textC...
2024-04-10T14:34:11
golang/go
f7cc61e7d7f77521e073137c6045ba73f66ef902
5dac42363ba8281a3f4f08e03af2292b763adc38
cmd/compile: for arm64 epilog, do SP increment with a single instruction That way, the frame is atomically popped. Previously, for big frames the SP was unwound in two steps (because arm64 can only add constants up to 1<<12 in a single instruction). Fixes #73259 Change-Id: I382c249194ad7bc9fc19607c27487c58d90d49e5 R...
[ { "path": "src/cmd/internal/obj/arm64/obj7.go", "patch": "@@ -907,18 +907,49 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\tp.To.Reg = REGFP\n \t\t\t\tp.To.Offset = REGLINK\n \n-\t\t\t\t// ADD $aoffset, RSP, RSP\n-\t\t\t\tq = newprog()\n-\t\t\t\tq.As = AADD\n-\t\t\t\...
2025-07-21T17:09:35
electron/electron
b468b5e6e883a39ceaba6417ed8be1ece6ee281f
d89ad1106f3dd45dc8c2ed9e0de9336ee7706348
build: print error and retry on symstore fail (#41452)
[ { "path": "script/release/uploaders/upload-symbols.py", "patch": "@@ -80,8 +80,14 @@ def main():\n \n \n def run_symstore(pdb, dest, product):\n- execute(['symstore', 'add', '/r', '/f', pdb, '/s', dest, '/t', product])\n-\n+ for attempt in range(2):\n+ try:\n+ execute(['symstore', 'add', '/r', '/f...
2024-02-27T23:40:42
nodejs/node
203398dd18c6fcda92a10644ac1abf00f3cf9df2
a963b5e9f3f7b28751a13afbcab495d4f781969e
build: fix C string encoding for `PRODUCT_DIR_ABS` Since the `PRODUCT_DIR_ABS` gyp variable is meant to be used in a C string in the OpenSSL config, provide a version of it that actually provides it in a way that is always usable as a C string. Otherwise, unescaped characters in the path can mess with the string defin...
[ { "path": "deps/openssl/openssl.gyp", "patch": "@@ -5,19 +5,13 @@\n 'nasm_version%': '0.0',\n 'openssl-cli': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)openssl-cli<(EXECUTABLE_SUFFIX)',\n 'conditions': [\n- ['OS == \"win\"', {\n- 'obj_dir_abs': '<(PRODUCT_DIR_ABS)/obj',\n- }],\n ...
2024-12-02T13:23:49
vercel/next.js
85a2a029bcffe64aacf5c5872db43b70d8c660f9
21085310c39e9fa10a3e9f8d798bb9de52747830
Fix/msw-issue-68521 (#83482) ### Fix: [68521](https://github.com/vercel/next.js/issues/68521) Updating outdated with-msw example The [with-msw](https://github.com/vercel/next.js/tree/canary/examples/with-msw) is outdated and doesn't work with the latest msw version. ### What? The [with-msw](https://github.com/vercel/...
[ { "path": "examples/with-msw/mocks/browser.ts", "patch": "@@ -1,4 +1,4 @@\n-import { setupWorker } from \"msw\";\n+import { setupWorker } from \"msw/browser\";\n import { handlers } from \"./handlers\";\n \n export const worker = setupWorker(...handlers);", "additions": 1, "deletions": 1, "langu...
2025-09-08T07:11:34
facebook/react
88df5242d6f8e319d7903f6fa984e3a02cd44b34
e36ee763faf9f273f162ad3292b36382834bdf30
[tests] assertLog before act in ReactDOMServerSelectiveHydration (#28759) Fixes tests blocking https://github.com/facebook/react/pull/28737
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerSelectiveHydration-test.internal.js", "patch": "@@ -1114,14 +1114,16 @@ describe('ReactDOMServerSelectiveHydration', () => {\n // Outer was hydrated earlier\n OuterTestUtils.assertLog([]);\n \n+ // First Inner Mouse Enter fires then ...
2024-04-10T14:34:02
electron/electron
3394ee71f008d4655dde3acf883d6c89b994b218
12d7a8ff6605cca218e3e0a507de9a8f530c2abd
chore: fix import from patches.py in script/lib/git.py (#41430)
[ { "path": "script/lib/git.py", "patch": "@@ -13,7 +13,10 @@\n import subprocess\n import sys\n \n-from .patches import PATCH_FILENAME_PREFIX, is_patch_location_line\n+SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))\n+sys.path.append(SCRIPT_DIR)\n+\n+from patches import PATCH_FILENAME_PREFIX, is_patc...
2024-02-26T02:36:30
nodejs/node
e5524eaefae48034e4c8cc1a960fd65df4d03161
7a40aa75a58047076da80ae16955c89cdf58de78
sqlite: add support for custom functions This commit adds support to node:sqlite for defining custom functions that can be invoked from SQL. Fixes: https://github.com/nodejs/node/issues/54349 PR-URL: https://github.com/nodejs/node/pull/55985 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: James M S...
[ { "path": "doc/api/sqlite.md", "patch": "@@ -160,6 +160,31 @@ This method allows one or more SQL statements to be executed without returning\n any results. This method is useful when executing SQL statements read from a\n file. This method is a wrapper around [`sqlite3_exec()`][].\n \n+### `database.functio...
2024-12-12T16:48:12
facebook/react
e36ee763faf9f273f162ad3292b36382834bdf30
42eff4bc78a3636953c55096ca0b220c611a74cc
[tests] assertLog before act in ReactCompositeComponentState (#28758) Fixes tests blocking https://github.com/facebook/react/pull/28737
[ { "path": "packages/react-dom/src/__tests__/ReactCompositeComponentState-test.js", "patch": "@@ -152,21 +152,6 @@ describe('ReactCompositeComponent-state', () => {\n root.render(<TestComponent />);\n });\n \n- await act(() => {\n- root.render(<TestComponent nextColor=\"green\" />);\n- }...
2024-04-10T14:33:51
golang/go
f0e9dc09752cc2f03fcedff458660ab2276bcf8d
03a3887f31264e778c9aaf62247a478eedd3633d
[dev.simd] cmd/compile: fix opLen(2|3)Imm8_2I intrinsic function This function reads the const from the wrong arg, this CL fixes it. Change-Id: Icd38977a35f0df9064efb290fa6390453d6b9e5b Reviewed-on: https://go-review.googlesource.com/c/go/+/688595 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go L...
[ { "path": "src/cmd/compile/internal/ssagen/intrinsics.go", "patch": "@@ -1722,7 +1722,7 @@ func opLen3Imm8(op ssa.Op, t *types.Type, offset int) func(s *state, n *ir.CallE\n \n func opLen2Imm8_2I(op ssa.Op, t *types.Type, offset int) func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {\n \treturn ...
2025-07-17T22:23:15
vercel/next.js
f9f3afc66418f3cc6b206ee50b632f9dd4128dd5
3ef17684e75bfed780f178022a3e9267879c0385
fix: route handlers should validate invalid exports (#83500) When using an unsupported API in a route handler (eg, `export const dynamic` with `cacheComponents` enabled), we were not erroring in dev or failing the build. This is because the transform only asserted on pages & layouts, and not route handlers. This upda...
[ { "path": "crates/next-custom-transforms/src/transforms/react_server_components.rs", "patch": "@@ -805,10 +805,10 @@ impl ReactServerComponentValidator {\n return;\n }\n static RE: Lazy<Regex> =\n- Lazy::new(|| Regex::new(r\"[\\\\/](page|layout)\\.(ts|js)x?$\").unwrap(...
2025-09-06T14:38:49
electron/electron
26131b23b81a661fb65d37437b9a1f63b4408fae
136762b45ff371d1dcfbc4c8ec730aa395ea5da2
feat: add support for configuring system network context proxies (#41335) * feat: add support for configuring system network context proxies * chore: add specs * chore: fix lint * fix: address review feedback
[ { "path": "docs/api/app.md", "patch": "@@ -1468,6 +1468,24 @@ details.\n \n **Note:** Enable `Secure Keyboard Entry` only when it is needed and disable it when it is no longer needed.\n \n+### `app.setProxy(config)`\n+\n+* `config` [ProxyConfig](structures/proxy-config.md)\n+\n+Returns `Promise<void>` - Res...
2024-02-22T17:08:25
facebook/react
42eff4bc78a3636953c55096ca0b220c611a74cc
ed3c65caf042f75fe2fdc2a5e568a9624c6175fb
[tests] Fix assertions not flushed before act (#28745) Fixes some easy cases blocking https://github.com/facebook/react/pull/28737, I'll follow up with more complex/interesting cases in other PRs.
[ { "path": "packages/react-dom/src/__tests__/ReactCompositeComponent-test.js", "patch": "@@ -913,15 +913,13 @@ describe('ReactCompositeComponent', () => {\n await act(() => {\n root.render(<Wrapper name=\"A\" />);\n });\n+\n+ assertLog(['A componentWillMount', 'A render', 'A componentDidMoun...
2024-04-10T14:33:41
golang/go
5dac42363ba8281a3f4f08e03af2292b763adc38
e5502e0959bb54ec70ca500e8d2b6f5ac5efbc53
runtime: fix asan wrapper for riscv64 Make sure we keep the M in X21. The instruction at line 87 needs to be loading from the M, not from the gsignal. Fixes #73979, maybe? Change-Id: I3aba1c35454636138b305bca26e20dbc8e6b1d6e Reviewed-on: https://go-review.googlesource.com/c/go/+/688975 Reviewed-by: Joel Sing <joel@s...
[ { "path": "src/runtime/asan_riscv64.s", "patch": "@@ -81,13 +81,13 @@ TEXT\tasancall<>(SB), NOSPLIT, $0-0\n \tMOV\tg_m(g), X21\n \n \t// Switch to g0 stack if we aren't already on g0 or gsignal.\n-\tMOV\tm_gsignal(X21), X21\n-\tBEQ\tX21, g, call\n+\tMOV\tm_gsignal(X21), X22\n+\tBEQ\tX22, g, call\n \n-\tMOV\...
2025-07-19T16:34:04
nodejs/node
37766dcad8b962b1af05daab7612a43a06e4ce24
55413004c8ab489a03793b80c20d2ec6552668c0
tools: fix release proposal linter to support more than 1 folk preparing PR-URL: https://github.com/nodejs/node/pull/56203 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.c...
[ { "path": ".github/workflows/lint-release-proposal.yml", "patch": "@@ -43,7 +43,7 @@ jobs:\n PR_HEAD=\"$(gh pr view \"$PR_URL\" --json headRefOid -q .headRefOid)\"\n echo \"Head of $PR_URL: $PR_HEAD\"\n echo \"Current commit: $GITHUB_SHA\"\n- [[ \"$PR_HEAD\" == \"$GITH...
2024-12-12T10:43:18
electron/electron
ddd93529d59002288699c5fc16be4843265e7f89
e72f4f7f267fffb95aa62841c662fe2746775871
fix: use ScreenCaptureKit exclusively on macOS 14.4 and higher (#41397) This fixes a nasty warning / permission dialog that pops up to end-users when consuming legacy APIs. Chrome has flipped these flags via field trials as have other Electron apps. It should just be the default.
[ { "path": "filenames.gni", "patch": "@@ -383,6 +383,7 @@ filenames = {\n \"shell/browser/extended_web_contents_observer.h\",\n \"shell/browser/feature_list.cc\",\n \"shell/browser/feature_list.h\",\n+ \"shell/browser/feature_list_mac.mm\",\n \"shell/browser/file_select_helper.cc\",\n ...
2024-02-21T20:59:49
facebook/react
ed3c65caf042f75fe2fdc2a5e568a9624c6175fb
3f9e237a2feb74f1fca23b76d9d2e9e1713e2ba1
Warn if outdated JSX transform is detected (#28781) We want to warn if we detect that an app is using an outdated JSX transform. We can't just warn if `createElement` is called because we still support `createElement` when it's called manually. We only want to warn if `createElement` is output by the compiler. T...
[ { "path": "packages/react-dom/src/__tests__/ReactDeprecationWarnings-test.js", "patch": "@@ -91,6 +91,9 @@ describe('ReactDeprecationWarnings', () => {\n );\n });\n \n+ // Disabling this until #28732 lands so we can assert on the warning message.\n+ // (It's already disabled in all but the Meta buil...
2024-04-09T21:13:19
golang/go
e5502e0959bb54ec70ca500e8d2b6f5ac5efbc53
2363897932cfb279dd8810d2c92438f7ddcfd951
cmd/go: check subcommand properties This change corrects the properties checked by Lookup. We were inspecting the properties of the Command receiver; now we are inspecting the properties of the subcommand. Fixes #73864. Change-Id: Ieb462e489fc4f8f0568aa3a2d404b322d627166c Reviewed-on: https://go-review.googlesource...
[ { "path": "src/cmd/go/internal/base/base.go", "patch": "@@ -62,11 +62,11 @@ var Go = &Command{\n // Lookup returns the subcommand with the given name, if any.\n // Otherwise it returns nil.\n //\n-// Lookup ignores subcommands that have len(c.Commands) == 0 and c.Run == nil.\n+// Lookup ignores any subcomma...
2025-05-30T21:59:34
nodejs/node
64cc3b83268c76ade4b8f29109a64eef2016da79
5c2f599712c777d123d198266b05ca2c4cc8eba3
src: fix outdated js2c.cc references PR-URL: https://github.com/nodejs/node/pull/56133 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: ...
[ { "path": "src/node_builtins.h", "patch": "@@ -71,7 +71,7 @@ using BuiltinSourceMap = std::map<std::string, UnionBytes>;\n using BuiltinCodeCacheMap =\n std::unordered_map<std::string, BuiltinCodeCacheData>;\n \n-// Generated by tools/js2c.py as node_javascript.cc\n+// Generated by tools/js2c.cc as node...
2024-12-11T17:04:19
rust-lang/rust
6c6f5860f66c390f2477a3f713a9085ad49fe60e
fbd6934114e905d3cc61adbbd7e4a355eac5d0d7
Fix warnings in rs{begin,end}.rs files As can be seen locally and in CI logs (dist-i686-mingw) that code used to trigger `static_mut_refs` warning.
[ { "path": "library/rtstartup/rsbegin.rs", "patch": "@@ -90,12 +90,12 @@ pub mod eh_frames {\n \n unsafe extern \"C\" fn init() {\n // register unwind info on module startup\n- __register_frame_info(&__EH_FRAME_BEGIN__ as *const u8, &mut OBJ as *mut _ as *mut u8);\n+ __register_fram...
2026-02-19T21:28:52
vercel/next.js
0accb03cbedad6db79d1c82c46f006e3cbb37292
437e5ef2289b9854dc8a20826a848cf51066a46b
Use React's debug channel to transport debug info via WebSocket connection (#82748) In dev mode, React is sending debug info (owners, stacks, console logs etc.) from the server to the client so that they can be displayed in dev tools. By default, this info is sent as part of the main RSC payload (inlined into the HTML...
[ { "path": "packages/next/errors.json", "patch": "@@ -801,5 +801,12 @@\n \"800\": \"`experimental.rdcForNavigations` is enabled, but `experimental.ppr` is not.\",\n \"801\": \"> `pages` and `app` directories should be under the same folder\",\n \"802\": \"Image with src \\\"%s\\\" has both \\\"preload\...
2025-09-05T21:10:29
facebook/react
3f9e237a2feb74f1fca23b76d9d2e9e1713e2ba1
64c8d2d45d49dbb2f59ea23e5e739eb79e124abc
Fix: Suspend while recovering from hydration error (#28800) Fixes a bug that happens when an error occurs during hydration, React switches to client rendering, and then the client render suspends. It works correctly if there's a Suspense boundary on the stack, but not if it happens in the shell of the app. Prior...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzShellHydration-test.js", "patch": "@@ -548,4 +548,79 @@ describe('ReactDOMFizzShellHydration', () => {\n ]);\n expect(container.textContent).toBe('Hello world');\n });\n+\n+ it(\n+ 'handles suspending while recovering from a hydration err...
2024-04-09T21:11:46
rust-lang/rust
279b8cd8229a9a0a71d82d403962fa81e52d6a86
8387095803f21a256a9a772ac1f9b41ed4d5aa0a
Skip `Debug` on `use_existential_projection_new_instead`
[ { "path": "compiler/rustc_type_ir/src/predicate.rs", "patch": "@@ -420,6 +420,7 @@ pub struct ExistentialProjection<I: Interner> {\n \n /// This field exists to prevent the creation of `ExistentialProjection`\n /// without using [`ExistentialProjection::new_from_args`].\n+ #[derive_where(skip(Deb...
2026-02-18T18:16:38
golang/go
2363897932cfb279dd8810d2c92438f7ddcfd951
e32255fcc0861727243fca4e94766c0a322954fb
cmd/internal/obj: enable got pcrel itype in fips140 for riscv64 This CL enable R_RISCV_GOT_PCREL_ITYPE in fips140 Fixes #74662 Change-Id: Ic189c4e352517ae74034f207a5f944b610f2eb73 Reviewed-on: https://go-review.googlesource.com/c/go/+/688635 Reviewed-by: Mark Ryan <markdryan@rivosinc.com> Reviewed-by: Cherry Mui <che...
[ { "path": "src/cmd/internal/obj/fips140.go", "patch": "@@ -384,6 +384,7 @@ func (s *LSym) checkFIPSReloc(ctxt *Link, rel Reloc) {\n \t\tobjabi.R_RISCV_TLS_IE,\n \t\tobjabi.R_RISCV_TLS_LE,\n \t\tobjabi.R_RISCV_GOT_HI20,\n+\t\tobjabi.R_RISCV_GOT_PCREL_ITYPE,\n \t\tobjabi.R_RISCV_PCREL_HI20,\n \t\tobjabi.R_RIS...
2025-07-18T03:06:24
nodejs/node
b6c9dbe7e1fd208db20b6aac0d25a14e3fc5a456
586814bcd96462ae88a131431ec780e69a0764c3
module: only emit require(esm) warning under --trace-require-module require(esm) is relatively stable now and the experimental warning has run its course - it's now more troublesome than useful. This patch changes it to no longer emit a warning unless `--trace-require-module` is explicitly used. The flag supports two ...
[ { "path": "doc/api/cli.md", "patch": "@@ -2616,6 +2616,18 @@ added:\n Prints a stack trace whenever an environment is exited proactively,\n i.e. invoking `process.exit()`.\n \n+### `--trace-require-module=mode`\n+\n+<!-- YAML\n+added:\n+ - REPLACEME\n+-->\n+\n+Prints information about usage of [Loading ECMA...
2024-12-09T14:47:25
electron/electron
e72f4f7f267fffb95aa62841c662fe2746775871
f350cce64f2d1f0a11de0c89b64dbf26ecb0b269
chore: bump chromium to 123.0.6312.5 (main) (#41337) * chore: bump chromium in DEPS to 123.0.6300.2 * chore: bump chromium in DEPS to 123.0.6301.2 * chore: update patches * chore: bump chromium in DEPS to 123.0.6302.0 * chore: bump chromium in DEPS to 123.0.6304.0 * chore: update patches * chore: bum...
[ { "path": "BUILD.gn", "patch": "@@ -744,7 +744,7 @@ source_set(\"electron_lib\") {\n \"//chrome/browser/resources/pdf:resources\",\n \"//components/pdf/browser\",\n \"//components/pdf/browser:interceptors\",\n- \"//components/pdf/common\",\n+ \"//components/pdf/common:constants\"...
2024-02-21T20:27:05
vercel/next.js
a9cb9eca115afb0ad6431abd859bd45c98fa043d
ede8d1b861378b4b8aa7ff77ad2cacd583d9b21d
Include prerender interrupted error in unstable_rethrow (#83463) Prerender interrupted errors are part of the control flow for Next.js applications and aren't intended to be caught by user code. Since we can't avoid it we need to include it in the rethrow API.
[ { "path": "packages/next/src/client/components/unstable-rethrow.server.ts", "patch": "@@ -2,7 +2,10 @@ import { isHangingPromiseRejectionError } from '../../server/dynamic-rendering-u\n import { isPostpone } from '../../server/lib/router-utils/is-postpone'\n import { isBailoutToCSRError } from '../../shared...
2025-09-05T16:06:40
facebook/react
64c8d2d45d49dbb2f59ea23e5e739eb79e124abc
7f5d25e23e82adef262493794010385f1955f0b6
Attempt to fix diff syncing for Meta (#28801) #28796 broke Meta's PR syncing tool, hoping this fixes it
[ { "path": ".github/workflows/commit_artifacts.yml", "patch": "@@ -132,7 +132,7 @@ jobs:\n ./compiled/facebook-www/eslint-plugin-react-hooks.js\n \n # Move unstable_server-external-runtime.js into facebook-www\n- mv build/oss-stable/react-dom/unstable_server-external-runtime.js...
2024-04-09T21:05:18
golang/go
e32255fcc0861727243fca4e94766c0a322954fb
0451816430486a25966dd76aa92735ac0588b8e5
cmd/compile/internal/ssa: restrict architectures for TestDebugLines_74576 CL 687815 recently added TestDebugLines_74576. The pre-existing debug_lines_test.go file generally restricts the tested architectures and contains multiple warnings that the testing approach is useful but fragile, such as: "These files must ...
[ { "path": "src/cmd/compile/internal/ssa/debug_lines_test.go", "patch": "@@ -116,20 +116,30 @@ func TestDebugLines_53456(t *testing.T) {\n }\n \n func TestDebugLines_74576(t *testing.T) {\n-\ttests := []struct {\n-\t\tfile string\n-\t\twantStmts []int\n-\t}{\n-\t\t{\"i74576a.go\", []int{12, 13, 13, 14}}...
2025-07-18T22:25:08
electron/electron
136d7e7e6ab1d62ceb1c390ceccf7ddf0225b912
7cd23a4900642c5f2eb83c1fd5af42da20e05102
fix: check for draggable regions outside of main frame (#41377)
[ { "path": "shell/renderer/electron_render_frame_observer.cc", "patch": "@@ -66,10 +66,10 @@ ElectronRenderFrameObserver::ElectronRenderFrameObserver(\n // Initialise resource for directory listing.\n net::NetModule::SetResourceProvider(NetResourceProvider);\n \n- // App regions are only supported in th...
2024-02-21T03:10:43
nodejs/node
586814bcd96462ae88a131431ec780e69a0764c3
acff0ef6371821b9aa8dd5e945235babea954f85
worker: fix crash when a worker joins after exit If a worker has not already joined before running to completion it will join in a SetImmediateThreadsafe which could occur after the worker has already ended by other means. Mutating a JS object at that point would fail because the isolate is already disposed. PR-URL: ...
[ { "path": "src/node_worker.cc", "patch": "@@ -449,6 +449,9 @@ void Worker::JoinThread() {\n \n env()->remove_sub_worker_context(this);\n \n+ // Join may happen after the worker exits and disposes the isolate\n+ if (!env()->can_call_into_js()) return;\n+\n {\n HandleScope handle_scope(env()->isolat...
2024-12-11T13:37:36
vercel/next.js
fe19e10c399da66987c6d16322208f4c56949905
900d344fea928761b63e51e48a54d8ccc6f00a2e
Turbopack: Don't resolve tsconfig relative to file (#83484) ## What? Changes in #83331 accidentally changed behavior of how `tsconfig.json` is resolved. When using Next.js we don't want it to be resolved relative to the current file being compiled. It should only use the application root. This PR fixes the behavior ...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -188,6 +188,9 @@ pub async fn get_client_resolve_options_context(\n .typescript_tsconfig_path()\n .await?\n .as_ref()\n+ // Fall back to tsconfig only for resolving. This is because we don't want Turbopack t...
2025-09-05T13:49:44
facebook/react
7f5d25e23e82adef262493794010385f1955f0b6
bf40b024421a0e1f2f882fd7171ea39cd74c88df
Fix cloneElement using string ref w no owner (#28797) Fix for an issue introduced in #28473 where cloneElement() with a string ref fails due to lack of an owner. We should use the current owner in this case. --------- Co-authored-by: Rick Hanlon <rickhanlonii@fb.com>
[ { "path": "packages/react/src/__tests__/ReactElementClone-test.js", "patch": "@@ -274,8 +274,56 @@ describe('ReactElementClone', () => {\n \n const root = ReactDOMClient.createRoot(document.createElement('div'));\n await act(() => root.render(<Grandparent />));\n- expect(component.childRef).toEqu...
2024-04-09T20:43:49
golang/go
34b70684ba2fc8c5cba900e9abdfb874c1bd8c0e
66536242fce34787230c42078a7bbd373ef8dcb0
go/types: infer correct type for y in append(bytes, y...) The type-checking logic for append has a special case for append(bytes, s...) where the typeset for s contains string. However, this case was triggering even when the typeset contained only []byte, causing the creation of Signature types of the form func([]byte...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -91,22 +91,25 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t// to type []byte with a second argument of string type followed by ... .\n \t\t// This form appends the bytes of the string.\"\n \n-\...
2025-07-18T17:16:21
facebook/react
7f93cb41c8e1352eec158e508bc612025425266d
f6131653570bbbf62d642ba9343b9cd0ab1ae97c
[DOM] Infer react-server entries bundles if not explicitly configured (#28795) When packaging we want to infer that a bundle exists for a `react-server` file even if it isn't explicitly configured. This is useful in particular for the react-server entrypoints that error on import that were recently added to `react-...
[ { "path": "packages/react-dom/src/ReactDOMSharedInternals.js", "patch": "@@ -47,8 +47,4 @@ const Internals: ReactDOMInternals = {\n usingClientEntryPoint: false,\n };\n \n-// if (__DEV__) {\n-// (Internals: any).usingClientEntryPoint = false;\n-// }\n-\n export default Internals;", "additions": 0, ...
2024-04-09T17:39:25
nodejs/node
acff0ef6371821b9aa8dd5e945235babea954f85
4a91507b25764230f2090f1a8f036a95b3cd6945
http2: support ALPNCallback option PR-URL: https://github.com/nodejs/node/pull/56187 Fixes: https://github.com/nodejs/node/issues/55994 Refs: https://github.com/nodejs/node/pull/45190 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Luigi Pinca <luigipin...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -3136,9 +3136,13 @@ function initializeOptions(options) {\n \n function initializeTLSOptions(options, servername) {\n options = initializeOptions(options);\n- options.ALPNProtocols = ['h2'];\n- if (options.allowHTTP1 === true)\n- options.ALPNProtoc...
2024-12-11T13:37:21
vercel/next.js
900d344fea928761b63e51e48a54d8ccc6f00a2e
c32327042a15ee0abdcf290a0ed4a3d25cc17a85
[metadata] not add suffix to sitemap.xml in group routes (#83486)
[ { "path": "crates/next-core/src/next_app/metadata/mod.rs", "patch": "@@ -302,7 +302,7 @@ fn format_radix(mut x: u32, radix: u32) -> String {\n /// /(post)/sitemap -> /sitemap\n fn get_metadata_route_suffix(page: &str) -> Option<String> {\n // skip sitemap\n- if page.ends_with(\"/sitemap\") {\n+ if...
2025-09-05T13:44:17
electron/electron
995f3dc120281a5e364ff1624ea77ee58ce89947
d0b4489b7d3fcbf789dea215d4e93a0e2ea4a894
fix: revert to legacyMainResolve in JavaScript for asar compatibility (#41367)
[ { "path": "patches/node/.patches", "patch": "@@ -45,3 +45,4 @@ test_make_test-node-output-v8-warning_generic.patch\n test_match_wpt_streams_transferable_transform-stream-members_any_js.patch\n build_ensure_v8_pointer_compression_sandbox_is_enabled_on_64bit.patch\n src_preload_function_for_environment.patch\...
2024-02-19T07:21:13
facebook/react
acef2f811125af250631965e6c1a8c7479b30b42
556a087de3c94761d3834b11c30630dcaa82600c
[DOM] Fix package.json files for #28784 (#28785) Missed some files for the react-server disallow client change in #28784
[ { "path": "packages/react-dom/package.json", "patch": "@@ -25,23 +25,28 @@\n \"files\": [\n \"LICENSE\",\n \"README.md\",\n- \"index.js\",\n \"client.js\",\n+ \"client.react-server.js\",\n+ \"index.js\",\n \"profiling.js\",\n- \"server.js\",\n+ \"profiling.react-server.js\",...
2024-04-08T22:49:18
golang/go
66536242fce34787230c42078a7bbd373ef8dcb0
385000b004616d5c42c868a2a072432cb65ca692
cmd/compile/internal/escape: improve DWARF .debug_line numbering for literal rewriting optimizations The literal rewriting optimizations to reduce user allocations that were implemented in CL 649079 and related CLs like CL 684116 could produce .debug_line tables such that the line numbers sometimes jumped back to a va...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -539,9 +539,8 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \t\treturn\n \t}\n \n-\tassignTemp := func(n ir.Node, init *ir.Nodes) {\n+\tassignTemp := func(pos src.XPos, n ir.Node, init *ir.Nodes) {\n \t\t// Preserve any...
2025-07-12T21:01:44
nodejs/node
4a91507b25764230f2090f1a8f036a95b3cd6945
fd9a79df7dcf63990ff15c99433d6d86c95b794e
util: do not rely on mutable `Object` and `Function`' `constructor` prop PR-URL: https://github.com/nodejs/node/pull/56188 Fixes: https://github.com/nodejs/node/issues/55924 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Jordan Harband <ljharb@gmail.com>
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -22,8 +22,11 @@ const {\n DatePrototypeToISOString,\n DatePrototypeToString,\n ErrorPrototypeToString,\n+ Function,\n+ FunctionPrototype,\n FunctionPrototypeBind,\n FunctionPrototypeCall,\n+ FunctionPrototypeSymbolHasInstance,\n FunctionP...
2024-12-11T11:11:38
vercel/next.js
2a9e842602c5b8095434a4a3cbbb769612ab8497
6d34793866be9e06a29c171ee5ce268586f3bd11
[turbopack] RFC: Serialize turbopack objects as u16s instead of fully qualified symbol names (#83193) Change the serialization strategy for `ValueTypeId`, `TraitTypeId` and `NativeFunction` to use `u16` values instead of the `global_name` (a fully qualified name of the object). For all these objects the value is the ...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -36,7 +36,7 @@ use turbo_tasks::{\n },\n event::{Event, EventListener},\n message_queue::TimingEvent,\n- registry::{self, get_value_type_global_name},\n+ registry::get_value_type,\n task_statistics::TaskS...
2025-09-05T07:12:00
electron/electron
d0b4489b7d3fcbf789dea215d4e93a0e2ea4a894
ca0920872d2f8f180fecfbb321ecdb77a7f0e677
ci: fix helperPath calls in ci configs (#41363) * ci: fix helperPath calls in ci configs Co-authored-by: codebytere <codebytere@electronjs.org> * ci: fix helperPaths harder --------- Co-authored-by: codebytere <codebytere@electronjs.org>
[ { "path": ".circleci/config/base.yml", "patch": "@@ -353,10 +353,10 @@ step-setup-rbe-for-build: &step-setup-rbe-for-build\n mkdir third_party\n # Pull down credential helper and print status\n node -e \"require('./src/utils/reclient.js').downloadAndPrepare({})\"\n- HELPER=$(node -p \...
2024-02-17T23:04:36
facebook/react
556a087de3c94761d3834b11c30630dcaa82600c
f62cf8c62052ae780d351090013f7155cf9a868c
[DOM] disallow client entrypoints with react-server condition (#28784) `react-server` precludes loading code that expects to be run in a client context. This includes react-dom/client react-dom/server react-dom/unstable_testing react-dom/profiling and react-dom/static This update makes importing any of these clie...
[ { "path": "packages/react-dom/npm/client.react-server.js", "patch": "@@ -0,0 +1,5 @@\n+'use strict';\n+\n+throw new Error(\n+ 'react-dom/client is not supported in React Server Components.'\n+);", "additions": 5, "deletions": 0, "language": "JavaScript" }, { "path": "packages/react-dom/...
2024-04-08T22:37:06
golang/go
385000b004616d5c42c868a2a072432cb65ca692
f506ad2644ff9c76d7e9fa00710248009d449cac
runtime: fix idle time double-counting bug This change fixes a bug in the accounting of sched.idleTime. In just the case where the GC CPU limiter needs up-to-date data, sched.idleTime is incremented in both the P-idle-time and idle-mark-work paths, but it should only be incremented in the former case. Fixes #74627. ...
[ { "path": "src/runtime/mgclimit.go", "patch": "@@ -209,14 +209,12 @@ func (l *gcCPULimiterState) updateLocked(now int64) {\n \t\tfor _, pp := range allp {\n \t\t\ttyp, duration := pp.limiterEvent.consume(now)\n \t\t\tswitch typ {\n-\t\t\tcase limiterEventIdleMarkWork:\n-\t\t\t\tfallthrough\n \t\t\tcase limi...
2025-07-15T17:11:18
nodejs/node
549037f772b6e27090aac4e675b54b9595d83a54
b9329306c66f1e40f16f6992d0e74ec4f374c7dd
doc: fix incorrect link to style guide The link to the style guide in `pull-requests.md` linked to the main `README.md` instead of `doc/README.md`. This commit fixes the link. Refs: https://github.com/nodejs/node/pull/41119 PR-URL: https://github.com/nodejs/node/pull/56181 Reviewed-By: Gireesh Punathil <gpunathi@in.i...
[ { "path": "doc/contributing/pull-requests.md", "patch": "@@ -122,7 +122,7 @@ If you are modifying code, please be sure to run `make lint` (or\n code style guide.\n \n Any documentation you write (including code comments and API documentation)\n-should follow the [Style Guide](../../README.md). Code samples\...
2024-12-10T19:13:22
electron/electron
80906c0adb1e1b8103dcdfb8340c4b660b330c25
d4413a8e53590b43d622ad9dce4259be89acbb8c
fix: properly stream `uploadData` in `protocol.handle()` (#41052) * refactor(protocol): extract file stream factory Increase readability by moving the file stream creation logic out of the `uploadData` to request body conversion function. * fix: properly flatten streams in `protocol.handle()` Refs: electron/...
[ { "path": "lib/browser/api/protocol.ts", "patch": "@@ -29,6 +29,21 @@ function makeStreamFromPipe (pipe: any): ReadableStream {\n });\n }\n \n+function makeStreamFromFileInfo ({\n+ filePath,\n+ offset = 0,\n+ length = -1\n+}: {\n+ filePath: string;\n+ offset?: number;\n+ length?: number;\n+}): Reada...
2024-02-16T19:29:29
facebook/react
6de7733e73152ecb9a0cb8bcf73dcc1c96ca7dde
4c12339ce3fa398050d1026c616ea43d43dcaf4a
feat[devtools]: ship source maps for content scripts and ignore list installHook script (#28730) ## Summary 1. RDT browser extension's content scripts will now ship source maps (without source in prod, to save some bundle size). 2. `installHook` content script will be ignore listed via `ignoreList` field in the ...
[ { "path": "packages/react-devtools-extensions/package.json", "patch": "@@ -39,7 +39,6 @@\n \"chrome-launch\": \"^1.1.4\",\n \"crx\": \"^5.0.0\",\n \"css-loader\": \"^1.0.1\",\n- \"devtools-ignore-webpack-plugin\": \"^0.1.1\",\n \"file-loader\": \"^6.1.0\",\n \"filesize\": \"^6.0.1\",\...
2024-04-08T17:10:09
golang/go
f506ad2644ff9c76d7e9fa00710248009d449cac
9c507e794297c9a7f160f71b9910d5de27b9a517
cmd/compile/internal/escape: speed up analyzing some functions with many closures Escape analysis examines functions in batches. In some cases, closures are in the same batch as their parent function, but in other cases, the closures are in different batches. This can mean the per-batch ir.ReassignOracle cache is not ...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -122,17 +122,24 @@ type escape struct {\n }\n \n func Funcs(all []*ir.Func) {\n-\tir.VisitFuncsBottomUp(all, Batch)\n+\t// Make a cache of ir.ReassignOracles. The cache is lazily populated.\n+\t// TODO(thepudds): consider adding a field on ...
2025-07-14T23:36:00
nodejs/node
f184a0aca0493fba27b762d1bd8985bc06711635
eef06f72eb6856454024943fdf0793a949d88392
fs,win: fix readdir for named pipe PR-URL: https://github.com/nodejs/node/pull/56110 Fixes: https://github.com/nodejs/node/issues/56002 Refs: https://github.com/nodejs/node/pull/55623 Refs: https://github.com/nodejs/node/pull/56088 Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Luigi Pinca <luigip...
[ { "path": "src/node_file.cc", "patch": "@@ -1986,8 +1986,29 @@ static void ReadDir(const FunctionCallbackInfo<Value>& args) {\n \n BufferValue path(isolate, args[0]);\n CHECK_NOT_NULL(*path);\n+#ifdef _WIN32\n+ // On Windows, some API functions accept paths with trailing slashes,\n+ // while others do...
2024-12-10T13:31:21
facebook/react
5bf2323880ec6e00b21d2cbaea98ce9dbf83dbeb
9a6cb241504027688c166f7fedba8bd443cb9639
Fix missing playground snapshot ghstack-source-id: f2c8a542b525ab8c91beaad6327c128a96d122f6 Pull Request resolved: https://github.com/facebook/react-forget/pull/2827
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/results.txt", "patch": "@@ -0,0 +1,11 @@\n+function MyApp() {\n+  const $ = useMemoCache(1);\n+  let t0;\n+  if ($[0] === Symbol.for(\"react.memo_cache_sentinel\")) {\n+    t0 = <div>Hello World</div>;\n+    $[0] = t0;\n+  } else {...
2024-04-08T15:23:29
rust-lang/rust
a561a4b8e19ec1ba334c1433827b27208953d3d2
fbd6934114e905d3cc61adbbd7e4a355eac5d0d7
Errors on illegal SV init
[ { "path": "compiler/rustc_hir_typeck/src/callee.rs", "patch": "@@ -99,6 +99,15 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n _ => { /* cannot have a non-rust abi */ }\n }\n \n+ if self.is_scalable_vector_ctor(autoderef.final_ty()) {\n+ let mut err = self.dcx().create_err(error...
2026-02-04T12:30:32
golang/go
9c507e794297c9a7f160f71b9910d5de27b9a517
9782dcfd16bcf10f576504bacf67eb41a6cef88f
cmd/link, runtime: on Wasm, put only function index in method table and func table In the type descriptor's method table, it contains relative PCs of the methods (relative to the start of the text section) stored as 32-bit offsets. On Wasm, a PC is PC_F<<16 + PC_B, where PC_F is the function index, and PC_B is the blo...
[ { "path": "src/cmd/internal/obj/wasm/wasmobj.go", "patch": "@@ -372,6 +372,9 @@ func preprocess(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \t}\n \ttableIdxs = append(tableIdxs, uint64(numResumePoints))\n \ts.Size = pc + 1\n+\tif pc >= 1<<16 {\n+\t\tctxt.Diag(\"function too big: %s exceeds 65536...
2023-12-26T20:35:56
nodejs/node
0a7eeb506865893e69a85aac1a53dd58f1a04c05
80c0055e38b9c79b27a2c3b7da3b62e8d0f5e435
doc: fix c++ addon hello world sample PR-URL: https://github.com/nodejs/node/pull/56172 Refs: https://github.com/nodejs/node/issues/56173 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: theanarkh <theratliter@gmail.com>
[ { "path": "doc/api/addons.md", "patch": "@@ -72,14 +72,15 @@ namespace demo {\n using v8::FunctionCallbackInfo;\n using v8::Isolate;\n using v8::Local;\n+using v8::NewStringType;\n using v8::Object;\n using v8::String;\n using v8::Value;\n \n void Method(const FunctionCallbackInfo<Value>& args) {\n Isolat...
2024-12-09T17:43:50
vercel/next.js
6d34793866be9e06a29c171ee5ce268586f3bd11
6316c4bd11c38384ac560ca2b8c487e085815782
[turbopack] Attempt #2 at making rust-analyzer happy with our macros (#83461) We are experiencing https://github.com/rust-lang/rust-analyzer/issues/19993 and Rust Analyzer is complaining about our macro gencode. After some trial and error i determined the issue was our use of the `concat!` and specifically the inclus...
[ { "path": "turbopack/crates/turbo-tasks-macros/src/global_name.rs", "patch": "@@ -5,7 +5,7 @@ use quote::quote;\n ///\n /// The name is prefixed with the current crate name and module path\n pub(crate) fn global_name(local_name: impl quote::ToTokens) -> TokenStream {\n- let crate_name =\n- std::en...
2025-09-05T06:59:46
facebook/react
e63918d2cd53b03c19119b475e116d1b45fd0f84
f86afca090b668d8be10b642750844759768d1ad
Add Promise as a child test to Flight fixture (#28778)
[ { "path": "fixtures/flight/__tests__/__e2e__/smoke.test.js", "patch": "@@ -13,7 +13,9 @@ test('smoke test', async ({page}) => {\n pageErrors.push(error.stack);\n });\n await page.goto('/');\n- await expect(page.locator('h1')).toHaveText('Hello World');\n+ await expect(page.getByTestId('promise-as-...
2024-04-08T15:06:17
rust-lang/rust
d778d122faf5672b3bc1c4619c7218f63b504b9f
c8d56aa26a0061c02aa23f337041c7cf72ccccde
fix: generate method assist uses enclosing impl block instead of first found
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/generate_function.rs", "patch": "@@ -146,10 +146,19 @@ fn gen_method(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<()> {\n if !is_editable_crate(target_module.krate(ctx.db()), ctx.db()) {\n return None;\n }\n+ //Ch...
2026-02-20T13:31:22
golang/go
c876bf9346f1afb5471947a65fb1e105caeff433
b4309ece66ca989a38ed65404850a49ae8f92742
cmd/internal/obj/wasm: use 64-bit instructions for indirect calls Currently, on Wasm, an indirect call is compiled to // function index = PC>>16, PC is already on stack I32WrapI64 I32Const $16 ShrU // set PC_B to 0 ... // actual call CallIndirect Specifically, the function index is extracted from bits 16-31 ...
[ { "path": "src/cmd/internal/obj/wasm/wasmobj.go", "patch": "@@ -465,9 +465,9 @@ func preprocess(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\t\tcase obj.TYPE_NONE:\n \t\t\t\t// (target PC is on stack)\n+\t\t\t\tp = appendp(p, AI64Const, constAddr(16)) // only needs PC_F bits (16-63), PC_B b...
2024-02-29T19:27:57
facebook/react
9a6cb241504027688c166f7fedba8bd443cb9639
0d0f7c2ad178cc546f04bf5b302d0c27609bc3cc
[ez] Fix comments to be star blocks ghstack-source-id: 6a9e844a3ba548d3bf2b7373dc023ad42c2e719b Pull Request resolved: https://github.com/facebook/react-forget/pull/2826
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -9,17 +9,29 @@ import type { SourceLocation } from \"./HIR\";\n import { assertExhaustive } from \"./Utils/utils\";\n \n export enum ErrorSeverity {\n- // Invalid JS syntax, or valid syntax that is semantically inval...
2024-04-08T14:55:55
vercel/next.js
38c4caf22a570868b8c1689c843044807560b4a7
a270b00e4c29f1829ed887e459f69a71ef488ea2
[turbopack] Don't execute inventory_submit in rust analyzer (#83447) ### What? In #83074 we changed how turbo task objects were registered to use the `inventory` crate. This PR adds a new `inventory_submit!` macro that wraps the existing `inventory::submit` function with a `#[cfg(not(rust_analyzer))]` attribute to pre...
[ { "path": "turbopack/crates/turbo-tasks-backend/fuzz/Cargo.toml", "patch": "@@ -32,3 +32,7 @@ path = \"afl_targets/graph.rs\"\n test = false\n doc = false\n bench = false\n+\n+\n+[lints]\n+workspace = true", "additions": 4, "deletions": 0, "language": "Unknown" }, { "path": "turbopack/cr...
2025-09-04T20:31:50
electron/electron
7d6a754d474c278e13d025f752baa7da04b86065
0dad99561b4232418dcf7ae48877bab35d633927
fix: skip the first two invalid updates when SCK is enabled (#41340)
[ { "path": "patches/chromium/.patches", "patch": "@@ -128,4 +128,4 @@ feat_allow_code_cache_in_custom_schemes.patch\n build_run_reclient_cfg_generator_after_chrome.patch\n fix_suppress_clang_-wimplicit-const-int-float-conversion_in.patch\n fix_getcursorscreenpoint_wrongly_returns_0_0.patch\n-fix_add_support_...
2024-02-14T19:56:29
nodejs/node
3837c8d71e364833e7f6f3b08f41deb54cfdf106
dbfcbe371cfedf33fe16856cc71b4ed06b0155ba
build: fix GN build on macOS use_gold is not defined on macOS. PR-URL: https://github.com/nodejs/node/pull/56141 Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Shelley Vohr <shelley.vohr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-B...
[ { "path": "unofficial.gni", "patch": "@@ -263,7 +263,7 @@ template(\"node_gn_build\") {\n ldflags = [ \"/OPT:NOICF\" ] # link.exe, but also lld-link.exe.\n } else if (is_apple && !use_lld) {\n ldflags = [ \"-Wl,-no_deduplicate\" ] # ld64.\n- } else if (use_gold || use_ll...
2024-12-09T10:01:55
facebook/react
0d0f7c2ad178cc546f04bf5b302d0c27609bc3cc
1f35f7e320bd2f75421a7d4b0b13cf2a7604a980
Update ValidatePreservedManualMemoization severity to CannotPreserveMemoization We do need to fix the error location to point to the "callsite" rather than the definition of the useMemo callback, but that aside, even if the error message were perfect, it's not meant to be actionable to the user. So let's change the s...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidatePreservedManualMemoization.ts", "patch": "@@ -439,7 +439,7 @@ class Visitor extends ReactiveFunctionVisitor<VisitorState> {\n reason:\n \"This value was manually memoized, but cannot be memoized under For...
2024-04-08T14:55:54
golang/go
b4309ece66ca989a38ed65404850a49ae8f92742
75a19dbcd7e69dc619fd57b9ed32f697121160ba
cmd/internal/doc: upgrade godoc pkgsite to 01b046e Increase the dependency on the doc tool to bring in the fixes to CL 687918 and CL 687976. Fixes golang/go#74459 Change-Id: I9cdefdfd9792a142ad14bae3d4f7bb9d8256a246 Reviewed-on: https://go-review.googlesource.com/c/go/+/687997 Reviewed-by: Jonathan Amsterdam <jba@go...
[ { "path": "src/cmd/internal/doc/main.go", "patch": "@@ -243,7 +243,7 @@ func doPkgsite(urlPath string) error {\n \t\tenv = append(env, \"GOPROXY=\"+gomodcache+\",\"+goproxy)\n \t}\n \n-\tconst version = \"v0.0.0-20250608123103-82c52f1754cd\"\n+\tconst version = \"v0.0.0-20250714212547-01b046e81fe7\"\n \tcmd...
2025-07-15T15:26:39
vercel/next.js
a270b00e4c29f1829ed887e459f69a71ef488ea2
74c3745608a87cc49a204ba381c05134e328f183
[turbopack] Add an execution test for the behavior when a module throws an error (#83451) Confirms that we don't re-evaluate modules after an error Clearing the require.cache allows us to re-evaluate
[ { "path": "turbopack/crates/turbopack-tests/tests/execution/turbopack/evaluation-errors/basic/input/index.js", "patch": "@@ -0,0 +1,23 @@\n+it('module evaluation rethrows but does not re-evaluate', async () => {\n+ expect(globalThis.evalCounter).toBeUndefined()\n+ await assertThrowsThrows()\n+ expect(glo...
2025-09-04T20:04:46
facebook/react
1f35f7e320bd2f75421a7d4b0b13cf2a7604a980
76bb13cd26717312fc5fc5d4a69b4938e7ce27a9
Add new ErrorSeverity.CannotPreserveMemoization This adds a new category of error where the compiler cannot preserve memoization exactly how as it was originally authored. We're adding a new category here because it's not an actionable error, and allows us to more specifically control whether it's reportable or not. ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -15,6 +15,8 @@ export enum ErrorSeverity {\n InvalidReact = \"InvalidReact\",\n // Incorrect configuration of the compiler.\n InvalidConfig = \"InvalidConfig\",\n+ // Code that can reasonably occur and that doe...
2024-04-08T14:55:53
nodejs/node
dbfcbe371cfedf33fe16856cc71b4ed06b0155ba
4f51d461d1fc588c65abcb0911b7c8f22edad607
assert: make partialDeepStrictEqual work with ArrayBuffers Fixes: https://github.com/nodejs/node/issues/56097 PR-URL: https://github.com/nodejs/node/pull/56098 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/assert.js", "patch": "@@ -21,35 +21,44 @@\n 'use strict';\n \n const {\n+ ArrayBufferIsView,\n+ ArrayBufferPrototypeGetByteLength,\n ArrayFrom,\n ArrayIsArray,\n ArrayPrototypeIndexOf,\n ArrayPrototypeJoin,\n ArrayPrototypePush,\n ArrayPrototypeSlice,\n+ DataViewPrototypeGetBuf...
2024-12-08T22:41:26
golang/go
7dceabd3be3d119bb2539030e0e824ad85a10202
d826bf4d7440ee07f865e5852638b5a2468687ff
runtime/maps: fix typo in group.go comment (instrinsified -> intrinsified) Several comments refer to bitset as 'instrinsified', which is likely a typo, because it refers to the output of the intrinsics implemented with SIMD. Change-Id: I00f26b8d8128592ee0e9dc8a1b1480c93a9542d6 GitHub-Last-Rev: 8a4236710979f2f969210e0...
[ { "path": "src/internal/runtime/maps/group.go", "patch": "@@ -157,7 +157,7 @@ func (g ctrlGroup) matchH2(h uintptr) bitset {\n // Portable implementation of matchH2.\n //\n // Note: On AMD64, this is an intrinsic implemented with SIMD instructions. See\n-// note on bitset about the packed instrinsified retu...
2025-07-15T12:21:38
vercel/next.js
963655735d4eb47cbcfc121a3a5a7fc4eaa5b9a2
818e83515c62ccce2c306651d972a55a6f9dd16c
[turbopack] Improve handling of symlink resolution errors in track_glob and read_glob (#83357) # Improve symlink handling in turbo-tasks-fs This PR enhances symlink handling in the filesystem layer to better handle error cases and provide more detailed error messages. The key changes include: - Refactored `realpath_...
[ { "path": "crates/next-core/src/pages_structure.rs", "patch": "@@ -106,11 +106,11 @@ pub async fn find_pages_structure(\n page_extensions: Vc<Vec<RcStr>>,\n next_mode: Vc<crate::mode::NextMode>,\n ) -> Result<Vc<PagesStructure>> {\n- let pages_root = project_root.join(\"pages\")?.realpath().owned...
2025-09-04T17:41:48
facebook/react
f86afca090b668d8be10b642750844759768d1ad
2acfb7b60922bdc8376dd144ca7bc532df78254b
docs: fix typo in fixtures/nesting/README.md (#27507)
[ { "path": "fixtures/nesting/README.md", "patch": "@@ -68,7 +68,7 @@ We will use three different `package.json`s: one for non-React code at the root,\n - **`src/legacy/package.json`**: This is where we declare the `react` and `react-dom` dependencies for the \"legacy\" trees. In this demo, we're using React...
2024-04-06T17:11:19
electron/electron
0dad99561b4232418dcf7ae48877bab35d633927
7e241eef7c2e77edd882c25ccc6c38d1f29367ea
chore: bump chromium to 123.0.6296.0 (main) (#41204) * chore: bump chromium in DEPS to 123.0.6273.0 * chore: update patches * chore: bump chromium in DEPS to 123.0.6274.0 * chore: update patches * chore: bump chromium in DEPS to 123.0.6276.0 * chore: update patches * WIP: 5239586: Change View::Layout...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '123.0.6272.0',\n+ '123.0.6296.0',\n 'node_version':\n 'v20.11.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2024-02-14T17:33:32
nodejs/node
91b6e3c2874b6f6940e6dde5b5d00501d698fd30
b5056be8544345ae4dd53601400240479f99b9a1
lib: clean up persisted signals when they are settled PR-URL: https://github.com/nodejs/node/pull/56001 Refs: https://github.com/nodejs/node/issues/55328 Fixes: https://github.com/nodejs/node/issues/55328 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: Juan José ...
[ { "path": "lib/internal/abort_controller.js", "patch": "@@ -96,8 +96,21 @@ const dependantSignalsCleanupRegistry = new SafeFinalizationRegistry((signalWeak\n }\n });\n });\n+\n const gcPersistentSignals = new SafeSet();\n \n+const sourceSignalsCleanupRegistry = new SafeFinalizationRegistry(({ sourceSi...
2024-12-08T12:24:09
golang/go
d826bf4d7440ee07f865e5852638b5a2468687ff
bb07e55aff3041032ac8c851f4fefbd038783240
os: remove useless error check Change-Id: Ifeb5fecc6e28b79ac03e7dc2ce9531fe5eed3097 GitHub-Last-Rev: 087cf95965920c96befad5adb9e481bdf913d50a GitHub-Pull-Request: golang/go#66260 Reviewed-on: https://go-review.googlesource.com/c/go/+/570895 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUC...
[ { "path": "src/os/os_windows_test.go", "patch": "@@ -64,9 +64,6 @@ func TestSameWindowsFile(t *testing.T) {\n \t}\n \n \tp := filepath.VolumeName(path) + filepath.Base(path)\n-\tif err != nil {\n-\t\tt.Fatal(err)\n-\t}\n \tia3, err := os.Stat(p)\n \tif err != nil {\n \t\tt.Fatal(err)", "additions": 0, ...
2024-03-12T07:37:52
vercel/next.js
544f52126ed0f16b78044ea16e8e1170f6503179
1bfe63a6d01749c8917e298fe016d8d111bab8a2
fix: Include CSP nonce in next/dynamic preload (#81999) Co-authored-by: Jiachi Liu <inbox@huozhi.im>
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -1982,7 +1982,8 @@ export const renderToHTMLOrFlight: AppPageRender = (\n previewModeId: renderOpts.previewProps?.previewModeId,\n })\n \n- const { isPrefetchRequest, previouslyRevalidatedTags } = parsedRequestHeaders\n+ co...
2025-09-04T16:18:44
facebook/react
f33a6b69c6cb406ea0cc51d07bc4d3fd2d8d8744
e3ebcd54b98a4f8f5a9f7e63982fa75578b648ed
Track Owner for Server Components in DEV (#28753) This implements the concept of a DEV-only "owner" for Server Components. The owner concept isn't really super useful. We barely use it anymore, but we do have it as a concept in DevTools in a couple of cases so this adds it for parity. However, this is mainly intere...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -484,6 +484,7 @@ function createElement(\n type: mixed,\n key: mixed,\n props: mixed,\n+ owner: null | ReactComponentInfo, // DEV-only\n ): React$Element<any> {\n let element: any;\n if (__DEV__ && enableRefAsProp) {\n@@ -49...
2024-04-05T16:48:52
electron/electron
79147e4dd825aa26ea0242470c2bad47c3998fe3
32920af4b78213b4479f20796e989d4cc56ce9db
fix: Ignore `-webkit-app-region: drag;` when window is in full screen mode. (#41307) Co-authored-by: Mikhail Leliakin <lelyakin.aus@gmail.com>
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -757,6 +757,11 @@ int NativeWindow::NonClientHitTest(const gfx::Point& point) {\n }\n #endif\n \n+ // This is to disable dragging in HTML5 full screen mode.\n+ // Details: https://github.com/electron/electron/issues/41002\n+ if (GetWidget()->IsFu...
2024-02-14T10:12:41
nodejs/node
ac7fea6a1239feb9bc8c25281860aeb0e5864bc3
7fdeeac4d34a66c023ab3c1bb791f123031a82fb
lib: handle Float16Array in node:v8 serdes PR-URL: https://github.com/nodejs/node/pull/55996 Fixes: https://github.com/nodejs/node/issues/55574 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": "lib/eslint.config_partial.mjs", "patch": "@@ -347,6 +347,11 @@ export default [\n name: 'SubtleCrypto',\n message: \"Use `const { SubtleCrypto } = require('internal/crypto/webcrypto');` instead of the global.\",\n },\n+ // Float16Array is not available in primor...
2024-12-07T18:24:28
golang/go
3f789721d6298b7f4406a0106670c4d4ad70a28d
b69622b83e38b58a461938163fdef03683a2a871
[dev.simd] cmd/compile: mark SIMD types non-fat This CL fixes the merge locals error. The culprit is that liveness analysis wrongly mark SIMD structs fat, hence making `StoreReg` of SIMD vectors not a varkill effect, making the liveness range of SIMD vectors not closed correctly, further making mergelocals merged 2 co...
[ { "path": "src/cmd/compile/internal/liveness/plive.go", "patch": "@@ -1534,6 +1534,9 @@ func isfat(t *types.Type) bool {\n \t\t\t}\n \t\t\treturn true\n \t\tcase types.TSTRUCT:\n+\t\t\tif t.IsSIMD() {\n+\t\t\t\treturn false\n+\t\t\t}\n \t\t\t// Struct with 1 field, check if field is fat\n \t\t\tif t.NumFiel...
2025-07-12T08:13:04
vercel/next.js
1bfe63a6d01749c8917e298fe016d8d111bab8a2
a225045924f20499e3368bc5f96db8c12d6f093c
auto-enable errors.json merge driver (#83420) The merge driver for `errors.json` has been around for a while, and seems to work without issues. This PR enables it by default by installing it in `postinstall`(via the existing `git-configure.mjs` script which is invoked from there already) It also adds `scripts/merge-e...
[ { "path": "scripts/git-configure.mjs", "patch": "@@ -1,12 +1,19 @@\n+// @ts-check\n import execa from 'execa'\n \n // See https://github.com/vercel/next.js/pull/47375\n-const { stdout, stderr } = await execa(\n- 'git',\n- ['config', 'index.skipHash', 'false'],\n- {\n- reject: false,\n- }\n-)\n+await ...
2025-09-04T16:08:47
facebook/react
7966ccddc8e9a0d9901c40ad556220ea23785088
6090cab099a8f7f373e04c7eb2937425a8f80f80
Enable stale action (#28729) Follows #28695 Now that the action has run successfully in debug mode ([logs](https://github.com/facebook/react/actions/runs/8532177618/job/23372921455#step:2:35)), let's enable it to persist changes. Also changes the number of operations per run from the default of 30 to 100 sinc...
[ { "path": ".github/workflows/stale.yml", "patch": "@@ -16,8 +16,8 @@ jobs:\n days-before-stale: 90\n # Number of days of inactivity before a stale issue or PR is closed\n days-before-close: 7\n- # Tmp dry run setup to test new config\n- debug-only: 'true'\n+ ...
2024-04-04T14:27:29
electron/electron
32920af4b78213b4479f20796e989d4cc56ce9db
0218af9af0e4a8896e01b4272013b46d43fb4d6c
fix: add capability to use ScreenCaptureKit for thumbnail generation (#41328) This aligns us with Chromiums flags / capabilities in regards to using SCK for everything. Currently on 14.4 Electron apps will pop warnings for usage of deprecated APIs. With this change and a few "enable-features" toggles. `--enable-...
[ { "path": "chromium_src/BUILD.gn", "patch": "@@ -242,6 +242,8 @@ static_library(\"chrome\") {\n \"//chrome/browser/media/webrtc/system_media_capture_permissions_mac.mm\",\n \"//chrome/browser/media/webrtc/system_media_capture_permissions_stats_mac.h\",\n \"//chrome/browser/media/webrtc/sys...
2024-02-14T04:46:51
nodejs/node
7fdeeac4d34a66c023ab3c1bb791f123031a82fb
ee8810731dac3065395d892b8f82d366df687146
sea: only assert snapshot main function for main threads Snapshot main functions are only loaded for main threads in single executable applications. Update the check to avoid asserting it in worker threads - this allows worker threads to be spawned in snapshot main functions bundled into a single executable applicatio...
[ { "path": "src/node.cc", "patch": "@@ -320,7 +320,8 @@ MaybeLocal<Value> StartExecution(Environment* env, StartExecutionCallback cb) {\n CHECK(!env->isolate_data()->is_building_snapshot());\n \n #ifndef DISABLE_SINGLE_EXECUTABLE_APPLICATION\n- if (sea::IsSingleExecutable()) {\n+ // Snapshot in SEA is on...
2024-12-07T17:25:02
golang/go
9159cd4ec6b0e9475dc9c71c830035c1c4c13483
c6556b8eb3444b6d5473762ed1082039db7e03b5
encoding/json: decompose legacy options WARNING: This commit contains breaking changes for those already using GOEXPERIMENT=jsonv2. This decomposes FormatBytesWithLegacySemantics as: * FormatBytesWithLegacySemantics * FormatByteArrayAsArray * ParseBytesWithLooseRFC4648 This decomposes FormatTimeWithLegacySemantics a...
[ { "path": "src/encoding/json/internal/jsonflags/flags.go", "patch": "@@ -58,11 +58,14 @@ const (\n \t\tFormatNilSliceAsNull |\n \t\tMatchCaseInsensitiveNames |\n \t\tCallMethodsWithLegacySemantics |\n+\t\tFormatByteArrayAsArray |\n \t\tFormatBytesWithLegacySemantics |\n-\t\tFormatTimeWithLegacySemantics |\n...
2025-07-01T22:39:49
vercel/next.js
a225045924f20499e3368bc5f96db8c12d6f093c
82cfc5efff9e81158a08b15ae68a7ca53e96af2f
Docs: Fix broken getImageProps sample code (#83436) Co-authored-by: Jiachi Liu <inbox@huozhi.im>
[ { "path": "docs/01-app/03-api-reference/02-components/image.mdx", "patch": "@@ -891,7 +891,7 @@ The `getImageProps` function can be used to get the props that would be passed t\n ```jsx\n import { getImageProps } from 'next/image'\n \n-const props = getImageProps({\n+const { props } = getImageProps({\n sr...
2025-09-04T15:18:12
electron/electron
0218af9af0e4a8896e01b4272013b46d43fb4d6c
6a616ab70cfbc1483308af022ae6459e8e3fa7c8
fix: work around `unarchivedObjectOfClass` requiring `secureCoding` (#41319)
[ { "path": "patches/squirrel.mac/refactor_use_non-deprecated_nskeyedarchiver_apis.patch", "patch": "@@ -11,23 +11,33 @@ Several NSKeyedArchiver methods have been deprecated and replaced as of macOS 10\n - archivedDataWithRootObject -> archivedDataWithRootObject:requiringSecureCoding:error:\n \n diff --git a/...
2024-02-14T03:08:03
nodejs/node
f6f519c6b6118dadb442842de98f2d947b095407
0547dcfc005ae7d9b60d31a7edc90f5a180f907a
stream: commit pull-into descriptors after filling from queue Fixes: https://github.com/nodejs/node/issues/56044 PR-URL: https://github.com/nodejs/node/pull/56072 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
[ { "path": "lib/internal/webstreams/readablestream.js", "patch": "@@ -94,6 +94,7 @@ const {\n ArrayBufferViewGetByteLength,\n ArrayBufferViewGetByteOffset,\n AsyncIterator,\n+ canCopyArrayBuffer,\n cloneAsUint8Array,\n copyArrayBuffer,\n createPromiseCallback,\n@@ -2552,6 +2553,15 @@ function re...
2024-11-27T23:04:18
facebook/react
6090cab099a8f7f373e04c7eb2937425a8f80f80
583eb6770d56e9793d3660bd9c6782fdebc93729
Use a Wrapper Error for onRecoverableError with a "cause" Field for the real Error (#28736) We basically have four kinds of recoverable errors: - Hydration mismatches. - Server errored but client didn't. - Hydration render errored but client render didn't (in Root or Suspense boundary). - Concurrent render erro...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -2417,17 +2417,17 @@ describe('ReactDOMFizzServer', () => {\n \n ReactDOMClient.hydrateRoot(container, <App />, {\n onRecoverableError(error) {\n- Scheduler.log(\n- 'Log recoverable error: ' + nor...
2024-04-04T01:53:07