repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
electron/electron
9199d5c610c399d612dd938c87e2a92de56ec68c
96460becf9ab0bf49d7d556a5c567da3c4217701
fix: window maximizing with Mica (#45456) * fix: window maximizing with Mica * Fix rounded corners after restore
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -642,8 +642,22 @@ void NativeWindowViews::SetEnabledInternal(bool enable) {\n #endif\n }\n \n-#if BUILDFLAG(IS_LINUX)\n void NativeWindowViews::Maximize() {\n+#if BUILDFLAG(IS_WIN)\n+ if (IsTranslucent()) {\n+ // If a window is translucent b...
2025-02-07T20:00:36
nodejs/node
e679e38b252ee5203ef583392f77fd532e2b4a67
c1c36731ce9d8a8fbe420a6afd2429155c8f634f
lib: make domexception a native error Co-Authored-By: Kenta Moriuchi <moriken@kimamass.com> PR-URL: https://github.com/nodejs/node/pull/58691 Fixes: https://github.com/nodejs/node/issues/56497 Refs: https://github.com/v8/v8/commit/e3df60f3f5abe85f819ff2fad6a41d0709e30a61 Refs: https://github.com/nodejs/node/pull/58138...
[ { "path": "lib/internal/per_context/domexception.js", "patch": "@@ -1,7 +1,7 @@\n 'use strict';\n \n const {\n- ErrorCaptureStackTrace,\n+ Error,\n ErrorPrototype,\n ObjectDefineProperties,\n ObjectDefineProperty,\n@@ -60,20 +60,33 @@ const disusedNamesSet = new SafeSet()\n .add('NoDataAllowedErro...
2025-06-12T09:48:33
facebook/react
76e44c29110f12caff8302da624076b68547b8ef
8759c5c8d6aef34df576827215ff7ebaeafc79ea
[compiler] Improve error messages for unhandled terminal and instruction kinds (#32324) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PrintReactiveFunction.ts", "patch": "@@ -394,7 +394,10 @@ function writeTerminal(writer: Writer, terminal: ReactiveTerminal): void {\n break;\n }\n default:\n- assertExhaustive(terminal, `Unhandled terminal ${term...
2025-02-07T20:48:03
electron/electron
96460becf9ab0bf49d7d556a5c567da3c4217701
d7c6fb8250ad4839172b96193810956ce897c24e
fix: Update widget visibility in `NativeWindowMac::ShowInactive` (#45427) When using `views::WebView` on macOS `NativeWidgetMacNSWindowHost` contains a layer and compositor responsible for drawing web contents. To trigger drawing `NativeWidgetMacNSWindowHost::OnVisibilityChanged` needs to be called and `[NSWindow o...
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -429,7 +429,13 @@ static bool FromV8(v8::Isolate* isolate,\n if (parent())\n InternalSetParentWindow(parent(), true);\n \n+ // Triggers `NativeWidgetMacNSWindowHost::OnVisibilityChanged`.\n+ widget()->ShowInactive();\n+ // `Widget::ShowIn...
2025-02-07T19:31:08
nodejs/node
c1c36731ce9d8a8fbe420a6afd2429155c8f634f
11222f1a272b9b2ab000e75cbe3e09942bd2d877
deps: V8: cherry-pick e3df60f3f5ab Original commit message: [objects] allow host defined serializer of JSError Allow host defined serializer and deserializer of JSError in ValueSerializer API. This allows hosts that implement DOMException in JS to support `Error.isError` proposal and `structuredClone...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.13',\n+ 'v8_embedder_string': '-node.14',\n \n ##### V8 defaults for Node.js #####\n...
2025-06-19T10:54:14
golang/go
9f3a108ee0d2f08b4994c4201e54e5a53acbc216
0e1bd8b5f17e337df0ffb57af03419b96c695fe4
os: ignore O_TRUNC errors on named pipes and terminal devices on Windows Prior to Go 1.24, os.OpenFile used to support O_TRUNC on named pipes and terminal devices, even when the truncation was really ignored. This behavior was consistent with Unix semantics. CL 618836 changed the implementation of os.OpenFile on Wind...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -131,6 +131,14 @@ func Openat(dirfd syscall.Handle, name string, flag uint64, perm uint32) (_ sysc\n \n \tif flag&syscall.O_TRUNC != 0 {\n \t\terr = syscall.Ftruncate(h, 0)\n+\t\tif err == ERROR_INVALID_PARAMETER {\n+\t\t\t// ERROR_INVALID...
2025-10-30T11:36:42
vercel/next.js
3a323194341a6554147d832cf6bca26e7140bd49
f9fdf6e97b196d225e2a181cb902274ab77ed176
Turbopack: bincode: Add traits for types that require `TurboBincodeEncoder` or `TurboBincodeDecoder` (#86633) **Example usage:** See `CachedTaskType`​ in `turbopack/crates/turbo-tasks/src/backend.rs`​ on https://github.com/vercel/next.js/pull/86631 for an example of how this is used. That needs to call the encoder/dec...
[ { "path": "Cargo.lock", "patch": "@@ -9096,6 +9096,7 @@ dependencies = [\n \"serde\",\n \"serde_json\",\n \"smallvec\",\n+ \"unty\",\n ]\n \n [[package]]", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "Cargo.toml", "patch": "@@ -470,6 +470,7 @@ tracing = \"0....
2025-12-04T20:34:34
facebook/react
44c3d3d665761bba86eb5c143a6eafc0ebf73263
ae3190c5e929ec3b899734e2a6aface7cd4e42d0
fix[react-devtools-standalone]: define missing globals (#32327) Same as what we did for `react-devtools-fusebox` in https://github.com/facebook/react/pull/32297.
[ { "path": "packages/react-devtools-core/webpack.standalone.js", "patch": "@@ -88,6 +88,9 @@ module.exports = {\n __PROFILE__: false,\n __TEST__: NODE_ENV === 'test',\n __IS_NATIVE__: true,\n+ __IS_FIREFOX__: false,\n+ __IS_CHROME__: false,\n+ __IS_EDGE__: false,\n 'pro...
2025-02-07T11:07:46
electron/electron
67f5ac5bbc1779c9ab896d0cf76e18e31251549e
517935cd551c15384cfb6d058e00e549fa6f981d
fix: RenderFrameHost nullptr dereference (#45487) * fix: add nullptr tests before using render_frame_ * refactor: extract-method HasRenderFrame()
[ { "path": "shell/browser/api/electron_api_web_frame_main.cc", "patch": "@@ -183,7 +183,7 @@ void WebFrameMain::UpdateRenderFrameHost(content::RenderFrameHost* rfh) {\n }\n \n bool WebFrameMain::CheckRenderFrame() const {\n- if (render_frame_disposed_) {\n+ if (!HasRenderFrame()) {\n v8::Isolate* isola...
2025-02-07T04:02:57
nodejs/node
98433c73198c99f95d84ea65b458c9cc3b1612b4
5a14ea62b9ff21ff61d6746d2cc131411696d0c4
doc: fix wrong RFC number in http2 Priority signaling was deprecated in RFC 9113(not 1993). Refs: https://github.com/nodejs/node/pull/58313 PR-URL: https://github.com/nodejs/node/pull/58753 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Ethan Arrowood <e...
[ { "path": "doc/api/http2.md", "patch": "@@ -1078,7 +1078,7 @@ changes:\n runtime warning.\n - version: v24.2.0\n pr-url: https://github.com/nodejs/node/pull/58313\n- description: Following the deprecation of priority signaling as of RFC 1993,\n+ description: Following the deprec...
2025-06-20T13:57:23
golang/go
a5fe6791d79347d4c28af4b475b679ce7a726a28
a7d174ccaada72b836c1c535f056d3fff5b2d528
internal/syscall/windows: fix ReOpenFile sentinel error value ReOpenFile is documented to return INVALID_HANDLE_VALUE on error, but the previous definition was checking for 0 instead. Change-Id: Idec5e75e40b9f6c409e068d63a9b606781e80a46 Reviewed-on: https://go-review.googlesource.com/c/go/+/717320 Auto-Submit: Quim M...
[ { "path": "src/internal/syscall/windows/syscall_windows.go", "patch": "@@ -531,7 +531,7 @@ const (\n //sys\tGetOverlappedResult(handle syscall.Handle, overlapped *syscall.Overlapped, done *uint32, wait bool) (err error)\n //sys\tCreateNamedPipe(name *uint16, flags uint32, pipeMode uint32, maxInstances uint3...
2025-11-03T15:29:06
vercel/next.js
f9fdf6e97b196d225e2a181cb902274ab77ed176
38ef2360e1e133f329a9061ce17aad8aaab33cb2
Turbopack: bincode: Add custom bincode reader/writer implementations (#86632) - We need a custom writer because we want to write to a `SmallVec`, and I don't want to go through `std::io::Write`​ to do that, as there's potential error checking overhead that's not needed (might compile away, but I don't want to take any...
[ { "path": "turbopack/crates/turbo-bincode/src/lib.rs", "patch": "@@ -1,11 +1,120 @@\n+use std::ptr::copy_nonoverlapping;\n+\n use ::smallvec::SmallVec;\n use bincode::{\n BorrowDecode, Decode, Encode,\n- de::{BorrowDecoder, Decoder},\n- enc::Encoder,\n+ de::{BorrowDecoder, Decoder, DecoderImpl,...
2025-12-04T19:40:45
facebook/react
ae3190c5e929ec3b899734e2a6aface7cd4e42d0
a0fdb6306043b9f049106e58dcec107d8dbed2b1
React DevTools 6.1.0 -> 6.1.1 (#32326) Full list of changes: * DevTools: refactor NativeStyleEditor, don't use custom cache implementation ([hoxyq](https://github.com/hoxyq) in [#32298](https://github.com/facebook/react/pull/32298)) * fix[react-devtools-fusebox]: add extension globals to build ([hoxyq](https://gi...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"6.1.0\",\n+ \"version\": \"6.1.1\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2025-02-07T10:54:44
golang/go
c7ccbddf22884f54885fd23143d1b2087ab6e53c
75b2bb1d1a62e69763aea6761b5be4b9c69e0214
cmd/compile/internal/ssa: more aggressive on dead auto elim Propagate "unread" across OpMoves. If the addr of this auto is only used by an OpMove as its source arg, and the OpMove's target arg is the addr of another auto. If the 2nd auto can be eliminated, this one can also be eliminated. This CL eliminates unnecessa...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -203,9 +203,27 @@ func (sr shadowRange) merge(lo, hi int64) shadowRange {\n // reaches stores then we delete all the stores. The other operations will then\n // be eliminated by the dead code elimination pass.\n func elimDeadAutosGeneric(f ...
2025-09-11T15:57:38
nodejs/node
4623d46b7cc29a3b55b85fd35d7f0a6ff13bdea1
3d608bbe8b27bd641688fa5ba52f6a8d4f79b961
tools: include toolchain.gypi in abseil.gyp This sets proper SIMD build flags for abseil on ia32. PR-URL: https://github.com/nodejs/node/pull/58678 Fixes: https://github.com/nodejs/node/issues/58569 Reviewed-By: Michaël Zasso <targos@protonmail.com>
[ { "path": "tools/v8_gypfiles/abseil.gyp", "patch": "@@ -1,4 +1,5 @@\n {\n+ 'includes': ['toolchain.gypi'],\n 'targets': [\n {\n 'target_name': 'abseil',", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "tools/v8_gypfiles/toolchain.gypi", "patch": "@@ ...
2025-06-20T09:27:25
vercel/next.js
38ef2360e1e133f329a9061ce17aad8aaab33cb2
e01d3f2e7c06fe814a07c28d8e41d6913fe63445
Add Firebase App Hosting to the deployment guide (#86832) Add Firebase App Hosting to the list of adapters in the [deployment guide](https://nextjs.org/docs/app/getting-started/deploying#adapters). <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as poss...
[ { "path": "docs/01-app/01-getting-started/17-deploying.mdx", "patch": "@@ -76,6 +76,7 @@ Refer to each provider's documentation for information on supported Next.js feat\n - [AWS Amplify Hosting](https://docs.amplify.aws/nextjs/start/quickstart/nextjs-app-router-client-components)\n - [Cloudflare](https://d...
2025-12-04T19:06:04
facebook/react
d85cf3e5ab6e049626a8bedddffbaec05c516195
32b411496b92455cede3b286eb37c8b183989051
DevTools: refactor NativeStyleEditor, don't use custom cache implementation (#32298) We have this really old (5+ years) feature for inspecting native styles of React Native Host components. We also have a custom Cache implementation in React DevTools, which was forked from React at some point. We know that this s...
[ { "path": "packages/react-devtools-inline/__tests__/__e2e__/components.test.js", "patch": "@@ -212,17 +212,19 @@ test.describe('Components', () => {\n });\n \n test('should allow searching for component by name', async () => {\n- async function getComponentSearchResultsCount() {\n- return await ...
2025-02-05T12:52:48
electron/electron
213165a467b84b3fb979a869d9bf10ad21e2d78e
3dad07f3383615bd608a46f6b6682ffaffa667c1
chore: bump chromium to 134.0.6988.0 (main) (#45334) * chore: bump chromium in DEPS to 134.0.6976.0 * chore: update mas_avoid_private_macos_api_usage.patch.patch https://chromium-review.googlesource.com/c/chromium/src/+/6171046 process_info_mac.cc -> process_info_mac.mm * chore: update build_do_not_depend_on_p...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '134.0.6968.0',\n+ '134.0.6988.0',\n 'node_version':\n 'v22.13.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "build/...
2025-02-06T20:30:54
golang/go
dd839f1d0037931395316ab13aefd3941aa959e8
6e165b4d176fb4c7fbb615b522a8b69d0b66c513
internal/strconv: handle %f with fixedFtoa when possible Everyone writes papers about fast shortest-output formatting. Eventually we also sped up fixed-length formatting %e and %g. But we've neglected %f, which falls back to the slow general code even for relatively trivial things like %.2f on 1.23. This CL uses the ...
[ { "path": "src/internal/strconv/ftoa.go", "patch": "@@ -146,28 +146,38 @@ func genericFtoa(dst []byte, val float64, fmt byte, prec, bitSize int) []byte {\n \t\treturn formatDigits(dst, shortest, neg, digs, prec, fmt)\n \t}\n \n-\t// TODO figure out when we can use fast code for f\n-\tif fmt != 'f' {\n-\t\t/...
2025-11-02T17:32:01
nodejs/node
3d608bbe8b27bd641688fa5ba52f6a8d4f79b961
433d9a0486fe810b0d3da50f0036ac0b68806157
test: skip the test if the buffer allocation fails Use the error message as another condition to skip the test when the buffer allocation fails. Refs: https://github.com/nodejs/node/commit/795dd8eb7988ae38553e Refs: https://github.com/nodejs/node/commit/e9c6004a2d580008082b PR-URL: https://github.com/nodejs/node/pull...
[ { "path": "test/pummel/test-buffer-large-size-buffer-alloc-unsafe-slow.js", "patch": "@@ -7,12 +7,22 @@ common.skipIf32Bits();\n const assert = require('node:assert');\n const size = 2 ** 31;\n \n+let largeBuffer;\n+\n // Test Buffer.allocUnsafe with size larger than integer range\n try {\n- assert.throws(...
2025-06-20T06:12:31
vercel/next.js
4c99cf39f41fa6deba237caaa6bb5e31307f2f42
be0d24ad6d95f250fc7cc27ed454f1fd441a68c4
Turbopack: bincode: Add crate with bincode serialization helpers (#85878) Add helpers for using bincode with various commonly-used foreign types that do not implement `bincode::Encode`/`bincode::Decode`. We can't implement the bincode traits on these types ourselves because of the orphan rules. This is pulled out of ...
[ { "path": "Cargo.lock", "patch": "@@ -572,6 +572,24 @@ dependencies = [\n \"serde\",\n ]\n \n+[[package]]\n+name = \"bincode\"\n+version = \"2.0.1\"\n+source = \"git+https://github.com/bgw/bincode.git?branch=bgw%2Fpatches#19f09c5f6895d769883c10b3d374f761ab7fe83d\"\n+dependencies = [\n+ \"bincode_derive\",\...
2025-12-04T18:55:47
electron/electron
c0282eb9c8a29130b64e045e097029049505e577
471b1a873d63422008a6a00f94cedc1dd740a87a
docs: style fixes (#45458) * docs: fix code field * docs: add missing space
[ { "path": "docs/api/structures/base-window-options.md", "patch": "@@ -149,7 +149,7 @@ Possible values are:\n focus, keyboard or mouse events, but you can use `globalShortcut` to receive\n input sparingly.\n * The `panel` type enables the window to float on top of full-screened apps\n- by adding...
2025-02-05T20:10:07
golang/go
6e165b4d176fb4c7fbb615b522a8b69d0b66c513
9f6590f333ee3ecd318e95ef54073fe76d1225de
cmd/compile: implement Avg64u, Hmul64, Hmul64u for wasm This lets us remove useAvg and useHmul from the division rules. The compiler is simpler and the generated code is faster. goos: wasip1 goarch: wasm pkg: internal/strconv │ old.txt │ new.txt │ ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/Wasm.rules", "patch": "@@ -2,6 +2,8 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+(Last ___) => v.Args[len(v.Args)-1]\n+\n // Lowering arithmetic\n (Add(64|32|16|8|Ptr) ...) => (I64Add ...)\n (...
2025-11-04T03:09:48
vercel/next.js
12a80b453ef7871cf9e9ef486a216e0b93b2ca5c
1b3c51aa68046f5c83f489fc5e57e4f4eed96eaa
fix(next/image): add `?dpl` query string for local images (without static import) (#86485) In a previous PR https://github.com/vercel/next.js/pull/73184 the `?dpl` query string was added to local images from static imports but not to images without the static import. This was a subtle change based on malte's PR revie...
[ { "path": "packages/next/src/shared/lib/get-img-props.ts", "patch": "@@ -1,4 +1,5 @@\n import { warnOnce } from './utils/warn-once'\n+import { getDeploymentId } from './deployment-id'\n import { getImageBlurSvg } from './image-blur-svg'\n import { imageConfigDefault } from './image-config'\n import type {\n...
2025-12-04T16:35:02
nodejs/node
214e4db60ef55f1a59c93336ab956371b0b058ed
6f83e5d5e49718c3a61e3b5c74385987dfa3a68d
test: deflake test-buffer-large-size-buffer-alloc Use the error message as another condition to skip the test when the buffer allocation fails. Refs: https://github.com/nodejs/node/commit/795dd8eb7988ae38553e Refs: https://github.com/nodejs/node/commit/e9c6004a2d580008082b PR-URL: https://github.com/nodejs/node/pull/...
[ { "path": "test/pummel/test-buffer-large-size-buffer-alloc.js", "patch": "@@ -7,12 +7,22 @@ common.skipIf32Bits();\n const assert = require('node:assert');\n const size = 2 ** 31;\n \n+let largeBuffer;\n+\n // Test Buffer.alloc with size larger than integer range\n try {\n- assert.throws(() => Buffer.alloc...
2025-06-18T20:26:25
electron/electron
471b1a873d63422008a6a00f94cedc1dd740a87a
aee8ea8b1071fcbe2cc33f4f423900d7009de604
fix: fix typo in docs why-electron.md (#45437)
[ { "path": "docs/why-electron.md", "patch": "@@ -22,7 +22,7 @@ If you want to focus on building a great product without figuring out how you ca\n \n ### Reliability\n \n-Web technologies are the most-used foundation for user interfaces on the planet. The have been hardened accordingly. Modern computers have ...
2025-02-05T15:26:47
vercel/next.js
809649db516dfc45a5e8d0182c2dd8c8b2319884
80791c019fa76c66c3f6a108b14651bcf5e7c031
[test] fix missing nft file (#86817)
[ { "path": "test/production/next-server-nft/next-server-nft.test.ts", "patch": "@@ -296,6 +296,7 @@ const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n \"/node_modules/next/dist/server/lib/trace/tracer.js\",\n \"/node_modules/next/dist/server/load-manifest.external.js\"...
2025-12-04T12:18:17
golang/go
fe040658b20878bdbb9122ebc5446bc4104a7ddf
e452f4ac7de6c80e0be69a3c59ae739cfd806917
[dev.simd] simd/_gen: fix sorting ops slices Fix sorting slices to avoid panic when there are more opsDataImm than opsData (the problem occurs when generating only a subset of instructions but it may be better to keep them sorted by their own names anyway). Change-Id: Iea7fe61259e8416f16c46158d87c84b1d7a3076d Reviewe...
[ { "path": "src/simd/_gen/simdgen/gen_simdMachineOps.go", "patch": "@@ -185,13 +185,13 @@ func writeSIMDMachineOps(ops []Operation) *bytes.Buffer {\n \t\treturn compareNatural(opsData[i].OpName, opsData[j].OpName) < 0\n \t})\n \tsort.Slice(opsDataImm, func(i, j int) bool {\n-\t\treturn compareNatural(opsData...
2025-10-29T13:49:28
electron/electron
aee8ea8b1071fcbe2cc33f4f423900d7009de604
57cf4fc846786ca01432b755c7b037ecc31f1a43
fix: WCO not working with some window configurations (#45422)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -701,6 +701,15 @@ void NativeWindowViews::Minimize() {\n }\n \n void NativeWindowViews::Restore() {\n+#if BUILDFLAG(IS_WIN)\n+ if (IsMaximized() && transparent()) {\n+ SetBounds(restore_bounds_, false);\n+ NotifyWindowRestore();\n+ Upd...
2025-02-05T11:48:51
vercel/next.js
bf23890a91f1ee3ccb2b1246dc075ca7a56693b4
59beba7cf075f477d91c18deac1cabef474f70ef
[Cache Components] Fast setImmediate (#86018) > This place is not a place of honor... no highly esteemed deed is commemorated here... nothing valued is here. > What is here was dangerous and repulsive to us. This message is a warning about danger. you think you know when setImmediate is supposed to run? no you don't ...
[ { "path": "packages/next/errors.json", "patch": "@@ -951,5 +951,18 @@\n \"950\": \"The manifests singleton was not initialized.\",\n \"951\": \"The client reference manifest for route \\\"%s\\\" does not exist.\",\n \"952\": \"Cannot access \\\"%s\\\" without a work store.\",\n- \"953\": \"This is a ...
2025-12-03T17:32:05
rust-lang/rust
86880c90c21fe294eabb931fb3e69b69564b1832
3b1b0ef4d80d3117924d91352c8b6ca528708b3c
Fix ICE in fn_delegation when child segment resolves to a trait When a delegation path like `reuse Trait::<> as bar4` has a child segment that resolves to a trait instead of a function, the compiler would ICE because `lower_generic_args_of_path` asserts that `self_ty` is `Some` when `has_self` is true and `parent` is ...
[ { "path": "compiler/rustc_hir_analysis/src/delegation.rs", "patch": "@@ -597,31 +597,35 @@ fn get_delegation_user_specified_args<'tcx>(\n .as_slice()\n });\n \n- let child_args = info.child_args_segment_id.and_then(get_segment).map(|(segment, def_id)| {\n- let parent_args = if let ...
2026-03-11T15:39:22
facebook/react
8bda71558c8b6f9f19af33271f1bfd0251a1c071
f82c662b8d28461ffdb9f82f3fc26b7b54b9bef5
[Fiber] support hydration when rendering Suspense anywhere (#32224) follow up to https://github.com/facebook/react/pull/32163 This continues the work of making Suspense workable anywhere in a react-dom tree. See the prior PRs for how we handle server rendering and client rendering. In this change we update the hy...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -207,6 +207,9 @@ const SUSPENSE_START_DATA = '$';\n const SUSPENSE_END_DATA = '/$';\n const SUSPENSE_PENDING_START_DATA = '$?';\n const SUSPENSE_FALLBACK_START_DATA = '$!';\n+const PREAMBLE_CONTRIBUTION_HTML = 0b001;\n+c...
2025-02-04T20:30:30
electron/electron
57cf4fc846786ca01432b755c7b037ecc31f1a43
9fe12cd01b9ce889b891643d63e49e8e2a430373
fix: `legacyMainResolve` respecting permission model (#45421) fix: legacyMainResolve respecting permission model
[ { "path": "patches/node/fix_revert_src_lb_reducing_c_calls_of_esm_legacy_main_resolve.patch", "patch": "@@ -15,10 +15,10 @@ to recognize asar files.\n This reverts commit 9cf2e1f55b8446a7cde23699d00a3be73aa0c8f1.\n \n diff --git a/lib/internal/modules/esm/resolve.js b/lib/internal/modules/esm/resolve.js\n-i...
2025-02-05T11:48:34
golang/go
34fec512ce34fb5926aa38e0ccd0083feed94733
162ba6cc405851ee7f0d30b600de1a308321ddca
internal/strconv: extract fixed-precision ftoa from ftoaryu.go The fixed-precision ftoa algorithm is not actually documented in the Ryū paper, and it is fairly straightforward: multiply by a power of 10 to get an integer that contains the digits we need. There is also no need for separate float32 and float64 implement...
[ { "path": "src/internal/strconv/atoi.go", "patch": "@@ -41,8 +41,6 @@ const intSize = 32 << (^uint(0) >> 63)\n // IntSize is the size in bits of an int or uint value.\n const IntSize = intSize\n \n-const maxUint64 = 1<<64 - 1\n-\n // ParseUint is like [ParseInt] but for unsigned numbers.\n //\n // A sign pr...
2025-11-01T13:41:40
rust-lang/rust
fe1f92af4b010113a5d4b9d596209ee4637d7045
90f7d7e07475697fa5b9eedd26d74f2a309b4d31
de-duplicate LayoutError formatting
[ { "path": "compiler/rustc_codegen_gcc/src/context.rs", "patch": "@@ -538,7 +538,7 @@ impl<'gcc, 'tcx> LayoutOfHelpers<'tcx> for CodegenCx<'gcc, 'tcx> {\n | LayoutError::InvalidSimd { .. }\n | LayoutError::ReferencesError(_) = err\n {\n- self.tcx.dcx().emit_fatal(respan(spa...
2026-03-09T16:54:10
electron/electron
9fe12cd01b9ce889b891643d63e49e8e2a430373
6486ce8191d4d02ed90ea8c1e034c3b57ae32cb0
fix: handle exclude aliasing in InclusionStatusToString() (#45454) * refactor: use MakeFixedFlatMap() in InclusionStatusToString() * fix: add log message for EXCLUDE_ALIASING refactor: add static_assert() to ensure our messages stay in sync with the CookieInclusion reasons in net/cookies/
[ { "path": "shell/browser/api/electron_api_cookies.cc", "patch": "@@ -4,10 +4,12 @@\n \n #include \"shell/browser/api/electron_api_cookies.h\"\n \n+#include <sstream>\n #include <string>\n #include <string_view>\n #include <utility>\n \n+#include \"base/containers/fixed_flat_map.h\"\n #include \"base/time/ti...
2025-02-05T11:48:11
vercel/next.js
654cd8e431e32c631a978c6acc79c78fb550786f
c964caa5ebf3d280f287adabaed4771dce52a3d7
Fix typo in fetching data documentation (#86758) Corrects a grammatical error in the data preloading explanation. The phrase "an utility function" was updated to "a utility function" because "utility" begins with a consonant sound. This improves clarity and maintains consistency with standard English usage throughout ...
[ { "path": "docs/01-app/01-getting-started/07-fetching-data.mdx", "patch": "@@ -569,7 +569,7 @@ export default async function Page({ params }) {\n \n ### Preloading data\n \n-You can preload data by creating an utility function that you eagerly call above blocking requests. `<Item>` conditionally renders bas...
2025-12-03T13:27:49
golang/go
162ba6cc405851ee7f0d30b600de1a308321ddca
9795c7ba220702c8bbf0188a8fc28e1d482bae4f
internal/strconv: add tests and benchmarks for ftoaFixed ftoaFixed is in the next CL; this proves the tests are correct against the current implementation, and it adds a benchmark for comparison with the new implementation. Change-Id: I7ac8a1f699b693ea6d11a7122b22fc70cc135af6 Reviewed-on: https://go-review.googlesour...
[ { "path": "src/internal/strconv/fp_test.go", "patch": "@@ -99,12 +99,14 @@ func TestFp(t *testing.T) {\n \ts := bufio.NewScanner(strings.NewReader(testfp))\n \tfor lineno := 1; s.Scan(); lineno++ {\n \t\tline := s.Text()\n-\t\tif len(line) == 0 || line[0] == '#' {\n+\t\tline, _, _ = strings.Cut(line, \"#\")...
2025-11-02T14:59:59
nodejs/node
f2e99c5c16f64a304d26747abedf186f84fafab8
efebf461313db420243717f48aaa0b97d5279580
fs: avoid computing time coefficient constants in runtime PR-URL: https://github.com/nodejs/node/pull/58728 Fixes: https://github.com/nodejs/node/issues/58726 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Revi...
[ { "path": "lib/internal/fs/utils.js", "patch": "@@ -419,10 +419,10 @@ StatsBase.prototype.isSocket = function() {\n return this._checkModeProperty(S_IFSOCK);\n };\n \n-const kNsPerMsBigInt = 10n ** 6n;\n-const kNsPerSecBigInt = 10n ** 9n;\n-const kMsPerSec = 10 ** 3;\n-const kNsPerMs = 10 ** 6;\n+const kN...
2025-06-18T16:36:55
facebook/react
f82c662b8d28461ffdb9f82f3fc26b7b54b9bef5
0a82580bfc80538c5ce914514dc86b17c8889954
[Flight Parcel] Implement findSourceMapURL (#32294) This implements `findSourceMapURL` in react-server-dom-parcel, enabling source maps for replayed server errors on the client. It utilizes a new endpoint in the Parcel dev server that returns the source map for a given bundle/file. The error overlay UI has also been u...
[ { "path": "fixtures/flight-parcel/.parcelrc", "patch": "@@ -1,4 +0,0 @@\n-{\n- \"extends\": \"@parcel/config-default\",\n- \"runtimes\": [\"...\", \"@parcel/runtime-rsc\"]\n-}", "additions": 0, "deletions": 4, "language": "Unknown" }, { "path": "fixtures/flight-parcel/package.json", ...
2025-02-04T19:17:13
golang/go
9795c7ba220702c8bbf0188a8fc28e1d482bae4f
ad5e941a4559a402fa3f428e612c58ec86471517
internal/strconv: fix pow10 off-by-one in exponent result The exact meaning of pow10 was not defined nor tested directly. Define it as pow10(e) returns mant, exp where mant/2^128 * 2**exp = 10^e. This is the most natural definition but is off-by-one from what it had been returning. Fix the off-by-one and then adjust t...
[ { "path": "src/internal/strconv/atofeisel.go", "patch": "@@ -40,7 +40,7 @@ func eiselLemire64(man uint64, exp10 int, neg bool) (f float64, ok bool) {\n \t// Normalization.\n \tclz := bits.LeadingZeros64(man)\n \tman <<= uint(clz)\n-\tretExp2 := uint64(exp2+64-float64Bias) - uint64(clz)\n+\tretExp2 := uint64...
2025-11-02T03:26:17
rust-lang/rust
94361fba3e9b26ca9040625a5de6d6ed1724f4cf
a63150b9cb14896fc22f9275c32682423de94d48
interpret: go back to regular string interpolation for error messages
[ { "path": "compiler/rustc_abi/src/lib.rs", "patch": "@@ -1000,20 +1000,6 @@ pub enum AlignFromBytesError {\n TooLarge(u64),\n }\n \n-impl AlignFromBytesError {\n- pub fn diag_ident(self) -> &'static str {\n- match self {\n- Self::NotPowerOfTwo(_) => \"not_power_of_two\",\n- ...
2026-03-09T14:38:21
vercel/next.js
b3e51f8bfe6eb8be915ef43c78b3226362ff8c71
78a802cb1ed4730992855d7df88652a4727d5f71
Turbopack: Use TransientCellData for non-serializable cells (#86069) Use TransientCellData for non-serializable cells use SharedReference to reduce size <!-- 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 checklis...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -817,9 +817,15 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n }\n }\n \n+ let ReadCellOptions {\n+ is_serializable_cell_content,\n+ tracking,\n+ final_read_...
2025-12-03T12:20:58
nodejs/node
07220230d9effcb4822d7a55563a86af3764540c
ea5d37ecbebabd754201b2a0b4fe47d1e2ed07e1
repl: fix tab completion not working with computer string properties PR-URL: https://github.com/nodejs/node/pull/58709 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
[ { "path": "lib/repl.js", "patch": "@@ -1226,7 +1226,7 @@ const importRE = /\\bimport\\s*\\(\\s*['\"`](([\\w@./:-]+\\/)?(?:[\\w@./:-]*))(?![^'\"`])\n const requireRE = /\\brequire\\s*\\(\\s*['\"`](([\\w@./:-]+\\/)?(?:[\\w@./:-]*))(?![^'\"`])$/;\n const fsAutoCompleteRE = /fs(?:\\.promises)?\\.\\s*[a-z][a-zA-...
2025-06-17T00:39:15
facebook/react
442150e0e2783ce9ab407a113acd2656752323d2
10a4c88f58233074f293ab387b73e96b67192538
build(eslint-plugin-react-hooks): tsconfig and global types (#32283) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull ...
[ { "path": "packages/eslint-plugin-react-hooks/src/types/estree.d.ts", "patch": "@@ -0,0 +1,70 @@\n+/**\n+ * This file augments the `estree` types to include types that are not built-in to `estree` or `estree-jsx`.\n+ * This is necessary because the `estree` types are used by ESLint, and ESLint does not nati...
2025-02-03T17:07:30
electron/electron
6486ce8191d4d02ed90ea8c1e034c3b57ae32cb0
bec6ddda7035be6aa77f9f4c9523a06bfc49470d
build: remove debugger agent timeout patch (#45457)
[ { "path": "patches/node/.patches", "patch": "@@ -8,7 +8,6 @@ refactor_allow_embedder_overriding_of_internal_fs_calls.patch\n chore_allow_the_node_entrypoint_to_be_a_builtin_module.patch\n fix_handle_boringssl_and_openssl_incompatibilities.patch\n fix_crypto_tests_to_run_with_bssl.patch\n-fix_account_for_deb...
2025-02-05T11:47:54
golang/go
c93cc603cd5c731d00dc019c94490edca6160841
b5353fd90a3824f4ff903e0d89cf4e63714f61d1
runtime: allow Stack to traceback goroutines in syscall _Grunning window net/http/cgi.TestCopyError calls runtime.Stack to take a stack trace of all goroutines, and searches for a specific line in that stack trace. It currently sometimes fails because it encounters the goroutine its looking for in the small window wh...
[ { "path": "src/runtime/traceback.go", "patch": "@@ -1314,7 +1314,16 @@ func tracebacksomeothers(me *g, showf func(*g) bool) {\n \t\t// from a signal handler initiated during a systemstack call.\n \t\t// The original G is still in the running state, and we want to\n \t\t// print its stack.\n-\t\tif gp.m != g...
2025-10-30T20:26:56
rust-lang/rust
d81cc6846c6aee24270390ed9c0df229d3ce488a
595f14b02216a127df89326d03a7f4e22cd4067f
fix: add EII function aliases to exported symbols
[ { "path": "compiler/rustc_codegen_ssa/src/back/symbol_export.rs", "patch": "@@ -199,6 +199,14 @@ fn exported_non_generic_symbols_provider_local<'tcx>(\n }))\n }\n \n+ symbols.extend(sorted.iter().flat_map(|&(&def_id, &info)| {\n+ tcx.codegen_fn_attrs(def_id).foreign_item_symbol_aliases...
2026-03-11T12:41:57
nodejs/node
ea5d37ecbebabd754201b2a0b4fe47d1e2ed07e1
908f9f1dc6e3241223b2c60e7671bac6cf17d5ad
util: inspect: do not crash on an Error stack pointing to itself PR-URL: https://github.com/nodejs/node/pull/58196 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1319,7 +1319,12 @@ function getStackString(ctx, error) {\n if (typeof error.stack === 'string') {\n return error.stack;\n }\n- return formatValue(ctx, error.stack);\n+ ctx.seen.push(error);\n+ ctx.indentationLvl += 4;\n+ const...
2025-06-16T23:36:47
facebook/react
10a4c88f58233074f293ab387b73e96b67192538
a4b2d0d51854b10ca0346ab8977da4975d2a7498
[compiler] Handle TSInstantiationExpression in lowerExpression (#32302) Fix #31745
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -2528,6 +2528,7 @@ function lowerExpression(\n loc: expr.node.loc ?? GeneratedSource,\n };\n }\n+ case 'TSInstantiationExpression':\n case 'TSNonNullExpression': {\n let expr = exprPath...
2025-02-03T16:41:04
vercel/next.js
4795a00b60de95a33a9184d54f9dc39cef302e3d
3b6f016f7707d8a1b5ba4d1a49d27d5d9d795dc8
Turbopack: Split AggregatedDirtyContainerCount (#86072) Split AggregatedDirtyContainerCount improve test case to test session dependent and restoring <!-- 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 s...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -48,8 +48,8 @@ use crate::backend::operation::TaskDirtyCause;\n use crate::{\n backend::{\n operation::{\n- AggregatedDataUpdate, AggregationUpdateJob, AggregationUpdateQueue,\n- CleanupOldEdg...
2025-12-03T08:21:46
electron/electron
bec6ddda7035be6aa77f9f4c9523a06bfc49470d
e9d5eeb118e4ff224508bfec6b61f30239bb804d
feat: route deprecated sync clipboard read through permission checks (#45377) * feat: route deprecated clipboard commands through permission checks * docs: address review feedback * fix: enable checks for child windows
[ { "path": "BUILD.gn", "patch": "@@ -441,6 +441,7 @@ source_set(\"electron_lib\") {\n \"chromium_src:chrome_spellchecker\",\n \"shell/common:mojo\",\n \"shell/common:plugin\",\n+ \"shell/common:web_contents_utility\",\n \"shell/services/node/public/mojom\",\n \"//base:base_static\",\n ...
2025-02-05T06:13:29
rust-lang/rust
3399ed3c9a25d51b777f10ac7dafc4bbb64eff35
b2fabe39bde5174e8d728bb85f2b8d0572c35b74
Simplify `type_of_opaque`. There is a bunch of complexity supporting the "cannot check whether the hidden type of opaque type satisfies auto traits" error that shows up in `tests/ui/impl-trait/auto-trait-leak.rs`. This is an obscure error that shows up in a single test. If we are willing to downgrade that error messag...
[ { "path": "compiler/rustc_errors/src/lib.rs", "patch": "@@ -371,8 +371,6 @@ pub enum StashKey {\n MaybeFruTypo,\n CallAssocMethod,\n AssociatedTypeSuggestion,\n- /// Query cycle detected, stashing in favor of a better error.\n- Cycle,\n UndeterminedMacroResolution,\n /// Used by `P...
2026-03-05T06:30:22
golang/go
b5353fd90a3824f4ff903e0d89cf4e63714f61d1
43491f8d52f13df3c70277f81c85809818969d77
runtime: don't panic in castogscanstatus The panic calls gopanic which may have write barriers, but castogscanstatus is called from //go:nowritebarrier contexts. The panic is dead code anyway, and appears immediately before a call to 'throw'. Change-Id: I4a8e296b71bf002295a3aa1db4f723c305ed939a Reviewed-on: https://...
[ { "path": "src/runtime/proc.go", "patch": "@@ -1254,8 +1254,8 @@ func castogscanstatus(gp *g, oldval, newval uint32) bool {\n \t\t}\n \t}\n \tprint(\"runtime: castogscanstatus oldval=\", hex(oldval), \" newval=\", hex(newval), \"\\n\")\n-\tthrow(\"castogscanstatus\")\n-\tpanic(\"not reached\")\n+\tthrow(\"b...
2025-11-03T22:29:36
nodejs/node
4d849a1d2892940267da594c23b1caaff98fad62
d6dade5bc5faf32c8efce69cbc385ca3383beef7
doc: add islandryu to collaborators Fixes: https://github.com/nodejs/node/issues/58559 PR-URL: https://github.com/nodejs/node/pull/58714 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@g...
[ { "path": "README.md", "patch": "@@ -355,6 +355,8 @@ For information about the governance of the Node.js project, see\n **Harshitha K P** <<harshitha014@gmail.com>> (she/her)\n * [himself65](https://github.com/himself65) -\n **Zeyu \"Alex\" Yang** <<himself65@outlook.com>> (he/him)\n+* [islandryu](https...
2025-06-16T09:27:03
facebook/react
a4b2d0d51854b10ca0346ab8977da4975d2a7498
1f0b03ced0d459129069d565cf5f8e5567881441
fix[react-devtools-fusebox]: add extension globals to build (#32297) We started using these globals in `react-devtools-shared/src/frontend` code, forward-fixing https://github.com/facebook/react/pull/32262.
[ { "path": "packages/react-devtools-fusebox/webpack.config.frontend.js", "patch": "@@ -83,6 +83,9 @@ module.exports = {\n __PROFILE__: false,\n __TEST__: NODE_ENV === 'test',\n __IS_NATIVE__: true,\n+ __IS_CHROME__: false,\n+ __IS_FIREFOX__: false,\n+ __IS_EDGE__: false,\n ...
2025-02-03T09:59:58
vercel/next.js
3b6f016f7707d8a1b5ba4d1a49d27d5d9d795dc8
a682261c910063351219f116188c453c8eeb55e7
Turbopack: Split AggregatedDirtyContainer (#86606) Split AggregatedDirtyContainer rename and helper update from_task add dirty_container_count method Allow infinite test runs improve test case to test session dependent and restoring improve names <!-- Thanks for opening a PR! Your contribution is much appreciat...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -592,14 +592,7 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n .set_active_until_clean();\n if ctx.should_track_activeness() {\n // A newly added Act...
2025-12-03T06:04:36
electron/electron
e9d5eeb118e4ff224508bfec6b61f30239bb804d
c147e4fa81161299688045a53e8909023f9a2e84
build: try removing embedder exception patch (#45429)
[ { "path": "patches/node/.patches", "patch": "@@ -20,7 +20,6 @@ test_formally_mark_some_tests_as_flaky.patch\n fix_do_not_resolve_electron_entrypoints.patch\n ci_ensure_node_tests_set_electron_run_as_node.patch\n fix_assert_module_in_the_renderer_process.patch\n-fix_capture_embedder_exceptions_before_enterin...
2025-02-04T18:39:20
rust-lang/rust
be78a0d629bd6058c2fd3b9b405a8484434ebcfb
6084bf541b23251b9c5b06466e075d176a9445e0
avoid ICE when EII target resolves to a constructor remove span_delayed_bug
[ { "path": "compiler/rustc_hir_analysis/src/check/compare_eii.rs", "patch": "@@ -9,6 +9,7 @@ use std::iter;\n use rustc_data_structures::fx::FxIndexSet;\n use rustc_errors::{Applicability, E0806, struct_span_code_err};\n use rustc_hir::attrs::EiiImplResolution;\n+use rustc_hir::def::DefKind;\n use rustc_hir:...
2026-03-08T14:04:49
golang/go
43491f8d52f13df3c70277f81c85809818969d77
aa94fdf0cc693b5846a936d5cd6f3bd358093245
cmd/cgo: use the export'ed file/line in error messages When an unpinned Go pointer (or a pointer to an unpinned Go pointer) is returned from Go to C, 1 package main 2 3 import ( 4 "C" 5 ) 6 7 //export foo 8 func foo(CLine *C.char) string { 9 return C...
[ { "path": "src/cmd/cgo/main.go", "patch": "@@ -72,8 +72,8 @@ type File struct {\n \tExpFunc []*ExpFunc // exported functions for this file\n \tName map[string]*Name // map from Go name to Name\n \tNamePos map[*Name]token.Pos // map from Name to position of the first reference\n-\t...
2025-11-01T14:20:45
nodejs/node
823ca6991f29e86db5adcbe1746a812021f17f67
0b3fc0d7a80021b7c4db171bcd9be6036fe8d8e7
fs: make `processReadResult()` and `readSyncRecursive()` private PR-URL: https://github.com/nodejs/node/pull/58672 Fixes: https://github.com/nodejs/node/issues/58671 Refs: https://github.com/nodejs/node/pull/41439 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Revie...
[ { "path": "lib/internal/fs/dir.js", "patch": "@@ -82,7 +82,7 @@ class Dir {\n );\n \n if (result !== null) {\n- this.processReadResult(path, result);\n+ this.#processReadResult(path, result);\n if (result.length > 0) {\n ArrayPrototypePush(this.#handlerQueue, hand...
2025-06-14T17:23:47
facebook/react
1f0b03ced0d459129069d565cf5f8e5567881441
152bfe3769f87e29c8d68cb87fdb608d2483b7f1
DevTools: fix host component filter option title (#32296) Overlook that in https://github.com/facebook/react/pull/32086, because of ternany, it is already string literals, so html entities names no longer needed.
[ { "path": "packages/react-devtools-shared/src/devtools/views/Settings/ComponentsSettings.js", "patch": "@@ -478,8 +478,8 @@ export default function ComponentsSettings({\n <option value={ElementTypeForwardRef}>forward ref</option>\n <option value={ElementTypeHostCompon...
2025-02-03T09:59:47
vercel/next.js
a682261c910063351219f116188c453c8eeb55e7
a1a8c25b240324635567752f8ad61ece95ec3be6
Turbopack: fix double deployment id in web workers (#86754) ### What? fix double deployment id in web workers
[ { "path": "test/e2e/app-dir/worker/next.config.js", "patch": "@@ -1,6 +1,8 @@\n /**\n * @type {import('next').NextConfig}\n */\n-const nextConfig = {}\n+const nextConfig = {\n+ deploymentId: 'test-deployment-id',\n+}\n \n module.exports = nextConfig", "additions": 3, "deletions": 1, "language...
2025-12-03T01:43:42
electron/electron
c147e4fa81161299688045a53e8909023f9a2e84
1d27a27813706af17e2a0b796fc8604a2f8491da
build: add win toolchain for release builds (#45380) * build: add win toolchain for release builds * build: fix installed_software.json script * chore: run pwsh script within src * build: fixup uploader arch
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -143,6 +143,25 @@ runs:\n run: |\n cd src\n e build --target electron:node_headers\n+ - name: Create installed_software.json ${{ inputs.step-suffix }}\n+ shell: powershell\n+ if: ${{ inputs.is-release == '...
2025-02-04T06:06:01
golang/go
aa94fdf0cc693b5846a936d5cd6f3bd358093245
4d2b03d2fc281a1883aceee3511f22d4865f8844
cmd/go: link to go.dev/doc/godebug for removed GODEBUG settings This makes the user experience better, before users would receive an unknown godebug error message, now we explicitly mention that it was removed and link to go.dev/doc/godebug where users can find more information about the removal. Additionally we keep...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -2242,9 +2242,12 @@ func CheckGodebug(verb, k, v string) error {\n \t\t}\n \t\treturn nil\n \t}\n-\tfor _, info := range godebugs.All {\n-\t\tif k == info.Name {\n-\t\t\treturn nil\n+\tif godebugs.Lookup(k) != nil {\n+\t\treturn nil\n+\t}\n+\tfor...
2025-09-08T17:54:21
nodejs/node
3ac0e28a7f190cc9593a0e7eb7fa6825e417a2f3
a5f9ca1f77cf2c658c9d97fa049b5f29e930b252
src: enhance error messages for unknown options PR-URL: https://github.com/nodejs/node/pull/58677 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M ...
[ { "path": "src/node_config_file.cc", "patch": "@@ -200,7 +200,7 @@ ParseResult ConfigReader::ParseOptions(\n } else {\n FPrintF(stderr,\n \"Unknown or not allowed option %s for namespace %s\\n\",\n- option_key.data(),\n+ option_key,\n namespace...
2025-06-13T13:40:17
facebook/react
152bfe3769f87e29c8d68cb87fdb608d2483b7f1
19ca800caa01eec2f5e65e547c67b11592bec8b0
[compiler][rfc] Hacky retry pipeline for fire (#32164) Hacky retry pipeline for when transforming `fire(...)` calls encounters validation, todo, or memoization invariant bailouts. Would love feedback on how we implement this to be extensible to other compiler non-memoization features (e.g. inlineJSX) Some observ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -162,7 +162,8 @@ function runWithEnvironment(\n if (\n !env.config.enablePreserveExistingManualUseMemo &&\n !env.config.disableMemoizationForDebugging &&\n- !env.config.enableChangeDetectionForDeb...
2025-01-31T23:57:26
vercel/next.js
420c6114436de1dc4174a3b546b742df6a17535f
23dc8ab32b47df0ceaec4515241d8734f8521858
Convert Windows paths as well when reading sourcemap (#86723) Fixes this warning on Windows: `C:\Users\IEUser\Desktop \next-turbopack-issue-repro\.next\dev|server\chunks\ssr\[turbopack]_runtime.js: Invalid source map. Only conformant source maps can be used to find the original code. Cause: Error: sourceMapURL could n...
[ { "path": "packages/next/src/server/patch-error-inspect.ts", "patch": "@@ -160,10 +160,14 @@ function getSourcemappedFrameIfPossible(\n let sourceMapPayload: ModernSourceMapPayload\n if (sourceMapCacheEntry === undefined) {\n let sourceURL = frame.file\n- // e.g. \"/APP/.next/server/chunks/ssr/[r...
2025-12-02T16:03:17
electron/electron
d3bead5e0edb3df5205675e27e0a8fc9dbd6fd74
9f1bb531ba47e7011dce88e09f047c3d116d76d7
docs: mention C++20 requirement in breaking changes document (#45413) * docs: mention C++20 requirement in breaking changes document * chore: fix linter issue
[ { "path": "docs/breaking-changes.md", "patch": "@@ -145,6 +145,16 @@ macOS 10.15 (Catalina) is no longer supported by [Chromium](https://chromium-rev\n Older versions of Electron will continue to run on Catalina, but macOS 11 (Big Sur)\n or later will be required to run Electron v33.0.0 and higher.\n \n+###...
2025-02-03T21:19:26
golang/go
85bec791a0941734520217d548f80714554e5f20
17b57078ab5388d830c28965717c3cc52bb845e1
cmd/go/testdata/script: loosen list_empty_importpath for freebsd We've been seeing the flakes where we get a 'no errors' output on freebsd in addition to windows and solaris. Also allow that case to avoid flakes. For #73976 Change-Id: I6a6a696445ec908b55520d8d75e7c1f867b9c092 Reviewed-on: https://go-review.googlesou...
[ { "path": "src/cmd/go/testdata/script/list_empty_importpath.txt", "patch": "@@ -1,12 +1,15 @@\n ! go list all\n ! stderr 'panic'\n-[!GOOS:windows] [!GOOS:solaris] stderr 'invalid import path'\n-# #73976: Allow 'no errors' on Windows and Solaris until issue\n+[!GOOS:windows] [!GOOS:solaris] [!GOOS:freebsd] [...
2025-10-28T15:18:02
nodejs/node
54fa74fba921fa98644e153dcf561877a663883f
efd28a0ca24104287afdb6622454ca96e85c92de
doc: punctuation fix for Node-API versioning clarification PR-URL: https://github.com/nodejs/node/pull/58599 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/n-api.md", "patch": "@@ -261,7 +261,7 @@ For example v18.15.0 supports only Node-API version 8. ABI stability was\n achieved because 8 was a strict superset of all previous versions.\n \n As of version 9, while Node-API versions continue to be versioned\n-independently an add-on that ran ...
2025-06-12T21:12:33
facebook/react
a657bc5dee29da313d2a03e7864b0665859bc7a8
9ff42a8798863c995523e284142b47e3cdfaee80
build(eslint-plugin-react-hooks): add dev dependencies for typescript migration (#32279) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Befor...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/package.json", "patch": "@@ -23,7 +23,7 @@\n \"@babel/preset-env\": \"^7.22.4\",\n \"@babel/preset-typescript\": \"^7.18.6\",\n \"@babel/types\": \"^7.19.0\",\n- \"@types/eslint\": \"^8.56.6\",\n+ \"@types/eslint\": \"^8.56.12\",\n ...
2025-01-31T19:32:23
vercel/next.js
1660d3966a99371a57b3d832522caa55b42bc189
5019e61d1cb592d9575985c9fb171641f0231feb
[CC] Fix hanging dynamic promise when abandoning render (#86690) Fixes #86662 The bug was introduced in #85747, where we added `RenderStage.Abandoned`. We forgot to update the logic that rejects promises on abort, so if a render was abandoned (i.e. restarted due to a cache miss), then promises waiting for the dynamic...
[ { "path": "packages/next/src/server/app-render/staged-rendering.ts", "patch": "@@ -40,7 +40,10 @@ export class StagedRenderingController {\n this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.runtimeStagePromise.reject(reason)\n }\n- ...
2025-12-02T14:11:15
electron/electron
e7fa5c709c555bbe248bc98b50a14b5cfa9ea1d9
7a1d410e0a685dec042266ed106127f2229d19e5
fix: incorrect WCO tooltip in RTL (#45405)
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -39,7 +39,8 @@ std::unique_ptr<WinCaptionButton> CreateCaptionButton(\n }\n \n bool HitTestCaptionButton(WinCaptionButton* button, const gfx::Point& point) {\n- return button && button->GetVisible() && button->bounds().Contain...
2025-02-03T09:50:50
golang/go
c5559344acf76c6ddbbb6f222354a2dd88e0abba
5132158ac2dee721790ad4b9f745bb6364406ea0
internal/profile: optimize Parse allocs In our case, it greatly improves the performance of continuously collecting diff profiles from the net/http/pprof endpoint, such as /debug/pprof/allocs?seconds=30. This CL is a cherry-pick of my PR upstream: https://github.com/google/pprof/pull/951 Benchmark of profile Parse f...
[ { "path": "src/internal/profile/proto.go", "patch": "@@ -24,6 +24,7 @@ package profile\n import (\n \t\"errors\"\n \t\"fmt\"\n+\t\"slices\"\n )\n \n type buffer struct {\n@@ -175,6 +176,16 @@ func le32(p []byte) uint32 {\n \treturn uint32(p[0]) | uint32(p[1])<<8 | uint32(p[2])<<16 | uint32(p[3])<<24\n }\n \...
2025-11-02T11:28:31
nodejs/node
bba07d7e1edace182894b517a903cb55fb4d5b2b
708477bd8d68f3571b02bb311dccc3d892e447d1
module: fix typescript import.meta.main PR-URL: https://github.com/nodejs/node/pull/58661 Fixes: https://github.com/nodejs/node/issues/58660 Reviewed-By: Xuguang Mei <meixuguang@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Ethan Arrowoo...
[ { "path": "lib/internal/modules/esm/translators.js", "patch": "@@ -593,17 +593,17 @@ translators.set('addon', function translateAddon(url, source, isMain) {\n });\n \n // Strategy for loading a commonjs TypeScript module\n-translators.set('commonjs-typescript', function(url, source) {\n+translators.set('com...
2025-06-12T11:21:54
facebook/react
87c03a0a134b19ffbda6bbef4b12202f4f5a4347
221f3002caa2314cba0a62950da6fb92b453d1d0
Fix typo in dangerfile.js which results in an unreachable code path… (#32277) ## Summary Fix typo in dangerfile.js which results in an unreachable code path which ought to be hit when there is no matching base artifact during DangerCI automated code review. See: https://github.com/facebook/react/blob/221f3002caa2314...
[ { "path": "dangerfile.js", "patch": "@@ -70,7 +70,7 @@ const percentFormatter = new Intl.NumberFormat('en', {\n });\n \n function change(decimal) {\n- if (Number === Infinity) {\n+ if (decimal === Infinity) {\n return 'New file';\n }\n if (decimal === -1) {", "additions": 1, "deletions": 1...
2025-01-31T06:44:02
vercel/next.js
75cd5293fb6955a5fe3c36a1c29405bfe314f61c
86f3bf1a6eecec990ba0984ea6ca5c5bd919c13c
Turbopack: fix fuzz command (#86732) ### What? Fix the fuzz testing command
[ { "path": "turbopack/crates/turbo-tasks-backend/fuzz/fuzz_targets/graph.rs", "patch": "@@ -10,7 +10,8 @@ mod graph;\n \n // Run with:\n // cd turbopack/crates/turbo-tasks-backend\n-// cargo fuzz run fuzz_graph -- -timeout=3 -print_pcs=1 -print_funcs=999999 -print_final_stats=1\n+// cargo fuzz run fuzz_graph...
2025-12-02T13:30:27
electron/electron
7a1d410e0a685dec042266ed106127f2229d19e5
e2a7981dd3f99ff7e98b790de4acae586a0d1e25
fix: default path not working on KDE Linux (#45402)
[ { "path": "patches/chromium/feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch", "patch": "@@ -260,10 +260,18 @@ index 61683d0eddb04c494ca5e650e7d556b44968ec49..5492456a9138b250e97a5479838bb443\n \n } // namespace ui\n diff --git a/ui/shell_dialogs/select_file_dialog_linux_kde.cc b/ui/sh...
2025-02-03T08:49:48
golang/go
5132158ac2dee721790ad4b9f745bb6364406ea0
361d51a6b58bccaab0559e06737c918018a7a5fa
bytes: add Buffer.Peek Fixes #73794 Change-Id: I0a57db05aacfa805213fe8278fc727e76eb8a65e GitHub-Last-Rev: 3494d93f803f21905dfd5a9d593644da69279f16 GitHub-Pull-Request: golang/go#73795 Reviewed-on: https://go-review.googlesource.com/c/go/+/674415 Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <gola...
[ { "path": "api/next/73794.txt", "patch": "@@ -0,0 +1 @@\n+pkg bytes, method (*Buffer) Peek(int) ([]uint8, error) #73794", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/bytes/73794.md", "patch": "@@ -0,0 +1,2 @@\n+The new [Buffer.Pee...
2025-10-31T20:11:04
nodejs/node
54574432109f353dcb936343d732f406584bce51
3a7f8efe60eedeac4d03489521a6acb5249e480e
lib,src: support DOMException ser-des Added serialization and deserialization support for `DOMException`. Co-Authored-By: jazelly <xzha4350@gmail.com> PR-URL: https://github.com/nodejs/node/pull/58649 Fixes: https://github.com/nodejs/node/issues/49181 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ethan ...
[ { "path": "lib/eslint.config_partial.mjs", "patch": "@@ -525,4 +525,16 @@ export default [\n ],\n },\n },\n+ {\n+ files: [\n+ 'lib/internal/per_context/domexception.js',\n+ ],\n+ languageOptions: {\n+ globals: {\n+ // Parameters passed to internal modules.\n+ pr...
2025-06-11T16:11:18
facebook/react
221f3002caa2314cba0a62950da6fb92b453d1d0
55b54b0d638a6ae5c7a5ab6dd4fee732cfbc47ad
chore[DevTools]: make clipboardWrite optional for chromium (#32262) Addresses https://github.com/facebook/react/issues/32244. ### Chromium We will use [chrome.permissions](https://developer.chrome.com/docs/extensions/reference/api/permissions) for checking / requesting `clipboardWrite` permission before copying ...
[ { "path": ".eslintrc.js", "patch": "@@ -500,13 +500,15 @@ module.exports = {\n 'packages/react-devtools-shared/src/hook.js',\n 'packages/react-devtools-shared/src/backend/console.js',\n 'packages/react-devtools-shared/src/backend/shared/DevToolsComponentStackFrame.js',\n+ 'pac...
2025-01-30T20:08:17
vercel/next.js
86f3bf1a6eecec990ba0984ea6ca5c5bd919c13c
653cf4af0c77184dde1c124cfd07a14a47e7166f
Turbopack: avoid snapshotting while continuously idle, fix spans (#86611) ### What? While idle only snapshot once. Start snapshotting again when idle has been left. Place persisting spans on top level. Fix some missing spans.
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -405,8 +405,14 @@ pub fn project_new(\n }\n let mut compress = Compression::None;\n if let Some(mut trace) = trace {\n+ let internal_dir = PathBuf::from(&options.root_path)\n+ .join(&options.project_path)\n+ ...
2025-12-02T13:15:53
electron/electron
bc22ee7897b9d482bbe7e5322ef771462a2bd6ec
784201ecee06252b63ac1e1a2478f9c974bcc85d
build: fix `slack-github-action` for backports (#45388) build: fix slack-github-action for backports
[ { "path": ".github/workflows/pull-request-labeled.yml", "patch": "@@ -15,12 +15,12 @@ jobs:\n - name: Trigger Slack workflow\n uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0\n with:\n+ webhook: ${{ secrets.BACKPORT_REQUESTED_SLACK_WEBHOOK_...
2025-01-31T09:29:50
golang/go
388c41c412c24b751c8c09465787ae79bceca9c7
385dc33250336081c0c630938c3efede481eff76
cmd/go: skip git sha256 tests if git < 2.29 Fix test building on older Ubuntu LTS releases (that are still supported). Git SHA256 support was only included in 2.29, which came out in 2021. Check the output of `git version` and skip these tests if the version is older than that introduction. Thanks to @ianlancetaylor ...
[ { "path": "src/cmd/go/internal/modfetch/codehost/git_test.go", "patch": "@@ -16,14 +16,18 @@ import (\n \t\"io/fs\"\n \t\"log\"\n \t\"os\"\n+\t\"os/exec\"\n \t\"path\"\n \t\"path/filepath\"\n \t\"reflect\"\n+\t\"regexp\"\n \t\"runtime\"\n \t\"strings\"\n \t\"sync\"\n \t\"testing\"\n \t\"time\"\n+\n+\t\"gola...
2025-08-24T19:15:06
nodejs/node
977b5ac7ddc7ab0f866c39056f3e28e4b2e82645
85e8cc6ff3ca848dd07e9d32fa3f9ee941cf5f79
http2: fix DEP0194 message PR-URL: https://github.com/nodejs/node/pull/58669 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -753,7 +753,7 @@ function onGoawayData(code, lastStreamID, buf) {\n \n // TODO(aduh95): remove this in future semver-major\n const deprecateWeight = deprecateProperty('weight',\n- 'Priority signaling has been depre...
2025-06-11T13:47:31
facebook/react
55b54b0d638a6ae5c7a5ab6dd4fee732cfbc47ad
4b3728f05efbab9624e981339d8a0992a58f9a41
[ci] Only install chromium for flight fixtures (#32275) I noticed we only use chromium in fixtures/flight, so let's specifically only install that browser in ci.
[ { "path": ".github/workflows/runtime_build_and_test.yml", "patch": "@@ -476,9 +476,7 @@ jobs:\n fi\n - name: Playwright install deps\n working-directory: fixtures/flight\n- run: |\n- npx playwright install\n- sudo npx playwright install-deps\n+ run: np...
2025-01-30T19:13:45
vercel/next.js
653cf4af0c77184dde1c124cfd07a14a47e7166f
b8b62f1d4d0f0ff369fe54397534b927b6c460ac
fix(next-custom-transforms): preserve all declarators in multi-declarator export statements (#86552)
[ { "path": "crates/next-custom-transforms/src/transforms/next_ssg.rs", "patch": "@@ -144,9 +144,11 @@ impl VisitMut for Analyzer<'_> {\n return;\n }\n \n- if let Pat::Ident(id) = &d.decls[0].name {\n- if !SSG_EXPORTS.contains(&&*id.id.sym) {\n- ...
2025-12-02T12:51:12
golang/go
385dc33250336081c0c630938c3efede481eff76
99b724f4542f4d9fb4a2ceacbbd2a6d9367dc0f6
runtime: prevent time.Timer.Reset(0) from deadlocking testing/synctest tests In Go 1.23+, timer channels behave synchronously. When we have a timer channel (i.e. !async && t.isChan) we would lock the runtime.timer.sendLock mutex at the beginning of runtime.timer.modify()'s execution. Calling time.Timer.Reset(0) withi...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -5,6 +5,7 @@\n package synctest_test\n \n import (\n+\t\"context\"\n \t\"fmt\"\n \t\"internal/synctest\"\n \t\"internal/testenv\"\n@@ -329,6 +330,31 @@ func TestAfterFuncRunsImmediately(t *testing.T) {\n \t})\n }\n \n+// TestTimerResetZeroDoNo...
2025-11-01T15:15:58
electron/electron
6e72cbb5e01876eb00ceac2e7d153520c92d04b9
233b99a0a88120f0d3a4c018e9f4ad29b2acd0ac
fix: multiple directory selection on Linux (#45373)
[ { "path": "patches/chromium/feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch", "patch": "@@ -14,10 +14,25 @@ It also:\n This may be partially upstreamed to Chromium in the future.\n \n diff --git a/ui/gtk/select_file_dialog_linux_gtk.cc b/ui/gtk/select_file_dialog_linux_gtk.cc\n-index b83...
2025-01-30T15:34:44
nodejs/node
8c17ceb38fd9bc550f6e5fedb25ad80120396aba
ccf105df2a0a528460abe16e5cba571e0c7e4f3c
module: allow cycles in require() in the CJS handling in ESM loader When --import is used, the ESM loader is used to handle even pure CJS entry points, and it can run into CJS module facades in the evaluating state when the parent CJS module is being evaluated. In this case it should be allowed, since the ESM <-> CJS ...
[ { "path": "lib/internal/modules/esm/module_job.js", "patch": "@@ -26,6 +26,7 @@ const {\n ModuleWrap,\n kErrored,\n kEvaluated,\n+ kEvaluating,\n kEvaluationPhase,\n kInstantiated,\n kUninstantiated,\n@@ -338,8 +339,14 @@ class ModuleJob extends ModuleJobBase {\n return { __proto__: nul...
2025-06-11T09:33:16
vercel/next.js
b8b62f1d4d0f0ff369fe54397534b927b6c460ac
50d459e688c771293af1d33636825ebad67d03b7
[test] Improve app-basepath assertion error (#86725) To make it print out what the second request is when this flake happens: ``` ● app dir - basepath › should only make a single RSC call to the current page (/base/refresh?foo=bar) expect(received).toBe(expected) // Object.is equality Expected: 1 Rece...
[ { "path": "test/e2e/app-dir/app-basepath/index.test.ts", "patch": "@@ -1,5 +1,5 @@\n import { nextTestSetup } from 'e2e-utils'\n-import { check, retry } from 'next-test-utils'\n+import { retry } from 'next-test-utils'\n import type { Request, Response } from 'playwright'\n \n describe('app dir - basepath', ...
2025-12-02T10:58:17
facebook/react
4b3728f05efbab9624e981339d8a0992a58f9a41
f02ba2fcc5de5c280d5c79f52302b04daaaf1e23
[Fiber] Track Appearing Named ViewTransition in the accumulateSuspenseyCommit Phase (#32254) When a named ViewTransition component unmounts in one place and mounts in a different place we need to match these up so we know a pair has been created. Since the unmounts are tracked in the snapshot phase we need some way to...
[ { "path": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -97,6 +97,7 @@ import {\n Passive,\n DidDefer,\n ViewTransitionNamedStatic,\n+ ViewTransitionNamedMount,\n LayoutStatic,\n } from './ReactFiberFlags';\n import {\n@@ -266,7 +267,6 @@ import {\n markSkippedUpdateLanes,\...
2025-01-30T17:13:36
rust-lang/rust
accbfccd597b332a36d6d22335d1d7d8e9507619
d1c79458b5d13bd0179d7dbafd5ca4ea9ae3e6aa
Unconditionally error when trying to create a const coroutine
[ { "path": "compiler/rustc_ast_lowering/src/expr.rs", "patch": "@@ -231,6 +231,7 @@ impl<'hir> LoweringContext<'_, 'hir> {\n e.id,\n expr_hir_id,\n *coroutine_kind,\n+ *constness,\n fn_decl,...
2026-03-11T07:22:26
golang/go
99b724f4542f4d9fb4a2ceacbbd2a6d9367dc0f6
27937289dc9fccf1f5513475145799087f39b964
cmd/go: document purego convention Fixes #23172 Change-Id: I854e399471dfa22e62fbdec9719e561c4501e5ac Reviewed-on: https://go-review.googlesource.com/c/go/+/660136 Reviewed-by: Michael Matloob <matloob@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mi...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2190,6 +2190,12 @@\n // building the package for Windows; similarly, math_386.s will be included\n // only when building the package for 32-bit x86.\n //\n+// By convention, packages with assembly implementations may provide a go-only\n+// version under the \...
2025-03-21T23:23:50
electron/electron
8543820d98bd0ace5173218f7e803106ca23d85c
93f4a93e123a4d7e19f11aadf9afab77d5a8e92d
build: fixup concurrent builds on protected branches (#45355)
[ { "path": ".github/workflows/pipeline-electron-build-and-test-and-nan.yml", "patch": "@@ -56,8 +56,8 @@ on:\n default: false\n \n concurrency:\n- group: electron-build-and-test-and-nan-${{ inputs.target-platform }}-${{ inputs.target-arch }}-${{ github.ref }}\n- cancel-in-progress: ${{ github.ref !...
2025-01-29T21:47:25
nodejs/node
12508853321ff00ebd2eec8070c5aa1342e8c7fb
bb991716c62bb991240361929931fcc1c9cc8229
test: update WPT for es-exceptions to 2f96fa1996 PR-URL: https://github.com/nodejs/node/pull/58640 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "test/fixtures/wpt/README.md", "patch": "@@ -34,7 +34,7 @@ Last update:\n - wasm/jsapi: https://github.com/web-platform-tests/wpt/tree/cde25e7e3c/wasm/jsapi\n - wasm/webapi: https://github.com/web-platform-tests/wpt/tree/fd1b23eeaa/wasm/webapi\n - WebCryptoAPI: https://github.com/web-platform-test...
2025-06-11T08:55:52
vercel/next.js
9d792e35f9f7479a4ec9878e8858ebd9577d3870
2cd70dfede8bcb1b72798804d92f9653edde61e6
Cover org package external in externals-transitive test (#86691) <!-- 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...
[ { "path": "test/e2e/externals-transitive/dep-b/index.js", "patch": "@@ -1,4 +1,5 @@\n import lodash from 'lodash'\n-import pkg from 'lodash/package.json'\n+import lodashPkg from 'lodash/package.json'\n+import globalPkg from '@storybook/global/package.json'\n \n-export default [lodash.VERSION, pkg.version]\n...
2025-12-01T22:18:30
facebook/react
ddc26c9db16a7be2f05eacc6f0228f42eeff3803
dc44bca85b19481267ae5f7c0c271f8a5a126654
Swap to Eli's new GitHub username in Maintainers file (#32237) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull ...
[ { "path": "MAINTAINERS", "patch": "@@ -20,6 +20,6 @@ rickhanlonii\n sebmarkbage\n sethwebster\n sophiebits\n-TheSavior\n+elicwhite\n tyao1\n yuzhi", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2025-01-27T18:10:40
golang/go
89dee70484669d546fff6ca29a4717368af351ff
8683bb846dfc1460c476cfed1696aad8e681926f
runtime: prioritize panic output over racefini For some reason CL 646198 uncovered #3934 and #20018 again, but only in race mode. It turns out that because racefini does not return, and racefini is called early after main returns, we would not properly wait for a concurrent panic to complete. This would result in fair...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -788,9 +788,6 @@ func TestPanicInlined(t *testing.T) {\n // Test for issues #3934 and #20018.\n // We want to delay exiting until a panic print is complete.\n func TestPanicRace(t *testing.T) {\n-\tif race.Enabled {\n-\t\tt.Skip(\"racefini exits program be...
2025-07-30T00:36:40