repo
stringclasses
11 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
59.2k
files
listlengths
1
300
timestamp
timestamp[s]date
2016-04-11 04:39:55
2026-04-09 07:34:40
electron/electron
d8baceb08caae374d3931d5747152e3971a1a379
d6f4982522efd5917b44d1ceed418e4a0ee7824e
fix: crash loading `about:blank` in subframes (#45694) fix: crash loading about:blank in subframes
[ { "path": "patches/chromium/fix_crash_loading_non-standard_schemes_in_iframes.patch", "patch": "@@ -28,17 +28,17 @@ The patch should be removed in favor of either:\n Upstream bug https://bugs.chromium.org/p/chromium/issues/detail?id=1081397.\n \n diff --git a/content/browser/renderer_host/navigation_request...
2025-02-20T17:07:15
facebook/react
27ba5e8b1fcb5724e653caf154dcf4f9519f08f1
662957cc735a7f630b497ada45af8ff39684d2b9
Add Example of a SwipeRecognizer (#32422) Stacked on #32412. To effectively `useSwipeTransition` you need something to start and stop the gesture as well as triggering an Action. This adds an example Gesture Recognizer to the fixture. Instead of having this built-in to React itself, instead the idea is to leave this...
[ { "path": "fixtures/view-transition/src/components/Chrome.css", "patch": "@@ -1,3 +1,7 @@\n+html {\n+ touch-action: pan-x pan-y;\n+}\n+\n body {\n margin: 10px;\n padding: 0;", "additions": 4, "deletions": 0 }, { "path": "fixtures/view-transition/src/components/Page.css", "patch": "...
2025-02-21T16:27:05
golang/go
625d8e9b9cd7ede188a8856c5ac88791333baa63
4684a26c2606eae5ec3d06d17f66a66374315a47
runtime/pprof: fix goroutine leak profile tests for noopt The goroutine leak profile tests currently rely on a function being inlined, which results in a slightly different representation in the pprof proto. This function is not inlined on the noopt builder. Disable inlining of the one function which could be inlined...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -1569,6 +1569,9 @@ func containsCountsLabels(prof *profile.Profile, countLabels map[int64]map[strin\n \treturn true\n }\n \n+// Inlining disabled to make identification simpler.\n+//\n+//go:noinline\n func goroutineLeakExample() {\n \t<-make(chan str...
2025-11-13T00:09:05
nodejs/node
057b4b5d301bc26a6c011f2f32f15b54d335613c
8204eeb2686f2254932c8e5aee71389ddf7b0396
http: fix keep-alive not timing out after post-request empty line Fixes: https://github.com/nodejs/node/issues/58140 PR-URL: https://github.com/nodejs/node/pull/58178 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/_http_server.js", "patch": "@@ -918,8 +918,6 @@ function socketOnError(e) {\n }\n \n function onParserExecuteCommon(server, socket, parser, state, ret, d) {\n- resetSocketTimeout(server, socket, state);\n-\n if (ret instanceof Error) {\n prepareError(ret, parser, d);\n debug('parse...
2025-06-24T12:37:20
electron/electron
d6f4982522efd5917b44d1ceed418e4a0ee7824e
9d558cec5ef74c45a18daf3ea494cb3ecc1ab3eb
fix: possible timing issue in utility-process spec (#45690) This fixture has been calling process.exit() immediately after writing to stdout and stderr, which the Node.js docs say is risky behavior: > Calling process.exit() will force the process to exit as quickly as > possible even if there are still asynchronous o...
[ { "path": "spec/fixtures/api/utility-process/log.js", "patch": "@@ -1,3 +1,7 @@\n-console.log('hello');\n-process.stderr.write('world');\n-process.exit(0);\n+function write (writable, chunk) {\n+ return new Promise((resolve) => writable.write(chunk, resolve));\n+}\n+\n+write(process.stdout, 'hello\\n')\n+ ...
2025-02-20T05:28:04
facebook/react
5f31228d7d17f5959a99456d89a52d467ee2f329
fcb4e0f137db6efa6e180ad12dcfaabd0c590219
[compiler][playground] Upgrade to Next 15.2.0-canary.64 (#32428) Upgrade compiler playground to use the newest nextjs release, which includes react compiler transform pipeline optimizations https://github.com/vercel/next.js/pull/75676/. Also made a drive-by fix to avoid the error `Cannot update a component ('Router')...
[ { "path": "compiler/apps/playground/components/StoreContext.tsx", "patch": "@@ -6,11 +6,10 @@\n */\n \n import type {Dispatch, ReactNode} from 'react';\n-import {useReducer} from 'react';\n+import {useEffect, useReducer} from 'react';\n import createContext from '../lib/createContext';\n import {emptyStore...
2025-02-20T17:28:34
nodejs/node
d8de8f3d6b4ae5ff06b27ff041a0acd3209d1f20
5f3262add6f481f4f91075dc40885c9bd9cded15
doc: fix stability 1.x links excluding the decimal digit PR-URL: https://github.com/nodejs/node/pull/58783 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/doc/html.mjs", "patch": "@@ -206,10 +206,11 @@ function linkJsTypeDocs(text) {\n \n const isJSFlavorSnippet = (node) => node.lang === 'cjs' || node.lang === 'mjs';\n \n+const STABILITY_RE = /(.*:)\\s*(\\d(?:\\.\\d)?)([\\s\\S]*)/;\n+\n // Preprocess headers, stability blockquotes, and YAML b...
2025-06-23T22:30:45
golang/go
4684a26c2606eae5ec3d06d17f66a66374315a47
0f9c8fb29dfe70f3688bda95cb6cb38dfa7fff9f
spec: remove cycle restriction for type parameters Fixes #75883. Change-Id: I708c0594ef3182d3aca37a6358aa0a0ef89809b6 Reviewed-on: https://go-review.googlesource.com/c/go/+/711422 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Robert Griesemer <gri@google.c...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Nov 9, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Nov 12, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2686,22 +2686,6 ...
2025-10-13T23:57:34
facebook/react
fcb4e0f137db6efa6e180ad12dcfaabd0c590219
a84862dbdc8dada08a9d1df1c72144cd767704b6
[compiler] remove invariant to account for backedges (#32417) Fixes https://github.com/facebook/react/issues/32269, see comments for details. Added test fixture for repro
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts", "patch": "@@ -1598,18 +1598,14 @@ function inferBlock(\n break;\n }\n case 'LoadLocal': {\n+ /**\n+ * Due to backedges in the CFG, we may revisit LoadLocal lvalues\n+ ...
2025-02-19T21:22:53
electron/electron
9d558cec5ef74c45a18daf3ea494cb3ecc1ab3eb
159e1a42b3d5ad1641acb318cf4c382f736c16f9
fix: action.openPopup function missing (#45697)
[ { "path": "shell/browser/extensions/api/extension_action/extension_action_api.cc", "patch": "@@ -100,6 +100,13 @@ ExtensionActionSetIconFunction::RunExtensionAction() {\n return RespondNow(NoArguments());\n }\n \n+ExtensionFunction::ResponseAction\n+ExtensionActionOpenPopupFunction::RunExtensionAction() {...
2025-02-19T23:05:02
golang/go
0929d2197807c7b70ff0b1a17982259879e9c064
f03d06ec1a69d77b4c43971cc474c3111a424c3a
cmd/go: keep objects alive while stopping cleanups There are two places in cmd/go where cleanups are stopped before they fire, and where the objects the cleanups are attached to may be dead while we call Stop. This is essentially a race between Stop and the cleanup being called. This can be fine, but these cleanups ar...
[ { "path": "src/cmd/go/internal/base/limit.go", "patch": "@@ -63,6 +63,12 @@ func AcquireNet() (release func(), err error) {\n \t\t\t<-netLimitSem\n \t\t}\n \t\tcleanup.Stop()\n+\n+\t\t// checker may be dead at the moment after we last access\n+\t\t// it in this function, so the cleanup can fire before Stop\...
2025-11-12T18:22:58
electron/electron
b50066f420c562fd4a86b2a286cb7ff26441416d
22b7403cd1beb2aa95bec223ddd6f328c18b7f8c
fix: extension web workers net request failing (#45698)
[ { "path": "shell/browser/electron_browser_client.cc", "patch": "@@ -1074,6 +1074,12 @@ void ElectronBrowserClient::\n // reason for it, and we could consider supporting it in future.\n protocol_registry->RegisterURLLoaderFactories(factories,\n false /* all...
2025-02-19T18:08:28
facebook/react
86b191347474fa98f002217ed88926efc8164c1e
a9575dcf62e5cb6f8b1d8f738aa75ece216d9054
[compiler][be] Clean up bug test fixtures; evaluate more fixtures (#31812) Test fixtures testing different compiler features (e.g. non-auto memoization) should live in separate directories. Remove bug-prefixed fixtures that have since been fixed Add test evaluator export to more fixtures
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/call-spread.expect.md", "patch": "@@ -2,22 +2,31 @@\n ## Input\n \n ```javascript\n+import {makeArray} from 'shared-runtime';\n+\n function Component(props) {\n- const x = foo(...props.a, null, ...props.b);\n+ const x...
2025-02-18T19:25:33
nodejs/node
32be16bca2a12eb1bc8a1b9d468f7a4ec4a6522f
04cb57249adffe17fe0a4c0048dd64c4b1fc68f0
build: fix typo 'Stoage' to 'Storage' in help text PR-URL: https://github.com/nodejs/node/pull/58777 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-B...
[ { "path": "configure.py", "patch": "@@ -868,7 +868,7 @@\n action='store_true',\n dest='without_sqlite',\n default=None,\n- help='build without SQLite (disables SQLite and Web Stoage API)')\n+ help='build without SQLite (disables SQLite and Web Storage API)')\n \n parser.add_argument('--nin...
2025-06-23T15:23:47
vercel/next.js
73f507625796f83edb397626e29cff318e5a3c48
9be830659405e82e2d9a2e6a61ec196652a4fab1
docs: fix generateSitemaps returned type signature (#86984) Closes: https://github.com/vercel/next.js/issues/86959
[ { "path": "docs/01-app/02-guides/upgrading/version-16.mdx", "patch": "@@ -363,8 +363,8 @@ export async function generateSitemaps() {\n \n // Next.js 16 - asynchronous id access\n export default async function sitemap({ id }) {\n- const resolvedId = await id // id is now Promise<number>\n- const start = re...
2025-12-09T12:01:22
golang/go
f03d06ec1a69d77b4c43971cc474c3111a424c3a
48127f656b53bfb5d73e7281ad525dbc371eb4c6
runtime: fix list test memory management for mayMoreStack The NIH tests simply failed to allocate the nodes outside the heap at all. The Manual tests failed to keep the nodes alive, allowing the GC to collect them. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest Change-Id: I6a6a636c434bb703d6888383d32d...
[ { "path": "src/runtime/list_manual_test.go", "patch": "@@ -21,10 +21,19 @@ type listedValManual struct {\n \tbNode runtime.ListNodeManual\n }\n \n+// ListHeadManual is intended to be used with objects where the lifetime of the\n+// object is managed explicitly, so it is OK to store as uintptr.\n+//\n+// Thi...
2025-11-12T20:20:54
nodejs/node
04cb57249adffe17fe0a4c0048dd64c4b1fc68f0
bf86e025a58e65b9f00e9e8e5698e9909fb51bbf
test: fix test-timeout-flag after revert of auto subtest wait PR-URL: https://github.com/nodejs/node/pull/58282 Fixes: https://github.com/nodejs/node/issues/58227 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": "test/fixtures/test-runner/output/test-timeout-flag.js", "patch": "@@ -1,19 +1,39 @@\n-// Flags: --test-timeout=20\n 'use strict';\n-const { describe, test } = require('node:test');\n-const { setTimeout } = require('node:timers/promises');\n+const { describe, it, after } = require('node:test');\n+...
2025-05-14T14:07:04
vercel/next.js
19421c37928da8ea8758c9cfb2dea869f340ff69
78660a53864b8dfff75e8e122cc1db5e8a8d0e4b
docs: fix broken examples link (#86916) ### What? Fix broken link in the documentation pointing to the examples folder. ### Why? The previous link to the examples folder in `docs/04-community/index.mdx` was incorrect: https://github.com/vercel/next.js/tree/canary/contributing/examples This caused confusion and 404 er...
[ { "path": "docs/04-community/index.mdx", "patch": "@@ -11,7 +11,7 @@ With over 5 million weekly downloads, Next.js has a large and active community o\n There are a couple of ways you can contribute to the development of Next.js:\n \n - [Documentation](/docs/community/contribution-guide): Suggest improvement...
2025-12-08T21:12:13
electron/electron
ee67bc7dcbfa9e2ac8af82ece99ee2aae2c61ada
ecd7eb36ac7ae4bc190d8bc12550cdc30c82e5d6
fix: dangling speculative frames (#45609) * fix: dangling speculative frames * harden lifecycle state checks * feedback * add const
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1792,16 +1792,20 @@ void WebContents::RenderFrameDeleted(\n // - An <iframe> is removed from the DOM.\n // - Cross-origin navigation creates a new RFH in a separate process which\n // is swapped by content::RenderFrameHostMana...
2025-02-18T22:52:05
facebook/react
d99f8bba2e07e3bb953f0821d4da5e341136fe5c
8a7b487e3b171c91f2fe18e9142af53f4dd83454
[compiler] Delete LoweredFunction.dependencies and hoisted instructions (#32096) LoweredFunction dependencies were exclusively used for dependency extraction (in `propagateScopeDeps`). Now that we have a `propagateScopeDepsHIR` that recursively traverses into nested functions, we can delete `dependencies` and their...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -7,7 +7,6 @@\n \n import {NodePath, Scope} from '@babel/traverse';\n import * as t from '@babel/types';\n-import {Expression} from '@babel/types';\n import invariant from 'invariant';\n import {\n CompilerError,\n@...
2025-02-18T16:32:49
nodejs/node
bf86e025a58e65b9f00e9e8e5698e9909fb51bbf
9a1c0bc07adbdc6b298b3585a7f46dd46c3d01e0
Revert "test_runner: remove promises returned by t.test()" This reverts commit 1a2eb15bc610926789a8a3a002ec722c39768c20. PR-URL: https://github.com/nodejs/node/pull/58282 Fixes: https://github.com/nodejs/node/issues/58227 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.n...
[ { "path": "doc/api/test.md", "patch": "@@ -105,11 +105,11 @@ top level test with two subtests.\n \n ```js\n test('top level test', async (t) => {\n- t.test('subtest 1', (t) => {\n+ await t.test('subtest 1', (t) => {\n assert.strictEqual(1, 1);\n });\n \n- t.test('subtest 2', (t) => {\n+ await t.te...
2025-05-11T17:23:20
vercel/next.js
78660a53864b8dfff75e8e122cc1db5e8a8d0e4b
0e973f71f133f4a0b220bbf1e3f0ed8a7c75e00d
Add gitignore note for next-env.d.ts (#86809) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### ...
[ { "path": "docs/01-app/01-getting-started/02-project-structure.mdx", "patch": "@@ -31,22 +31,22 @@ Top-level folders are used to organize your application's code and static assets\n \n Top-level files are used to configure your application, manage dependencies, run proxy, integrate monitoring tools, and def...
2025-12-08T10:36:09
golang/go
0c28789bd7dfc55099cac86a3212dda0d6c091f6
4e761b9a181a090ca9ec52916c4aef93c4cbc090
net/url: disallow raw IPv6 addresses in host RFC 3986 requires square brackets around IPv6 addresses. Parse's acceptance of raw IPv6 addresses is non compliant, and complicates splitting out a port. This is a resubmission of CL 710176 after the revert in CL 711800, this time with a new urlstrictipv6 godebug to contro...
[ { "path": "doc/godebug.md", "patch": "@@ -163,6 +163,11 @@ will fail early. The default value is `httpcookiemaxnum=3000`. Setting\n number of cookies. To avoid denial of service attacks, this setting and default\n was backported to Go 1.25.2 and Go 1.24.8.\n \n+Go 1.26 added a new `urlstrictcolons` setting ...
2025-10-18T09:31:12
rust-lang/rust
675290a40d580f5063bad9ec24ed3a94da96339b
3b1b0ef4d80d3117924d91352c8b6ca528708b3c
Fix that `./x test --no-doc` actually keeps the same behaviour for backwards compatability
[ { "path": "src/bootstrap/src/core/config/flags.rs", "patch": "@@ -570,16 +570,21 @@ impl Subcommand {\n \n pub fn test_target(&self) -> TestTarget {\n match *self {\n- Subcommand::Test { all_targets, doc, tests, .. }\n- | Subcommand::Miri { all_targets, doc, tests, .. } => ...
2026-03-11T16:29:12
facebook/react
4632e36a4ef16a1af24987c56e42b664f6403e64
eb1f77dedfc8f7491ecd39b160e4743fa39dfc99
refactor(eslint-plugin-react-hooks): change array type and improve conditionals (#32400) - [build(eslint-plugin-react-hooks): add ts-linting](https://github.com/facebook/react/commit/4c0fbe73d9abc2681445f62b9450737f3df12ee2) This change adds configuration to the eslint config governing `eslint-plugin-react-hooks` to u...
[ { "path": ".eslintrc.js", "patch": "@@ -446,10 +446,7 @@ module.exports = {\n },\n },\n {\n- files: [\n- 'scripts/eslint-rules/*.js',\n- 'packages/eslint-plugin-react-hooks/src/*.js',\n- ],\n+ files: ['scripts/eslint-rules/*.js'],\n plugins: ['eslint-plugin']...
2025-02-17T01:28:12
electron/electron
47572286f33f3d24eb1efdd7fec5b4fb1a5aacef
6be1151ffc4a83cc241b78e0c3a04211dfb79943
chore: bump chromium to 135.0.7015.0 (main) (#45500) * https://chromium-review.googlesource.com/c/chromium/src/+/6230977 * chore: bump chromium to 135.0.7012.0 * chore: update accelerator.patch Support parsing Ctrl+Alt shortcuts | https://chromium-review.googlesource.com/c/chromium/src/+/6238137 * 6234236: Reapply...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '134.0.6998.10',\n+ '135.0.7012.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "docs/api/structures/printer-info...
2025-02-18T16:51:27
vercel/next.js
3c2fc61bdb8e55eb8671b4152921b336bdf9ceb9
3bb0bcbf82311538ab1f34184c766e397a7373f5
Fix validateTurboNextConfig running for next start (#86886) This fixes `validateTurboNextConfig` running during `next start` which was caught due to the wrong `phase` being provided to `workflows` config wrapper. We shouldn't run extra validation during `next start` as this needs to boot as fast as possible and would...
[ { "path": "packages/next/src/build/turbopack-analyze/index.ts", "patch": "@@ -8,6 +8,7 @@ import { getSupportedBrowsers } from '../utils'\n import { normalizePath } from '../../lib/normalize-path'\n import type { NextConfigComplete } from '../../server/config-shared'\n import type { __ApiPreviewProps } from...
2025-12-05T22:23:11
nodejs/node
9a1c0bc07adbdc6b298b3585a7f46dd46c3d01e0
7a0c74b4eadca323a376abc9daa2c7d1cb76ef91
Revert "test_runner: remove promises returned by test()" This reverts commit 96718268fec7e7f1c6156ff9a57899a5cd1487cc. PR-URL: https://github.com/nodejs/node/pull/58282 Fixes: https://github.com/nodejs/node/issues/58227 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.nam...
[ { "path": "doc/api/test.md", "patch": "@@ -1472,11 +1472,6 @@ run({ files: [path.resolve('./tests/test.js')] })\n added:\n - v22.0.0\n - v20.13.0\n-changes:\n- - version:\n- - v24.0.0\n- pr-url: https://github.com/nodejs/node/pull/56664\n- description: This function no longer returns a `Promis...
2025-05-11T17:22:38
golang/go
8873e8bea29ac6de5fecee88b8b81239bd2eb179
b8b84b789e4275aeea491dbdb50536facd1fa7d7
runtime,runtime/pprof: clean up goroutine leak profile writing Cleaned up goroutine leak profile extraction: - removed the acquisition of goroutineProfile semaphore - inlined the call to saveg when recording stacks instead of using doRecordGoroutineProfile, which had side-effects over goroutineProfile fields. Added r...
[ { "path": "src/runtime/mprof.go", "patch": "@@ -1261,7 +1261,7 @@ func goroutineProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.P\n \n //go:linkname pprof_goroutineLeakProfileWithLabels\n func pprof_goroutineLeakProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n in...
2025-11-06T09:53:28
rust-lang/rust
06704919507893e4e26a3fc0adf5aefaf0356199
d1ee5e59a964a419b84b760812a35075034f4861
Don't add empty target features for target-cpu=native on macOS LLVM does not support host feature detection (only host cpu detection) on apple platforms. As such, the returned feature string will be empty. Adding this empty string to the target-features attribute results in a verifier error on LLVM 22. Fix this by no...
[ { "path": "compiler/rustc_codegen_llvm/src/llvm_util.rs", "patch": "@@ -702,7 +702,9 @@ pub(crate) fn global_llvm_features(sess: &Session, only_base_features: bool) ->\n \n features_string\n };\n- features.extend(features_string.split(',').map(String::from));\n+ ...
2026-03-12T08:52:53
electron/electron
6be1151ffc4a83cc241b78e0c3a04211dfb79943
c0422d7cc97da03815963bf55384a8b68294999c
fix: win.closeFilePreview recreates panel when called twice (#45319) * fix: close quick look during tests on macOS * use longer delay :shrug: * fix: sharedPreviewPanel being recreated on close * test: ensure preview panel gets closed
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1596,8 +1596,11 @@ static bool FromV8(v8::Isolate* isolate,\n }\n \n void NativeWindowMac::CloseFilePreview() {\n- if ([QLPreviewPanel sharedPreviewPanelExists]) {\n+ // Need to be careful about checking [QLPreviewPanel sharedPreviewPanel] as\n...
2025-02-17T22:25:19
vercel/next.js
6169e786020b63e101cc09285e1277e278cd34b8
7c969652ad589a62b7d2a90523d919d8a0583192
Fix required-server-files (#86875) Fixes a regression in https://github.com/vercel/next.js/pull/86830 `config.distDir` was missing <img width="1622" height="475" alt="Bildschirmfoto 2025-12-05 um 17 50 43" src="https://github.com/user-attachments/assets/6460801d-949e-441b-a7d3-6fb679f22d83" />
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -1931,17 +1931,22 @@ export default async function build(\n \n if (hasInstrumentationHook) {\n serverFilesManifest.files.push(\n- path.join(SERVER_DIRECTORY, `${INSTRUMENTATION_HOOK_FILENAME}.js`)\n+ p...
2025-12-05T17:26:06
golang/go
b8b84b789e4275aeea491dbdb50536facd1fa7d7
c761b26b56eec36390885e5373aab2fd17dc67ef
cmd/go: clarify the -o testflag is only for copying the binary Fixes #74769 Change-Id: Iebbaea8fb1a25e30a541a827815def9e269a8135 Reviewed-on: https://go-review.googlesource.com/c/go/+/709255 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Matloob <matloob...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1953,7 +1953,7 @@\n //\t Also emits build output in JSON. See 'go help buildjson'.\n //\n //\t-o file\n-//\t Compile the test binary to the named file.\n+//\t Save a copy of the test binary to the named file.\n //\t The test still runs (unless -c ...
2025-10-05T18:21:59
rust-lang/rust
5064056dd3971930ad83eaaccf91f1561a274f0d
d1ee5e59a964a419b84b760812a35075034f4861
interpreter error reporting: remove arguments that are always the same
[ { "path": "compiler/rustc_const_eval/src/const_eval/error.rs", "patch": "@@ -8,7 +8,7 @@ use rustc_middle::mir::interpret::{\n use rustc_middle::query::TyCtxtAt;\n use rustc_middle::ty::ConstInt;\n use rustc_middle::ty::layout::LayoutError;\n-use rustc_span::{Span, Symbol};\n+use rustc_span::{DUMMY_SP, Span...
2026-03-09T15:15:38
facebook/react
5adf40208f4a2f56bda5c059d18ce578c5091dab
037b25cfdcd18deea0e1c6c2e8d2548dbf32f7f3
feat(eslint-plugin-react-hooks): convert to typescript and package type declarations (#32240) <!-- 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. ...
[ { "path": "packages/eslint-plugin-react-hooks/babel.config.js", "patch": "@@ -0,0 +1,8 @@\n+/**\n+ * This file is purely being used for local jest runs, and doesn't participate in the build process.\n+ */\n+'use strict';\n+\n+module.exports = {\n+ extends: '../../babel.config-ts.js',\n+};", "additions"...
2025-02-16T19:10:54
electron/electron
e9ba5876d1c38de916eb7246c4011d1650d92187
02be7c11858a172eb398ea0886a27a98d06384cc
fix: osr stutter fix backport for electron. (#45572)
[ { "path": "patches/chromium/.patches", "patch": "@@ -141,3 +141,4 @@ ignore_parse_errors_for_pkey_appusermodel_toastactivatorclsid.patch\n feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch\n feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n cherry-pick-dd8e2822e507.pa...
2025-02-17T21:13:44
vercel/next.js
b2cc3a20cf0e41483594069b11820d26351a6c7f
3606db59ded25e8d738c035d41ca3131cdf20535
Turbopack: fix race condition when invalidating (#86859) ### What? Fixes a race condition where invalidations got lost, especially after restoring from persistent cache. Theoretically when executing a task again we would remove all dependencies and they would be slowly added again while outputs/cells are read du...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -2176,15 +2176,17 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n span.record(\"result\", \"once task\");\n continue;\n }\n+ let mut make_stale = true;\n ...
2025-12-05T14:08:39
nodejs/node
7a0c74b4eadca323a376abc9daa2c7d1cb76ef91
af6657494bb956c129e4aea4c11df20f6e328954
Revert "test_runner: automatically wait for subtests to finish" This reverts commit aa3523ec22c95dfb11ef93c8333ced41cd431f89. PR-URL: https://github.com/nodejs/node/pull/58282 Fixes: https://github.com/nodejs/node/issues/58227 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: LiviaMedeiros <livia@ci...
[ { "path": "lib/internal/test_runner/harness.js", "patch": "@@ -28,8 +28,6 @@ const {\n setupGlobalSetupTeardownFunctions,\n } = require('internal/test_runner/utils');\n const { queueMicrotask } = require('internal/process/task_queues');\n-const { TIMEOUT_MAX } = require('internal/timers');\n-const { clear...
2025-05-11T17:19:04
rust-lang/rust
cfcbcb715c5120e481b2d1303b590a5eb2417e55
d1ee5e59a964a419b84b760812a35075034f4861
fix(query): Pass query key to value_from_cycle_error Co-authored-by: Daria Sukhonina <zetanumbers@users.noreply.github.com> Co-authored-by: Nicholas Nethercote <nnethercote@users.noreply.github.com>
[ { "path": "compiler/rustc_middle/src/query/plumbing.rs", "patch": "@@ -136,8 +136,12 @@ pub struct QueryVTable<'tcx, C: QueryCache> {\n /// For `no_hash` queries, this function pointer is None.\n pub hash_value_fn: Option<fn(&mut StableHashingContext<'_>, &C::Value) -> Fingerprint>,\n \n- pub val...
2026-03-11T22:10:45
golang/go
c761b26b56eec36390885e5373aab2fd17dc67ef
65858a146e585b74d41db63f3821d6a150f36d49
mime: parse media types that contain braces This CL fixes a bug introduced by CL 666655: isTokenChar would no longer (but should) report true for '{' and '}'. Fixes #76236 Change-Id: Ifc0953c30d7cae7bfba9bc4b6bb6951a83c52576 GitHub-Last-Rev: c91a75c2c8778a9a8343c6bb4fa89eb1f978059f GitHub-Pull-Request: golang/go#762...
[ { "path": "src/mime/grammar.go", "patch": "@@ -62,7 +62,9 @@ func isTokenChar(c byte) bool {\n \t\t1<<'^' |\n \t\t1<<'_' |\n \t\t1<<'`' |\n+\t\t1<<'{' |\n \t\t1<<'|' |\n+\t\t1<<'}' |\n \t\t1<<'~'\n \treturn ((uint64(1)<<c)&(mask&(1<<64-1)) |\n \t\t(uint64(1)<<(c-64))&(mask>>64)) != 0", "additions": 2, ...
2025-11-10T21:20:09
vercel/next.js
551b32d8fc26f801a396391c002eea06ab963c31
45f0c79076d3e8280666aaeaab77eeebb12049b4
[test] Fix external rewrite target URL origin (#86863) Switching to the assigned custom domain because the project has now Standard Protection enabled, which requires authentication for all other deployments. [x-ref](https://github.com/vercel/next.js/actions/runs/19954917697/job/57223360201)
[ { "path": "test/e2e/skip-trailing-slash-redirect/app/middleware.js", "patch": "@@ -35,11 +35,11 @@ export default function handler(req) {\n }\n \n console.log(\n- `rewriting to https://middleware-external-rewrite-target-epsp8idgo-uncurated-tests.vercel.app${pathname}`\n+ `rewriting to http...
2025-12-05T09:39:52
electron/electron
02be7c11858a172eb398ea0886a27a98d06384cc
7dfcec931a31d7eada23932b6b11542708f32954
feat: add excludeUrls and modify urls in WebRequestFilter for better URL filtering (#44692) * feat: add excludeUrls to web request filter * refactor: add deprecated field * test: update tests * lint: newline * docs: improve API doc * fix: add is filter defined property to match all urls * refactor: r...
[ { "path": "docs/api/structures/web-request-filter.md", "patch": "@@ -1,4 +1,5 @@\n # WebRequestFilter Object\n \n-* `urls` string[] - Array of [URL patterns](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Match_patterns) that will be used to filter out the requests that do not match ...
2025-02-17T20:40:47
nodejs/node
dcfdaab13aa674d88712ca853551fb432dcc77c8
910a8af2d2bc028976f997baf7f7910b9eef30f2
repl: avoid deprecated `require.extensions` in tab completion PR-URL: https://github.com/nodejs/node/pull/58653 Fixes: https://github.com/nodejs/node/issues/58641 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gma...
[ { "path": "lib/repl.js", "patch": "@@ -1359,7 +1359,7 @@ function complete(line, callback) {\n filter = completeOn;\n if (this.allowBlockingCompletions) {\n const subdir = match[2] || '';\n- const extensions = ObjectKeys(this.context.require.extensions);\n+ const extensions = ObjectK...
2025-06-23T06:21:47
facebook/react
037b25cfdcd18deea0e1c6c2e8d2548dbf32f7f3
0d9834caeb3b334eaa1be45f136499f51303e7d3
test(eslint): create eslint test fixtures (#32396)
[ { "path": "fixtures/eslint-v6/.eslintrc.json", "patch": "@@ -1,15 +1,14 @@\n {\n \"root\": true,\n+ \"extends\": [\"plugin:react-hooks/recommended-legacy\"],\n \"parserOptions\": {\n- \"ecmaVersion\": 8,\n+ \"ecmaVersion\": 2020,\n \"sourceType\": \"module\",\n \"ecmaFeatures\": {\n ...
2025-02-16T18:23:44
golang/go
65858a146e585b74d41db63f3821d6a150f36d49
4bfc3a9d14c0b3bfcfe4ce987e47cda6720785a2
os/exec: include Cmd.Start in the list of methods that run Cmd Fixes #76265 Change-Id: I451271c5662dd3bcdeec07b55761b15f64c00dcd Reviewed-on: https://go-review.googlesource.com/c/go/+/719860 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Keith Randall <khr@gol...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -142,8 +142,8 @@ func (w wrappedError) Unwrap() error {\n \n // Cmd represents an external command being prepared or run.\n //\n-// A Cmd cannot be reused after calling its [Cmd.Run], [Cmd.Output] or [Cmd.CombinedOutput]\n-// methods.\n+// A Cmd cannot be reused...
2025-11-11T21:08:26
electron/electron
137a5526411fc987271623eed8d80d208e1beaaa
a841d6484c9856c41df52bcd38e2a56ab9f3e4ae
fix: support for v8.setHeapSnapshotNearHeapLimit api (#45606) * fix: support for v8.setHeapSnapshotNearHeapLimit api * docs: add support
[ { "path": "docs/api/command-line-switches.md", "patch": "@@ -313,6 +313,12 @@ Set the default value of the `verbatim` parameter in the Node.js [`dns.lookup()`\n \n The default is `verbatim` and `dns.setDefaultResultOrder()` have higher priority than `--dns-result-order`.\n \n+### `--diagnostic-dir=directory...
2025-02-14T16:00:39
nodejs/node
d7becc58750096b711c55a378a55f596a45f3ce1
dfcb824ae3e7752abf3c809a3f226cb21dd2187a
test: deflake test-buffer-large-size-buffer-alloc-unsafe Use the error message as another condition to skip the test when the buffer allocation fails. Refs: https://github.com/nodejs/node/pull/58738 PR-URL: https://github.com/nodejs/node/pull/58771 Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Chengzhong...
[ { "path": "test/pummel/test-buffer-large-size-buffer-alloc-unsafe.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- // Test Buffer.allo...
2025-06-22T09:43:35
vercel/next.js
45f0c79076d3e8280666aaeaab77eeebb12049b4
6ff2d98c3823974991b4f98ddc066559f1b3de44
Introduce NextConfigRuntime (#86812) To only include the keys we actually at runtime in the server in `required-server-files.json` and in `.next/standalone/server.js` There is some chance I missed some property that's needed at runtime (and is incorrectly filtered out by `getNextConfigRuntime`)
[ { "path": "packages/next/errors.json", "patch": "@@ -964,5 +964,6 @@\n \"963\": \"Fast setImmediate is not available in the edge runtime.\",\n \"964\": \"An unexpected error occurred while starting to capture immediates\",\n \"965\": \"Expected setImmediate to reject invalid arguments\",\n- \"966\": ...
2025-12-05T09:24:48
facebook/react
cbbe8666a8d6e6f1b81dffb11bd5d767e4acd6ac
e0131f1edae0fc411bf8abb2fed211ca07af60fe
fix value formatting of proxies of class instances (#30880) For Hookstate Proxies of class instances, `data.constructor.name` returns `Proxy({})`, so use `Object.getPrototypeOf(data).constructor.name` instead, which works correctly from my testing. <!-- Thanks for submitting a pull request! We appreciate you...
[ { "path": "packages/react-devtools-shared/src/utils.js", "patch": "@@ -915,7 +915,25 @@ export function formatDataForPreview(\n case 'date':\n return data.toString();\n case 'class_instance':\n- return data.constructor.name;\n+ try {\n+ let resolvedConstructorName = data.const...
2025-02-13T12:04:53
nodejs/node
dfcb824ae3e7752abf3c809a3f226cb21dd2187a
eafbe277b00d3a0f37252c7fe6d7a354c31efed1
tools: make nodedownload module compatible with Python 3.14 FancyURLopener and URLopener have been deprecated since Python 3.3 and they are removed completely from 3.14. Fixes: https://github.com/nodejs/node/issues/58740 PR-URL: https://github.com/nodejs/node/pull/58752 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>...
[ { "path": "tools/configure.d/nodedownload.py", "patch": "@@ -7,10 +7,7 @@\n import zipfile\n import tarfile\n import contextlib\n-try:\n- from urllib.request import FancyURLopener, URLopener\n-except ImportError:\n- from urllib import FancyURLopener, URLopener\n+from urllib.request import build_opener...
2025-06-22T05:49:14
golang/go
4bfc3a9d14c0b3bfcfe4ce987e47cda6720785a2
2263d4aabdde8a4a466009ecc356501f87c7efb7
std,cmd: go fix -any std cmd This change mechanically replaces all occurrences of interface{} by 'any' (where deemed safe by the 'any' modernizer) throughout std and cmd, minus their vendor trees. Since this fix is relatively numerous, it gets its own CL. Also, 'go generate go/types'. Change-Id: I14a6b52856c3291c1d...
[ { "path": "src/cmd/asm/internal/asm/endtoend_test.go", "patch": "@@ -38,7 +38,7 @@ func testEndToEnd(t *testing.T, goarch, file string) {\n \tctxt.IsAsm = true\n \tdefer ctxt.Bso.Flush()\n \tfailed := false\n-\tctxt.DiagFunc = func(format string, args ...interface{}) {\n+\tctxt.DiagFunc = func(format string...
2025-11-11T19:48:22
vercel/next.js
b35713c4b5aa922fef5442d002d43c72b7d13838
dfb0b8e6e489a4640c984797cac76e2dd90e61a3
Turbopack: bincode: Use bincode to store the contents of value cells (#86338) This PR switches `turbo-tasks-backend` to use `bincode` instead of serde for cell contents. To keep PR size manageable, `TaskInput`s are still serialized using serde and a compatibility shim. The next PR fixes that. See https://github.com/v...
[ { "path": ".cargo/config.toml", "patch": "@@ -73,4 +73,4 @@ rustflags = [\n linker = \"arm-linux-gnueabihf-gcc\"\n \n [target.wasm32-unknown-unknown]\n-rustflags = [\"-Zshare-generics=y\", \"--cfg\", 'getrandom_backend=\"wasm_js\"']\n\\ No newline at end of file\n+rustflags = [\"-Zshare-generics=y\", \"--cf...
2025-12-05T06:36:23
facebook/react
e0131f1edae0fc411bf8abb2fed211ca07af60fe
5a78dd7cfec4217c1feb89ee6312c13f40b01aed
fix(devtools): Handle nullish values passed to `formatConsoleArguments` (#32372) <!-- 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": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -470,5 +470,14 @@ function f() { }\n {},\n ]);\n });\n+\n+ it('formats nullish values', () => {\n+ expect(formatConsoleArguments('This is the %s template', null)).toEqual([\n+ 'This is the n...
2025-02-13T12:02:55
nodejs/node
eafbe277b00d3a0f37252c7fe6d7a354c31efed1
eec03020880cf83d20e827d9067bdbeb4e0adf64
test: correct SIMD support comment The comment in the test file stated that: "SIMD is not supported on rhel8-ppc64le" This is incorrect -- WASM SIMD support is dependent on the available instructions, not the operating system. So it is more correct to say that WASM SIMD is not supported on IBM Power8 architecture. P...
[ { "path": "test/es-module/test-esm-wasm.mjs", "patch": "@@ -70,7 +70,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>\n [\n 'import { strictEqual, deepStrictEqual, ok } from \"node:assert\";',\n \n- // SIMD is not supported on rhel8-ppc64le\n+ ...
2025-06-21T17:19:45
golang/go
951cf0501b57d31e648f2808820f2c7eaca3edc8
2750f9529148d21c5e29cb325acccc6240e813cf
internal/trace/testtrace: fix flag name typos Change-Id: I6a6a636cd82a3e22a482ea2b2ab1004c45e2c304 Reviewed-on: https://go-review.googlesource.com/c/go/+/719400 Auto-Submit: Michael Pratt <mpratt@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco...
[ { "path": "src/internal/trace/testtrace/helpers.go", "patch": "@@ -37,7 +37,7 @@ func Dump(t *testing.T, testName string, traceBytes []byte, forceToFile bool) {\n \t\t\tt.Logf(\"text trace too large to dump (%d bytes)\", len(s))\n \t\t} else {\n \t\t\tt.Log(s)\n-\t\t\tt.Log(\"Convert this to a raw trace wit...
2025-11-10T21:19:36
facebook/react
192555bb0ed88db30f91c58651c421f178f90384
a69b80d07e5d1bf363ed15d6209a55b35e0765c2
Added dev-only warning for null/undefined create in use*Effect (#32355) ## Summary Fixes #32354. Re-creation of #15197: adds a dev-only warning if `create == null` to the three `use*Effect` functions: * `useEffect` * `useInsertionEffect` * `useLayoutEffect` Updates the warning to match the same text given in the `...
[ { "path": "packages/react/src/ReactHooks.js", "patch": "@@ -93,6 +93,14 @@ export function useEffect(\n updateDeps?: Array<mixed> | void | null,\n destroy?: ((resource: {...} | void | null) => void) | void,\n ): void {\n+ if (__DEV__) {\n+ if (create == null) {\n+ console.warn(\n+ 'React...
2025-02-11T22:01:04
vercel/next.js
2931550ebbf8b547304d3bccebcb5606700460fc
5118c41567cde92c4db3077c3b656447c57603ef
Turbopack: bincode: Implement bincode Encode/Decode traits on all turbo task values (#85580) It looks like bincode should reduce the filesystem cache size by ~10% versus pot, because its not a self-describing format. This attempts to add the `bincode::Encode`/`bincode::Decode` traits everywhere, so that we can use tho...
[ { "path": "Cargo.lock", "patch": "@@ -394,6 +394,7 @@ checksum = \"1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0\"\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n dependencies = [\n+ \"bincode 2.0.1\",\n \"hashbrown 0.14.5\",\n \"rustc-hash 2.1.1\",\n \"serde\",\n@@ -4261,6 +4262,7 ...
2025-12-05T01:47:19
nodejs/node
b04c4a44a5c1eeda542570710027958586f284bc
e679e38b252ee5203ef583392f77fd532e2b4a67
src: pass resource on permission checks for spawn This commit enhances the permission model errors when no --allow-child-process is used and the error is emitted. Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com> PR-URL: https://github.com/nodejs/node/pull/58758 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewe...
[ { "path": "src/node_process_methods.cc", "patch": "@@ -518,9 +518,6 @@ static void Execve(const FunctionCallbackInfo<Value>& args) {\n Isolate* isolate = env->isolate();\n Local<Context> context = env->context();\n \n- THROW_IF_INSUFFICIENT_PERMISSIONS(\n- env, permission::PermissionScope::kChildP...
2025-06-21T14:40:10
golang/go
426ef30ecf2d2b6eadd962358884ed68220b9cc5
5241d114f55cfa69a4bf8f2051f5d83d1f618859
cmd/go: implement -reuse for Mercurial repos When we added -reuse in CL 411398, we only handled Git repos. This was partly because we were focused on Git traffic, partly because Git is the dominant module VCS, and partly because I couldn't see how to retrieve the metadata needed in other version control systems. This...
[ { "path": "lib/hg/goreposum.py", "patch": "@@ -0,0 +1,64 @@\n+# Copyright 2025 The Go Authors. All rights reserved.\n+# Use of this source code is governed by a BSD-style\n+# license that can be found in the LICENSE file.\n+\n+# Mercurial extension to add a 'goreposum' command that\n+# computes a hash of a ...
2025-08-19T19:27:39
facebook/react
3dd2c627707fea4f45fd8e5cc583036a72e3f77b
93b58361d9c9632acdda76eb8a1a582d1ff9701a
[react-native] fix divergence in synced code (#32348) Alternative to #32334
[ { "path": "packages/react-native-renderer/src/ReactNativeTypes.js", "patch": "@@ -10,6 +10,7 @@\n */\n \n import type {ElementRef, ElementType, MixedElement} from 'react';\n+import {type PublicRootInstance} from 'react-native/Libraries/ReactPrivate/ReactNativePrivateInterface';\n \n export type MeasureOnSu...
2025-02-10T19:08:44
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
vercel/next.js
dfc51d0f40c25bd42f1362e6186c706e4bad5603
3a323194341a6554147d832cf6bca26e7140bd49
fix(next/image): handle `?dpl` for src without protocol (#86836) Follow up to previous PR based on this comment: https://github.com/vercel/next.js/pull/86485#discussion_r2589758455 We want to avoid adding `?dpl` when the deployment is an absolute url missing the protocol which is allowed when `unoptimized=true`.
[ { "path": "packages/next/src/shared/lib/get-img-props.ts", "patch": "@@ -232,7 +232,7 @@ function generateImgAttrs({\n }: GenImgAttrsData): GenImgAttrsResult {\n if (unoptimized) {\n const deploymentId = getDeploymentId()\n- if (src.startsWith('/') && deploymentId) {\n+ if (src.startsWith('/') &...
2025-12-04T20:51:51
golang/go
5241d114f55cfa69a4bf8f2051f5d83d1f618859
cdf64106f621b47987f332d5003afaefd9204b08
spec: more precise prose for special case of append As written, the special case for append may be interpreted such that any first argument that is assignable to []byte is permissible, including nil. This change makes makes it clear that a slice argument is required. Not a language change. The compiler always expecte...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Oct 1, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Nov 9, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -7383,8 +7383,8 @@...
2025-11-08T03:52:27
electron/electron
a841d6484c9856c41df52bcd38e2a56ab9f3e4ae
2af57c4b6a8d9093f39208bda56b2527b5ea9c74
chore: bump node to v22.14.0 (main) (#45578) * chore: bump node in DEPS to v22.14.0 * src: move more crypto impl detail to ncrypto dep https://github.com/nodejs/node/pull/56421 * test: move crypto related common utilities in common/crypto https://github.com/nodejs/node/pull/56714 * module: add findPackageJSON uti...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '134.0.6998.10',\n 'node_version':\n- 'v22.13.1',\n+ 'v22.14.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1 }, { "...
2025-02-14T10:05:01
facebook/react
062fb31155e42b6997a35b97180055814471620c
7588b6b291b17fb2130244115b07e9945a864626
[ci] Fix typo (#32337) Oops.
[ { "path": ".github/workflows/shared_close_direct_sync_branch_prs.yml", "patch": "@@ -3,7 +3,7 @@ name: (Shared) Close Direct Sync Branch PRs\n on:\n pull_request:\n branches:\n- - builds/facebook-*\n+ - 'builds/facebook-**'\n \n env:\n TZ: /usr/share/zoneinfo/America/Los_Angeles", "add...
2025-02-07T23:01:53
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 }, { "path": "Cargo.toml", "patch": "@@ -470,6 +470,7 @@ tracing = \"0.1.37\"\n tracing-subscriber...
2025-12-04T20:34:34
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
electron/electron
2af57c4b6a8d9093f39208bda56b2527b5ea9c74
47dbab3856d1a33b8de51e8c189827ef3a6359ea
fix: osr crash on window close (#45573)
[ { "path": "shell/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -208,8 +208,8 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n compositor_->SetRootLayer(root_layer_.get());\n \n ResizeRootLayer(false);\n+\n render_widget_host_->SetView(this);\n- render_widget_host_->rende...
2025-02-14T10:01:00
golang/go
cdf64106f621b47987f332d5003afaefd9204b08
a0eb4548cfcf803da087b7ca461a2d48b9f17a58
go/types, types2: first argument to append must never be be nil The current implementation followed the spec faithfully for the special case for append. Per the spec: As a special case, append also accepts a first argument assignable to type []byte with a second argument of string type followed by ... . As it happen...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -91,6 +91,17 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t// to type []byte with a second argument of string type followed by ... .\n \t\t// This form appends the bytes of the string.\"\n \n+\t...
2025-11-07T23:50:14
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
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
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
electron/electron
47dbab3856d1a33b8de51e8c189827ef3a6359ea
a1e4550c9e5b2b220530a9238795286bd028dbfb
fix: pointer lock permission after focus loss and regain (#45574)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1608,6 +1608,12 @@ void WebContents::LostPointerLock() {\n ->ExitExclusiveAccessToPreviousState();\n }\n \n+bool WebContents::IsWaitingForPointerLockPrompt(\n+ content::WebContents* web_contents) {\n+ return exclusive_access...
2025-02-14T09:22:13
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
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 }, { "path": "tools/v8_gypfiles/toolchain.gypi", "patch": "@@ -40,10 +40,16 @@\n 'ubs...
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
electron/electron
aa06b065c06e2e7fa1ac88e402d9113ca9c1bc39
9f47c9a0513aae375729dd2c97f2bb10bcd8b8c0
chore: bump chromium to 134.0.6998.10 (main) (#45564) * chore: bump chromium to 134.0.6992.0 * chore: add BrowserProcessImpl::CreateGlobalFeaturesForTesting() stub Xref: https://chromium-review.googlesource.com/c/chromium/src/+/6216193 Remove GlobalFeatures from TestingBrowserProcess::Init * chore: bump ch...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '134.0.6990.0',\n+ '134.0.6998.10',\n 'node_version':\n 'v22.13.1',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "patches/chromium/mas_avoid_priva...
2025-02-11T23:26:39
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
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
46d316692d79aa988f1bb29c198da099d5221bbd
2f288bc7ccfff4e2cae5c4d19cef9eef3e5ec54c
fix: asan build on macOS (#45541) * fix: asan build on macOS * chore: fix build
[ { "path": "patches/node/.patches", "patch": "@@ -38,3 +38,4 @@ build_use_third_party_simdutf.patch\n fix_remove_fastapitypedarray_usage.patch\n test_handle_explicit_resource_management_globals.patch\n linux_try_preadv64_pwritev64_before_preadv_pwritev_4683.patch\n+build_remove_explicit_linker_call_to_libm_o...
2025-02-11T06:04:07
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
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
052c192a4cf853f0a613eacc623beca35f8c0e24
bc5ffe5c79d45447648a012465e158f29ff5efa2
runtime: fix lock rank for work.spanSPMCs.lock Currently this lock is treated like a leaf lock, but it's not one. It can acquire the globalAlloc lock via fixalloc and persistentalloc. This means we need to figure out where it can be acquired. In general, it can be acquired by any write barrier, which is already incre...
[ { "path": "src/runtime/lockrank.go", "patch": "@@ -71,6 +71,7 @@ const (\n \t// WB\n \tlockRankWbufSpans\n \tlockRankXRegAlloc\n+\tlockRankSpanSPMCs\n \tlockRankMheap\n \tlockRankMheapSpecial\n \tlockRankGlobalAlloc\n@@ -145,6 +146,7 @@ var lockNames = []string{\n \tlockRankHchanLeaf: \"hchanLeaf\...
2025-11-03T21:40:33
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
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
electron/electron
2f288bc7ccfff4e2cae5c4d19cef9eef3e5ec54c
f5025b624670e5039d7736c82be2e1ce0743fac8
docs: fix grammar in preload tutorial summary (#45522)
[ { "path": "docs/tutorial/tutorial-3-preload.md", "patch": "@@ -252,7 +252,7 @@ apps often use the preload script to set up inter-process communication (IPC) in\n to pass arbitrary messages between the two kinds of processes.\n \n In the next part of the tutorial, we will be showing you resources on adding m...
2025-02-10T21:15:32
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
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
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
golang/go
771a1dc216ff02dd23c78ada35a207a363690d11
972732b245399097e1e59aa2e35c47ef5efbf394
[dev.simd] cmd/compile: add peepholes for all masked ops and bug fixes For 512-bits they are unchanged. This CL adds the optimization rules for 128/256-bits under feature check. This CL also fixed a bug for masked load variant of instructions and make them zeroing by default as well. Change-Id: I6fe395541c0cd509984a...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1993,38 +1993,65 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPABSWMasked256,\n \t\tssa.OpAMD64VPABSWMasked512,\n \t\tssa.OpAMD64VPABSDMasked128,\n+\t\tssa.OpAMD64VPABSDMasked128load,\n \t\tssa.OpAMD64VPA...
2025-11-04T21:46:06
electron/electron
f5025b624670e5039d7736c82be2e1ce0743fac8
e055ce7c39c80e38321769df78b7323b9a00e52b
fix: avoid IPC for renderer `webFrame.getZoom...` APIs (#45499) * fix: avoid IPC for renderer `webFrame.getZoom...` APIs * Remove `DoGetZoomLevel` IPC * Fix synchronous behavior & nullptr deref * Use local root
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -3693,12 +3693,6 @@ void WebContents::SetTemporaryZoomLevel(double level) {\n zoom_controller_->SetTemporaryZoomLevel(level);\n }\n \n-void WebContents::DoGetZoomLevel(\n- electron::mojom::ElectronWebContentsUtility::DoGetZoomLeve...
2025-02-10T21:09:11
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
golang/go
bc5ffe5c79d45447648a012465e158f29ff5efa2
32f8d6486f02d5820977180c52889ec72c799d58
internal/runtime/sys,math/bits: eliminate bounds checks on len8tab The compiler cannot currently determine that the accesses to len8tab are within bounds. Cast to uint8 to avoid unnecessary bounds checks. Fixes #76166 Change-Id: I1fd930bba2b20d3998252c476308642e08ce00b4 Reviewed-on: https://go-review.googlesource.co...
[ { "path": "src/internal/runtime/sys/intrinsics.go", "patch": "@@ -109,7 +109,7 @@ func Len64(x uint64) (n int) {\n \t\tx >>= 8\n \t\tn += 8\n \t}\n-\treturn n + int(len8tab[x])\n+\treturn n + int(len8tab[uint8(x)])\n }\n \n // --- OnesCount ---", "additions": 1, "deletions": 1 }, { "path": "...
2025-11-05T14:05:29
electron/electron
70168c8bdcafcbf70b33230cbf9fdc82a969870a
e4cd162433927de69943fab3ad13bd9b9c396ec6
fix: fix mksnapshot gen/v8 path (#45488) * fix: fix mksnapshot gen/v8 path * build: use 7z compression * build: unzip mksnapshot on Windows and update zip * chore: escape backslashes * chore: try another attempt * chore: remove rmdir for now --------- Co-authored-by: John Kleinschmidt <jkleinsc@el...
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -108,7 +108,9 @@ runs:\n if [ \"${{ inputs.target-platform }}\" = \"win\" ]; then\n cd out/Default\n powershell Compress-Archive -update mksnapshot_args mksnapshot.zip\n- powershell Compress-Archive -upd...
2025-02-10T15:21:29
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
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
32f8d6486f02d5820977180c52889ec72c799d58
1c1c1942ba5b596ade56c983e0ab75f0a237ad15
runtime: document that tracefpunwindoff applies to some profilers The tracefpunwindoff GODEBUG applies to all the places where we use frame pointer unwinding. Originally that was just the execution tracer, but now we also use it for the block and mutex profilers. Change-Id: I6a6a69641fede668d96335582dba6d43e62f6a51 R...
[ { "path": "src/runtime/extern.go", "patch": "@@ -211,10 +211,11 @@ It is a comma-separated list of name=val pairs setting these named variables:\n \treport. This also extends the information returned by runtime.Stack.\n \tSetting N to 0 will report no ancestry information.\n \n-\ttracefpunwindoff: setting t...
2025-11-06T14:40:21
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
electron/electron
e4cd162433927de69943fab3ad13bd9b9c396ec6
4085185e2dd56cd691ba3c8ece36f63c969563b0
docs: fix powerMonitor event types (#45518) * fix: powerMonitor event types * fix: thermal-state-change missing Returns
[ { "path": "docs/api/power-monitor.md", "patch": "@@ -26,7 +26,10 @@ Emitted when system changes to battery power.\n \n ### Event: 'thermal-state-change' _macOS_\n \n-* `state` string - The system's new thermal state. Can be `unknown`, `nominal`, `fair`, `serious`, `critical`.\n+Returns:\n+\n+* `details` Eve...
2025-02-10T15:13:11