repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
fc4a8af4305562aaef19a05c5b7bdfb7400b7a55
0fd1ecded6476378b207cacc8fb4e2f1698830c6
crypto: avoid copying buffers to UTF-8 strings in `crypto.hash()` PR-URL: https://github.com/nodejs/node/pull/59067 Fixes: https://github.com/nodejs/node/issues/59057 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-B...
[ { "path": "src/crypto/crypto_hash.cc", "patch": "@@ -275,26 +275,23 @@ void Hash::OneShotDigest(const FunctionCallbackInfo<Value>& args) {\n }\n \n DataPointer output = ([&]() -> DataPointer {\n- Utf8Value utf8(isolate, args[3]);\n- ncrypto::Buffer<const unsigned char> buf;\n if (args[3]->IsSt...
2025-07-14T07:04:52
vercel/next.js
7c40cde272761107b7b95fcdec75c3095ee6a337
98644a13090e4d8dae04efc5a715bc5967957339
[turbopack] Populate the `names` field of sourcemaps (#87911) Ensure that turbopack produces sourcemaps with the `names` field populated. SWC has support for this but because we are using lower level APIs we need to collect identifiers ourself. This follows the pattern that SWC uses internally in APIs like `Compiler...
[ { "path": "turbopack/crates/turbopack-css/src/module_asset.rs", "patch": "@@ -445,7 +445,7 @@ fn generate_minimal_source_map(filename: String, source: String) -> Result<Rope>\n }\n let sm: Arc<SourceMap> = Default::default();\n sm.new_source_file(FileName::Custom(filename).into(), source);\n- ...
2026-01-06T03:21:31
golang/go
c12c33709923907348837e8131122ec4c45d2c83
bc159638135e751a291fe6753fc8c8c3d61be863
cmd/compile: teach prove about subtract idioms For v = x-y: if y >= 0 then v <= x if y <= x then v >= 0 (With appropriate guards against overflow/underflow.) Fixes #76304 Change-Id: I8f8f1254156c347fa97802bd057a8379676720ae Reviewed-on: https://go-review.googlesource.com/c/go/+/720740 Reviewed-by: Mark Free...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -1945,6 +1945,7 @@ func (ft *factsTable) flowLimit(v *Value) {\n \t\tft.newLimit(v, a.sub(b, uint(v.Type.Size())*8))\n \t\tft.detectMod(v)\n \t\tft.detectSliceLenRelation(v)\n+\t\tft.detectSubRelations(v)\n \tcase OpNeg64, OpNeg32, OpNeg16, OpN...
2025-11-14T23:26:36
electron/electron
5f0603ed2863d7cb1327efa6e704cba91edf68d0
afca4e271e354c7fcbd1378cd08e030259b8de57
fix: `ElectronBrowserContext` `raw_ptr` bug + remove dead code (#46030) refactor: remove unused ElectronBrowserContext::extension_system() Last use removed on Jul 21, 2020 by 2fb14f5 in PR #24575 This fixes a raw_ptr warning by letting us remove the raw_ptr field `ElectronBrowserContext::extension_system_`.
[ { "path": "shell/browser/electron_browser_context.cc", "patch": "@@ -365,10 +365,10 @@ ElectronBrowserContext::ElectronBrowserContext(\n BrowserContextDependencyManager::GetInstance()\n ->CreateBrowserContextServices(this);\n \n- extension_system_ = static_cast<extensions::ElectronExtensionSy...
2025-03-15T04:35:10
vercel/next.js
c5b19eb7f5cf48dffa1b8bf87cd089f079fb031a
3c47bd99afb7babc202898f71a815a8663db42b1
test: reduce flakiness in opentelemetry test for prod mode (#88102) ## Summary Reduces flakiness in the OpenTelemetry e2e test (`test/e2e/opentelemetry/instrumentation/opentelemetry.test.ts`) for production mode. ### Root Cause In production mode, Next.js generates additional spans from: - RSC prefetch requests (wit...
[ { "path": "test/e2e/opentelemetry/instrumentation/instrumentation-test.ts", "patch": "@@ -71,13 +71,13 @@ class TestExporter implements SpanExporter {\n code: ExportResultCode.FAILED,\n error: new Error(`http status ${response.status}`),\n })\n+ return\n }\n+ re...
2026-01-05T12:42:32
facebook/react
476f53879e80d4ee976ed036a0e8986126fa3117
c69a5fc53a5135136668ca878f99b634d2374837
Add getClientRects to fragment instances (#32660) Adds `getClientRects()` to fragment instances with a fixture test case. `Element.getClientRect` returns a collection of `DOMRect`s (see example of multiline span returning two `DOMRect` boxes). `fragmentInstance.getClientRects` here flattens those collections into an a...
[ { "path": "fixtures/dom/src/components/Fixture.js", "patch": "@@ -16,3 +16,7 @@ class Fixture extends React.Component {\n Fixture.propTypes = propTypes;\n \n export default Fixture;\n+\n+Fixture.Controls = function FixtureControls({children}) {\n+ return <div className=\"test-fixture__controls\">{children}...
2025-03-18T17:54:26
golang/go
1297fae7081a3116d2097ce7cfcc0f89ba2cf0fc
65c09eafdf316ef691f0f8eccbf860d2ef5f7c70
go/token: add (*File).End method Also, use it in a number of places. + test, api, relnote Fixes #75849 Change-Id: I44acf5b8190b964fd3975009aa407d7c82cee19b Reviewed-on: https://go-review.googlesource.com/c/go/+/720061 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed...
[ { "path": "api/next/75849.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/token, method (*File) End() Pos #75849", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/token/75849.md", "patch": "@@ -0,0 +1 @@\n+The new [File.End] convenience met...
2025-11-12T23:17:35
nodejs/node
036b1fd66d8e18091c826e644aef872aee92ffcc
0221d6b6521baa6d9969573eb8241048a74c816d
http,https: add built-in proxy support in http/https.request and Agent This patch implements proxy support for HTTP and HTTPS clients and agents in the `http` and `https` built-ins`. When NODE_USE_ENV_PROXY is set to 1, the default global agent would parse the HTTP_PROXY/http_proxy, HTTPS_PROXY/https_proxy, NO_PROXY/n...
[ { "path": "doc/api/errors.md", "patch": "@@ -2491,6 +2491,18 @@ Accessing `Object.prototype.__proto__` has been forbidden using\n [`Object.setPrototypeOf`][] should be used to get and set the prototype of an\n object.\n \n+<a id=\"ERR_PROXY_INVALID_CONFIG\"></a>\n+\n+### `ERR_PROXY_INVALID_CONFIG`\n+\n+Fail...
2025-07-01T23:17:07
electron/electron
c0e180758bc2701cc9efd6f72671559f25e57243
5817d27429827e162c00c0fad523ed309238256b
fix: don't crash Utility Processes on unhandled rejections (#45921) * fix: don't crash on unhandled rejections * Update docs/breaking-changes.md Co-authored-by: Niklas Wenzel <dev@nikwen.de> --------- Co-authored-by: Niklas Wenzel <dev@nikwen.de>
[ { "path": "docs/breaking-changes.md", "patch": "@@ -14,6 +14,19 @@ This document uses the following convention to categorize breaking changes:\n \n ## Planned Breaking API Changes (36.0)\n \n+### Utility Process unhandled rejection behavior change\n+\n+Utility Processes will now warn with an error message w...
2025-03-14T14:09:02
vercel/next.js
3c47bd99afb7babc202898f71a815a8663db42b1
c74cb2ae25bbe515c600b85f1e974f7eb26db576
chore: add Claude Code configuration (#87943) adding basic config with graphite/repo instructions <!-- 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...
[ { "path": ".alexignore", "patch": "@@ -1,3 +1,5 @@\n CODE_OF_CONDUCT.md\n examples/\n **/*/LICENSE.md\n+.claude/\n+CLAUDE.md", "additions": 2, "deletions": 0, "language": "Unknown" }, { "path": ".claude/commands/ci-failures.md", "patch": "@@ -0,0 +1,161 @@\n+# Check CI Failures\n+\n+...
2026-01-05T12:32:27
facebook/react
a35aaf704cca9a5db16f5b197e3ac17eb960b72f
3c3696d5548c8a67f2332fd78332b9366abaf2f9
Update ViewTransition fixture to include bigger buttons/swipe (#32656) I made the button a bit bigger and moved the swipe recognizer around the whole screen. Typically these are used around the whole content without any affordances and not as a standalone scrubber. Ideally the swipe would be able to be inside the anim...
[ { "path": "fixtures/view-transition/src/components/Page.css", "patch": "@@ -8,7 +8,16 @@\n }\n \n .swipe-recognizer {\n- width: 200px;\n- border: 1px solid #333333;\n+ width: 300px;\n+ background: #eee;\n border-radius: 10px;\n+ padding: 20px;\n }\n+\n+.button {\n+ background: #000;\n+ color: #fff;...
2025-03-18T13:24:31
golang/go
65c09eafdf316ef691f0f8eccbf860d2ef5f7c70
594129b80cad4eb291a4185f3ac81699cfb3afd6
runtime: hoist invariant code out of heapBitsSmallForAddrInline The first two instructions in heapBitsSmallForAddrInline are invariant for a given span and object and are called in a loop within ScanObjectsSmall which figures as a hot routine in profiles of some benchmark runs within sweet benchmark suite (x/benchmark...
[ { "path": "src/runtime/mgcmark_greenteagc.go", "patch": "@@ -978,7 +978,9 @@ func spanSetScans(spanBase uintptr, nelems uint16, imb *spanInlineMarkBits, toSc\n }\n \n func scanObjectSmall(spanBase, b, objSize uintptr, gcw *gcWork) {\n-\tptrBits := heapBitsSmallForAddrInline(spanBase, b, objSize)\n+\thbitsBa...
2025-11-07T07:45:02
electron/electron
5817d27429827e162c00c0fad523ed309238256b
4812b4e6c249a6ff346d435fcc21d8e03bfe5073
fix: take Snapped status into account when showing a window (#46006)
[ { "path": "patches/chromium/.patches", "patch": "@@ -142,3 +142,4 @@ feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n fix_win32_synchronous_spellcheck.patch\n fix_enable_wrap_iter_in_string_view_and_array.patch\n fix_linter_error.patch\n+fix_take_snapped_status_into_account_when_...
2025-03-14T14:07:27
nodejs/node
fd717c9feb783b2b7ba4953393563c6101fc12e5
a8e4e0613c0873a2d94a2c1bad292e4961c0ab09
deps: V8: revert rapidhash commits This reverts the following V8 commits: Revert "[string] Fix rapidhash on big endian" This reverts commit 3c6749f39dcaf071f7140d501eb6c507ba7d762e. Revert "Fix build with older gcc and clang compilers" This reverts commit 63cb5b3519339bb90a50f5d2150c527d1a6ab96f. ...
[ { "path": "deps/v8/.gitignore", "patch": "@@ -89,7 +89,6 @@\n /third_party/jsoncpp/source\n !/third_party/llvm-libc\n /third_party/llvm-libc/src\n-!/third_party/rapidhash-v8\n !/third_party/re2\n /third_party/re2/src\n !/third_party/siphash", "additions": 0, "deletions": 1, "language": "Unknown"...
2025-05-09T11:40:21
rust-lang/rust
17c079625c1f8ccd91a9a810e3bd8af73e67ebe8
0e4bafc47cfd39fbe620226e1b9fceeeb8af9e8a
tests/debuginfo/basic-stepping.rs: Add cdb test
[ { "path": "tests/debuginfo/basic-stepping.rs", "patch": "@@ -88,6 +88,45 @@\n //@ lldb-command: frame select\n //@ lldb-check: [...]let m: *const() = &a;[...]\n \n+// === CDB TESTS ===================================================================================\n+\n+// Enable source line support. See\n...
2026-03-13T23:03:43
vercel/next.js
c74cb2ae25bbe515c600b85f1e974f7eb26db576
f3ccca39c7b093561ce16b6a3b24772bfe14287e
Redesign default error pages with cleaner, more user-friendly UI (#87988) - redesigns the default global + default error boundaries. removing the WSOD forever :/ - adds dark mode support - unifies a bit of the styling - add the digest for the server error - adds a return button on the client errors <img width="3328" ...
[ { "path": "packages/next/src/client/components/builtin/app-error.tsx", "patch": "@@ -1,75 +1,31 @@\n import React from 'react'\n+import { errorStyles, errorThemeCss, ErrorIcon } from './error-styles'\n \n-const styles: Record<string, React.CSSProperties> = {\n- error: {\n- // https://github.com/sindreso...
2026-01-05T12:30:06
facebook/react
3c3696d5548c8a67f2332fd78332b9366abaf2f9
90b511ec7a9f2f3fd2b7f0039d8fc52c23f573a1
Measure Updated ViewTransition Boundaries (#32653) This does the same thing for `measureUpdateViewTransition` that we did for `measureNestedViewTransitions` in https://github.com/facebook/react/pull/32612/commits/e3cbaffef05c7b476c07f7495e06788a9503e636. If a boundary hasn't mutated and didn't change in size, we mark ...
[ { "path": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -77,9 +77,9 @@ export default function Page({url, navigate}) {\n <div>\n <button\n onClick={() => {\n- navigate(show ? '/?a' : '/?b');\n+ navigate(url === '/?b' ? '/?a' : '/?b');\n }}>\n- ...
2025-03-18T01:38:13
golang/go
c58d075e9a457fce92bdf60e2d1870c8c4df7dc5
d55ecea9e5a5a4cfba30c6f35d4841ae66e05ccd
crypto/rsa: deprecate PKCS#1 v1.5 encryption Fixes #75302 Change-Id: I6a6a6964c2b3b33bfb34b9677a57610b933bbfab Reviewed-on: https://go-review.googlesource.com/c/go/+/701436 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Mark Freeman <markfreeman@google.com> LUCI-TryBot-Result: Go LUCI <golang-sc...
[ { "path": "api/next/75302.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg crypto/rsa, func DecryptPKCS1v15 //deprecated #75302\n+pkg crypto/rsa, func DecryptPKCS1v15SessionKey //deprecated #75302\n+pkg crypto/rsa, func EncryptPKCS1v15 //deprecated #75302\n+pkg crypto/rsa, type PKCS1v15DecryptOptions //deprecated #753...
2025-09-07T14:07:43
electron/electron
4812b4e6c249a6ff346d435fcc21d8e03bfe5073
7c0b7b417bd7efbda774f76eeb428693c429408c
fix: prevent title change for within page navigation (#45981) * fix: prevent title change for on page navigation * add back and forward testing * update Chromium comment * remove errant script tag
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2057,6 +2057,17 @@ void WebContents::DidFinishNavigation(\n if (is_main_frame) {\n Emit(\"did-navigate\", url, http_response_code, http_status_text);\n }\n+\n+ content::NavigationEntry* entry = navigation_hand...
2025-03-14T11:10:23
rust-lang/rust
b1b87ffdbc24e3928bf0aa4c766cd731ebbc641e
3b1b0ef4d80d3117924d91352c8b6ca528708b3c
Add overview documentation for `std::mem`. I heard that `std::mem` sounds scary to some people, and how it’s described — “Basic functions for dealing with memory” — sounds even to me like something that should be avoided, not even because it would be unsafe, but because it is too low-level. Let’s fix that by telling ...
[ { "path": "library/core/src/mem/mod.rs", "patch": "@@ -1,7 +1,32 @@\n-//! Basic functions for dealing with memory.\n+//! Basic functions for dealing with memory, values, and types.\n //!\n-//! This module contains functions for querying the size and alignment of\n-//! types, initializing and manipulating me...
2026-03-12T19:35:39
vercel/next.js
f3ccca39c7b093561ce16b6a3b24772bfe14287e
40a4c11b078e199a3654cff633f7cd3d905079c5
chore: warn when running tests against stale build (#88001) i got bit by this often :p <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s)...
[ { "path": "jest.config.js", "patch": "@@ -7,6 +7,7 @@ const createJestConfig = nextJest()\n const customJestConfig = {\n displayName: process.env.IS_WEBPACK_TEST ? 'webpack' : 'Turbopack',\n testMatch: ['**/*.test.js', '**/*.test.ts', '**/*.test.jsx', '**/*.test.tsx'],\n+ globalSetup: '<rootDir>/jest-g...
2026-01-05T12:26:58
facebook/react
90b511ec7a9f2f3fd2b7f0039d8fc52c23f573a1
02372952e4f24fa02dcb9b32af26cb2472617cef
fix(react-compiler): implement NumericLiteral as ObjectPropertyKey (#31791)
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -1455,6 +1455,11 @@ function lowerObjectPropertyKey(\n kind: 'identifier',\n name: key.node.name,\n };\n+ } else if (key.isNumericLiteral()) {\n+ return {\n+ kind: 'identifier',\n+ name:...
2025-03-17T23:30:58
nodejs/node
4102dcc2269d12cb576468370419b059c31e72b0
ce4a16f50ae289bf6c7834b592ca47ad4634dd79
doc: fix typed list formatting PR-URL: https://github.com/nodejs/node/pull/59019 Refs: https://github.com/nodejs/api-docs-tooling/issues/348 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Claudio Wunder <cwunder@gnome.org>
[ { "path": "doc/api/async_context.md", "patch": "@@ -303,7 +303,7 @@ asyncLocalStorage.getStore(); // Returns the same object\n added: v24.0.0\n -->\n \n-* {string}\n+* Type: {string}\n \n The name of the `AsyncLocalStorage` instance if provided.\n ", "additions": 1, "deletions": 1, "language": "...
2025-07-15T17:18:42
electron/electron
7c0b7b417bd7efbda774f76eeb428693c429408c
785fe5f3b631c9d451b1f787db1e524f648198a2
fix: emit `context-menu` event in Windows draggable regions (#45851) fix: emit context-menu event in Windows draggable regions
[ { "path": "shell/browser/native_window_views_win.cc", "patch": "@@ -10,6 +10,7 @@\n #include \"base/win/scoped_handle.h\"\n #include \"base/win/windows_version.h\"\n #include \"content/public/browser/browser_accessibility_state.h\"\n+#include \"shell/browser/api/electron_api_web_contents.h\"\n #include \"sh...
2025-03-14T09:29:29
rust-lang/rust
ddd1a69483c9a5503b5f2e0b563d9b015f164b86
314e224fa5cd0312975eaac809203baa108e743a
Remove `Clone` derive on `QueryJobInfo`. This requires refactoring `depth_limit_error` to do some extra work immediately instead of returning a cloned `info`.
[ { "path": "compiler/rustc_query_impl/src/job.rs", "patch": "@@ -46,7 +46,7 @@ impl<'tcx> QueryJobMap<'tcx> {\n }\n }\n \n-#[derive(Clone, Debug)]\n+#[derive(Debug)]\n pub(crate) struct QueryJobInfo<'tcx> {\n pub(crate) frame: QueryStackFrame<'tcx>,\n pub(crate) job: QueryJob<'tcx>,\n@@ -88,26 +8...
2026-03-10T03:00:45
golang/go
410ef44f0054a9ab20a901895edb7db5a4d0aad7
50128a21541e3fd712ad717a223aaa109cb86d43
cmd: update x/tools to 59ff18c $ go get golang.org/x/tools@59ff18c $ GOWORK=off go mod tidy $ GOWORK=off go mod vendor This implies golang.org/x/sys@v0.38.0, for which I have also updated src/go.mod for consistency. I also upgraded x/mod@3f03020 to bring in some fixes to code that go vet would otherwise have flag...
[ { "path": "src/cmd/go.mod", "patch": "@@ -6,12 +6,12 @@ require (\n \tgithub.com/google/pprof v0.0.0-20250630185457-6e76a2b096b5\n \tgolang.org/x/arch v0.22.1-0.20251016010524-fea4a9ec4938\n \tgolang.org/x/build v0.0.0-20250806225920-b7c66c047964\n-\tgolang.org/x/mod v0.29.0\n-\tgolang.org/x/sync v0.17.0\n-...
2025-11-11T19:56:59
facebook/react
02372952e4f24fa02dcb9b32af26cb2472617cef
9fde224a53693101a4d15e038d6db37e7a3596ff
Don't auto-start browser in SSR fixtures (#32652) I end up restarting these a lot and it's annoying to have it open another tab each time. The flight fixture already doesn't auto-start.
[ { "path": "fixtures/ssr/package.json", "patch": "@@ -20,7 +20,7 @@\n \"prestart\": \"cp -r ../../build/oss-experimental/* ./node_modules/\",\n \"prebuild\": \"cp -r ../../build/oss-experimental/* ./node_modules/\",\n \"dev\": \"concurrently \\\"npm run dev:server\\\" \\\"npm run dev:client\\\"\"...
2025-03-17T21:26:00
nodejs/node
049664bbdc421c63b2145c85a18c64d184b40aa5
a47274595888cb9e672c1bce3157a3eab2c50ab2
repl: fix repl crashing on variable declarations without init PR-URL: https://github.com/nodejs/node/pull/59032 Fixes: https://github.com/nodejs/node/issues/59029 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/repl.js", "patch": "@@ -1735,6 +1735,10 @@ function findExpressionCompleteTarget(code) {\n // what we can potentially complete on, so let's re-run the function's logic on that\n if (lastBodyStatement.type === 'VariableDeclaration') {\n const lastDeclarationInit = lastBodyStatement.dec...
2025-07-11T16:43:10
vercel/next.js
fa56f2c1fa02fcaeca08358725a9565a7a5997ac
8aa9feb379334d02bd6968c19fbf0eb97b6e9eca
fix: revalidateTag with profile should not trigger client cache invalidation (#88069) ## Summary Fixes a bug where calling `revalidateTag(tag, profile)` incorrectly triggers client-side cache invalidation, causing read-your-own-writes behavior that violates stale-while-revalidate semantics. ### The Problem When `re...
[ { "path": "packages/next/src/server/app-render/action-handler.ts", "patch": "@@ -160,7 +160,14 @@ function addRevalidationHeader(\n // TODO-APP: Currently paths are treated as tags, so the second element of the tuple\n // is always empty.\n \n- const isTagRevalidated = workStore.pendingRevalidatedTags?...
2026-01-04T16:30:32
rust-lang/rust
60bd8e36cd8f2b534ba2979ddc04cef7a34dca32
1867653c81ac31900ae623e3970dba8f833bf870
Enable the const_closures feature gate to silence an unrelated error
[ { "path": "tests/ui/traits/const-traits/ice-112822-expected-type-for-param.rs", "patch": "@@ -1,8 +1,9 @@\n-#![feature(const_trait_impl)]\n+#![feature(const_trait_impl, const_closures)]\n+#![allow(incomplete_features)]\n \n const fn test() -> impl [const] Fn() {\n //~^ ERROR: }: [const] Fn()` is not sat...
2026-03-13T07:37:12
facebook/react
9320a0139df876509c8ebb6f6fd950a6690bd5d9
fbcda19a23da819889afdd7164b29c556fbcfc7a
Fix COMMIT_SHA when generating PR artifacts (#32647) Follow-up to #31850. We want to build using the original commit SHA, not the merge commit that GitHub Actions creates behind the scenes. We were already checking out the correct commit object, but the COMMIT_SHA artifact was still pointing to the merge commit. This...
[ { "path": ".github/workflows/runtime_build_and_test.yml", "patch": "@@ -330,7 +330,7 @@ jobs:\n merge-multiple: true\n - name: Display structure of build\n run: ls -R build\n- - run: echo ${{ github.sha }} >> build/COMMIT_SHA\n+ - run: echo ${{ github.event.pull_request.hea...
2025-03-17T16:46:27
golang/go
aea881230dcc640ad730d3759423104074577756
120f1874ef380362cf8b8c4775a327bcd417ff70
std: fix printf("%q", int) mistakes For #72850 Change-Id: I07e64f05c82a34b1dadb9a72e16f5045e68cbd24 Reviewed-on: https://go-review.googlesource.com/c/go/+/720642 Auto-Submit: Alan Donovan <adonovan@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI...
[ { "path": "src/cmd/compile/internal/ir/fmt.go", "patch": "@@ -574,7 +574,7 @@ func exprFmt(n Node, s fmt.State, prec int) {\n \t\t// Special case for rune constants.\n \t\tif typ == types.RuneType || typ == types.UntypedRune {\n \t\t\tif x, ok := constant.Uint64Val(val); ok && x <= utf8.MaxRune {\n-\t\t\t\t...
2025-11-14T19:59:36
nodejs/node
0d128e39efaa82dc9550232a7382f70462c8eb4e
e3e739de63b0df9663411f4da9997055ab5a66e2
doc: add missing environment variables to manpage PR-URL: https://github.com/nodejs/node/pull/58963 Fixes: https://github.com/nodejs/node/issues/58894 Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/node.1", "patch": "@@ -696,12 +696,22 @@ disabled.\n .It Ev NO_COLOR\n Alias for NODE_DISABLE_COLORS\n .\n+.It Ev NODE_COMPILE_CACHE Ar dir\n+Enable the\n+.Sy module compile cache\n+for the Node.js instance.\n+.\n .It Ev NODE_DEBUG Ar modules...\n Comma-separated list of core modules that sho...
2025-07-11T07:38:24
vercel/next.js
69ae2c10e72e20df6b098197364d354d20376864
d4c73df3c76c123fcc5b807323c9625057dc65b8
fix: normalize CRLF line endings in jscodeshift tests on Windows (#88008) ## Summary Fixes flaky jscodeshift codemod tests on Windows CI (e.g., `next-async-request-api-dynamic-apis.test.js`, `built-in-next-font.test.js`, `new-link.test.js`). ### Problem Windows CI runners have `core.autocrlf=true` by default, which...
[ { "path": ".gitattributes", "patch": "@@ -1,3 +1,6 @@\n+# Enforce LF line endings for all text files (fixes Windows CRLF test flakiness)\n+* text=auto eol=lf\n+\n .github/actions/*/dist/** -text linguist-vendored\n packages/next/bundles/** -text linguist-vendored\n packages/next/compiled/** -text linguist-v...
2026-01-03T08:15:48
golang/go
120f1874ef380362cf8b8c4775a327bcd417ff70
fecfcaa4f68a220f47e2c7c8b65d55906dbf8d46
runtime: add more precise test of assist credit handling for runtime.freegc This CL is part of a set of CLs that attempt to reduce how much work the GC must do. See the design in https://go.dev/design/74299-runtime-freegc This CL adds a better test of assist credit handling when heap objects are being reused after a ...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -644,6 +644,25 @@ func Freegc(p unsafe.Pointer, size uintptr, noscan bool) {\n \tfreegc(p, size, noscan)\n }\n \n+// Expose gcAssistBytes for the current g for testing.\n+func AssistCredit() int64 {\n+\tassistG := getg()\n+\tif assistG.m.curg != nil {\n+\...
2025-11-03T21:40:40
facebook/react
cd28a946d57695a025581c0ff851bde08ea6ca27
8243f3f0631698e819c690710a7f18f767068981
Add observer methods to fragment instances (#32619) This implements `observeUsing(observer)` and `unobserverUsing(observer)` on fragment instances. IntersectionObservers and ResizeObservers can be passed to observe each host child of the fragment. This is the equivalent to calling `observer.observe(child)` or `observe...
[ { "path": "fixtures/dom/src/components/fixtures/fragment-refs/EventListenerCase.js", "patch": "@@ -0,0 +1,96 @@\n+import TestCase from '../../TestCase';\n+import Fixture from '../../Fixture';\n+\n+const React = window.React;\n+const {Fragment, useEffect, useRef, useState} = React;\n+\n+function WrapperCompo...
2025-03-17T15:40:05
electron/electron
4a28e60e89919a569a24f1d37e0b0ad8ebc26071
a90d50e13f71b2371868b7b545e0ba28b38ca392
fix: package import existence verification (#45997)
[ { "path": "patches/node/fix_allow_passing_fileexists_fn_to_legacymainresolve.patch", "patch": "@@ -53,7 +53,7 @@ index 2879e5cf541fb4d226cfd7cc0fe367ca448fb926..03082f0ec4f91382933eec48e77331cd\n const maybeMain = resolvedOption <= legacyMainResolveExtensionsIndexes.kResolvedByMainIndexNode ?\n pack...
2025-03-13T19:51:43
nodejs/node
b7db89f491f981d493de4057fbde471e4c84ac84
09b4c5769a59bef1f5b999fe770155cb505ee3f8
inspector: initial support for Network.loadNetworkResource Fixes: https://github.com/nodejs/node/issues/57873 PR-URL: https://github.com/nodejs/node/pull/58077 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -1069,6 +1069,17 @@ passing a second `parentURL` argument for contextual resolution.\n \n Previously gated the entire `import.meta.resolve` feature.\n \n+### `--experimental-inspector-network-resource`\n+\n+<!-- YAML\n+added:\n+ - REPLACEME\n+-->\n+\n+> Stability: 1...
2025-07-10T12:34:11
vercel/next.js
942eb14d7c82886b1f896713e6629108669b3105
754770add2df895fea3a12b7939ebe0d34be562d
misc: fix type check log for CI envs (#87838) this fixes the case where we would not show the typescritp check duration in a CI/non interactive env <!-- 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 sect...
[ { "path": "packages/next/src/build/type-check.ts", "patch": "@@ -136,12 +136,12 @@ export async function startTypeChecking({\n \n if (typeCheckingSpinner) {\n typeCheckingSpinner.stop()\n-\n- createSpinner(\n- `Finished TypeScript${ignoreTypeScriptErrors ? ' config validation' : ''} in...
2025-12-29T11:50:02
facebook/react
8243f3f0631698e819c690710a7f18f767068981
df319522758b7fdfed3ddfa517cc1cc298ef1602
[bug] Fix component name for Portal and add tests (#32640) Based off: https://github.com/facebook/react/pull/32499 While looking into `React.lazy` issues for built-ins, I noticed we already error for `lazy` with build-ins, but we don't have any tests for `getComponentNameFromType` using all the built-ins. This may be...
[ { "path": "packages/react-reconciler/src/__tests__/ReactLazy-test.internal.js", "patch": "@@ -791,7 +791,7 @@ describe('ReactLazy', () => {\n );\n });\n \n- it('throws with a useful error when wrapping fragment with lazy()', async () => {\n+ it('throws with a useful error when wrapping Fragment with...
2025-03-17T15:23:28
nodejs/node
793a2792d5777cd59ec150e445196ffbabbc1421
794a13fa98e2d6a97b2209dc0beddf733d8b2083
module: throw error when re-runing errored module jobs Re-evaluating an errored ESM should lead to rejecting the rejection again - this is also the case when importing it twice. In the case of retrying with require after import, just throw the cached error. Drive-by: add some debug logs. PR-URL: https://github.com/no...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -43,6 +43,7 @@ const {\n kEvaluating,\n kEvaluationPhase,\n kInstantiated,\n+ kErrored,\n kSourcePhase,\n throwIfPromiseRejected,\n } = internalBinding('module_wrap');\n@@ -402,6 +403,9 @@ class ModuleLoader {\n mod[kRequiredMod...
2025-07-09T16:39:29
golang/go
fecfcaa4f68a220f47e2c7c8b65d55906dbf8d46
5a347b775e051060f6f52ce25ec82a024a3a9365
runtime: add runtime.freegc to reduce GC work This CL is part of a set of CLs that attempt to reduce how much work the GC must do. See the design in https://go.dev/design/74299-runtime-freegc This CL adds runtime.freegc: func freegc(ptr unsafe.Pointer, uintptr size, noscan bool) Memory freed via runtime.freegc is ...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2464,10 +2464,11 @@ var blockedLinknames = map[string][]string{\n \t// Experimental features\n \t\"runtime.goroutineLeakGC\": {\"runtime/pprof\"},\n \t\"runtime.goroutineleakcount\": {\"runtime/pprof\"},\n+\t\"runtime.freegc\": ...
2025-11-04T14:33:17
electron/electron
a90d50e13f71b2371868b7b545e0ba28b38ca392
962d8b325aa2ace6a72f0606ddc2e1ac65ee0907
fix: don't crash Web Workers on unhandled rejections (#45992)
[ { "path": "shell/renderer/web_worker_observer.cc", "patch": "@@ -85,6 +85,9 @@ void WebWorkerObserver::WorkerScriptReadyForEvaluation(\n }\n }\n \n+ // We do not want to crash Web Workers on unhandled rejections.\n+ env->options()->unhandled_rejections = \"warn-with-error-code\";\n+\n // Add Elect...
2025-03-13T18:09:23
vercel/next.js
c68d18c507a278079581f54b13b2c98c79dc8374
2446efeaa631e3262c714c72695d7db63d20b283
fix(examples): resolve hydration mismatch in blog-starter (#87703) ## What? Add `suppressHydrationWarning` to the `<html>` element in the blog-starter example. ## Why? The ThemeSwitcher script runs before React hydration and adds `dark` class and `data-mode` attribute to the `<html>` element, causing a hydration mism...
[ { "path": "examples/blog-starter/src/app/layout.tsx", "patch": "@@ -23,7 +23,7 @@ export default function RootLayout({\n children: React.ReactNode;\n }>) {\n return (\n- <html lang=\"en\">\n+ <html lang=\"en\" suppressHydrationWarning>\n <head>\n <link\n rel=\"apple-touch-i...
2025-12-23T21:02:35
facebook/react
99563e91736e9de473c4865d5cb6fd9eb1a26bcb
17d274dc127400b31379a1b26c5be53599c36aa5
Partially revert #32588 (#32621) https://github.com/facebook/react/pull/32588 changed the babel config impacting local tests, and I'm not able to run test: <img width="1354" alt="Screenshot 2025-03-15 at 2 37 00 PM" src="https://github.com/user-attachments/assets/2d4afe39-6ab6-4c83-87a9-ceb0ee5f8df5" /> This PR rev...
[ { "path": "babel.config.js", "patch": "@@ -4,8 +4,7 @@ module.exports = {\n plugins: [\n '@babel/plugin-syntax-jsx',\n '@babel/plugin-transform-flow-strip-types',\n- ['@babel/plugin-transform-class-properties', {loose: true}],\n- '@babel/plugin-transform-classes',\n+ ['@babel/plugin-propo...
2025-03-15T19:21:57
nodejs/node
af2ba368162d750da72d4eb40074735f3d4eed2e
8b84efc05f441c22f7409a80e93ac9926b1a8645
lib: fix incorrect `ArrayBufferPrototypeGetDetached` primordial type PR-URL: https://github.com/nodejs/node/pull/58978 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Revie...
[ { "path": "typings/primordials.d.ts", "patch": "@@ -164,7 +164,7 @@ declare namespace primordials {\n export import ArrayBuffer = globalThis.ArrayBuffer;\n export const ArrayBufferPrototype: typeof ArrayBuffer.prototype\n export const ArrayBufferIsView: typeof ArrayBuffer.isView\n- export const Array...
2025-07-09T11:05:39
golang/go
1a03d0db3f36c1a81a184fa15a54f716569a9972
cb0d9980f5721715ebb73dd2e580eaa11c2ddee2
runtime: skip tests for GOEXPERIMENT=arenas that do not handle clobberfree=1 When run with GODEBUG=clobberfree=1, three out of seven of the top-level tests in runtime/arena_test.go fail with a SIGSEGV inside the clobberfree function where it is overwriting freed memory with 0xdeadbeef. This is not a new problem. For ...
[ { "path": "src/runtime/arena_test.go", "patch": "@@ -36,6 +36,11 @@ type largeScalar [UserArenaChunkBytes + 1]byte\n type largePointer [UserArenaChunkBytes/unsafe.Sizeof(&smallPointer{}) + 1]*smallPointer\n \n func TestUserArena(t *testing.T) {\n+\tif Clobberfree() {\n+\t\t// This test crashes with SEGV in ...
2025-11-05T17:18:49
electron/electron
5ce41bac8d1c84dde5693b37fe4a4d91edbeff04
6bc7bde2293e9f845b6c60d7280f810fac8b219b
fix: `system-context-menu` should only fire in draggable regions (#45893) fix: system-context-menu should only fire in draggable regions
[ { "path": "patches/chromium/.patches", "patch": "@@ -83,7 +83,7 @@ feat_filter_out_non-shareable_windows_in_the_current_application_in.patch\n disable_freezing_flags_after_init_in_node.patch\n short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch\n chore_add_electron_deps_to_gitignores.patc...
2025-03-12T12:47:58
vercel/next.js
2446efeaa631e3262c714c72695d7db63d20b283
31b62520366aefef9d6800cd519157a16f958052
fix: Change Dockerfile.bun to use group/useradd instead of addgroup/user (#87443) <!-- 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'r...
[ { "path": "examples/with-docker/Dockerfile.bun", "patch": "@@ -37,8 +37,8 @@ ENV NODE_ENV=production \\\n PORT=3000 \\\n HOSTNAME=\"0.0.0.0\"\n \n-RUN addgroup --system --gid 1001 nodejs && \\\n- adduser --system --uid 1001 nextjs\n+RUN groupadd --system --gid 1001 nodejs && \\\n+ useradd --sy...
2025-12-23T17:34:44
rust-lang/rust
384f363b7023244df33bef7eb8070a334eae9b48
0e4bafc47cfd39fbe620226e1b9fceeeb8af9e8a
change "error finalizing incremental compilation" from warning to note The warning has no error code, so in a `-D warnings` environment, it's impossible to ignore if it consistently breaks your build. Change it to a note so it is still visible, but doesn't break the build
[ { "path": "compiler/rustc_incremental/src/persist/fs.rs", "patch": "@@ -366,7 +366,7 @@ pub fn finalize_session_directory(sess: &Session, svh: Option<Svh>) {\n }\n Err(e) => {\n // Warn about the error. However, no need to abort compilation now.\n- sess.dcx().emit_warn...
2026-03-13T18:32:54
facebook/react
2c560374d6276c51cfeeff7af39628058c155a13
2e385738a4dfd1554c146f6313b1530a09b5ce78
Measure and apply names for the "new" phase (#32612) Stacked on #32599 and #32611. This is able to reuse the code from CommitViewTransitions for "enter", "shared" and "layout". The difference is that for "enter"/"shared" in the "new" phase we pass in the deletions. For "layout" of nested boundaries we just need to m...
[ { "path": "packages/react-reconciler/src/ReactFiberApplyGesture.js", "patch": "@@ -62,6 +62,8 @@ import {\n restoreEnterOrExitViewTransitions,\n restoreNestedViewTransitions,\n appearingViewTransitions,\n+ commitEnterViewTransitions,\n+ measureNestedViewTransitions,\n } from './ReactFiberCommitViewT...
2025-03-14T18:26:55
nodejs/node
8b84efc05f441c22f7409a80e93ac9926b1a8645
0992d28011effcd1922342a82e879cb22184e0fc
meta: add marco-ippolito to security release stewards PR-URL: https://github.com/nodejs/node/pull/58944 Fixes: https://github.com/nodejs/TSC/issues/1764 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Gire...
[ { "path": "README.md", "patch": "@@ -880,6 +880,9 @@ releases on a rotation basis as outlined in the\n * [Datadog](https://www.datadoghq.com/)\n * [bengl](https://github.com/bengl) -\n **Bryan English** <<bryan@bryanenglish.com>> (he/him)\n+* [HeroDevs](https://www.herodevs.com/)\n+ * [marco-ippolito...
2025-07-09T10:16:58
golang/go
03ed43988ff7f7671094d8c455532de7f2242e70
1bb1f2bf0c07bbc583063a21b324407f7041e316
cmd/compile: allow multi-field structs to be stored directly in interfaces If the struct is a bunch of 0-sized fields and one pointer field. Merged revert-of-revert for 4 CLs. original revert 681937 695016 693415 694996 693615 695015 694195 694995 Fixes #74092 Update #74888 Update #74908 Update #74935 ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/dec.rules", "patch": "@@ -97,8 +97,10 @@\n // Helpers for expand calls\n // Some of these are copied from generic.rules\n \n-(IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect [0] (IData x)) => (IData x)\n+(IMake _typ (StructMake ___)) => imakeOfSt...
2025-06-15T03:10:50
electron/electron
dcd319cfbed3027b9b946f09a2d74944db1b089d
cd56b965442d254ff8801446303343f36ea8acef
build: roll sysroots to pick up glibc fix (#45974)
[ { "path": "script/sysroots.json", "patch": "@@ -1,14 +1,14 @@\n {\n \"bullseye_amd64\": {\n \"Key\": \"20230611T210420Z-2\",\n- \"Sha256Sum\": \"7c93e71bf9c4cd0825aa59fb2479054d981e36ba9be34ecf4c1d73051cae40fe\",\n+ \"Sha256Sum\": \"0be326b106f0df7b8547ec8d3b58ccb95435c8414a45cda67...
2025-03-11T21:31:48
vercel/next.js
c2001edd618aa61942271e1c9a5f9d8d1043888d
0a21e7dd753649b6e300d6b8ec83963d5a4ae1eb
fix: correct quotes in dev script filter in package.json (#87638) ### What? Fixes a pnpm workspace resolution error where the `dev` script attempted to filter `@next/bundle-analyzer-ui`, which is not defined as a workspace package, resulting in: `No package found with name '@next/bundle-analyzer-ui' in workspace` ##...
[ { "path": "package.json", "patch": "@@ -11,7 +11,7 @@\n \"clean\": \"lerna clean -y && lerna bootstrap && lerna run clean && lerna exec 'node ../../scripts/rm.mjs dist'\",\n \"build\": \"turbo run build --remote-cache-timeout 60 --summarize true\",\n \"lerna\": \"lerna\",\n- \"dev\": \"turbo ...
2025-12-22T13:50:20
rust-lang/rust
fed57899b93d6e17b00bf00326d7b9aebdccc6e0
cdbe2b35b55bb38ac503e0989e69cca9aa530ce5
Remove `value_from_cycle_error` specialization for `type_of`
[ { "path": "compiler/rustc_query_impl/src/from_cycle_error.rs", "patch": "@@ -21,11 +21,6 @@ use rustc_span::{ErrorGuaranteed, Span};\n use crate::job::report_cycle;\n \n pub(crate) fn specialize_query_vtables<'tcx>(vtables: &mut QueryVTables<'tcx>) {\n- vtables.type_of.value_from_cycle_error = |tcx, _, _...
2026-03-12T16:02:49
nodejs/node
0992d28011effcd1922342a82e879cb22184e0fc
4de01974413bba0cd04d1b148169a0cd8c25ec20
test: add missing port=0 arg in test-debugger-extract-function-name PR-URL: https://github.com/nodejs/node/pull/58977 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/parallel/test-debugger-extract-function-name.mjs", "patch": "@@ -7,7 +7,7 @@ import startCLI from '../common/debugger.js';\n \n import assert from 'assert';\n \n-const cli = startCLI([path('debugger', 'three-lines.js')]);\n+const cli = startCLI(['--port=0', path('debugger', 'three-lines.js')...
2025-07-08T23:18:27
golang/go
1bb1f2bf0c07bbc583063a21b324407f7041e316
9fd2e4443955127ed360338cb19a5aeba6be1a8c
runtime: put AddCleanup cleanup arguments in their own allocation Currently, AddCleanup just creates a simple closure that calls `cleanup(arg)` as the actual cleanup function tracked internally. However, the argument ends up getting its own allocation. If it's tiny, then it can also end up sharing a tiny allocation sl...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -72,8 +72,9 @@ import (\n // pass the object to the [KeepAlive] function after the last point\n // where the object must remain reachable.\n func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n-\t// Explicitly force ptr to escape to the heap...
2025-11-13T18:29:23
facebook/react
5398b7115847e87c0053aa719728d8dd1a635ccd
f3c956006a90dc68210bd3e19497d10fb9b028d3
[compiler] detect and throw on untransformed required features (#32512) Traverse program after running compiler transform to find untransformed references to compiler features (e.g. `inferEffectDeps`, `fire`). Hard error to fail the babel pipeline when the compiler fails to transform these features to give predictabl...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Babel/BabelPlugin.ts", "patch": "@@ -11,6 +11,7 @@ import {\n injectReanimatedFlag,\n pipelineUsesReanimatedPlugin,\n } from '../Entrypoint/Reanimated';\n+import validateNoUntransformedReferences from '../Entrypoint/ValidateNoUntransformedRefe...
2025-03-14T15:44:49
vercel/next.js
a3048c637116e3ef8c1468cbd19adb25a62a3720
7fb2aa908216fb3a910c7fa6d24524412b5af6e5
Turbopack: Create junction points instead of symlinks on Windows (#87606) Next 16.1 changed Turbopack's external packaging to use symlinks. Symlinks require elevated privileges on Windows if "Developer Mode" is not enabled. We can work around this by using junction points, which are mostly equivalent, but: - They on...
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -1274,9 +1274,29 @@ export async function copyTracedFiles(\n if (symlink) {\n try {\n await fs.symlink(symlink, fileOutputPath)\n- } catch (e: any) {\n- if (e.code !== 'EEXIST') {\n- ...
2025-12-22T09:38:22
rust-lang/rust
cdbe2b35b55bb38ac503e0989e69cca9aa530ce5
791f4f9315cdf85c5137c26070f2818d332d66b7
Remove `value_from_cycle_error` specialization for `erase_and_anonymize_regions_ty`
[ { "path": "compiler/rustc_query_impl/src/from_cycle_error.rs", "patch": "@@ -26,11 +26,6 @@ pub(crate) fn specialize_query_vtables<'tcx>(vtables: &mut QueryVTables<'tcx>) {\n erase_val(ty::EarlyBinder::bind(Ty::new_error(tcx, guar)))\n };\n \n- vtables.erase_and_anonymize_regions_ty.value_fro...
2026-03-12T15:35:50
electron/electron
22262c14f1f8ba2664bad2f7554f9e9c8c0e595b
6e056709bef91d796b502ace65856fd4a3b5b96d
test: fix timing issue in `utilityProcess` test fixtures (#45964) * fix: potential timing issue in utilityProcess test * fix: potential timing issue in utilityProcess esm test
[ { "path": "spec/fixtures/api/utility-process/dns-result-order.js", "patch": "@@ -1,4 +1,6 @@\n const dns = require('node:dns');\n \n-console.log(dns.getDefaultResultOrder());\n-process.exit(0);\n+const write = (writable, chunk) => new Promise((resolve) => writable.write(chunk, resolve));\n+\n+write(process....
2025-03-11T16:41:42
nodejs/node
4de01974413bba0cd04d1b148169a0cd8c25ec20
eff504ff1214d58814f697a4c077e79f98c0806c
net: update net.blocklist to allow file save and file management PR-URL: https://github.com/nodejs/node/pull/58087 Fixes: https://github.com/nodejs/node/issues/56252 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/net.md", "patch": "@@ -181,6 +181,38 @@ added:\n * `value` {any} Any JS value\n * Returns `true` if the `value` is a `net.BlockList`.\n \n+### `blockList.fromJSON(value)`\n+\n+> Stability: 1 - Experimental\n+\n+ <!-- YAML\n+added: REPLACEME\n+-->\n+\n+```js\n+const blockList = new net.Blo...
2025-07-08T20:37:51
facebook/react
e9d80d939ee0f6b1d6146eb11917c433a7791d17
ef1103d3e92168803000e12d9a27cb7440e5e1c8
Revert "[ci] Fix node_modules cache glob (#32604)" (#32606) This reverts commit ef1103d3e92168803000e12d9a27cb7440e5e1c8. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32606). * #32609 * #32608 * #3...
[ { "path": ".github/workflows/compiler_playground.yml", "patch": "@@ -36,9 +36,8 @@ jobs:\n uses: actions/cache@v4\n id: node_modules\n with:\n- path: |\n- **/node_modules\n- key: compiler-node_modules-v2-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('...
2025-03-14T01:52:46
vercel/next.js
9b44e2f2ee4bff2ed40316e3ca1d6c8ad8e93259
a350c2bca58dfaafa5a41c74d5cb09893b49e264
docs: fix typos and clarify examples in Cache Components guide (#87530)
[ { "path": "docs/01-app/01-getting-started/06-cache-components.mdx", "patch": "@@ -86,7 +86,7 @@ export default async function Page() {\n }\n ```\n \n-> **Good to know**: You can verify that a route was fully prerendered by checking the build output summary. Alternatively see what content was added to the st...
2025-12-20T22:11:01
golang/go
7a8d0b5d53dc7be331016b6903707aa256e22c2a
710abf74da2a017423e35e416ab3fd05e6053bf3
runtime: add debug mode to extend _Grunning-without-P windows This was suggested in CL 646198, and I tested with it, I forgot to push it so it wasn't merged. I think it might be worth keeping. Change-Id: Ibf97d969fe7d0eeb365f5f7b1fbeadea3a1076ab Reviewed-on: https://go-review.googlesource.com/c/go/+/716580 Reviewed-b...
[ { "path": "src/runtime/proc.go", "patch": "@@ -4658,6 +4658,11 @@ func reentersyscall(pc, sp, bp uintptr) {\n \tgp.m.locks--\n }\n \n+// debugExtendGrunningNoP is a debug mode that extends the windows in which\n+// we're _Grunning without a P in order to try to shake out bugs with code\n+// assuming this st...
2025-10-30T17:24:47
rust-lang/rust
791f4f9315cdf85c5137c26070f2818d332d66b7
0e4bafc47cfd39fbe620226e1b9fceeeb8af9e8a
Remove `value_from_cycle_error` specialization for `type_of_opaque_hir_typeck`
[ { "path": "compiler/rustc_query_impl/src/from_cycle_error.rs", "patch": "@@ -26,11 +26,6 @@ pub(crate) fn specialize_query_vtables<'tcx>(vtables: &mut QueryVTables<'tcx>) {\n erase_val(ty::EarlyBinder::bind(Ty::new_error(tcx, guar)))\n };\n \n- vtables.type_of_opaque_hir_typeck.value_from_cyc...
2026-03-12T14:55:28
electron/electron
eb126eecb0e259fafafe8097c1cb8dac017dd07e
4e1a915f1a1caf09d6e93ae030e809f71272b8fb
docs: Add 'Native Code and Electron' (#45882) * docs: Add 'Native Code and Electron' * docs: Add node-gyp requirements * Update docs/tutorial/native-code-and-electron.md Co-authored-by: Erick Zhao <erick@hotmail.ca> * Cross-platform clean command * Mention napi-rs * Apply suggestions from code review Co-authore...
[ { "path": "docs/tutorial/native-code-and-electron.md", "patch": "@@ -0,0 +1,380 @@\n+# Native Code and Electron\n+\n+One of Electron's most powerful features is the ability to combine web technologies with native code - both for compute-intensive logic as well as for the occasional native user interface, wh...
2025-03-10T20:45:33
nodejs/node
1c4fe6d795ca8e318503fe0d78585d9ba99a31df
c7eff619c218c84a512e3582aae745c9c36b0cba
crypto: support outputLength option in crypto.hash for XOF functions Support `outputLength` option in crypto.hash() for XOF hash functions to align with the behaviour of crypto.createHash() API closes: https://github.com/nodejs/node/issues/57312 Co-authored-by: Filip Skokan <panva.ip@gmail.com> PR-URL: https://githu...
[ { "path": "deps/ncrypto/ncrypto.cc", "patch": "@@ -4191,6 +4191,22 @@ DataPointer hashDigest(const Buffer<const unsigned char>& buf,\n return data.resize(result_size);\n }\n \n+DataPointer xofHashDigest(const Buffer<const unsigned char>& buf,\n+ const EVP_MD* md,\n+ ...
2025-07-08T13:39:00
golang/go
a0e738c657d33e2a648838546812fb50cf42e41d
2cdcc4150bc577e0b40a9cedaaa7c8301f2860cd
cmd/compile/internal: remove incorrect riscv64 SLTI rule The rule (SLTI [x] (ORI [y] _)) && y >= 0 && int64(y) >= int64(x) => (MOVDconst [0]) is incorrect as it only generates correct code if the unknown value being compared is >= 0. If the unknown value is < 0 the rule will incorrectly produce a constant value of...
[ { "path": "src/cmd/compile/internal/ssa/_gen/RISCV64.rules", "patch": "@@ -792,7 +792,6 @@\n // SLTI/SLTIU with known outcomes.\n (SLTI [x] (ANDI [y] _)) && y >= 0 && int64(y) < int64(x) => (MOVDconst [1])\n (SLTIU [x] (ANDI [y] _)) && y >= 0 && uint64(y) < uint64(x) => (MOVDconst [1])\n-(SLTI [x] (ORI [...
2025-11-13T11:28:29
vercel/next.js
a350c2bca58dfaafa5a41c74d5cb09893b49e264
100253c450f67eba6b9a0d936c1eedbe3a8446cf
docs: tweaks/fixes to papercuts (#87445)
[ { "path": "docs/01-app/01-getting-started/16-proxy.mdx", "patch": "@@ -52,7 +52,6 @@ export function proxy(request: NextRequest) {\n // Alternatively, you can use a default export:\n // export default function proxy(request: NextRequest) { ... }\n \n-// See \"Matching Paths\" below to learn more\n export co...
2025-12-20T21:09:21
facebook/react
ef1103d3e92168803000e12d9a27cb7440e5e1c8
67338703aa52d662998733e58671dc9fe1edae47
[ci] Fix node_modules cache glob (#32604) Seems like the stringified cache path can cause some directories not to be cached, trying an alternative format
[ { "path": ".github/workflows/compiler_playground.yml", "patch": "@@ -36,8 +36,9 @@ jobs:\n uses: actions/cache@v4\n id: node_modules\n with:\n- path: \"**/node_modules\"\n- key: compiler-node_modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('compiler/**/yar...
2025-03-14T00:59:27
electron/electron
f2b09ff0bd319d4609a13958f55e8a2f62049b03
b0c11371e0bb37fc1e1eb69e23c218493be54823
fix: remove redundant `MediaCaptureDevicesDispatcher::GetInstance()` call (#45929) fix: remove redundant MediaCaptureDevicesDispatcher::GetInstance() call This appears to be a copy-paste error introduced in 465dee2c
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -344,9 +344,6 @@ int ElectronBrowserMainParts::PreCreateThreads() {\n // Force MediaCaptureDevicesDispatcher to be created on UI thread.\n MediaCaptureDevicesDispatcher::GetInstance();\n \n- // Force MediaCaptureDevicesDispatcher to...
2025-03-10T14:44:24
nodejs/node
c7eff619c218c84a512e3582aae745c9c36b0cba
41cd6ba30e7dce622750df7c0050e6f757e0c02c
dns: fix parse memory leaky PR-URL: https://github.com/nodejs/node/pull/58973 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: James M Snell <jasnel...
[ { "path": "src/cares_wrap.cc", "patch": "@@ -1565,6 +1565,8 @@ Maybe<int> SoaTraits::Parse(QuerySoaWrap* wrap,\n \n if (status != ARES_SUCCESS) return Just<int>(status);\n \n+ auto cleanup = OnScopeLeave([&]() { ares_free_data(soa_out); });\n+\n Local<Object> soa_record = Object::New(env->isolate());\n...
2025-07-08T09:42:22
golang/go
b57962b7c7de2b70fa943e66cd26b2cce631b7f8
0a569528ea355099af864f7612c3fa1973df30e4
bytes: fix panic in bytes.Buffer.Peek This change fixed the overlooked offset in bytes.Buffer.Peek. Otherwise, it will either return wrong result or panic with "runtime error: slice bounds out of range". Change-Id: Ic42fd8a27fb9703c51430f298933b91cf0d45451 GitHub-Last-Rev: fb97ebc3b188959835706626f66898d6306c16fb Git...
[ { "path": "src/bytes/buffer.go", "patch": "@@ -86,7 +86,7 @@ func (b *Buffer) Peek(n int) ([]byte, error) {\n \tif b.Len() < n {\n \t\treturn b.buf[b.off:], io.EOF\n \t}\n-\treturn b.buf[b.off:n], nil\n+\treturn b.buf[b.off : b.off+n], nil\n }\n \n // empty reports whether the unread portion of the buffer i...
2025-11-13T01:43:03
rust-lang/rust
d19a07b2a9d7f0a18409485451c12632b93ff674
8db65c71725664d85d06ec96ee3e575665de1f6a
Fix LegacyKeyValueFormat report from docker build: x86_64-gnu
[ { "path": "src/ci/docker/host-x86_64/x86_64-gnu-aux/Dockerfile", "patch": "@@ -29,5 +29,5 @@ RUN sh /scripts/sccache.sh\n ENV NO_DEBUG_ASSERTIONS=1\n ENV NO_OVERFLOW_CHECKS=1\n \n-ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu\n-ENV RUST_CHECK_TARGET check-aux\n+ENV RUST_CONFIGURE_ARGS=\"--build=x...
2026-03-03T23:47:53
facebook/react
67338703aa52d662998733e58671dc9fe1edae47
7939d92fcc95ad5ee719c38272eaef14a3750fc0
[ci] Update yarn and node_modules cache key (#32603) Now that the compiler lint rule is merged into eslint-plugin-react-hooks, we also need to update our caches so compiler dependencies are also cached. This should fix the CI walltime regression we are now seeing. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with ...
[ { "path": ".github/workflows/runtime_build_and_test.yml", "patch": "@@ -50,13 +50,13 @@ jobs:\n with:\n node-version-file: '.nvmrc'\n cache: yarn\n- cache-dependency-path: yarn.lock\n+ cache-dependency-path: '**/yarn.lock'\n - name: Restore cached node_mod...
2025-03-14T00:31:04
vercel/next.js
a62b7d0641d6711d8a5f32c7942f80fc0129a6d5
c95eb899fa1559802c6a7f583d1d1bbe731dbd55
Revert "Revert "[turbopack] Set `liveness` of exports based on assignment analysis (#82802)"" (#87214) This reverts commit 7c8f84712020d388fb64ae5845a67cc370798115 which reverted ba227046ef42a8080b1fbe274fe842c0c7067bff. It was reverted because it triggered a bug in the payloadcms system which relied on distinguishin...
[ { "path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts", "patch": "@@ -610,7 +610,7 @@ describe('Cache Components Errors', () => {\n } else {\n expect(output).toMatchInlineSnapshot(`\n \"Error: Route \"/dynamic-root\": Uncached data was a...
2025-12-19T21:32:06
electron/electron
b0c11371e0bb37fc1e1eb69e23c218493be54823
9b2e7db469806ef337f0b2d02cee4d02fb863adb
chore: bump chromium to 136.0.7058.1 (main) (#45928) * chore: bump chromium in DEPS to 136.0.7056.0 * chore: update mas_avoid_private_macos_api_usage.patch.patch no manual changes; patch applied with fuzz * chore: update fix_adapt_exclusive_access_for_electron_needs.patch patch applied manually due to context shea...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '136.0.7054.0',\n+ '136.0.7058.1',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-03-10T05:30:34
nodejs/node
41cd6ba30e7dce622750df7c0050e6f757e0c02c
ba49d71dbffa53c45c9b9a2d7677938952f2ee3b
doc: remove broken link to permission model source code The permission model grew enough to be splited into multiple files, the link in the md file is broken. And as it is not part of a single file, the best way to fix this is just remove the link, many APIs in Node.js does not have the source code linked, this is not...
[ { "path": "doc/api/permissions.md", "patch": "@@ -2,8 +2,6 @@\n \n <!--introduced_in=v20.0.0-->\n \n-<!-- source_link=src/permission.cc -->\n-\n Permissions can be used to control what system resources the\n Node.js process has access to or what actions the process can take\n with those resources.", "ad...
2025-07-08T05:22:36
golang/go
9daaab305c4d1dede9e4f6efdc5e1268a69327e6
d50a571ddfb7661d65c8488b0bbfeacc793f964b
cmd/link/internal/ld: make runtime.buildVersion with experiments valid Specifically if there are experiments but no nonstandard toolchain suffix such as "-devel", the go version will not be valid according to go/version.IsValid. To fix that, always put the X: part into the suffix, resulting in, for example, go1.25.0-X...
[ { "path": "src/cmd/go/internal/cache/hash.go", "patch": "@@ -51,6 +51,9 @@ func stripExperiment(version string) string {\n \tif i := strings.Index(version, \" X:\"); i >= 0 {\n \t\treturn version[:i]\n \t}\n+\tif i := strings.Index(version, \"-X:\"); i >= 0 {\n+\t\treturn version[:i]\n+\t}\n \treturn versio...
2025-11-11T18:54:52
facebook/react
d92e5713be2dc78f467c31fce4a1e5c84a74e4e6
93b61fc4ecb34abec2b55c206f34ed22dd340b71
[compiler] Avoid bailouts when inserting gating (#32598) This change fixes a coverage hole in rolling out with `gating`. Prior to this PR, configuring `gating` causes React Compiler to bail out of optimizing some functions. This means that it's not entirely safe to cutover from `gating` enabled for all users (i.e. ro...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Gating.ts", "patch": "@@ -10,6 +10,117 @@ import * as t from '@babel/types';\n import {PluginOptions} from './Options';\n import {CompilerError} from '../CompilerError';\n \n+/**\n+ * Gating rewrite for function declarations which are r...
2025-03-13T23:31:49
rust-lang/rust
201bbb30a4faa261f488afae6b6fb66d4b210e0d
3a0572c2d67648c32513f9439d7cd6488ebc9492
fix: offer on const like path-expr for 'extract_variable' Example --- ```rust struct Foo; fn foo() -> Foo { $0Foo$0 } ``` **Before this PR** Assist not applicable **After this PR** ```rust struct Foo; fn foo() -> Foo { let foo = Foo; foo } ```
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/extract_variable.rs", "patch": "@@ -75,7 +75,7 @@ pub(crate) fn extract_variable(acc: &mut Assists, ctx: &AssistContext<'_>) -> Op\n .next()\n .and_then(ast::Expr::cast)\n {\n- expr.syntax().ancesto...
2026-03-13T14:34:06
vercel/next.js
71f9a8c65c00d048f0592ae764c0fb6e1d7d8354
ac4f404c97fe434ec26a4286d94450f6f605441b
bundle analyzer: remove uncompressed toggle, stabilize top bar ui (#87325) This: - Removes the uncompressed/compressed toggle in favor of just using compressed sizes when sizing treemap nodes - Fixes the width of the client/server and file type triggers so that they don't reflow horizontally when their content change...
[ { "path": "apps/bundle-analyzer/app/page.tsx", "patch": "@@ -1,7 +1,6 @@\n 'use client'\n \n import type React from 'react'\n-import { SizeMode } from '@/lib/treemap-layout'\n \n import { useEffect, useMemo, useState } from 'react'\n import useSWR from 'swr'\n@@ -25,9 +24,8 @@ import { AnalyzeData, ModulesD...
2025-12-19T18:44:14
electron/electron
8ac061ebe7b93b400a945b1735d239c1194f503e
b30f31e1f63364803606ae5dc3c76597360d6783
fix: race condition in utilityProcess tests (#45926)
[ { "path": "spec/api-utility-process-spec.ts", "patch": "@@ -228,7 +228,6 @@ describe('utilityProcess module', () => {\n const child = utilityProcess.fork(fixtureFile, [], {\n stdio: 'pipe'\n });\n- await once(child, 'spawn');\n expect(child.stdout).to.not.be.null();\n le...
2025-03-09T22:37:35
golang/go
d50a571ddfb7661d65c8488b0bbfeacc793f964b
704f841eab87462d4eefac07345c96f71fb6e964
test: fix tests to work with sizespecializedmalloc turned off Cq-Include-Trybots: luci.golang.try:gotip-linux-386-nosizespecializedmalloc,gotip-linux-amd64-nosizespecializedmalloc,gotip-linux-arm64-nosizespecializedmalloc Change-Id: I6a6a696465004b939c989afc058c4c3e1fb7134f Reviewed-on: https://go-review.googlesource....
[ { "path": "test/codegen/strings.go", "patch": "@@ -23,7 +23,7 @@ func CountBytes(s []byte) int {\n \n func ToByteSlice() []byte { // Issue #24698\n \t// amd64:`LEAQ type:\\[3\\]uint8`\n-\t// amd64:`CALL runtime\\.mallocTiny3`\n+\t// amd64:`CALL runtime\\.(newobject|mallocTiny3)`\n \t// amd64:-`.*runtime.str...
2025-11-13T22:04:54
nodejs/node
7be2528e05448a9a291ec679aa823d119c997141
9523c84c17d5ac00f62c1ca356a91bc397e81da0
tools: compile maglev files into v8_compiler if maglev is disabled v8_compiler needs maglev graph builder even if maglev is disabled. But the required files shouldn't be compiled into v8_internal_headers, which both v8_base_without_compiler and v8_compiler depends on, causing duplicate symbols during linking if maglev...
[ { "path": "tools/v8_gypfiles/v8.gyp", "patch": "@@ -636,11 +636,6 @@\n '<!@pymod_do_main(GN-scraper \"<(V8_ROOT)/BUILD.gn\" \"v8_header_set.\\\\\"v8_internal_headers\\\\\".*?sources = \")',\n ],\n 'conditions': [\n- ['v8_enable_maglev==0', {\n- 'sources': [\n- ...
2025-06-27T06:44:05
facebook/react
f457d0b4c6dd70c10acb9c93c7d01c80d8e23b92
1c79cb82ab8d3bd1f099115704f28df1097beb46
[compiler][ez] Only fail gating hoisting check for referenced identifiers (#32596) Reduce false positive bailouts by using the same `isReferencedIdentifier` logic that the compiler also uses for determining context variables and a function's own hoisted declarations. Details: Previously, we counted every babel identi...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -1143,7 +1143,7 @@ function checkFunctionReferencedBeforeDeclarationAtTopLevel(\n * A null scope means there's no function scope, which means we're at the\n * top level scope.\n */\n- ...
2025-03-13T16:10:22
vercel/next.js
c02a04d974440f0c783e260f42997f579ef8cce0
92f72373644fae3a2822386480e9e2b6fcf3df68
docs: fix highlight in 05-server-and-client-components.mdx (#87347) In the **When to use Server and Client Components?** section of [Server and Client Components](https://nextjs.org/docs/app/getting-started/server-and-client-components) page, the code block should highlight line 17 `<LikeButton likes={post.likes} />` ...
[ { "path": "docs/01-app/01-getting-started/05-server-and-client-components.mdx", "patch": "@@ -32,7 +32,7 @@ Use **Server Components** when you need:\n \n For example, the `<Page>` component is a Server Component that fetches data about a post, and passes it as props to the `<LikeButton>` which handles clien...
2025-12-19T12:56:28
facebook/react
ef06b54f8d1d9818806e221974c8b64efbbfda0d
1b77c3d7b98f21ec707d3accb441c678dac2803f
fix: clarify which mobx libs are not compatible with compiler (#32570) ## Summary Right now, `react-compiler-healthcheck` flags `mobx` as a "known incompatible library". But it's not precisely *MobX* that's incompatible. It's the observer HOC that comes from `mobx-react` and `mobx-react-lite`. I've been working on [...
[ { "path": "compiler/packages/react-compiler-healthcheck/src/config.ts", "patch": "@@ -1,3 +1,7 @@\n export const config = {\n- knownIncompatibleLibraries: ['mobx', '@risingstack/react-easy-state'],\n+ knownIncompatibleLibraries: [\n+ 'mobx-react',\n+ 'mobx-react-lite',\n+ '@risingstack/react-easy...
2025-03-13T15:46:26
nodejs/node
9ab976397da80e84ebf9ed12c3e7bd308aab6de1
b890c51ff29081c81a40d4910071cfdd80c40ff5
fs: close dir before throwing if `options.bufferSize` is invalid PR-URL: https://github.com/nodejs/node/pull/58856 Fixes: https://github.com/nodejs/node/issues/58854 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
[ { "path": "lib/internal/fs/dir.js", "patch": "@@ -59,7 +59,13 @@ class Dir {\n }),\n };\n \n- validateUint32(this.#options.bufferSize, 'options.bufferSize', true);\n+ try {\n+ validateUint32(this.#options.bufferSize, 'options.bufferSize', true);\n+ } catch (validationError) {\n+ ...
2025-07-06T05:32:45
electron/electron
458b14b8ed819fcf6bc20e9b42c4dca1c323e626
530ccfe350498d8bdaa26d96e4b4d81df4098848
chore: bump chromium to 136.0.7053.1 (main) (#45906) * chore: bump chromium in DEPS to 136.0.7052.0 * chore: update mas_avoid_private_macos_api_usage.patch.patch https://chromium-review.googlesource.com/c/chromium/src/+/6318359 patch applied manually due to context shear * chore: update preconnect_manager.patch X...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '135.0.7049.7',\n+ '136.0.7053.1',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-03-07T17:35:59
vercel/next.js
92f72373644fae3a2822386480e9e2b6fcf3df68
37521a02e9309b01f42ec011892e97d8e466ef19
Turbopack: refactor graph traveral and fix module graph determinism (#87312) ### What? Simplifies the graph traversal. Allows the GraphStore to store edges and nodes. This no longer forces us to abuse the node type to store edge info, which actually has lead to a race condition problem which made the module graph non...
[ { "path": "crates/next-api/src/nft_json.rs", "patch": "@@ -6,7 +6,7 @@ use tracing::{Instrument, Level, Span};\n use turbo_rcstr::RcStr;\n use turbo_tasks::{\n FxIndexMap, ReadRef, ResolvedVc, TryFlatJoinIterExt, TryJoinIterExt, ValueToString, Vc,\n- graph::{AdjacencyMap, GraphTraversal, Visit, Visit...
2025-12-19T09:10:27
nodejs/node
b890c51ff29081c81a40d4910071cfdd80c40ff5
f5da8f89ee6e6450746c54a0809d43d64006c0f8
os: fix GetInterfaceAddresses memory lieaky PR-URL: https://github.com/nodejs/node/pull/58940 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/node_os.cc", "patch": "@@ -214,6 +214,9 @@ static void GetInterfaceAddresses(const FunctionCallbackInfo<Value>& args) {\n return;\n }\n \n+ auto cleanup =\n+ OnScopeLeave([&]() { uv_free_interface_addresses(interfaces, count); });\n+\n Local<Value> no_scope_id = Integer::New(iso...
2025-07-05T17:33:23
facebook/react
1b77c3d7b98f21ec707d3accb441c678dac2803f
5ccfcd17ffa0adf9e7f5ba7fbf48e6bf6a4eb67e
Update DEVELOPMENT_GUIDE.md (#32281) fix: update CONTRIBUTING.md link path Updated the relative path to CONTRIBUTING.md from `../CONTRIBUTING.md` to `./../../CONTRIBUTING.md` to ensure the correct file is referenced. <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these ch...
[ { "path": "compiler/docs/DEVELOPMENT_GUIDE.md", "patch": "@@ -1,6 +1,6 @@\n # React Compiler Development Guide\n \n-Note: for general notes about contributing, see the [CONTRIBUTING.md](../CONTRIBUTING.md).\n+Note: for general notes about contributing, see the [CONTRIBUTING.md](../../CONTRIBUTING.md).\n \n ...
2025-03-13T15:45:26
electron/electron
530ccfe350498d8bdaa26d96e4b4d81df4098848
041ada15867b4ed24193f2023747f275806bcf10
fix: resolve font list in default prefernce values (#45905) * fix: resolve font list in default prefernce values * chore: fix unsafe buffer usage * docs: add code comment
[ { "path": "shell/browser/font_defaults.cc", "patch": "@@ -9,14 +9,101 @@\n \n #include \"base/containers/fixed_flat_map.h\"\n #include \"base/containers/map_util.h\"\n+#include \"base/strings/cstring_view.h\"\n #include \"base/strings/string_split.h\"\n+#include \"base/strings/utf_string_conversions.h\"\n+#...
2025-03-07T09:22:03
nodejs/node
f5da8f89ee6e6450746c54a0809d43d64006c0f8
053467253dddc7aed19c4c19e40ba698714a0e4d
crypto: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4 Reverts: https://github.com/nodejs/node/pull/56160 Fixes: https://github.com/nodejs/node/issues/56159 Fixes: https://github.com/nodejs/node/issues/58913 Refs: https://github.com/nodejs/node/pull/58121 PR-URL: https://github.com/nodejs/node/pull/58942...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -4061,6 +4061,19 @@ Type: Documentation-only\n \n The [`util.types.isNativeError`][] API is deprecated. Please use [`Error.isError`][] instead.\n \n+### DEP0198: Creating SHAKE-128 and SHAKE-256 digests without an explicit `options.outputLength`\n+\n+<!-- YA...
2025-07-05T09:34:24
facebook/react
8646349aebb514eeef7e01614fb4aeb2f2c7a6c8
f31779a112f3b5c9e56d651ad59c2db0bc236981
[rollup] Fix codeFrame is not a function (#32591) Extracting portions of #32416 for easier review. Fixes a small issue where `codeFrame` is not a function when a rollup error was encountered. Co-authored-by: michael faith <michaelfaith@users.noreply.github.com> --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [...
[ { "path": "scripts/rollup/build.js", "patch": "@@ -22,7 +22,7 @@ const useForks = require('./plugins/use-forks-plugin');\n const dynamicImports = require('./plugins/dynamic-imports');\n const Packaging = require('./packaging');\n const {asyncRimRaf} = require('./utils');\n-const codeFrame = require('@babel/...
2025-03-12T23:12:33
electron/electron
d987bee0073310c0bf114dd5e5c9db5e9c68ee59
431a791a995c178de1561b4c2330a1b7596900be
fix: javascript heap OOM is not raised (#45895) fix: javascript heap oom is not raised in node::OOMErrorHandler node::OOMErrorHandler terminates the process directly without raising an oom exception. To fix it, set an oom handler into node from electron.
[ { "path": "patches/node/.patches", "patch": "@@ -44,3 +44,4 @@ test_make_eval_snapshot_tests_more_flexible.patch\n build_option_to_use_custom_inspector_protocol_path.patch\n fix_adjust_wpt_and_webidl_tests_for_enabled_float16array.patch\n chore_add_createexternalizabletwobytestring_to_globals.patch\n+feat_a...
2025-03-06T16:34:19
nodejs/node
19876f492e2a966f298499f0a8d297779be396b8
cc856b3d5da2f8ee7ebc77afd0cb94f12b3827e5
doc: move "Core Promise APIs" to "Completed initiatives" PR-URL: https://github.com/nodejs/node/pull/58934 Fixes: https://github.com/nodejs/TSC/issues/1094 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: ...
[ { "path": "doc/contributing/strategic-initiatives.md", "patch": "@@ -8,7 +8,6 @@ agenda to ensure they are active and have the support they need.\n \n | Initiative | Champion | Links |\n | ---------------------- | --------------...
2025-07-04T22:35:37