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
facebook/react
27ba5e8b1fcb5724e653caf154dcf4f9519f08f1
662957cc735a7f630b497ada45af8ff39684d2b9
Add Example of a SwipeRecognizer (#32422) Stacked on #32412. To effectively `useSwipeTransition` you need something to start and stop the gesture as well as triggering an Action. This adds an example Gesture Recognizer to the fixture. Instead of having this built-in to React itself, instead the idea is to leave this...
[ { "path": "fixtures/view-transition/src/components/Chrome.css", "patch": "@@ -1,3 +1,7 @@\n+html {\n+ touch-action: pan-x pan-y;\n+}\n+\n body {\n margin: 10px;\n padding: 0;", "additions": 4, "deletions": 0, "language": "CSS" }, { "path": "fixtures/view-transition/src/components/Pa...
2025-02-21T16:27:05
nodejs/node
ceaead7c5950122f5c2f4d33a590ab61855a9fb6
66e25cf1b3cf89f60e603d4ee66939ada8e0852d
crypto: fix EVPKeyCtxPointer::publicCheck() Commit 206ebeb44764d58c6a505657edab3a7a78a0b977 added an additional call to EVP_PKEY_public_check and an unconditional return from publicCheck(). This prevents the control flow from reaching the original call to either EVP_PKEY_public_check or EVP_PKEY_public_check_quick. T...
[ { "path": "deps/ncrypto/ncrypto.cc", "patch": "@@ -3643,7 +3643,6 @@ EVPKeyPointer EVPKeyCtxPointer::paramgen() const {\n bool EVPKeyCtxPointer::publicCheck() const {\n if (!ctx_) return false;\n #ifndef OPENSSL_IS_BORINGSSL\n- return EVP_PKEY_public_check(ctx_.get()) == 1;\n #if OPENSSL_VERSION_MAJOR >=...
2025-08-16T14:47:58
electron/electron
521108e2a52a9449323e7493355ae9b32523f105
93a51cc7560939b011224c6fdfea02ffea12969b
fix: crash on parent window close and focur/blur (#46559)
[ { "path": "shell/browser/api/electron_api_browser_window.cc", "patch": "@@ -219,14 +219,14 @@ void BrowserWindow::CloseImmediately() {\n }\n \n void BrowserWindow::Focus() {\n- if (api_web_contents_->IsOffScreen())\n+ if (api_web_contents_ && api_web_contents_->IsOffScreen())\n FocusOnWebView();\n e...
2025-04-09T13:35:30
vercel/next.js
7a2f4ad140b6e00d1d240ce84c6c9c7ca7550ba4
d067b620784e8293d1bef3ad85bf3f9110a4366a
Type-check `run-tests.js` and remove unused `related` flag (#88433) The file already had the `@ts-check` directive, so the IDE did show errors in that file. But since it was not included in the root `tsconfig.json`, those errors were not reported during CI runs. One issue found this way was that the `related` flag ...
[ { "path": "package.json", "patch": "@@ -168,6 +168,7 @@\n \"@types/shell-quote\": \"1.7.1\",\n \"@types/string-hash\": \"1.1.1\",\n \"@types/trusted-types\": \"2.0.3\",\n+ \"@types/yargs\": \"16.0.11\",\n \"@vercel/devlow-bench\": \"workspace:*\",\n \"@vercel/kv\": \"3.0.0\",\n \"...
2026-01-12T18:46:11
facebook/react
5f31228d7d17f5959a99456d89a52d467ee2f329
fcb4e0f137db6efa6e180ad12dcfaabd0c590219
[compiler][playground] Upgrade to Next 15.2.0-canary.64 (#32428) Upgrade compiler playground to use the newest nextjs release, which includes react compiler transform pipeline optimizations https://github.com/vercel/next.js/pull/75676/. Also made a drive-by fix to avoid the error `Cannot update a component ('Router')...
[ { "path": "compiler/apps/playground/components/StoreContext.tsx", "patch": "@@ -6,11 +6,10 @@\n */\n \n import type {Dispatch, ReactNode} from 'react';\n-import {useReducer} from 'react';\n+import {useEffect, useReducer} from 'react';\n import createContext from '../lib/createContext';\n import {emptyStore...
2025-02-20T17:28:34
golang/go
155efbbeeb532473c0ac3cc93f9a8a7597322157
6f16669e346038c983ae33025ca02dccd78b6f20
crypto/sha3: make the zero value of SHA3 useable Fixes #75154 Change-Id: I860ab0b4bd5d64e1f58aa5dfbab19d77e2925430 Reviewed-on: https://go-review.googlesource.com/c/go/+/714120 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mark Freeman <markfreeman@google.com> ...
[ { "path": "src/crypto/sha3/sha3.go", "patch": "@@ -97,6 +97,7 @@ func sumSHAKE256(out, data []byte, length int) []byte {\n }\n \n // SHA3 is an instance of a SHA-3 hash. It implements [hash.Hash].\n+// The zero value is a usable SHA3-256 hash.\n type SHA3 struct {\n \ts sha3.Digest\n }\n@@ -126,43 +127,57 @...
2025-10-23T09:20:10
nodejs/node
360f7cc7867b43344aac00564286b895e15f21d7
1be57c2037057ee7baa5ac66fabfc7921b4174de
module: correctly detect top-level await in ambiguous contexts Fixes: https://github.com/nodejs/node/issues/58331 PR-URL: https://github.com/nodejs/node/pull/58646 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "src/node_contextify.cc", "patch": "@@ -1646,6 +1646,12 @@ static const auto throws_only_in_cjs_error_messages =\n \"await is only valid in async functions and \"\n \"the top level bodies of modules\"};\n \n+static const auto maybe_top_level_await_errors =\n+ std::array<std::str...
2025-08-15T22:10:17
electron/electron
1a6de10da85dba77ebc1e52570cc028af2d9de38
b1731407bc595084d9982df96a8e4a93afd0be44
fix: `assert.ok` in the renderer process (#46528) fix: assert.ok in the renderer process
[ { "path": "patches/node/feat_add_oom_error_callback_in_node_isolatesettings.patch", "patch": "@@ -13,7 +13,7 @@ To fix this issue, provide the interface oom_error_callback to enable a\n custom oom error callback set from Electron.\n \n diff --git a/src/api/environment.cc b/src/api/environment.cc\n-index 32f...
2025-04-08T12:09:54
vercel/next.js
d067b620784e8293d1bef3ad85bf3f9110a4366a
d90847dead1f5c135741043f7720844583a26d0a
docs: add rebuild guidance and ICE troubleshooting to AGENTS.md (#88337) Update AGENTS.md with better instructions abotu rebuilding and handling rustc crashes Also make the graphite instructions more emphatic
[ { "path": "AGENTS.md", "patch": "@@ -41,13 +41,20 @@ The main Next.js framework lives in `packages/next/`. This is what gets publishe\n \n ## Git Workflow\n \n-**Use Graphite for all git operations** instead of raw git commands:\n+**CRITICAL: Use Graphite (`gt`) instead of git for ALL branch and commit oper...
2026-01-12T18:14:32
facebook/react
fcb4e0f137db6efa6e180ad12dcfaabd0c590219
a84862dbdc8dada08a9d1df1c72144cd767704b6
[compiler] remove invariant to account for backedges (#32417) Fixes https://github.com/facebook/react/issues/32269, see comments for details. Added test fixture for repro
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts", "patch": "@@ -1598,18 +1598,14 @@ function inferBlock(\n break;\n }\n case 'LoadLocal': {\n+ /**\n+ * Due to backedges in the CFG, we may revisit LoadLocal lvalues\n+ ...
2025-02-19T21:22:53
golang/go
6f16669e346038c983ae33025ca02dccd78b6f20
121bc3e464b901327a5c138d8a992bb85c440862
database/sql: don't ignore ColumnConverter for unknown input count In the case a sql driver implements the ColumnConverter interface and also returns -1 for NumInputs, indicating an unknown number of input arguments to a query, the previous implementation would ignore the column converter would not be called, leading ...
[ { "path": "src/database/sql/convert.go", "patch": "@@ -55,7 +55,7 @@ func (c ccChecker) CheckNamedValue(nv *driver.NamedValue) error {\n \t// it isn't expecting. The final error will be thrown\n \t// in the argument converter loop.\n \tindex := nv.Ordinal - 1\n-\tif c.want <= index {\n+\tif c.want >= 0 && c...
2024-07-08T16:14:43
nodejs/node
dccc0f29715bf61d969d9dcf72f95941fba2660e
31b6255ae93be723f80d6579dd03100703ed185a
test: refactor error checks to use assert.ifError/mustSucceed Replace manual `if (err) assert.fail(err)` and `assert.ok(!err)` with `assert.ifError()` or `common.mustSucceed()` in a few tests to clarify intent and follow project conventions. - test/parallel/test-child-process-send-returns-boolean.js - test/parallel/t...
[ { "path": "test/parallel/test-child-process-send-returns-boolean.js", "patch": "@@ -33,19 +33,19 @@ const subScript = fixtures.path('child-process-persistent.js');\n \n // Sending a handle and not giving the tickQueue time to acknowledge should\n // create the internal backlog, but leave it empty.\n...
2025-08-15T05:40:01
vercel/next.js
90a4927806cbcd52d65cc9ff0330dc9bb4b6bcb7
76a15d8db611453a08924b936c88b3738dff02f6
fix: use RDC for server action requests (#88129) When a server action triggers a re-render of the underlying page (eg by calling `refresh()`), cached data that was part of the Resume Data Cache (RDC) was not provided to the server action handler, and so those parts of the UI would update with new data. A subsequent re...
[ { "path": "packages/next/errors.json", "patch": "@@ -976,5 +976,6 @@\n \"975\": \"Failed to find Server Action. This request might be from an older or newer deployment.\\\\nRead more: https://nextjs.org/docs/messages/failed-to-find-server-action\",\n \"976\": \"Decompressed resume data cache exceeded %s...
2026-01-12T17:17:44
facebook/react
86b191347474fa98f002217ed88926efc8164c1e
a9575dcf62e5cb6f8b1d8f738aa75ece216d9054
[compiler][be] Clean up bug test fixtures; evaluate more fixtures (#31812) Test fixtures testing different compiler features (e.g. non-auto memoization) should live in separate directories. Remove bug-prefixed fixtures that have since been fixed Add test evaluator export to more fixtures
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/call-spread.expect.md", "patch": "@@ -2,22 +2,31 @@\n ## Input\n \n ```javascript\n+import {makeArray} from 'shared-runtime';\n+\n function Component(props) {\n- const x = foo(...props.a, null, ...props.b);\n+ const x...
2025-02-18T19:25:33
golang/go
121bc3e464b901327a5c138d8a992bb85c440862
b604148c4e8ad61640d12cde40379bc3c137d8a6
runtime/pprof: remove hard-coded sleep in CPU profile reader The CPU profiler reader goroutine has a hard-coded 100ms sleep between reads of the CPU profile sample buffer. This is done because waking up the CPU profile reader is not signal-safe on some platforms. As a consequence, stopping the profiler takes 200ms (on...
[ { "path": "src/runtime/pprof/pprof.go", "patch": "@@ -924,7 +924,10 @@ func profileWriter(w io.Writer) {\n \tb := newProfileBuilder(w)\n \tvar err error\n \tfor {\n-\t\ttime.Sleep(100 * time.Millisecond)\n+\t\tif runtime.GOOS == \"darwin\" || runtime.GOOS == \"ios\" {\n+\t\t\t// see runtime_pprof_readProfil...
2025-11-21T16:01:29
rust-lang/rust
801eafd7418b732e6df24366c6f576b648f77025
3f08f6759a6583666cf5075e7b0ffafc20f19a50
Suggest `if let PAT == expr` on `let PAT = expr else` with non-structural type const ``` error: constant of non-structural type `partial_eq::S` in a pattern --> $DIR/suggest_equality_comparison_instead_of_pattern_matching.rs:22:18 | LL | struct S; | -------- `partial_eq::S` must be annotated with `#[de...
[ { "path": "compiler/rustc_mir_build/src/errors.rs", "patch": "@@ -1144,6 +1144,24 @@ pub(crate) enum SuggestEq<'tcx> {\n ty: Ty<'tcx>,\n manual_partialeq_impl: bool,\n },\n+ #[multipart_suggestion(\n+ \"{$manual_partialeq_impl ->\n+ [false] if `{$ty}` manually implem...
2026-03-17T18:17:48
nodejs/node
9ec68afdc505215cd7b39c6fab35f11e3efa4fc7
afc5893309ebdd5f5aead8b29406bc033c8d4e65
worker: fix worker name with \0 PR-URL: https://github.com/nodejs/node/pull/59214 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/api/environment.cc", "patch": "@@ -532,8 +532,19 @@ NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(\n \n NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(\n Environment* env, ThreadId thread_id, const char* url, const char* name) {\n...
2025-08-13T13:53:24
vercel/next.js
76a15d8db611453a08924b936c88b3738dff02f6
17acc812237db6eee64a13844beb45a11a5758b4
fix(turbo-tasks-backend): use correct TaskDataCategory for is_immutable check (#88331) ## Fix task immutability check by using correct TaskDataCategory ### What? This PR fixes a bug in the task immutability check by ensuring we use `TaskDataCategory::Meta` instead of `TaskDataCategory::Data` when checking if dependen...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -2133,7 +2133,7 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n if let Some(dependencies) = task_dependencies_for_immutable\n && dependencies\n .iter()\n- .all(|&task...
2026-01-12T16:56:12
golang/go
b604148c4e8ad61640d12cde40379bc3c137d8a6
22f24f90b52958158a2de5fa68adf0faf7699e4e
runtime: fix double wakeup in CPU profile buffer The profBuf.wakeupExtra method wakes up the profile reader if it's sleeping, either when the buffer is closed or when there is a pending overflow entry. Unlike in profBuf.write, profBuf.wakeupExtra does not clear the profReaderSleeping bit before doing the wakeup. As a...
[ { "path": "src/runtime/profbuf.go", "patch": "@@ -406,6 +406,11 @@ func (b *profBuf) wakeupExtra() {\n \tfor {\n \t\told := b.w.load()\n \t\tnew := old | profWriteExtra\n+\t\t// Clear profReaderSleeping. We're going to wake up the reader\n+\t\t// if it was sleeping and we don't want double wakeups in case\n...
2025-11-21T14:09:57
facebook/react
d99f8bba2e07e3bb953f0821d4da5e341136fe5c
8a7b487e3b171c91f2fe18e9142af53f4dd83454
[compiler] Delete LoweredFunction.dependencies and hoisted instructions (#32096) LoweredFunction dependencies were exclusively used for dependency extraction (in `propagateScopeDeps`). Now that we have a `propagateScopeDepsHIR` that recursively traverses into nested functions, we can delete `dependencies` and their...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -7,7 +7,6 @@\n \n import {NodePath, Scope} from '@babel/traverse';\n import * as t from '@babel/types';\n-import {Expression} from '@babel/types';\n import invariant from 'invariant';\n import {\n CompilerError,\n@...
2025-02-18T16:32:49
nodejs/node
6e045112969b1f3e1313b235d80582f1f7662693
becb55aac3f7eb93b03223744c35c6194f11e3e9
tools: fix return value of try_check_compiler PR-URL: https://github.com/nodejs/node/pull/59434 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "configure.py", "patch": "@@ -1113,7 +1113,7 @@ def try_check_compiler(cc, lang):\n proc = subprocess.Popen(shlex.split(cc) + ['-E', '-P', '-x', lang, '-'],\n stdin=subprocess.PIPE, stdout=subprocess.PIPE)\n except OSError:\n- return (False, False, '', '')\n+ ...
2025-08-13T10:39:53
rust-lang/rust
3f08f6759a6583666cf5075e7b0ffafc20f19a50
ec15ca96ff2a5b733ab142ecc3744daed751c440
Suggest using equality comparison instead of pattern matching on non-strutural constant in pattern ``` error: constant of non-structural type `partial_eq::S` in a pattern --> $DIR/suggest_equality_comparison_instead_of_pattern_matching.rs:16:18 | LL | struct S; | -------- `partial_eq::S` must be annota...
[ { "path": "compiler/rustc_mir_build/src/errors.rs", "patch": "@@ -1053,17 +1053,97 @@ pub(crate) struct TypeNotStructural<'tcx> {\n #[primary_span]\n #[label(\"constant of non-structural type\")]\n pub(crate) span: Span,\n- #[label(\"`{$ty}` must be annotated with `#[derive(PartialEq)]` to be...
2026-03-17T17:54:01
vercel/next.js
9857ed1e091cc39eefe2f756ee4ea16789f5ded0
9c5e3da9daace868479bd8eb5c0aa09414c1452a
fix: support TypeScript `noUncheckedSideEffectImports` for CSS imports (#88199) ## Summary This PR adds type declarations for plain CSS side-effect imports (`*.css`, `*.sass`, `*.scss`) to support TypeScript 5.6's `noUncheckedSideEffectImports` option. ### What? Added empty module declarations for non-module CSS im...
[ { "path": "packages/next/types/global.d.ts", "patch": "@@ -39,6 +39,13 @@ declare module '*.module.scss' {\n export default classes\n }\n \n+// CSS side-effect imports (non-modules)\n+// These are needed for `noUncheckedSideEffectImports` support\n+// See: https://www.typescriptlang.org/tsconfig/#noUnchec...
2026-01-12T13:15:33
golang/go
22f24f90b52958158a2de5fa68adf0faf7699e4e
cfb9d2eb73d9ecb0e5ea2ce5ef0d3f23593087be
cmd/compile: change testing.B.Loop keep alive semantic This CL implements this initial design of testing.B.Loop's keep variable alive semantic: https://github.com/golang/go/issues/61515#issuecomment-2407963248. Fixes #73137. Change-Id: I8060470dbcb0dda0819334f3615cc391ff0f6501 Reviewed-on: https://go-review.googleso...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -0,0 +1,313 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package bloop\n+\n+// This file contains support routines...
2025-10-30T19:14:57
facebook/react
4632e36a4ef16a1af24987c56e42b664f6403e64
eb1f77dedfc8f7491ecd39b160e4743fa39dfc99
refactor(eslint-plugin-react-hooks): change array type and improve conditionals (#32400) - [build(eslint-plugin-react-hooks): add ts-linting](https://github.com/facebook/react/commit/4c0fbe73d9abc2681445f62b9450737f3df12ee2) This change adds configuration to the eslint config governing `eslint-plugin-react-hooks` to u...
[ { "path": ".eslintrc.js", "patch": "@@ -446,10 +446,7 @@ module.exports = {\n },\n },\n {\n- files: [\n- 'scripts/eslint-rules/*.js',\n- 'packages/eslint-plugin-react-hooks/src/*.js',\n- ],\n+ files: ['scripts/eslint-rules/*.js'],\n plugins: ['eslint-plugin']...
2025-02-17T01:28:12
nodejs/node
becb55aac3f7eb93b03223744c35c6194f11e3e9
f7a2ba7e8378d95154832811cd290f62ecdbc01e
test: fix typos PR-URL: https://github.com/nodejs/node/pull/59330 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
[ { "path": "test/parallel/test-abortsignal-cloneable.js", "patch": "@@ -35,7 +35,7 @@ test('Can create a transferable abort controller', async () => {\n \n mc.port2.postMessage(ac.signal, [ac.signal]);\n \n- // Can be cloned/transferd multiple times and they all still work\n+ // Can be cloned/transferred...
2025-08-13T10:25:19
electron/electron
85dce12be3c4fb45dee53cd2ff13746aebf6887e
a6875c732cbd5be58bc00291ba5dc65b3a89292b
refactor: migrate to `View::AddChildView(std::unique_ptr<ui::View*>)` (#46474) * refactor: use AddChildView(std::unique_ptr<View>) in OpaqueFrameView::CreateButton() Xref: https://issues.chromium.org/issues/40485510 * refactor: use AddChildView(std::unique_ptr<View>) in MenuBar::RebuildChildren() * refactor: use Ad...
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -323,7 +323,7 @@ static bool FromV8(v8::Isolate* isolate,\n root_view->RemoveChildView(content_view());\n \n set_content_view(view);\n- root_view->AddChildView(content_view());\n+ root_view->AddChildViewRaw(content_view());\n \n root_vie...
2025-04-07T14:20:46
vercel/next.js
e99a92bbada5c2811b00f2abc0795b7171ee47fb
f814b8b51a8207d28640348dc347f18ad0dc64c8
[test] Remove rogue debug log (#88423) Logging the work unit store caused the following runtime error under some circumstances: ``` TypeError: Cannot read private member #headersList from an object whose class did not declare it ```
[ { "path": "test/e2e/app-dir/segment-cache/prefetch-runtime/app/(default)/errors/sync-io-after-runtime-api/dynamic-params/[id]/page.tsx", "patch": "@@ -1,6 +1,5 @@\n import { Suspense } from 'react'\n import { DebugRenderKind } from '../../../../../shared'\n-import { workUnitAsyncStorage } from 'next/dist/se...
2026-01-12T12:59:37
golang/go
0f32fbc631875bb729c74b839328fdf541bfed9a
3e0a8e78677a5c4035e5305446ca8f8ac3ebf2f9
net/http: populate Response.Request when using NewFileTransport Fixes #51562 Change-Id: Ia6fe4728b1e3e0cf3a6462be99c1044260cadf31 Reviewed-on: https://go-review.googlesource.com/c/go/+/720822 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <dneil@goog...
[ { "path": "src/net/http/filetransport.go", "patch": "@@ -57,15 +57,15 @@ func (t fileTransport) RoundTrip(req *Request) (resp *Response, err error) {\n \t// sends our *Response on, once the *Response itself has been\n \t// populated (even if the body itself is still being\n \t// written to the res.Body, a p...
2025-11-16T00:26:27
nodejs/node
f7a2ba7e8378d95154832811cd290f62ecdbc01e
ff11b5956954e96e7b0917c83ef0d901adf62dcf
test_runner: fix isSkipped check in junit The `isSkipped` function in the JUnit reporter was incorrectly checking for `node?.attrs.failures` instead of `node?.attrs.skipped`. PR-URL: https://github.com/nodejs/node/pull/59414 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Pietro Marchini <pietro.marchini94@...
[ { "path": "lib/internal/test_runner/reporter/junit.js", "patch": "@@ -58,7 +58,7 @@ function isFailure(node) {\n }\n \n function isSkipped(node) {\n- return (node?.children && ArrayPrototypeSome(node.children, (c) => c.tag === 'skipped')) || node?.attrs?.failures;\n+ return (node?.children && ArrayPrototy...
2025-08-13T08:50:42
facebook/react
5adf40208f4a2f56bda5c059d18ce578c5091dab
037b25cfdcd18deea0e1c6c2e8d2548dbf32f7f3
feat(eslint-plugin-react-hooks): convert to typescript and package type declarations (#32240) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. ...
[ { "path": "packages/eslint-plugin-react-hooks/babel.config.js", "patch": "@@ -0,0 +1,8 @@\n+/**\n+ * This file is purely being used for local jest runs, and doesn't participate in the build process.\n+ */\n+'use strict';\n+\n+module.exports = {\n+ extends: '../../babel.config-ts.js',\n+};", "additions"...
2025-02-16T19:10:54
electron/electron
c0fdf09f283ba927c8913a60aa9b033ee96cfccf
41d8f90d6864174634dfbbb8285d605e4000a9a9
perf: on Windows, make `Archive::HeaderIntegrity()` faster (#46509) * perf: do not clone the map each time we call Archive::HeaderIntegrity() * perf: use absl::flat_hash_map for the integrity cache * perf: do not clone the JSON payload string * perf: preallocate capacity for the integrity cache * perf: use move va...
[ { "path": "shell/common/asar/archive_win.cc", "patch": "@@ -6,9 +6,10 @@\n #include \"shell/common/asar/archive.h\"\n \n #include <algorithm>\n-#include <sstream>\n+#include <string_view>\n \n #include \"base/base_paths.h\"\n+#include \"base/containers/map_util.h\"\n #include \"base/json/json_reader.h\"\n #...
2025-04-07T09:10:29
vercel/next.js
f8553f86bfd11646459ad4555f292572f661602f
5746e3bb14e72db37b4dc75d37137af8ed7c0310
ci: Fix retry comments in workflow files (#88412) The retry comments for e2e tests and deploy tests were off by one.
[ { "path": ".github/workflows/retry_deploy_test.yml", "patch": "@@ -15,7 +15,7 @@ permissions:\n jobs:\n retry-on-failure:\n name: retry failed jobs\n- # Retry the test-e2e-deploy-release workflow up to 2 times\n+ # Retry the test-e2e-deploy-release workflow once\n if: >-\n ${{\n ...
2026-01-12T10:53:27
golang/go
3e0a8e78677a5c4035e5305446ca8f8ac3ebf2f9
831af61120b9b846965996ed1d4daaa079847b2a
net/http: preserve original path encoding in redirects Fixes #70758 Change-Id: I9fc6fe98c194351557c6219513918b7593899bc1 Reviewed-on: https://go-review.googlesource.com/c/go/+/720821 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> R...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -2881,6 +2881,19 @@ func TestRedirectBadPath(t *testing.T) {\n \t}\n }\n \n+func TestRedirectEscapedPath(t *testing.T) {\n+\tbaseURL, redirectURL := \"http://example.com/foo%2Fbar/\", \"qux%2Fbaz\"\n+\treq := httptest.NewRequest(\"GET\", baseURL, NoBody)\...
2025-11-16T00:13:40
facebook/react
037b25cfdcd18deea0e1c6c2e8d2548dbf32f7f3
0d9834caeb3b334eaa1be45f136499f51303e7d3
test(eslint): create eslint test fixtures (#32396)
[ { "path": "fixtures/eslint-v6/.eslintrc.json", "patch": "@@ -1,15 +1,14 @@\n {\n \"root\": true,\n+ \"extends\": [\"plugin:react-hooks/recommended-legacy\"],\n \"parserOptions\": {\n- \"ecmaVersion\": 8,\n+ \"ecmaVersion\": 2020,\n \"sourceType\": \"module\",\n \"ecmaFeatures\": {\n ...
2025-02-16T18:23:44
electron/electron
ac18decc566c9641475c0c677bf2e60758c2f08a
052da50aeb0d56ae8f4c7a749bc37d5a985fe71d
revert: allow NSMenuItems to be disabled (#46502) Revert "fix: allow NSMenuItems to be disabled (#46307)" This reverts commit ac616ef41d9379ead79130d6da071cad220b21d2.
[ { "path": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -320,10 +320,6 @@ - (NSMenuItem*)makeMenuItemForIndex:(NSInteger)index\n NSMenuItem* item = [[NSMenuItem alloc] initWithTitle:label\n action:@selector(itemSelected:)\n ...
2025-04-07T01:42:05
vercel/next.js
ec11c8622f58e3746b04edffcebcc5206718e418
38ac035394d6f834f50a442182c6fe2b39487c61
docs: fix CSP example to only include unsafe-eval in development (#88407) ## What Fixes the CSP documentation "Without Nonces" example to only include `'unsafe-eval'` in development mode. ## Why The example was showing `'unsafe-eval'` without a development check, which would cause it to be shipped to production. Th...
[ { "path": "docs/01-app/02-guides/content-security-policy.mdx", "patch": "@@ -415,9 +415,11 @@ Consider nonces when:\n For applications that do not require nonces, you can set the CSP header directly in your [`next.config.js`](/docs/app/api-reference/config/next-config-js) file:\n \n ```js filename=\"next.co...
2026-01-12T09:13:16
golang/go
831af61120b9b846965996ed1d4daaa079847b2a
87269224cb3609a967b821c89f5a920864969a10
net/http: use HTTP 307 redirects in ServeMux Clients receiving an HTTP 301 Moved Permanently may conservatively change the method of a POST request to GET. The newer HTTP 307 Temporary Redirect and 308 Permanent Redirect explicitly allows retrying POST requests after the redirect. These should be safe for ServeMux as ...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -288,7 +288,7 @@ func testHostHandlers(t *testing.T, mode testMode) {\n \t\t\tif s != vt.expected {\n \t\t\t\tt.Errorf(\"Get(%q) = %q, want %q\", vt.url, s, vt.expected)\n \t\t\t}\n-\t\tcase StatusMovedPermanently:\n+\t\tcase StatusTemporaryRedirect:\n \t...
2025-11-15T23:58:58
facebook/react
cbbe8666a8d6e6f1b81dffb11bd5d767e4acd6ac
e0131f1edae0fc411bf8abb2fed211ca07af60fe
fix value formatting of proxies of class instances (#30880) For Hookstate Proxies of class instances, `data.constructor.name` returns `Proxy({})`, so use `Object.getPrototypeOf(data).constructor.name` instead, which works correctly from my testing. <!-- Thanks for submitting a pull request! We appreciate you...
[ { "path": "packages/react-devtools-shared/src/utils.js", "patch": "@@ -915,7 +915,25 @@ export function formatDataForPreview(\n case 'date':\n return data.toString();\n case 'class_instance':\n- return data.constructor.name;\n+ try {\n+ let resolvedConstructorName = data.const...
2025-02-13T12:04:53
electron/electron
c2ae4afb8f98c0180e9e67f8f1c7cf76cb88ce9c
e81e3acd2dcaf4f0a77c5fae87d1a1f88d39e29a
fix: destroy parent port backend when JS env exits (#46437) * fix: destroy parent port backend when JS env exits * fix: close parent port before destroying --------- Co-authored-by: deepak1556 <hop2deep@gmail.com>
[ { "path": "shell/services/node/node_service.cc", "patch": "@@ -96,6 +96,7 @@ NodeService::NodeService(\n NodeService::~NodeService() {\n if (!node_env_stopped_) {\n node_env_->set_trace_sync_io(false);\n+ ParentPort::GetInstance()->Close();\n js_env_->DestroyMicrotasksRunner();\n node::Stop...
2025-04-04T16:02:54
vercel/next.js
78c102f2e55ecfe3fe7fbccd48f5a9c2119af715
774b78a0972402e87b71ea485d877df8d5007c69
fix: skip stats-aggregate job for docs-only changes (#88330) ## What? Adds the docs-only change check to the `stats-aggregate` job. ## Why? The `stats` job already skips work for docs-only changes using `scripts/run-for-change.mjs`, but the `stats-aggregate` job was missing this check. This caused unnecessary job r...
[ { "path": ".github/workflows/pull_request_stats.yml", "patch": "@@ -95,25 +95,33 @@ jobs:\n steps:\n - uses: actions/checkout@v4\n with:\n- fetch-depth: 1\n+ fetch-depth: 25\n+\n+ - name: Check non-docs only change\n+ run: echo \"DOCS_CHANGE<<EOF\" >> $GITHUB_...
2026-01-11T21:03:59
nodejs/node
eed1d33c53f404f2868949266064dfad564355a5
fc3f19ef932444e8de5d69fe3fb5033b2e0ec2e4
lib: simplify IPv6 checks in isLoopback() The checks for '[::1]' and '[0:0:0:0:0:0:0:1]' in isLoopback were using startsWith, which is unnecessary as these are canonical loopback addresses with no valid prefixes. Switching to strict equality improves clarity and improves performance. PR-URL: https://github.com/nodej...
[ { "path": "lib/internal/net.js", "patch": "@@ -93,8 +93,8 @@ function isLoopback(host) {\n return (\n hostLower === 'localhost' ||\n hostLower.startsWith('127.') ||\n- hostLower.startsWith('[::1]') ||\n- hostLower.startsWith('[0:0:0:0:0:0:0:1]')\n+ hostLower === '[::1]' ||\n+ hostLower...
2025-08-06T07:22:13
golang/go
87269224cb3609a967b821c89f5a920864969a10
7aa9ca729fcb063506ea4ed35ee9b2673a853e4f
net/http: update Response.Request.URL after redirects on GOOS=js Fixes #71346 Change-Id: Id4053626e621faf50bb88a10ca0d540f393c8e01 Reviewed-on: https://go-review.googlesource.com/c/go/+/720860 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacco...
[ { "path": "src/net/http/roundtrip_js.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"fmt\"\n \t\"io\"\n \t\"net/http/internal/ascii\"\n+\t\"net/url\"\n \t\"strconv\"\n \t\"strings\"\n \t\"syscall/js\"\n@@ -195,6 +196,13 @@ func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n \t\t\tuncompressed...
2025-11-16T00:45:28
facebook/react
e0131f1edae0fc411bf8abb2fed211ca07af60fe
5a78dd7cfec4217c1feb89ee6312c13f40b01aed
fix(devtools): Handle nullish values passed to `formatConsoleArguments` (#32372) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before ...
[ { "path": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -470,5 +470,14 @@ function f() { }\n {},\n ]);\n });\n+\n+ it('formats nullish values', () => {\n+ expect(formatConsoleArguments('This is the %s template', null)).toEqual([\n+ 'This is the n...
2025-02-13T12:02:55
vercel/next.js
77c69a7115cf0befcb0b3ad0e97419ff9e8989fe
6caeccb1fea08e14bfd07456c18abb2cf90519ea
Turbopack: improve error message for incompatible swc plugins (#86346) Before: ``` Module not found: Can't resolve 'next/dist/esm/build/templates/helpers' failed to analyze ecmascript module '[project]/node_modules/.pnpm/next@file+..+next-repo-2bf56e024dbccc85257a8c308492f2375d690b206153b02d3bea2029707d4c38+packa_t...
[ { "path": "Cargo.lock", "patch": "@@ -9903,6 +9903,7 @@ dependencies = [\n \"anyhow\",\n \"async-trait\",\n \"bincode 2.0.1\",\n+ \"either\",\n \"indexmap 2.9.0\",\n \"rustc-hash 2.1.1\",\n \"serde\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crates/next...
2026-01-09T19:57:40
golang/go
7aa9ca729fcb063506ea4ed35ee9b2673a853e4f
f870a1d3989d428a5d87368e340f23c4d8232380
net/http/cookiejar: treat localhost as secure origin For development purposes, browsers treat localhost as a secure origin regardless of protocol. Fixes #60997 https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Cookies#restrict_access_to_cookies https://bugzilla.mozilla.org/show_bug.cgi?id=1618113 https://issu...
[ { "path": "src/net/http/cookiejar/jar.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"net\"\n \t\"net/http\"\n \t\"net/http/internal/ascii\"\n+\t\"net/netip\"\n \t\"net/url\"\n \t\"slices\"\n \t\"strings\"\n@@ -120,7 +121,7 @@ func (e *entry) id() string {\n // request to host/path. It is the caller's respo...
2025-11-04T22:47:42
facebook/react
192555bb0ed88db30f91c58651c421f178f90384
a69b80d07e5d1bf363ed15d6209a55b35e0765c2
Added dev-only warning for null/undefined create in use*Effect (#32355) ## Summary Fixes #32354. Re-creation of #15197: adds a dev-only warning if `create == null` to the three `use*Effect` functions: * `useEffect` * `useInsertionEffect` * `useLayoutEffect` Updates the warning to match the same text given in the `...
[ { "path": "packages/react/src/ReactHooks.js", "patch": "@@ -93,6 +93,14 @@ export function useEffect(\n updateDeps?: Array<mixed> | void | null,\n destroy?: ((resource: {...} | void | null) => void) | void,\n ): void {\n+ if (__DEV__) {\n+ if (create == null) {\n+ console.warn(\n+ 'React...
2025-02-11T22:01:04
electron/electron
9c019b6147e88dc14959cdb8e555de0fe52f51a4
0a5da83a1b8bb9316f4b171a0da72587080638d1
chore: bump chromium to 136.0.7095.0 (main) (#46118) * chore: bump chromium in DEPS to 136.0.7076.0 * chore: bump chromium in DEPS to 136.0.7077.0 * 6368856: Migrate absl variant.h and utility.h in content (part 2/2) | https://chromium-review.googlesource.com/c/chromium/src/+/6368856 * 6356528: Clean up LegacyRende...
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -20,3 +20,4 @@ runs:\n cp \"C:\\Python311\\python.exe\" \"C:\\Python311\\python3.exe\"\n fi\n echo \"$HOME/.electron_build_tools/third_party/depot_tools\" >> $GITHUB_PATH\n+ echo \"$HOME/.electron_build_tools/t...
2025-04-04T00:02:49
vercel/next.js
6caeccb1fea08e14bfd07456c18abb2cf90519ea
2b04d2eecd5ac482157e8f69e781424d9d00b8e0
Time logs: Show full millisecond instead of 1 decimal (#88313) ## Fix: Remove unnecessary decimal place in millisecond duration formatting ### What Fixed `durationToString` to display whole milliseconds (e.g., "193ms") instead of showing a redundant decimal place (e.g., "193.0ms"). ### Why The "Ready in X" message...
[ { "path": "packages/next/src/build/duration-to-string.ts", "patch": "@@ -21,7 +21,7 @@ const MILLISECONDS_THRESHOLD_NANOSECONDS = 2_000_000 // 2 milliseconds in nanose\n * - >= 2 minutes: show in minutes with 1 decimal place (e.g., \"2.5min\")\n * - >= 40 seconds: show in whole seconds (e.g., \"45s\")\n ...
2026-01-09T17:57:28
nodejs/node
f993fca4e476c514f5a97f8a61287fc7f94df26f
48aa9c7425cb5bb752d7f62b52e728788fffddf6
test: deflake sequential/test-tls-session-timeout This patch: - Splits the validation tests into a separate file and keep the test focus on functional test of the sessionTimeout option. - Increase the testing timeout to 5 seconds in case it takes too long for the first connection to complete and the session is ...
[ { "path": "test/parallel/test-tls-session-timeout-errors.js", "patch": "@@ -0,0 +1,36 @@\n+'use strict';\n+// This tests validation of sessionTimeout option in TLS server.\n+const common = require('../common');\n+\n+if (!common.hasCrypto) {\n+ common.skip('missing crypto');\n+}\n+\n+const tmpdir = require(...
2025-08-11T17:36:30
facebook/react
3dd2c627707fea4f45fd8e5cc583036a72e3f77b
93b58361d9c9632acdda76eb8a1a582d1ff9701a
[react-native] fix divergence in synced code (#32348) Alternative to #32334
[ { "path": "packages/react-native-renderer/src/ReactNativeTypes.js", "patch": "@@ -10,6 +10,7 @@\n */\n \n import type {ElementRef, ElementType, MixedElement} from 'react';\n+import {type PublicRootInstance} from 'react-native/Libraries/ReactPrivate/ReactNativePrivateInterface';\n \n export type MeasureOnSu...
2025-02-10T19:08:44
golang/go
f870a1d3989d428a5d87368e340f23c4d8232380
9962d95fed9c13b9a7497bc41ba86253ba619a29
net/url: warn that JoinPath arguments should be escaped Fixes #75799 Change-Id: I483f7b1129799d8dd7f359a04e6ebc1b6a5d0b08 Reviewed-on: https://go-review.googlesource.com/c/go/+/719000 Reviewed-by: Mark Freeman <markfreeman@google.com> Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-sco...
[ { "path": "src/net/url/url.go", "patch": "@@ -1205,7 +1205,13 @@ func (u *URL) UnmarshalBinary(text []byte) error {\n // JoinPath returns a new [URL] with the provided path elements joined to\n // any existing path and the resulting path cleaned of any ./ or ../ elements.\n // Any sequences of multiple / ch...
2025-11-08T18:16:48
electron/electron
7601af52002a716f211d24f11c757dd5adb1fe3a
e46b0c8ddc73800f816ffec5c072deeaaa876e9e
fix: don't copy 'package.json's out of ASAR file (#46390) New Node.js module resolution system reads `package.json` from imported modules by reading from the file natively in C++ without calling into `fs.readFileSync`. The ASAR FS wrapper code had copied files out into a temporary folder as a workaround, but it is ine...
[ { "path": "lib/node/asar-fs-wrapper.ts", "patch": "@@ -667,10 +667,10 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n return p(pathArgument, options);\n };\n \n- const { readFileSync } = fs;\n- fs.readFileSync = function (pathArgument: string, options: any) {\n- const pathInfo =...
2025-04-03T20:39:53
vercel/next.js
2b04d2eecd5ac482157e8f69e781424d9d00b8e0
77071f90f61d7680f286dfe8e970f5f63cd2417e
Turbopack: make GraphTraversal deterministically calling all nodes before erroring (#88119) ### What? The graph traversal used to early exit when there are errors. This leads to cycles to continuously executing the graph traversal to discover more task one by one. This leads to bad incremental performance.
[ { "path": "turbopack/crates/turbo-tasks/src/graph/control_flow.rs", "patch": "@@ -8,6 +8,4 @@ pub enum VisitControlFlow {\n /// The edge is excluded, and the traversal should not continue on the outgoing edges of the\n /// given node.\n Exclude,\n- /// The traversal should abort and return im...
2026-01-09T16:37:36
nodejs/node
220f5c644ed4b6654bf9e65ba12949d8d5e0f8e3
8a2fec1f6ff83bad3264032e54c8fc0a10247ca3
test: exclude mock from coverage Fixes: https://github.com/nodejs/node/issues/59112 PR-URL: https://github.com/nodejs/node/pull/59348 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
[ { "path": "lib/internal/test_runner/coverage.js", "patch": "@@ -28,7 +28,7 @@ const {\n const { setupCoverageHooks } = require('internal/util');\n const { tmpdir } = require('os');\n const { join, resolve, relative } = require('path');\n-const { fileURLToPath } = require('internal/url');\n+const { fileURLTo...
2025-08-11T05:49:53
facebook/react
062fb31155e42b6997a35b97180055814471620c
7588b6b291b17fb2130244115b07e9945a864626
[ci] Fix typo (#32337) Oops.
[ { "path": ".github/workflows/shared_close_direct_sync_branch_prs.yml", "patch": "@@ -3,7 +3,7 @@ name: (Shared) Close Direct Sync Branch PRs\n on:\n pull_request:\n branches:\n- - builds/facebook-*\n+ - 'builds/facebook-**'\n \n env:\n TZ: /usr/share/zoneinfo/America/Los_Angeles", "add...
2025-02-07T23:01:53
golang/go
f821fc46c586d2f114dddbcfaaffbb4bf5cd89b7
b59efc38a0ce1683bb360a2db67d2543047170dc
crypto/internal/fisp140test: update acvptool, test data This commit updates the BoringSSL module version used for the acvptool, as well as the module version used for the static test data used by our CI process to avoid interacting with a live ACVP server. Two important upstream changes of note: 1. NIST changed the ...
[ { "path": "src/crypto/internal/fips140test/acvp_capabilities.json", "patch": "@@ -16,17 +16,17 @@\n {\"algorithm\":\"cSHAKE-128\",\"hexCustomization\":false,\"outputLen\":[{\"min\":16,\"max\":65536,\"increment\":8}],\"msgLen\":[{\"min\":0,\"max\":65536,\"increment\":8}],\"revision\":\"1.0\"},\n {\"algor...
2025-11-11T19:41:43
electron/electron
e46b0c8ddc73800f816ffec5c072deeaaa876e9e
0e3246e20d709ddfdc4a1820278068d771f1e9d7
fix: gin_helper::Promise in GPUInfoManager must be destroyed before destroying Node/V8 (#46434) * fix: gin_helper::Promise in GPUInfoManager must be destroyed before destroying Node/V8 * fix: use CleanedUpAtExit to control the lifetime of GPUInfoManager
[ { "path": "shell/browser/api/gpuinfo_manager.cc", "patch": "@@ -17,7 +17,9 @@\n namespace electron {\n \n GPUInfoManager* GPUInfoManager::GetInstance() {\n- return base::Singleton<GPUInfoManager>::get();\n+ // will be deleted by CleanedUpAtExit::DoCleanup\n+ static GPUInfoManager* instance = new GPUInfoM...
2025-04-03T17:12:12
vercel/next.js
a5f8baf4ddd7dffd00355696631fbed1dea6961a
a6f23d8d309d3c0db1bb67fe8f0c3978ffaa7c50
Turbopack: fix task category on reading cells (#88309) ### What? fix the task category
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -835,10 +835,10 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n // Having a task_pair here is not optimal, but otherwise this would lead to a race\n // condition. See below.\n // TO...
2026-01-09T10:05:06
facebook/react
76e44c29110f12caff8302da624076b68547b8ef
8759c5c8d6aef34df576827215ff7ebaeafc79ea
[compiler] Improve error messages for unhandled terminal and instruction kinds (#32324) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PrintReactiveFunction.ts", "patch": "@@ -394,7 +394,10 @@ function writeTerminal(writer: Writer, terminal: ReactiveTerminal): void {\n break;\n }\n default:\n- assertExhaustive(terminal, `Unhandled terminal ${term...
2025-02-07T20:48:03
nodejs/node
aac7925801edfc8dd1de051a29aac85332e7d200
ca76b393561e0bdb19818407e6ec950a97d714b0
test: split test-fs-cp.js This test previously squeezed 70+ test cases into one single file and has been constantly crashing on Windows with exit code 3221226505 and no stack trace. As it is already marked as flaky there is no way to understand which test case is failing and the Windows CI was constantly orange. This ...
[ { "path": "test/common/fs.js", "patch": "@@ -0,0 +1,49 @@\n+'use strict';\n+\n+const { mustNotMutateObjectDeep } = require('.');\n+const { readdirSync } = require('node:fs');\n+const { join } = require('node:path');\n+const assert = require('node:assert');\n+const tmpdir = require('./tmpdir.js');\n+\n+let d...
2025-08-10T19:35:42
golang/go
62741480b8837f2570e75fbb982e80bc0be564ca
7db2f0bb9a5d0e3d68e3eb153dbce928138206a0
runtime: remove linkname for gopanic github.com/goplus/igop now renamed github.com/goplus/ixgo already requires checklinkname=0, so the special case can be removed. https://github.com/goplus/ixgo/tree/e0d0bfeb2de9cfbe0b6cd668f015a1ba35dfea76/ixgo go.undefinedlabs.com is no longer a resolvable domain, having been abso...
[ { "path": "src/runtime/panic.go", "patch": "@@ -793,10 +793,7 @@ var panicnil = &godebugInc{name: \"panicnil\"}\n // The compiler emits calls to this function.\n //\n // gopanic should be an internal detail,\n-// but widely used packages access it using linkname.\n-// Notable members of the hall of shame in...
2025-11-17T21:16:06
electron/electron
0e3246e20d709ddfdc4a1820278068d771f1e9d7
0ff98810ba1cabba826343a69e7c72997304f9f0
fix: ensure maximize is emitted when reduce motion is enabled on macOS (#46459) * fix: ensure maximize is emitted when reduce motion is enabled on macOS * Revert "build: reenable graphics effects for macOS tests (#46454)" This reverts commit 682ea345ace76d41996165c7efa55852da9546ab.
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -118,12 +118,6 @@ jobs:\n - name: Turn off the unexpectedly quit dialog on macOS\n if: ${{ inputs.target-platform == 'macos' }}\n run: defaults write com.apple.CrashReporter DialogType server\n- - name: Reenabl...
2025-04-03T16:14:16
vercel/next.js
a6f23d8d309d3c0db1bb67fe8f0c3978ffaa7c50
10213b360b665a0a5ea034d6340c3db7aee7f095
Turbopack: use correct flags in tests (#88307) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ###...
[ { "path": "turbopack/crates/turbopack-tests/tests/execution.rs", "patch": "@@ -521,7 +521,7 @@ async fn run_test_operation(prepared_test: ResolvedVc<PreparedTest>) -> Result<V\n )\n .unused_references(\n options\n- .remove_unused_exports\n+ .remove_unused_imports\n ...
2026-01-09T09:05:22
facebook/react
44c3d3d665761bba86eb5c143a6eafc0ebf73263
ae3190c5e929ec3b899734e2a6aface7cd4e42d0
fix[react-devtools-standalone]: define missing globals (#32327) Same as what we did for `react-devtools-fusebox` in https://github.com/facebook/react/pull/32297.
[ { "path": "packages/react-devtools-core/webpack.standalone.js", "patch": "@@ -88,6 +88,9 @@ module.exports = {\n __PROFILE__: false,\n __TEST__: NODE_ENV === 'test',\n __IS_NATIVE__: true,\n+ __IS_FIREFOX__: false,\n+ __IS_CHROME__: false,\n+ __IS_EDGE__: false,\n 'pro...
2025-02-07T11:07:46
nodejs/node
3c741f7ccd47119077eabdb15ee2427a6bd09a1b
a73b575304722a3682fbec3a5fb13b39c5791342
doc: fix Pbkdf2Params hash attribute heading PR-URL: https://github.com/nodejs/node/pull/59395 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
[ { "path": "doc/api/webcrypto.md", "patch": "@@ -1573,7 +1573,7 @@ added: v15.0.0\n added: v15.0.0\n -->\n \n-#### `pbkdb2Params.hash`\n+#### `pbkdf2Params.hash`\n \n <!-- YAML\n added: v15.0.0", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2025-08-09T16:35:12
golang/go
35d2712b324af111816e9d637032cbbb8eaeedc7
90c970cd0fce1804d82f5148884e69d179c2e265
net/http: fix typo in Transport docs Change-Id: Ifeb8d6d2e3fd4c8b0e27da62bec5cf28fe71db34 GitHub-Last-Rev: 5760fb106f58bf77817b9813f029d47be4ca7e3b GitHub-Pull-Request: golang/go#76316 Reviewed-on: https://go-review.googlesource.com/c/go/+/720800 Auto-Submit: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI ...
[ { "path": "src/net/http/transport.go", "patch": "@@ -87,7 +87,7 @@ const DefaultMaxIdleConnsPerHost = 2\n // ClientTrace.Got1xxResponse.\n //\n // Transport only retries a request upon encountering a network error\n-// if the connection has been already been used successfully and if the\n+// if the connecti...
2025-11-16T00:00:59
electron/electron
0ff98810ba1cabba826343a69e7c72997304f9f0
f48680a98392dc0aeae305c9ebf89c8a36b18468
fix: `NativeWindowViews::GetRestoredState()` can return wrong state when maximized (#46450) fix: NativeWindowViews::GetRestoredState() returning wrong state Introduced by the af58931 Chromium 131.0.6744.0 roll, specifically https://github.com/electron/electron/pull/43948/commits/9840662#diff-f9d7ef7 98406626
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -1839,7 +1839,7 @@ ui::mojom::WindowShowState NativeWindowViews::GetRestoredState() {\n return ui::mojom::WindowShowState::kMaximized;\n }\n #else\n- return ui::mojom::WindowShowState::kMinimized;\n+ return ui::mojom::WindowShowS...
2025-04-03T13:55:04
facebook/react
ae3190c5e929ec3b899734e2a6aface7cd4e42d0
a0fdb6306043b9f049106e58dcec107d8dbed2b1
React DevTools 6.1.0 -> 6.1.1 (#32326) Full list of changes: * DevTools: refactor NativeStyleEditor, don't use custom cache implementation ([hoxyq](https://github.com/hoxyq) in [#32298](https://github.com/facebook/react/pull/32298)) * fix[react-devtools-fusebox]: add extension globals to build ([hoxyq](https://gi...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"6.1.0\",\n+ \"version\": \"6.1.1\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2025-02-07T10:54:44
vercel/next.js
10213b360b665a0a5ea034d6340c3db7aee7f095
a3b07ce559b092ce72a2579d9671351e904c01af
Fix pack-next script for next-swc (#88126)
[ { "path": "scripts/pack-util.ts", "patch": "@@ -168,11 +168,11 @@ export async function packageFiles(path: string): Promise<string[]> {\n // We add the full path, but check for parent directories too.\n // This catches the case where the whole directory is added and then a single file from the direc...
2026-01-09T08:43:53
nodejs/node
21eac793cd746eab0b36d75af5e16aed11f9aa4b
f3adc11e37b8bfaaa026ea85c1cf22e3a0e29ae9
build: fix node_use_sqlite for GN builds PR-URL: https://github.com/nodejs/node/pull/59017 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
[ { "path": "node.gni", "patch": "@@ -42,6 +42,9 @@ declare_args() {\n # The variable is called \"openssl\" for parity with node's GYP build.\n node_use_openssl = true\n \n+ # Build node with SQLite support.\n+ node_use_sqlite = true\n+\n # Use the specified path to system CA (PEM format) in addition ...
2025-08-09T00:22:24
golang/go
9772d3a690eabd4a167301b886e18c6ce7b6e4bc
1903782ade15293358c983e03db2bf238c5352fa
cmd/cgo: strip top-level const qualifier from argument frame struct Otherwise we can't assign to it. Fixes #75751 Change-Id: Iba680db672297bca1a1d1a33912b80863da66a08 Reviewed-on: https://go-review.googlesource.com/c/go/+/717342 Reviewed-by: David Chase <drchase@google.com> Auto-Submit: Ian Lance Taylor <iant@golang...
[ { "path": "src/cmd/cgo/internal/test/test.go", "patch": "@@ -953,6 +953,12 @@ typedef struct {\n } issue69086struct;\n static int issue690861(issue69086struct* p) { p->b = 1234; return p->c; }\n static int issue690862(unsigned long ul1, unsigned long ul2, unsigned int u, issue69086struct s) { return (int)(s...
2025-11-03T23:54:39
electron/electron
f48680a98392dc0aeae305c9ebf89c8a36b18468
682ea345ace76d41996165c7efa55852da9546ab
fix: zlib pointer alignment (#46435) fix: fix zlib pointer alignment
[ { "path": "patches/node/.patches", "patch": "@@ -48,3 +48,4 @@ feat_add_oom_error_callback_in_node_isolatesettings.patch\n fix_-wnonnull_warning.patch\n refactor_attach_cppgc_heap_on_v8_isolate_creation.patch\n fix_ensure_traverseparent_bails_on_resource_path_exit.patch\n+zlib_fix_pointer_alignment.patch", ...
2025-04-03T13:35:38
facebook/react
d85cf3e5ab6e049626a8bedddffbaec05c516195
32b411496b92455cede3b286eb37c8b183989051
DevTools: refactor NativeStyleEditor, don't use custom cache implementation (#32298) We have this really old (5+ years) feature for inspecting native styles of React Native Host components. We also have a custom Cache implementation in React DevTools, which was forked from React at some point. We know that this s...
[ { "path": "packages/react-devtools-inline/__tests__/__e2e__/components.test.js", "patch": "@@ -212,17 +212,19 @@ test.describe('Components', () => {\n });\n \n test('should allow searching for component by name', async () => {\n- async function getComponentSearchResultsCount() {\n- return await ...
2025-02-05T12:52:48
nodejs/node
5baff3e47b10e1360a99d973e6ff18284e850301
60a58f63a1589e4fb45d558e58b9be149c6cb6f6
deps: support madvise(3C) across ALL illumos revisions In illumos, madvise(3C) now takes `void *` for its first argument post-illumos#14418, but uses `caddr_t` pre-illumos#14418. This fix will detect if the illumos mman.h file in use is pre-or-post-illumos#14418 so builds can work either way. PR-URL: https://github.c...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.17',\n+ 'v8_embedder_string': '-node.18',\n \n ##### V8 defaults for Node.js #####\n...
2025-08-07T14:14:08
golang/go
1903782ade15293358c983e03db2bf238c5352fa
ec92bc6d63efdbd1e04b7590b8ec3ea5236503e0
errors: add examples for custom Is/As matching Change-Id: Ia92dae13b6a4e9434b29d2ab3f698f6ba87b4b89 Reviewed-on: https://go-review.googlesource.com/c/go/+/713740 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Mark Freeman <markfreeman@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun...
[ { "path": "src/errors/example_test.go", "patch": "@@ -44,6 +44,39 @@ func ExampleNew() {\n \t// Output: emit macho dwarf: elf header corrupted\n }\n \n+func OopsNew() error {\n+\treturn errors.New(\"an error\")\n+}\n+\n+var ErrSentinel = errors.New(\"an error\")\n+\n+func OopsSentinel() error {\n+\treturn E...
2025-10-22T12:13:51
electron/electron
36e233797c3e2216576c4891328a1354452bb67f
c02e5bc72c9beb79bcd5a8c9c30c739d2e6405a8
perf: cache the return value of `IsX11()` (#46391) * perf: cache the return value of IsX11() * fix: mark as nodiscard for those who call, but mark as maybe_unused for Windows
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -163,10 +163,11 @@ gfx::Size WindowSizeToContentSizeBuggy(HWND hwnd, const gfx::Size& size) {\n \n #endif\n \n-[[maybe_unused]] bool IsX11() {\n- return ui::OzonePlatform::GetInstance()\n- ->GetPlatformProperties()\n- .electron_can_ca...
2025-04-01T20:28:01
rust-lang/rust
11810b8dd9d5ea1dad36eb5f6c77fa5d95871a81
3645249d79dfb136b5d8de3ce153d19d6698d92d
fix inference variables leaking into HIR const lowering logic
[ { "path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs", "patch": "@@ -2874,6 +2874,12 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {\n span: Span,\n ) -> Const<'tcx> {\n let tcx = self.tcx();\n+\n+ if ty.has_infer() {\n+ let e = self.dcx().span_err(span, \"infe...
2026-03-08T05:49:21
nodejs/node
0309806a74f8596059061525ba56fd9c82c56a8f
cce8c4dd83d7d78fc670d206e91d25eaff3d0ebb
doc: fix missing reference links for server.keepAliveTimeoutBuffer PR-URL: https://github.com/nodejs/node/pull/59356 Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/http.md", "patch": "@@ -1945,7 +1945,7 @@ incoming data, after it has finished writing the last response, before a socket\n will be destroyed.\n \n This timeout value is combined with the\n-\\[`server.keepAliveTimeoutBuffer`]\\[] option to determine the actual socket\n+[`server.keepAliveT...
2025-08-07T02:53:30
golang/go
ec92bc6d63efdbd1e04b7590b8ec3ea5236503e0
3820f94c1d081921494ada1da64b4fab21ae1a48
cmd/compile: rewrite Rsh to RshU if arguments are proved positive Fixes #76332 Change-Id: I9044025d5dc599531c7f88ed2870bcf3d8b0acbd Reviewed-on: https://go-review.googlesource.com/c/go/+/721206 Reviewed-by: Mark Freeman <markfreeman@google.com> Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Jorropo <jorropo...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2664,14 +2664,30 @@ var mostNegativeDividend = map[Op]int64{\n \tOpMod64: -1 << 63,\n }\n var unsignedOp = map[Op]Op{\n-\tOpDiv8: OpDiv8u,\n-\tOpDiv16: OpDiv16u,\n-\tOpDiv32: OpDiv32u,\n-\tOpDiv64: OpDiv64u,\n-\tOpMod8: OpMod8u,\n-\tOpMod16:...
2025-11-18T00:42:37
electron/electron
0492f0f7455ba10775b278be15c3f7221ac46ea8
ac1ffb1bff429a510a321c2b56dfd55c1128bdae
perf: have `ErrorThrower` lazily lookup the current isolate (#46388) perf: have ErrorThrower lazy-lookup the current isolate ErrorThrower's default constructor is marked as "should rarely if ever be used" because it's expensive to call. Unfortunately, nearly every instance of ErrorThrower comes as an argument in gin...
[ { "path": "shell/common/gin_helper/error_thrower.cc", "patch": "@@ -10,12 +10,11 @@\n \n namespace gin_helper {\n \n-ErrorThrower::ErrorThrower(v8::Isolate* isolate) : isolate_(isolate) {}\n-\n-// This constructor should be rarely if ever used, since\n-// v8::Isolate::GetCurrent() uses atomic loads and is t...
2025-04-01T17:25:27
rust-lang/rust
d81da4d691cf9f794a7cb6d29415f1e058357f9d
ccd16408934e3d590192a1e310f75647ca8437ed
Fix missing kernel-address from error message list
[ { "path": "compiler/rustc_attr_parsing/src/attributes/codegen_attrs.rs", "patch": "@@ -671,6 +671,7 @@ impl<S: Stage> SingleAttributeParser<S> for SanitizeParser {\n item.path().span(),\n &[\n sym::address,\n+ ...
2026-03-16T15:06:56
vercel/next.js
b9edb9175e15b433122afb114cbec6a2951d7d02
3dc0366cc691dbd9cf05ff43bbd238b38578e4f6
feat: add Claude Code plugin marketplace with Cache Components skill (#87993) ### What? Adds a Claude Code plugin marketplace to the Next.js repository with an initial `cache-components` plugin that provides expert guidance for Cache Components and Partial Prerendering (PPR). ### Why? Cache Components introduces a ...
[ { "path": ".claude-plugin/marketplace.json", "patch": "@@ -0,0 +1,18 @@\n+{\n+ \"name\": \"nextjs\",\n+ \"owner\": {\n+ \"name\": \"Vercel\",\n+ \"url\": \"https://vercel.com\"\n+ },\n+ \"plugins\": [\n+ {\n+ \"name\": \"cache-components\",\n+ \"source\": \"./plugins/cache-components\...
2026-01-08T22:37:28
nodejs/node
c8b64bd02324ec48d73c7e01982f06c0218b0f87
e2fefd78e218515dc657486d7abe60b7a928cb3f
quic: fixup NO_ERROR macro conflict on windows PR-URL: https://github.com/nodejs/node/pull/59381 Fixes: https://github.com/nodejs/node/issues/59369 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "src/quic/data.cc", "patch": "@@ -386,6 +386,8 @@ const QuicError QuicError::FromConnectionClose(ngtcp2_conn* session) {\n QUIC_TRANSPORT_ERRORS(V)\n #undef V\n \n+const QuicError QuicError::TRANSPORT_NO_ERROR =\n+ ForTransport(TransportError::NO_ERROR_);\n const QuicError QuicError::HTTP3_NO_E...
2025-08-06T22:48:10
electron/electron
ac1ffb1bff429a510a321c2b56dfd55c1128bdae
5a6f1ede6aa56da2e5d819c41de5c3717db62b61
fix: leaked `gfx::Canvas` in `AutofillPopupView::OnPaint()` (#46384) * perf: avoid redundant call to popup_bounds_in_view() * refactor: use a std::optional<> for paint_canvas local * fix: fix leaked gfx::Canvas in AutofillPopupView::OnPaint() * refactor: remove redundant get() call when testing smart pointer for no...
[ { "path": "shell/browser/ui/views/autofill_popup_view.cc", "patch": "@@ -5,6 +5,7 @@\n #include \"shell/browser/ui/views/autofill_popup_view.h\"\n \n #include <memory>\n+#include <optional>\n #include <utility>\n \n #include \"base/functional/bind.h\"\n@@ -237,30 +238,33 @@ void AutofillPopupView::DoUpdateB...
2025-04-01T16:22:26
golang/go
d474f1fd21fde4a508235c48caf0acca6ce73642
d0d0a7298036793e0648bfd6d296a1cdac372a97
cmd/compile: make dse track multiple shadowed ranges Track multiple shadowed ranges when doing DSE. Elides zeroing for: func nozero() (b [5]int64) { b[0] = 1 b[1] = 7 b[3] = 1 b[4] = 1 b[2] = 0 return b } goes from: v28 00003 (7) LEAQ main.b(SP), AX v5 00004 (7) MOVUPS X15, (AX) v5 00005 (7) MO...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -10,6 +10,10 @@ import (\n \t\"cmd/internal/obj\"\n )\n \n+// maxShadowRanges bounds the number of disjoint byte intervals\n+// we track per pointer to avoid quadratic behaviour.\n+const maxShadowRanges = 64\n+\n // dse does dead-store elim...
2025-05-21T07:34:48
vercel/next.js
2aca54fe5d5d14f126f3e305e5b1dff37060bc76
a6b2d2e81ba4815533f958da53ee2812e72d28a7
Turbopack: scope hoisting bug with reexport-self-star (#86131) Closes PACK-5850 Closes https://github.com/vercel/next.js/issues/86132 Closes #86714 The problem was that you get this with scope hoisting: ```js "index.js": () => { // foo.js // exports object read here const self_import = turbopack_import...
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/binding_usage_info.rs", "patch": "@@ -197,15 +197,22 @@ pub async fn compute_binding_usage_info(\n )?;\n \n // Compute cycles and select modules to be 'circuit breakers'\n+ //\n+ // To break cycles we need to ensure th...
2026-01-08T20:50:11
nodejs/node
e2fefd78e218515dc657486d7abe60b7a928cb3f
24e28c41b5b20dbeaa247ca053d7a2711a2058da
quic: fixup windows coverage compile error PR-URL: https://github.com/nodejs/node/pull/59381 Fixes: https://github.com/nodejs/node/issues/59369 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "src/quic/data.cc", "patch": "@@ -149,15 +149,15 @@ T Store::convert() const {\n }\n \n Store::operator uv_buf_t() const {\n- return convert<uv_buf_t, typeof(*uv_buf_t::base)>();\n+ return convert<uv_buf_t, char>();\n }\n \n Store::operator ngtcp2_vec() const {\n- return convert<ngtcp2_vec, typ...
2025-08-06T21:15:45
facebook/react
8bda71558c8b6f9f19af33271f1bfd0251a1c071
f82c662b8d28461ffdb9f82f3fc26b7b54b9bef5
[Fiber] support hydration when rendering Suspense anywhere (#32224) follow up to https://github.com/facebook/react/pull/32163 This continues the work of making Suspense workable anywhere in a react-dom tree. See the prior PRs for how we handle server rendering and client rendering. In this change we update the hy...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -207,6 +207,9 @@ const SUSPENSE_START_DATA = '$';\n const SUSPENSE_END_DATA = '/$';\n const SUSPENSE_PENDING_START_DATA = '$?';\n const SUSPENSE_FALLBACK_START_DATA = '$!';\n+const PREAMBLE_CONTRIBUTION_HTML = 0b001;\n+c...
2025-02-04T20:30:30
electron/electron
0e687d308293d4e881a12f4c35dcc4a5849a414e
08da2b0b07b1095de2fae5eafa8d3f18ef904d9e
fix: rounded corners disappear momentarily on window close (#46382) fix: Explicitly set rounded corners in borderless mode on Windows 11 Signed-off-by: zoy <zoy-l@outlook.com>
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -381,8 +381,7 @@ NativeWindowViews::NativeWindowViews(const gin_helper::Dictionary& options,\n \n bool rounded_corner = true;\n options.Get(options::kRoundedCorners, &rounded_corner);\n- if (!rounded_corner)\n- SetRoundedCorners(...
2025-04-01T13:43:54
golang/go
d0d0a7298036793e0648bfd6d296a1cdac372a97
a9704f89ea6bc02815557db8d89c1fa22a779b7e
cmd/compile/internal/ssa: correct type of ARM64 conditional instructions The CCMP, CCMN, CCMPconst, and related instructions in ARM64Ops.go were incorrectly set to type "Flag". This non-existent type caused compilation failures during the "lower" and "late lower" passes. Change them to the correct type, "Flags". Cha...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64Ops.go", "patch": "@@ -517,15 +517,15 @@ func init() {\n \t\t// If the condition 'Cond' evaluates to true against current flags,\n \t\t// flags are set to the result of the comparison operation.\n \t\t// Otherwise, flags are set to the fallback value '...
2025-11-21T09:58:40
rust-lang/rust
e4625087f8e6c1897934c0223884450c4ca5e675
b8db00809160de70bb49a6f163b85ec873cf25ec
update error kind mapping URLs
[ { "path": "src/tools/miri/src/shims/io_error.rs", "patch": "@@ -56,7 +56,7 @@ impl From<Scalar> for IoError {\n }\n \n // This mapping should match `decode_error_kind` in\n-// <https://github.com/rust-lang/rust/blob/HEAD/library/std/src/sys/pal/unix/mod.rs>.\n+// <https://github.com/rust-lang/rust/blob/HEAD...
2026-03-17T12:19:22
facebook/react
f82c662b8d28461ffdb9f82f3fc26b7b54b9bef5
0a82580bfc80538c5ce914514dc86b17c8889954
[Flight Parcel] Implement findSourceMapURL (#32294) This implements `findSourceMapURL` in react-server-dom-parcel, enabling source maps for replayed server errors on the client. It utilizes a new endpoint in the Parcel dev server that returns the source map for a given bundle/file. The error overlay UI has also been u...
[ { "path": "fixtures/flight-parcel/.parcelrc", "patch": "@@ -1,4 +0,0 @@\n-{\n- \"extends\": \"@parcel/config-default\",\n- \"runtimes\": [\"...\", \"@parcel/runtime-rsc\"]\n-}", "additions": 0, "deletions": 4, "language": "Unknown" }, { "path": "fixtures/flight-parcel/package.json", ...
2025-02-04T19:17:13
nodejs/node
2b4a09ef8bd8945268b0ad6d03caae8f7a1a8082
31aacfa67cecf89d12062a3bacc644d6af7c9e30
build: fix OpenSSL version detection Fix OpenSSL version detection in `configure.py` when `pkg-config` is used to configure building with a shared OpenSSL library. PR-URL: https://github.com/nodejs/node/pull/59353 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-B...
[ { "path": "configure.py", "patch": "@@ -1205,7 +1205,7 @@ def get_gas_version(cc):\n warn(f'Could not recognize `gas`: {gas_ret}')\n return '0.0'\n \n-def get_openssl_version():\n+def get_openssl_version(o):\n \"\"\"Parse OpenSSL version from opensslv.h header file.\n \n Returns the version as a num...
2025-08-06T19:47:18
electron/electron
9c4720766df74a91366efa6266b2e046684aa8cd
5da75c4a97f91fa99faf24eea58c6dee2a8c94a1
fix: `UtilityProcess.fork` crash before app ready (#46380) fix: UtilityProcess.fork crash before app ready
[ { "path": "docs/api/utility-process.md", "patch": "@@ -44,6 +44,8 @@ Process: [Main](../glossary.md#main-process)<br />\n \n Returns [`UtilityProcess`](utility-process.md#class-utilityprocess)\n \n+**Note:** `utilityProcess.fork` can only be called after the `ready` event has been emitted on `App`.\n+\n ## ...
2025-04-01T11:42:03
vercel/next.js
586c1ed7f88045415691b26f9fb549d47c4062d8
1ea5b07850ff93c3aa094df742700491408e8300
Update deploy adapters outputs and handler interfaces for node and edge (#88247) This updates to expand our normalized interface of handler(req, ctx) to edge runtime as well and middleware. This also applies some fixes for outputs and routes for app router. Validated against our test suite here https://github.com/verc...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -38,6 +38,7 @@ import {\n JSON_CONTENT_TYPE_HEADER,\n NEXT_RESUME_HEADER,\n } from '../../lib/constants'\n+\n import { normalizeLocalePath } from '../../shared/lib/i18n/normalize-locale-path'\n import { addPathPrefix } from '../...
2026-01-08T17:40:55
rust-lang/rust
b5e53dc790bc594b69020af262bb796fd56702cd
b711f95f86b6489b91fdc55c876ed5f95a8d4560
Cleanup from_cycle_error::variances_of. variances_of currently used search_for_cycle_permutation, which can fail and abort when constructed error result value does not match query input. This commit changes variances_of to receive a def_id which means it can compute a value without using search_for_cycle_permutation, ...
[ { "path": "compiler/rustc_query_impl/src/from_cycle_error.rs", "patch": "@@ -8,12 +8,12 @@ use rustc_errors::codes::*;\n use rustc_errors::{Applicability, Diag, MultiSpan, pluralize, struct_span_code_err};\n use rustc_hir as hir;\n use rustc_hir::def::{DefKind, Res};\n+use rustc_middle::bug;\n use rustc_mid...
2026-03-16T09:29:12
golang/go
d3a0321dbad4c2f60bede3bd033b26a5a4839c53
74ebdd28d10f93fbcb58708c76b5805bc6c114a3
[dev.simd] cmd/compile: fix incorrect mapping of SHA256MSG2128 Change-Id: Iff00fdb5cfc83c546ad564fa7618ec34d0352fdc Reviewed-on: https://go-review.googlesource.com/c/go/+/722640 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Junyang Shao <shaojunyang@google.com> ...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -2291,7 +2291,8 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \tcase ssa.OpAMD64SHA1MSG1128,\n \t\tssa.OpAMD64SHA1MSG2128,\n \t\tssa.OpAMD64SHA1NEXTE128,\n-\t\tssa.OpAMD64SHA256MSG1128:\n+\t\tssa.OpAMD64SHA256MSG1128,\n+\t...
2025-11-20T22:28:41
facebook/react
442150e0e2783ce9ab407a113acd2656752323d2
10a4c88f58233074f293ab387b73e96b67192538
build(eslint-plugin-react-hooks): tsconfig and global types (#32283) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull ...
[ { "path": "packages/eslint-plugin-react-hooks/src/types/estree.d.ts", "patch": "@@ -0,0 +1,70 @@\n+/**\n+ * This file augments the `estree` types to include types that are not built-in to `estree` or `estree-jsx`.\n+ * This is necessary because the `estree` types are used by ESLint, and ESLint does not nati...
2025-02-03T17:07:30
nodejs/node
31aacfa67cecf89d12062a3bacc644d6af7c9e30
134625d76139b4b3630d5baaf2efccae01ede564
meta: clarify pr objection process further Based on some recent confusion around the objection process for PRs, this commit adds some additional clarification to the collaborator guide. Specifically, it clarifies that: * Objections must be made in the PR itself * All objections are considered equal... no special a...
[ { "path": "doc/contributing/collaborator-guide.md", "patch": "@@ -154,10 +154,13 @@ requirements. If a pull request meets all requirements except the\n \n Collaborators can object to a pull request by using the \"Request\n Changes\" GitHub feature. Dissent comments alone don't constitute an\n-objection. Any...
2025-08-06T14:30:52