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
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
golang/go
155ba387a93fddbd6ced288fe539a55c31b2597e
ef3bb638de442dc41d1e34a32e893d2041731e8c
cmd/doc: properly set GOPROXY to avoid deprecation checks This change fixes a bug that was introduced in CL 675155. Instead of doing the two step download and run with GOPROXY=off, do the run with GOPROXY=<download cache>:$GOPROXY, so that we use the previously downloaded version of pkgsite as the latest. Fixes #7383...
[ { "path": "src/cmd/doc/main.go", "patch": "@@ -258,11 +258,22 @@ func doPkgsite(urlPath string) error {\n \t// exit before exiting ourselves.\n \tsignal.Ignore(signalsToIgnore...)\n \n+\t// Prepend the local download cache to GOPROXY to get around deprecation checks.\n+\tenv := os.Environ()\n+\tvars, err :=...
2025-05-22T16:40:51
vercel/next.js
4dc34109a49b688752572c9df480fde8d1773e5b
0ad13118dda40eb1275ef00e0d3aabcf906eb2e7
Fix: Disambiguate Mediapartners-Google user agent (#82536) `Mediapartners-Google` used to match both `HEADLESS_BROWSER_BOT_UA_RE` and `HTML_LIMITED_BOT_UA_RE`, causing inconsistent state values for `getBotType`, `isDomBotUA`, and `isHtmlLimitedBotUA`.
[ { "path": "packages/next/src/shared/lib/router/utils/html-bots.ts", "patch": "@@ -1,4 +1,6 @@\n // This regex contains the bots that we need to do a blocking render for and can't safely stream the response\n // due to how they parse the DOM. For example, they might explicitly check for metadata in the `head...
2025-08-11T23:36:18
electron/electron
c8156c3c57ad8b6e19353725805843202977c1e7
689d1b76de36ca6f63e291ef019da004b8ca3559
fix: failure on immutable `webContents.print(options)` (#39985) fix: failure on immutable webContents.print(options)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -345,49 +345,53 @@ WebContents.prototype.printToPDF = async function (options) {\n // TODO(codebytere): deduplicate argument sanitization by moving rest of\n // print param logic into new file shared between printToPDF and print\n WebContents.prototy...
2023-09-28T08:41:46
nodejs/node
86bdca9772f63d5566bd725df7f5e2bc4738f93d
4c0ad1fef1e83c3166a2177a8eb2326a93602cc2
repl: avoid interpreting 'npm' as a command when errors are recoverable This change ensures that 'npm' within JavaScript code is not mistakenly interpreted as an npm command when the error is recoverable. This allows 'npm' to be treated as expected in such scenarios. Fixes: https://github.com/nodejs/node/issues/54830...
[ { "path": "lib/repl.js", "patch": "@@ -931,7 +931,9 @@ function REPLServer(prompt,\n ReflectApply(_memory, self, [cmd]);\n \n if (e && !self[kBufferedCommandSymbol] &&\n- StringPrototypeStartsWith(StringPrototypeTrim(cmd), 'npm ')) {\n+ StringPrototypeStartsWith(StringPrototype...
2024-09-15T13:25:19
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
golang/go
a0dc7bf08481d906cb7d65d86bb347a583d84fd0
53b9eae3875122a65b387adf18c5cb7a67e824d7
cmd/compile: fix ICE when transforming loopvar When transforming for loop variables, the compiler does roughly following steps: (1) prebody = {z := z' for z in leaked} ... (4) init' = (init : s/z/z' for z in leaked) However, the definition of z is not updated to `z := z'` statement, causing Reassign...
[ { "path": "src/cmd/compile/internal/loopvar/loopvar.go", "patch": "@@ -305,6 +305,7 @@ func ForCapture(fn *ir.Func) []VarAndLoop {\n \t\t\t\t\t\tas := ir.NewAssignStmt(x.Pos(), z, tz)\n \t\t\t\t\t\tas.Def = true\n \t\t\t\t\t\tas.SetTypecheck(1)\n+\t\t\t\t\t\tz.Defn = as\n \t\t\t\t\t\tpreBody.Append(as)\n \t...
2025-05-22T11:06:27
vercel/next.js
0ad13118dda40eb1275ef00e0d3aabcf906eb2e7
78c544b1d53fc80e9e842559667822ff34abffd8
Turbopack: Rework watcher data structures, store watched list and watcher behind the same RwLock (#82258) Reworks the data structures used for the watcher to achieve a few goals: - I want to avoid multiple locks, as I don't think we actually need two different locks, and multiple locks leaves more room for bugs (e.g....
[ { "path": "turbopack/crates/turbo-tasks-fs/src/lib.rs", "patch": "@@ -261,11 +261,7 @@ impl DiskFileSystemInner {\n let invalidator = turbo_tasks::get_invalidator();\n self.invalidator_map\n .insert(path.to_owned(), invalidator, None);\n- if let Some(non_recursive) = &self...
2025-08-11T23:32:38
electron/electron
480f48b2fcf659e031e2440b9af67c38cc061aca
a0ae691a9c1da400904934803818d345c64cd258
feat: enable dark mode on GTK UIs (#38977) feat: port DarkModeManagerLinux This is needed after https://bugs.chromium.org/p/chromium/issues/detail?id=998903 and replaces the previous workaround to detect dark mode on GTK. Detect system dark theme preference via xdg settings portal: https://flatpak.github.io/xdg-...
[ { "path": "chromium_src/BUILD.gn", "patch": "@@ -204,6 +204,10 @@ static_library(\"chrome\") {\n \"//chrome/browser/ui/views/status_icons/status_icon_linux_dbus.cc\",\n \"//chrome/browser/ui/views/status_icons/status_icon_linux_dbus.h\",\n ]\n+ sources += [\n+ \"//chrome/browser/ui/v...
2023-09-27T18:17:40
nodejs/node
4c0ad1fef1e83c3166a2177a8eb2326a93602cc2
6db320acbc56f84ce06e9d365d215db56fa2dacc
doc: fix broken Android building link PR-URL: https://github.com/nodejs/node/pull/54922 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Xuguang Mei <meixuguang@gmail.com>
[ { "path": "doc/api/os.md", "patch": "@@ -1373,7 +1373,7 @@ The following process scheduling constants are exported by\n </tr>\n </table>\n \n-[Android building]: https://github.com/nodejs/node/blob/HEAD/BUILDING.md#androidandroid-based-devices-eg-firefox-os\n+[Android building]: https://github.com/nodejs/...
2024-09-15T12:29:18
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
golang/go
53b9eae3875122a65b387adf18c5cb7a67e824d7
27ff0f249c33fdfa9c8e17a0367b46561236f36c
runtime: use the immortal weak handle map for sbrk mode Currently weak pointers break in sbrk mode. We can just use the immortal weak handle map for weak pointers in this case, since nothing is ever freed. Fixes #69729. Change-Id: Ie9fa7e203c22776dc9eb3601c6480107d9ad0c99 Reviewed-on: https://go-review.googlesource....
[ { "path": "src/runtime/mheap.go", "patch": "@@ -2545,6 +2545,16 @@ func gcWakeAllStrongFromWeak() {\n \n // Retrieves or creates a weak pointer handle for the object p.\n func getOrAddWeakHandle(p unsafe.Pointer) *atomic.Uintptr {\n+\tif debug.sbrk != 0 {\n+\t\t// debug.sbrk never frees memory, so it'll nev...
2025-05-20T20:56:46
vercel/next.js
d75d90f3cf4502df4beb5cc3f1ae55482d4afda7
161a8ba0bf52499524dd2a8293d3fc5350d6cc83
docs: experimental config browserDebugInfoInTerminal (#82532) Adding docs for `browserDebugInfoInTerminal`
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/browserDebugInfoInTerminal.mdx", "patch": "@@ -0,0 +1,134 @@\n+---\n+title: browserDebugInfoInTerminal\n+description: Forward browser console logs and errors to your terminal during development.\n+version: experimental\n+---\n+\n+The `exper...
2025-08-11T21:08:18
electron/electron
f943b8c940386f196a10cf490ad9122d83ec59f5
b7c9c895b5a60ddce41b8563703b5d8516c76983
fix: set window contents as opaque to decrease DWM GPU usage (#39895) * set window contents as opaque to decrease DWM GPU usage * chore: add more context to ShouldWindowContentsBeTransparent
[ { "path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "patch": "@@ -133,4 +133,14 @@ void ElectronDesktopWindowTreeHostWin::OnNativeThemeUpdated(\n }\n }\n \n+bool ElectronDesktopWindowTreeHostWin::ShouldWindowContentsBeTransparent()\n+ const {\n+ // Window should be marked as opa...
2023-09-27T14:42:46
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
golang/go
27ff0f249c33fdfa9c8e17a0367b46561236f36c
d2db2372a2fd79d539719fa13422d83d6fdfcda1
cmd/compile/internal/ssa: eliminate string copies for calls to unique.Make unique.Make always copies strings passed into it, so it's safe to not copy byte slices converted to strings either. Handle this just like map accesses with string(b) as keys. This CL only handles unique.Make(string(b)), not nested cases like u...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2832,3 +2832,14 @@\n && clobber(sbts)\n && clobber(key)\n => (StaticLECall {f} [argsize] typ_ map_ (StringMake <typ.String> ptr len) mem)\n+\n+// Similarly to map lookups, also handle unique.Make for strings, which unique.Make wi...
2025-05-13T03:39:54
vercel/next.js
161a8ba0bf52499524dd2a8293d3fc5350d6cc83
d251264721d5f4f2e29a2feccfdf222845faa63c
Test that there are no server-side CSS chunks (#82471) A few months ago, this was fixed for Turbopack. Adding a regression test now
[ { "path": "test/e2e/app-dir/css-server-chunks/app/client/page.tsx", "patch": "@@ -0,0 +1,8 @@\n+'use client'\n+\n+import '../../global.css'\n+import styles from '../../styles.module.css'\n+\n+export default function Page() {\n+ return <div className={styles.foo}>Hello</div>\n+}", "additions": 8, "d...
2025-08-11T20:33:13
electron/electron
b7c9c895b5a60ddce41b8563703b5d8516c76983
1ba321b7332b0a462f04c4d1f921cefcb337f325
build: fix with `enable_pdf_viewer = false` (#39990) build: fix with enable_pdf_viewer = false
[ { "path": "shell/browser/extensions/api/resources_private/resources_private_api.cc", "patch": "@@ -13,15 +13,15 @@\n #include \"chrome/grit/generated_resources.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"components/zoom/page_zoom_constants.h\"\n-#include \"pdf/buildflags.h\"...
2023-09-27T14:09:53
facebook/react
583eb6770d56e9793d3660bd9c6782fdebc93729
a5aedd1e15733311d64ccab3fdd14db630067496
Emit Server Error Prefix in the .stack Property Too (#28738) Follow up to #28684. V8 includes the message in the stack and printed errors include just the stack property which is assumed to contain the message. Without this, the prefix doesn't get printed in the console. <img width="578" alt="Screenshot 2024-0...
[ { "path": "packages/react-server/src/ReactFizzServer.js", "patch": "@@ -842,7 +842,7 @@ function encodeErrorForBoundary(\n ? 'Switched to client rendering because the server rendering aborted due to:\\n\\n'\n : 'Switched to client rendering because the server rendering errored:\\n\\n';\n bou...
2024-04-04T01:52:54
golang/go
5e6a868b28d3e7a71fa328c18ff5e93d72a1fb67
8bf816ae6879fa4537cc6e6e292769df2d7dbb78
cmd/compile, unique: model data flow of non-string pointers Currently, hash/maphash.Comparable escapes its parameter if it contains non-string pointers, but does not escape strings or types that contain strings but no other pointers. This is achieved by a compiler intrinsic. unique.Make does something similar: it sto...
[ { "path": "src/cmd/compile/internal/escape/call.go", "patch": "@@ -84,15 +84,19 @@ func (e *escape) call(ks []hole, call ir.Node) {\n \t\t\targument(e.tagHole(ks, fn, param), arg)\n \t\t}\n \n-\t\t// hash/maphash.escapeForHash forces its argument to be on\n-\t\t// the heap, if it contains a non-string point...
2025-05-21T18:33:13
vercel/next.js
e822c80904f1db2c0773b18f5cd7bfce834ccd40
ee8286f126a11e30613d89dc5ffe4044fbe2fdd1
fix: add `?dpl` to fonts in `/_next/static/media` part 2 (#82488) This is a follow up to PR https://github.com/vercel/next.js/pull/82384 which fixed it for `<link>` but not for `next/font` that embeds local fonts in css. https://nextjs.org/docs/14/app/building-your-application/deploying#version-skew
[ { "path": "packages/font/src/google/loader.test.ts", "patch": "@@ -124,6 +124,7 @@ describe('next/font/google loader', () => {\n mockFetchResource.mockResolvedValue(Buffer.from('OK'))\n const { css } = await nextFontGoogleFontLoader({\n functionName,\n+ deploymentId: undef...
2025-08-11T20:18:08
electron/electron
1ba321b7332b0a462f04c4d1f921cefcb337f325
ad57867594c9f1be91846fedf7fe9ab22403ae81
fix: rounded corners on vibrant macOS modals (#39979) Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1420,11 +1420,21 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n \n if (vibrantView != nil && !vibrancy_type_.empty()) {\n const bool no_rounded_corner = !HasStyleMask(NSWindowStyleMaskTitled);\n- if (...
2023-09-27T13:12:37
facebook/react
a5aedd1e15733311d64ccab3fdd14db630067496
20e710aeab3e03809c82d134171986ea270026a0
Move console mocks to internal-test-utils (#28710) Moving this to `internal-test-utils` so I can add helpers in the next PR for: - assertLogDev - assertWarnDev - assertErrorDev Which will be exported from `internal-test-utils`. This isn't strictly necessary, but it makes the factoring nicer, so internal-test-u...
[ { "path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js", "patch": "@@ -12,6 +12,7 @@\n \n const React = require('react');\n const {startTransition, useDeferredValue} = React;\n+const chalk = require('chalk');\n const ReactNoop = require('react-noop-renderer');\n const {\n waitFor...
2024-04-03T20:02:04
golang/go
7589e9604237ad94869c5803af3bf428f108fefa
edcde86990abd9d7336eee5115b63d8c0863a5dd
cmd/compile: fold negation into addition/subtraction on s390x Fold negation into addition/subtraction and avoid double negation. file before after Δ % addr2line 3909260 3909204 -56 -0.001% asm 6714513 6714505 -8 -0.000% buildid 3680344 3679504 -840 -0.023% cgo 6...
[ { "path": "src/cmd/compile/internal/ssa/_gen/S390X.rules", "patch": "@@ -1188,6 +1188,8 @@\n // TODO: more of this\n (ADD x (NEG y)) => (SUB x y)\n (ADDW x (NEGW y)) => (SUBW x y)\n+(SUB x (NEG y)) => (ADD x y)\n+(SUBW x (NEGW y)) => (ADDW x y)\n (SUB x x) => (MOVDconst [0])\n (SUBW x x) => (MOVDconst [0])\...
2025-05-16T17:55:12
nodejs/node
a65105ec284023960e93b3a66f6661ddd2f4121f
c6f514c7ab72083bc96108afd776bc23c836844d
test: adjust tls test for OpenSSL32 Refs: https://github.com/nodejs/node/issues/53382 Looks like test is forcing an error through bad data and the error code we get is different for OpenSSL32. Adjust test to cope with the variation across versions. Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: https://...
[ { "path": "test/parallel/test-tls-alert-handling.js", "patch": "@@ -31,10 +31,17 @@ const max_iter = 20;\n let iter = 0;\n \n const errorHandler = common.mustCall((err) => {\n- assert.strictEqual(err.code, 'ERR_SSL_WRONG_VERSION_NUMBER');\n+ let expectedErrorCode = 'ERR_SSL_WRONG_VERSION_NUMBER';\n+ let ...
2024-09-14T16:55:40
vercel/next.js
ee8286f126a11e30613d89dc5ffe4044fbe2fdd1
2c1a3d153f15546d8ec03fe4e06e287d49f49a26
fix(next/image): use `image-size` pkg as additional format detector (#82538) In a previous PR https://github.com/vercel/next.js/pull/82118 we added a fallback to `sharp().metadata()` when the magic number didn't detect the image format in order to improve detection. But `sharp` can be slow to read metadata, so we sho...
[ { "path": "packages/next/src/compiled/image-detector/detector.js", "patch": "@@ -0,0 +1 @@\n+(()=>{\"use strict\";var t={436:(t,e,n)=>{Object.defineProperty(e,\"__esModule\",{value:true});e.BMP=void 0;const r=n(779);e.BMP={validate:t=>(0,r.toUTF8String)(t,0,2)===\"BM\",calculate:t=>({height:Math.abs((0,r.re...
2025-08-11T19:54:37
electron/electron
ad57867594c9f1be91846fedf7fe9ab22403ae81
e61359598214399cab97ca6a8ad541983059c331
fix: apply size constraints to NSWindow (#39975)
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -354,10 +354,14 @@ void NativeWindow::SetContentSizeConstraints(\n size_constraints_.reset();\n }\n \n+// Windows/Linux:\n // The return value of GetContentSizeConstraints will be passed to Chromium\n // to set min/max sizes of window. Note that we ...
2023-09-27T09:11:24
rust-lang/rust
3a8a3c74f27ff22b2bbb11594bfe2fcbfd8698a7
5c13e0ced9213c883f2dea69dfccfa29da1c9dd7
Remove resolved FIXME
[ { "path": "src/tools/rust-analyzer/crates/ide-db/src/imports/merge_imports.rs", "patch": "@@ -691,7 +691,6 @@ pub fn eq_attrs(\n attrs0: impl Iterator<Item = ast::Attr>,\n attrs1: impl Iterator<Item = ast::Attr>,\n ) -> bool {\n- // FIXME order of attributes should not matter\n let mut attrs0...
2026-02-14T23:47:49
facebook/react
20e710aeab3e03809c82d134171986ea270026a0
3761acb42bf9979314fff130d4d9505408bcb651
Cleanup enableUseRefAccessWarning flag (#28699) Cleanup enableUseRefAccessWarning flag I don't think this flag has a path forward in the current implementation. The detection by stack trace is too brittle to detect the lazy initialization pattern reliably (see e.g. some internal tests that expect the warning bec...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -33,7 +33,6 @@ import {\n enableDebugTracing,\n enableSchedulingProfiler,\n enableCache,\n- enableUseRefAccessWarning,\n enableLazyContextPropagation,\n enableTransitionTracing,\n enableUseMemoCacheHook,\n@@ -2330,90 +23...
2024-04-03T17:35:38
golang/go
edcde86990abd9d7336eee5115b63d8c0863a5dd
de457fc4ea50cc3ac9dd967161b8bc31b79a26dd
crypto,hash: add and implement hash.Cloner Fixes #69521 Co-authored-by: qiulaidongfeng <2645477756@qq.com> Change-Id: I6a6a465652f5ab7e6c9054e826e17df2b8b34e41 Reviewed-on: https://go-review.googlesource.com/c/go/+/675197 Reviewed-by: Roland Shoemaker <roland@golang.org> Auto-Submit: Filippo Valsorda <filippo@golang....
[ { "path": "api/next/69521.txt", "patch": "@@ -0,0 +1,9 @@\n+pkg crypto/sha3, method (*SHA3) Clone() (hash.Cloner, error) #69521\n+pkg hash, type Cloner interface { BlockSize, Clone, Reset, Size, Sum, Write } #69521\n+pkg hash, type Cloner interface, BlockSize() int #69521\n+pkg hash, type Cloner interface, ...
2025-05-21T21:55:43
nodejs/node
c6f514c7ab72083bc96108afd776bc23c836844d
efbba60e5b8aed95b2413ff4169632bf3605c963
test: fix test-http2-socket-close.js Fixes: https://github.com/nodejs/node/issues/54819 PR-URL: https://github.com/nodejs/node/pull/54900 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "test/parallel/parallel.status", "patch": "@@ -30,8 +30,6 @@ test-runner-watch-mode-complex: PASS, FLAKY\n test-async-context-frame: PASS, FLAKY\n # https://github.com/nodejs/node/issues/54534\n test-runner-run-watch: PASS, FLAKY\n-# https://github.com/nodejs/node/issues/54819\n-test-http2-socket-...
2024-09-14T16:01:56
vercel/next.js
0ec5511da47c98112e86290d2f1550ad261d91b2
13899e5f85529900822ee7f7dd05e10b7c0c44bf
Turbopack: fix CSS module references, take 2 (#82448) Replaces and closes https://github.com/vercel/next.js/pull/78058 Closes PACK-4324 Before, you got duplicate modules because `transition_to_client(postcss(webpack(source in rsc)) != postcss(webpack(transition_to_client(source in rsc))` Now, we have: ``` rsc layer ...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -314,8 +314,6 @@ jobs:\n export TURBOPACK_BUILD=1\n export NEXT_TEST_MODE=start\n export NEXT_TEST_REACT_VERSION=\"${{ matrix.react }}\"\n- # TODO(PACK-4578): Remove\n- export TURBOPACK_TEMP_DISABLE_DUPLICAT...
2025-08-11T18:16:10
electron/electron
624ae024e245f6bfc00fd1ad03f063cc40fe069c
2190793fe6351e50940dec077907eaac1f16471c
docs: Quick Start | Electron Forge chapter requirements updated (#39639) * Update quick-start.md Added a note to a pre-require of Electron Forge. Otherwise users will have an error `Cannot make for rpm, the following external binaries need to be installed: rpmbuild` * Add two required steps for Electron Forge t...
[ { "path": "docs/tutorial/quick-start.md", "patch": "@@ -459,7 +459,14 @@ To summarize all the steps we've done:\n The fastest way to distribute your newly created app is using\n [Electron Forge](https://www.electronforge.io).\n \n-1. Add Electron Forge as a development dependency of your app, and use its `i...
2023-09-26T23:56:39
rust-lang/rust
646418838fc494822f4814e6fd58a59f08d3575a
deaae4956d3cefc6a780e8e7520d0d5adff19ee5
fix: handle `ref mut` bindings in `contains_explicit_ref_binding` the standalone `contains_explicit_ref_binding` function only checked for `BindingAnnotation::Ref`, missing `BindingAnnotation::RefMut`. this caused `let ref mut x = expr` to incorrectly take the coercion path instead of preserving the exact type of the ...
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/pat.rs", "patch": "@@ -673,7 +673,7 @@ impl<'db> InferenceContext<'_, 'db> {\n pub(super) fn contains_explicit_ref_binding(body: &Body, pat_id: PatId) -> bool {\n let mut res = false;\n body.walk_pats(pat_id, &mut |pat| {\n- res |= ma...
2026-02-14T16:19:26
golang/go
3cc8b532f9d561397dd0c66496e1e1a82667c926
763963505e39b753d820ee9aea4791ad5bcc0274
testing: add Attr Add a new Attr method to testing.TB that emits a test attribute. An attribute is an arbitrary key/value pair. Fixes #43936 Change-Id: I7ef299efae41f2cf39f2dc61ad4cdd4c3975cdb6 Reviewed-on: https://go-review.googlesource.com/c/go/+/662437 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "api/next/43936.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg testing, method (*B) Attr(string, string) #43936\n+pkg testing, method (*F) Attr(string, string) #43936\n+pkg testing, method (*T) Attr(string, string) #43936\n+pkg testing, type TB interface, Attr(string, string) #43936", "additions": 4, ...
2025-04-03T00:37:34
facebook/react
f33e63838d99aac5efc84a38cde84966f15801a1
0846daaa54537d3df212903bf37bab92e44f9c07
Update copyrights to reference Meta instead of Facebook Thanks @zpao!!! This was mostly his work, i just fixed up the last bit.
[ { "path": "compiler/LICENSE", "patch": "@@ -1,6 +1,6 @@\n MIT License\n \n-Copyright (c) Facebook, Inc. and its affiliates.\n+Copyright (c) Meta Platforms, Inc. and affiliates.\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation f...
2024-04-03T15:43:36
nodejs/node
efbba60e5b8aed95b2413ff4169632bf3605c963
c3e1c31baa8f4a59ef49ea0d0429ec55efe2ca81
path: fix bugs and inconsistencies Fixes: https://github.com/nodejs/node/issues/54025 PR-URL: https://github.com/nodejs/node/pull/54224 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bri...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -702,7 +702,7 @@ Module._findPath = function(request, paths, isMain) {\n \n let exts;\n const trailingSlash = request.length > 0 &&\n- (StringPrototypeCharCodeAt(request, request.length - 1) === CHAR_FORWARD_SLASH || (\n+ ((StringPrototy...
2024-09-14T14:56:31
vercel/next.js
5f6cb1c60731d5388a86710e465b959871221989
e9a5067e5165f98b53e1c8f58d19873d44345a44
[turbopack] Fix the build under `--features=tokio_tracing` (#81979) ## Fix the build under the `tokio_tracing` feature https://github.com/vercel/next.js/pull/80738 changed the definition of LocalTaskSpec and moved the Display trait impl down to LocalTaskType but updating this use was missed since it is guarded by a f...
[ { "path": "turbopack/crates/turbo-tasks/src/manager.rs", "patch": "@@ -810,7 +810,7 @@ impl<B: Backend + 'static> TurboTasks<B> {\n let description = format!(\n \"[local] (parent: {}) {}\",\n self.backend.get_task_description(parent_task_id),\n- ty,\n+ t...
2025-08-11T16:09:12
electron/electron
2190793fe6351e50940dec077907eaac1f16471c
fa215f1009d17724c1c83845d0e65b3a8082e86d
fix: disable background throttling also in the `viz::DisplayScheduler` (#38924) * fix: disable background throttling also in the `viz::DisplayScheduler` `viz::DisplayScheduler` is responsible for drawing and swapping frames in the `DisplayScheduler::DrawAndSwap` which is called from the `DisplayScheduler::Attempt...
[ { "path": "docs/api/structures/web-preferences.md", "patch": "@@ -74,7 +74,11 @@\n * `defaultEncoding` string (optional) - Defaults to `ISO-8859-1`.\n * `backgroundThrottling` boolean (optional) - Whether to throttle animations and timers\n when the page becomes background. This also affects the\n- [Page...
2023-09-26T20:00:46
facebook/react
dc545c8d6eaca87c8d5cabfab6e1c768ecafe426
8f55a6aa5739ed8ca80c3066fb54f4ea4cfe600a
Fix: Class components should "consume" ref prop (#28719) When a ref is passed to a class component, the class instance is attached to the ref's current property automatically. This different from function components, where you have to do something extra to attach a ref to an instance, like passing the ref to `useIm...
[ { "path": "packages/react-dom/src/__tests__/ReactCompositeComponent-test.js", "patch": "@@ -261,29 +261,17 @@ describe('ReactCompositeComponent', () => {\n await act(() => {\n root.render(<Component ref={refFn1} />);\n });\n- if (gate(flags => flags.enableRefAsProp)) {\n- expect(instan...
2024-04-03T03:15:04
nodejs/node
3569493ba7ec1eb6884acf4899a2bd4406f0b62d
c4f295470392db237c0adfc9832214538a99a034
test: deflake test-dns Prevent responses from being cached. Fixes: https://github.com/nodejs/node/issues/54124 PR-URL: https://github.com/nodejs/node/pull/54902 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/parallel/test-dns.js", "patch": "@@ -361,11 +361,11 @@ assert.throws(() => {\n const cases = [\n { method: 'resolveAny',\n answers: [\n- { type: 'A', address: '1.2.3.4', ttl: 3333333333 },\n- { type: 'AAAA', address: '::42', ttl: 3333333333 },\n- { type: 'MX'...
2024-09-14T14:09:11
golang/go
0aeaa6a495b7273f7a2190bc9857710190808e54
88679da4a396de98e975deb0e007b1d888a55676
crypto/x509: use truncated SHA-256 for SubjectKeyId Fixes #71746 Change-Id: I6a6a46568b092933d8ac2039df99ee9f0edf6e56 Reviewed-on: https://go-review.googlesource.com/c/go/+/674477 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Roland Shoemaker <rolan...
[ { "path": "doc/godebug.md", "patch": "@@ -183,6 +183,9 @@ limits. The default value `updatemaxprocs=1` will enable periodic updates.\n Go 1.25 disabled SHA-1 signature algorithms in TLS 1.2 according to RFC 9155.\n The default can be reverted using the `tlssha1=1` setting.\n \n+Go 1.25 switched to SHA-256 t...
2025-05-20T18:51:11
vercel/next.js
e9a5067e5165f98b53e1c8f58d19873d44345a44
74a0aa2f2de22983f73a0f185a86bf425e26c650
[turbopack] Promote `exports` and module to factory parameters for cjs (#82285) ## Optimze cjs codegen by promoting `module` and `exports` to factory parameters *tl;dr; destructing is hard, lets go shopping!* Currently we prefix factories for cjs modules with `var {m:module, e:exports} = __turbopack_context__;` Thi...
[ { "path": "crates/next-core/src/hmr_entry.rs", "patch": "@@ -192,7 +192,6 @@ impl EcmascriptChunkItem for HmrEntryChunkItem {\n inner_code: code.build(),\n options: EcmascriptChunkItemOptions {\n strict: true,\n- module: true,\n ..Defaul...
2025-08-11T15:36:53
electron/electron
943bfa89ceab95dd4435482d69d5c79bf97abcb2
d75a852743283026d71d9f743032eaea84691a11
test: fixup parallel/test-node-output-error test (#39972)
[ { "path": "patches/node/chore_update_fixtures_errors_force_colors_snapshot.patch", "patch": "@@ -11,7 +11,7 @@ trying to see whether or not the lines are greyed out. One possibility\n would be to upstream a changed test that doesn't hardcode line numbers.\n \n diff --git a/test/fixtures/errors/force_colors....
2023-09-25T20:23:05
nodejs/node
c4f295470392db237c0adfc9832214538a99a034
45f44badaf120d9d0cab608a1e226fc0e74a57b7
test: fix test test-tls-dhe for OpenSSL32 Refs: https://github.com/nodejs/node/issues/53382 - OpenSSL32 has a minimum dh key size by 2048 by default. - Adjust test to use larger 3072 key instead of 1024 when OpenSSL32 is present. Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: https://github.com/nodejs...
[ { "path": "test/parallel/test-tls-dhe.js", "patch": "@@ -43,9 +43,12 @@ const dheCipher = 'DHE-RSA-AES128-SHA256';\n const ecdheCipher = 'ECDHE-RSA-AES128-SHA256';\n const ciphers = `${dheCipher}:${ecdheCipher}`;\n \n-// Test will emit a warning because the DH parameter size is < 2048 bits\n-common.expectWa...
2024-09-14T13:25:24
golang/go
aab8552088ae06ee7d6515d0dfc9efa7979feb5c
59211acb5dbde14647e025eb7379675debcf3930
crypto/tls: use decode alert for handshake msg unmarshal err Previously if instances of the handshakeMessage interface returned false from unmarshal(), indicating an umarshalling error, the crypto/tls package would emit an unexpected_message alert. This commit changes to use a decode_error alert for this condition ins...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -66,20 +66,13 @@\n \"SupportTicketsWithSessionID\": \"We don't support session ID resumption\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this should be fixed\",\n \"SupportedVersionSelection-TLS12\": \"TODO: first pass,...
2025-05-17T15:17:21
facebook/react
284f7764205f2c707d39ad493b7676f74f980c07
a53f208f5e4dfc3cf7c34a4b51e44c07a9a24880
[be] Clean up already fixed "bug" fixtures These are already fixed, renamed to clarify that they are just repros of previous bugs
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-object-pattern.expect.md", "patch": "@@ -10,8 +10,7 @@ function component(t) {\n \n export const FIXTURE_ENTRYPOINT = {\n fn: component,\n- params: [\"TodoAdd\"],\n- isComponent: \"TodoAdd\",\n+ params: [{ a: 4...
2024-04-02T19:43:44
nodejs/node
45f44badaf120d9d0cab608a1e226fc0e74a57b7
cb20c5b9f46c64d28bf495814fec5fe8a89b663d
doc, build: fixup build docs PR-URL: https://github.com/nodejs/node/pull/54899 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -206,8 +206,7 @@ For use of AVX2,\n * llvm version 3.3 or higher\n * nasm version 2.10 or higher in Windows\n \n-Please refer to\n-<https://www.openssl.org/docs/man1.1.1/man3/OPENSSL_ia32cap.html> for details.\n+Please refer to <https://docs.openssl.org/1.1.1/man3/OPENS...
2024-09-14T11:45:38
rust-lang/rust
d15d7149b17e8b399cf4030580649cc18b59ed6a
deaae4956d3cefc6a780e8e7520d0d5adff19ee5
fix smol_str compilation error the command 'cargo build --no-default-features --features borsh' failed with: error[E0599]: no function or associated item named 'other' found for struct 'borsh::io::Error' in the current scope --> lib/smol_str/src/borsh.rs:33:39 | 33 | .ok_or_else(|| Error::other(...
[ { "path": "src/tools/rust-analyzer/lib/smol_str/src/borsh.rs", "patch": "@@ -29,8 +29,9 @@ impl BorshDeserialize for SmolStr {\n }))\n } else {\n // u8::vec_from_reader always returns Some on success in current implementation\n- let vec = u8::vec_from_reader(len, r...
2026-02-14T20:02:46
electron/electron
2085aae915e4618844910f8937d9bbeef543fc20
7c2df8860bdbc0121eb2b91d4f587e5a3e8dd443
docs: esm tutorial (#39722) * docs: esm tutorial * Update esm.md * Update docs/tutorial/esm.md Co-authored-by: Michaela Laurencin <35157522+mlaurencin@users.noreply.github.com> * table adjustment * fix lint * Update docs/tutorial/esm.md Co-authored-by: David Sanders <dsanders11@ucsbalum.com> * ...
[ { "path": "docs/tutorial/esm-limitations.md", "patch": "@@ -1,38 +0,0 @@\n-# ESM Limitations\n-\n-This document serves to outline the limitations / differences between ESM in Electron and ESM in Node.js and Chromium.\n-\n-## ESM Support Matrix\n-\n-This table gives a general overview of where ESM is support...
2023-09-22T16:49:16
facebook/react
a53f208f5e4dfc3cf7c34a4b51e44c07a9a24880
8b9edafa95f5657cbccb11e4c226abd7953df8f0
Fixture for conditional use() This is mostly to ensure we don't flag this as a conditional hook, but since i'm here i made it a proper test.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/use-operator-conditional.expect.md", "patch": "@@ -0,0 +1,154 @@\n+\n+## Input\n+\n+```javascript\n+import { ValidateMemoization } from \"shared-runtime\";\n+import { use, useMemo } from \"react\";\n+\n+const FooContext =...
2024-04-02T18:36:11
golang/go
59211acb5dbde14647e025eb7379675debcf3930
4158ca8d7c521aee5cc48f285f559e74845e973c
crypto/tls: disable SHA-1 signature algorithms in TLS 1.2 This implements RFC 9155 by removing support for SHA-1 algorithms: - we don't advertise them in ClientHello and CertificateRequest (where supportedSignatureAlgorithms is used directly) - we don't select them in our ServerKeyExchange and CertificateVer...
[ { "path": "doc/godebug.md", "patch": "@@ -180,6 +180,9 @@ runtime will periodically update GOMAXPROCS for new CPU affinity or cgroup\n limits. The default value `updatemaxprocs=1` will enable periodic updates.\n `updatemaxprocs=0` will disable periodic updates.\n \n+Go 1.25 disabled SHA-1 signature algorith...
2025-03-15T14:12:39
nodejs/node
05ad94789916563664acb666a7ac367fd8b2cc8b
aff2214ca9b13dafee25e8c2d7e0eebeebd0f176
http: reduce likelihood of race conditions on keep-alive timeout Fixes: https://github.com/nodejs/node/issues/52649 Refs: https://github.com/nodejs/node/issues/54293 Co-authored-by: Arrigo Zanette <zanettea@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54863 Reviewed-By: James M Snell <jasnell@gmail.com> Rev...
[ { "path": "lib/_http_agent.js", "patch": "@@ -49,6 +49,9 @@ const {\n const kOnKeylog = Symbol('onkeylog');\n const kRequestOptions = Symbol('requestOptions');\n const kRequestAsyncResource = Symbol('requestAsyncResource');\n+\n+// TODO(jazelly): make this configurable\n+const HTTP_AGENT_KEEP_ALIVE_TIMEOUT_...
2024-09-09T13:17:10
rust-lang/rust
8d96e266848feb3d04b4216ba9e31f7c111e3e45
035b01b794602d5861daa43ac792f372f8981ed7
Add regression test for struct ctor used as array repeat count under mGCA Using a struct constructor (DefKind::Ctor(Struct, Const)) as an array repeat count with `#![feature(min_generic_const_args)]` used to trigger an ICE in const alias normalization. Add a regression test to ensure the compiler produces a proper typ...
[ { "path": "tests/ui/const-generics/mgca/struct-ctor-in-array-len.rs", "patch": "@@ -0,0 +1,16 @@\n+// Regression test for https://github.com/rust-lang/rust/issues/141738\n+//\n+// Using a struct constructor as an array repeat count with\n+// `min_generic_const_args` used to ICE with \"unexpected `DefKind`\n...
2026-02-14T19:44:50
electron/electron
7c2df8860bdbc0121eb2b91d4f587e5a3e8dd443
56e45baeb8205da41f3a1a06582cf9958fc9cff2
docs: tiny update on example message-ports.md (#39884) Update message-ports.md fix multiplying object * a number. It would multiply number * number.
[ { "path": "docs/tutorial/message-ports.md", "patch": "@@ -365,7 +365,7 @@ window.onmessage = (event) => {\n // process.\n port.onmessage = (event) => {\n console.log('from main process:', event.data)\n- port.postMessage(event.data * 2)\n+ port.postMessage(event.data.test * 2)\n }...
2023-09-21T15:46:23
golang/go
eb4069127a7dbdaed480aed80ba6ed1b2ea27901
e90acc814de247f58330be1d8ba3b11c78c96077
crypto/ecdsa: add low-level encoding functions for keys Fixes #63963 Change-Id: I6a6a4656a729b6211171aca46bdc13fed5fc5643 Reviewed-on: https://go-review.googlesource.com/c/go/+/674475 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Filippo Valsorda <filippo@golan...
[ { "path": "api/next/63963.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg crypto/ecdsa, func ParseRawPrivateKey(elliptic.Curve, []uint8) (*PrivateKey, error) #63963\n+pkg crypto/ecdsa, func ParseUncompressedPublicKey(elliptic.Curve, []uint8) (*PublicKey, error) #63963\n+pkg crypto/ecdsa, method (*PrivateKey) Bytes() ...
2025-05-20T15:34:57
nodejs/node
aff2214ca9b13dafee25e8c2d7e0eebeebd0f176
fee02c70ee780558e3044066cde6d217b56c0230
build: fix conflicting V8 object print flags Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54785 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "configure.py", "patch": "@@ -1671,7 +1671,7 @@ def configure_v8(o, configs):\n o['variables']['v8_enable_short_builtin_calls'] = 1\n if options.v8_enable_snapshot_compression:\n o['variables']['v8_enable_snapshot_compression'] = 1\n- if options.v8_enable_object_print and options.v8_dis...
2024-09-03T09:20:21
electron/electron
5f712fa3250c137b286ad96f63ec3c232cb6e6fa
ba8915242a60ab3fbe7a2139ad9d5b2626af4e26
chore: cherry-pick tls shutdown crash fix from upstream (#39928)
[ { "path": "patches/node/.patches", "patch": "@@ -44,3 +44,7 @@ chore_update_fixtures_errors_force_colors_snapshot.patch\n fix_assert_module_in_the_renderer_process.patch\n src_cast_v8_object_getinternalfield_return_value_to_v8_value.patch\n fix_add_trusted_space_and_trusted_lo_space_to_the_v8_heap.patch\n+t...
2023-09-21T13:47:31
vercel/next.js
74a0aa2f2de22983f73a0f185a86bf425e26c650
2c3e9d83b2e1e8824c32788c3eed434e5a636029
[turbopack] Fix a small issue in the analyzer where we wouldn't skip assignments to free vars that were just identifiers (#82392) Correctly skip assignments when replacing free variables Drop an `Option<..>` for a parameter that is always supplied. These are fixes i tripped over when attempting to compile time repla...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/mod.rs", "patch": "@@ -2042,11 +2042,11 @@ impl JsValue {\n /// Returns any matching defined replacement that matches this value (the replacement that\n /// matches `$self.$prop`).\n ///\n- /// Optionally when passed a VarGraph, ve...
2025-08-11T15:31:56
golang/go
430a3dc4587a9a3f8696d6eb34c8265877022e34
e4216d54f58616b862013e2810436462db08b6ed
crypto/internal/cryptotest: test Armv8.2 on darwin/arm64 Fixes #69593 Cq-Include-Trybots: luci.golang.try:gotip-darwin-arm64_15 Change-Id: I6a6a4656302d65b582df582fa12bb72b88b0316d Reviewed-on: https://go-review.googlesource.com/c/go/+/667755 Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Roland Shoemaker...
[ { "path": "src/crypto/internal/cryptotest/implementations.go", "patch": "@@ -7,6 +7,7 @@ package cryptotest\n import (\n \t\"crypto/internal/boring\"\n \t\"crypto/internal/impl\"\n+\t\"internal/goarch\"\n \t\"internal/goos\"\n \t\"internal/testenv\"\n \t\"testing\"\n@@ -35,15 +36,14 @@ func TestAllImplement...
2025-04-23T21:15:51
nodejs/node
e21984b70cbb31577cc80d4c047ae4d78e6fdda6
59220bb08a4608c64e73409a8bd05e47a9d277ce
test_runner: update kPatterns PR-URL: https://github.com/nodejs/node/pull/54728 Fixes: https://github.com/nodejs/node/issues/54726 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Jake Yue...
[ { "path": "lib/internal/test_runner/utils.js", "patch": "@@ -51,7 +51,7 @@ const coverageColors = {\n const kMultipleCallbackInvocations = 'multipleCallbackInvocations';\n const kRegExpPattern = /^\\/(.*)\\/([a-z]*)$/;\n \n-const kPatterns = ['test', 'test/**/*', 'test-*', '*[.-_]test'];\n+const kPatterns =...
2024-09-13T02:51:35
vercel/next.js
78923b14f213e1f18203b2aa9b8e63dfb4a5b447
7dd77fea73e7ffe5fe16973d27536063f32d89b7
fix: swc tracing (#82470) regression introduced in https://github.com/vercel/next.js/pull/67166/files#diff-907b7be0cfc75bd37773e5ebc38d1deffa40861b8ac1cde92e4992e284a1ee59R1324 <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that ...
[ { "path": "packages/next/src/build/swc/index.ts", "patch": "@@ -1532,7 +1532,7 @@ export function getBinaryMetadata() {\n *\n */\n export function initCustomTraceSubscriber(traceFileName?: string) {\n- if (swcTraceFlushGuard) {\n+ if (!swcTraceFlushGuard) {\n // Wasm binary doesn't support trace emi...
2025-08-08T19:22:19
electron/electron
ba8915242a60ab3fbe7a2139ad9d5b2626af4e26
c9eb3deab58f2562113866eaf89d094e60f8184a
ci: fix linux builds of forks (#39933)
[ { "path": ".circleci/config/base.yml", "patch": "@@ -1074,7 +1074,7 @@ commands:\n condition:\n or:\n - equal: [<< parameters.could-be-aks >>, false]\n- - equal: [<< pipeline.parameters.large-linux-executor >>, xlarge]\n+ - equal: [<< pipeline.pa...
2023-09-21T10:10:46
facebook/react
e61f9832643ee988a75a49dbf11bc3a52ae3d708
5485ed0855dd457f9f1065062911f23aff2264b9
Fix yarn dev
[ { "path": "compiler/apps/playground/package.json", "patch": "@@ -3,7 +3,7 @@\n \"version\": \"0.1.0\",\n \"private\": true,\n \"scripts\": {\n- \"dev\": \"NODE_ENV=development && next dev\",\n+ \"dev\": \"NODE_ENV=development next dev\",\n \"build\": \"next build && node ./scripts/downloadFo...
2024-04-02T16:18:12
golang/go
c06eef27d754b0c4e112dbff1233e393a8362844
988eb0d11e8d96e8ca150f401ed82326b276f653
runtime: skip TestTimePprof on sanitizers This test asserts there is no external code, but the sanitizer runtimes are external code. Fixes #73783. Cq-Include-Trybots: luci.golang.try:gotip-windows-amd64-race Change-Id: I6a6a636cf93b7950e3ea35e00ec2eaf89911d712 Reviewed-on: https://go-review.googlesource.com/c/go/+/6...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -854,6 +854,9 @@ func TestTimePprof(t *testing.T) {\n \tcase \"aix\", \"darwin\", \"illumos\", \"openbsd\", \"solaris\":\n \t\tt.Skipf(\"skipping on %s because nanotime calls libc\", runtime.GOOS)\n \t}\n+\tif race.Enabled || asan.Enabled || msan.Enabled {...
2025-05-21T20:14:19
nodejs/node
92ca0b7ec138317161e18fc7b7f5550989c06fa0
f5f67ae4a76f15df47fdf3f1253aba695c3d0ab9
test: strip color chars in `test-runner-run` Fixes: https://github.com/nodejs/node/issues/54551 PR-URL: https://github.com/nodejs/node/pull/54552 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "test/parallel/test-runner-run.mjs", "patch": "@@ -4,6 +4,7 @@ import { join } from 'node:path';\n import { describe, it, run } from 'node:test';\n import { dot, spec, tap } from 'node:test/reporters';\n import assert from 'node:assert';\n+import util from 'node:util';\n \n const testFixtures = fi...
2024-09-12T23:13:04
vercel/next.js
46709a2a0eb9d3fd92320e1bd4889006c90c5293
e590df4b20838df1bf0558570de49cc933c2f423
docs: update revalidatePath, revalidateTag docs to be more consistent + highlight res.revalidate case (#82479) - uses invalidate instead of revalidate to make more explicit the revalidatePath, revalidateTag behavior - highlights that eager revalidation can still happen with the pages router method <!-- Thanks for ope...
[ { "path": "docs/01-app/02-guides/incremental-static-regeneration.mdx", "patch": "@@ -281,17 +281,19 @@ We recommend setting a high revalidation time. For instance, 1 hour instead of 1\n \n ### On-demand revalidation with `revalidatePath`\n \n-For a more precise method of revalidation, invalidate pages on-de...
2025-08-08T18:39:22
electron/electron
58fd8825d224c855cc8290f0a9985c21d4f3c326
6a8b70639ba20655812fbd8201380fd0769ca70b
fix: add support for ELECTRON_OZONE_PLATFORM_HINT env var (#39792) Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "docs/api/environment-variables.md", "patch": "@@ -111,6 +111,16 @@ Options:\n * `kioclient5`\n * `kioclient`\n \n+### `ELECTRON_OZONE_PLATFORM_HINT` _Linux_\n+\n+Selects the preferred platform backend used on Linux. The default one is `x11`. `auto` selects Wayland if possible, X11 otherwise.\n+\n...
2023-09-20T20:21:23
facebook/react
48ec17b865f439754fcdaa289ef0aa98f15a05c2
4ecea96c55a936c208f770e151cc5e3985817c9a
Differentiate null and undefined in Custom Elements - removing sets to undefined (#28716) In React DOM, in general, we don't differentiate between `null` and `undefined` because we expect to target DOM APIs. When we're setting a property on a Custom Element, in the new heuristic, the goal is to allow passing whatev...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -1301,7 +1301,7 @@ export function setInitialProperties(\n continue;\n }\n const propValue = props[propKey];\n- if (propValue == null) {\n+ if (propValue === undefined) {\n...
2024-04-02T15:48:27
golang/go
50484d3b4e691d361d009d5e4a07c182b35471a0
b6e251b264869fac4ddc158fb9a5c8d5b4ac086f
cmd/go/internal/doc: ignore SIGINT and SIGQUIT Just like we do in cmd/doc when we start pkgsite, ignore SIGINT (and SIGQUIT on unix) when we start cmd/doc so that it's handled by cmd/doc (if pkgsite is not started, and before it is started) or pkgsite, if it is started. Also exit with the exit status of the command, r...
[ { "path": "src/cmd/go/internal/base/base.go", "patch": "@@ -191,20 +191,28 @@ func GetExitStatus() int {\n // connected to the go command's own stdout and stderr.\n // If the command fails, Run reports the error using Errorf.\n func Run(cmdargs ...any) {\n+\tif err := RunErr(cmdargs...); err != nil {\n+\t\t...
2025-05-21T16:20:59
nodejs/node
e60caeebdab832291f71bf2684adca5470ec9ec3
6cc4d5fc87503a6bc033b70f125d319d46f1c01e
test: deflake test-http2-misbehaving-multiplex Fixes: https://github.com/nodejs/node/issues/54859 PR-URL: https://github.com/nodejs/node/pull/54872 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "test/parallel/test-http2-misbehaving-multiplex.js", "patch": "@@ -11,18 +11,30 @@ const h2 = require('http2');\n const net = require('net');\n const { NghttpError } = require('internal/http2/util');\n const h2test = require('../common/http2');\n+let client;\n \n const server = h2.createServer();\...
2024-09-12T15:48:13
vercel/next.js
6797a087e54184b4cbe1b0ce18d3fe64d89e40eb
dcece129286274b6c4bc510cfdb2ff2c84bdf9b5
Fix: Do not force BLOCKING_STATIC_RENDER for DOM bots (#82427) The issue was that DOM bots with PPR-enabled routes were being forced to use BLOCKING_STATIC_RENDER mode, which prevented them from using the fallback cache lookup mechanism. This caused them to generate new content with isRevalidating: true, which blocks ...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -653,11 +653,13 @@ export async function handler(\n fallbackMode = parseFallbackField(prerenderInfo.fallback)\n }\n \n- // When serving a bot request, we want to serve a blocking render and not\n- // the prerende...
2025-08-08T17:03:27
facebook/react
4eb241a94ff42d4226e4f9d6d397f4f8a8fadc8e
6e650109999e5f483fcb910ff20fe8148a566cb2
Bump nvmrc to Node.js v18 (#28707) Bump nvmrc to Node.js v18 Node.js v16 is long deprecated, seems like for v20 there's some more stuff to fix.
[ { "path": ".nvmrc", "patch": "@@ -1 +1 @@\n-v16.19.1\n+v18.20.0", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2024-04-02T14:04:19
electron/electron
6a8b70639ba20655812fbd8201380fd0769ca70b
1766511e3462274efb93858ab4c083a3d212482e
fix: `app.runningUnderARM64Translation()` always returning true on Windows ARM64 (#39920) fix: app.runningUnderARM64Translation() always returning true on ARM64
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -19,6 +19,7 @@\n #include \"base/path_service.h\"\n #include \"base/system/sys_info.h\"\n #include \"base/values.h\"\n+#include \"base/win/windows_version.h\"\n #include \"chrome/browser/browser_process.h\"\n #include \"chrome/browser/icon_mana...
2023-09-20T20:15:19
nodejs/node
6cc4d5fc87503a6bc033b70f125d319d46f1c01e
9db6327af3272c4125d20c078010600629506a26
doc, meta: fix broken link in `onboarding.md` PR-URL: https://github.com/nodejs/node/pull/54886 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com...
[ { "path": "onboarding.md", "patch": "@@ -117,7 +117,7 @@ The project has a venue for real-time discussion:\n * You can always refer to the\n [full moderation policy](https://github.com/nodejs/admin/blob/main/Moderation-Policy.md).\n * You can contact someone in the\n- [full list of moderation tea...
2024-09-12T06:35:07
golang/go
1881d680b0b573c32d3002c37902760668ffec0f
ef20ccc10bf6e4d3991c9e29c7fae1c9ab338629
net/http: add CrossOriginProtection Fixes #73626 Change-Id: I6a6a4656862e7a38acb65c4815fb7a1e04896172 Reviewed-on: https://go-review.googlesource.com/c/go/+/674936 Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Filippo Valsorda <filippo@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc...
[ { "path": "api/next/73626.txt", "patch": "@@ -0,0 +1,7 @@\n+pkg net/http, func NewCrossOriginProtection() *CrossOriginProtection #73626\n+pkg net/http, method (*CrossOriginProtection) AddInsecureBypassPattern(string) #73626\n+pkg net/http, method (*CrossOriginProtection) AddTrustedOrigin(string) error #7362...
2025-05-21T13:35:51
vercel/next.js
dcece129286274b6c4bc510cfdb2ff2c84bdf9b5
e30dd09f29cf4a82c50c7719a773a388e98b3ddc
[errors] revamp graceful degrade error boundary (#82474)
[ { "path": "packages/next/src/client/app-index.tsx", "patch": "@@ -21,7 +21,6 @@ import type { InitialRSCPayload } from '../server/app-render/types'\n import { createInitialRouterState } from './components/router-reducer/create-initial-router-state'\n import { MissingSlotContext } from '../shared/lib/app-rou...
2025-08-08T16:58:42
facebook/react
cd3f56bb18a88562d767d466ecae489fb3c2fb86
1de6c5aea207ac2beac375aa80287acfcfb567a0
[eslint] Enforce generic array type syntax Fix and enforce generic array type syntax
[ { "path": "compiler/packages/babel-plugin-react-forget/.eslintrc.js", "patch": "@@ -73,7 +73,7 @@ module.exports = {\n \"off\",\n \"constructor\",\n ],\n- \"@typescript-eslint/array-type\": [\"off\", \"generic\"],\n+ \"@typescript-eslint/array-type\": [\"error\", { default: \"generic\"...
2024-04-02T14:31:25
nodejs/node
d9ca8b018efd172a99365ada8f536491b19bd87b
8eb9353b037f1b494f70ba6dd446471672a7034a
test: fix test-tls-client-mindhsize for OpenSSL32 Refs: https://github.com/nodejs/node/issues/53382 - OpenSSL32 has a minimum dh key size by 2048 by default. - Create larter 3072 dh key needed for testing and adjust tests to use it for builds with OpenSSL32 Signed-off-by: Michael Dawson <midawson@redhat.com> PR-...
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -24,6 +24,7 @@ all: \\\n dh512.pem \\\n dh1024.pem \\\n dh2048.pem \\\n+ dh3072.pem \\\n dherror.pem \\\n dh_private.pem \\\n dh_public.pem \\\n@@ -596,6 +597,9 @@ dh1024.pem:\n dh2048.pem:\n \topenssl dhparam -out dh2048.pem 2048\n \n+dh307...
2024-09-03T16:27:53
golang/go
d54703c94ae906a5e851ae95909b6eb2f0314e19
d82cb03debff0180aa705129e8a00e89c3fe8251
runtime: use DontUpdate testprog for DontUpdate test This is a typo in CL 670497. The test is using the wrong testprog function. The testprog also needs to assert that GOMAXPROCS doesn't change, not that it is equal to NumCPU, for the GOMAXPROCS=4 case. For #73193. Cq-Include-Trybots: luci.golang.try:gotip-windows-...
[ { "path": "src/runtime/gomaxprocs_windows_test.go", "patch": "@@ -32,7 +32,7 @@ func TestCgroupGOMAXPROCSDontUpdate(t *testing.T) {\n \t// update feature.\n \tfor _, v := range []string{\"GOMAXPROCS=4\", \"GODEBUG=updatemaxprocs=0\"} {\n \t\tt.Run(v, func(t *testing.T) {\n-\t\t\tgot := runTestProg(t, \"test...
2025-05-21T18:49:40
electron/electron
1766511e3462274efb93858ab4c083a3d212482e
28eda03abaf83ac2c481fa1ae6c4d90b2f4a19f0
chore: bump node to v18.18.0 (main) (#39915) * chore: bump node in DEPS to v18.18.0 * child_process: harden against prototype pollution https://github.com/nodejs/node/pull/48726 * deps: upgrade to libuv 1.46.0 https://github.com/nodejs/node/pull/49591 * module: reduce url invocations in esm/load.js h...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '119.0.6019.2',\n 'node_version':\n- 'v18.17.1',\n+ 'v18.18.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2023-09-20T20:13:43
facebook/react
1de6c5aea207ac2beac375aa80287acfcfb567a0
ba661c80f3716eaaf8845b480a9d4558d0fb7e4a
[eslint] Don't lint generated files drive by fix multi line comments in .eslintrc
[ { "path": "compiler/packages/babel-plugin-react-forget/.eslintrc.js", "patch": "@@ -9,44 +9,56 @@\n module.exports = {\n extends: [\"eslint:recommended\", \"plugin:@typescript-eslint/recommended\"],\n rules: {\n- // We prefer using const where variables are not reassigned, but occassional mistakes\n-...
2024-04-02T11:03:26
vercel/next.js
e30dd09f29cf4a82c50c7719a773a388e98b3ddc
428616e1cf582b466295073416b01b698a46008b
Add `path` to Image documentation (#82329) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Imp...
[ { "path": "docs/01-app/03-api-reference/02-components/image.mdx", "patch": "@@ -636,6 +636,18 @@ export default function myImageLoader({ src, width, quality }) {\n \n > Alternatively, you can use the [`loader` prop](#loader) to configure each instance of `next/image`.\n \n+#### `path`\n+\n+If you want to ch...
2025-08-08T14:41:22
nodejs/node
37834997ff16d3f9e6d654b1efd9365635d65da6
53cdffea20d45346d4db34c01225cd58f2d04f5e
test: reduce stack size for test-error-serdes Hopefully reduces the run time and the likelihood of the test failing with a flaky timeout error. remove test-error-serdes from flaky list move test-error-serdes to sequential PR-URL: https://github.com/nodejs/node/pull/54840 Refs: https://github.com/nodejs/node/issues/...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -16,9 +16,6 @@ test-worker-arraybuffer-zerofill: PASS, FLAKY\n # https://github.com/nodejs/node/issues/51862\n test-fs-read-stream-concurrent-reads: PASS, FLAKY\n \n-# https://github.com/nodejs/node/issues/52630\n-test-error-serdes: PASS, FLAKY\n-\n # ...
2024-09-07T20:50:25
golang/go
3e468dfd5e6624465716fe5d34358ba58f1e9e7b
deb9a7e4ad8552a5f366877e626c223dea0e9d9b
crypto/tls: enable BoGo DisabledCurve-HelloRetryRequest-TLS13 The crypto/tls package produces the expected error for this test case, and so it can be enabled. Looking at the history of the relevant code it appears the TLS 1.3 implementation has always had the correct behaviour for HRR changing to an unsupported group...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -61,7 +61,6 @@\n \"BadRSAClientKeyExchange-4\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comment\",\n \"BadRSAClientKeyExchange-5\": \"crypto/tls doesn't check the version nu...
2025-05-16T18:40:27
vercel/next.js
3552445eba3ff9dd35f43d66bf207ab2603a40a2
4eb46d8ea51251ac8bc7ea974ecd059c1890ea5f
Docs/polyfills fix pages only (#82462) Follow up for: https://github.com/vercel/next.js/issues/74730
[ { "path": "docs/03-architecture/supported-browsers.mdx", "patch": "@@ -43,19 +43,37 @@ In addition, to reduce bundle size, Next.js will only load these polyfills for b\n \n If your own code or any external npm dependencies require features not supported by your target browsers (such as IE 11), you need to a...
2025-08-08T08:45:32
electron/electron
28eda03abaf83ac2c481fa1ae6c4d90b2f4a19f0
7685f27b31bd565ecde05307174b1738c0bbd777
chore: bump chromium to 119.0.6019.2 (main) (#39925) * chore: bump chromium in DEPS to 119.0.6018.4 * chore: update patches * chore: bump chromium in DEPS to 119.0.6019.2 * chore: update patches * 4876292: Roll libc++ from 7cee6b00d34a to 3e8a3b3c5d49 (6 revisions) https://chromium-review.googlesource.c...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '119.0.6017.0',\n+ '119.0.6019.2',\n 'node_version':\n 'v18.17.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2023-09-20T20:08:26
facebook/react
5516cbb7089c8c42b79f2eb169ec2eb271ae0765
0af58d6c9ed22f5784010a5bc72974e21d82f664
[ez] Fix unneeded path in copyright script
[ { "path": "compiler/scripts/copyright.js", "patch": "@@ -27,8 +27,6 @@ const files = glob.sync(\"**/*.{js,ts,tsx,jsx}\", {\n \"packages/js-fuzzer/**\",\n \"**/tests/fixtures/**\",\n \"**/__tests__/fixtures/**\",\n- // Special case where we need to preserve a jest directive\n- \"packages/fo...
2024-04-02T14:32:22
golang/go
7ba996874b541aa13b6bf1d1174b97372e0de20d
a8e0641d5b90da99d5dda96488e87dda761b365b
crypto/tls: verify server chooses advertised curve When a crypto/tls client using TLS < 1.3 sends supported elliptic_curves in a client hello message the server must limit itself to choosing one of the supported options from our message. If we process a server key exchange message that chooses an unadvertised curve, a...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -62,7 +62,6 @@\n \"BadRSAClientKeyExchange-5\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comment\",\n \"CheckLeafCurve\": \"TODO: first pass, this should be fixed\",\n ...
2025-05-16T17:08:16
nodejs/node
53cdffea20d45346d4db34c01225cd58f2d04f5e
cc780ddf1e657e1f0104b7be86572f09218726d6
esm: throw `ERR_REQUIRE_ESM` instead of `ERR_INTERNAL_ASSERTION` PR-URL: https://github.com/nodejs/node/pull/54868 Fixes: https://github.com/nodejs/node/issues/54773 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -326,8 +326,6 @@ class ModuleLoader {\n * @returns {ModuleJobBase}\n */\n getModuleJobForRequire(specifier, parentURL, importAttributes) {\n- assert(getOptionValue('--experimental-require-module'));\n-\n const parsed = URLParse(spec...
2024-09-11T21:48:02
rust-lang/rust
1f94802603aa571c4d7cdf7045b35b8907eb2ee9
27d5b14aef576787388c7f5fe0bef4c5a9a61988
Fix libgccjit version
[ { "path": "compiler/rustc_codegen_gcc/libgccjit.version", "patch": "@@ -1 +1 @@\n-896045775f7c40fafe48c6e398f6c53bf6af889e\n+efdd0a7290c22f5438d7c5380105d353ee3e8518", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2026-02-14T16:12:51
vercel/next.js
686ba5bd6b4ef2ca9f7059047cfb72700e3e0ef5
0b2c3b15fe6ca33f0f25eb4ae1af4b8486a69f72
fix: static not-found missing in prerender manifest (#82199)
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -76,8 +76,8 @@ import {\n MIDDLEWARE_REACT_LOADABLE_MANIFEST,\n SERVER_REFERENCE_MANIFEST,\n FUNCTIONS_CONFIG_MANIFEST,\n- UNDERSCORE_NOT_FOUND_ROUTE_ENTRY,\n UNDERSCORE_NOT_FOUND_ROUTE,\n+ UNDERSCORE_NOT_FOUND_ROUTE_ENTRY,\n DYNAMIC_CSS...
2025-08-07T23:10:23
electron/electron
7685f27b31bd565ecde05307174b1738c0bbd777
463586a6c57e3ae49d6b730e00eb724bfb05371f
feat: expose app accessibility transparency settings api (#39631) * feat: expose app accessibility transparency settings api * docs: fix typo * chore: add doc * change to property * add as property instead of method * chore: fix lint * rename function name in header --------- Co-authored-by: Ke...
[ { "path": "docs/api/system-preferences.md", "patch": "@@ -401,6 +401,10 @@ Returns an object with system animation settings.\n \n ## Properties\n \n+### `systemPreferences.accessibilityDisplayShouldReduceTransparency()` _macOS_\n+\n+A `boolean` property which determines whether the app avoids using semitran...
2023-09-20T19:48:02
golang/go
c3bb27bbc77ac02ad709e77a7fcca0a5d3176304
f4de2ecffb9c107e6058c1ebb30c68de1157f5c6
cmd/compile/internal/walk: use global zeroVal in interface conversions for zero values This is a small-ish adjustment to the change earlier in our stack in CL 649555, which started creating read-only global storage for a composite literal used in an interface conversion and setting the interface data pointer to point ...
[ { "path": "src/cmd/compile/internal/ir/symtab.go", "patch": "@@ -59,6 +59,7 @@ type symsStruct struct {\n \tUdiv *obj.LSym\n \tWriteBarrier *obj.LSym\n \tZerobase *obj.LSym\n+\tZeroVal *obj.LSym\n \tARM64HasATOMICS *obj.LSym\n \tARMHasVFPv4 *obj.LSym\n \tLoong64HasLAMC...
2025-02-12T23:45:42
facebook/react
832285fed2aaaff58001539a5eebe6d580cb280a
8d2cd323a449e49ef041227dfe8d9f9d2ad2f395
Only create mutable ranges for phis *mutated* later This PR was the result of a long chain of ~yak-shaving~ debugging kicked off as a result of fixing up invariants. Where this started was that i noticed some cases of loops where the first instance we saw of a reactive scope was after its starting instruction. Eg ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferMutableLifetimes.ts", "patch": "@@ -112,28 +112,22 @@ export function inferMutableLifetimes(\n >();\n for (const [_, block] of func.body.blocks) {\n for (const phi of block.phis) {\n- for (const [_, operand] of phi.operan...
2024-04-01T21:21:48
nodejs/node
123bb4cb22e739a039392d83d512601982f40fc0
94a457a1ebebbe854ca7a8d9b430a61b04439638
test_runner: improve code coverage cleanup The test runner's code coverage leaves old coverage data in the temp directory. This commit updates the cleanup logic to: - Stop code collection. Otherwise V8 would write collection data again when the process exits. - Remove the temp directory containing the coverage data...
[ { "path": "lib/internal/test_runner/coverage.js", "patch": "@@ -23,6 +23,7 @@ const {\n mkdtempSync,\n opendirSync,\n readFileSync,\n+ rmSync,\n } = require('fs');\n const { setupCoverageHooks } = require('internal/util');\n const { tmpdir } = require('os');\n@@ -272,28 +273,35 @@ class TestCoverage ...
2024-09-11T02:50:28
vercel/next.js
0b2c3b15fe6ca33f0f25eb4ae1af4b8486a69f72
2f081765dd6ca130fde9571d142ba702c1dec70a
[Cache Components] Only validate the shell on SSR render (#82381) Prior to this change on every navigation we would validate that the initial static shell satisified the rules of cache components. This offers more protection as you edit pages but it slows down navigations and we are already concerned with dev speed an...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -572,31 +572,6 @@ async function generateDynamicFlightRenderResult(\n options\n )\n \n- if (\n- // We only want this behavior when running `next dev`\n- renderOpts.dev &&\n- // We only want this behavior when we hav...
2025-08-07T21:04:03
golang/go
f4de2ecffb9c107e6058c1ebb30c68de1157f5c6
ce46c9db867fb54a9c1f39b73ac8c2f339ca0587
cmd/compile/internal/walk: convert composite literals to interfaces without allocating Today, this interface conversion causes the struct literal to be heap allocated: var sink any func example1() { sink = S{1, 1} } For basic literals like integers that are directly used in an interface conversi...
[ { "path": "src/cmd/compile/internal/walk/order.go", "patch": "@@ -226,7 +226,8 @@ func (o *orderState) addrTemp(n ir.Node) ir.Node {\n \t// for the implicit conversion of \"foo\" to any, and we can't handle\n \t// the relocations in that temp.\n \tif n.Op() == ir.ONIL || (n.Op() == ir.OLITERAL && !base.Ctxt...
2025-02-14T04:49:50
facebook/react
8833338c8f929281cd1f2d39e11dd2b5e0739f10
5ab97b73457e2da72749322a1925a970a967f3bc
Convert deprecated stalebot to github action (#28695) ## Summary This repo uses [Stalebot](https://github.com/probot/stale) to manage stale Issues and PRs. Stalebot hasn't been maintained for a couple of years and is officially archived. The number of open Issues and PRs has increased rapidly since early 2022. S...
[ { "path": ".github/stale.yml", "patch": "@@ -1,35 +0,0 @@\n-# Configuration for probot-stale - https://github.com/probot/stale\n-# Number of days of inactivity before an issue becomes stale\n-daysUntilStale: 90\n-# Number of days of inactivity before a stale issue is closed\n-daysUntilClose: 7\n-# Issues wi...
2024-04-01T18:32:28
electron/electron
75ea294b6f0dc5c7186fb1fadcd326f0cea24532
18717ee62d4f54a880e00ccd80f2a33423bb74eb
build: use afs on aks instead of circle cache (#39881) * build: use afs on aks instead of circle cache * build: do not use aks logic on linux hosts checking out for macOS * build: fix gn-check could-be-aks * build: sigh * build: no ls mnt * build: keep build alive while debugging * build: make debugg...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -34,6 +34,11 @@ parameters:\n type: enum\n default: all\n enum: [\"all\", \"osx-x64\", \"osx-arm64\", \"mas-x64\", \"mas-arm64\"]\n+\n+ medium-linux-executor:\n+ type: enum\n+ default: electronjs/aks-linux-medium\n+ enum: [\"electronj...
2023-09-19T10:12:14