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
nodejs/node
a33ec1248bc2df74811da8b0cd811f16663205db
990497c514c30a2f104ed8da3a0f91284bad26b0
lib: suppress source map lookup exceptions When the source map data are invalid json strings, skip construct `SourceMap` on it. Additionally, suppress exceptions on source map lookups and fix test runners crash on invalid source maps. PR-URL: https://github.com/nodejs/node/pull/56299 Refs: https://github.com/nodejs/n...
[ { "path": "lib/internal/source_map/source_map_cache.js", "patch": "@@ -155,6 +155,9 @@ function maybeCacheSourceMap(filename, content, moduleInstance, isGeneratedSourc\n }\n \n const data = dataFromUrl(filename, sourceMapURL);\n+ // `data` could be null if the source map is invalid.\n+ // In this case...
2024-12-17T23:12:00
golang/go
a4d99770c0e5f340d6d11d6353110413dc109138
70a2ff76485477211397ae6399bee06101bc5935
runtime/metrics: add cleanup and finalizer queue metrics These metrics are useful for identifying finalizer and cleanup problems, namely slow finalizers and/or cleanups holding up the queue, which can lead to a memory leak. Fixes #72948. Change-Id: I1bb64a9ca751fcb462c96d986d0346e0c2894c95 Reviewed-on: https://go-re...
[ { "path": "src/runtime/metrics.go", "patch": "@@ -169,6 +169,20 @@ func initMetrics() {\n \t\t\t\tout.scalar = float64bits(nsToSec(in.cpuStats.UserTime))\n \t\t\t},\n \t\t},\n+\t\t\"/gc/cleanups/executed:cleanups\": {\n+\t\t\tdeps: makeStatDepSet(finalStatsDep),\n+\t\t\tcompute: func(in *statAggregate, out ...
2025-07-23T03:09:27
electron/electron
4e8c28fdf0fc415f892e86d2bdb84ebe6fd3d3ca
46adb0a3a9f1fa60ee2bb140f08894543777256a
fix: data corruption in `protocol.handle` (#41894)
[ { "path": "lib/browser/api/protocol.ts", "patch": "@@ -18,7 +18,7 @@ function makeStreamFromPipe (pipe: any): ReadableStream {\n try {\n const rv = await pipe.read(buf);\n if (rv > 0) {\n- controller.enqueue(buf.subarray(0, rv));\n+ controller.enqueue(buf.slice(0, rv)...
2024-04-22T20:40:01
facebook/react
fcfbfc1d1e3e350e1ea3fbc4a2418f647dc28a31
1f59d07042466fa958d74062592cc31890e88661
[compiler] Always error on async reassignments Summary: Addresses the issue in #30109: any mutation of a local in an async function may occur after rendering has finished. ghstack-source-id: 9f15cf0f144c0badd6009ceb51df43a50399d82b Pull Request resolved: https://github.com/facebook/react/pull/30111
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateLocalsNotReassignedAfterRender.ts", "patch": "@@ -19,7 +19,12 @@ import {\n */\n export function validateLocalsNotReassignedAfterRender(fn: HIRFunction): void {\n const contextVariables = new Set<IdentifierId>();\n- const re...
2024-06-27T00:07:40
nodejs/node
854d23b0d60bec3ebdaf5b4c05a4f57fd1bbf62a
a85ef6a04a8b10de037c62b446e92ee1102e82f2
2024-12-19, Version 23.5.0 (Current) Notable changes: crypto: * graduate WebCryptoAPI Ed25519 and X25519 algorithms as stable (Filip Skokan) https://github.com/nodejs/node/pull/56142 dgram: * (SEMVER-MINOR) support blocklist in udp (theanarkh) https://github.com/nodejs/node/pull/56087 doc: * stabilize util.styl...
[ { "path": "CHANGELOG.md", "patch": "@@ -39,7 +39,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.4.0\">23.4.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.5.0\">23.5.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V23.md#23.4.0\">2...
2024-12-18T21:40:13
facebook/react
00775d94dc32c5136787e3ca60065b9a5e2df9b8
4c9a2d2ddf1bc8205a426b14d8a37804b5beb57a
[compiler] Add todo fixtures for local reassignment in an async callback ghstack-source-id: eca878f62a2149af76a72b59acd1820d0df86f30 Pull Request resolved: https://github.com/facebook/react/pull/30109
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/todo.invalid-reassign-local-variable-in-async-callback.expect.md", "patch": "@@ -0,0 +1,58 @@\n+\n+## Input\n+\n+```javascript\n+function Component() {\n+ let value = null;\n+ const reassign = async () => {\n+ awai...
2024-06-26T23:06:16
golang/go
69338a335ada5882b888fb7eabe0ad6f0e12c986
cedf63616a00c8a6a69f6bbe4bc93b6865cec842
cmd/go/internal/gover: fix ModIsPrerelease for toolchain versions We forgot to call the IsPrerelease function on FromToolchain(vers) rather than on vers itself. IsPrerelase expects a version without the "go" prefix. See the corresponding code in ModIsValid and ModIsPrefix that call FromToolchain before passing the ver...
[ { "path": "src/cmd/go/internal/gover/mod.go", "patch": "@@ -109,6 +109,9 @@ func ModIsPrefix(path, vers string) bool {\n // The caller is assumed to have checked that ModIsValid(path, vers) is true.\n func ModIsPrerelease(path, vers string) bool {\n \tif IsToolchain(path) {\n+\t\tif path == \"toolchain\" {\...
2025-07-29T21:12:24
vercel/next.js
82e1eb1f77fdbd97d979aa354f44994c1c080e77
2838b8b0a55d14bb63f5643cbe78da0fdc09727d
Docs/workspace setup (#83490) Retrying this... ## TODO - [x] deploy docs action - [x] verify that re-compiled deps are ok, no version regression - [x] turbopack with fumadocs errors out, why?
[ { "path": ".github/workflows/deploy_docs.yml", "patch": "@@ -0,0 +1,54 @@\n+name: docs-deploy\n+\n+on:\n+ pull_request:\n+ paths:\n+ - 'apps/docs/**'\n+ types: [opened, synchronize]\n+\n+permissions:\n+ contents: read\n+ pull-requests: write\n+\n+env:\n+ NODE_LTS_VERSION: 20\n+\n+jobs:\n+ de...
2025-09-19T08:27:34
electron/electron
46adb0a3a9f1fa60ee2bb140f08894543777256a
a8db7fe2ef65bbe8a26bee404cdbb2bedea123d7
fix: offscreen rendering does not paint after gpu process crashed (#41904) Co-authored-by: zhangqi.67 <zhangqi.67@bytedance.com>
[ { "path": "shell/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -230,6 +230,7 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n \n ResizeRootLayer(false);\n render_widget_host_->SetView(this);\n+ render_widget_host_->render_frame_metadata_provider()->AddObserver(this);\n \n ...
2024-04-22T13:50:55
nodejs/node
fd8de670da4d2a80e21e0f8a12ec7a6b0a13014d
0675e05a04cd64a1d3b1c9032af5c2e9e2e6ab06
stream: catch and forward error from dest.write PR-URL: https://github.com/nodejs/node/pull/55270 Fixes: https://github.com/nodejs/node/issues/54945 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Ja...
[ { "path": "lib/internal/streams/readable.js", "patch": "@@ -1004,10 +1004,15 @@ Readable.prototype.pipe = function(dest, pipeOpts) {\n src.on('data', ondata);\n function ondata(chunk) {\n debug('ondata');\n- const ret = dest.write(chunk);\n- debug('dest.write', ret);\n- if (ret === false) {...
2024-12-19T11:49:34
facebook/react
609d0cc3c8d484cd16378f4ba0e2e9eedbf48358
349a99a7a347f280ce40e9297cac5a3bd796901e
Add new error message for awaiting the client export (#29853) <!-- 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 r...
[ { "path": "packages/react-server-dom-turbopack/src/ReactFlightTurbopackReferences.js", "patch": "@@ -133,6 +133,11 @@ const deepProxyHandlers = {\n `Instead, you can export a Client Component wrapper ` +\n `that itself renders a Client Context Provider.`,\n );\n+ case 't...
2024-06-26T17:47:39
golang/go
cedf63616a00c8a6a69f6bbe4bc93b6865cec842
82a1921c3b6b493c4ff358f063c2ffffabba9fd5
cmd/compile: add floating point min/max intrinsics on s390x Add the VECTOR FP (MINIMUM|MAXIMUM) instructions to the assembler and use them in the compiler to implement min and max. Note: I've allowed floating point registers to be used with the single element instructions (those with the W instead of V prefix) to all...
[ { "path": "src/cmd/asm/internal/asm/testdata/s390x.s", "patch": "@@ -540,6 +540,18 @@ TEXT main·foo(SB),DUPOK|NOSPLIT,$16-0 // TEXT main.foo(SB), DUPOK|NOSPLIT, $16-\n \tVSTRCZBS V18, V20, V22, V24\t// e78240306f8a\n \tVSTRCZHS V18, V20, V22, V24\t// e78241306f8a\n \tVSTRCZFS V18, V20, V22, V24\t// e7824230...
2025-06-27T20:05:38
vercel/next.js
18e7c84af25c69c7807026a9044819ace1780abb
0f27700f3df6604215993cdbbeb8681ec19d42e2
Remove JS size reporting from next build (#83815) ## What Remove the `First Used JS` and `Size` metrics from `next build` CLI output, as well as the manifest files that supported these metrics. ## Why A recent investigation has revealed a number of bugs and longstanding known issues in the implementation. * The me...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -23,8 +23,8 @@ use next_core::{\n next_dynamic::NextDynamicTransition,\n next_edge::route_regex::get_named_middleware_regex,\n next_manifests::{\n- AppBuildManifest, AppPathsManifest, BuildManifest, ClientReferenceManifest,\n- Ed...
2025-09-19T06:57:41
rust-lang/rust
c234b12cfa232e1e3365edaded6adbbe56290665
0492671fc8cb1a4fe240681e83e71845db697793
fix: `explicit_counter_loop` FN when loop counter starts at non-zero
[ { "path": "clippy_lints/src/loops/explicit_counter_loop.rs", "patch": "@@ -1,17 +1,19 @@\n+use std::borrow::Cow;\n+\n use super::{EXPLICIT_COUNTER_LOOP, IncrementVisitor, InitializeVisitor, make_iterator_snippet};\n-use clippy_utils::diagnostics::{span_lint_and_sugg, span_lint_and_then};\n+use clippy_utils:...
2026-02-23T05:13:07
nodejs/node
0675e05a04cd64a1d3b1c9032af5c2e9e2e6ab06
756077867b4901377c11abd5840e040f9e0d135e
doc: fix links in `module.md` PR-URL: https://github.com/nodejs/node/pull/56283 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -1159,13 +1159,13 @@ validating the import attributes.\n \n The final value of `format` must be one of the following:\n \n-| `format` | Description | Acceptable types for `source` returned by `load` |\n-| ----------...
2024-12-19T10:34:42
electron/electron
39bf441b3b6ee5cdefb3da98861632928c821ca7
46ef7ef8fbfccff4cace74dd22b62926a1329419
build: enable Perfetto in Chromium (#41880) * build: enable perfetto in Chromium * refactor: delete TracingControllerImpl * fix: TraceObject isn't present when v8_use_perfetto is true * fix: update lib/internal/http for perfetto * chore: remove stray log
[ { "path": "build/args/all.gn", "patch": "@@ -50,10 +50,6 @@ is_cfi = false\n # TODO: fix this once sysroots have been updated.\n use_qt = false\n \n-# https://chromium-review.googlesource.com/c/chromium/src/+/4365718\n-# TODO(codebytere): fix perfetto incompatibility with Node.js.\n-use_perfetto_client_libr...
2024-04-19T15:07:36
golang/go
82a1921c3b6b493c4ff358f063c2ffffabba9fd5
2ae059ccaf982c3304fae0b48c1d78ad7192cbdd
all: remove redundant Swiss prefixes Now that there is only one map implementation we can simplify names. For #54766. Change-Id: I6a6a636cc6a8fc5e7712c27782fc0ced7467b939 Reviewed-on: https://go-review.googlesource.com/c/go/+/691596 Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Michael Pratt <mpratt@googl...
[ { "path": "src/cmd/compile/internal/reflectdata/map.go", "patch": "@@ -15,10 +15,10 @@ import (\n \t\"internal/abi\"\n )\n \n-// SwissMapGroupType makes the map slot group type given the type of the map.\n-func SwissMapGroupType(t *types.Type) *types.Type {\n-\tif t.MapType().SwissGroup != nil {\n-\t\tretur...
2025-07-29T17:58:35
facebook/react
349a99a7a347f280ce40e9297cac5a3bd796901e
7045700a6db5edaf8427310de09ce0f113e781dc
Badge Environment Name on Thrown Errors from the Server (#29846) When we replay logs we badge them with e.g. `[Server]`. That way it's easy to identify that the source of the log actually happened on the Server (RSC). However, when we threw an error we didn't have any such thing. The error was rethrown on the clien...
[ { "path": "packages/internal-test-utils/consoleMock.js", "patch": "@@ -418,13 +418,18 @@ export function createLogAssertion(\n let argIndex = 0;\n // console.* could have been called with a non-string e.g. `console.error(new Error())`\n // eslint-disable-next-line react-internal/safe...
2024-06-26T17:27:26
vercel/next.js
8c8e9a50d77eb132b6a5a0d20c2e9546aab75027
1ee2861c037ac433ad22ccbe22059ee839dac846
Fix conclusion check for retry_test workflow (#83960)
[ { "path": ".github/workflows/retry_test.yml", "patch": "@@ -39,7 +39,7 @@ jobs:\n const requiredJobName = {\n 'build-and-test': 'thank you, next',\n 'build-and-deploy': 'thank you, build',\n- }[github.event.workflow_run.name]\n+ }[context.payload...
2025-09-18T17:09:01
rust-lang/rust
b6083435d81a43bf9393a630804e83a2ffd5b981
eeb94be79adc9df7a09ad0b2421f16e60e6d932c
implement debuginfo for unsafe binders
[ { "path": "compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs", "patch": "@@ -480,8 +480,7 @@ pub(crate) fn spanned_type_di_node<'ll, 'tcx>(\n },\n ty::Tuple(_) => build_tuple_type_di_node(cx, unique_type_id),\n ty::Pat(base, _) => return type_di_node(cx, base),\n- // FIXME...
2026-02-23T14:19:51
nodejs/node
756077867b4901377c11abd5840e040f9e0d135e
60bd4fd2cc7d59440a8b55199dbc060f82655457
build: build v8 with -fvisibility=hidden on macOS V8 should be built with -fvisibility=hidden, otherwise the resulting binary would contain unnecessary symbols. In particular, on macOS, this leads to 5000+ weak symbols resolved at runtime, leading to a startup regression. On macOS this also reduces the binary size ab...
[ { "path": "tools/v8_gypfiles/v8.gyp", "patch": "@@ -41,6 +41,19 @@\n 'AdditionalOptions': ['/utf-8']\n }\n },\n+ 'conditions': [\n+ ['OS==\"mac\"', {\n+ # Hide symbols that are not explicitly exported with V8_EXPORT.\n+ # TODO(joyeecheung): enable it on other platform...
2024-12-19T03:24:51
golang/go
cc571dab91e73413cf2ba1546a4ba485038cf2d1
2174a7936c9e6109e2786369072f5b9dc5d631f5
cmd/compile: deduplicate instructions when rewrite func results After CL 628075, do not rely on the memory arg of an OpLocalAddr. Fixes #74788 Change-Id: I4e893241e3949bb8f2d93c8b88cc102e155b725d Reviewed-on: https://go-review.googlesource.com/c/go/+/691275 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc...
[ { "path": "src/cmd/compile/internal/ssa/expand_calls.go", "patch": "@@ -243,11 +243,8 @@ func (x *expandState) rewriteFuncResults(v *Value, b *Block, aux *AuxCall) {\n \t\tif len(aRegs) > 0 {\n \t\t\tresult = &allResults\n \t\t} else {\n-\t\t\tif a.Op == OpLoad && a.Args[0].Op == OpLocalAddr {\n-\t\t\t\tadd...
2025-07-29T10:53:29
electron/electron
07a68c2bf8b53ea1c639b5c12fa725e5ae81fab0
ed9fec7da413533788d57a48c97e36dedfc6003c
fix: don't check for Desktop Environment in unity_service.cc (#41211) Don't check for Desktop Environment in unity_service.cc
[ { "path": "shell/browser/linux/unity_service.cc", "patch": "@@ -51,21 +51,10 @@ unity_launcher_entry_set_progress_visible_func entry_set_progress_visible =\n nullptr;\n \n void EnsureLibUnityLoaded() {\n- using base::nix::GetDesktopEnvironment;\n-\n if (attempted_load)\n return;\n attempted_loa...
2024-04-19T13:58:32
facebook/react
7baae65e767726e44a23c13203c05ae0d540e26f
bbc8851c84fc6b6793340de89713bf142b8c05e6
compiler: fix the `hookKind` for `useInsertionEffect` (#30069) Currently, the `hookKind` for `useInsertionEffect` is set to `useLayoutEffect`. This pull request fixes it by adding a new `hookKind` for `useInsertionEffect`.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts", "patch": "@@ -363,7 +363,7 @@ const REACT_APIS: Array<[string, BuiltInType]> = [\n restParam: Effect.Freeze,\n returnType: { kind: \"Poly\" },\n calleeEffect: Effect.Read,\n- hookKind: \"useLayoutEff...
2024-06-26T13:59:03
vercel/next.js
a0e5996f0a7cb5245ad24b01deafb518ba6162b6
74b226fe4afc7149901affc3c005476e9e592315
[Cache Components] Allow sync IO inside console methods (#83843) console methods may be patched to do things like add a timestamp to the log row. While we can't determine the meaning of reading the current time in arbitrary contexts we can know with reasonable certainty that any sync IO inside a console method is not...
[ { "path": ".vscode/settings.json", "patch": "@@ -62,6 +62,7 @@\n \"packages/next/src/server/app-render/dynamic-access-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-unit-async-storage-instance.ts...
2025-09-18T15:23:56
electron/electron
ed9fec7da413533788d57a48c97e36dedfc6003c
c4aeb1724576d384bac84e5cd53e6b1f64b86e41
fix: `nativeImage.createThumbnailFromPath` and `shell.openExternal` in renderer (#41875) * fix: nativeImage.createThumbnailFromPath in renderer * also fix shell.openExternal
[ { "path": "shell/common/api/electron_api_native_image_mac.mm", "patch": "@@ -14,6 +14,7 @@\n \n #include \"base/apple/foundation_util.h\"\n #include \"base/strings/sys_string_conversions.h\"\n+#include \"base/task/bind_post_task.h\"\n #include \"gin/arguments.h\"\n #include \"shell/common/gin_converters/ima...
2024-04-19T13:43:01
golang/go
2174a7936c9e6109e2786369072f5b9dc5d631f5
8330fb48a645a29a79dd5c58ad3d9c54d7e6537c
crypto/tls: use standard chacha20-poly1305 cipher suite names The different chacha20-poly1305 cipher suites were renamed to include the _SHA256 suffix, which is the canonical naming convention. The occurrences of the old names were still not updated, which can lead to confusion when searching for the canonical names ...
[ { "path": "src/crypto/tls/cipher_suites.go", "patch": "@@ -149,8 +149,8 @@ type cipherSuite struct {\n }\n \n var cipherSuites = []*cipherSuite{ // TODO: replace with a map, since the order doesn't matter.\n-\t{TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305, 32, 0, 12, ecdheRSAKA, suiteECDHE | suiteTLS12, nil, nil, a...
2025-07-21T07:34:13
facebook/react
bbc8851c84fc6b6793340de89713bf142b8c05e6
a8b465c6e0576b9ac490c2e2762c273db314dfcf
Bump ws from 8.13.0 to 8.17.1 in /compiler (#30043) Bumps [ws](https://github.com/websockets/ws) from 8.13.0 to 8.17.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/websockets/ws/releases">ws's releases</a>.</em></p> <blockquote> <h2>8.17.1</h2> <h1>Bug fixes</h1> ...
[ { "path": "compiler/yarn.lock", "patch": "@@ -9127,7 +9127,16 @@ string-length@^4.0.1:\n char-regex \"^1.0.2\"\n strip-ansi \"^6.0.0\"\n \n-\"string-width-cjs@npm:string-width@^4.2.0\", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:\n+\"string-width-cjs@npm:string-width@^4.2.0\":\n+ ...
2024-06-26T13:56:13
vercel/next.js
8b0d684c40397fc3833c1ff9cdb1c2f1a23e8e22
cef3dd05aa3a5c70c5ad59a4c780bcda2d788fa5
Turbopack: extract parse_source_map_comment (#83938) <!-- 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 Contributor...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -23,6 +23,7 @@ mod path_visitor;\n pub mod references;\n pub mod runtime_functions;\n pub mod side_effect_optimization;\n+pub mod source_map;\n pub(crate) mod special_cases;\n pub(crate) mod static_code;\n mod swc_comments;", "ad...
2025-09-18T13:09:49
rust-lang/rust
b9614b2dc2f0baa65469b28b88077f9775e88d13
d8b2222b11fc03a31d43707c8c9006f025809ece
Fix relative path handling for --extern-html-root-url
[ { "path": "src/librustdoc/clean/types.rs", "patch": "@@ -203,7 +203,14 @@ impl ExternalCrate {\n if !url.ends_with('/') {\n url.push('/');\n }\n- Remote(url)\n+ let is_absolute = url.starts_with('/')\n+ || url.split_once(\"://\").i...
2026-02-23T13:09:08
nodejs/node
e477978dd4d728705e964d19fb81e8c4063275c2
0d005119edbeac0f986a67e0c12873f7fd126022
doc: fix color contrast issue in light mode Attributes are being highlighted as #f00 on a background of #f2f2f2. That's a color contrast of 3.98:1, failing to meet the 4.5:1 requirement of WCAG 2.1 AA. This changes the attribute color to #d00, which has a color contrast of 5.09:1 meeting the 4.5:1 requirement. PR-URL...
[ { "path": "doc/api_assets/hljs.css", "patch": "@@ -49,7 +49,7 @@\n color: #808080;\n }\n .hljs-attr {\n- color: #f00;\n+ color: #d00;\n }\n .hljs-symbol,\n .hljs-bullet,", "additions": 1, "deletions": 1, "language": "CSS" } ]
2024-12-18T16:19:08
electron/electron
c4aeb1724576d384bac84e5cd53e6b1f64b86e41
67ba30402bcbf6942fa0846927f2d088cf0a749d
fix: EINVAL when spawning cmd files on Windows (#41893) fix: EINVAL when spawning on Windows
[ { "path": "script/lint.js", "patch": "@@ -75,7 +75,8 @@ function spawnAndCheckExitCode (cmd, args, opts) {\n \n function cpplint (args) {\n args.unshift(`--root=${SOURCE_ROOT}`);\n- const result = childProcess.spawnSync(IS_WINDOWS ? 'cpplint.bat' : 'cpplint.py', args, { encoding: 'utf8', shell: true });\...
2024-04-19T13:27:58
golang/go
89a0af86b819ceb8095c686fc5109b40082bc8c5
5e94d72158077411547287fc36f24b3121cca645
cmd/compile: allow ops to specify clobbering input registers Same as clobbering fixed registers, but which register is clobbered depends on which register was assigned to the input. Add code similar to resultInArg0 processing that makes a register copy before allowing the op to clobber the last available copy of a va...
[ { "path": "src/cmd/compile/internal/ssa/_gen/main.go", "patch": "@@ -87,6 +87,10 @@ type regInfo struct {\n \t// clobbers encodes the set of registers that are overwritten by\n \t// the instruction (other than the output registers).\n \tclobbers regMask\n+\t// Instruction clobbers the register containing in...
2025-06-09T23:44:46
facebook/react
a8b465c6e0576b9ac490c2e2762c273db314dfcf
d878489431e2c6cf69982b51403f8e1f68f4e73d
fix[react-devtools]: restore original args when recording errors (#30091) ## Summary When DevTools frontend and backend are connected, we patch console in 2 places: - `patch()`, when renderer is attached to: - listen to any errors / warnings emitted - append component stack if requested by the user - `patc...
[ { "path": "packages/react-devtools-shared/src/backend/console.js", "patch": "@@ -51,7 +51,7 @@ const STYLE_DIRECTIVE_REGEX = /^%c/;\n // method has been overridden by the patchForStrictMode function.\n // If it has we'll need to do some special formatting of the arguments\n // so the console color stays con...
2024-06-26T13:17:09
vercel/next.js
4d047b28be3227a1f4ece6679677b7392de0cb02
3513e7d7d32e9a3e3271016477be2589c4314031
fix: add the missing comma in the document example (#83932) ### What? This PR fixes a missing comma in the function parameter in `03-api-reference/03-file-conventions/layout.mdx`. The comma between `children` and `params` parameters was missing in the documentation example, showing incorrect syntax. ### Why? The mis...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/layout.mdx", "patch": "@@ -61,7 +61,7 @@ A promise that resolves to an object containing the [dynamic route parameters](/\n \n ```tsx filename=\"app/dashboard/[team]/layout.tsx\" switcher\n export default async function Layout({\n- children\n+ ch...
2025-09-18T08:11:46
rust-lang/rust
262744eb36c8e5621fcd2b3145c33a2f31c8044c
59fd4ef94daa991e6797b5aa6127e824f3067def
Enable rust.remap-debuginfo in the dist profile Anyone who distributes rustc almost certainly wants to enable this option. It is necessary for reproducibility and for a distributed rustc local paths are useless anyway. And finally it improves privacy if you distribute a local build.
[ { "path": "src/bootstrap/defaults/bootstrap.dist.toml", "patch": "@@ -24,6 +24,8 @@ channel = \"auto-detect\"\n download-rustc = false\n # Build the llvm-bitcode-linker\n llvm-bitcode-linker = true\n+# Required to make builds reproducible.\n+remap-debuginfo = true\n \n [dist]\n # Use better compression when...
2026-02-20T13:27:06
nodejs/node
8253290d6019f8594118395301294e77d4d35f57
7302b6fa3d0293405bd8ee864871a50ed6fea18b
build: fix missing fp16 dependency in d8 builds PR-URL: https://github.com/nodejs/node/pull/56266 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/v8_gypfiles/d8.gyp", "patch": "@@ -21,6 +21,7 @@\n 'v8.gyp:v8_libplatform',\n 'v8.gyp:generate_bytecode_builtins_list',\n 'v8.gyp:v8_abseil',\n+ 'v8.gyp:fp16',\n ],\n # Generated source files need this explicitly:\n 'include_dirs+': [", "...
2024-12-17T22:18:32
electron/electron
0222686e9af18c673435afa8418450da2319a2de
bf754a3cae84fba9896011320c09c0fe554886b2
docs: update build docs,support Powershell on Windows (#41567) * docs: update build docs,support Powershell on Windows * chore: fix capitalization
[ { "path": "docs/development/build-instructions-gn.md", "patch": "@@ -110,20 +110,49 @@ $ export CHROMIUM_BUILDTOOLS_PATH=`pwd`/buildtools\n On Windows:\n \n ```sh\n+# cmd\n $ cd src\n $ set CHROMIUM_BUILDTOOLS_PATH=%cd%\\buildtools\n+\n+# PowerShell\n+$ cd src\n+$ $env:CHROMIUM_BUILDTOOLS_PATH = \"$(Get-Loc...
2024-04-17T22:46:52
facebook/react
d878489431e2c6cf69982b51403f8e1f68f4e73d
4bfab0783204810cb51b9dda24464bb57777eb97
[compiler][ez] PrintHIR prints optional flag for debugging Adding the equivalent of [PrintReactiveFunction:OptionalExpression](https://github.com/facebook/react/blob/f5d2feb4f069a36140d5e605f5eebc52badcc214/compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PrintReactiveFunction.ts#L218) to `PrintHIR`. ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts", "patch": "@@ -194,7 +194,7 @@ export function printTerminal(terminal: Terminal): Array<string> | string {\n break;\n }\n case \"optional\": {\n- value = `[${terminal.id}] Optional test:bb${terminal.test} fallth...
2024-06-25T20:06:21
golang/go
8cd85e602a90cb97051fe95d5243557b566630e6
cefaed0de0b86ea67588546d2e18f850e7b7d41d
cmd/compile: check domination of loop return in both controls Fixes #74473 Change-Id: I72ff6b95955ae9407271508aa80f230dcf1b6c74 Reviewed-on: https://go-review.googlesource.com/c/go/+/685816 Reviewed-by: Mark Freeman <mark@golang.org> Auto-Submit: Jorropo <jorropo.pgm@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-sco...
[ { "path": "src/cmd/compile/internal/ssa/loopbce.go", "patch": "@@ -37,19 +37,20 @@ type indVar struct {\n // - the minimum bound\n // - the increment value\n // - the \"next\" value (SSA value that is Phi'd into the induction variable every loop)\n+// - the header's edge returning from the body\n //...
2025-07-04T06:54:14
nodejs/node
a73c41c51e7711086b9801afd5e91ae2f96a7694
6012a4e9a2733b25a7023baa0a58bef85c9ebc5f
sqlite: aggregate constants in a single property PR-URL: https://github.com/nodejs/node/pull/56213 Fixes: https://github.com/nodejs/node/issues/56193 Refs: https://github.com/nodejs/node/issues/56193 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yongsheng Zhan...
[ { "path": "doc/api/sqlite.md", "patch": "@@ -482,11 +482,19 @@ exception.\n | `TEXT` | {string} |\n | `BLOB` | {Uint8Array} |\n \n-## SQLite constants\n+## `sqlite.constants`\n \n-The following constants are exported by the `node:sqlite` module.\n+<!-- YAML\n+added: REPLACEME\n+-->...
2024-12-17T17:36:58
facebook/react
7d9861e70642719b120a5236ade5124912e42a92
9262761f1c25bfe52a4585419fad16dd01a07424
[compiler][hir] Correctly remove non-existent terminal preds when pruning labels Missed this initially in `pruneUnusedLabelsHIR`. It wasn't an active bug as `preds` wasn't referenced by later passes, until #30079 ghstack-source-id: 3e151b74c31554299e870f001c0ac3f72706318c Pull Request resolved: https://github.com/fac...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -13,6 +13,7 @@ import {\n HIRFunction,\n ReactiveFunction,\n assertConsistentIdentifiers,\n+ assertTerminalPredsExist,\n assertTerminalSuccessorsExist,\n assertValidBlockNesting,\n assertValidMuta...
2024-06-25T20:06:21
electron/electron
bf754a3cae84fba9896011320c09c0fe554886b2
7120c58297f8185c22d4289ff710a1189e537750
fix: make window.flashFrame(bool) flash continuously on macOS (#41391) fix: window.flashFrame to flash continuously on mac This brings the behavior to parity with Windows and Linux. Prior behavior: The first `flashFrame(true)` bounces the dock icon only once (using the [NSInformationalRequest](https://developer.app...
[ { "path": "docs/breaking-changes.md", "patch": "@@ -21,6 +21,10 @@ encoded data returned from this function now matches it.\n \n See [crbug.com/332584706](https://issues.chromium.org/issues/332584706) for more information.\n \n+### Behavior Changed: `window.flashFrame(bool)` will flash dock icon continuousl...
2024-04-17T16:42:34
nodejs/node
6012a4e9a2733b25a7023baa0a58bef85c9ebc5f
5a868b5b30e551d375c73d65013883e6078bba84
tools: fix `node:` enforcement for docs PR-URL: https://github.com/nodejs/node/pull/56284 Refs: https://github.com/nodejs/node/pull/56185 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "doc/eslint.config_partial.mjs", "patch": "@@ -3,7 +3,9 @@ import {\n noRestrictedSyntaxCommonLib,\n requireEslintTool,\n } from '../tools/eslint/eslint.config_utils.mjs';\n-import { builtinModules as builtin } from 'node:module';\n+import { builtinModules } from 'node:module';\n+\n+const buil...
2024-12-17T14:57:37
golang/go
cefaed0de0b86ea67588546d2e18f850e7b7d41d
3aa1b0008169cea3ed79a4a19b66f64479be4402
reflect: fix noswiss builder Missed this change in CL 681936 Fixes #74808 Change-Id: I30f6402177c5f8efe9bd11d50fad1770a22762c5 Reviewed-on: https://go-review.googlesource.com/c/go/+/691675 Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/reflect/map_noswiss.go", "patch": "@@ -69,7 +69,7 @@ func MapOf(key, elem Type) Type {\n \tvar imap any = (map[unsafe.Pointer]unsafe.Pointer)(nil)\n \tmt := **(**mapType)(unsafe.Pointer(&imap))\n \tmt.Str = resolveReflectName(newName(s, \"\", false, false))\n-\tmt.TFlag = 0\n+\tmt.TFlag = abi...
2025-07-29T22:31:09
facebook/react
86d1a6f54aebb2854aab0033bb57865add9f440d
4d11e1e88d6be1c244cb8ae76c377eaf195167ec
[compiler][rewrite] Patch logic for aligning scopes to non-value blocks Our previous logic for aligning scopes to block scopes constructs a tree of block and scope nodes. We ensured that blocks always mapped to the same node as their fallthroughs. e.g. ```js // source a(); if (...) { b(); } c(); // HIR bb0: a() if ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/AlignReactiveScopesToBlockScopesHIR.ts", "patch": "@@ -22,8 +22,10 @@ import {\n mapTerminalSuccessors,\n terminalFallthrough,\n } from \"../HIR/visitors\";\n+import { retainWhere_Set } from \"../Utils/utils\";\n import { getPla...
2024-06-25T20:03:58
electron/electron
7120c58297f8185c22d4289ff710a1189e537750
b118c70f77e35b145fa201c37b98e9336f3cedd3
chore: bump node to v20.12.2 (main) (#41710) * chore: bump node in DEPS to v20.12.0 * chore: update build_add_gn_build_files.patch * chore: update patches * chore: bump node in DEPS to v20.12.1 * chore: update patches * build: encode non-ASCII Latin1 characters as one byte in JS2C https://github.com/...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '125.0.6412.0',\n 'node_version':\n- 'v20.11.1',\n+ 'v20.12.2',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2024-04-17T16:39:13
nodejs/node
ca96c8dcbee20297c3a771d0b21942df1d87b3ec
6536978726f1bffa08a03d7b7cb0826960605481
deps: update libuv to 1.49.2 Fixes: https://github.com/nodejs/node/issues/56137 Refs: https://github.com/nodejs/node/pull/56223 PR-URL: https://github.com/nodejs/node/pull/56224 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "deps/uv/AUTHORS", "patch": "@@ -588,3 +588,5 @@ Raihaan Shouhell <raihaanhimself@gmail.com>\n Rialbat <miha-wead@mail.ru>\n Adam <adam@NetBSD.org>\n Poul T Lomholt <ptlomholt@users.noreply.github.com>\n+dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\n+Thad House <ThadHouse@us...
2024-12-17T13:06:51
golang/go
3aa1b0008169cea3ed79a4a19b66f64479be4402
b1e933d95518a7978efb29772bd6129acf0af452
regexp: fix compiling alternate patterns of different fold case literals Fixing Equal method in regexp/syntax package fixes compilation of some alternate patterns like "0A|0[aA]". Fixes #59007 Change-Id: Idd519c6841167f932899b0ada347fb90a38a765e GitHub-Last-Rev: 6f43cbca6361c0d084a12abeec65d7c659a4fe61 GitHub-Pull-R...
[ { "path": "src/regexp/find_test.go", "patch": "@@ -98,6 +98,8 @@ var findTests = []FindTest{\n \t{`\\B`, \"x y\", nil},\n \t{`\\B`, \"xx yy\", build(2, 1, 1, 4, 4)},\n \t{`(|a)*`, \"aa\", build(3, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2)},\n+\t{`0A|0[aA]`, \"0a\", build(1, 0, 2)},\n+\t{`0[aA]|0A`, \"0a\", build(...
2025-07-04T22:59:25
facebook/react
4d11e1e88d6be1c244cb8ae76c377eaf195167ec
133ada72549b9aa01a0bc3df2b1c9bb341e861fd
[compiler][fixtures] test repros: codegen, alignScope, phis ghstack-source-id: 04b1526c8567f8b7b59d198f022d10cf837e4c5b Pull Request resolved: https://github.com/facebook/react/pull/29878 The AlignReactiveScope bug should be simplest to fix, but it's also caught by an invariant assertion. I think a fix could be eithe...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-array-concat-should-capture.expect.md", "patch": "@@ -0,0 +1,72 @@\n+\n+## Input\n+\n+```javascript\n+import { mutate } from \"shared-runtime\";\n+\n+/**\n+ * Fixture showing why `concat` needs to capture both the c...
2024-06-25T20:03:57
vercel/next.js
7b14bb709a399948d6f36e231053409636d9d515
c4603d2abe7ed8f70843bd62ddeae391b558e9c4
Turbopack: fix double codegen of some merged modules (#83886) This fixes double-codegen and re-parse (due to recomputation). Previously, `get_batch_group` could return some of the original JS modules, while `chunkable_items` was correctly getting the replaced `MergedEcmascriptModule`s. This cause modules to be code...
[ { "path": "turbopack/crates/turbopack-core/src/chunk/chunk_group.rs", "patch": "@@ -1,4 +1,4 @@\n-use std::{cell::RefCell, collections::HashSet};\n+use std::{cell::RefCell, collections::HashSet, sync::atomic::AtomicBool};\n \n use anyhow::{Context, Result};\n use rustc_hash::FxHashMap;\n@@ -20,7 +20,8 @@ us...
2025-09-17T20:54:46
nodejs/node
b171afefb61c6c0f54fe1421438ffffbdd0c9a33
c39875a32df75b08b457d7fed46eef1c23e5a31c
deps: define V8_PRESERVE_MOST as no-op on Windows It's causing linker errors with node.lib in node-gyp and potentially breaks other 3rd party tools PR-URL: https://github.com/nodejs/node/pull/56238 Refs: https://github.com/nodejs/node/pull/55784 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M ...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,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.11',\n+ 'v8_embedder_string': '-node.12',\n \n ##### V8 defaults for Node.js #####\n...
2024-12-16T10:11:22
facebook/react
133ada72549b9aa01a0bc3df2b1c9bb341e861fd
708d8f8c495e2456b91de96f3d20248693ee9ce7
Read constructor name more carefully (#29954) ## Summary Sometimes `constructor` happens to be the name of an unrelated property, or we may be dealing with a `Proxy` that intercepts every read. Verify the constructor is a function before using its name, and reset the name anyway if it turns out not to be seriali...
[ { "path": "packages/react-devtools-shared/src/hydration.js", "patch": "@@ -84,7 +84,9 @@ function createDehydrated(\n preview_long: formatDataForPreview(data, true),\n preview_short: formatDataForPreview(data, false),\n name:\n- !data.constructor || data.constructor.name === 'Object'\n+ ...
2024-06-25T18:30:28
electron/electron
b428315c6dd9aea97611ab3ef98145b870ef33ae
c670e38b4b14d0286e0ae04cb7f63987beb5e044
perf: remove unnecessary `.c_str()` calls (#41869) * perf: remove unnecessary c_str() call when invoking promise.RejectWithErrorMessage() RejectWithErrorMessage() takes a std::string_view * perf: remove unnecessary c_str() call when invoking Environment::SetVar() the val arg to Environment::SetVar() takes a c...
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -462,8 +462,7 @@ void OnClientCertificateSelected(\n return;\n \n auto certs = net::X509Certificate::CreateCertificateListFromBytes(\n- base::as_bytes(base::make_span(data.c_str(), data.size())),\n- net::X509Certificate::FORMAT_...
2024-04-16T23:48:54
vercel/next.js
4d6abb6039f08ab2d75a41a08a063410997a6bb0
f2ebb0701989c0d2456b8fd98a9267358d5ed0bb
chore: Fix test snapshot (#83901) A new version of sharp was released a few hours ago, which broke the tests: ``` expect(received).toMatchInlineSnapshot(snapshot) Snapshot name: `next-server-nft should not trace too many files in next-server.js.nft.json 1` - Snapshot - 8 + Received + 3 @@ -1,22 +1,18 @@ [ + "...
[ { "path": "test/production/next-server-nft/next-server-nft.test.ts", "patch": "@@ -48,14 +48,14 @@ const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n .map((file: string) => {\n // Normalize sharp, different architectures have different files\n if...
2025-09-17T18:54:54
golang/go
f3582fc80e19050d915ac9621bbeecef78c0548e
f7d167fe710501f687fad006125f4ec60be42c35
cmd/compile: add unsigned power-of-two detector Fixes #74485 Change-Id: Ia22a58ac43bdc36c8414d555672a3a3eafc749ca Reviewed-on: https://go-review.googlesource.com/c/go/+/689815 Reviewed-by: Keith Randall <khr@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -1014,11 +1014,10 @@\n // See ../magic.go for a detailed description of these algorithms.\n \n // Unsigned divide by power of 2. Strength reduce to a shift.\n-(Div8u n (Const8 [c])) && isPowerOfTwo(c) => (Rsh8Ux64 n (Const64 <typ....
2025-07-23T11:48:18
nodejs/node
c39875a32df75b08b457d7fed46eef1c23e5a31c
bc64114ebfef9360b5b78e3119807d05c2c940a0
doc: clarify util.aborted resource usage PR-URL: https://github.com/nodejs/node/pull/55780 Fixes: https://github.com/nodejs/node/issues/55340 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jason Zhang <x...
[ { "path": "doc/api/util.md", "patch": "@@ -2248,39 +2248,55 @@ added:\n > Stability: 1 - Experimental\n \n * `signal` {AbortSignal}\n-* `resource` {Object} Any non-null entity, reference to which is held weakly.\n+* `resource` {Object} Any non-null object tied to the abortable operation and held weakly.\n+ ...
2024-12-15T21:56:47
vercel/next.js
be6e4bf4bf7275f3f7720cdb432c19f7ecb5dba7
12e64cf0ae6160c94c4fe92457bfe799abe50254
Upgrade sharp dependency to version ^0.34.4 (#83892) ## ✅ Sharp Dependency Upgrade to Version ^0.34.4 - LOCKFILE FIXED ### Task Summary: Successfully upgraded the `sharp` dependency from version `^0.34.3` to `^0.34.4` and **fixed the pnpm lockfile issue** by running `pnpm install` to update the lockfile. ### ✅ Compl...
[ { "path": "packages/next/package.json", "patch": "@@ -131,7 +131,7 @@\n }\n },\n \"optionalDependencies\": {\n- \"sharp\": \"^0.34.3\"\n+ \"sharp\": \"^0.34.4\"\n },\n \"devDependencies\": {\n \"@ampproject/toolbox-optimizer\": \"2.8.3\",", "additions": 1, "deletions": 1, "...
2025-09-17T16:42:33
golang/go
e0b07dc22eaab1b003d98ad6d63cdfacc76c5c70
25816d401c459a9dfedded3b42315a8bd2d32802
os/exec: fix incorrect expansion of "", "." and ".." in LookPath Fix incorrect expansion of "" and "." when $PATH contains an executable file or, on Windows, a parent directory of a %PATH% element contains an file with the same name as the %PATH% element but with one of the %PATHEXT% extension (ex: C:\utils\bin is in ...
[ { "path": "src/os/exec/dot_test.go", "patch": "@@ -177,4 +177,48 @@ func TestLookPath(t *testing.T) {\n \t\t\t}\n \t\t}\n \t})\n+\n+\tchecker := func(test string) func(t *testing.T) {\n+\t\treturn func(t *testing.T) {\n+\t\t\tt.Helper()\n+\t\t\tt.Logf(\"PATH=%s\", os.Getenv(\"PATH\"))\n+\t\t\tp, err := Look...
2025-06-30T14:58:59
rust-lang/rust
1f076d2f938b42fe968ff06f1107871a665eabe9
286fbe5d84569c718f189122db9e68a16b50eeef
Add try_shrink_to and try_shrink_to_fit to Vec * Add try_shrink_to and try_shrink_to_fit to Vec Both functions are required to support shrinking a vector in environments without global OOM handling. * Format the try_shrink functions * Remove excess "```" from doc * Remove `cfg(not(no_global_oom_handling))` from rawve...
[ { "path": "library/alloc/src/raw_vec/mod.rs", "patch": "@@ -399,6 +399,21 @@ impl<T, A: Allocator> RawVec<T, A> {\n // SAFETY: All calls on self.inner pass T::LAYOUT as the elem_layout\n unsafe { self.inner.shrink_to_fit(cap, T::LAYOUT) }\n }\n+\n+ /// Shrinks the buffer down to the s...
2026-02-23T01:20:41
nodejs/node
e7a397a773e0cca01184c66f8807eada4035571f
86c29253f85e673ec491d1d310a8459248f6e69a
util: fix Latin1 decoding to return string output PR-URL: https://github.com/nodejs/node/pull/56222 Fixes: https://github.com/nodejs/node/issues/56219 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewe...
[ { "path": "src/encoding_binding.cc", "patch": "@@ -286,9 +286,11 @@ void BindingData::DecodeLatin1(const FunctionCallbackInfo<Value>& args) {\n env->isolate(), \"The encoded data was not valid for encoding latin1\");\n }\n \n- Local<Object> buffer_result =\n- node::Buffer::Copy(env, result.c...
2024-12-14T18:09:49
golang/go
aa95ab8215760dfd6e1b8bb02aa2211021108512
4c854b7a3e5fc3e84a06511bce71ce01cbb4bb33
image: fix formatting of godoc link Change-Id: I8fa8741e0db174f0c32af0a393ee1b037d5b7e51 Reviewed-on: https://go-review.googlesource.com/c/go/+/680455 Auto-Submit: Michael Knyszek <mknyszek@google.com> Reviewed-by: Mark Freeman <mark@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/image/image.go", "patch": "@@ -34,7 +34,9 @@\n // regardless of whether the image is itself malformed or not. A call to\n // [DecodeConfig] which returns a header which does not match the image returned\n // by [Decode] may be considered a security issue, and should be reported per the\n-// [...
2025-06-10T14:56:45
vercel/next.js
bc9fe492dbd6aab28d0786c7abf45f2e7e7e0a95
f3537a0626c08c532140fff379249928d9475363
fix: correct typo 'incomming' to 'incoming' in with-mqtt-js example (#83887) ### What? This PR fixes a typo in the `with-mqtt-js` example (`examples/with-mqtt-js/app/page.tsx`): all occurrences of "incomming" have been corrected to "incoming" in variables, refs, and JSX headings. ### Why? The previous spelling "incom...
[ { "path": "examples/with-mqtt-js/app/page.tsx", "patch": "@@ -5,18 +5,15 @@ import type { MqttClient } from \"mqtt\";\n import useMqtt from \"@/lib/useMqtt\";\n \n export default function Home() {\n- const [incommingMessages, setIncommingMessages] = useState<any[]>([]);\n+ const [incomingMessages, setInco...
2025-09-17T15:38:49
nodejs/node
656dd5d81701a0889971bd313ba014c69983deae
414c5ed4ace6cb5e2235af99284007f87983f3f6
doc: fix 'which' to 'that' and add commas PR-URL: https://github.com/nodejs/node/pull/56216 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "doc/contributing/technical-priorities.md", "patch": "@@ -21,11 +21,11 @@ on October 1st 2022.\n \n _Present in: 2021_\n \n-Base HTTP support is a key component of modern cloud-native applications\n+Base HTTP support is a key component of modern cloud-native applications,\n and built-in support wa...
2024-12-14T10:07:58
electron/electron
c670e38b4b14d0286e0ae04cb7f63987beb5e044
6aa9a003c8e3df7459dc09cdf987e59a44c3ac56
chore: bump chromium to 125.0.6412.0 (main) (#41610) * chore: bump chromium in DEPS to 124.0.6361.0 * chore: bump chromium in DEPS to 124.0.6363.0 * chore: update patches Manually apply printing.patch w/no code changes due to upstream shear. Xref: https://chromium-review.googlesource.com/c/chromium/src/+/534...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -56,7 +56,7 @@ executors:\n # 2xlarge should not be used directly, use the pipeline param instead\n enum: [\"medium\", \"electronjs/aks-linux-medium\", \"xlarge\", \"electronjs/aks-linux-large\", \"2xlarge\"]\n docker:\n- - image: ...
2024-04-15T22:10:32
golang/go
f8eae7a3c33fcf9d31117b1a1a49a47b0343f811
098426447182a216991923d5bf95cdd3ae836e2c
os/user: fix tests to pass on non-english Windows Tests on Windows are dependent on the english names of system accounts and groups. But on a french install of Windows the system accounts are: - AUTORITE NT\Système - AUTORITE NT\SERVICE LOCAL - AUTORITE NT\SERVICE RÉSEAU To allow the tests to pass on non-english Win...
[ { "path": "src/os/user/user_windows_test.go", "patch": "@@ -18,6 +18,7 @@ import (\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync\"\n \t\"syscall\"\n \t\"testing\"\n \t\"unicode\"\n@@ -261,9 +262,21 @@ func TestGroupIdsTestUser(t *testing.T) {\n \t}\n }\n \n+var isSystemDefaultLCIDEnglish = sync....
2025-07-18T10:36:00
vercel/next.js
1a7041ac7348c82b8c02da011d30947684df24cc
3e5c8efbf888d4676c834d16d20aa6b9898d6169
Turbopack: only generate error string in error case (#83884) Don't create gigabytes of unused strings here.
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/merged_modules.rs", "patch": "@@ -492,9 +492,12 @@ pub async fn compute_merged_modules(module_graph: Vc<ModuleGraph>) -> Result<Vc<\n let after_index = lists.len();\n lists.push(after_list.clone());\n ...
2025-09-17T13:09:10
facebook/react
8971381549a80d476b07639833e6b38eaaa75a40
f5d2feb4f069a36140d5e605f5eebc52badcc214
[compiler] Enable sourceMaps in tsconfig (#30064) With this, we can set a `debugger` breakpoint and we'll break into the source code when running tests with snap. Without this, we'd break into the transpiled js code.
[ { "path": "compiler/packages/snap/src/runner-watch.ts", "patch": "@@ -27,7 +27,7 @@ export function watchSrc(\n const host = ts.createWatchCompilerHost(\n configPath,\n ts.convertCompilerOptionsFromJson(\n- { module: \"commonjs\", outDir: \"dist\" },\n+ { module: \"commonjs\", outDir: \"...
2024-06-25T16:01:43
nodejs/node
414c5ed4ace6cb5e2235af99284007f87983f3f6
26d0559f14c904ccae0ce785ca7ed8b63edd4044
module: add prefix-only modules to `module.builtinModules` Fixes https://github.com/nodejs/node/issues/42785 PR-URL: https://github.com/nodejs/node/pull/56185 Fixes: https://github.com/nodejs/node/issues/42785 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Revi...
[ { "path": "doc/api/module.md", "patch": "@@ -21,15 +21,17 @@ added:\n - v9.3.0\n - v8.10.0\n - v6.13.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/56185\n+ description: The list now also contains prefix-only modules.\n -->\n \n * {string\\[]}\n \n A list of...
2024-12-14T07:35:00
electron/electron
6aa9a003c8e3df7459dc09cdf987e59a44c3ac56
2a6ad42113e8f77ada68d71581c479506a13e364
fix: stop using std::vector<const uint8_t> in ProcessingSingleton (#41832)
[ { "path": "patches/chromium/feat_add_data_parameter_to_processsingleton.patch", "patch": "@@ -13,7 +13,7 @@ app.requestSingleInstanceLock API so that users can pass in a JSON\n object for the second instance to send to the first instance.\n \n diff --git a/chrome/browser/process_singleton.h b/chrome/browser...
2024-04-15T17:32:48
golang/go
cd3655a8243b5f52b6a274a0aba5e01d998906c0
d5dc36af455ebd3e613780136766fba0cef7b0c4
internal/runtime/maps: fix spelling errors in comments Change-Id: I289d26f75bb556b46699159f06ce7eb03d34656d GitHub-Last-Rev: 10ce76df1d4951e021d460808c9d477cfbcf7c5c GitHub-Pull-Request: golang/go#74733 Reviewed-on: https://go-review.googlesource.com/c/go/+/690095 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBo...
[ { "path": "src/internal/runtime/maps/group.go", "patch": "@@ -39,7 +39,7 @@ const (\n // On other architectures, bitset uses one byte per slot, where each byte is\n // either 0x80 if the slot is part of the set or 0x00 otherwise. This makes it\n // convenient to calculate for an entire group at once using s...
2025-07-24T02:36:26
vercel/next.js
3e5c8efbf888d4676c834d16d20aa6b9898d6169
a32aed998a1c2d9700ead862d3bd896b25600d5b
Turbopack: delete broken hmr benchmark (#83882) ### What? The benchmark is very broken: * It doesn't await the run_once, so the code never runs * project_path is incorrect so it doesn't find routes * The returned Duration is never used as divan doesn't support custom benches * `hmr_update` doesn't wait for an HMR up...
[ { "path": ".github/workflows/turbopack-benchmark.yml", "patch": "@@ -27,29 +27,6 @@ env:\n TURBO_TOKEN: ${{ secrets.HOSTED_TURBO_TOKEN }}\n \n jobs:\n- benchmark-tiny:\n- name: Benchmark Rust Crates (tiny)\n- runs-on: ubuntu-latest\n- steps:\n- - uses: actions/checkout@v4\n-\n- - name:...
2025-09-17T12:16:31
facebook/react
f5d2feb4f069a36140d5e605f5eebc52badcc214
89580f209ce68ae9e266e309dfeb1625b434fb58
[compiler] Fix assignment within for update expression When converting value blocks from HIR to ReactiveFunction, we have to drop StoreLocal assignments that represent the assignment of the phi, since ReactiveFunction supports compound expressions. These StoreLocals are only present to represent the conditional assign...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/BuildReactiveFunction.ts", "patch": "@@ -921,14 +921,26 @@ class Driver {\n });\n } else if (defaultBlock.instructions.length === 1) {\n const instr = defaultBlock.instructions[0]!;\n- let place: Place =...
2024-06-24T17:11:14
nodejs/node
26d0559f14c904ccae0ce785ca7ed8b63edd4044
24841561e0c9795757a1f7d70273c8401f7555d7
doc: fix winget config path PR-URL: https://github.com/nodejs/node/pull/56233 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -683,7 +683,7 @@ easily. These files will install the following\n To install Node.js prerequisites from Powershell Terminal:\n \n ```powershell\n-winget configure .\\configuration.dsc.yaml\n+winget configure .\\configurations\\configuration.dsc.yaml\n ```\n \n Alternati...
2024-12-13T20:16:55
electron/electron
d80c5f8377d2b8088a27fe354512dcd909b4cd0f
755f7d5ed0be0111f2d70300d7caa392b21461b0
build: redundant regex character class in generate-config-gypi.py (#41858) fix: redundant regex character class in generate-config-gypi.py '\w' already includes '_'. solves a SyntaxWarning on python 3.12.
[ { "path": "script/generate-config-gypi.py", "patch": "@@ -40,7 +40,7 @@ def read_electron_args():\n for line in file_in:\n if line.startswith('#'):\n continue\n- m = re.match('([\\w_]+) = (.+)', line)\n+ m = re.match('(\\w+) = (.+)', line)\n if m == None:\n continue...
2024-04-15T15:33:55
golang/go
64ba72474d9a637fc8152c3bbd8cdec3ffde2940
e151db3e065eea8a13fd2bc83aafb6959edd6fca
errors: omit redundant nil check in type assertion for Join When ok is true, err can't be nil. Make it behave more like the Unwrap function. Change-Id: Ieba5de57d60f5ff4d6a3468d703e6f72be02a97d GitHub-Last-Rev: 6df9365a1d586bba64df57be11f9ca7b772cc773 GitHub-Pull-Request: golang/go#74764 Reviewed-on: https://go-revi...
[ { "path": "src/errors/join.go", "patch": "@@ -28,12 +28,10 @@ func Join(errs ...error) error {\n \t}\n \tif n == 1 {\n \t\tfor _, err := range errs {\n-\t\t\tif err != nil {\n-\t\t\t\tif _, ok := err.(interface {\n-\t\t\t\t\tUnwrap() []error\n-\t\t\t\t}); ok {\n-\t\t\t\t\treturn err\n-\t\t\t\t}\n+\t\t\tif _...
2025-07-26T02:49:42
vercel/next.js
d054cac6e28a22ed817c200dbfe144c035bb809f
8fe8fbc322167ce1a284b07c890043216b8ac069
refactor: remove isRevalidate from work store (#83859) With the refactor in #83858 there's no longer a reason to distinguish between `isRevalidate` and `isStaticGeneration` and most likely doing so would be a bug, as you'd likely want to apply the same handling to build time generation that you would during a later re...
[ { "path": "packages/next/src/build/static-paths/app.ts", "patch": "@@ -828,7 +828,6 @@ export async function buildAppStaticPaths({\n incrementalCache,\n cacheLifeProfiles,\n supportsDynamicResponse: true,\n- isRevalidate: false,\n experimental: {\n cacheComponents,\n ...
2025-09-17T02:15:46
rust-lang/rust
9b2b57085d8e2c2707028ef8a82c2c51b235d2c0
0492671fc8cb1a4fe240681e83e71845db697793
fix: `unnecessary_safety_comment` FP on code blocks inside inner docs
[ { "path": "clippy_lints/src/undocumented_unsafe_blocks.rs", "patch": "@@ -822,7 +822,9 @@ fn text_has_safety_comment(\n // Don't lint if the safety comment is part of a codeblock in a doc comment.\n // It may or may not be required, and we can't very easily check it (and we shouldn't...
2026-02-12T23:10:44
facebook/react
7608516479fb85bc40aa73d8a31a0c93397ee6ff
27e9476f0aae99adc67b10ee2b78e8ee7dc61421
refactor[react-devtools/extensions]: dont debounce cleanup logic on navigation (#30027) ## Summary There is a race condition in the way we poll if React is on the page and when we actually clear this polling instance. When user navigates to a different page, we will debounce a callback for 500ms, which will: 1. Cl...
[ { "path": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -412,13 +412,19 @@ chrome.devtools.network.onNavigated.addListener(syncSavedPreferences);\n // into subscribing to the same events from Bridge and window multiple times\n // In this case, we will handle `operations` event twice o...
2024-06-24T12:28:17
electron/electron
b446ce7f224c4c3aa38e0f3d35c2e4e40192f29c
05fba85aa38dba54e513cca786ed8ffac1f9f6a5
fix: package <__assertion_handler> as part of libcxx headers (#41830) Refs https://chromium-review.googlesource.com/c/chromium/src/+/5208502
[ { "path": "BUILD.gn", "patch": "@@ -1466,8 +1466,10 @@ dist_zip(\"hunspell_dictionaries_zip\") {\n }\n \n copy(\"libcxx_headers\") {\n- sources = libcxx_headers + libcxx_licenses +\n- [ \"//buildtools/third_party/libc++/__config_site\" ]\n+ sources = libcxx_headers + libcxx_licenses + [\n+ ...
2024-04-12T14:50:03
nodejs/node
938a581b4da945a468da5c423c4814be64c5bc97
95912f6ec059e6564cde3c3993ea25d48637499a
report: fix typos in report keys and bump the version Replace "kbytes" with "bytes" in `PrintSystemInformation()` in `src/node_report.cc`, as RLIMIT_DATA, RLIMIT_RSS, and RLIMIT_AS are given in bytes. The report version is bumped from 4 to 5. Refs: https://www.ibm.com/docs/en/aix/7.3?topic=k-kgetrlimit64-kernel-servi...
[ { "path": "doc/api/report.md", "patch": "@@ -35,7 +35,7 @@ is provided below for reference.\n ```json\n {\n \"header\": {\n- \"reportVersion\": 4,\n+ \"reportVersion\": 5,\n \"event\": \"exception\",\n \"trigger\": \"Exception\",\n \"filename\": \"report.20181221.005011.8974.0.001.json\"...
2024-12-13T11:28:30
rust-lang/rust
5b87b994d805b902563c08590f3b71c5c7a9b3f3
d8b2222b11fc03a31d43707c8c9006f025809ece
fix interpreter tracing output
[ { "path": "compiler/rustc_const_eval/src/interpret/step.rs", "patch": "@@ -86,7 +86,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {\n span = ?stmt.source_info.span,\n tracing_separate_thread = Empty,\n )\n- .or_if_tracing_disabled(|| info!(stmt = ?stmt.kind));\n+...
2026-02-22T21:38:46
vercel/next.js
8fe8fbc322167ce1a284b07c890043216b8ac069
ef4308e0c408e95017fd30f87fb9a988545f806b
Fix validateTurboNextConfig isDev field (#83868) Noticed the `phase` value being provided to `loadConfig` was incorrect with turbopack and `next start` which was due to this field being hard coded.
[ { "path": "packages/next/src/server/lib/start-server.ts", "patch": "@@ -465,7 +465,7 @@ export async function startServer(\n if (process.env.TURBOPACK) {\n await validateTurboNextConfig({\n dir: serverOptions.dir,\n- isDev: true,\n+ isDev: serverOptions.is...
2025-09-17T00:43:00
golang/go
10c5cf68d40e2b26336e4b4e59d4c2f3fc3f03b9
46b5839231381e8b36eab10ba9b2c37ba579a75d
net/http: add proper panic message Change-Id: Ibfb330eaf24e004ddec60a5ca08cdc780235ad8c Reviewed-on: https://go-review.googlesource.com/c/go/+/688315 Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Damien Neil <dneil@google.com> Reviewed-by: Mark Freeman <mark@golang.org> LUCI-TryBot-Result: Go LUCI <golang-s...
[ { "path": "src/net/http/server.go", "patch": "@@ -1614,7 +1614,7 @@ func writeStatusLine(bw *bufio.Writer, is11 bool, code int, scratch []byte) {\n // It's illegal to call this before the header has been flushed.\n func (w *response) bodyAllowed() bool {\n \tif !w.wroteHeader {\n-\t\tpanic(\"\")\n+\t\tpanic...
2025-07-16T08:12:54
facebook/react
85215413cbfd5f28a4448b0d649b9198458e00e8
28c1336c9105c134cba04ed937efcbe391b5979b
[ci] Improve parallelism of yarn test This PR adds parallelism similar to our existing circleci setup for running yarn tests with the various test params. It does this by sharding tests into `$SHARD_COUNT` number of groups, then spawning a job for each of them and using jest's built in `--shard` option. Effectively t...
[ { "path": ".circleci/config.yml", "patch": "@@ -281,7 +281,7 @@ jobs:\n at: .\n - setup_node_modules\n - run: ./scripts/circleci/download_devtools_regression_build.js << parameters.version >> --replaceBuild\n- - run: node ./scripts/jest/jest-cli.js --build --project devtools --rel...
2024-06-22T16:33:37
nodejs/node
e698bd0943dfd5000a4bff3d580aa5bc3d6cf7a3
96cd2a6ec32917f430444904ab13239564480b1a
test: remove exludes for sea tests on PPC The referenced issue is closed as having been fixed, so the tests should run ok. Unexclude them. Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: https://github.com/nodejs/node/pull/56217 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <ja...
[ { "path": "test/sequential/sequential.status", "patch": "@@ -52,14 +52,3 @@ test-watch-mode-inspect: SKIP\n [$arch==s390x]\n # https://github.com/nodejs/node/issues/41286\n test-performance-eventloopdelay: PASS, FLAKY\n-\n-[$system==linux && $arch==ppc64]\n-# https://github.com/nodejs/node/issues/50740\n-te...
2024-12-12T23:05:01
electron/electron
05fba85aa38dba54e513cca786ed8ffac1f9f6a5
db11090e58a0d969707e3cade55af3ee000090b4
fix: do not activate app when showing a panel on Mac (#41750) * fix: do not activate app when showing or focusing a panel on Mac * restored panel activation test
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -176,6 +176,8 @@ class NativeWindowMac : public NativeWindow,\n \n void UpdateWindowOriginalFrame();\n \n+ bool IsPanel();\n+\n // Set the attribute of NSWindow while work around a bug of zoom button.\n bool HasStyleMask(NSUInteger flag) con...
2024-04-12T12:27:59
vercel/next.js
ef4308e0c408e95017fd30f87fb9a988545f806b
e01c16079ed1233042e5dd51615cc7f2ba7d7873
Exclude `traceparent` and `tracestate` headers from fetch deduplication cache keys (#83852) <!-- 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) ...
[ { "path": "packages/next/src/server/lib/dedupe-fetch.test.ts", "patch": "@@ -0,0 +1,699 @@\n+/**\n+ * @jest-environment node\n+ */\n+\n+// Mock the React module first\n+jest.mock('react', () => ({\n+ cache: <T extends (...args: any[]) => any>(fn: T): T => {\n+ const cache = new Map<string, ReturnType<T>...
2025-09-17T00:12:43
golang/go
46b5839231381e8b36eab10ba9b2c37ba579a75d
98f301cf687b7a3aaab62c9d28999136117f9589
test/codegen: fix failing condmove wasm tests These recently added tests failed when using the -all_codgen flag. Fixes #74770 Change-Id: Idea1ea02af2bd9f45c7d0a28d633c7442328e6df Reviewed-on: https://go-review.googlesource.com/c/go/+/690715 Reviewed-by: Jorropo <jorropo.pgm@gmail.com> Run-TryBot: Michael Munday <mik...
[ { "path": "test/codegen/condmove.go", "patch": "@@ -459,7 +459,7 @@ func cmovmathadd(a uint, b bool) uint {\n \t// amd64:\"ADDQ\", -\"CMOV\"\n \t// arm64:\"CSINC\", -\"CSEL\"\n \t// ppc64x:\"ADD\", -\"ISEL\"\n-\t// wasm:\"Add\", \"-Select\"\n+\t// wasm:\"I64Add\", -\"Select\"\n \treturn a\n }\n \n@@ -470,7 ...
2025-07-26T23:17:49
facebook/react
454fb35065053d5572689af1a7c125a41849604a
2caaa05c08c345f1edddc952cef3fa53c177d612
[compiler] add fixture for optimization across scopes Adds a fixture based on internal case where our current output is quite a bit more verbose than the original memoization. See the comment in the fixture for more about the heuristic we can apply. ghstack-source-id: e637a3814077559a1a56724eafe2567efed0b8d7 Pull Req...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/reordering-across-blocks.expect.md", "patch": "@@ -0,0 +1,109 @@\n+\n+## Input\n+\n+```javascript\n+import { Stringify } from \"shared-runtime\";\n+\n+function Component({ config }) {\n+ /**\n+ * The original memoiza...
2024-06-21T23:48:00
electron/electron
db11090e58a0d969707e3cade55af3ee000090b4
df22e62bf41f1ab7167a87b7aa63379a33ea56d2
fix: silent printing default dpi on Windows (#41811)
[ { "path": "BUILD.gn", "patch": "@@ -700,6 +700,8 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/browser/printing/print_view_manager_electron.cc\",\n \"shell/browser/printing/print_view_manager_electron.h\",\n+ \"shell/browser/printing/printing_utils.cc\",\n+ \"shell/bro...
2024-04-11T23:56:39
nodejs/node
743eacc48f778345c6289f9d6cc581e631a0d19e
203398dd18c6fcda92a10644ac1abf00f3cf9df2
test: fix test-abortsignal-drop-settled-signals flakiness PR-URL: https://github.com/nodejs/node/pull/56197 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By:...
[ { "path": "test/parallel/test-abortsignal-drop-settled-signals.mjs", "patch": "@@ -1,6 +1,7 @@\n // Flags: --expose_gc\n //\n import '../common/index.mjs';\n+import { gcUntil } from '../common/gc.js';\n import { describe, it } from 'node:test';\n \n function makeSubsequentCalls(limit, done, holdReferences =...
2024-12-12T18:34:28
vercel/next.js
e01c16079ed1233042e5dd51615cc7f2ba7d7873
03250cd04344ba2a527763d08b3976bf29dff226
fix: isRevalidate -> isStaticGeneration in fetch cache / unstable cache (#83858) When fetch/`unstable_cache` are stale during ISR, we leverage `workStore.isRevalidate` to determine if we're in an ISR revalidation scope and if so, we perform a blocking revalidation. This same scenario could happen at build time if t...
[ { "path": "packages/next/src/server/lib/patch-fetch.ts", "patch": "@@ -935,7 +935,7 @@ export function createPatchedFetcher(\n if (entry?.value && entry.value.kind === CachedRouteKind.FETCH) {\n // when stale and is revalidating we wait for fresh data\n // so the reva...
2025-09-17T00:11:42
golang/go
e81eac19d30f373496cd1d08ce2f89c0469a21fd
6fbad4be75e7746512bbe55794694ed788ea5c5b
hash/crc32: fix incorrect checksums with avx512+race CRC value loaded from incorrect register, which happened to line up with actual register on default compile. Therefore failures would only show up with -race. Add regression test with longer payloads. Fix regression from CL 689435. Fixes #74767. Change-Id: Ib63d...
[ { "path": "src/hash/crc32/crc32_amd64.s", "patch": "@@ -173,11 +173,11 @@ TEXT ·ieeeCLMUL(SB),NOSPLIT,$0\n \tCMPQ CX, $1024\n \tJL useSSE42\n \n-\t// Use AVX512\n-\tVPXORQ Z0, Z0, Z0\n-\tVMOVQ AX, X0\n+\t// Use AVX512. Zero upper and Z10 and load initial CRC into lower part of Z10.\n+\tVPXORQ Z1...
2025-07-28T15:26:52
facebook/react
2caaa05c08c345f1edddc952cef3fa53c177d612
6aea169480286ef9c037c6efefaacecac0e5d7c0
[compiler] Optimize instruction reordering Note: due to a bad rebase i included #29883 here. Both were stamped so i'm not gonna bother splitting it back up aain. This PR includes two changes: * First, allow `LoadLocal` to be reordered if a) the load occurs after the last write to a variable and b) the LoadLocal lvalu...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Optimization/InstructionReordering.ts", "patch": "@@ -13,16 +13,19 @@ import {\n HIRFunction,\n IdentifierId,\n Instruction,\n+ InstructionId,\n+ Place,\n isExpressionBlockKind,\n+ makeInstructionId,\n markInstructionIds,\n } from \"....
2024-06-21T23:48:00
nodejs/node
203398dd18c6fcda92a10644ac1abf00f3cf9df2
a963b5e9f3f7b28751a13afbcab495d4f781969e
build: fix C string encoding for `PRODUCT_DIR_ABS` Since the `PRODUCT_DIR_ABS` gyp variable is meant to be used in a C string in the OpenSSL config, provide a version of it that actually provides it in a way that is always usable as a C string. Otherwise, unescaped characters in the path can mess with the string defin...
[ { "path": "deps/openssl/openssl.gyp", "patch": "@@ -5,19 +5,13 @@\n 'nasm_version%': '0.0',\n 'openssl-cli': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)openssl-cli<(EXECUTABLE_SUFFIX)',\n 'conditions': [\n- ['OS == \"win\"', {\n- 'obj_dir_abs': '<(PRODUCT_DIR_ABS)/obj',\n- }],\n ...
2024-12-02T13:23:49
electron/electron
f8c832d80db96841d2ac1bc50dca9d64c2cd2c83
344aba0838d7ebdc648d0c160fff0ae095db8ac7
docs: update ASAR integrity tutorial (#41828) * docs: document windows asar integrity * docs: update ASAR integrity tutorial * fix lint --------- Co-authored-by: Samuel Attard <marshallofsound@electronjs.org>
[ { "path": "docs/tutorial/asar-integrity.md", "patch": "@@ -5,40 +5,50 @@ slug: asar-integrity\n hide_title: false\n ---\n \n-## Platform Support\n+ASAR integrity is an experimental feature that validates the contents of your app's\n+[ASAR archives](./asar-archives.md) at runtime.\n \n-Currently ASAR integri...
2024-04-11T20:41:58
golang/go
6fbad4be75e7746512bbe55794694ed788ea5c5b
5045fdd8ff8769c34e837fbfb0894a72dfa73b4d
cmd/compile: remove no-longer-necessary call to calculateDepths We now calculate depths by default, no need to ask. All calls were removed in CL 680775 when that CL was written, but an additional call appeared between then and submitting the CL. Oops. Another case for which a presubmit check would help. Fixes #74762...
[ { "path": "src/cmd/compile/internal/ssa/likelyadjust.go", "patch": "@@ -15,7 +15,7 @@ type loop struct {\n \t// Next three fields used by regalloc and/or\n \t// aid in computation of inner-ness and list of blocks.\n \tnBlocks int32 // Number of blocks in this loop but not within inner loops\n-\tdepth int1...
2025-07-25T21:15:50
vercel/next.js
18425676ddc7696994c05afa5da9dc9cd20b1d07
bba9b2f3667c61b78d95865422f15c8fff909dd5
[next-config-ts] Set Node.js native TS loader fallback flag to process.env (#83832) Since local variables aren't passed to the workers, the fallback flag wasn't passed correctly. Since `process.env` is passed, use that to set the flag. #### Before ``` running pnpm next build ⚠ Failed to import "next.config.ts"...
[ { "path": "packages/next/src/build/next-config-ts/transpile-config.ts", "patch": "@@ -105,8 +105,6 @@ async function getTsConfig(cwd: string): Promise<CompilerOptions> {\n return parsedCommandLine.options\n }\n \n-let useNodeNativeTSLoader = true\n-\n export async function transpileConfig({\n nextConfig...
2025-09-16T21:01:11
facebook/react
0b724e9e9c6469983f73631edb2e6abcc9c1193b
6fb39ec9e9b9aa0242d981c1b89473f02c6f945b
www: remove dynamic scheduler feature flag: enableProfiling (#29996) I removed the wrong feature flag in #29995, this is the correct one to match D58682445.
[ { "path": "packages/scheduler/src/forks/SchedulerFeatureFlags.www-dynamic.js", "patch": "@@ -11,8 +11,6 @@\n // Use __VARIANT__ to simulate a GK. The tests will be run twice: once\n // with the __VARIANT__ set to `true`, and once set to `false`.\n \n-export const enableProfiling = __VARIANT__;\n-\n export c...
2024-06-21T13:51:46