repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
electron/electron
b9b734c9c47d526f7bfd8cabc688dae2d0ba045b
7918ddb0260e1a2cdbc863916d0d3d99925f8c6b
fix: export patches not retaining CRLF line endings (#28360) When a patch targets a file using CRLF line endings, they need to be retained in the patch file. Otherwise the patch will fail to apply due to being unable to find surrounding lines with matching whitespace.
[ { "path": "script/lib/git.py", "patch": "@@ -47,7 +47,7 @@ def get_repo_root(path):\n \n \n def am(repo, patch_data, threeway=False, directory=None, exclude=None,\n- committer_name=None, committer_email=None):\n+ committer_name=None, committer_email=None, keep_cr=True):\n args = []\n if threeway:\...
2021-03-25T05:49:53
vercel/next.js
58b627c1cf828066c5a814ab789ce7e4069ddb16
f2dd61da6bc417a871e12ec64d3a4283c4ccb15f
Turbopack: store serialized sourcemaps instead (#75791) Store sourcemaps JSON-serialized (as opposed to structs containing arrays of decoded mappings), which is more memory efficient (and the main operation we perform is concatenation anyway, lookups are only used for error message locations) This will also dedupli...
[ { "path": "Cargo.lock", "patch": "@@ -9695,6 +9695,7 @@ dependencies = [\n \"anyhow\",\n \"async-trait\",\n \"criterion\",\n+ \"data-encoding\",\n \"either\",\n \"indexmap 2.7.1\",\n \"indoc\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crates/napi/src/ne...
2025-02-12T07:49:34
facebook/react
b9934d6db5d3f5ad94929f0d05b901c3999d34e3
a8725a3e628e8e75d408101e5565b2d2af3902c3
[DevTools] Hook names are correctly extracted when parsing nested hook calls (#22037) ## Summary This commit fixes an issue where DevTools would currently not correctly extract the hook names for a hook call when the hook call was nested under *another* hook call, e.g.: ```javascript function Component() { c...
[ { "path": "packages/react-devtools-extensions/src/__tests__/__source__/ComponentWithNestedHooks.js", "patch": "@@ -0,0 +1,22 @@\n+/**\n+ * Copyright (c) Facebook, Inc. and its affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of thi...
2021-08-05T20:36:59
nodejs/node
20080f9a193171f93bee070b162b75104b8c2b54
c85407d869551fd6c8cc9f230b04414da794a29d
test: use lower security level in s_client With the default security level (SECLEVEL=2), the following error ``` 40E72B52DB7F0000:error:0A00018A:SSL routines:tls_process_ske_dhe:dh key too small:../deps/openssl/openssl/ssl/statem/statem_clnt.c:2100 ``` is raised on on Ubuntu 22.04 on WSL2. PR-URL: https://github.co...
[ { "path": "test/parallel/test-tls-dhe.js", "patch": "@@ -65,7 +65,7 @@ function test(dhparam, keylen, expectedCipher) {\n \n server.listen(0, '127.0.0.1', common.mustCall(() => {\n const args = ['s_client', '-connect', `127.0.0.1:${server.address().port}`,\n- '-cipher', ciphers];\n+ ...
2023-05-29T19:23:40
golang/go
34ddde165d770e0a0dbca1bd64260ed878eb48c8
650abbc0b03c3000fa1a068466eb104bef88b54d
cmd/go: fix windows test failure for test_buildinfo_godebug_issue68053 Fix required adding $GOEXE because windows will produce a .exe file. Fixes: #68673 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest Change-Id: I25206de362ee4be6a9c54bd1baa405f325d79313 Reviewed-on: https...
[ { "path": "src/cmd/go/testdata/script/test_buildinfo_godebug_issue68053.txt", "patch": "@@ -4,7 +4,7 @@ go list -test -f '{{.ImportPath}} {{.DefaultGODEBUG}}'\n stdout 'example.com/foo\\.test.*panicnil=1.*'\n \n go test -c\n-go version -m ./foo.test\n+go version -m ./foo.test$GOEXE\n stdout 'build\\tDefault...
2024-07-31T14:55:51
electron/electron
6fbd84fc80f1c935579af4354fb3a2570feacce0
640a1451126b404a6a9557c6c080cc83d51805de
fix a messed up merge
[ { "path": "shell/common/platform_util_win.cc", "patch": "@@ -244,7 +244,8 @@ std::string OpenExternalOnWorkerThread(\n // have been escaped.\n std::wstring escaped_url =\n L\"\\\"\" + base::UTF8ToWide(net::EscapeExternalHandlerValue(url.spec())) +\n- std::wstring working_dir = options.working...
2021-03-24T18:48:15
facebook/react
8a37b0ef3fee66504975777ca30d62b4121534b7
e3049bb850d8d6395f67d4171870a686e08c3dbd
typos fixed (#21955)
[ { "path": "packages/eslint-plugin-react-hooks/src/ExhaustiveDeps.js", "patch": "@@ -753,7 +753,7 @@ export default {\n if (\n isUsedOutsideOfHook &&\n construction.type === 'Variable' &&\n- // Objects may be mutated ater construction, which would make thi...
2021-08-03T18:05:20
electron/electron
89df6b98da123f847b82eab897e02dadab02a7d4
d93690ccdc8c175eb4b6b5f6bde579e1147e4936
fix: isolate Pepper plugins (#28332)
[ { "path": "shell/renderer/renderer_client_base.cc", "patch": "@@ -361,11 +361,8 @@ bool RendererClientBase::IsPluginHandledExternally(\n \n bool RendererClientBase::IsOriginIsolatedPepperPlugin(\n const base::FilePath& plugin_path) {\n-#if BUILDFLAG(ENABLE_PDF_VIEWER)\n- return plugin_path.value() == k...
2021-03-24T18:11:26
vercel/next.js
3e9846c19349bb26697ad404227dd52b42fd1895
abb29deb3133f79cab8fb24804656c0e704bee7c
[error overlay] hornor the original erroring order (#75934) ### What Addressing the hack we introduced in #71483, where we always display the hydration error with squashed hydration info into the first error. Now we're displaying the errors with its own corresponding hydration info properly, so we don't have to ...
[ { "path": "packages/next/src/client/components/errors/enqueue-client-error.ts", "patch": "@@ -1,22 +1,12 @@\n-import { isHydrationError } from '../is-hydration-error'\n-\n // Dedupe the two consecutive errors: If the previous one is same as current one, ignore the current one.\n export function enqueueConse...
2025-02-12T04:00:24
facebook/react
b54f36f2b6eba4ae722bea56d4081a920fc9ad74
3a1dc3ec8543cbfaf57f5d46d1db070d0555015b
[DevTools] Fix: highlight updates with memoized components (#22008)
[ { "path": "packages/react-devtools-shared/src/backend/renderer.js", "patch": "@@ -2179,7 +2179,9 @@ export function attach(\n if (\n elementType === ElementTypeFunction ||\n elementType === ElementTypeClass ||\n- elementType === ElementTypeContext\n+ elementType...
2021-08-03T15:50:00
nodejs/node
40b89c51a88df2a6faba9b7f1e20909a0637c45e
191dce8ff3b9bbba67aed994f79398d5794ac7a0
tools: deps update authenticate github api request PR-URL: https://github.com/nodejs/node/pull/48200 Fixes: https://github.com/nodejs/node/issues/48119 Refs: https://github.com/nodejs/security-wg/issues/973 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed...
[ { "path": "tools/dep_updaters/update-ada.sh", "patch": "@@ -11,7 +11,12 @@ DEPS_DIR=\"$BASE_DIR/deps\"\n . \"$BASE_DIR/tools/dep_updaters/utils.sh\"\n \n NEW_VERSION=\"$(\"$NODE\" --input-type=module <<'EOF'\n-const res = await fetch('https://api.github.com/repos/ada-url/ada/releases/latest');\n+const res =...
2023-05-29T10:51:37
electron/electron
61cf1abd4d02b87d4221c83d4cb8b2fade62b247
5b598037bba8ace5ab3dbb7df82555b71dba7c11
more windows build fix
[ { "path": "shell/common/application_info.h", "patch": "@@ -27,7 +27,7 @@ std::string GetApplicationUserAgent();\n #if defined(OS_WIN)\n PCWSTR GetRawAppUserModelID();\n bool GetAppUserModelID(ScopedHString* app_id);\n-void SetAppUserModelID(const std::u16string& name);\n+void SetAppUserModelID(const std::ws...
2021-03-23T18:12:59
vercel/next.js
abb29deb3133f79cab8fb24804656c0e704bee7c
3804e4657d1def04acdc5d103a040e5597f3acee
[error overlay] fix highlighted lines (#75940) ### What We should treat each line's first character to determine the leading sign, rather than treating the trimed line's first character as sign. The bad case was the close tag `>` was treated as leading error sign ``` > <p // should be treated as errored line ...
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/container/runtime-error/component-stack-pseudo-html.tsx", "patch": "@@ -20,7 +20,7 @@ export const PSEUDO_HTML_DIFF_STYLES = css`\n padding-left: var(--size-10);\n line-height: calc(5 / 3);\n }\n- [data-nextjs...
2025-02-12T03:39:16
nodejs/node
023e8803f8a392e63820179db5af02e68ae977c7
242362440d470ed00cb2bed29db600a24769d564
doc,vm: clarify usage of cachedData in vm.compileFunction() Fixes: https://github.com/nodejs/node/issues/48175 Signed-off-by: Darshan Sen <raisinten@gmail.com> PR-URL: https://github.com/nodejs/node/pull/48193 Reviewed-By: Debadree Chatterjee <debadree333@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/vm.md", "patch": "@@ -1005,7 +1005,8 @@ changes:\n is displayed in stack traces produced by this script. **Default:** `0`.\n * `cachedData` {Buffer|TypedArray|DataView} Provides an optional `Buffer` or\n `TypedArray`, or `DataView` with V8's code cache data for the supplied\n- ...
2023-05-29T01:26:22
electron/electron
1e9e2f8cf69e1ec739b3f8e60658896042f65e2e
7c3646308507633532a200addfa1e54d0691d03c
fix: make sure service worker scheme is registered with allowServiceWorkers (#28326) * Fix custom scheme not registered as service worker scheme * ServiceWorker loaders do not have WebContents associated * Add test for service worker * Revert "Fix custom scheme not registered as service worker scheme" This...
[ { "path": "shell/browser/api/electron_api_protocol.cc", "patch": "@@ -10,6 +10,7 @@\n \n #include \"base/command_line.h\"\n #include \"base/stl_util.h\"\n+#include \"content/common/url_schemes.h\"\n #include \"content/public/browser/child_process_security_policy.h\"\n #include \"gin/object_template_builder....
2021-03-23T15:16:53
vercel/next.js
3804e4657d1def04acdc5d103a040e5597f3acee
eab683b268f290071bbb29cc3adf6d118b8a2536
docs: Fixed link to stale-while-revalidate article (#74949)
[ { "path": "docs/01-app/03-building-your-application/04-caching/index.mdx", "patch": "@@ -185,7 +185,7 @@ Alternatively, you can use [Route Segment Config options](#segment-config-option\n - Once the data is fetched successfully, Next.js will update the Data Cache with the fresh data.\n - If the backgrou...
2025-02-12T03:20:57
golang/go
d32133af7791325afd30ba999c2e11bf5c82b6f6
eea2e929fae6abbc1422f8ee26de02a4b7e4f8cd
cmd/compile: fix order of map iteration in deadlocals This makes builds reproducible again. Fixes #68672 Updates #65158 Change-Id: I260180f52e992c702ab89050deb6484087ae265f Reviewed-on: https://go-review.googlesource.com/c/go/+/602075 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccou...
[ { "path": "src/cmd/compile/internal/deadlocals/deadlocals.go", "patch": "@@ -30,7 +30,8 @@ func Funcs(fns []*ir.Func) {\n \t\tv := newVisitor(fn)\n \t\tv.nodes(fn.Body)\n \n-\t\tfor _, assigns := range v.defs {\n+\t\tfor _, k := range v.defsKeys {\n+\t\t\tassigns := v.defs[k]\n \t\t\tfor _, as := range assi...
2024-07-31T13:55:14
nodejs/node
242362440d470ed00cb2bed29db600a24769d564
d81151e100a77a3c80e2a065c6a37f16c385cece
doc: fix broken link to new folder doc/contributing/maintaining PR-URL: https://github.com/nodejs/node/pull/48205 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Mestery ...
[ { "path": ".github/workflows/timezone-update.yml", "patch": "@@ -48,7 +48,7 @@ jobs:\n body: |\n This PR was generated by tools/timezone-update.yml.\n \n- Updates the ICU files as per the instructions present in https://github.com/nodejs/node/blob/main/doc/contributing/maint...
2023-05-27T16:58:28
electron/electron
7c3646308507633532a200addfa1e54d0691d03c
6a0b03ba6aa9d5f2294592b5494f0c0ef97488f7
fix: window.print() in pdf plugin (#28328)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -94,6 +94,7 @@ const defaultPrintingSetting = {\n pagesPerSheet: 1,\n isFirstRequest: false,\n previewUIID: 0,\n+ // True, if the document source is modifiable. e.g. HTML and not PDF.\n previewModifiable: true,\n printToPDF: true,\n devi...
2021-03-23T14:40:37
vercel/next.js
eab683b268f290071bbb29cc3adf6d118b8a2536
03d6b0d2c5db154a890ae7bae7b1348623cab339
docs: incorrect anchor on searchParams link (#75266)
[ { "path": "docs/01-app/04-api-reference/03-file-conventions/page.mdx", "patch": "@@ -91,7 +91,7 @@ export default async function Page({ searchParams }) {\n \n - Since the `searchParams` prop is a promise. You must use `async/await` or React's [`use`](https://react.dev/reference/react/use) function to access...
2025-02-12T03:17:08
golang/go
eea2e929fae6abbc1422f8ee26de02a4b7e4f8cd
b6e81a51299f46b29ff7057dd043da8a42134eb0
debug/buildinfo: reuse buffer in searchMagic Allocating a new buffer for each chunk in searchMagic is very inefficient. Refactor reading to allow us to reuse the same buffer for each iteration. This reduces the runtime of `go version` on a 2.5GB non-Go binary from ~1s and ~25MB RSS to ~250ms and ~15MB RSS. For #6859...
[ { "path": "src/debug/buildinfo/buildinfo.go", "patch": "@@ -99,13 +99,14 @@ func Read(r io.ReaderAt) (*BuildInfo, error) {\n }\n \n type exe interface {\n-\t// ReadData reads and returns up to size bytes starting at virtual address addr.\n-\tReadData(addr, size uint64) ([]byte, error)\n-\n \t// DataStart re...
2024-07-26T19:57:27
nodejs/node
186307a484327a8ccc67231f28aebfdb013b88ae
f8b71546855ed4983e30d66c9f591ee1dd0d9d36
test: mark test_cannot_run_js as flaky This test has been failing occasionally since it was introduced ~5 days ago. It was the most common failing JS test in the most recent reliability report. Mark it as flaky. Fixes: https://github.com/nodejs/node/issues/48180 Refs: https://github.com/nodejs/node/pull/47986 Refs: h...
[ { "path": "test/root.status", "patch": "@@ -1,3 +1,6 @@\n+[true]\n+js-native-api/test_cannot_run_js/test: PASS,FLAKY\n+\n [$mode==debug]\n async-hooks/test-callback-error: SLOW\n async-hooks/test-emit-init: SLOW", "additions": 3, "deletions": 0, "language": "Unknown" } ]
2023-05-27T23:40:05
facebook/react
f0d354efc60633800aa30555ab5d890bcdfac0ae
6f3fcbd6fac90d97f48a4c6e270b2124a333d714
[Fabric] Fix reparenting bug in legacy Suspense mount (#21995) * Add reparenting invariant to React Noop Fabric does not allow nodes to be reparented, so I added the equivalent invariant to React Noop's so we can catch regressions. This causes some tests to fail, which I'll fix in the next step. * Fix: Use g...
[ { "path": "packages/react-noop-renderer/src/createReactNoop.js", "patch": "@@ -48,6 +48,7 @@ type Props = {\n type Instance = {|\n type: string,\n id: number,\n+ parent: number,\n children: Array<Instance | TextInstance>,\n text: string | null,\n prop: any,\n@@ -57,6 +58,7 @@ type Instance = {|\n...
2021-07-30T19:47:40
electron/electron
94af0e8bb081fb6d8033a94538eaeafdab6b583c
665ac6f9c830edbf85596369b49844e1b910c59a
fix: escape URL passed to shell.openExternal on windows (#28334)
[ { "path": "shell/common/platform_util_win.cc", "patch": "@@ -32,6 +32,7 @@\n #include \"base/win/windows_version.h\"\n #include \"content/public/browser/browser_task_traits.h\"\n #include \"content/public/browser/browser_thread.h\"\n+#include \"net/base/escape.h\"\n #include \"shell/common/electron_paths.h\...
2021-03-22T23:33:03
vercel/next.js
03d6b0d2c5db154a890ae7bae7b1348623cab339
6895febbe2f7a2c4524878035152be8199066b37
docs: fixed wrong import for `unauthorized` (#75420)
[ { "path": "docs/01-app/04-api-reference/03-file-conventions/unauthorized.mdx", "patch": "@@ -51,7 +51,7 @@ You can use [`unauthorized`](/docs/app/api-reference/functions/unauthorized) fun\n \n ```tsx filename=\"app/dashboard/page.tsx\" switcher\n import { verifySession } from '@/app/lib/dal'\n-import { unau...
2025-02-12T03:14:30
golang/go
b6e81a51299f46b29ff7057dd043da8a42134eb0
8246171baee397165318638390c37e07b5b3ebc7
debug/buildinfo: read data in chunks Rather than reading the entire data segment into memory, read it in smaller chunks to keep memory usage low. For typically Go binaries, this doesn't matter much. For those, we read the .go.buildinfo section, which should be quite small. But for non-Go binaries (or Go binaries with...
[ { "path": "src/debug/buildinfo/buildinfo.go", "patch": "@@ -57,6 +57,11 @@ var errNotGoExe = errors.New(\"not a Go executable\")\n // fields.\n var buildInfoMagic = []byte(\"\\xff Go buildinf:\")\n \n+const (\n+\tbuildInfoAlign = 16\n+\tbuildInfoHeaderSize = 32\n+)\n+\n // ReadFile returns build inform...
2024-07-26T17:41:12
facebook/react
34308b5adaffaf27501ba7a934b95478ba0aa327
d9dd96530f366f0e9062095a513f1b04e71ffaf0
Tidy up early bailout logic at start of begin phase (#21852) * Extract early bailout to separate function This block is getting hard to read so I moved it to a separate function. I'm about to refactor the logic that wraps around this path. Ideally this early bailout path would happen before the begin phase pha...
[ { "path": "packages/react-reconciler/src/ReactFiberBeginWork.new.js", "patch": "@@ -414,7 +414,6 @@ function updateMemoComponent(\n workInProgress: Fiber,\n Component: any,\n nextProps: any,\n- updateLanes: Lanes,\n renderLanes: Lanes,\n ): null | Fiber {\n if (current === null) {\n@@ -442,7 +441...
2021-07-29T13:59:59
nodejs/node
f8b71546855ed4983e30d66c9f591ee1dd0d9d36
6d2811fbf26a62742c2988a4df4dcf996cb28f95
doc: fix typo in readline completer function section PR-URL: https://github.com/nodejs/node/pull/48188 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gma...
[ { "path": "doc/api/readline.md", "patch": "@@ -744,7 +744,7 @@ function completer(line) {\n }\n ```\n \n-The `completer` function can also returns a {Promise}, or be asynchronous:\n+The `completer` function can also return a {Promise}, or be asynchronous:\n \n ```js\n async function completer(linePartial) {...
2023-05-27T19:32:38
electron/electron
5b598037bba8ace5ab3dbb7df82555b71dba7c11
ea62ecd1886ea20760f58d65ae452bd5d95614aa
windows build fixes
[ { "path": "shell/browser/ui/file_dialog_win.cc", "patch": "@@ -6,11 +6,12 @@\n \n #include <windows.h> // windows.h must be included first\n \n+#include \"base/win/shlwapi.h\" // NOLINT(build/include_order)\n+\n #include <atlbase.h> // atlbase.h for CComPtr\n \n #include <shlobj.h>\n #include <shobjidl.h...
2021-03-22T22:49:43
vercel/next.js
6895febbe2f7a2c4524878035152be8199066b37
173a461ef70aac3f8126bc68735d049d2b30d3b4
docs: fix typo (#75711)
[ { "path": "docs/01-app/01-getting-started/07-updating-data.mdx", "patch": "@@ -100,7 +100,7 @@ export function Button() {\n \n ## Invoking Server Functions\n \n-There are two mains ways you can invoke a Server Function:\n+There are two main ways you can invoke a Server Function:\n \n 1. [Forms](#forms) in S...
2025-02-12T03:05:04
golang/go
b60f88d81022e4172e44aef2f0bdade87ed6916d
86bec1ec198f2720c83bd232a72b800b4ea5a9f6
cmd/internal/script: new hook for adding in toolchain script conditions Introduce a new function AddToolChainScriptConditions that augments a default "script.Cond" set with a collection of useful conditions, including godebug/goexperiment, cgo, race support, buildmode, asan, msan, and so on. Having these conditions av...
[ { "path": "src/cmd/compile/testdata/script/script_test_basics.txt", "patch": "@@ -4,6 +4,7 @@\n go build\n [!cgo] skip\n cc -c testdata/mumble.c\n+[GOEXPERIMENT:fieldtrack] help exec\n \n -- go.mod --\n module main", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "...
2024-07-29T17:40:10
facebook/react
321087d1343638e2d45e53971a7d8c384549940b
cdccdbe1710dec6b954b2294d165da5671cf6443
[Fizz] Don't add aborted segments to the completedSegments list (#21976) * Don't add aborted segments to the completedSegments list * Update error message to include aborted status
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -1447,4 +1447,35 @@ describe('ReactDOMFizzServer', () => {\n \n expect(loggedErrors).toEqual([theError]);\n });\n+\n+ // @gate experimental\n+ it('should be able to abort the fallback if the main content finishes f...
2021-07-28T01:53:37
electron/electron
ea62ecd1886ea20760f58d65ae452bd5d95614aa
74318705c2bde84b04b2f724521699ebdc8e9f6e
fix GetAsString maybe?
[ { "path": "shell/browser/web_contents_preferences.cc", "patch": "@@ -63,8 +63,8 @@ bool GetAsString(const base::Value* val,\n \n #if defined(OS_WIN)\n bool GetAsString(const base::Value* val,\n- base::FilePath::StringPieceType path,\n- std::u16string* out) {\n+ ...
2021-03-22T21:47:24
vercel/next.js
173a461ef70aac3f8126bc68735d049d2b30d3b4
ba7cd6c6712a556a0346d788114e4bdae620eb49
fix: typos in documentation files (#75816)
[ { "path": "errors/next-prerender-sync-request.mdx", "patch": "@@ -4,7 +4,7 @@ title: Cannot access Request information synchronously in route.js without await\n \n ## Why This Error Occurred\n \n-When `dyanmicIO` is enabled Next.js treats most access to Request information as explicitly dynamic. However rou...
2025-02-12T03:04:37
golang/go
86bec1ec198f2720c83bd232a72b800b4ea5a9f6
7299212a425d6c4a2df93ec4633ba1e1b7a5b9be
go/types: record pointer and parentheses in receiver expressions CL 594740 rewrote type checking of method receiver types. Because that CL takes apart receivers "manually" rather than using the regular code for type checking type expressions, pointer and parenthesized receiver type expressions were not recorded anymor...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -1398,6 +1398,16 @@ func (p *parser) typeOrNil() Expr {\n \t\tp.next()\n \t\tt := p.type_()\n \t\tp.want(_Rparen)\n+\t\t// The parser doesn't keep unnecessary parentheses.\n+\t\t// Set the flag below to keep them, for testing\n+\t\t// (see ...
2024-07-29T22:29:08
facebook/react
d4d7864934025232e8bca5d2febec846ec1bd6e3
c21e8fccadc0e0351bc45c2df729c92807a647ef
Fix `ReactFabricHostComponent` methods if detached (#21967)
[ { "path": "packages/react-native-renderer/src/ReactFabricHostConfig.js", "patch": "@@ -137,17 +137,23 @@ class ReactFabricHostComponent {\n }\n \n measure(callback: MeasureOnSuccessCallback) {\n- fabricMeasure(\n- this._internalInstanceHandle.stateNode.node,\n- mountSafeCallback_NOT_REALLY_...
2021-07-27T04:02:06
nodejs/node
6d2811fbf26a62742c2988a4df4dcf996cb28f95
9c37c6498666da66ce2c578a286bcd0c323609f2
quic: add additional implementation * add QUIC_SESSION and QUIC_STREAM to AsyncWrap * update definitions in quic/bindingdata.h * fixup minor discrepancies in cid.h/cid.cc * add convenience operator in struct Path * fixup defs.h macro definitions * fixups in quic/preferredaddress.h/cc * fixups in src/quic/tokens.h/cc *...
[ { "path": "node.gyp", "patch": "@@ -340,23 +340,31 @@\n 'src/node_crypto.h',\n ],\n 'node_quic_sources': [\n+ 'src/quic/application.cc',\n 'src/quic/bindingdata.cc',\n 'src/quic/cid.cc',\n 'src/quic/data.cc',\n+ 'src/quic/endpoint.cc',\n 'src/quic/logstream.cc...
2023-05-08T23:14:20
rust-lang/rust
a6c2e50e8241d9e86fb428f163f03f8e8ea4feb6
2fdaee2d13d0825c280569aa66b85a44c8e9e6b0
fix ICE for particular data race situations
[ { "path": "src/tools/miri/src/concurrency/data_race.rs", "patch": "@@ -1116,6 +1116,7 @@ impl VClockAlloc {\n {\n (AccessType::AtomicStore, idx, &atomic.write_vector)\n } else if !access.is_atomic() &&\n+ !access.is_read() &&\n let Some(...
2025-12-29T11:58:15
electron/electron
665ac6f9c830edbf85596369b49844e1b910c59a
d10398610bb8f434b0a9c870115a1b704abdca85
fix: libuv hang on Windows (#28175)
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -534,15 +534,13 @@ void NodeBindings::LoadEnvironment(node::Environment* env) {\n void NodeBindings::PrepareMessageLoop() {\n #if !defined(OS_WIN)\n int handle = uv_backend_fd(uv_loop_);\n-#else\n- HANDLE handle = uv_loop_->iocp;\n-#endif\n \n // ...
2021-03-22T20:11:03
facebook/react
392253a774f33c0b8e2e25757ca6d6aa0ab48fce
419cc9c3799bc296c3c2a2c93880826aca680886
[Fabric] Use container node to toggle the visibility of Offscreen and Suspense trees (#21960) * Fix type of Offscreen props argument Fixes an oversight from a previous refactor. The fiber that wraps a Suspense component's children used to be a Fragment but now it's on Offscreen fiber, so its props type has change...
[ { "path": "packages/react-native-renderer/src/ReactFabricHostConfig.js", "patch": "@@ -7,6 +7,7 @@\n * @flow\n */\n \n+import type {ReactNodeList, OffscreenMode} from 'shared/ReactTypes';\n import type {ElementRef} from 'react';\n import type {\n HostComponent,\n@@ -301,6 +302,9 @@ export function getCh...
2021-07-26T20:17:08
golang/go
7299212a425d6c4a2df93ec4633ba1e1b7a5b9be
0b7cda77ca0d92040773913fbdcab4ee9b180ca6
net/http: match os.File.Readdir behavior in DotFileHiding Fixes #67697 Change-Id: I26b26262d885d0704851c08c79e7b2b4872b65ad Reviewed-on: https://go-review.googlesource.com/c/go/+/598075 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <dneil@google.com...
[ { "path": "src/net/http/example_filesystem_test.go", "patch": "@@ -5,6 +5,7 @@\n package http_test\n \n import (\n+\t\"io\"\n \t\"io/fs\"\n \t\"log\"\n \t\"net/http\"\n@@ -40,6 +41,9 @@ func (f dotFileHidingFile) Readdir(n int) (fis []fs.FileInfo, err error) {\n \t\t\tfis = append(fis, file)\n \t\t}\n \t}\n...
2024-07-12T19:14:23
rust-lang/rust
19c8ea4629ec22c0301bf4d5c36c7b9919c964d7
123588a5bf9250f214e1931a761f814660e69620
Fix new bors config
[ { "path": "rust-bors.toml", "patch": "@@ -29,6 +29,10 @@ labels_blocking_approval = [\n # If CI runs quicker than this duration, consider it to be a failure\n min_ci_time = 600\n \n+# Flip this once new bors is used for actual merges on this repository\n+merge_queue_enabled = false\n+report_merge_conflicts ...
2025-12-29T08:56:12
nodejs/node
06a211b558923da9568a6413a4917bdd7040f9af
65be8901c3af7a5f4d59f2ddd350d32c51acce5c
vm: properly handle defining symbol props This PR is a follow-up of #46615. When bumping V8 for node 18, various bugs appeared around vm. Some have been fixed along the flow, but there is at least one remaining and described at: https://github.com/facebook/jest/issues/13338. The current fix does nothing on node 20: ...
[ { "path": "src/node_contextify.cc", "patch": "@@ -524,6 +524,7 @@ void ContextifyContext::PropertySetterCallback(\n !is_function)\n return;\n \n+ if (!is_declared && property->IsSymbol()) return;\n if (ctx->sandbox()->Set(context, property, value).IsNothing()) return;\n \n Local<Value> desc;"...
2023-05-26T19:37:36
electron/electron
451e0931bf28bc9cbed6e8ab944f04814232f067
deeb2de14bfbf218494cd1e63142aee945525f32
fix StrCat issue
[ { "path": "shell/browser/ui/file_dialog_win.cc", "patch": "@@ -10,6 +10,7 @@\n \n #include <shlobj.h>\n #include <shobjidl.h>\n+#include \"base/win/shlwapi.h\" // NOLINT(build/include_order)\n \n #include \"base/files/file_util.h\"\n #include \"base/i18n/case_conversion.h\"", "additions": 1, "delet...
2021-03-22T19:07:12
golang/go
0b7cda77ca0d92040773913fbdcab4ee9b180ca6
96f71597056db8b90a445b03bbec229d9f5b4344
cmd/cgo/internal/testsanitizers: avoid clang error in msan8.go In clang 16 the option -fsanitize-memory-param-retval was turned on by default. That option causes MSAN to issue a warning when calling a function with an uninitialized value. The msan8 test relies on being able to do this, in order to get uninitialized va...
[ { "path": "src/cmd/cgo/internal/testsanitizers/testdata/msan8.go", "patch": "@@ -26,12 +26,22 @@ void msanGoTraceback(void* parg) {\n arg->buf[0] = 0;\n }\n \n+// Don't warn if the compiler doesn't support the maybe_undef attribute.\n+#pragma GCC diagnostic ignored \"-Wattributes\"\n+\n // msanGoWai...
2024-07-30T18:48:10
nodejs/node
65be8901c3af7a5f4d59f2ddd350d32c51acce5c
70da075954475ccf2dc310e310a1d47a52aefda7
build: add action to close stale PRs Add action to close PRs that are over 1 year old and have had no comments or updates in the last 6 months. Fixes: https://github.com/nodejs/node/issues/42981 Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/48051 Reviewed-By: Matteo ...
[ { "path": ".github/workflows/close-stale-pull-requests.yml", "patch": "@@ -0,0 +1,63 @@\n+name: Close stale feature requests\n+on:\n+ workflow_dispatch:\n+ inputs:\n+ endDate:\n+ description: stop processing PRs after this date\n+ required: false\n+ type: string\n+ schedule:\n...
2023-05-17T20:51:51
facebook/react
419cc9c3799bc296c3c2a2c93880826aca680886
b1811ebf01e174fb1e12c7f748bf1ed8aeedef0b
Fix: Hide new/updated nodes in already hidden tree (#21929) When a new node is added to an already hidden Offscreen tree, we need to schedule a visibility effect to hide it. Previously we would only hide when the boundary initially switches from visible to hidden, which meant that newly inserted nodes would be visi...
[ { "path": "packages/react-reconciler/src/ReactFiberCompleteWork.new.js", "patch": "@@ -63,6 +63,7 @@ import {NoMode, ConcurrentMode, ProfileMode} from './ReactTypeOfMode';\n import {\n Ref,\n RefStatic,\n+ Placement,\n Update,\n Visibility,\n NoFlags,\n@@ -1369,13 +1370,26 @@ function completeWor...
2021-07-26T15:18:55
electron/electron
deeb2de14bfbf218494cd1e63142aee945525f32
2d3c65becada19b7be5deb967ca94898d9afda3e
undo changes to WebContentsPreferences::GetPreloadPath to fix mac build
[ { "path": "shell/browser/web_contents_preferences.cc", "patch": "@@ -235,24 +235,18 @@ bool WebContentsPreferences::GetPreference(base::StringPiece name,\n bool WebContentsPreferences::GetPreloadPath(base::FilePath* path) const {\n DCHECK(path);\n base::FilePath::StringType preload_path;\n- std::u16str...
2021-03-22T17:35:11
rust-lang/rust
a3c816ad7d0e670467f864179a0f5cfd88f0a21e
123588a5bf9250f214e1931a761f814660e69620
Fix enum variant suggestion consuming trailing parenthesis
[ { "path": "compiler/rustc_hir_typeck/src/method/suggest.rs", "patch": "@@ -1384,13 +1384,14 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n && let hir::Node::Stmt(&hir::Stmt { kind: hir::StmtKind::Semi(parent), .. })\n | hir::Node::Expr(parent) = tcx.parent_hir_node(path_expr.hir_id)\...
2025-12-29T06:59:11
golang/go
1f72ce31f06fbb28c289f5ee7e33d6c54c6894bc
c7227bc72c5ceaf9f957473cdde4753edc6155cd
cmd/go/internal/load: recompute test variant's build info if necessary The buildinfo used for a testmain is a copy from the buildinfo produced for the package under test, and that in turn is only computed if the package under test is package main. If there are //go:debug directives in a test file for package main, the...
[ { "path": "src/cmd/go/internal/load/test.go", "patch": "@@ -293,6 +293,16 @@ func TestPackagesAndErrors(ctx context.Context, done func(), opts PackageOpts, p\n \n \tpb := p.Internal.Build\n \tpmain.DefaultGODEBUG = defaultGODEBUG(pmain, pb.Directives, pb.TestDirectives, pb.XTestDirectives)\n+\tif pmain.Inte...
2024-07-01T20:34:08
vercel/next.js
9cedecff26f66f01bc0a18e6cdbdb393ca51c5c0
af2405678b66198cc6921afdf85f4696ae3d2a73
docs: fix typo in `use-cache.mdx` (#75848)
[ { "path": "docs/01-app/04-api-reference/01-directives/use-cache.mdx", "patch": "@@ -84,7 +84,7 @@ export async function getData() {\n \n ### Caching entire routes with `use cache`\n \n-To prerender an entire route, add `use cache` to the top **both** the `layout` and `page` files. Each of these segments are...
2025-02-12T03:02:25
facebook/react
ae5d26154b1e206774533a8313221d309f273090
25f09e3e4e900fc5d510243ce9ed3272d0af59e7
Fix: LegacyHidden should not toggle effects (#21928) LegacyHidden is a transitional API that we added to replace the old `<div hidden={true} />` API that we used to use for pre-rendering. The plan is to replace this with the Offscreen component, once it's ready. The idea is that LegacyHidden has identical behavio...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.new.js", "patch": "@@ -2131,8 +2131,7 @@ function commitMutationEffectsOnFiber(finishedWork: Fiber, root: FiberRoot) {\n }\n break;\n }\n- case OffscreenComponent:\n- case LegacyHiddenComponent: {\n+ case Offs...
2021-07-21T17:34:08
rust-lang/rust
29f9397ad4277c127c7cb4e317cd95f623a27e8b
efa32de15b394620520f24781d8c55d4df6fa106
docs: fix typo in std::io::buffered
[ { "path": "library/std/src/io/buffered/bufreader/buffer.rs", "patch": "@@ -48,7 +48,7 @@ impl Buffer {\n \n #[inline]\n pub fn buffer(&self) -> &[u8] {\n- // SAFETY: self.pos and self.cap are valid, and self.cap => self.pos, and\n+ // SAFETY: self.pos and self.filled are valid, and sel...
2025-12-24T09:51:39
nodejs/node
38b82b0604d6515b281c6586d6999d2c67248e7f
847b9e08849f391ac3c21a73fd375e86b97605b8
http: send implicit headers on HEAD with no body If we respond to a HEAD request with a body, we ignore all writes. However, we must still include all implicit headers. Fixes a regressions introduced in https://github.com/nodejs/node/pull/47732. Signed-off-by: Matteo Collina <hello@matteocollina.com> PR-URL: https:/...
[ { "path": "lib/_http_outgoing.js", "patch": "@@ -887,17 +887,6 @@ function write_(msg, chunk, encoding, callback, fromEnd) {\n err = new ERR_STREAM_DESTROYED('write');\n }\n \n- if (!msg._hasBody) {\n- if (msg[kRejectNonStandardBodyWrites]) {\n- throw new ERR_HTTP_BODY_NOT_ALLOWED();\n- } ...
2023-05-26T12:38:24
golang/go
c7227bc72c5ceaf9f957473cdde4753edc6155cd
cc258e6785060345a497d44b6073c91b81e32576
runtime: make TestDebugLogInterleaving much more robust The current test often doesn't actually generate enough interleaving to result in multiple log shards. This CL rewrites this test to forcibly create at least 10 log shards with interleaved log messages. It also tests dlog's robustness to being held across M and P...
[ { "path": "src/runtime/debuglog_test.go", "patch": "@@ -28,7 +28,6 @@ import (\n \t\"runtime\"\n \t\"strings\"\n \t\"sync\"\n-\t\"sync/atomic\"\n \t\"testing\"\n )\n \n@@ -82,28 +81,63 @@ func TestDebugLogSym(t *testing.T) {\n func TestDebugLogInterleaving(t *testing.T) {\n \tskipDebugLog(t)\n \truntime.Res...
2024-07-24T03:09:07
facebook/react
9ab90de602357407fb03a27715b61761a258a8c4
5c6543771b7fe7ca37ab4b4419a7f873e0849cfb
Clean-up: Move Offscreen logic from Suspense fiber (#21925) Much of the visibility-toggling logic is shared between the Suspense and Offscreen types, but there is some duplicated code that exists in both. Specifically, when a Suspense fiber's state switches from suspended to resolved, we schedule an effect on the p...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.new.js", "patch": "@@ -2121,34 +2121,12 @@ function commitMutationEffectsOnFiber(finishedWork: Fiber, root: FiberRoot) {\n case SuspenseComponent: {\n const newState: OffscreenState | null = finishedWork.memoizedState;\n con...
2021-07-20T23:05:16
vercel/next.js
8db9dfbc815e547e3318eeadf8087d601733ecd2
601421a34a403b45324d8a4a4dcd55698f0048d3
[error overlay] align data attributes between 2 UIs (#75937) ### What - fix data source attributes alignment
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/terminal/terminal.tsx", "patch": "@@ -136,11 +136,6 @@ export const Terminal: React.FC<TerminalProps> = function Terminal({\n }\n \n export const TERMINAL_STYLES = css`\n- .terminal-source {\n- display: fl...
2025-02-12T02:52:04
electron/electron
8c3165434a5e329d9811c605b0de5bfdeb446916
c8d18a0a1c4d7ff9dcbfb45889a21b14a5e50ff6
docs: update Node global symbols example to use contextBridge (#28245) * docs: update Node global symbols example to use contextBridge * Trigger Build * docs: change Node API example to show how to expose a crypto API Co-authored-by: Jeremy Rose <nornagon@nornagon.net> * docs: Fix lint warning for crypto c...
[ { "path": "docs/api/browser-window.md", "patch": "@@ -267,7 +267,7 @@ It creates a new `BrowserWindow` with native properties as set by the `options`.\n be the absolute file path to the script.\n When node integration is turned off, the preload script can reintroduce\n Node global symbols ...
2021-03-22T02:01:12
golang/go
cc258e6785060345a497d44b6073c91b81e32576
7b867b9bb7e7c20803a7168faaf9c87e11f88cef
cmd/compile: add "deadlocals" pass to remove unused locals This CL adds a "deadlocals" pass, which runs after inlining and before escape analysis, to prune any unneeded local variables and assignments. In particular, this helps avoid unnecessary Addrtaken markings from unreachable closures. Deadlocals is sensitive to...
[ { "path": "src/cmd/compile/internal/base/debug.go", "patch": "@@ -48,6 +48,7 @@ type DebugFlags struct {\n \tMergeLocalsTrace int `help:\"trace debug output for locals merging\"`\n \tMergeLocalsHTrace int `help:\"hash-selected trace debug output for locals merging\"`\n \tNil ...
2024-05-22T21:00:43
nodejs/node
dd31255d4f3122eb9296459990b906673a7a9314
b4d5f1f26daef312811e67cdb26dc1871363ebb8
test: fix flaky test-runner-watch-mode PR-URL: https://github.com/nodejs/node/pull/48144 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": "test/fixtures/test-runner/dependency.js", "patch": "@@ -1 +0,0 @@\n-module.exports = {};", "additions": 0, "deletions": 1, "language": "JavaScript" }, { "path": "test/fixtures/test-runner/dependency.mjs", "patch": "@@ -1 +0,0 @@\n-export const a = 1;", "additions": 0, ...
2023-05-25T18:20:09
facebook/react
5c6543771b7fe7ca37ab4b4419a7f873e0849cfb
3f62dec84aba5d7ae6dfc73d68752254e8f06384
Fix global reference to Promise (#21926) Referencing Promise without a type check will throw in environments where Promise is not defined. We will follow up with a lint rule that restricts access to all globals except in dedicated module indirections.
[ { "path": "packages/react-dom/src/client/ReactDOMHostConfig.js", "patch": "@@ -392,7 +392,7 @@ export const scheduleTimeout: any =\n export const cancelTimeout: any =\n typeof clearTimeout === 'function' ? clearTimeout : (undefined: any);\n export const noTimeout = -1;\n-const localPromise = Promise;\n+co...
2021-07-20T22:39:57
rust-lang/rust
2ac2b18910fcfca41d90b80f866b84ff23f0a2e2
7fefa09b90ca57b8a0e0e4717d672d38a0ae58b5
std: sys: fs: uefi: Implement initial File - Implement basic opening and creating files. - Also implement debug. Signed-off-by: Ayush Singh <ayush@beagleboard.org>
[ { "path": "library/std/src/sys/fs/uefi.rs", "patch": "@@ -11,7 +11,7 @@ use crate::sys::{helpers, unsupported};\n \n const FILE_PERMISSIONS_MASK: u64 = r_efi::protocols::file::READ_ONLY;\n \n-pub struct File(!);\n+pub struct File(uefi_fs::File);\n \n #[derive(Clone)]\n pub struct FileAttr {\n@@ -235,9 +235,...
2025-11-19T05:47:00
electron/electron
c8d18a0a1c4d7ff9dcbfb45889a21b14a5e50ff6
db7059eb0a24910d673050395f9c099d98a465cd
fix: destroy MessageDispatcher before WebContents (#28286)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -914,6 +914,7 @@ WebContents::~WebContents() {\n return;\n }\n \n+ inspectable_web_contents_->GetView()->SetDelegate(nullptr);\n if (guest_delegate_)\n guest_delegate_->WillDestroy();\n \n@@ -1760,6 +1761,7 @@ void WebCont...
2021-03-22T01:56:30
vercel/next.js
601421a34a403b45324d8a4a4dcd55698f0048d3
ca867787bdce82f7d87ff054e00f0437b37ab5da
[DevOverlay]: fix missing Error context for build-time errors (#75932) `Error` should not be an optional property of the toolbar or error overlay layout, since that information is needed for parsing the message to determine if a docs link should be shown or if a stack trace can be copied. This marks those proper...
[ { "path": "packages/next/errors.json", "patch": "@@ -635,5 +635,6 @@\n \"634\": \"Route %s used \\\"searchParams\\\" inside \\\"use cache\\\". Accessing Dynamic data sources inside a cache scope is not supported. If you need this data inside a cached function use \\\"searchParams\\\" outside of the cached...
2025-02-12T02:46:06
golang/go
a55f9d93e31c885f104896dc7c03fa14ec1a1b29
966688a43a8b577c2eb2e7165a57fdae87a1840e
cmd/go/internal/test: update documentation for the "go test" command The documentation referred to the package's source root as $GOPATH, which is no longer correct. Fixes #64303 Change-Id: I2ea113497975726468d4ee4f85e2cfcbea9a76d6 Reviewed-on: https://go-review.googlesource.com/c/go/+/598235 Reviewed-by: Julian Dax ...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1879,10 +1879,10 @@\n // the result is not cached. To disable test caching, use any test flag\n // or argument other than the cacheable flags. The idiomatic way to disable\n // test caching explicitly is to use -count=1. Tests that open files within\n-// the ...
2024-07-15T14:36:07
nodejs/node
e53009811724268b54c738846f15b874d157e616
52758435e1b057e5c1a775f75d2f2facbed57120
doc: add Ruy to list of TSC members Fixes: https://github.com/nodejs/TSC/issues/1388 Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/48172 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Antoine du Hamel <duhamelan...
[ { "path": "README.md", "patch": "@@ -196,6 +196,8 @@ For information about the governance of the Node.js project, see\n **Richard Lau** <<rlau@redhat.com>>\n * [ronag](https://github.com/ronag) -\n **Robert Nagy** <<ronagy@icloud.com>>\n+* [ruyadorno](https://github.com/ruyadorno) -\n+ **Ruy Adorno** <...
2023-05-25T14:31:20
facebook/react
3f62dec84aba5d7ae6dfc73d68752254e8f06384
5579f1dc875c328e8155906aabe20902fc14c04a
Typo fix (#21729) emitted instead of emmitted
[ { "path": "packages/react-server/src/ReactFizzServer.js", "patch": "@@ -1612,7 +1612,7 @@ function flushSegment(\n // Assign an ID to refer to the future content by.\n boundary.rootSegmentID = request.nextSegmentId++;\n if (boundary.completedSegments.length > 0) {\n- // If this is at least ...
2021-07-19T21:19:52
electron/electron
79bcb882acc06989af601d3818d7eb9f0aaabfbe
a68d43ce8ba2ff4f6bcdf6e01e5a1f260af265d6
fix: drag region offsets in BrowserViews (#28268)
[ { "path": "shell/browser/native_browser_view_mac.mm", "patch": "@@ -317,8 +317,9 @@ - (void)drawDebugRect:(NSRect)aRect {\n const auto window_content_view_height = NSHeight(window_content_view.bounds);\n for (const auto& rect : drag_exclude_rects) {\n const auto x = rect.x() + offset.x();\n- cons...
2021-03-19T13:22:05
vercel/next.js
ca867787bdce82f7d87ff054e00f0437b37ab5da
b70e837937124a9a2061384192b599e062e904a6
refactor: minor cleanups in webpack actions code (#75912) this is a bundle of small cleanups i did while working on https://github.com/vercel/next.js/pull/75908, and i decided to pull them out. **this PR is intended to be reviewed commit-by-commit**. i don't want to turn this into a stack because that'll take much lon...
[ { "path": "packages/next/src/build/analysis/get-page-static-info.ts", "patch": "@@ -120,16 +120,12 @@ export function getRSCModuleInformation(\n const parsedActionsMeta = actionsJson\n ? (JSON.parse(actionsJson[1]) as Record<string, string>)\n : undefined\n- const actions = parsedActionsMeta\n- ...
2025-02-12T02:42:39
rust-lang/rust
175e297e58198883cc181ad01805c6f3280f2e61
49b6f677a50ac57051806eef1727b6a40bb2a196
Make `tt::Literal` use one `Symbol` for the text and the suffix That shrinks it, which is useless now (it's not the dominant factor), but will become important when we'll implement span compression.
[ { "path": "src/tools/rust-analyzer/crates/cfg/src/cfg_expr.rs", "patch": "@@ -157,7 +157,8 @@ fn next_cfg_expr_from_ast(\n },\n ctx: span::SyntaxContext::root(span::Edition::Edition2015),\n };\n- let literal = tt::token_to_literal(litera...
2025-12-29T03:05:47
facebook/react
d5de45820ae6beda46c34f8737f1861c85642a65
232c67e911c61dbd15ceb8b1da4f3fa139ff617a
Fix typo (#21671)
[ { "path": "packages/react-devtools-shared/src/backend/console.js", "patch": "@@ -170,7 +170,7 @@ export function patch({\n try {\n if (shouldShowInlineWarningsAndErrors) {\n // patch() is called by two places: (1) the hook and (2) the renderer backend.\n- ...
2021-07-15T00:42:54
golang/go
966688a43a8b577c2eb2e7165a57fdae87a1840e
ae33b66c19a2a2cf3b95e67d4cec81b474cf733d
internal/coverage: add internal/stringslite to hard-coded coverpkg ID list Add internal/stringslite to the list of hard-coded package IDs to be special cased in coverage package registration. This patch fixes a new -coverpkg=all failure on the darwin longtest builders. Change-Id: I56357572f215fab09f46226fe20592413632...
[ { "path": "src/internal/coverage/pkid.go", "patch": "@@ -56,6 +56,7 @@ var rtPkgs = [...]string{\n \t\"internal/bytealg\",\n \t\"internal/goexperiment\",\n \t\"internal/runtime/syscall\",\n+\t\"internal/stringslite\",\n \t\"runtime\",\n }\n ", "additions": 1, "deletions": 0, "language": "Go" }...
2024-07-30T13:47:58
nodejs/node
52758435e1b057e5c1a775f75d2f2facbed57120
e74465d678583c2313e60a0d0be1b3a2e4e88e80
doc: update socket.remote* properties documentation Fixes: https://github.com/nodejs/node/issues/48061 PR-URL: https://github.com/nodejs/node/pull/48139 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "doc/api/net.md", "patch": "@@ -1171,7 +1171,8 @@ added: v0.11.14\n \n * {string}\n \n-The string representation of the remote IP family. `'IPv4'` or `'IPv6'`.\n+The string representation of the remote IP family. `'IPv4'` or `'IPv6'`. Value may be `undefined` if\n+the socket is destroyed (for exam...
2023-05-25T13:19:10
electron/electron
a68d43ce8ba2ff4f6bcdf6e01e5a1f260af265d6
502d4c19ce58801196dd230531dfbc7109289956
fix: missing HandleScope in ResetBrowserViews (#28266)
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -1112,6 +1112,8 @@ int32_t BaseWindow::GetID() const {\n }\n \n void BaseWindow::ResetBrowserViews() {\n+ v8::HandleScope scope(isolate());\n+\n for (auto& item : browser_views_) {\n gin::Handle<BrowserView> browser_view;\n i...
2021-03-19T01:24:55
vercel/next.js
b70e837937124a9a2061384192b599e062e904a6
673f0a96478aa1cdbef1dba4f3d2aea02fa1e806
[error overlay] display different error info individually (#75916)
[ { "path": "packages/next/src/client/components/errors/attach-hydration-error-state.ts", "patch": "@@ -1,5 +1,6 @@\n import {\n getDefaultHydrationErrorMessage,\n+ isHydrationError,\n testReactHydrationWarning,\n } from '../is-hydration-error'\n import {\n@@ -13,24 +14,42 @@ export function attachHydrat...
2025-02-12T01:51:21
facebook/react
a97b5ac078499e33bbcf937935ab7139a317bac4
f0efb7b70f9c1570b35e71a7fcc6690684fe9d08
[Bugfix] Don't hide/unhide unless visibility changes (#21875) * Use Visibility flag to schedule a hide/show effect Instead of the Update flag, which is also used for other side-effects, like refs. I originally added the Visibility flag for this purpose in #20043 but it got reverted last winter when we were bis...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.new.js", "patch": "@@ -66,7 +66,6 @@ import {\n ChildDeletion,\n Snapshot,\n Update,\n- Callback,\n Ref,\n Hydrating,\n HydratingAndUpdate,\n@@ -75,6 +74,7 @@ import {\n MutationMask,\n LayoutMask,\n PassiveMask,\n+ Visibility...
2021-07-14T17:37:10
golang/go
ae33b66c19a2a2cf3b95e67d4cec81b474cf733d
13b3af03913e4c875cb153d708b16adb023600f9
cmd/link: add variable_parameter attr to functype outparams When generating DW_TAG_subroutine_type DIEs during linker DWARF type synthesis, ensure that in the list of children of the subroutine type DIE (correspondings to input/output params) the output params are marked with the DW_AT_variable_parameter attribute. In...
[ { "path": "src/cmd/internal/dwarf/dwarf.go", "patch": "@@ -338,6 +338,7 @@ const (\n \tDW_ABRV_LEXICAL_BLOCK_SIMPLE\n \tDW_ABRV_STRUCTFIELD\n \tDW_ABRV_FUNCTYPEPARAM\n+\tDW_ABRV_FUNCTYPEOUTPARAM\n \tDW_ABRV_DOTDOTDOT\n \tDW_ABRV_ARRAYRANGE\n \tDW_ABRV_NULLTYPE\n@@ -572,6 +573,8 @@ var abbrevs = []dwAbbrev{\...
2024-06-27T14:54:06
nodejs/node
7df27582bbb896ebb72697da58209976a0b4daf6
442dfc9b394b7f9b8b092ef21fad3ade7ebee491
bootstrap: throw ERR_NOT_SUPPORTED_IN_SNAPSHOT in unsupported operation This patch adds a new ERR_NOT_SUPPORTED_IN_SNAPSHOT error and throw it in the worker constructor. PR-URL: https://github.com/nodejs/node/pull/47887 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Re...
[ { "path": "doc/api/errors.md", "patch": "@@ -2420,6 +2420,13 @@ error indicates that the idle loop has failed to stop.\n An attempt was made to use operations that can only be used when building\n V8 startup snapshot even though Node.js isn't building one.\n \n+<a id=\"ERR_NOT_SUPPORTED_IN_SNAPSHOT\"></a>\n...
2023-05-05T20:14:54
rust-lang/rust
c516c284755130dac7d3232b7c40567a57cfb936
75fa8a0ab9b2c2143eccb39dc367ca6f62e52e4e
Add useless prefix `try_into_` for suggest_name Example --- ```rust enum Foo { Num(i32) } impl Foo { fn try_into_num(self) -> Result<i32, Self> { if let Self::Num(v) = self { Ok(v) } else { Err(self) } } } fn handle(foo: Foo) { foo.try_into_num().$0 } ``...
[ { "path": "src/tools/rust-analyzer/crates/ide-db/src/syntax_helpers/suggest_name.rs", "patch": "@@ -44,7 +44,7 @@ const SEQUENCE_TYPES: &[&str] = &[\"Vec\", \"VecDeque\", \"LinkedList\"];\n /// `vec.as_slice()` -> `slice`\n /// `args.into_config()` -> `config`\n /// `bytes.to_vec()` -> `vec`\n-const USELESS...
2025-12-28T22:45:17
electron/electron
4057e6b56e7d35575d5b46aaebeee91be05c5782
b52ccc97264481fba6a092a24ba8b63058c964fb
fix: DesktopCapturer gc'd prior to capture completion (#28273) desktopCapture.getSources() returns a promise which should resolve when capturing finishes. Internally it creates an instance of DesktopCapturer which is responsible for resolving or rejecting the promise. Between the time DesktopCapturer starts capt...
[ { "path": "shell/browser/api/electron_api_desktop_capturer.cc", "patch": "@@ -162,6 +162,9 @@ void DesktopCapturer::UpdateSourcesList(DesktopMediaList* list) {\n v8::Locker locker(isolate);\n v8::HandleScope scope(isolate);\n gin_helper::CallMethod(this, \"_onerror\", \"Failed to get...
2021-03-18T20:43:35
vercel/next.js
673f0a96478aa1cdbef1dba4f3d2aea02fa1e806
0ef83cd39e297f352332b8a3d835f516b968b331
error code should preserve after stitching (#75929)
[ { "path": "crates/next-error-code-swc-plugin/README.md", "patch": "@@ -4,7 +4,7 @@\n \n This plugin transforms Next.js source code by:\n \n-- Rewriting `new Error` or `Error` to include an additional property: `Object.defineProperty(new Error(...), \"__NEXT_ERROR_CODE\", { value: $code, enumerable: false })...
2025-02-12T00:28:32
facebook/react
81346764bb62dc3fb04ccbf7f507cd390a249840
9090257e6edec44a09a4cd5723d1d0f7ce2ab7c4
Run persistent tests in more configurations in CI (#21880) I noticed that `enableSuspenseLayoutEffectSemantics` is not fully implemented in persistent mode. I believe this was an oversight because we don't have a CI job that runs tests in persistent mode and with experimental flags enabled. This adds additional ...
[ { "path": ".circleci/config.yml", "patch": "@@ -456,6 +456,7 @@ workflows:\n \n # TODO: Test more persistent configurations?\n - '-r=stable --env=development --persistent'\n+ - '-r=experimental --env=development --persistent'\n - yarn_build_combined:\n ...
2021-07-14T15:40:20
golang/go
13b3af03913e4c875cb153d708b16adb023600f9
3e1bda08fba871157c3c91a44437b7bd266371c1
runtime: delete TestDebugLogBuild Now that we're actually testing debuglog in the regular build configuration, it's far less important that we take the time to rebuild with the debuglog tag. Change-Id: I62bfd494ccb99087f35851c4476238b39ef40dec Reviewed-on: https://go-review.googlesource.com/c/go/+/600698 Reviewed-by:...
[ { "path": "src/runtime/debuglog_test.go", "patch": "@@ -24,7 +24,6 @@ package runtime_test\n \n import (\n \t\"fmt\"\n-\t\"internal/testenv\"\n \t\"regexp\"\n \t\"runtime\"\n \t\"strings\"\n@@ -156,14 +155,3 @@ func TestDebugLogLongString(t *testing.T) {\n \t\tt.Fatalf(\"want %q, got %q\", want, got)\n \t}\...
2024-07-23T21:54:34
nodejs/node
ceb2a21edd7bbeee904b49111d8e2ae1bca044b1
1620626fa8756c725cbf366cae03fd654bdeffac
tools: update LICENSE and license-builder.sh A libuv `LICENSE-extra` file was added and a couple of files were removed (stdint-msvc2008.h and pthread-fixes.c). PR-URL: https://github.com/nodejs/node/pull/48078 Fixes: https://github.com/nodejs/node/issues/43931 Fixes: https://github.com/nodejs/node/issues/42496 Fixes:...
[ { "path": "LICENSE", "patch": "@@ -644,9 +644,6 @@ The externally maintained libraries used by Node.js are:\n \n - libuv, located at deps/uv, is licensed as follows:\n \"\"\"\n- libuv is licensed for use as follows:\n-\n- ====\n Copyright (c) 2015-present libuv project contributors.\n \n Per...
2023-05-24T05:47:22
electron/electron
b52ccc97264481fba6a092a24ba8b63058c964fb
8476bed36eb4e7c5c58b50bc6b186fa82263fd21
fix: bad menu position when no positioning item specified (#28224)
[ { "path": "shell/browser/api/electron_api_menu_mac.mm", "patch": "@@ -88,7 +88,7 @@\n }\n \n // If no preferred item is specified, try to show all of the menu items.\n- if (!positioning_item) {\n+ if (!item) {\n CGFloat windowBottom = CGRectGetMinY([view window].frame);\n CGFloat lowestMenuPoi...
2021-03-18T20:37:14
facebook/react
9090257e6edec44a09a4cd5723d1d0f7ce2ab7c4
9fec3f2adde00614c562f23feb74948e47aaafb6
fix: restore execution context after RetryAfterError completed (#21766) * test: Add failing test due to executionContext not being restored * fix: restore execution context after RetryAfterError completed * Poke codesandbox/ci * Completely restore executionContext * expect a specific error
[ { "path": "packages/react-dom/src/__tests__/ReactTestUtilsAct-test.js", "patch": "@@ -246,6 +246,33 @@ function runActTests(label, render, unmount, rerender) {\n ]);\n });\n \n+ // @gate __DEV__\n+ it('warns if a setState is called outside of act(...) after a component threw', () => ...
2021-07-13T21:38:25
golang/go
3e1bda08fba871157c3c91a44437b7bd266371c1
548158c4a57580e8c8bd0e9b2f91d03b31efa879
runtime: run debuglog tests when debuglog tag is *not* set Currently, the debuglog tests only run when the debuglog build tag is set because, until the last few CLs, all of debuglog was compiled away without that build tag. This causes two annoying problems: 1. The tests basically never run, because we don't regularl...
[ { "path": "src/runtime/debuglog.go", "patch": "@@ -740,10 +740,12 @@ func (r *debugLogReader) printVal() bool {\n \n // printDebugLog prints the debug log.\n func printDebugLog() {\n-\tif !dlogEnabled {\n-\t\treturn\n+\tif dlogEnabled {\n+\t\tprintDebugLogImpl()\n \t}\n+}\n \n+func printDebugLogImpl() {\n \...
2024-07-23T21:28:09
nodejs/node
1620626fa8756c725cbf366cae03fd654bdeffac
9e68f9413e05e6ecb3a1c15bc7c766a09e866cc0
test: unflake test-vm-timeout-escape-nexttick This wasn't failing on arm boxes, increase the `runInNewContext()` timeout a bit to make sure the code it's allowed to fail. PR-URL: https://github.com/nodejs/node/pull/48078 Fixes: https://github.com/nodejs/node/issues/43931 Fixes: https://github.com/nodejs/node/issues/4...
[ { "path": "test/known_issues/test-vm-timeout-escape-nexttick.js", "patch": "@@ -13,7 +13,7 @@ const NS_PER_MS = 1000000n;\n const hrtime = process.hrtime.bigint;\n const nextTick = process.nextTick;\n \n-const waitDuration = common.platformTimeout(100n);\n+const waitDuration = common.platformTimeout(200n);\...
2023-05-22T09:25:58
vercel/next.js
58e1adf4ca47faeae2fe7b14f90f41dd8de292ee
9ffd729e8a11ce1dc56ce78e0750d2d6f0623788
docs(css-in-js): update warning about using css-in-js with server components (#75931) ## Why? The warning suggests its not supported in Server Components, but since React 19 was released, there is better support! Need to just re-word the warning a bit. - Fixes https://github.com/vercel/next.js/issues/75895 - https:...
[ { "path": "docs/01-app/03-building-your-application/05-styling/04-css-in-js.mdx", "patch": "@@ -7,9 +7,7 @@ description: Use CSS-in-JS libraries with Next.js\n \n <AppOnly>\n \n-> **Warning:** CSS-in-JS libraries which require runtime JavaScript are not currently supported in Server Components. Using CSS-in...
2025-02-11T22:55:33
facebook/react
9fec3f2adde00614c562f23feb74948e47aaafb6
14bac6193a334eda42e727336e8967419f08f5df
DevTools: Ignore multiple sourceMappingUrls for external source maps (#21871) Added an edge case regression test and bugfix.
[ { "path": "packages/react-devtools-extensions/src/__tests__/__source__/ContainingStringSourceMappingURL.js", "patch": "@@ -0,0 +1,23 @@\n+/**\n+ * Copyright (c) Facebook, Inc. and its affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root director...
2021-07-13T20:39:29
electron/electron
3b183854ff094f6899a34e5c470af6eb1ceecc68
08330cb0792b6518126146a8c1a14ce4186d197c
2693008: Fix loading non-system cursors on Windows on browser_tests https://chromium-review.googlesource.com/c/chromium/src/+/2693008
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -86,7 +86,6 @@\n #endif\n \n #if defined(OS_WIN)\n-#include \"ui/base/cursor/win/win_cursor_factory.h\"\n #include \"ui/base/l10n/l10n_util_win.h\"\n #include \"ui/display/win/dpi.h\"\n #include \"ui/gfx/system_fonts_win.h\"\n@@ -405,10 ...
2021-03-18T19:52:54
golang/go
548158c4a57580e8c8bd0e9b2f91d03b31efa879
eb6743d9d7dd48f785e48b1967f405658a6444d7
runtime: switch debuglog from const-toggled to type-toggled Currently, the debuglog build tag controls the dlogEnabled const, and all methods of dlogger first check this const and immediately return if dlog is not enabled. With constant folding and inlining, this makes the whole dlog implementation compile away if it'...
[ { "path": "src/runtime/debuglog.go", "patch": "@@ -12,6 +12,16 @@\n //\n // This facility can be enabled by passing -tags debuglog when\n // building. Without this tag, dlog calls compile to nothing.\n+//\n+// Implementation notes\n+//\n+// There are two implementations of the dlog interface: dloggerImpl an...
2024-07-23T19:39:51
facebook/react
64bbd7a7f1b7874ffcbfc69fa87be4f606e5adc5
464f275724ab11e3b55ea753bc4aee6700399332
Adjust Error stack columns numbers by 1 (#21865) To account for differences between error stacks (1-based) and ASTs (0-based). In practice this change should not make an observable difference.
[ { "path": "packages/react-devtools-extensions/src/astUtils.js", "patch": "@@ -40,6 +40,17 @@ function checkNodeLocation(\n return false;\n }\n \n+ // Column numbers are representated differently between tools/engines.\n+ // Error.prototype.stack columns are 1-based (like most IDEs) but ASTs are 0-ba...
2021-07-13T17:28:01
vercel/next.js
9ffd729e8a11ce1dc56ce78e0750d2d6f0623788
281a8b3d63c7ac106b6d76f196c37e0a080fd737
[DevOverlay]: render indicator in pages router (#75918) We weren't rendering the new indicator when used in pages router -- `isMounted` was only true when there was an error. This PR keeps the `isMounted` logic for the old overlay but removes it for the new one.
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/pages/error-boundary.tsx", "patch": "@@ -3,7 +3,6 @@ import * as React from 'react'\n type DevOverlayErrorBoundaryProps = {\n children?: React.ReactNode\n onError: (error: Error, componentStack: string | null) => void\n- isM...
2025-02-11T21:50:20
electron/electron
b6ff12ef7f07b1ee2e7bcdca0d4b1d20c815e77b
80f89a34728281cc61cfacd7b682f0227f89a102
docs: update Quick Start Guide for Electron 12 (#28223) * docs: Update Quick Start Guide for Electron 12 With `contextIsolation` enabled by default in Electron 12, the Getting Started Guide no longer works as it is written. In order for the basic example to display values from `process.versions`, we need to add a ...
[ { "path": "docs/fiddles/quick-start/index.html", "patch": "@@ -8,9 +8,9 @@\n <body>\n <h1>Hello World!</h1>\n <p>\n- We are using node <script>document.write(process.versions.node)</script>,\n- Chrome <script>document.write(process.versions.chrome)</script>,\n- and Electron <scr...
2021-03-16T23:45:38
golang/go
eb6743d9d7dd48f785e48b1967f405658a6444d7
8b51146c698bcfcc2c2b73fa9390db5230f2ce0a
runtime: rename dlogger to dloggerImpl This is a mechanical change, other than adding the type alias for dlogger. This is a step in preparing us to make debuglog testable without the debuglog build tag. Change-Id: Ief12f0eaf5db98a8b006c759fd325dabcc9a52d4 Reviewed-on: https://go-review.googlesource.com/c/go/+/600695...
[ { "path": "src/runtime/debuglog.go", "patch": "@@ -31,6 +31,8 @@ const debugLogBytes = 16 << 10\n // Above this, the string will be truncated with \"..(n more bytes)..\"\n const debugLogStringLimit = debugLogBytes / 8\n \n+type dlogger = dloggerImpl\n+\n // dlog returns a debug logger. The caller can use me...
2024-07-23T19:11:14
nodejs/node
9e68f9413e05e6ecb3a1c15bc7c766a09e866cc0
a7a1fc5e0b4c8c349aed3007f188012ad9907a5b
deps: upgrade to libuv 1.45.0 - linux: introduce io_uring support https://github.com/libuv/libuv/pull/3952 - src: add new metrics APIs https://github.com/libuv/libuv/pull/3749 - unix,win: give thread pool threads an 8 MB stack https://github.com/libuv/libuv/pull/3787 - win,unix: change execution order of timers https:...
[ { "path": "deps/uv/.mailmap", "patch": "@@ -29,6 +29,7 @@ Keno Fischer <kenof@stanford.edu> <kfischer+github@college.harvard.edu>\n Keno Fischer <kenof@stanford.edu> <kfischer@college.harvard.edu>\n Leith Bade <leith@leithalweapon.geek.nz> <leith@mapbox.com>\n Leonard Hecker <leonard.hecker91@gmail.com> <le...
2023-05-17T10:06:26
facebook/react
b03293faaa868f93b57c34aed64f48e4cfec1c24
9f5224a9c6f5287ddf7db724f5a79443d93fbd44
Fix link to fbjs (#21863) `fbjs` doesn't have the `main` branch and it is `master`
[ { "path": "scripts/print-warnings/print-warnings.js", "patch": "@@ -19,7 +19,7 @@ const parserOptions = {\n // babelParser has its own options and we can't directly\n // import/require a babel preset. It should be kept **the same** as\n // the `babel-plugin-syntax-*` ones specified in\n- // https://g...
2021-07-13T14:55:33
vercel/next.js
84abe818c1ae365c69da896326787464824fdc31
412d6fe340b7a9fe7cd6396db33fbc31ed7c7792
[dev-overlay] Introduce motion to surface new errors (#75734) This PR for the most part introduces an animation to subtly draw attention to new errors appearing on the Next.js Dev Tools badge. In addition, there are a few quality-of-life improvements made on the go: - More robust keyboard navigation when determining ...
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -92,7 +92,16 @@ function DevToolsPopover({\n useFocusTrap(menuRef, triggerRef, isMenuOpen)\n useClickOutside(menuRef, triggerRef, isMenuOpe...
2025-02-11T19:48:09
electron/electron
7e961d8a374fef4c4a82da41dcb07926699eb523
b6d2ae04555648459d6784c6cc823ec01cf72907
Fixup 2725403: Add URLLoaderClient::OnReceiveEarlyHints()
[ { "path": "shell/browser/net/proxying_url_loader_factory.cc", "patch": "@@ -240,7 +240,8 @@ void ProxyingURLLoaderFactory::InProgressRequest::OnReceiveResponse(\n }\n }\n \n-void OnReceiveEarlyHints(network::mojom::EarlyHintsPtr early_hints) {\n+void ProxyingURLLoaderFactory::InProgressRequest::OnReceiveE...
2021-03-16T19:44:41