repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
electron/electron
8fa7d324d10a4a697e98be0748849fe01c02f3b9
7fa297a84982c44db32e5d4d591fc4e1586f5bd5
fix: set `XDG_CURRENT_DESKTOP` env var back to original value before invoking xdg utils (#45310) * Fix XDG_CURRENT_DESKTOP before invoking XDGUtil * apply suggestion * use existing XDG_CURRENT_DESKTOP const
[ { "path": "shell/common/platform_util_linux.cc", "patch": "@@ -15,6 +15,7 @@\n \n #include \"base/cancelable_callback.h\"\n #include \"base/containers/contains.h\"\n+#include \"base/containers/map_util.h\"\n #include \"base/environment.h\"\n #include \"base/files/file_util.h\"\n #include \"base/files/scoped...
2025-04-25T16:31:36
nodejs/node
499a5c345165f0d4a94b98d08f1ace7268781564
a43f984761103acdfd6c3fd82ec62ce7e60bdbfb
test: fix `test-setproctitle` status when `ps` is not available PR-URL: https://github.com/nodejs/node/pull/59523 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "test/parallel/test-setproctitle.js", "patch": "@@ -4,7 +4,7 @@ const common = require('../common');\n const { isMainThread } = require('worker_threads');\n \n // FIXME add sunos support\n-if (common.isSunOS || common.isIBMi) {\n+if (common.isSunOS || common.isIBMi || common.isWindows) {\n commo...
2025-08-20T18:24:04
facebook/react
8570116bd1ba872537132de42b997ec56c726659
4f1d2ddf95906e9a3436552c524410e9d39f48ca
[compiler] Fix for uncalled functions that are known-mutable If a function captures a mutable value but never gets called, we don't infer a mutable range for that function. This means that we also don't alias the function with its mutable captures. This case is tricky, because we don't generally know for sure what is...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InerAliasForUncalledFunctions.ts", "patch": "@@ -0,0 +1,134 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root director...
2025-05-03T00:15:32
vercel/next.js
c6dd32c25b38303c9b29f52d4d8eef711db1e650
d56ed7bbca98107d76293a69293770cdc80f98e3
Turbopack: Add `--debug-build-paths` support to filter routes (#88655) Add support for the `--debug-build-paths` flag in Turbopack builds. Previously this flag only affected which routes were prerendered (statically generated), but the bundler still compiled all routes. Now routes are filtered early in `Project::en...
[ { "path": ".config/eslintignore.mjs", "patch": "@@ -48,6 +48,7 @@ export default globalIgnores([\n 'examples/with-typescript-graphql/lib/gql/',\n 'test/development/basic/hmr/components/parse-error.js',\n 'test/development/mcp-server/fixtures/default-template/app/build-error/page.tsx',\n+ 'test/produc...
2026-01-19T16:17:38
golang/go
6851795fb6cda61e2c8396c36da187a2bd87b29e
0921e1db83d3e67032999b5a2f54f5ede8ba39b5
runtime: add GODEBUG=tracebacklabels=1 to include pprof labels in tracebacks Copy LabelSet to an internal package as label.Set, and include (escaped) labels within goroutine stack dumps. Labels are added to the goroutine header as quoted key:value pairs, so the line may get long if there are a lot of labels. To hand...
[ { "path": "doc/godebug.md", "patch": "@@ -168,6 +168,12 @@ allows malformed hostnames containing colons outside of a bracketed IPv6 address\n The default `urlstrictcolons=1` rejects URLs such as `http://localhost:1:2` or `http://::1/`.\n Colons are permitted as part of a bracketed IPv6 address, such as `htt...
2025-05-23T20:04:08
electron/electron
372cdb5deec889251e1b0b40e2440ff9fa8341e3
973e5d0249146519523459ff23f0fbccabab5309
fix: bluetooth crash in `select-bluetooth-device` event (#46745) fix: bluetooth crash on bluetooth off
[ { "path": "shell/browser/lib/bluetooth_chooser.cc", "patch": "@@ -25,19 +25,6 @@ struct Converter<electron::BluetoothChooser::DeviceInfo> {\n \n namespace electron {\n \n-namespace {\n-\n-void OnDeviceChosen(const content::BluetoothChooser::EventHandler& handler,\n- const std::string& dev...
2025-04-25T15:26:19
nodejs/node
7535aa1f72ac0e8e8ae94e9c9d873be7ae0bc711
db70ceb49f90a66008026ccec261f088d0576013
esm: link modules synchronously when no async loader hooks are used When no async loader hooks are registered, perform the linking as synchronously as possible to reduce the chance of races from the the shared module loading cache. PR-URL: https://github.com/nodejs/node/pull/59519 Fixes: https://github.com/nodejs/nod...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -65,6 +65,8 @@ let debug = require('internal/util/debuglog').debuglog('esm', (fn) => {\n debug = fn;\n });\n \n+const { isPromise } = require('internal/util/types');\n+\n /**\n * @typedef {import('./hooks.js').HooksProxy} HooksProxy\n * @typed...
2025-08-18T14:08:59
facebook/react
73d7e816b7746c700ab843964aaf11c17351fac1
ac2cae524576b8091a6d78d9ab05627053949df1
[compiler] ValidatePreservedManualMemoization reports detailed errors This pass didn't previously report the precise difference btw inferred/manual dependencies unless a debug flag was set. But the error message is really good (nice job mofeiz): the only catch is that in theory the inferred dep could be a temporary th...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts", "patch": "@@ -141,14 +141,14 @@ function getCompareDependencyResultDescription(\n ): string {\n switch (result) {\n case CompareDependencyResult.Ok:\n- return 'dependencies equal';\n+ ...
2025-05-03T00:09:34
vercel/next.js
a6f714cbc9cf6f4538cc61385d81a3f1cb90c82e
38f4304c2255b3c6443796a052fc3ed0f8cb3aa4
[Devtool Indicator] Fix cross alignment (#88664) <img width="4106" height="3504" alt="image" src="https://github.com/user-attachments/assets/102ddcd6-84c3-4cf7-be99-977473399570" /> Co-authored-by: Jiwon Choi <devjiwonchoi@gmail.com>
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-indicator/next-logo.tsx", "patch": "@@ -237,10 +237,6 @@ export function NextLogo({\n &:has([data-issues-collapse]) {\n padding-right: calc(var(--padding-left) / 2);\n }\n-\n- [data-cr...
2026-01-19T13:36:00
golang/go
1a53ce9734c0b2a3e2a9814e75949ea77a978143
c6f882f6c58ed56fa4bd2d8256ec55d9992c3583
context: don't return the wrong error when Cause races cancellation Check to see if a context is canceled at all before checking for the cancellaion cause. If we can't find a cause, use the original error. Avoids a data race where we look for a cause, find none (because the context is not canceled), the context is ca...
[ { "path": "src/context/context.go", "patch": "@@ -286,23 +286,23 @@ func withCancel(parent Context) *cancelCtx {\n // Otherwise Cause(c) returns the same value as c.Err().\n // Cause returns nil if c has not been canceled yet.\n func Cause(c Context) error {\n+\terr := c.Err()\n+\tif err == nil {\n+\t\tretu...
2025-06-06T22:38:28
nodejs/node
db70ceb49f90a66008026ccec261f088d0576013
f8d68d30ae0bc7ba72e65518c511283b3a259afd
esm: show race error message for inner module job race The race can not only happen when the ESM is loaded by the CommonJS loader, but can also happen to inner module jobs in the dependency graph. PR-URL: https://github.com/nodejs/node/pull/59519 Fixes: https://github.com/nodejs/node/issues/59366 Refs: https://github...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -471,6 +471,10 @@ class ModuleLoader {\n const resolvedImportAttributes = resolveResult.importAttributes ?? importAttributes;\n let job = this.loadCache.get(url, resolvedImportAttributes.type);\n if (job !== undefined) {\n+ // TOD...
2025-08-18T14:06:02
facebook/react
ac2cae524576b8091a6d78d9ab05627053949df1
66de8e5a9975a4b53734ebed8a1c1f07892426a8
[compiler] Fix for string attribute values with emoji If a JSX attribute value is a string that contains unicode or other characters that need special escaping, we wrap the attribute value in an expression container. However, our unicode to detect this only handled the basic unicode character plane, not the "astral" p...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -2327,9 +2327,12 @@ function codegenInstructionValue(\n * u0080 to u009F: C1 control codes\n * u00A0 to uFFFF: All non-basic Latin characters\n * https://en.wikipedia.org/wiki/List_of_Uni...
2025-05-03T00:07:50
electron/electron
1976e935e7ef5fbf5d02c1ce855543d494d23857
51dbe69e456a5fb6166b990470eabb481d11d24e
fix: missing `HandleScope` in `RemoveFromParentChildWindows` (#46758)
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -1161,8 +1161,10 @@ void BaseWindow::RemoveFromParentChildWindows() {\n if (parent_window_.IsEmpty())\n return;\n \n+ v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();\n+ v8::HandleScope handle_scope(isolate);\n gin:...
2025-04-25T12:04:25
vercel/next.js
b46d599b0fe6bae102f98dac49cfeec0f1102eb6
dc5939158af99146e9992619b347336a193442c0
Add negation pattern support to `--debug-build-paths` (#88654) Patterns prefixed with `!` now exclude matching files from the `next build --debug-build-paths` option. Using only negation patterns will build everything except the excluded paths. Examples: - `--debug-build-paths 'app/**,!app/[lang]/**'` - build a...
[ { "path": "packages/next/src/bin/next.ts", "patch": "@@ -183,7 +183,7 @@ program\n )\n .option(\n '--debug-build-paths <patterns>',\n- 'Comma-separated glob patterns or explicit paths for selective builds. Examples: \"app/*\", \"app/page.tsx\", \"app/**/page.tsx\"'\n+ 'Comma-separated glob pat...
2026-01-19T12:29:54
golang/go
c6f882f6c58ed56fa4bd2d8256ec55d9992c3583
97d5295f6fcbc4c24225096900c22773d6672cce
crypto/x509: add ExtKeyUsage.String and KeyUsage.String methods Fixes #56866 Change-Id: Icc8f067820f5d74e0d5073bce160429e6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/723360 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Filippo Val...
[ { "path": "api/next/56866.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/x509, method (ExtKeyUsage) String() string #56866\n+pkg crypto/x509, method (KeyUsage) String() string #56866", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/crypto/...
2025-11-22T15:26:24
nodejs/node
3e5885b3cb55d423ee5d0d47115536fea3454806
bdcab711b8048af2c4dcd4a2c33d506ce1621c6a
doc: clarify maxRSS unit in `process.resourceUsage()` PR-URL: https://github.com/nodejs/node/pull/59511 Fixes: https://github.com/nodejs/node/issues/59508 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/process.md", "patch": "@@ -3642,7 +3642,7 @@ added: v12.6.0\n * `systemCPUTime` {integer} maps to `ru_stime` computed in microseconds.\n It is the same value as [`process.cpuUsage().system`][process.cpuUsage].\n * `maxRSS` {integer} maps to `ru_maxrss` which is the maximum residen...
2025-08-20T05:36:07
facebook/react
26ecc98a0014700524e78d938e3654c73213cf3b
f0ca53d1337780ccfd49c132170d378c789cb463
[mcp] Prompt improvements for smarter tool composition (#33108) Our runtime results are still bogus, but so far this tweak let's the llm use the tools a little more intelligently. example: --- ```js import React from 'react'; function App() { const [count, setCount] = React.useState(0); const [data, setData] = ...
[ { "path": "compiler/packages/react-mcp-server/src/index.ts", "patch": "@@ -29,7 +29,7 @@ const server = new McpServer({\n \n server.tool(\n 'query-react-dev-docs',\n- 'This tool lets you search for official docs from react.dev. This always has the most up to date information on React. You can look for do...
2025-05-02T21:50:39
electron/electron
51dbe69e456a5fb6166b990470eabb481d11d24e
08318dc05de25cbac5997b6c900ad7a390bd7c59
fix: vibrancy window border (#46648) * fix: vibrancy window border * Use WidgetDelegate::OnWidgetInitialized instead
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -225,6 +225,7 @@ class NativeWindowMac : public NativeWindow,\n bool CanMaximize() const override;\n std::unique_ptr<views::NonClientFrameView> CreateNonClientFrameView(\n views::Widget* widget) override;\n+ void OnWidgetInitialized() ov...
2025-04-25T09:42:48
golang/go
62cd044a79b9f2ba889bca59b3b12400dc41dd85
f1e376f342af82d6f5bdba23cdc5c35b5bfd9064
cmd/compile: add cases for StringLen to prove Tricky index-offset logic had been added for slices, but not for strings. This fixes that, and also adds tests for same behavior in string/slice cases, and adds a new test for code in prove that had been added but not explicitly tested. Fixes #76270. Change-Id: Ibd92b89...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2040,14 +2040,14 @@ func (ft *factsTable) flowLimit(v *Value) {\n //\n // slicecap - index >= slicelen - index >= K\n //\n-// Note that \"index\" is not useed for indexing in this pattern, but\n+// Note that \"index\" is not used for indexing ...
2025-11-24T20:00:11
vercel/next.js
1bbba2a079b19a017069baffc0aca3e5421c3f7e
633e274965b78dff11c59702794823dbf92f689a
Revert "[turbopack] Add bundling support for worker_threads" (#88725) Reverts vercel/next.js#87746 because of this build error: ``` > Build error occurred Error: Turbopack build failed with 1 errors: ./node_modules/.pnpm/thread-stream@3.1.0/node_modules/thread-stream/index.js non-evaluatable module Worker thread modu...
[ { "path": ".rustfmt.toml", "patch": "@@ -1,4 +1,3 @@\n-edition = \"2024\"\n max_width = 100\n \n comment_width = 100", "additions": 0, "deletions": 1, "language": "Unknown" }, { "path": "crates/next-api/src/middleware.rs", "patch": "@@ -14,7 +14,10 @@ use turbo_tasks::{Completion, Re...
2026-01-19T09:48:34
nodejs/node
ef58be6f0cbe3d00273cfbdab8e8555617673f34
3755e8b1446589dae8ad2cdead7806f721b979f9
doc: add missing Zstd strategy constants PR-URL: https://github.com/nodejs/node/pull/59312 Fixes: https://github.com/nodejs/node/issues/59290 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/zlib.md", "patch": "@@ -750,6 +750,34 @@ The most important options are:\n * `ZSTD_c_compressionLevel`\n * Set compression parameters according to pre-defined cLevel table. Default\n level is ZSTD\\_CLEVEL\\_DEFAULT==3.\n+* `ZSTD_c_strategy`\n+ * Select the compression strategy.\n+...
2025-08-19T18:38:44
facebook/react
e39b380a21aa4ef48d5880aa2c800ec5b1b044bd
9de0304ad72bc3f8a77d2d84efa530b8051d1c15
[mcp] Fix unresolved imports (#33105) We need to explicitly import the modules so they'll be inlined correctly into the bundle.
[ { "path": "compiler/packages/react-mcp-server/src/tools/runtimePerf.ts", "patch": "@@ -1,5 +1,11 @@\n import * as babel from '@babel/core';\n import puppeteer from 'puppeteer';\n+// @ts-ignore\n+import * as babelPresetTypescript from '@babel/preset-typescript';\n+// @ts-ignore\n+import * as babelPresetEnv f...
2025-05-02T20:54:17
golang/go
f1e376f342af82d6f5bdba23cdc5c35b5bfd9064
7fbd141de506e331ef3f5910b505ece91a012e4a
cmd/go/internal/auth: fix typo Change-Id: Ic113d59144aa2d37c8988559fbc086f5c29c0b69 GitHub-Last-Rev: e2623be0a00464d9be845da53fb1a67520fc1716 GitHub-Pull-Request: golang/go#76397 Reviewed-on: https://go-review.googlesource.com/c/go/+/722861 Reviewed-by: Michael Matloob <matloob@google.com> Reviewed-by: Cherry Mui <che...
[ { "path": "src/cmd/go/internal/auth/userauth.go", "patch": "@@ -48,7 +48,7 @@ func runAuthCommand(command string, url string, res *http.Response) (map[string]\n // parseUserAuth parses the output from a GOAUTH command and\n // returns a mapping of prefix → http.Header without the leading \"https://\"\n // o...
2025-11-21T15:59:20
electron/electron
08318dc05de25cbac5997b6c900ad7a390bd7c59
3e78bbde6af9776d6945945435c0acc1f0b81f28
fix: corner smoothing with 0 radii (#46751)
[ { "path": "patches/chromium/feat_corner_smoothing_css_rule_and_blink_painting.patch", "patch": "@@ -373,7 +373,7 @@ index 88e78f1d8050c73ae6a8929f23e636ef7a383404..17b63c5ecdcd8feb17b76a13392595c7\n \n // A Corner is a axis-aligned quad, with the points ordered (start, outer,\n diff --git a/third_party/...
2025-04-25T08:54:04
vercel/next.js
e05510ab3bf91c02c7381e2c471363561ffa1198
6cc7273f342c6ea1408a84e78a476a6ed1b194e3
Fix `--debug-build-paths` bracket escaping for glob patterns (#88660) Always escape Next.js dynamic route brackets (e.g., `[slug]`) in `--debug-build-paths` patterns instead of checking filesystem existence. The previous approach failed when glob wildcards like `**` preceded bracket expressions (e.g., `app/**/[slug...
[ { "path": "packages/next/src/lib/resolve-build-paths.ts", "patch": "@@ -13,31 +13,16 @@ interface ResolvedBuildPaths {\n }\n \n /**\n- * Escapes bracket expressions that correspond to existing directories.\n- * This allows Next.js dynamic routes like [slug] to work with glob patterns.\n+ * Escapes Next.js d...
2026-01-17T18:40:16
nodejs/node
7c9fbc15bc13aeec1682e191673843e4c41951b1
897358962024b6cfe820c865696d303b2888df58
assert,util: fail promise comparison in deep equal checks It is impossible to look into the content of a promise and its state. This aligns the comparison with WeakMaps and WeakSets. Only reference equal promises will pass the check in the future. Fixes https://github.com/nodejs/node/issues/55198 PR-URL: https://git...
[ { "path": "doc/api/assert.md", "patch": "@@ -278,6 +278,10 @@ An alias of [`assert.ok()`][].\n <!-- YAML\n added: v0.1.21\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/59448\n+ description: Promises are not considered equal anymore if they are not of\n+ ...
2025-08-19T10:22:35
facebook/react
e5f0315efa60a76332b32f21e495e36b26bdd36e
f739642745577a8e4dcb9753836ac3589b9c590a
[mcp] Fix package.json (#33101) Since we use esbuild we need to correctly move dependencies that are required at runtime into `dependencies` and other packages that are only used in development in to `devDependencies`. This ensures the correct packages are included in the build. --- [//]: # (BEGIN SAPLING FOOTER) Stac...
[ { "path": "compiler/packages/react-mcp-server/package.json", "patch": "@@ -15,25 +15,22 @@\n \"dependencies\": {\n \"@babel/core\": \"^7.26.0\",\n \"@babel/parser\": \"^7.26\",\n- \"@babel/plugin-syntax-typescript\": \"^7.25.9\",\n+ \"@babel/preset-env\": \"^7.26.9\",\n+ \"@babel/preset-r...
2025-05-02T17:56:01
golang/go
7fbd141de506e331ef3f5910b505ece91a012e4a
0bc192368ac603614dc3f240e751f539d91a1db2
runtime: use m.profStack in traceStack Turns out we spend a few percent of the trace event writing path in just zero-initializing the stack space for pcBuf. We don't need zero initialization, since we're going to write over whatever we actually use. Use m.profStack instead, which is already sized correctly. A side-ef...
[ { "path": "src/runtime/tracestack.go", "patch": "@@ -30,7 +30,7 @@ const (\n //\n // Avoid calling this function directly. Prefer traceEventWriter.stack.\n func traceStack(skip int, gp *g, tab *traceStackTable) uint64 {\n-\tvar pcBuf [tracev2.MaxFramesPerStack]uintptr\n+\tpcBuf := getg().m.profStack\n \n \t...
2025-11-19T23:42:06
vercel/next.js
6cc7273f342c6ea1408a84e78a476a6ed1b194e3
2bf8a244817a9782ca2eae3011880e6656a31df4
fix: setImmediate[util.promisify.custom] access fails in edge runtime (#88685) Follow up to #88346. Looks like the change there crashes in edge because `globalThis.setImmediate` isn't defined, so we check before accessing.
[ { "path": "packages/next/src/server/node-environment-extensions/fast-set-immediate.external.ts", "patch": "@@ -23,8 +23,12 @@ const originalSetImmediate = globalThis.setImmediate\n const originalClearImmediate = globalThis.clearImmediate\n const originalNextTick = process.nextTick\n const originalSetImmedia...
2026-01-17T17:12:39
facebook/react
0ed6ceb9f6c19f28c504cf46193cef40166a61f6
ee7fee8f8875052afde53c5bfc8aedad43ff9d8e
[Fizz] Add "Queued" Status to SSR:ed Suspense Boundaries (#33087) Stacked on #33076. This fixes a bug where we used the "complete" status but the DOMContentLoaded event. This checks for not "loading" instead. We also add a new status where the boundary has been marked as complete by the server but has not yet flushe...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -238,14 +238,15 @@ const ACTIVITY_END_DATA = '/&';\n const SUSPENSE_START_DATA = '$';\n const SUSPENSE_END_DATA = '/$';\n const SUSPENSE_PENDING_START_DATA = '$?';\n+const SUSPENSE_QUEUED_START_DATA = '$~';\n const SUSPE...
2025-05-01T20:11:54
nodejs/node
897358962024b6cfe820c865696d303b2888df58
ee9c8cf0cbb77341c56b12efdc871401bd3212d2
util: fix error's namespaced node_modules highlighting using inspect When inspecting errors, node_modules are highlighted with an underscore. So far namespaced modules only highlighted the namespace but not the rest of the module name. This is fixed by matching the full name. As drive-by it improves the performance sl...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -250,7 +250,6 @@ const keyStrRegExp = /^[a-zA-Z_][a-zA-Z_0-9]*$/;\n const numberRegExp = /^(0|[1-9][0-9]*)$/;\n \n const coreModuleRegExp = /^ {4}at (?:[^/\\\\(]+ \\(|)node:(.+):\\d+:\\d+\\)?$/;\n-const nodeModulesRegExp = /[/\\\\]node_modules[/\\\\](.+...
2025-08-19T10:22:25
electron/electron
3e78bbde6af9776d6945945435c0acc1f0b81f28
37f8db15e9356a6573584abcb605128d33a6da2c
fix: crash when renderer process crashes while webview is reloading (#46735) WebView uses WebContentsViewChildFrame, which doesn't have a Focus impl and triggers a fatal NOTREACHED.
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -4004,6 +4004,14 @@ void WebContents::ExitPictureInPicture() {\n PictureInPictureWindowManager::GetInstance()->ExitPictureInPicture();\n }\n \n+bool WebContents::ShouldFocusPageAfterCrash(content::WebContents* source) {\n+ // WebVie...
2025-04-25T08:10:27
nodejs/node
3f51cb622922e71feafacadad9ea93389c3cfd23
64355ae97e9df16d6f6e70be922752b7e274498a
util: add some additional error classes to `wellKnownPrototypes` PR-URL: https://github.com/nodejs/node/pull/59456 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1,6 +1,8 @@\n 'use strict';\n \n const {\n+ AggregateError,\n+ AggregateErrorPrototype,\n Array,\n ArrayBuffer,\n ArrayBufferPrototype,\n@@ -74,6 +76,8 @@ const {\n ObjectSetPrototypeOf,\n Promise,\n PromisePrototype,\n+ RangeError,\n+ ...
2025-08-19T09:00:24
facebook/react
ee7fee8f8875052afde53c5bfc8aedad43ff9d8e
ee077b6ccddd916440bb7570ba6f53673d920700
[Fizz] Batch Suspense Boundary Reveal with Throttle (#33076) Stacked on #33073. React semantics is that Suspense boundaries reveal with a throttle (300ms). That helps avoid flashing reveals when a stream reveals many individual steps back to back. It can also improve overall performance by batching the layout and pai...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -81,6 +81,7 @@ import {\n completeBoundaryWithStyles as styleInsertionFunction,\n completeSegment as completeSegmentFunction,\n formReplaying as formReplayingRuntime,\n+ markShellTime,\n } from './fizz-instruction-...
2025-05-01T20:09:37
vercel/next.js
0929612595c7bef312d692c7691641e597d0cd42
05406f6e73ad9b39bd63d706dea864c009ea76db
[turbopack] Add bundling support for worker_threads (#87746) Add support for bundling worker_threads workers Previously we only supported tracing dependencies of worker threads. However, this could trigger issues if the callsite was getting bundled since we would believe that the file was both bundled and unbundled....
[ { "path": ".rustfmt.toml", "patch": "@@ -1,3 +1,4 @@\n+edition = \"2024\"\n max_width = 100\n \n comment_width = 100", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crates/next-api/src/middleware.rs", "patch": "@@ -14,10 +14,7 @@ use turbo_tasks::{Completion, Re...
2026-01-16T23:24:11
rust-lang/rust
11810b8dd9d5ea1dad36eb5f6c77fa5d95871a81
3645249d79dfb136b5d8de3ce153d19d6698d92d
fix inference variables leaking into HIR const lowering logic
[ { "path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs", "patch": "@@ -2874,6 +2874,12 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {\n span: Span,\n ) -> Const<'tcx> {\n let tcx = self.tcx();\n+\n+ if ty.has_infer() {\n+ let e = self.dcx().span_err(span, \"infe...
2026-03-08T05:49:21
electron/electron
08b7a1f801c15dbeb0acdf67a326d17ee1b6144d
e9f279afd12d81d86ad0fa2e9abf080147d6ff1a
chore: bump chromium to 137.0.7141.0 (main) (#46725) * chore: bump chromium in DEPS to 137.0.7139.0 * chore: bump chromium in DEPS to 137.0.7141.0 * chore: update patches Refs https://chromium-review.googlesource.com/c/chromium/src/+/6474596 Refs https://chromium-review.googlesource.com/c/chromium/src/+/6443472 Ref...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '137.0.7128.1',\n+ '137.0.7141.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2025-04-24T08:18:38
nodejs/node
dfee0b1a9e32f4f4f0bf8d5d809954efe0ac3da8
9c508b820fc1e61399cccad4a12be8db3dfa8655
test: make test-debug-process locale-independent The test `test/parallel/test-debug-process.js` fails on non-English Windows systems due to a locale-dependent error message string. The test asserts that a call to `process._debugProcess()` on a terminated process throws an error with the message `'The system cannot fi...
[ { "path": "test/parallel/test-debug-process.js", "patch": "@@ -16,6 +16,6 @@ cp.on('exit', common.mustCall(function() {\n try {\n process._debugProcess(cp.pid);\n } catch (error) {\n- assert.strictEqual(error.message, 'The system cannot find the file specified.');\n+ assert.strictEqual(error.e...
2025-08-19T01:08:01
facebook/react
ee077b6ccddd916440bb7570ba6f53673d920700
bb57fa7351776a86448c1a094bea8108fd6b34ff
[Fizz] Don't handle errors in completeBoundary instruction (#33073) Stacked on #33066 and #33068. Currently we're passing `errorDigest` to `completeBoundary` if there is a client side error (only CSS loading atm). This only exists because of `completeBoundaryWithStyles`. Normally if there's a server-side error we'd e...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -4482,14 +4482,14 @@ export function writeCompletedSegmentInstruction(\n }\n }\n \n+const completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(\n+ completeBoundaryFunction,\n+);\n const completeBoundaryScript1...
2025-05-01T19:44:17
vercel/next.js
5a12867c8eb86a050163a5b526d4469fae276f73
d3b3e3a3cb93579287dc712058f27d6d874b6285
fix: capture promisified setImmediate separately (#88346) ### What? Capture `setImmediate[promisify.custom]` at module initialization instead of lazily accessing it when needed. ``` RangeError: Maximum call stack size exceeded at patchedSetImmediatePromise (node_modules/.pnpm/next@16.1.1_@babel+core@7.28....
[ { "path": "packages/next/src/server/node-environment-extensions/fast-set-immediate.external.ts", "patch": "@@ -22,6 +22,9 @@ let currentExecution: Execution | null = null\n const originalSetImmediate = globalThis.setImmediate\n const originalClearImmediate = globalThis.clearImmediate\n const originalNextTic...
2026-01-16T21:24:15
rust-lang/rust
d81da4d691cf9f794a7cb6d29415f1e058357f9d
ccd16408934e3d590192a1e310f75647ca8437ed
Fix missing kernel-address from error message list
[ { "path": "compiler/rustc_attr_parsing/src/attributes/codegen_attrs.rs", "patch": "@@ -671,6 +671,7 @@ impl<S: Stage> SingleAttributeParser<S> for SanitizeParser {\n item.path().span(),\n &[\n sym::address,\n+ ...
2026-03-16T15:06:56
electron/electron
c7b0bdab7e699aeeb58137a06e16d0432834e21a
686ae476963ed138135bc5f2934addcd1cc1e4ac
fix: explicitly call GetNativeNSView() on macOS (#46733) * fix: explicitly call GetNativeNSView() on macOS * chore: move macOS impl to a .mm file This is needed in order to access gfx::NativeView::GetNativeNSView()
[ { "path": "filenames.gni", "patch": "@@ -125,6 +125,7 @@ filenames = {\n \"shell/browser/animation_util.h\",\n \"shell/browser/animation_util_mac.mm\",\n \"shell/browser/api/electron_api_app_mac.mm\",\n+ \"shell/browser/api/electron_api_base_window_mac.mm\",\n \"shell/browser/api/electron...
2025-04-23T22:55:18
facebook/react
e9db3cc2d4175849578418a37f33a6fde5b3c6d8
d8074cbc798a500a5e76d19fe0c17edec22b2593
[compiler] PruneNonEscapingScopes understands terminal operands We weren't treating terminal operands as eligible for memoization in PruneNonEscapingScopes, which meant that they could end up un-memoized. Terminal operands can also be compound ReactiveValues like SequenceExpressions, so part of the fix is to make sure...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PrintReactiveFunction.ts", "patch": "@@ -255,6 +255,12 @@ function writeReactiveValue(writer: Writer, value: ReactiveValue): void {\n }\n }\n \n+export function printReactiveTerminal(terminal: ReactiveTerminal): string {\n+ const...
2025-05-01T03:41:26
nodejs/node
9c508b820fc1e61399cccad4a12be8db3dfa8655
1874cd16b0c73f3146189c1ff3127605247f1427
doc: fix the version tls.DEFAULT_CIPHERS was added 42be7f6a0335c396810be91c3f3724007029f83d (originally included in 19.8.0 and later backported to 18.16.0) added documentation on how to use `tls.DEFAULT_CIPHERS`. However, that commit added the documentation with the version specified as `REAPLCEME`, causing the publis...
[ { "path": "doc/api/tls.md", "patch": "@@ -2427,9 +2427,7 @@ added: v11.4.0\n ## `tls.DEFAULT_CIPHERS`\n \n <!-- YAML\n-added:\n- - v19.8.0\n- - v18.16.0\n+added: v0.11.3\n -->\n \n * Type: {string} The default value of the `ciphers` option of", "additions": 1, "deletions": 3, "language": "Markdo...
2025-08-18T16:56:40
vercel/next.js
d3b3e3a3cb93579287dc712058f27d6d874b6285
7e9d7cbd60325bf916af6e0d47c81d2071867386
Turbopack: use bugs.nextjs.org for Turbopack panic error reports (#88356) Update the bug report link to use the new bugs.nextjs.org service instead of the direct GitHub discussions URL. Also shares more code when handling terminals that don't support links. Test Plan: Added a deliberate panic to a turbotask, verified...
[ { "path": "crates/napi/src/next_api/turbopack_ctx.rs", "patch": "@@ -359,27 +359,22 @@ pub fn log_internal_error_and_inform(internal_error: &anyhow::Error) {\n env!(\"VERGEN_GIT_DESCRIBE\"),\n env!(\"NEXTJS_VERSION\")\n );\n- let new_discussion_url = if supports_hyperlinks::supports_h...
2026-01-16T21:05:44
facebook/react
d8074cbc798a500a5e76d19fe0c17edec22b2593
71797c871b6bfa45988cba38f3388bac095b26cf
[mcp] Make tool more reliable and fix integration issues with babel (#33074) ## Summary Fix babel presets, and add a bit more context to the tool so that it is more reliable ## How did you test this change? Manually tested the mcp integrated with claude desktop
[ { "path": "compiler/packages/react-mcp-server/src/index.ts", "patch": "@@ -356,7 +356,14 @@ Server Components - Shift data-heavy logic to the server whenever possible. Brea\n \n server.tool(\n 'review-react-runtime',\n- 'Review the runtime of the code and get performance data to evaluate the proposed sol...
2025-04-30T22:42:00
nodejs/node
3810024f003f3a3756cbf82393f24f54f447be59
d55643d6fc38cf8ceb3cb7be8478f4b8bc43b9ad
test: mark test-wasi-pthread as flaky It has been flaking the CI for two months with no one working on a fix. Mark it as flaky. PR-URL: https://github.com/nodejs/node/pull/59488 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "test/wasi/wasi.status", "patch": "@@ -14,3 +14,7 @@ test-wasi-getrusage: SKIP\n [$system==win32 || $system==android]\n # Unsupported on Windows and Android\n test-wasi-readdir: SKIP\n+\n+[$system==linux]\n+# https://github.com/nodejs/node/issues/59146\n+test-wasi-pthread: PASS, FLAKY", "addit...
2025-08-15T21:21:56
vercel/next.js
5ad737c9c589f1c092fdbac6d679fc25acf8fd9f
52b2a9c60b83b0bd0902ae3467c82ff0a8510b00
fix: make RedirectType constant properties literal types (#88653) ### What? Fixed TypeScript error where `RedirectType.replace` and `RedirectType.push` were typed as `string` instead of literal types, causing compilation errors when used with `redirect()`. ### Why? `RedirectType` constant properties weren't properl...
[ { "path": "packages/next/src/client/components/navigation.react-server.ts", "patch": "@@ -16,4 +16,4 @@ export { ReadonlyURLSearchParams }\n export const RedirectType = {\n push: 'push',\n replace: 'replace',\n-}\n+} as const", "additions": 1, "deletions": 1, "language": "Unknown" }, { ...
2026-01-16T19:53:41
facebook/react
71797c871b6bfa45988cba38f3388bac095b26cf
9d795d3808f3202b36740a7a8eb60567bd7f6d90
[Fizz] Ignore error if content node is gone (#33068) We normally expect the segment to exist whatever the client does while streaming. However, when hydration errors at the root of the shell for a whole document render, then we clear nodes from body which can include our segments. We don't need them anymore because we...
[ { "path": "packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetInlineCodeStrings.js", "patch": "@@ -4,7 +4,7 @@\n export const clientRenderBoundary =\n '$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data=\"$!\",a=a.dataset,c&&(a.dgst=c...
2025-04-30T21:51:39
electron/electron
dd03cceda0384f62540b0cea650e73b091eab34b
d0e13cc2625012ecbb2dac242c861dee5346d9fc
chore: bump chromium to 137.0.7128.1 (main) (#46482) * chore: bump chromium in DEPS to 137.0.7107.0 * chore: bump chromium in DEPS to 137.0.7109.0 * chore: bump chromium in DEPS to 137.0.7111.0 * chore: bump chromium in DEPS to 137.0.7113.0 * 6384240: Remove double-declaration for accessibility on macOS | https://...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '136.0.7095.0',\n+ '137.0.7128.1',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2025-04-22T19:53:29
vercel/next.js
8cfdcacf376cb8088247ba870004dbd2787078cd
3aad67b75c95ef20686d455396348ea4516fb2d4
Log browser error and warnings in terminal (#88352)
[ { "path": "packages/next/src/next-devtools/userspace/app/errors/intercept-console-error.ts", "patch": "@@ -14,8 +14,11 @@ export function patchConsoleError() {\n }\n window.console.error = function error(...args: any[]) {\n let maybeError: unknown\n+ let isReplayedLog = false\n if (process.en...
2026-01-16T14:10:24
nodejs/node
7c9c981d271be6f9d195178613afc93d260c8956
d36941d65d08a6aa67f93fde41c98981cc653a8b
src: fix order of CHECK_NOT_NULL/dereference `ASYNC_THROW_IF_INSUFFICIENT_PERMISSIONS` may dereference `req_wrap_async`, so `CHECK_NOT_NULL(req_wrap_async)` should be used before and not after. PR-URL: https://github.com/nodejs/node/pull/59487 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <...
[ { "path": "src/node_file.cc", "patch": "@@ -1559,12 +1559,12 @@ static void Unlink(const FunctionCallbackInfo<Value>& args) {\n \n if (argc > 1) { // unlink(path, req)\n FSReqBase* req_wrap_async = GetReqWrap(args, 1);\n+ CHECK_NOT_NULL(req_wrap_async);\n ASYNC_THROW_IF_INSUFFICIENT_PERMISSION...
2025-08-18T12:17:47
facebook/react
9d795d3808f3202b36740a7a8eb60567bd7f6d90
12f4cb85c5847758ece81fc95b7eaedc1fb9ebd0
[compiler][bugfix] expand StoreContext to const / let / function variants (#32747) ```js function Component() { useEffect(() => { let hasCleanedUp = false; document.addEventListener(..., () => hasCleanedUp ? foo() : bar()); // effect return values shouldn't be typed as frozen return () => { has...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -3609,31 +3609,40 @@ function lowerAssignment(\n \n let temporary;\n if (builder.isContextIdentifier(lvalue)) {\n- if (kind !== InstructionKind.Reassign && !isHoistedIdentifier) {\n- if (k...
2025-04-30T21:18:58
electron/electron
d0e13cc2625012ecbb2dac242c861dee5346d9fc
858a93f886f8a09f9d7347e95bf73c4e5441890e
fix: file dialog filters not working correctly (#46660)
[ { "path": "shell/browser/ui/file_dialog_linux.cc", "patch": "@@ -44,14 +44,14 @@ ui::SelectFileDialog::FileTypeInfo GetFilterInfo(const Filters& filters) {\n ui::SelectFileDialog::FileTypeInfo file_type_info;\n \n for (const auto& [name, extension_group] : filters) {\n- file_type_info.extension_descr...
2025-04-22T11:31:04
vercel/next.js
166e0ef37566825a75a03ec4ae4668b13a384253
52b2b8be6a74b4f65fe595de1d6e3311efd3c446
Fix incorrect 'Ready in' time for next start (#88589) ## What Fix the incorrect "Ready in" time displayed when running `next start`. The bug caused the time to show impossibly large values like "Ready in 29474457.7min" instead of the actual startup duration. ## Why The `NEXT_PRIVATE_START_TIME` environment variable...
[ { "path": "packages/next/src/cli/next-start.ts", "patch": "@@ -1,5 +1,12 @@\n #!/usr/bin/env node\n \n+// Ensure NEXT_PRIVATE_START_TIME is set for accurate \"Ready in\" timing.\n+// This should already be set by bin/next.ts, but we set it here as a fallback\n+// in case the module is loaded through a diffe...
2026-01-16T08:28:05
nodejs/node
786431f6ca565bc3a3fcd487187c736e0febd6ac
663554abdfabef2bda83bb3369c95494fbd21b52
tools: update coverage GitHub Actions to fixed version Refs: https://github.com/codecov/codecov-action/pull/1859 Refs: https://github.com/codecov/codecov-action/issues/1858 PR-URL: https://github.com/nodejs/node/pull/59512 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com...
[ { "path": ".github/workflows/coverage-linux-without-intl.yml", "patch": "@@ -84,6 +84,6 @@ jobs:\n - name: Clean tmp\n run: rm -rf coverage/tmp && rm -rf out\n - name: Upload\n- uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3\n+ uses: codecov...
2025-08-18T08:30:57
rust-lang/rust
e4625087f8e6c1897934c0223884450c4ca5e675
b8db00809160de70bb49a6f163b85ec873cf25ec
update error kind mapping URLs
[ { "path": "src/tools/miri/src/shims/io_error.rs", "patch": "@@ -56,7 +56,7 @@ impl From<Scalar> for IoError {\n }\n \n // This mapping should match `decode_error_kind` in\n-// <https://github.com/rust-lang/rust/blob/HEAD/library/std/src/sys/pal/unix/mod.rs>.\n+// <https://github.com/rust-lang/rust/blob/HEAD...
2026-03-17T12:19:22
golang/go
02d1f3a06bc6900ad5c1b7c11b1fd38cbddef395
a593ca9d657efb1ea021c9fc51cb528c398bbf4e
runtime: respect GOTRACEBACK for user-triggered runtime panics The documentation for GOTRACEBACK says that "single" is the default where the stack trace for only a single routine is printed except that it prints all stack traces if: there is no current goroutine or the failure is internal to the run-time. In the r...
[ { "path": "src/runtime/runtime1.go", "patch": "@@ -39,7 +39,7 @@ func gotraceback() (level int32, all, crash bool) {\n \tgp := getg()\n \tt := atomic.Load(&traceback_cache)\n \tcrash = t&tracebackCrash != 0\n-\tall = gp.m.throwing >= throwTypeUser || t&tracebackAll != 0\n+\tall = gp.m.throwing > throwTypeUs...
2025-02-13T23:59:32
vercel/next.js
fcfcbce3b1783cb9d5f2405e7c5d5877d799720b
e5905bded7910afe5785ca8e1e6d05ed99bf1610
Turbopack: avoid removing cells for erroring tasks (#88305) ### What? * avoid flagging tasks dirty when removing cells * For errored tasks: avoid removing cell content * For ok tasks: remove cell content later to collect more stale signals
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -427,7 +427,6 @@ impl<B: BackingStorage> Drop for OperationGuard<'_, B> {\n /// Intermediate result of step 1 of task execution completion.\n struct TaskExecutionCompletePrepareResult {\n pub new_children: FxHashSet<TaskId...
2026-01-16T05:43:34
facebook/react
12f4cb85c5847758ece81fc95b7eaedc1fb9ebd0
90a124a9802a5ab6509d5838e65b9f4d4fbbc16b
[compiler][bugfix] Returned functions are not always frozen (#33047) Fixes an edge case in React Compiler's effects inference model. Returned values should only be typed as 'frozen' if they are (1) local and (2) not a function expression which may capture and mutate this function's outer context. See test fixtures fo...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts", "patch": "@@ -111,7 +111,10 @@ export default function inferReferenceEffects(\n * Initial state contains function params\n * TODO: include module declarations here as well\n */\n- const initialState =...
2025-04-30T19:50:54
electron/electron
e383eaa465d5f7d3b89db69c0ce23128342536b0
274b1485540919c4f476819fca94656f8138185b
fix: stop menu minimization if set false (#46279)
[ { "path": "lib/browser/api/menu-item-roles.ts", "patch": "@@ -78,7 +78,9 @@ export const roleList: Record<RoleId, Role> = {\n minimize: {\n label: 'Minimize',\n accelerator: 'CommandOrControl+M',\n- windowMethod: w => w.minimize()\n+ windowMethod: w => {\n+ if (w.minimizable) w.minimize...
2025-04-22T08:58:30
rust-lang/rust
b5e53dc790bc594b69020af262bb796fd56702cd
b711f95f86b6489b91fdc55c876ed5f95a8d4560
Cleanup from_cycle_error::variances_of. variances_of currently used search_for_cycle_permutation, which can fail and abort when constructed error result value does not match query input. This commit changes variances_of to receive a def_id which means it can compute a value without using search_for_cycle_permutation, ...
[ { "path": "compiler/rustc_query_impl/src/from_cycle_error.rs", "patch": "@@ -8,12 +8,12 @@ use rustc_errors::codes::*;\n use rustc_errors::{Applicability, Diag, MultiSpan, pluralize, struct_span_code_err};\n use rustc_hir as hir;\n use rustc_hir::def::{DefKind, Res};\n+use rustc_middle::bug;\n use rustc_mid...
2026-03-16T09:29:12
nodejs/node
663554abdfabef2bda83bb3369c95494fbd21b52
f5e6ba3d7cd1694f124aae5a4d8ae8fa84ccbdc2
lib: expose global ErrorEvent PR-URL: https://github.com/nodejs/node/pull/58920 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Filip Sk...
[ { "path": "doc/api/globals.md", "patch": "@@ -454,6 +454,14 @@ changes:\n \n A browser-compatible implementation of [`DecompressionStream`][].\n \n+## `ErrorEvent`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+A browser-compatible implementation of {ErrorEvent}.\n+\n ## Class: `Event`\n \n <!-- YAML", "a...
2025-08-18T08:14:54
golang/go
a593ca9d657efb1ea021c9fc51cb528c398bbf4e
89552911b383b78cd8807ec747ca5df8ba52e239
runtime/cgo: add support for `any` param and return type When using `any` as param or return type of an exported function, we currently have the error `unrecognized Go type any`. `any` is an alias of `interface{}` which is already supported. This would avoid such change: https://github.com/php/frankenphp/pull/1976 F...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -1121,6 +1121,9 @@ func (p *Package) hasPointer(f *File, t ast.Expr, top bool) bool {\n \t\tif t.Name == \"error\" {\n \t\t\treturn true\n \t\t}\n+\t\tif t.Name == \"any\" {\n+\t\t\treturn true\n+\t\t}\n \t\tif goTypes[t.Name] != nil {\n \t\t\treturn false\n \t\t...
2025-11-24T08:14:18
vercel/next.js
bd90b6c581532788f8f1492d03a2587f8e17fa88
54476c9c645a482e6363406cd9c8849bec0805a2
[CC] Fix dev validation error from server action bound args (#88600) In Cache Components, bound args encryption needs to be cached (and tracked with cacheSignal) because it's tasky. We use the serialized bound args themselves as a cache key. However, in dev, the key ends up containing debug info (in particular, timing...
[ { "path": "packages/next/src/server/app-render/encryption.ts", "patch": "@@ -153,11 +153,35 @@ export const encryptActionBoundArgs = React.cache(\n })\n }\n \n+ const prerenderResumeDataCache = workUnitStore\n+ ? getPrerenderResumeDataCache(workUnitStore)\n+ : null\n+ const renderR...
2026-01-15T20:17:52
rust-lang/rust
d9bd396c29b25b4af2f2e40a1d35732eff55cb49
0b5b096ce8c235fb028666378e9ea8411261c552
Workaround for incorrect target cpu rename in Cranelift
[ { "path": "src/lib.rs", "patch": "@@ -345,7 +345,8 @@ fn build_isa(sess: &Session, jit: bool) -> Arc<dyn TargetIsa + 'static> {\n if target_triple.architecture == target_lexicon::Architecture::X86_64 {\n // Only set the target cpu on x86_64 as Cranelift is missing\n ...
2026-03-17T10:26:29
facebook/react
62960c67c84da7e85d7515ef8447cea0ba0824a6
cd4e4d759975916a503d14abe46052f9f5826048
Run Component Track Logs in the console.createTask() of the Fiber (#32809) Stacked on #32736. That way you can find the owner stack of each component that rerendered for context. In addition to the JSX callsite tasks that we already track, I also added tracking of the first `setState` call before rendering. We then...
[ { "path": "packages/react-client/src/ReactFlightPerformanceTrack.js", "patch": "@@ -78,14 +78,30 @@ export function logComponentRender(\n : 'error';\n const entryName =\n isPrimaryEnv || env === undefined ? name : name + ' [' + env + ']';\n- console.timeStamp(\n- entryName,\n- ...
2025-04-30T02:17:17
electron/electron
ac2c0c76feb931284dae6a7cb5a79fffa1518d91
3ad87787f88992d40abb3fd0f2fe4908683e34c1
fix: osr stutter fix backport for electron. (#46650) * fix: osr stutter fix backport for electron. * nit: chromium upstream patch link
[ { "path": "patches/chromium/.patches", "patch": "@@ -146,3 +146,4 @@ fix_enable_wrap_iter_in_string_view_and_array.patch\n fix_linter_error.patch\n revert_enable_crel_for_arm32_targets.patch\n mac_fix_check_on_ime_reconversion_due_to_invalid_replacement_range.patch\n+fix_osr_stutter_fix_backport_for_electro...
2025-04-22T08:18:21
nodejs/node
b1b0713b2fab536cbfe43dc538ada7a484f69512
eda6d337d317767984e34360500e2f12433d107a
test: deflake connection refused proxy tests Previously the tests tries to use UDP ports to fabricate ECONNREFUSED which is incorrect - UDP ports use different namespaces, so the port can have valid TCP listeners. This patch updates the test to fabricate the ECONNREFUSED error by using the port of a recently closed H...
[ { "path": "test/client-proxy/test-http-proxy-request-connection-refused.mjs", "patch": "@@ -2,11 +2,10 @@\n // handle it correctly.\n \n import * as common from '../common/index.mjs';\n-import assert from 'node:assert';\n import http from 'node:http';\n+import assert from 'node:assert';\n import { once } fr...
2025-08-14T22:24:14
vercel/next.js
8e5146f7c5387ae49f249e0375415f068ed600a2
5ec2d23633e320c9bce704442129cfe188ca44ee
Fix optional `parent_task_id` compile failure w/`tokio_tracing` enabled (#88598)
[ { "path": "turbopack/crates/turbo-tasks/src/manager.rs", "patch": "@@ -846,8 +846,8 @@ impl<B: Backend + 'static> TurboTasks<B> {\n \n #[cfg(feature = \"tokio_tracing\")]\n let description = format!(\n- \"[local] (parent: {}) {}\",\n- self.backend.get_task_description(p...
2026-01-15T18:04:39
facebook/react
cd4e4d759975916a503d14abe46052f9f5826048
18212ca960ee2f0acf538c2198f7ba36c3042ecd
Use console.timeStamp instead of performance.measure in Component Performance Track (#32736) This is a new extension that Chrome added to the existing `console.timeStamp` similar to the extensions added to `performance.measure`. This one should be significantly faster because it doesn't have the extra object indirecti...
[ { "path": "packages/react-client/src/ReactFlightPerformanceTrack.js", "patch": "@@ -7,52 +7,35 @@\n * @flow\n */\n \n+/* eslint-disable react-internal/no-production-logging */\n+\n import type {ReactComponentInfo} from 'shared/ReactTypes';\n \n import {enableProfilerTimer} from 'shared/ReactFeatureFlags';...
2025-04-30T01:40:10
electron/electron
ec8f7f185ed5328d2fd9c936175da181c5036040
f15fa56e38e0189ae1bcc558c2048ce154c2266f
fix: crash on reconversion with google IME and editcontext on macOS (#46688)
[ { "path": "patches/chromium/.patches", "patch": "@@ -145,3 +145,4 @@ fix_win32_synchronous_spellcheck.patch\n fix_enable_wrap_iter_in_string_view_and_array.patch\n fix_linter_error.patch\n revert_enable_crel_for_arm32_targets.patch\n+mac_fix_check_on_ime_reconversion_due_to_invalid_replacement_range.patch",...
2025-04-21T00:49:14
nodejs/node
eda6d337d317767984e34360500e2f12433d107a
2565e1c44e07c60fa46f04599ecfd1ca5b8d29fa
deps: V8: cherry-pick 7b91e3e2cbaf Original commit message: s390: use %r15 instead of %sp Some compilers do not recognize %sp and output: ``` error: invalid register ``` Change-Id: I2e1b64dd0e799a03afccbd12f5b2db17b3130e07 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6...
[ { "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.19',\n+ 'v8_embedder_string': '-node.20',\n \n ##### V8 defaults for Node.js #####\n...
2025-05-29T17:57:10
vercel/next.js
9dbe6ba69866d73f228cb3b779a71208b11a300a
f5c8b6aeb8065e3dd1238744dae4dd3ed6251c12
fix(turbopack): Collect `declare global {}` in `VarDeclWithTsDeclareCollector` (#88568) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Niklas Mischkulnig <4586894+mischnic@users.noreply.github.com>
[ { "path": "turbopack/crates/turbopack-ecmascript/src/parse.rs", "patch": "@@ -13,7 +13,10 @@ use swc_core::{\n source_map::{Files, SourceMapGenConfig, build_source_map},\n },\n ecma::{\n- ast::{EsVersion, Id, Ident, IdentName, ObjectPatProp, Pat, Program, VarDecl},\n+ ast::{\n+...
2026-01-15T15:32:01
electron/electron
f15fa56e38e0189ae1bcc558c2048ce154c2266f
297c4297b1e513241f9c1900d8767bb2cf91fd95
refactor: reduce & remove no-op MicrotasksScope calls (#46681) * fix: do not run microtasks in V8Serializer in browser process * Remove no-op MicrotasksScope in `shell/browser/api/electron_api_auto_updater.cc` This call was added in https://github.com/electron/electron/pull/40576 as an expansion of `gin_helper::Emit...
[ { "path": "shell/browser/api/electron_api_auto_updater.cc", "patch": "@@ -46,10 +46,6 @@ void AutoUpdater::OnError(const std::string& message) {\n gin::StringToV8(isolate, message),\n };\n \n- gin_helper::MicrotasksScope microtasks_scope{\n- wrapper->GetCreationContextChecked(), true,\...
2025-04-19T17:18:03
facebook/react
18212ca960ee2f0acf538c2198f7ba36c3042ecd
88b976740467f9dfabae03c79a8eff9033c35050
[Fizz] Outline if a boundary would add too many bytes to the next completion (#33029) Follow up to #33027. This enhances the heuristic so that we accumulate the size of the currently written boundaries. Starting from the size of the root (minus preamble) for the shell. This ensures that if you have many small bounda...
[ { "path": "fixtures/ssr/server/render.js", "patch": "@@ -19,7 +19,7 @@ class ThrottledWritable extends Writable {\n constructor(destination) {\n super();\n this.destination = destination;\n- this.delay = 150;\n+ this.delay = 10;\n }\n \n _write(chunk, encoding, callback) {\n@@ -49,10 +49...
2025-04-29T23:13:28
nodejs/node
2565e1c44e07c60fa46f04599ecfd1ca5b8d29fa
3fc70198e0ab7c34eee8887a7cc0d429a9fdebc7
deps: V8: cherry-pick 59d52e311bb1 Original commit message: [liftoff] Fix parameter passing during CallC Values smaller than 8 bytes need to be sign/zero extended to 8 bytes then pushed on to the stack. Change-Id: I5c9a2179ef2b65cf08b7e773180d78b252c2253f Reviewed-on: https://chromium-review.goo...
[ { "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.18',\n+ 'v8_embedder_string': '-node.19',\n \n ##### V8 defaults for Node.js #####\n...
2025-05-28T22:26:26
golang/go
f045ed4110aa430da0ba118d2be46f0d602d6633
220d73cc44a0c580dc8ee10df6395c8e517e118f
[dev.simd] go/doc/comment: don't include experimental packages in std list go/doc/comment/std.go has a list of top-level package prefixes in the standard library. This list can vary depending on goexperiment, but the file is static. E.g. GOEXPERIMENT=arenas go test -run=TestStd go/doc/comment would fail. Don't incl...
[ { "path": "src/go/doc/comment/mkstd.sh", "patch": "@@ -19,6 +19,6 @@ echo \"// Copyright 2022 The Go Authors. All rights reserved.\n package comment\n \n var stdPkgs = []string{\"\n-go list std | grep -v / | sort | sed 's/.*/\"&\",/'\n+GOEXPERIMENT=none go list std | grep -v / | sort | sed 's/.*/\"&\",/'\n ...
2025-11-24T17:03:59
vercel/next.js
f5c8b6aeb8065e3dd1238744dae4dd3ed6251c12
8d7682f1964f5108d4c48424cfbefe3cc9de39ba
[ci] Don't retry/notify for failed deploy tests with custom tarball URLs (#88576) Fixes a regression from #85981 where manual deploy tests with custom tarball URLs incorrectly trigger retries and Slack notifications. Now only release-triggered runs and manually-triggered canary tests are retried/reported.
[ { "path": ".github/workflows/retry_deploy_test.yml", "patch": "@@ -18,7 +18,10 @@ jobs:\n # Retry the test-e2e-deploy-release workflow once\n if: >-\n ${{\n- startsWith(github.event.workflow_run.display_title, 'test-e2e-deploy') &&\n+ (\n+ github.event.workflow_run.event...
2026-01-15T10:43:30
nodejs/node
ceaead7c5950122f5c2f4d33a590ab61855a9fb6
66e25cf1b3cf89f60e603d4ee66939ada8e0852d
crypto: fix EVPKeyCtxPointer::publicCheck() Commit 206ebeb44764d58c6a505657edab3a7a78a0b977 added an additional call to EVP_PKEY_public_check and an unconditional return from publicCheck(). This prevents the control flow from reaching the original call to either EVP_PKEY_public_check or EVP_PKEY_public_check_quick. T...
[ { "path": "deps/ncrypto/ncrypto.cc", "patch": "@@ -3643,7 +3643,6 @@ EVPKeyPointer EVPKeyCtxPointer::paramgen() const {\n bool EVPKeyCtxPointer::publicCheck() const {\n if (!ctx_) return false;\n #ifndef OPENSSL_IS_BORINGSSL\n- return EVP_PKEY_public_check(ctx_.get()) == 1;\n #if OPENSSL_VERSION_MAJOR >=...
2025-08-16T14:47:58
facebook/react
88b976740467f9dfabae03c79a8eff9033c35050
0038c501a307e5ddc0cb80027e55740ddda09520
Hack to recover from reading the wrong Fiber (#33055) `requestFormReset` incorrectly tries to get the current dispatch queue from the Fiber. However, the Fiber might be the workInProgress which is an inconsistent state. This hack just tries the other Fiber if it detects one of the known inconsistent states but there ...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -3355,8 +3355,16 @@ export function requestFormReset(formFiber: Fiber) {\n );\n }\n \n- const stateHook = ensureFormComponentIsStateful(formFiber);\n+ let stateHook: Hook = ensureFormComponentIsStateful(formFiber);\n const ...
2025-04-29T17:36:19
electron/electron
3a982ecad5af4ff4c8badd71a94e85ac407eb082
926a6ee8bdd44b769f09c7b910938d41fbfec6b2
fix: do not run microtasks in V8Serializer in browser process (#46668)
[ { "path": "shell/common/v8_util.cc", "patch": "@@ -36,7 +36,7 @@ class V8Serializer : public v8::ValueSerializer::Delegate {\n \n bool Serialize(v8::Local<v8::Value> value, blink::CloneableMessage* out) {\n gin_helper::MicrotasksScope microtasks_scope{\n- isolate_->GetCurrentContext(), false,\n...
2025-04-19T02:43:02
vercel/next.js
8d7682f1964f5108d4c48424cfbefe3cc9de39ba
02f8ba610c52d68144320c5e3b00048b62fc768e
docs: fix Pages Router fonts documentation showing App Router examples (#88326) ## Summary Fixes #88291 The Pages Router fonts documentation was incorrectly showing App Router examples (`app/layout.tsx`) which don't exist in Pages Router. This confused users trying to use fonts with the Pages Router. ## Changes Up...
[ { "path": "docs/01-app/01-getting-started/13-fonts.mdx", "patch": "@@ -12,6 +12,8 @@ The [`next/font`](/docs/app/api-reference/components/font) module automatically\n \n It includes **built-in self-hosting** for any font file. This means you can optimally load web fonts with no layout shift.\n \n+<AppOnly>\...
2026-01-15T09:53:02
facebook/react
c498bfce8b9baa3dd21bd0d5124eb3a4549886f1
8e9a5fc6c1a6252ca1727ab8fe0d4ee13f2568ec
[devtools] Allow inspecting cause, name, message, stack of Errors in props (#33023)
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -906,8 +906,8 @@ describe('InspectedElement', () => {\n },\n \"usedRejectedPromise\": {\n \"reason\": Dehydrated {\n- \"preview_short\": Error,\n- \"preview_long\":...
2025-04-26T05:20:57
nodejs/node
360f7cc7867b43344aac00564286b895e15f21d7
1be57c2037057ee7baa5ac66fabfc7921b4174de
module: correctly detect top-level await in ambiguous contexts Fixes: https://github.com/nodejs/node/issues/58331 PR-URL: https://github.com/nodejs/node/pull/58646 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "src/node_contextify.cc", "patch": "@@ -1646,6 +1646,12 @@ static const auto throws_only_in_cjs_error_messages =\n \"await is only valid in async functions and \"\n \"the top level bodies of modules\"};\n \n+static const auto maybe_top_level_await_errors =\n+ std::array<std::str...
2025-08-15T22:10:17
electron/electron
437542767a4eabc34fe92cfacd88ad5c8da1b5e2
a29e1170b98028a8db5d23e48bf867eae69610e7
fix: `backgroundMaterial` on initial activate (#46657) * fix: backgroundMaterial on initial activate Closes https://github.com/electron/electron/issues/38466 * Update patches/chromium/fix_activate_background_material_on_windows.patch Co-authored-by: Charles Kerr <charles@charleskerr.com> --------- Co-authored-by:...
[ { "path": "patches/chromium/fix_activate_background_material_on_windows.patch", "patch": "@@ -14,7 +14,7 @@ This patch likely can't be upstreamed as-is, as Chromium doesn't have\n this use case in mind currently.\n \n diff --git a/ui/views/win/hwnd_message_handler.cc b/ui/views/win/hwnd_message_handler.cc\n...
2025-04-17T18:34:45
vercel/next.js
9725c47a49ee90f1994842b444c7675d454e205b
b8161d9e4cb5072f86098218455a197544cbe585
[turbopack] Move some of the logic for issue filtering into the rust layer (#88511) # Optimize issue filtering in Next.js and Turbopack ## What? This PR introduces an `IssueFilter` system to control which issues are reported based on severity and location ## Why? To improve performance, we shouldn't spend time forma...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -50,7 +50,7 @@ use turbopack_core::{\n PROJECT_FILESYSTEM_NAME, SOURCE_URL_PROTOCOL,\n diagnostics::PlainDiagnostic,\n error::PrettyPrintError,\n- issue::PlainIssue,\n+ issue::{IssueFilter, PlainIssue},\n output::{OutputAsse...
2026-01-14T18:00:25
nodejs/node
dccc0f29715bf61d969d9dcf72f95941fba2660e
31b6255ae93be723f80d6579dd03100703ed185a
test: refactor error checks to use assert.ifError/mustSucceed Replace manual `if (err) assert.fail(err)` and `assert.ok(!err)` with `assert.ifError()` or `common.mustSucceed()` in a few tests to clarify intent and follow project conventions. - test/parallel/test-child-process-send-returns-boolean.js - test/parallel/t...
[ { "path": "test/parallel/test-child-process-send-returns-boolean.js", "patch": "@@ -33,19 +33,19 @@ const subScript = fixtures.path('child-process-persistent.js');\n \n // Sending a handle and not giving the tickQueue time to acknowledge should\n // create the internal backlog, but leave it empty.\n...
2025-08-15T05:40:01
facebook/react
8e9a5fc6c1a6252ca1727ab8fe0d4ee13f2568ec
89e8875ec48c86b366bf62398112923cdf76016a
[Fizz] Enable the progressiveChunkSize option (#33027) Since the very beginning we have had the `progressiveChunkSize` option but we never actually took advantage of it because we didn't count the bytes that we emitted. This starts counting the bytes by taking a pass over the added chunks each time a segment completes...
[ { "path": "fixtures/ssr/src/components/Chrome.js", "patch": "@@ -4,6 +4,8 @@ import Theme, {ThemeToggleButton} from './Theme';\n \n import './Chrome.css';\n \n+import LargeContent from './LargeContent';\n+\n export default class Chrome extends Component {\n state = {theme: 'light'};\n render() {\n@@ -25...
2025-04-25T20:10:53
electron/electron
352a403efdf5bf32ffcb6ef6162535faa351e287
e8117f8e40e488578f8ba5c57ff8e429fc9c3d6c
fix: `postMessage` crash with invalid transferrable (#46639)
[ { "path": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -330,6 +330,9 @@ void UtilityProcessWrapper::PostMessage(gin::Arguments* args) {\n return;\n \n blink::TransferableMessage transferable_message;\n+ gin_helper::ErrorThrower thrower(args->isolate());\n+\n+ // |message| is any...
2025-04-17T13:09:48
vercel/next.js
b8161d9e4cb5072f86098218455a197544cbe585
c15f024992bf6a8d6c29a47f49134913b5862338
[cna] Avoid error with out-of-box Netlify config (#88546)
[ { "path": "packages/create-next-app/templates/index.ts", "patch": "@@ -321,9 +321,9 @@ export const installTemplate = async ({\n \n if (packageManager === \"pnpm\") {\n const pnpmWorkspaceYaml = [\n- // required for v9, v10 doesn't need it anymore\n- \"packages:\",\n- \" - .\",\n+ ...
2026-01-14T17:59:03
facebook/react
89e8875ec48c86b366bf62398112923cdf76016a
2d0a5e399f195bfc98fc5e1efa37aab9fa53e097
[compiler] Fallback for inferred effect dependencies (#32984) When effect dependencies cannot be inferred due to memoization-related bailouts or unexpected mutable ranges (which currently often have to do with writes to refs), fall back to traversing the effect lambda itself. This fallback uses the same logic as Prop...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/CollectHoistablePropertyLoads.ts", "patch": "@@ -19,6 +19,7 @@ import {\n BasicBlock,\n BlockId,\n DependencyPathEntry,\n+ FunctionExpression,\n GeneratedSource,\n getHookKind,\n HIRFunction,\n@@ -30,6 +31,7 @@ import {\n Proper...
2025-04-25T19:44:39
nodejs/node
9ec68afdc505215cd7b39c6fab35f11e3efa4fc7
afc5893309ebdd5f5aead8b29406bc033c8d4e65
worker: fix worker name with \0 PR-URL: https://github.com/nodejs/node/pull/59214 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/api/environment.cc", "patch": "@@ -532,8 +532,19 @@ NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(\n \n NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(\n Environment* env, ThreadId thread_id, const char* url, const char* name) {\n...
2025-08-13T13:53:24
rust-lang/rust
abb5228ec14d9e4571d8c1529e611e0e5c87aea4
1e2183119f0ee19cc26df899e26b04ad0de3475d
Merge `fabsfN` into `fabs::<F>` Add `bounds::FloatPrimitive` Exhaustive float pattern match Fix GCC use span bugs
[ { "path": "compiler/rustc_codegen_cranelift/src/intrinsics/mod.rs", "patch": "@@ -346,10 +346,6 @@ fn codegen_float_intrinsic_call<'tcx>(\n sym::log10f32 => (\"log10f\", 1, fx.tcx.types.f32, types::F32),\n sym::log10f64 => (\"log10\", 1, fx.tcx.types.f64, types::F64),\n sym::log10f12...
2026-03-15T22:41:07
electron/electron
e8117f8e40e488578f8ba5c57ff8e429fc9c3d6c
32fea719b393c2757c4737386564c910d49b529e
build: update build tools (#46656) * build: update build tools * chore: fix core.fscache * chore: fix core.preloadindex --------- Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -10,8 +10,10 @@ runs:\n git config --global core.filemode false\n git config --global core.autocrlf false\n git config --global branch.autosetuprebase always\n+ git config --global core.fscache true\n+ ...
2025-04-17T08:32:17
golang/go
0c69e7734308f36de7acbeda4cabced8018c04e3
da92168ec8cedf08603fd77929a4b9d7e3183275
Revert "[dev.simd] internal/runtime/gc: add simd package based greentea kernels" This reverts CL 719520. Reason for revert: Naming is confusing. Also, this has a semantic merge conflict with CL 722040. Let's revert, fix the naming and conflict, and do it again. Change-Id: I0dc0c7c58470d63d48a4f69adb38c18f95db0beb Re...
[ { "path": "src/cmd/compile/internal/ssa/stmtlines_test.go", "patch": "@@ -140,7 +140,7 @@ func TestStmtLines(t *testing.T) {\n \tvar m float64\n \tswitch runtime.GOARCH {\n \tcase \"amd64\":\n-\t\tm = 0.0112 // > 98.88% obtained on amd64, no backsliding\n+\t\tm = 0.0111 // > 98.89% obtained on amd64, no bac...
2025-11-22T02:17:10
vercel/next.js
dd625fbf6841c3e473bc94ca44faf539d3432dc9
a93c03b1426fed2fca8d87e88e031857221ed1f2
Remove `lerna bootstrap` from the `clean` script in package.json (#88527) In #87188 we upgraded lerna to v9 which no longer supports/requires the `lerna bootstrap` command. This commit removes it from the `clean` script in the root package.json to avoid errors when running `pnpm clean`. [More info](https://lerna.js.o...
[ { "path": "package.json", "patch": "@@ -8,7 +8,7 @@\n \"scripts\": {\n \"new-error\": \"turbo gen error\",\n \"new-test\": \"turbo gen test\",\n- \"clean\": \"lerna clean -y && lerna bootstrap && lerna run clean && lerna exec 'node ../../scripts/rm.mjs dist'\",\n+ \"clean\": \"lerna clean -y...
2026-01-14T10:20:38
facebook/react
2d0a5e399f195bfc98fc5e1efa37aab9fa53e097
0c28a09eefaa0e70a313644fd8e455c8ab7ba3eb
[compiler] Patch for reactive refs in inferred effect dependencies (#32991) Inferred effect dependencies and inlined jsx (both experimental features) rely on `InferReactivePlaces` to determine their dependencies. Since adding type inference for phi nodes (https://github.com/facebook/react/pull/30796), we have been i...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts", "patch": "@@ -1738,6 +1738,40 @@ export function isStableType(id: Identifier): boolean {\n );\n }\n \n+export function isStableTypeContainer(id: Identifier): boolean {\n+ const type_ = id.type;\n+ if (type_.kind !== 'Object') {\n+...
2025-04-25T19:42:40
nodejs/node
6e045112969b1f3e1313b235d80582f1f7662693
becb55aac3f7eb93b03223744c35c6194f11e3e9
tools: fix return value of try_check_compiler PR-URL: https://github.com/nodejs/node/pull/59434 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "configure.py", "patch": "@@ -1113,7 +1113,7 @@ def try_check_compiler(cc, lang):\n proc = subprocess.Popen(shlex.split(cc) + ['-E', '-P', '-x', lang, '-'],\n stdin=subprocess.PIPE, stdout=subprocess.PIPE)\n except OSError:\n- return (False, False, '', '')\n+ ...
2025-08-13T10:39:53
electron/electron
14df4aab83bb016e5195d8d2076e9a7ef09b7ccf
24e46849c7d6ef30f99d32b532da67fa34440165
fix: window border on Gnome Wayland (#46624)
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -195,7 +195,7 @@ void ElectronDesktopWindowTreeHostLinux::UpdateFrameHints() {\n if (ui::OzonePlatform::GetInstance()->IsWindowCompositingSupported()) {\n // Set the opaque region.\n std::vector<gfx::Rect> ...
2025-04-15T13:45:33