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
golang/go
a070533633bd709bc3598dbd7c28edca1d2ba6e2
4cdca1342b1d3d9591d72a7e7cf67068aa54c524
reflect: turn off allocation test if instrumentation is on Help fix the asan builders. Change-Id: I980f5171519643c3543bdefc6ea46fd0fca17c28 Reviewed-on: https://go-review.googlesource.com/c/go/+/674616 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Keith R...
[ { "path": "src/reflect/all_test.go", "patch": "@@ -13,6 +13,8 @@ import (\n \t\"internal/asan\"\n \t\"internal/goarch\"\n \t\"internal/goexperiment\"\n+\t\"internal/msan\"\n+\t\"internal/race\"\n \t\"internal/testenv\"\n \t\"io\"\n \t\"math\"\n@@ -8766,6 +8768,9 @@ func TestTypeAssertPanic(t *testing.T) {\n...
2025-05-20T22:59:02
vercel/next.js
9d3069adc7bf452eaaf13075c3a7f321b1c36d4e
92042340b3b2618692c06c084405761950e190e3
docs: Improve Content Security Policy documentation (#80580) # Improve Content Security Policy Documentation This PR comprehensively improves the Next.js Content Security Policy (CSP) documentation to address community feedback from Reddit and GitHub discussions about gaps in the current documentation. ## Changes Ma...
[ { "path": "docs/01-app/02-guides/content-security-policy.mdx", "patch": "@@ -27,7 +27,9 @@ A [nonce](https://developer.mozilla.org/docs/Web/HTML/Global_attributes/nonce) i\n \n ### Why use a nonce?\n \n-Even though CSPs are designed to block malicious scripts, there are legitimate scenarios where inline scr...
2025-08-04T16:47:26
facebook/react
6786563f3cbbc9b16d5a8187207b5bd904386e53
5910eb34567a8699d1faa73b546baafd94f26411
[Fiber] Don't Rethrow Errors at the Root (#28627) Stacked on top of #28498 for test fixes. ### Don't Rethrow When we started React it was 1:1 setState calls a series of renders and if they error, it errors where the setState was called. Simple. However, then batching came and the error actually got thrown some...
[ { "path": "packages/internal-test-utils/ReactInternalTestUtils.js", "patch": "@@ -13,6 +13,8 @@ import simulateBrowserEventDispatch from './simulateBrowserEventDispatch';\n \n export {act} from './internalAct';\n \n+import {thrownErrors, actingUpdatesScopeDepth} from './internalAct';\n+\n function assertYie...
2024-03-27T03:44:07
nodejs/node
24302c9fe94e1dd755ac8a8cc1f6aa4444f75cb3
26eb062a9b9c0ae8cee9cb5c378e43bca363207c
doc: fix typo in CppgcMixin docs PR-URL: https://github.com/nodejs/node/pull/54762 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/README.md", "patch": "@@ -1013,7 +1013,7 @@ A `cppgc`-managed native wrapper should look something like this:\n // CPPGC_MIXIN is a helper macro for inheriting from cppgc::GarbageCollected,\n // cppgc::NameProvider and public CppgcMixin. Per cppgc rules, it must be\n // placed at the left-mos...
2024-09-05T17:45:26
rust-lang/rust
43eb3b9684cbb01c1a99ad23d4045e7e8eaaa6f4
0f4f81df13a18212e1b3b578ccfc8d055ad120be
fix: `RustcCallbacks::config()` in `clippy-driver` The `RustcCallbacks::config()` function used by `clippy-driver` was not setting `config.extra_symbols`, so when interned symbols were computed, such as `sym::CLIPPY_ARGS`, it was using some random string in the binary. The fix is to set ```rust config.extra_symbols ...
[ { "path": "src/driver.rs", "patch": "@@ -126,6 +126,7 @@ impl rustc_driver::Callbacks for RustcCallbacks {\n config.psess_created = Some(Box::new(move |psess| {\n track_clippy_args(psess, clippy_args_var.as_deref());\n }));\n+ config.extra_symbols = sym::EXTRA_SYMBOLS.into...
2026-02-13T18:49:57
electron/electron
0a064cece99b266262a6fd69ca62933c9e56313a
f6e8544ef638f1e517a4a2b287950cb27edeac0f
fix: devtools allow restoring saved dock state on Windows (#39734) * fix: devtools allow restoring saved dock state on Windows * chore: address feedback
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2667,14 +2667,6 @@ void WebContents::OpenDevTools(gin::Arguments* args) {\n state = \"detach\";\n }\n \n-#if BUILDFLAG(IS_WIN)\n- auto* win = static_cast<NativeWindowViews*>(owner_window());\n- // Force a detached state when W...
2023-09-07T08:14:01
golang/go
4cdca1342b1d3d9591d72a7e7cf67068aa54c524
fccac5fe98d10479cab5031d1dd913b2f96387f2
runtime: disable stack allocation test when instrumentation is on Should fix some asan build failures. Change-Id: Ic0a816b56a1a278aa0ad541aea962f9fea7b10fc Reviewed-on: https://go-review.googlesource.com/c/go/+/674696 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-...
[ { "path": "src/runtime/runtime_test.go", "patch": "@@ -7,7 +7,10 @@ package runtime_test\n import (\n \t\"flag\"\n \t\"fmt\"\n+\t\"internal/asan\"\n \t\"internal/cpu\"\n+\t\"internal/msan\"\n+\t\"internal/race\"\n \t\"internal/runtime/atomic\"\n \t\"internal/testenv\"\n \t\"io\"\n@@ -329,6 +332,9 @@ func Te...
2025-05-20T22:56:29
facebook/react
5910eb34567a8699d1faa73b546baafd94f26411
2ec2aaea98588178525f83495669e11e96815a00
Add Flag to Favor Hydration Performance over User Safety (#28655) If false, this ignores text comparison checks during hydration at the risk of privacy safety. Since React 18 we recreate the DOM starting from the nearest Suspense boundary if any of the text content mismatches. This ensures that if we have nodes ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -4423,6 +4423,7 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ // @gate favorSafetyOverHydrationPerf\n it('#24384: Suspending should halt hydration warnings but still emit hydration warnings after unsu...
2024-03-27T02:52:46
vercel/next.js
6e20a10d76878c3b2937329cd51d77c7dc85f8e6
1388270e77409c2d58e43ceb1364ce907be92b4c
docs: add React Developer Tools section for debugging (#82320) ## What? Added a new "React Developer Tools" section to the debugging documentation.  ## Why?  This PR resolves #82308 which highlighted that React DevTools - a fundamental debugging tool for React applications - was missing from Next.js debugging docu...
[ { "path": "docs/01-app/02-guides/debugging.mdx", "patch": "@@ -101,6 +101,14 @@ In either browser, any time your client-side code reaches a [`debugger`](https:/\n \n Note that when searching, your source files will have paths starting with `webpack://_N_E/./`.\n \n+### React Developer Tools\n+\n+For React-s...
2025-08-04T14:19:17
nodejs/node
65b4fb840ed7ae80fdca5d2c92dd647590d99686
a48852be17422c1e10766fb12cecbb13c66a7fe7
crypto: return a clearer error when loading an unsupported pkcs12 PR-URL: https://github.com/nodejs/node/pull/54485 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -1148,6 +1148,16 @@ void SecureContext::LoadPKCS12(const FunctionCallbackInfo<Value>& args) {\n if (!ret) {\n // TODO(@jasnell): Should this use ThrowCryptoError?\n unsigned long err = ERR_get_error(); // NOLINT(runtime/int)\n+\n+#if OPENSSL_...
2024-09-05T14:15:01
electron/electron
65901f4c6a7c5201d039bde9d516cc18300eef62
feb804cea817eca9a2b30bdc657905caa9c01367
fix: restore flag that allowed websockets to not be backgrounded (#39738)
[ { "path": "patches/chromium/.patches", "patch": "@@ -131,3 +131,4 @@ chore_add_buildflag_guard_around_new_include.patch\n fix_use_delegated_generic_capturer_when_available.patch\n build_remove_ent_content_analysis_assert.patch\n fix_move_autopipsettingshelper_behind_branding_buildflag.patch\n+revert_remove_...
2023-09-06T18:23:17
golang/go
68bc0d84e9dd74a02472bfff744e0650b4b1653c
49a660e22cb349cf13ef0a2f6214c6fdd75afda0
encoding/json: avoid supurious synctest deadlock detection Use a sync.OnceValue rather than a sync.WaitGroup to coordinate access to encoderCache entries. The OnceValue better expresses the intent of the code (we want to initialize the cache entry only once). However, the motivation for this change is to avoid testi...
[ { "path": "src/encoding/json/encode.go", "patch": "@@ -359,25 +359,22 @@ func typeEncoder(t reflect.Type) encoderFunc {\n \t}\n \n \t// To deal with recursive types, populate the map with an\n-\t// indirect func before we build it. This type waits on the\n-\t// real func (f) to be ready and then calls it. T...
2025-05-15T18:03:15
facebook/react
2ec2aaea98588178525f83495669e11e96815a00
f7aa5e0aa3e2aa51279af4b6cb5413912cacd7f5
Add Diffs to Hydration Warnings (#28512) Stacked on #28502. This builds on the mechanism in #28502 by adding a diff of everything we've collected so far to the thrown error or logged error. This isn't actually a longest common subsequence diff. This means that there are certain cases that can appear confusing ...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -251,7 +251,7 @@ function warnForExtraAttributes(\n ) {\n if (__DEV__) {\n attributeNames.forEach(function (attributeName) {\n- serverDifferences[attributeName] =\n+ serverDifferences[getPropNameFromAttribu...
2024-03-27T00:02:18
vercel/next.js
1388270e77409c2d58e43ceb1364ce907be92b4c
5bb867a9f19aa18329b60232bd1ae2f41d3742f6
chore: fix eslint-typechecked-require with template (#82328) <!-- 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 Con...
[ { "path": "packages/eslint-plugin-internal/src/eslint-typechecked-require.js", "patch": "@@ -34,12 +34,25 @@ module.exports = {\n node.callee.type !== 'Identifier' ||\n node.callee.name !== 'require' ||\n node.arguments.length !== 1 ||\n- node.arguments[0].type !== 'Literal'\n...
2025-08-04T14:02:20
electron/electron
34b79c15c2f2de2fa514538b7ccb4b3c473808ae
d9ba26273ad3e7a34c905eccbd5dabda4eb7b402
build: fix `depot_tools` patch application (#39742) build: fix depot_tools patch application
[ { "path": ".circleci/config/base.yml", "patch": "@@ -249,19 +249,19 @@ step-depot-tools-get: &step-depot-tools-get\n cd depot_tools\n cat > gclient.diff \\<< 'EOF'\n diff --git a/gclient.py b/gclient.py\n- index 3a9c5c6..f222043 100755\n+ index c305c248..e6e0fbdc 100755\n ...
2023-09-06T11:49:00
nodejs/node
a48852be17422c1e10766fb12cecbb13c66a7fe7
0debdac9da67d744f4706a1c8ccb537b44ce3647
fs: respect dereference when copy symlink directory Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54732 Fixes: https://github.com/nodejs/node/issues/54730 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -3155,7 +3155,9 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n \n bool dest_exists = !error_code && dest_status.type() !=\n std::filesystem::file_type::not_found;\n- bool src_is_dir = src_stat...
2024-09-05T13:54:49
vercel/next.js
5bb867a9f19aa18329b60232bd1ae2f41d3742f6
b3229324d488e66ea5d8171ce09c2f69f8b45091
fix: next/root-params erroring when rerendering after action (#82326) When implementing the check that disallows using `next/root-params` in server actions, i forgot that when a page is rerendered after an action, the render is still wrapped with an `actionAsyncStorage` with `actionStore.isAction === true`. The fix is...
[ { "path": "packages/next/errors.json", "patch": "@@ -771,5 +771,6 @@\n \"770\": \"createParamsFromClient should not be called in a runtime prerender.\",\n \"771\": \"\\\\`%s\\\\` was called during a runtime prerender. Next.js should be preventing %s from being included in server components statically, b...
2025-08-04T12:21:20
golang/go
609197b406ce8d9efd39bd3984b2cade74df35a6
546761aff45111490b21a045e3d989104182bcd9
cmd/doc: use golang.org/x/pkgsite/cmd/internal/doc to start server This change switches the pkgsite command invoked to start a pkgsite server from golang.org/x/pkgsite/cmd/pkgsite to golang.org/x/pkgsite/cmd/internal/doc. The doc command is a simplified version of cmd/pkgsite that changes some options to improve the u...
[ { "path": "src/cmd/doc/main.go", "patch": "@@ -44,7 +44,6 @@ package main\n \n import (\n \t\"bytes\"\n-\t\"context\"\n \t\"errors\"\n \t\"flag\"\n \t\"fmt\"\n@@ -53,17 +52,13 @@ import (\n \t\"io\"\n \t\"log\"\n \t\"net\"\n-\t\"net/http\"\n \t\"os\"\n \t\"os/exec\"\n \t\"os/signal\"\n \t\"path\"\n \t\"path...
2025-05-19T19:31:37
rust-lang/rust
a9cc42e5763b55e95aed9adf48435a03ac4abf1f
ca35562cd3a7023d4059737bffd58a64fc1a5186
Revert "fix: Stale diagnostics with rust-project.json and rustc JSON" This reverts commit 2cefe47e6d55c186b68687bf677bf0d5eb65a922.
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs", "patch": "@@ -741,63 +741,42 @@ impl FlycheckActor {\n flycheck_id = self.id,\n message = diagnostic.message,\n package_id = package_id.as_ref().map(|...
2026-02-13T18:19:07
facebook/react
f7aa5e0aa3e2aa51279af4b6cb5413912cacd7f5
4b8dfd6215bf855402ae1a94cb0ae4f467afca9a
Move Hydration Mismatch Errors to Throw or Log Once (Kind of) (#28502) Stacked on #28476. We used to `console.error` for every mismatch we found, up until the error we threw for the hydration mismatch. This changes it so that we build up a set of diffs up until we either throw or complete hydrating the root/su...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzForm-test.js", "patch": "@@ -182,7 +182,8 @@ describe('ReactDOMFizzForm', () => {\n ReactDOMClient.hydrateRoot(container, <App isClient={true} />);\n });\n }).toErrorDev(\n- 'Prop `action` did not match. Server: \"function\" Clie...
2024-03-27T00:01:41
electron/electron
4cc0f6fb781a3efe6b018aa4ef410e4196c03ecf
f27b0340454ada29977a7d08f2dbc8321923e1b1
test: fix flaky content tracing test (#39682)
[ { "path": "spec/api-content-tracing-spec.ts", "patch": "@@ -5,8 +5,8 @@ import * as path from 'node:path';\n import { setTimeout } from 'node:timers/promises';\n import { ifdescribe } from './lib/spec-helpers';\n \n-// FIXME: The tests are skipped on arm/arm64 and ia32.\n-ifdescribe(!(['arm', 'arm64', 'ia32...
2023-09-04T12:08:26
nodejs/node
dc74f17f6c37b1bb2d675216066238f33790ed29
2bd6a57b7b934afcaf437a90e2abebcb79c13acf
buffer: re-enable Fast API for Buffer.write Re-enables fast Fast API for Buffer.write after fixing UTF8 handling. Fixes: https://github.com/nodejs/node/issues/54521 PR-URL: https://github.com/nodejs/node/pull/54526 Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Re...
[ { "path": "src/node_buffer.cc", "patch": "@@ -22,6 +22,7 @@\n #include \"node_buffer.h\"\n #include \"node.h\"\n #include \"node_blob.h\"\n+#include \"node_debug.h\"\n #include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"node_i18n.h\"\n@@ -1442,6 +1443,79 @@ void CopyArrayBuffer(...
2024-09-04T22:34:29
golang/go
1972493904b41a34e35a1f62b18f5d91d84a26bd
113b25774ed8d1d915ae4e1adf9222865ccb0695
cmd/doc: show page for the requested object This fixes a bug where we start pkgsite for every requested object, rather than the one that we would have printed the documentation for. To make things simple, we'll run the logic that prints the documentation, but with an io.Discard writer. Then we can tell if the document...
[ { "path": "src/cmd/doc/main.go", "patch": "@@ -126,6 +126,11 @@ func do(writer io.Writer, flagSet *flag.FlagSet, args []string) (err error) {\n \t\t\treturn err\n \t\t}\n \t}\n+\tif serveHTTP {\n+\t\t// We want to run the logic below to determine a match for a symbol, method,\n+\t\t// or field, but not actu...
2025-05-19T19:31:37
rust-lang/rust
c43a33eec7b29a637ff8a41804d30e679092bad9
47611e16044c68ef27bac31c35fda2ba1dc20b73
Feed `ErrorGuaranteed` from late lifetime resolution to RBV If late lifetime resolution fails for whatever reason, forward to RBV the guarantee that an error was emitted - thereby eliminating the need for a "hack" to suppress subsequent/superfluous error diagnostics.
[ { "path": "compiler/rustc_ast_lowering/src/lib.rs", "patch": "@@ -878,7 +878,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {\n \n (hir::ParamName::Fresh, hir::LifetimeParamKind::Elided(kind))\n }\n- LifetimeRes::Static { .. } | LifetimeRes::Error => return None,\n+ ...
2026-02-03T23:34:42
facebook/react
4b8dfd6215bf855402ae1a94cb0ae4f467afca9a
bb66aa3cef4e42aee790200d03cf7a82659da121
Move Hydration Warnings from the DOM Config into the Fiber reconciliation (#28476) Stacked on #28458. This doesn't actually really change the messages yet, it's just a refactor. Hydration warnings can be presented either as HTML or React JSX format. If presented as HTML it makes more sense to make that a DOM s...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -80,7 +80,6 @@ import {\n \n let didWarnControlledToUncontrolled = false;\n let didWarnUncontrolledToControlled = false;\n-let didWarnInvalidHydration = false;\n let didWarnFormActionType = false;\n let didWarnFormActionNa...
2024-03-26T23:04:18
vercel/next.js
da7cbb13be80d0eed985cf4a4df417cfd4cf7e47
825753a284bb49f3143c4fe6d04e37ca5f856b42
[turbopack] Use Arrays instead of objects to bootstrap chunks (#81877) ### Improve performance of chunk bootstrapping leveraging arrays and maps Currently we bootstrap the set of the modules in a chunk by passing an object to the runtime, this is suboptimal for a few reasons: * The runtime just wants to iterate the ...
[ { "path": "test/development/app-dir/ssr-in-rsc/ssr-in-rsc.test.ts", "patch": "@@ -369,16 +369,16 @@ describe('react-dom/server in React Server environment', () => {\n `)\n } else {\n expect(redbox).toMatchInlineSnapshot(`\n- {\n- \"description\": \"react-dom/server ...
2025-08-02T18:47:23
nodejs/node
03fe00e3da29cfe7340fd70423cb271bc5bf296f
b7b96282b212a2274b9db605ac29d388246754de
benchmark: adds groups to better separate benchmarks Fixes: https://github.com/nodejs/node/issues/26425 Co-Authored-By: Yaman Kassir <mestery@protonmail.com> PR-URL: https://github.com/nodejs/node/pull/54393 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
[ { "path": "benchmark/common.js", "patch": "@@ -22,27 +22,36 @@ class Benchmark {\n this.name = require.main.filename.slice(__dirname.length + 1);\n \n // Execution arguments i.e. flags used to run the jobs\n- this.flags = process.env.NODE_BENCHMARK_FLAGS ?\n- process.env.NODE_BENCHMARK_FLAGS...
2024-09-04T03:26:53
golang/go
113b25774ed8d1d915ae4e1adf9222865ccb0695
fa42585dadb8d70191820549435820cb70691cf6
cmd/compile: memcombine different size stores This CL implements the TODO in combineStores to allow combining stores of different sizes, as long as the total size aligns to 2, 4, 8. Fixes #72832. Change-Id: I6d1d471335da90d851ad8f3b5a0cf10bdcfa17c4 Reviewed-on: https://go-review.googlesource.com/c/go/+/661855 Review...
[ { "path": "src/cmd/compile/internal/ssa/memcombine.go", "patch": "@@ -374,22 +374,19 @@ func memcombineStores(f *Func) {\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\tfor n := f.Config.RegSize / size; n > 1; n /= 2 {\n-\t\t\t\tif combineStores(v, n) {\n-\t\t\t\t\tcontinue\n-\t\t\t\t}\n-\t\t\t}\n+\t\t\tcombineStor...
2025-03-31T17:50:10
rust-lang/rust
ee8ca0a89ff8bff74c98ac0920cbfcb366354286
c61c2603cf153196aed4f741a9d86a753794839c
Port `#[panic_handler]` to the new attribute parsers
[ { "path": "compiler/rustc_attr_parsing/src/attributes/rustc_internal.rs", "patch": "@@ -668,6 +668,15 @@ impl<S: Stage> NoArgsAttributeParser<S> for RustcHasIncoherentInherentImplsParse\n const CREATE: fn(Span) -> AttributeKind = |_| AttributeKind::RustcHasIncoherentInherentImpls;\n }\n \n+pub(crate) st...
2026-02-13T12:43:02
facebook/react
dbfbfb3312db019183ef92fd2ef110cc7d807e80
f24cf4a1af4e677dd85fce66001eee42b75b1cf7
Update error messages (#28652) ## Overview The error messages that say: > ReactDOM.hydrate is no longer supported in React 18 Don't make sense in the React 19 release. Instead, they should say: > ReactDOM.hydrate was removed in React 19. For legacy mode, they should say: > ReactDOM.hydrate has not be...
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -2159,7 +2159,7 @@ describe('InspectedElement', () => {\n const container = document.createElement('div');\n container.innerHTML = '<div></div>';\n withErrorsOrWarningsIgnored(\n- ['React...
2024-03-26T21:25:53
nodejs/node
01c88f913601bc43c149d76a70e95df77d23dc1b
9e5d2b74fb22fa23b57653c08c2bd58c2971f852
meta: fix links in `SECURITY.md` PR-URL: https://github.com/nodejs/node/pull/54696 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "SECURITY.md", "patch": "@@ -222,6 +222,6 @@ Security notifications will be distributed via the following methods.\n \n ## Comments on this policy\n \n-If you have suggestions on how this process could be improved please submit a\n-[pull request](https://github.com/nodejs/nodejs.org) or\n-[file an...
2024-09-03T16:38:27
golang/go
2541a68a7010afcd2970ddc3979432e1a8f08406
d596bc0e819aec2cf65a61d8b92f6bec8e0a7124
reflect: add TypeAssert[T] This implementation is zero-alloc when T is a concrete type, allocates when val contains a method or when T is a interface and Value was obtained for example through Elem(), in which case it has to be allocated to avoid sharing the same memory. goos: linux goarch: amd64 pkg: reflect cpu: AM...
[ { "path": "api/next/62121.txt", "patch": "@@ -0,0 +1 @@\n+pkg reflect, func TypeAssert[$0 interface{}](Value) ($0, bool) #62121", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/reflect/62121.md", "patch": "@@ -0,0 +1,3 @@\n+The new [...
2025-05-20T15:39:22
vercel/next.js
825753a284bb49f3143c4fe6d04e37ca5f856b42
b98796b1741630dd194e13e775e74e031b725ad2
Turbopack: name the module factory function (#73553) ### What? In development give the module factory a useful name, so it's clear in stack traces that this is the module evaluation part of the execution. This also fixes some bugs with the stack trace parser, which seems to struggle if function names contain bra...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/code-frame/code-frame.tsx", "patch": "@@ -139,7 +139,6 @@ export const CODE_FRAME_STYLES = `\n }\n \n .code-frame-link [data-text] {\n- display: inline-flex;\n text-align: left;\n margin: auto 6px;\n }", "additions": 0, ...
2025-08-02T17:15:24
facebook/react
91f7bc8be7837ded7664220a30e447a8aae5b87b
fbd68eef7f8fad5dd1fdceb0fb79162c3d972e59
Ensure valid mutable ranges for all scopes; fix ranges for context vars Our current validation fails to detect some invalid cases of mutable ranges — namely, ranges that are fully or partially uninitialized, with start or start+end still set to zero. This PR fixes these cases, starting by validating that the rang...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/PrintHIR.ts", "patch": "@@ -633,10 +633,14 @@ function isMutable(range: MutableRange): boolean {\n }\n \n function printMutableRange(identifier: Identifier): string {\n- const range =\n- identifier.scope !== null\n- ? identifier.scope.r...
2024-03-26T20:29:24
nodejs/node
981c7014009eee456bdc70adf4d9d5c89211cafe
3d954dcf812bb500a77913ffd5ebec76235714f0
lib: ensure no holey array in fixed_queue Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54537 Fixes: https://github.com/nodejs/node/issues/54472 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Benjamin...
[ { "path": "lib/internal/fixed_queue.js", "patch": "@@ -2,6 +2,7 @@\n \n const {\n Array,\n+ ArrayPrototypeFill,\n } = primordials;\n \n // Currently optimal queue size, tested on V8 6.0 - 6.6. Must be power of two.\n@@ -17,18 +18,18 @@ const kMask = kSize - 1;\n // +-----------+ <-----\\ +---------...
2024-09-02T01:42:44
golang/go
d596bc0e819aec2cf65a61d8b92f6bec8e0a7124
b7382cc1f012016c91036c49db0ea6db444b47d8
runtime: disallow closing bubbled chans from outside bubble A chan created within a synctest bubble may not be operated on from outside the bubble. We panicked on send and receive, but not close. Panic on close as well. For #67434 Change-Id: I98d39e0cf7baa1a679aca1fb325453d69c535308 Reviewed-on: https://go-review.go...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -263,6 +263,46 @@ func TestChannelFromOutsideBubble(t *testing.T) {\n \t}\n }\n \n+func TestChannelMovedOutOfBubble(t *testing.T) {\n+\tfor _, test := range []struct {\n+\t\tdesc string\n+\t\tf func(chan struct{})\n+\t\twantPanic ...
2025-05-09T23:18:49
rust-lang/rust
da9ff14a13d072835afc9e70740547d5b0aacc87
4b5b1819350fed8e27ca67e34a049ea20444f247
Remove incorrect warning log
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs", "patch": "@@ -757,13 +757,6 @@ impl FlycheckActor {\n DiagnosticsReceived::AtLeastOneAndClearedWorkspace;\n }\n \n- if let Some(pac...
2026-02-13T15:23:59
vercel/next.js
804cbc410639fd4ae2c5ef5cd93ceb710e49af63
49ac27c137b336aea57f594b62b4129d7d287660
feat: add route context to prerender error messages (#82283) ### What? This PR improves error debugging during prerendering by adding route context to hanging promise rejection errors and related error messages. ### Why? When developers encounter dynamic access issues during static generation, the current error mes...
[ { "path": "packages/next/errors.json", "patch": "@@ -770,5 +770,6 @@\n \"769\": \"createSearchParamsFromClient should not be called in a runtime prerender.\",\n \"770\": \"createParamsFromClient should not be called in a runtime prerender.\",\n \"771\": \"\\\\`%s\\\\` was called during a runtime prere...
2025-08-01T21:46:01
nodejs/node
2f0b3713efd1f8f06a38115393cee8531803ce43
a1ffa644e923b0006010c5c4be8ef55e3e6921fb
meta: fix `contributing` codeowners PR-URL: https://github.com/nodejs/node/pull/54641 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": ".github/CODEOWNERS", "patch": "@@ -15,7 +15,7 @@\n /.github/ISSUE_TEMPLATE/* @nodejs/tsc\n /CODE_OF_CONDUCT.md @nodejs/tsc\n /CONTRIBUTING.md @nodejs/tsc\n-/doc/contributing/*.md @nodejs/tsc\n+/doc/contributing/**/* @nodejs/tsc\n /GOVERNANCE.md @nodejs/tsc\n /SECURITY.md @nodejs/tsc\n /LICENSE @n...
2024-08-31T17:33:24
rust-lang/rust
b3d9fbc17271a03bdd3ccbf95bb296b3505d4120
b4f38c1da4a7aa9d7065253f77a65a482a5a7993
ICE to delayed bug
[ { "path": "compiler/rustc_ty_utils/src/layout.rs", "patch": "@@ -777,7 +777,9 @@ fn layout_of_uncached<'tcx>(\n let err = if ty.has_param() || !cx.typing_env.param_env.caller_bounds().is_empty() {\n LayoutError::TooGeneric(ty)\n } else {\n- unreachable!...
2026-02-13T12:52:05
golang/go
5b0b4c01ba44f372343ed003b297f50ee3c8ff67
0d42cebacdba1855d11f29f708587c9a7a5cb976
runtime: add package doc for checkfinalizer mode Fixes #72949. Change-Id: I114eda73c57bc7d596eb1656e738b80c1cbe5254 Reviewed-on: https://go-review.googlesource.com/c/go/+/662039 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Michael Pratt <mpratt@google.com> Auto-Submit: Michael Knyszek <mknyszek@google....
[ { "path": "src/runtime/extern.go", "patch": "@@ -52,6 +52,21 @@ It is a comma-separated list of name=val pairs setting these named variables:\n \tcgocheck mode can be enabled using GOEXPERIMENT (which\n \trequires a rebuild), see https://pkg.go.dev/internal/goexperiment for details.\n \n+\tcheckfinalizers: ...
2025-04-02T01:46:45
vercel/next.js
068ae14412e69feb2cde40bb222c45174f26a201
4f61b84e57cbba11a61db0a51dbf0798e2f2a86c
[turbopack] Fix a snapshot test (#82281) A recent output change in #82214 invalidated a new test added in #77616 A classic write-write race
[ { "path": "turbopack/crates/turbopack-tests/tests/snapshot/node/bun_protocol_external/output/[root-of-the-server]__e251cfe1._.js", "patch": "@@ -52,7 +52,7 @@ module.exports = mod;\n \"use strict\";\n \n // Test that Bun builtins are treated as external\n-__turbopack_context__.s({});\n+__turbopack_context__...
2025-08-01T17:40:33
nodejs/node
a1ffa644e923b0006010c5c4be8ef55e3e6921fb
4c844a2f307fc758b0c50b99e830ea90d41c4acc
doc: fix typo name used instructions differed that what is in the code Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: https://github.com/nodejs/node/pull/54640 Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Richard Lau <rlau@redha...
[ { "path": "doc/contributing/maintaining/maintaining-dependencies.md", "patch": "@@ -110,7 +110,7 @@ shared library is available can added by:\n Support for an externalizable dependency with JavaScript code\n can be added by:\n \n-* adding an entry to the `sharable_builtins` map in\n+* adding an entry to the...
2024-08-31T17:33:09
golang/go
0d42cebacdba1855d11f29f708587c9a7a5cb976
2aac5a5cbacdaaefb518be7ea8ddc2a455ae35f2
runtime: report finalizer and cleanup queue length with checkfinalizer>0 This change adds tracking for approximate finalizer and cleanup queue lengths. These lengths are reported once every GC cycle as a single line printed to stderr when GODEBUG=checkfinalizer>0. This change lays the groundwork for runtime/metrics m...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -336,6 +336,20 @@ type cleanupQueue struct {\n \t//\n \t// Read without lock, written only with lock held.\n \tneedg atomic.Uint32\n+\n+\t// Cleanup queue stats.\n+\n+\t// queued represents a monotonic count of queued cleanups. This is sharded across\n+\t// ...
2025-05-09T19:33:22
vercel/next.js
db561cb924cbea0f3384e89f251fc443a8aec1ae
b085fafe5ef9ca18fafadc644eeb75cb5662f85f
Turbopack: fix glob with empty alternative branch (#82275) This came up during NFT where the ignore pattern `'**/node_modules/react{,-dom,-dom-server-turbopack}/**/*.development.js'` wasn't applied.
[ { "path": "turbopack/crates/turbo-tasks-fs/src/glob.rs", "patch": "@@ -193,6 +193,8 @@ mod tests {\n #[case::alternatives_nested2(\"{a,b/c,d/e/{f,g/h}}\", \"b/c\")]\n #[case::alternatives_nested3(\"{a,b/c,d/e/{f,g/h}}\", \"d/e/f\")]\n #[case::alternatives_nested4(\"{a,b/c,d/e/{f,g/h}}\", \"d/e/g...
2025-08-01T14:37:26
rust-lang/rust
e373b93b0b953033f869e386d30d2446b920133b
27e25ff6d8f9594b23ebb22e677481029fbbd8a7
Fix formatting
[ { "path": "src/builder.rs", "patch": "@@ -1892,11 +1892,9 @@ impl<'a, 'gcc, 'tcx> Builder<'a, 'gcc, 'tcx> {\n (rounded_min.value.to_bits(), rounded_max.value.to_bits())\n };\n fn compute_clamp_bounds<F: Float>(signed: bool, int_width: u64) -> (u128, u128) {\n- let roun...
2026-02-13T13:35:12
nodejs/node
d6f523480b1ce7e4440be04018b731a8232434a4
0b120af159d3f049e9886a01b281824eedf1e9a0
deps: fix sign-compare warning in ncrypto PR-URL: https://github.com/nodejs/node/pull/54624 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "deps/ncrypto/ncrypto.cc", "patch": "@@ -1194,7 +1194,7 @@ DataPointer DHPointer::computeSecret(const BignumPointer& peer) const {\n \n // The size of the computed key can be smaller than the size of the DH key.\n // We want to make sure that the key is correctly padded.\n- if (size < dp.size...
2024-08-31T02:10:36
golang/go
89af77deef7e554dff5ca21ff2c2aaf0a2d253ac
c58f58b9f8df0bde53bb5bc20b5ea97d34b1531d
internal/filepathlite: fix comment fix typo Change-Id: I46f0b052615d388a852439e63542b43e2ca62b7e GitHub-Last-Rev: 96ac66c0362c5c544249cf465c528a924112fa76 GitHub-Pull-Request: golang/go#73725 Reviewed-on: https://go-review.googlesource.com/c/go/+/672955 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by:...
[ { "path": "src/internal/filepathlite/path.go", "patch": "@@ -180,7 +180,7 @@ func ToSlash(path string) string {\n \treturn replaceStringByte(path, Separator, '/')\n }\n \n-// FromSlash is filepath.ToSlash.\n+// FromSlash is filepath.FromSlash.\n func FromSlash(path string) string {\n \tif Separator == '/' {...
2025-05-14T21:44:19
facebook/react
c3048aab4c3346dca90ab0052a89fdb48450570f
75de4ff72aa8b53a0af1f6b1f23e338329069c74
Fix tests on main (#28643) Not sure how these broke when merging https://github.com/facebook/react/pull/28299 and https://github.com/facebook/react/pull/28361
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js", "patch": "@@ -453,17 +453,17 @@ describe('ReactDOMServerPartialHydration', () => {\n // Client rendered - suspense comment nodes removed.\n expect(container.innerHTML).toBe('Hello<article>Mismatch</arti...
2024-03-26T15:26:42
nodejs/node
d49f47ee3536ed76616d0328c01a949325321c40
64bb5f8f8ed4d6bb786b6dfc02e22a94caf3bc21
doc: fix webcrypto.md AES-GCM backticks PR-URL: https://github.com/nodejs/node/pull/54621 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/webcrypto.md", "patch": "@@ -567,7 +567,7 @@ The algorithms currently supported include:\n * `'RSA-OAEP'`\n * `'AES-CTR'`\n * `'AES-CBC'`\n-* `'AES-GCM`'\n+* `'AES-GCM'`\n \n ### `subtle.deriveBits(algorithm, baseKey[, length])`\n \n@@ -703,7 +703,7 @@ The algorithms currently supported i...
2024-08-30T22:32:03
golang/go
dfebef1c0459af0a34eceb4027c9fab5824f2eab
be0cc937ec9c109da90ec4d7da5af89606f8c0cf
cmd/compile: fold negation into addition/subtraction on arm64 Fold negation into addition/subtraction and avoid double negation. platform: linux/arm64 file before after Δ % addr2line 3628108 3628116 +8 +0.000% asm 6208353 6207857 -496 -0.008% buildid 3460682 3460418 -264...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules", "patch": "@@ -1198,6 +1198,7 @@\n \n // generic simplifications\n (ADD x (NEG y)) => (SUB x y)\n+(SUB x (NEG y)) => (ADD x y)\n (SUB x x) => (MOVDconst [0])\n (AND x x) => x\n (OR x x) => x\n@@ -1209,6 +1210,7 @@\n (XOR x (MVN y)) => (EON x y)\n (O...
2025-05-17T06:30:07
electron/electron
54d8402a6ca8a357d7695c1c6d01d5040e42926a
89659fa9c997977ee2a25ce2c769d86742eccb90
fix: broken `chrome.scripting` compilation (#39725) fix: broken chrome.scripting impl after roll
[ { "path": "shell/browser/extensions/api/scripting/scripting_api.cc", "patch": "@@ -51,55 +51,14 @@ constexpr char kDuplicateFileSpecifiedError[] =\n \"Duplicate file specified: '*'.\";\n constexpr char kExactlyOneOfCssAndFilesError[] =\n \"Exactly one of 'css' and 'files' must be specified.\";\n-con...
2023-09-04T07:03:10
facebook/react
75de4ff72aa8b53a0af1f6b1f23e338329069c74
07def0cc5a377fc36c410b85112fdc51485ecc11
fix[devtools/ci]: split profiling cache test for different react versions and toEqual checker (#28628) This should fix the failing backwards-compatibility tests on CI: - https://app.circleci.com/pipelines/github/facebook/react/51347/workflows/9d319db5-7a29-4e9a-a3a0-8d49a24ee9bd/jobs/809381 - https://app.circleci....
[ { "path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js", "patch": "@@ -310,7 +310,8 @@ describe('ProfilingCache', () => {\n });\n \n // @reactVersion >= 16.9\n- it('should record changed props/state/context/hooks', () => {\n+ // @reactVersion <= 18.2\n+ it('should record chang...
2024-03-26T10:55:07
nodejs/node
ef6b9ffc8dfc7b2a395c864d2729a0ce1be9ef18
9bdf2ee1d184e7ec5c690319e068894ed324b595
async_hooks: add an InactiveAsyncContextFrame class This gives a class prototype for AsyncContextFrame that contains the required methods, so that when we swap the prototype, ActiveAsyncContextFrame methods are used instead. Previously, the methods were defined in AsyncContextFrame, so swapping the prototype didn't sw...
[ { "path": "lib/internal/async_context_frame.js", "patch": "@@ -11,7 +11,7 @@ const {\n \n let enabled_;\n \n-class ActiveAsyncContextFrame {\n+class ActiveAsyncContextFrame extends Map {\n static get enabled() {\n return true;\n }\n@@ -50,12 +50,7 @@ function checkEnabled() {\n return enabled;\n }...
2024-08-30T20:27:28
golang/go
be0cc937ec9c109da90ec4d7da5af89606f8c0cf
0c7311e9ca8440801b40928878db623f98e3008f
net: avoid using Windows' TransmitFile on non-server machines Windows API's TransmitFile function is limited to two concurrent operations on workstation and client versions of Windows. This change modifies the net.sendFile function to perform no work in such cases so that TransmitFile is avoided. Fixes #73746 Change...
[ { "path": "src/internal/syscall/windows/types_windows.go", "patch": "@@ -256,3 +256,7 @@ type FILE_COMPLETION_INFORMATION struct {\n \tPort syscall.Handle\n \tKey uintptr\n }\n+\n+// https://learn.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-osversioninfoexa\n+// https://learn.microsoft.com/en-us/w...
2025-05-20T03:59:15
nodejs/node
e9cd4766e39d96693320be9ce0a1044c450e8675
2bfc9e467cb05578efa4d3db497f368fb144e5fc
test: fix test-tls-client-auth test for OpenSSL32 Refs: https://github.com/nodejs/node/issues/53382 Refs: https://github.com/nodejs/node/pull/53384 Same change as in 53384 where OpenSSL32 returns a slightly different error but for a different test. Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: https://...
[ { "path": "test/parallel/test-tls-client-auth.js", "patch": "@@ -79,8 +79,10 @@ connect({\n }, function(err, pair, cleanup) {\n assert.strictEqual(pair.server.err.code,\n 'ERR_SSL_PEER_DID_NOT_RETURN_A_CERTIFICATE');\n+ const expectedErr = common.hasOpenSSL(3, 2) ?\n+ 'ERR_SSL_SSL...
2024-08-28T14:58:09
electron/electron
89659fa9c997977ee2a25ce2c769d86742eccb90
89117fdd999783091e019f7c6c06e7b5a45244d9
chore: fix broken patches on main (#39715)
[ { "path": "patches/chromium/refactor_expose_hostimportmoduledynamically_and.patch", "patch": "@@ -7,10 +7,10 @@ Subject: refactor: expose HostImportModuleDynamically and\n This is so that Electron can blend Blink's and Node's implementations of these isolate handlers.\n \n diff --git a/third_party/blink/ren...
2023-09-01T08:28:01
facebook/react
fbd68eef7f8fad5dd1fdceb0fb79162c3d972e59
48ecaf92d51813a1b1f1bcba1cdcbf48a501f2c6
Fix for invalid mutable range in phi with backedge Fixes the repro added in 947832009997bf9149e88e583c46cc39f6a6136c - previously when computing mutable ranges of phis, we didn't check that all operands had been visited. This meant that a backedge could allow a phi's mutable range to start at 0. Then in PropagateS...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferMutableLifetimes.ts", "patch": "@@ -5,7 +5,6 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { CompilerError } from \"../CompilerError\";\n import {\n Effect,\n HIRFunction,\n@@ -102,22 +101,30 @@...
2024-03-26T04:36:33
vercel/next.js
b8eba4f7038cfb9e66b8b18def445d377b00defe
b07bf2a0f7681080fd827c2cf408b2e0adff019d
Mark bun builtin modules as external (fixes #75220) (#77616) Fixes https://github.com/vercel/next.js/issues/75220 This marks Bun's builtin modules as external, following the same pattern as for Node. - `"bun:ffi"` - `"bun:jsc"` - `"bun:sqlite"` - `"bun:test"` - `"bun:wrap"` - `"bun"` I have not manually tested this...
[ { "path": "packages/next/src/build/handle-externals.ts", "patch": "@@ -188,6 +188,11 @@ export function makeExternalHandler({\n return `commonjs ${request}`\n }\n \n+ // Handle Bun builtins as external modules\n+ if (request === 'bun' || request.startsWith('bun:')) {\n+ return...
2025-08-01T09:15:57
golang/go
0c7311e9ca8440801b40928878db623f98e3008f
3e82316a4357c44c193790bdc02d1f8032f34289
cmd/go: do not try to load 'all' packages with invalid import paths Before this change, when we tried to compute the set of packages in 'all', we'd add packages with invalid import paths to the set and try to load them, which would fail. Instead, do not add them to the list of packages to load in the second iteration ...
[ { "path": "src/cmd/go/internal/modload/load.go", "patch": "@@ -2009,6 +2009,13 @@ func (ld *loader) stdVendor(parentPath, path string) string {\n // starting with a list of the import paths for the packages in the main module.\n func (ld *loader) computePatternAll() (all []string) {\n \tfor _, pkg := range ...
2025-05-16T20:40:55
nodejs/node
2bfc9e467cb05578efa4d3db497f368fb144e5fc
d96739cf6296ef365c8f38615d0a42197694f739
test: update TLS test for OpenSSL 3.2 Update `parallel/test-tls-set-sigalgs` to account for error code changes in OpenSSL 3.2 and later. PR-URL: https://github.com/nodejs/node/pull/54612 Refs: https://github.com/nodejs/node/pull/53384 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Luigi Pinca <luigipinca...
[ { "path": "test/parallel/test-tls-set-sigalgs.js", "patch": "@@ -63,10 +63,12 @@ test('RSA-PSS+SHA256:RSA-PSS+SHA512:ECDSA+SHA256',\n ['RSA-PSS+SHA256', 'ECDSA+SHA256']);\n \n // Do not have shared sigalgs.\n+const handshakeErr = common.hasOpenSSL(3, 2) ?\n+ 'ERR_SSL_SSL/TLS_ALERT_HANDSHAKE_FAILURE' :...
2024-08-30T15:40:08
facebook/react
67e6fa6d17b52e0f7d759e6079b49b9b164cf9ba
d3037405c4c9ce8158ef9017e960ec97fb089df4
Test for suspending with modern strict mode (#28513) ## Overview Adds a test to show the cause of an infinite loop in Relay related to [these effects in Relay](https://github.com/facebook/relay/blob/448aa67d2a11e7d45cd7b4492b9f599b498cb39e/packages/react-relay/relay-hooks/useLazyLoadQueryNode.js#L77-L104) and `u...
[ { "path": "packages/react-reconciler/src/__tests__/StrictEffectsMode-test.js", "patch": "@@ -772,4 +772,177 @@ describe('StrictEffectsMode', () => {\n 'useEffect unmount',\n ]);\n });\n+\n+ // @gate __DEV__\n+ it('should double invoke effects after a re-suspend', async () => {\n+ // Not usi...
2024-03-26T04:02:16
electron/electron
89117fdd999783091e019f7c6c06e7b5a45244d9
0b0707145b157343c42266d2586ed9413a1d54f5
chore: bump chromium to 118.0.5975.0 (main) (#39531) * chore: bump chromium in DEPS to 118.0.5951.0 * chore: update printing.patch Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4727894 No logic changes, but patch needed to be manually re-applied due to upstream code shear * chore: update ...
[ { "path": "BUILD.gn", "patch": "@@ -730,8 +730,8 @@ source_set(\"electron_lib\") {\n \"//pdf\",\n ]\n sources += [\n- \"shell/browser/electron_pdf_web_contents_helper_client.cc\",\n- \"shell/browser/electron_pdf_web_contents_helper_client.h\",\n+ \"shell/browser/electron_pdf_doc...
2023-09-01T06:54:59
nodejs/node
d2479fa020866f038785fb7373baf2621d7cc1c5
89667876245bfb8db7aebbd3f6f04abacadf051d
vm: return all own names and symbols in property enumerator interceptor Property enumerator methods like `Object.getOwnPropertyNames`, `Object.getOwnPropertySymbols`, and `Object.keys` all invokes the named property enumerator interceptor. V8 will filter the result based on the invoked enumerator variant. Fix the enum...
[ { "path": "src/node_contextify.cc", "patch": "@@ -769,19 +769,25 @@ Intercepted ContextifyContext::PropertyDeleterCallback(\n // static\n void ContextifyContext::PropertyEnumeratorCallback(\n const PropertyCallbackInfo<Array>& args) {\n+ // Named enumerator will be invoked on Object.keys,\n+ // Object...
2024-08-30T11:22:58
golang/go
3e82316a4357c44c193790bdc02d1f8032f34289
123141166bf77b60062d830224b85131791647fd
cmd/compile: don't instrument counter globals in internal/fuzz Fixes: #72766 Change-Id: I45b521e53c2a11e259dc99e2dfc8e40cac39139a Reviewed-on: https://go-review.googlesource.com/c/go/+/673575 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@goog...
[ { "path": "src/cmd/cgo/internal/testsanitizers/asan_test.go", "patch": "@@ -135,6 +135,9 @@ func TestASANFuzz(t *testing.T) {\n \tif bytes.Contains(out, []byte(\"AddressSanitizer\")) {\n \t\tt.Error(`output contains \"AddressSanitizer\", but should not`)\n \t}\n+\tif !bytes.Contains(out, []byte(\"FUZZ FAILE...
2025-05-16T19:07:46
vercel/next.js
1c5f64b99329b88638b27c14b3984a74450724ea
4b0f74651e0d2b1b939fac8705c8122c292e0afc
[Cache Components] Runtime prefetching (#81088) Initial implementation of runtime prefetching. A "runtime prefetch" is a more complete version of a static prefetch (i.e. the one that a link does by default), rendered on demand, and not cached server-side. It will render the server part of the page dynamically, allowi...
[ { "path": "packages/next/errors.json", "patch": "@@ -764,5 +764,11 @@\n \"763\": \"\\\\`unstable_rootParams\\\\` must not be used within a client component. Next.js should be preventing it from being included in client components statically, but did not in this case.\",\n \"764\": \"Missing workStore in...
2025-07-31T21:07:06
facebook/react
d3037405c4c9ce8158ef9017e960ec97fb089df4
5a75f9e78544fa6d052aff7fe99607e48f35b979
Test showing mismatches after suspending force fallbacks to be shown (#28299) While investigating https://github.com/facebook/react/issues/28285 I found a possible bug in handling Suspense and mismatches. As the tests show, if the first sibling in a boundary suspends, and the second has a mismatch, we will NOT show...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js", "patch": "@@ -366,6 +366,775 @@ describe('ReactDOMServerPartialHydration', () => {\n }\n });\n \n+ it('does not show a fallback if mismatch is after suspending', async () => {\n+ // We can't use the toErr...
2024-03-26T00:33:31
electron/electron
7858921a1f318a4bffe9a570addfde2360a701e8
ac031bf8dedf8e3da6d918cbbc2e64a03830c639
docs: fix return typing of ses.getExtension (#39697)
[ { "path": "docs/api/session.md", "patch": "@@ -1491,7 +1491,7 @@ is emitted.\n \n * `extensionId` string - ID of extension to query\n \n-Returns `Extension` | `null` - The loaded extension with the given ID.\n+Returns `Extension | null` - The loaded extension with the given ID.\n \n **Note:** This API canno...
2023-08-31T01:10:32
golang/go
123141166bf77b60062d830224b85131791647fd
3df078fc74a550168440d5afd5f9a9204b77f0f9
cmd/compile: add generic simplifications on riscv64 file before after Δ % addr2line 3636263 3636215 -48 -0.001% asm 6318110 6317966 -144 -0.002% buildid 3463352 3463224 -128 -0.004% cgo 5672502 5672214 -288 -0.005% compile 26904997 26905719 +722 +0.00...
[ { "path": "src/cmd/compile/internal/ssa/_gen/RISCV64.rules", "patch": "@@ -743,6 +743,15 @@\n (ROL x (NEG y)) => (ROR x y)\n (ROLW x (NEG y)) => (RORW x y)\n \n+// generic simplifications\n+(ADD x (NEG y)) => (SUB x y)\n+(SUB x (NEG y)) => (ADD x y)\n+(SUB x x) => (MOVDconst [0])\n+(AND x x) => x\n+(OR x...
2025-05-17T13:45:50
nodejs/node
89667876245bfb8db7aebbd3f6f04abacadf051d
01f751b529d126529f1d2019f0dcb13b8e54b787
test: run V8 Fast API tests in release mode too Only keep the call count assertions under `common.isDebug`. PR-URL: https://github.com/nodejs/node/pull/54570 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: ...
[ { "path": "doc/contributing/adding-v8-fast-api.md", "patch": "@@ -173,25 +173,24 @@ A typical function that communicates between JavaScript and C++ is as follows.\n // We could also require a function that uses the internal binding internally.\n const { divide } = internalBinding('custom_namespace');\n ...
2024-08-30T10:25:01
vercel/next.js
c6cefce4cb01d20ae5e21986e809e8595d405c21
e2b6a50aec59c42b2c0450a899005d5dbd5cb932
fix(Turbopack): Fix duplicated layout rendering in edge cases (#81948) ## Fix module reference handling in app_structure.rs creating duplicated layouts ### What? Fixed a bug in the `check_and_update_module_references` function by making the code always overrides the `not-found`, `unauthorized`, etc files at the top l...
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -923,18 +923,31 @@ async fn directory_tree_to_loader_tree(\n /// set.\n /// * `file_path` - The file path to the default page if neither the current module nor the parent\n /// module is set.\n+/// * `is_first_layer_group_route` - If true, ...
2025-07-31T17:04:35
facebook/react
29ab0f835e199d8f943b8a68634533c24fe74324
e6ce5e49229ac410b35809a37b209ef3bd747202
Repro for scopes from AnalyzeFunction influencing outer compilation We share identifiers between outer functions and inner function expressions, which means that scopes inferred during AnalyzeFunctions can be retained on Identifiers in the outer function. If InferReactiveScopeVariables doesn't happen to visit an i...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-mutable-range-shared-inner-outer-function.expect.md", "patch": "@@ -0,0 +1,75 @@\n+\n+## Input\n+\n+```javascript\n+// @enableAssumeHooksFollowRulesOfReact @enableTransitivelyFreezeFunctionExpressions\n+let cond = t...
2024-03-25T22:31:22
electron/electron
ac031bf8dedf8e3da6d918cbbc2e64a03830c639
b8ac7983448d1f7e43eba7eddc6e561e4b1f4855
feat: I guess it's esm (#37535) * fix: allow ESM loads from within ASAR files * fix: ensure that ESM entry points finish loading before app ready * fix: allow loading ESM entrypoints via default_app * fix: allow ESM loading for renderer preloads * docs: document current known limitations of esm * chore:...
[ { "path": "default_app/default_app.ts", "patch": "@@ -51,16 +51,17 @@ async function createWindow (backgroundColor?: string) {\n autoHideMenuBar: true,\n backgroundColor,\n webPreferences: {\n- preload: path.resolve(__dirname, 'preload.js'),\n+ preload: url.fileURLToPath(new URL('prelo...
2023-08-31T00:38:07
nodejs/node
321a14b36d6b3304aedfd183e12ddba35dc704bd
9cbef482df41f4f313f4dc183bc5931c2cd83a00
doc: fix typo in styleText description PR-URL: https://github.com/nodejs/node/pull/54616 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "doc/api/util.md", "patch": "@@ -1825,8 +1825,8 @@ changes:\n * `stream` {Stream} A stream that will be validated if it can be colored. **Default:** `process.stdout`.\n \n This function returns a formatted text considering the `format` passed\n-for printing in a terminal, it is aware of the term...
2024-08-29T19:42:53
golang/go
3df078fc74a550168440d5afd5f9a9204b77f0f9
2a65100e68cd82172b214a4d12cd2586c0b9ef99
runtime: add new GODEBUG checkfinalizer This new debug mode detects cleanup/finalizer leaks using checkmark mode. It runs a partial GC using only specials as roots. If the GC can find a path from one of these roots back to the object the special is attached to, then the object might never be reclaimed. (The cycle coul...
[ { "path": "src/runtime/gc_test.go", "patch": "@@ -1073,3 +1073,17 @@ func TestMSpanQueue(t *testing.T) {\n \t\texpectMSpan(t, p.Pop(), nil, \"pop\")\n \t})\n }\n+\n+func TestDetectFinalizerAndCleanupLeaks(t *testing.T) {\n+\tgot := runTestProg(t, \"testprog\", \"DetectFinalizerAndCleanupLeaks\", \"GODEBUG=c...
2024-12-09T19:07:40
vercel/next.js
e2b6a50aec59c42b2c0450a899005d5dbd5cb932
2bb227ebee5609809eb5a7e9ad00b900f458128d
Turbopack: fix dev test manifest (#82241) <!-- 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 ### Impr...
[ { "path": "test/turbopack-dev-tests-manifest.json", "patch": "@@ -12043,11 +12043,10 @@\n \"react-compiler default should render\",\n \"react-compiler default should show an experimental warning\",\n \"react-compiler default should work with a library that uses the react-server condition\"...
2025-07-31T12:27:23
facebook/react
50cdf158d81a799763818308baf86c7db17d0931
b35be36fb4a3fb3713ecb252f20ca1050a29122f
Bump webpack-dev-middleware from 5.3.3 to 5.3.4 in /fixtures/flight (#28618) Bumps [webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware) from 5.3.3 to 5.3.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpack/webpack-dev-middleware/releases">w...
[ { "path": "fixtures/flight/package.json", "patch": "@@ -59,7 +59,7 @@\n \"terser-webpack-plugin\": \"^5.2.5\",\n \"undici\": \"^5.20.0\",\n \"webpack\": \"^5.64.4\",\n- \"webpack-dev-middleware\": \"^5.3.1\",\n+ \"webpack-dev-middleware\": \"^5.3.4\",\n \"webpack-hot-middleware\": \"^2...
2024-03-25T17:37:11
electron/electron
2e79f34c841776a7184ba311cd937b3513e75f32
f30fbebb984816d71ab6723c04dd40b81337f397
docs: fix the minimum supported macOS version to Catalina (#39667) docs: update the minimum supported macOS version to Catalina
[ { "path": "README.md", "patch": "@@ -38,7 +38,7 @@ For more installation options and troubleshooting tips, see\n \n Each Electron release provides binaries for macOS, Windows, and Linux.\n \n-* macOS (High Sierra and up): Electron provides 64-bit Intel and ARM binaries for macOS. Apple Silicon support was a...
2023-08-29T00:01:11
golang/go
2a65100e68cd82172b214a4d12cd2586c0b9ef99
ff9da9bcd579a08cf9ca62620c5956676ac28586
cmd/internal/testdir: filter out errors outside input file set When an errorcheck test uses -m and instantiates an imported generic function, the errors will include -m messages from the imported package (since the new function has not previously been walked). These errors cannot be matched since we can't write errors...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -1242,6 +1242,24 @@ func (t test) errorCheck(outStr string, wantAuto bool, fullshort ...string) (err\n \t\t}\n \t}\n \n+\tif len(out) > 0 {\n+\t\t// If a test uses -m and instantiates an imported generic function,\n+\t\t// the errors will in...
2025-05-14T05:01:43
nodejs/node
d98cfcc5816189507722c47ad69bda45c5072d4b
dcf50f15bc7e49637b79876440b6fcdf827aebcc
vm: introduce vanilla contexts via vm.constants.DONT_CONTEXTIFY This implements a flavor of vm.createContext() and friends that creates a context without contextifying its global object. This is suitable when users want to freeze the context (impossible when the global is contextified i.e. has interceptors installed) ...
[ { "path": "doc/api/vm.md", "patch": "@@ -229,6 +229,9 @@ overhead.\n <!-- YAML\n added: v0.3.1\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/54394\n+ description: The `contextObject` argument now accepts `vm.constants.DONT_CONTEXTIFY`.\n - version: v14.6.0\n ...
2024-08-29T09:05:03
facebook/react
b35be36fb4a3fb3713ecb252f20ca1050a29122f
527ed72bfd9f5c0045da468ad01db968a9961ad7
Bump webpack-dev-middleware from 5.3.3 to 5.3.4 (#28621) Bumps [webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware) from 5.3.3 to 5.3.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpack/webpack-dev-middleware/releases">webpack-dev-middlewar...
[ { "path": "yarn.lock", "patch": "@@ -15791,9 +15791,9 @@ webpack-cli@^5.1.1:\n webpack-merge \"^5.7.3\"\n \n webpack-dev-middleware@^5.3.1:\n- version \"5.3.3\"\n- resolved \"https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f...
2024-03-25T17:36:03
vercel/next.js
2bb227ebee5609809eb5a7e9ad00b900f458128d
189f971fe8a2ad30dbb9f74e2472fe8748c28e00
fix: turbopack loader ipc field mapping (#82112) Co-authored-by: Dario Lehmhus <dario.lehmhus@ffw.com>
[ { "path": "test/development/app-dir/turbopack-loader-file-dependencies/app/layout.tsx", "patch": "@@ -0,0 +1,8 @@\n+import { ReactNode } from 'react'\n+export default function Root({ children }: { children: ReactNode }) {\n+ return (\n+ <html>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}", ...
2025-07-31T12:24:18
electron/electron
f30fbebb984816d71ab6723c04dd40b81337f397
f0ad357af207a7f8b4a425bbad0e23d15c92fbbc
fix: promise resolved to early when browser initiated in-page navigation v2 (#39597)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -454,6 +454,7 @@ WebContents.prototype.loadURL = function (url, options) {\n };\n \n let navigationStarted = false;\n+ let browserInitiatedInPageNavigation = false;\n const navigationListener = (event: Electron.Event, url: string, isSa...
2023-08-28T16:37:28
nodejs/node
7616855b2a90e03310ef8431274ffa37d78abe68
29cf6235673bac7aa85072c15cca2df8018422ce
src: disable fast methods for `buffer.write` It should resolve the regressions while we work on fixing them. Refs: https://github.com/nodejs/node/issues/54521 PR-URL: https://github.com/nodejs/node/pull/54565 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-...
[ { "path": "src/node_buffer.cc", "patch": "@@ -1554,21 +1554,9 @@ void Initialize(Local<Object> target,\n SetMethod(context, target, \"hexWrite\", StringWrite<HEX>);\n SetMethod(context, target, \"ucs2Write\", StringWrite<UCS2>);\n \n- SetFastMethod(context,\n- target,\n- \...
2024-08-29T07:06:40
golang/go
ff9da9bcd579a08cf9ca62620c5956676ac28586
326e5e1b7a9f421db972fed0a6e79a1c9601d0ae
cmd/dist: pass GO_GCFLAGS to cpuN runtime tests We want gcflags, which control builder type (e.g. noopt) to be used for these tests also. Should fix noopt and maybe other builders. Change-Id: Iad34beab51714f0c38989ec0fc8778cf79087f72 Reviewed-on: https://go-review.googlesource.com/c/go/+/674455 Reviewed-by: Keith Ra...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -952,6 +952,7 @@ func (t *tester) registerTests() {\n \t\t\t\t\tvariant: \"cpu\" + strconv.Itoa(i),\n \t\t\t\t\ttimeout: 300 * time.Second,\n \t\t\t\t\tcpu: strconv.Itoa(i),\n+\t\t\t\t\tgcflags: gogcflags,\n \t\t\t\t\tshort: true,\n \t\t\t\t\tte...
2025-05-20T15:42:24
facebook/react
e373190faf3b994707f09488c1a7832f4a91e15a
0711ff17638ed41f9cdea712a19b92f01aeda38f
Guard against legacy context not being supported in DevTools fixture (#28596)
[ { "path": "packages/react-devtools-shell/src/app/InspectableElements/Contexts.js", "patch": "@@ -273,15 +273,46 @@ class ModernClassContextConsumerWithUpdates extends Component<any> {\n }\n }\n \n+type LegacyContextState = {\n+ supportsLegacyContext: boolean,\n+};\n+class LegacyContext extends React.Comp...
2024-03-25T13:30:08
vercel/next.js
6b5fe4637d2001a4cefa6bff179c7f970c7fe748
ccde68ff349dd4bc4acee60f097032afc1b4a5bd
Fix: Don't bail out of prefetch if head is missing (#82216) This fixes an edge case where a Link is prefetched with prefetch={true}, and the target page has a dynamic head, but the head is not fully prefetched. If all the segment data for the target page was already cached, the prefetch scheduler would bail out and sk...
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache.ts", "patch": "@@ -109,6 +109,9 @@ type RouteCacheEntryShared = {\n // received a response from the server.\n couldBeIntercepted: boolean\n \n+ // See comment in scheduler.ts for context\n+ TODO_metadataStatus: EntryStatus.Empty |...
2025-07-31T03:29:03
electron/electron
d42a94dddeb86d349c050c2ee59b135bd6c8245c
3bdc7ce64a79120c4001d0c614e4ad037246229e
fix: webview exiting fullscreen presentation mode (#39616)
[ { "path": "patches/chromium/.patches", "patch": "@@ -98,7 +98,6 @@ make_gtk_getlibgtk_public.patch\n build_disable_print_content_analysis.patch\n custom_protocols_plzserviceworker.patch\n feat_filter_out_non-shareable_windows_in_the_current_application_in.patch\n-fix_allow_guest_webcontents_to_enter_fullscr...
2023-08-25T18:11:58
nodejs/node
99b491c595b16964004b1e532a57455fc8ced193
75741a19524c3cf3a9671ee227e806cf842e9a86
doc: fix module compile cache description PR-URL: https://github.com/nodejs/node/pull/54625 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -182,7 +182,7 @@ directory will be recreated the next time the same directory is used for for com\n storage. To avoid filling up the disk with stale cache, it is recommended to use a directory\n under the [`os.tmpdir()`][]. If the compile cache is enabled by a cal...
2024-08-29T04:36:46
golang/go
1635aed9413233ba8f974447ca3359b7a9159985
b69f50faef360beedd408048d19909c85a2e0de0
hash/maphash: hash channels in purego version of maphash.Comparable This change makes purego implementation of maphash.Comparable consistent with the one in runtime and fixes hashing of channels. Fixes #73657 Change-Id: If78a21d996f0c20c0224d4014e4a4177b09c3aa3 GitHub-Last-Rev: 2537216a1e4e62791c7e417441ee770ca149f3...
[ { "path": "src/hash/maphash/maphash_purego.go", "patch": "@@ -161,7 +161,7 @@ func appendT(h *Hash, v reflect.Value) {\n \tcase reflect.Bool:\n \t\th.WriteByte(btoi(v.Bool()))\n \t\treturn\n-\tcase reflect.UnsafePointer, reflect.Pointer:\n+\tcase reflect.UnsafePointer, reflect.Pointer, reflect.Chan:\n \t\tv...
2025-05-10T17:58:48
facebook/react
2ce112dbf2442c87f89b649e31dd132c170d64fd
db7e7c7fae69e54fee8751b10790827e2dea0ac2
Repro for missing dep with while/if using externally declared "index" variable What happens here is that the phi node for `i` has its mutable range set to start at 0, because it has a back edge and we haven't initialized the mutable ranges of all its operands yet when we iterate the operands and set range.start = ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-repro-missing-dependency-if-within-while.expect.md", "patch": "@@ -0,0 +1,79 @@\n+\n+## Input\n+\n+```javascript\n+const someGlobal = true;\n+export default function Component(props) {\n+ const { b } = props;\n+ con...
2024-03-23T04:49:39
vercel/next.js
eabcc9efae27ec75c0c785480d401438f24e1f34
0899283aee33271d9b1c9cf3c6c212922030100f
fix: display multiple lockfile warn if neither `outputFileTracingRoot` or `turbopack.root` option is provided (#82164) > Better to be reviewed with "Hide whitespace". This PR fixed a bug where `findRootDir()` was called and displayed multiple lockfile warnings even if the app had `turbopack.root`, as there was no `ou...
[ { "path": "packages/next/src/lib/find-root.ts", "patch": "@@ -40,14 +40,25 @@ export function findRootDir(cwd: string) {\n .map((str) => '\\n * ' + str)\n .join('')\n \n- Log.warnOnce(\n- `Warning: Next.js inferred your workspace root, but it may not be correct.\\n` +\n- ` We de...
2025-07-30T21:26:00
electron/electron
48e14bc54e26b540d3667b940b51434a76e0205b
83760bd5c627c56c16eb93c2617dbb3896aaa626
ci: fix deprecation review automation for PRs (#39649)
[ { "path": ".github/workflows/pull-request-labeled.yml", "patch": "@@ -23,7 +23,7 @@ jobs:\n echo \"TOKEN=$TOKEN\" >> \"$GITHUB_OUTPUT\"\n - name: Set status\n if: ${{ steps.generate-token.outputs.TOKEN }}\n- uses: github/update-project-action@2d475e08804f11f4022df7e21f5816531e...
2023-08-25T18:09:12
rust-lang/rust
8c26adcab0d57791c2af752fd1c0973860bc38f5
70c6d5a4476db95a94e417694f3535388ef613ed
libm: Add an optimization for `floor` ceil seems to optimize better, but this gets closer to the pre-fix codegen.
[ { "path": "library/compiler-builtins/libm/src/math/generic/floor.rs", "patch": "@@ -26,7 +26,6 @@ pub fn floor_status<F: Float>(x: F) -> FpResult<F> {\n return FpResult::ok(x);\n }\n \n- let status;\n let res = if e >= 0 {\n // |x| >= 1.0\n let m = F::SIG_MASK >> e.unsigne...
2026-02-07T15:26:48
nodejs/node
ff5ef7083dc23969219bdb7e412ffd5388783a25
4a0ec20a35aff521c3a08e42b3905012a6566c00
src: add JS APIs for compile cache and NODE_DISABLE_COMPILE_CACHE This patch adds the following API for tools to enable compile cache dynamically and query its status. - module.enableCompileCache(cacheDir) - module.getCompileCacheDir() In addition this adds a NODE_DISABLE_COMPILE_CACHE environment variable to disabl...
[ { "path": "doc/api/cli.md", "patch": "@@ -2841,25 +2841,8 @@ added: v22.1.0\n \n > Stability: 1.1 - Active Development\n \n-When set, whenever Node.js compiles a CommonJS or a ECMAScript Module,\n-it will use on-disk [V8 code cache][] persisted in the specified directory\n-to speed up the compilation. This ...
2024-08-28T23:22:57
facebook/react
200d2c379dd3acb024ec0b2ef9d649bb1d149bdd
f4ff1a28e714a2d013615a142257523ea9da17cf
Fix for loops with value block index initial value
[ { "path": "compiler/packages/babel-plugin-react-forget/src/SSA/LeaveSSA.ts", "patch": "@@ -23,6 +23,7 @@ import {\n eachInstructionValueOperand,\n eachPatternOperand,\n eachTerminalOperand,\n+ eachTerminalSuccessor,\n terminalFallthrough,\n } from \"../HIR/visitors\";\n \n@@ -340,8 +341,14 @@ expor...
2024-03-22T21:51:36
golang/go
b69f50faef360beedd408048d19909c85a2e0de0
df9888ea4e97feb755e452609be5078686370995
net/http: upon http redirect, copy Request.GetBody in new request This enable http.RoundTripper implementation to retry POST request (let's say after a 500) after a 307/308 redirect. Fixes #73439 Change-Id: I4365ff58b012c7f0d60e0317a08c98b1d48f657e Reviewed-on: https://go-review.googlesource.com/c/go/+/666735 Review...
[ { "path": "src/net/http/client.go", "patch": "@@ -672,6 +672,7 @@ func (c *Client) do(req *Request) (retres *Response, reterr error) {\n \t\t\t\t\tresp.closeBody()\n \t\t\t\t\treturn nil, uerr(err)\n \t\t\t\t}\n+\t\t\t\treq.GetBody = ireq.GetBody\n \t\t\t\treq.ContentLength = ireq.ContentLength\n \t\t\t}\n ...
2025-04-18T17:48:04
vercel/next.js
d0b0cf0fbe121f68c20e3884e3b261edab456d0a
993e4d39299687d2a36701fae56e81e8413a5531
Grammar fix on forms.mdx (#82209) grammar nit: "an API" is singular Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "docs/02-pages/02-guides/forms.mdx", "patch": "@@ -8,7 +8,7 @@ Forms enable you to create and update data in web applications. Next.js provides\n \n ## Server Forms\n \n-To handle form submissions on the server, create an API endpoint securely mutate data.\n+To handle form submissions on the serve...
2025-07-30T20:21:46
rust-lang/rust
70c6d5a4476db95a94e417694f3535388ef613ed
0b0d40d5f3ab401604d138fdf2cc4785a3ecc6bc
libm: Fix `_status` status outputs on null-mantissa inputs Values like 0.5 that have an exponent but not a mantissa are currently being reported as OK rather than INEXACT for ceil, floor, and trunc. Fix this and clean up the test cases. This tries to keep the algorithm diff as simple as possible, which introduces som...
[ { "path": "library/compiler-builtins/libm/src/math/generic/ceil.rs", "patch": "@@ -46,7 +46,7 @@ pub fn ceil_status<F: Float>(x: F) -> FpResult<F> {\n F::from_bits(ix)\n } else {\n // |x| < 1.0, raise an inexact exception since truncation will happen (unless x == 0).\n- if ix & F:...
2026-02-07T13:06:05
electron/electron
e14964ccd014e595da4cbaf8c73f0999948c6042
33000c4b42157f06fc78ef83300dcaec61a69fbe
feat: add setter and getter apis to specify udp port range for webrtc (#39046) * feat:Add setter and getter apis to specify udp port range for webrtc (issue#9042) * lint error fix for PR#39046 * feat: add setter and getter apis to specify udp port range for webrtc (issue#9042) , changed for codereview * fix l...
[ { "path": "docs/api/web-contents.md", "patch": "@@ -2069,6 +2069,24 @@ Setting the WebRTC IP handling policy allows you to control which IPs are\n exposed via WebRTC. See [BrowserLeaks](https://browserleaks.com/webrtc) for\n more details.\n \n+#### `contents.getWebRTCUDPPortRange()`\n+\n+Returns `Object`:\n...
2023-08-24T21:21:22