repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
1646f725bb15ec857c4b6945bcd2d47f615c6ec3
de46eaadb5fb75dba66e90aaf1faf2b7a0443815
Revert "cmd/go: relax the regular expression of TestScript/list_pkgconfig_error" This reverts commit 906338f82fc6641e834964def3199ac25df93e94. Reason for revert: break gotip-linux-loong64 builder. Fixes #69651 Updates #68283 Change-Id: I909b52ed0fd999e21c00c1d9d80d7fe2fd4898a1 Reviewed-on: https://go-review.googles...
[ { "path": "src/cmd/go/testdata/script/list_pkgconfig_error.txt", "patch": "@@ -2,9 +2,7 @@\n [!exec:pkg-config] skip 'test requires pkg-config tool'\n \n ! go list -export .\n-# 'Package .* not found appears' in pkg-config and pkgconf; while\n-# 'could not find package .*' appears in u-config. See #68283.\n...
2024-09-27T17:24:38
vercel/next.js
094d9096d526dcc818499731beecaee9b3b777f4
f91192ca503a3f15cc2ea7c8c2513c7985f6f030
Turbopack: Simplify emitDecoratorMetadata test (#76678) ## What? Reuse the same code as is checked in page.js, making them consistent and dropping an additional dependency which also makes it easier to run while testing. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is han...
[ { "path": "test/production/emit-decorator-metadata/app/pages/api/[[...params]].js", "patch": "@@ -1,14 +1,15 @@\n-import { createHandler, Get, Param } from 'next-api-decorators'\n+import 'reflect-metadata'\n+import { container, singleton } from 'tsyringe'\n \n-class HelloHandler {\n- @Get('/:myParam')\n- ...
2025-03-03T07:57:27
facebook/react
e8f4a6653dc3f5d9702236a3abed887ca44dcfbb
3e8c91c5f8e142f341b407bdebfe4fe4e0930914
Fix import in example
[ { "path": "packages/react/README.md", "patch": "@@ -10,7 +10,7 @@ The `react` package contains only the functionality necessary to define React co\n \n ```js\n import { useState } from 'react';\n-import { createRoot } from 'react-dom';\n+import { createRoot } from 'react-dom/client';\n \n function Counter()...
2022-04-07T13:12:58
golang/go
0a8dea10cebaef764ceb6384d2e2571ff6609672
6a730e1ef0b7f312fe01815086a2eb5a25739f2d
cmd/internal/obj/loong64: mark functions with small stacks NOSPLIT goos: linux goarch: loong64 pkg: test/bench/go1 cpu: Loongson-3A6000 @ 2500.00MHz │ bench.old │ bench.new │ │ sec/op │ sec/op vs base │ BinaryTree17 ...
[ { "path": "src/cmd/internal/obj/loong64/obj.go", "patch": "@@ -320,6 +320,12 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\tautosize += int32(c.ctxt.Arch.FixedFrameSize)\n \t\t\t}\n \n+\t\t\tif p.Mark&LEAF != 0 && autosize < abi.StackSmall {\n+\t\t\t\t// A leaf funct...
2024-09-25T09:27:24
electron/electron
e3fe80e0e8437bf9a770d33e57a050d685450c95
b24cfe17bc14961c982e0e6eb594b33733e0cd2e
fix: increase stack size on windows x86 (#29474) * fix: increace main thread stack size on windows x86 * chore: improve quit-on-crashed-event spec * chore: add debug logs * Revert "chore: add debug logs" This reverts commit 0be81ae07c85095ac2c920436b97557c95c1c524. * chore: use a reliable crash endpoint...
[ { "path": "shell/app/electron_main.cc", "patch": "@@ -103,7 +103,75 @@ namespace crash_reporter {\n extern const char kCrashpadProcess[];\n }\n \n+// In 32-bit builds, the main thread starts with the default (small) stack size.\n+// The ARCH_CPU_32_BITS blocks here and below are in support of moving the mai...
2021-07-22T19:49:21
nodejs/node
a61bc9d933f74745ed9852d962c0ac70957ee643
21759bdfed449fad44bd64ee300bd9590f28ec17
test_runner: fix invalid timer call Signed-off-by: Erick Wendel <erick.workspace@gmail.com> PR-URL: https://github.com/nodejs/node/pull/49477 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/test_runner/mock/mock_timers.js", "patch": "@@ -372,7 +372,7 @@ class MockTimers {\n ObjectDefineProperty(\n nodeTimers,\n 'setTimeout',\n- this.#realSetTimeout,\n+ this.#realTimersSetTimeout,\n );\n ObjectDefineProperty(\n nodeTimers,", "a...
2023-09-05T21:17:28
vercel/next.js
c6ab3d53694dd3e692daa433449707cba3ea9568
0b699b1c8d6cca8e9ab39b4bc38e67945373f918
fix(turbopack): Fix analysis of private properties (#76654) ### What? Still look for effects even if a private property exists. ### Why? It's valid ECMAScript input. ### How? Closes https://github.com/vercel/next.js/issues/75938
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -1141,9 +1141,10 @@ impl Analyzer<'_> {\n let prop_value = match prop {\n // TODO avoid clone\n MemberProp::Ident(i) => Box::new(i.sym.clone().into()),\n-...
2025-03-03T05:28:11
facebook/react
3e8c91c5f8e142f341b407bdebfe4fe4e0930914
bb49abea2377d6391a98cef536e9da4c26ddaa39
Fix import in README
[ { "path": "packages/react-dom/README.md", "patch": "@@ -13,7 +13,7 @@ npm install react react-dom\n ### In the browser\n \n ```js\n-import { createRoot } from 'react-dom';\n+import { createRoot } from 'react-dom/client';\n \n function App() {\n return <div>Hello World</div>;", "additions": 1, "del...
2022-04-07T12:46:36
golang/go
ff695ca2e3ea37dcb688d470e86ed64849c61f2e
2ebaff4890596ed6064e2dcbbe5e68bc93bed882
runtime: fix TestGdbAutotmpTypes on gdb version 15 On Arch Linux with gdb version 15.1, the test for TestGdbAutotmpTypes print the following output, ---- ~/src/go/src/runtime $ go test -run=TestGdbAutotmpTypes -v === RUN TestGdbAutotmpTypes === PAUSE TestGdbAutotmpTypes === CONT TestGdbAutotmpTypes runtime-gdb...
[ { "path": "src/runtime/runtime-gdb_test.go", "patch": "@@ -575,15 +575,15 @@ func TestGdbAutotmpTypes(t *testing.T) {\n \n \t// Check that the backtrace matches the source code.\n \ttypes := []string{\n-\t\t\"[]main.astruct;\",\n-\t\t\"bucket<string,main.astruct>;\",\n-\t\t\"hash<string,main.astruct>;\",\n-...
2024-07-13T05:18:04
electron/electron
b24cfe17bc14961c982e0e6eb594b33733e0cd2e
eca1098b55a96578352a7ab95d25ed99082769a8
fix: process.exit crash in nativeWindowOpen (#30218)
[ { "path": "shell/browser/api/electron_api_browser_window.cc", "patch": "@@ -154,7 +154,7 @@ void BrowserWindow::RenderFrameCreated(\n }\n \n void BrowserWindow::DidFirstVisuallyNonEmptyPaint() {\n- if (window()->IsVisible())\n+ if (window()->IsClosed() || window()->IsVisible())\n return;\n \n // Whe...
2021-07-22T13:38:11
nodejs/node
47c5152545a72ac201efed3a3350aead1e04a6ac
0028fd12b7624db0e1b4ae9449c4c6f93167b282
test_runner: fix typescript coverage PR-URL: https://github.com/nodejs/node/pull/49406 Fixes: https://github.com/nodejs/node/issues/49398 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "lib/internal/test_runner/coverage.js", "patch": "@@ -338,7 +338,7 @@ function mapRangeToLines(range, lines) {\n mid = MathFloor((start + end) / 2);\n let line = lines[mid];\n \n- if (startOffset >= line.startOffset && startOffset <= line.endOffset) {\n+ if (startOffset >= line?.star...
2023-09-04T21:45:07
vercel/next.js
e368936401067709ce10fb6feeca24c56d8f253f
170f459753b9860676555ebdbc984aa1b15eae8c
Fix uniqueness detection for `generateStaticParams` (#76713)
[ { "path": "packages/next/src/build/static-paths/app.ts", "patch": "@@ -38,7 +38,7 @@ function areParamValuesEqual(a: ParamValue, b: ParamValue) {\n return false\n }\n \n- return a.every((item) => b.includes(item))\n+ return a.every((item, index) => item === b[index])\n }\n \n // Otherwis...
2025-03-01T22:25:49
facebook/react
af730436c05a2fb2c6d8a334c578fc347392ba38
1d1fa94a66275c42b5339dabf9985379a0c74a23
test: Update attribute fixture snapshot (#24083) * test: Update attribute fixture snapshot * Poke CircleCI * Poke CircleCI
[ { "path": "fixtures/attribute-behavior/AttributeTableSnapshot.md", "patch": "@@ -9787,14 +9787,14 @@\n | `src=(integer)`| (changed)| `\"http://localhost:3000/1\"` |\n | `src=(NaN)`| (changed, warning)| `\"http://localhost:3000/NaN\"` |\n | `src=(float)`| (changed)| `\"http://localhost:3000/99.99\"` |\n-| `s...
2022-04-05T01:59:26
electron/electron
19820fc2a7daebe7f19ac99319261ca0571750f1
adc3f39a9e6f19582e05f92205bdb33fe633558c
chore: add additional crash key to gin::Wrappable (#30161)
[ { "path": "patches/chromium/.patches", "patch": "@@ -102,3 +102,4 @@ refactor_restore_base_adaptcallbackforrepeating.patch\n hack_to_allow_gclient_sync_with_host_os_mac_on_linux_in_ci.patch\n don_t_run_pcscan_notifythreadcreated_if_pcscan_is_disabled.patch\n set_svgimage_page_after_document_install.patch\n+...
2021-07-21T13:33:25
golang/go
2ebaff4890596ed6064e2dcbbe5e68bc93bed882
35874308993d5dbb3a618254babb5c1fa85bd1e3
runtime: if stop/reset races with running timer, return correct result The timer code is careful to ensure that if stop/reset is called while a timer is being run, we cancel the run. However, the code failed to ensure that in that case stop/reset returned true, meaning that the timer had been stopped. In the racing ca...
[ { "path": "src/runtime/time.go", "patch": "@@ -26,10 +26,40 @@ type timer struct {\n \t// mu protects reads and writes to all fields, with exceptions noted below.\n \tmu mutex\n \n-\tastate atomic.Uint8 // atomic copy of state bits at last unlock\n-\tstate uint8 // state bits\n-\tisChan bool ...
2024-09-07T00:19:34
nodejs/node
ea32c3ceae27222af30d7017f18fc93073ff37e1
12ee988e95ea97edc207e27f3a59171380569ef8
test: fix warning for comment in embedtest PR-URL: https://github.com/nodejs/node/pull/49416 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
[ { "path": "test/embedding/embedtest.cc", "patch": "@@ -64,12 +64,12 @@ int RunNodeInstance(MultiIsolatePlatform* platform,\n \n // Format of the arguments of this binary:\n // Building snapshot:\n- // embedtest js_code_to_eval arg1 arg2... \\\n- // --embedder-snapshot-blob blob-path \\\n+ /...
2023-09-02T10:53:52
facebook/react
1d1fa94a66275c42b5339dabf9985379a0c74a23
9ededef945f032fa6257711d45a4f198bfdf1633
Fix false positive warning about react-dom/client with UMD builds (#24274)
[ { "path": "packages/react-dom/src/client/ReactDOM.js", "patch": "@@ -149,7 +149,7 @@ function createRoot(\n options?: CreateRootOptions,\n ): RootType {\n if (__DEV__) {\n- if (!Internals.usingClientEntryPoint) {\n+ if (!Internals.usingClientEntryPoint && !__UMD__) {\n console.error(\n ...
2022-04-05T01:56:18
vercel/next.js
4bf1ee117d14b95137b8304641fa1d3fe1b2a121
9eb47f11c021956fb1b8f0522f6a32dea4c620a6
[repo] upgrade ts `5.8.2` (#76709) <!-- 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 ### Improving D...
[ { "path": "package.json", "patch": "@@ -261,7 +261,7 @@\n \"tree-kill\": \"1.2.2\",\n \"tsec\": \"0.2.1\",\n \"turbo\": \"2.3.3\",\n- \"typescript\": \"5.7.2\",\n+ \"typescript\": \"5.8.2\",\n \"unfetch\": \"4.2.0\",\n \"wait-port\": \"0.2.2\",\n \"webpack\": \"5.98.0\",", ...
2025-03-01T19:47:10
electron/electron
deb75ceaa517437785b2edad42408ec85b529669
d35fb2a2e37a84f304b69ff7428eefa784ecbace
build: update version-bumper to support alpha (#30165) * build: update version-bumper to support alpha * build: seperate alpha bump version tests For easier deletion. If we want to continue supporting an alpha channel, they can be reintegrated with main tests. * chore: fix regex Co-authored-by: Samuel Att...
[ { "path": "script/release/notes/index.js", "patch": "@@ -25,8 +25,9 @@ const runGit = async (args) => {\n };\n \n const tagIsSupported = tag => tag && !tag.includes('nightly') && !tag.includes('unsupported');\n+const tagIsAlpha = tag => tag && tag.includes('alpha');\n const tagIsBeta = tag => tag && tag.inc...
2021-07-20T00:58:15
golang/go
35874308993d5dbb3a618254babb5c1fa85bd1e3
712d47ce15d01d31798d8a9fe677d587cf21c1d6
cmd/go: don't print dynimport link error messages When using the -x or -n option, we were printing the external linker error messages from producing the dynimport file. This was confusing because those linker errors are unimportant and ignored; only the linker exit status matters, and failure doesn't drop the build. ...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -2244,7 +2244,6 @@ func (b *Builder) ccompile(a *Action, outfile string, flags []string, file strin\n }\n \n // gccld runs the gcc linker to create an executable from a set of object files.\n-// Any error output is only displayed for BuildN or Build...
2024-09-26T04:03:54
nodejs/node
048e0bec51475e62663b45ad744f4e02a6eaf2af
92fb7dd818708c03140ffe0b1539ee337e1005d8
tls: ensure TLS Sockets are closed if the underlying wrap closes This fixes a potential segfault, among various other likely-related issues, which all occur because TLSSockets were not informed if their underlying stream was closed in many cases. This also significantly modifies an existing TLS test. With this change...
[ { "path": "lib/_tls_wrap.js", "patch": "@@ -704,6 +704,9 @@ TLSSocket.prototype._wrapHandle = function(wrap, handle, wrapHasActiveWriteFromP\n defineHandleReading(this, handle);\n \n this.on('close', onSocketCloseDestroySSL);\n+ if (wrap) {\n+ wrap.on('close', () => this.destroy());\n+ }\n \n ret...
2023-09-01T07:00:05
facebook/react
9ededef945f032fa6257711d45a4f198bfdf1633
5f7f5280836a44d4b81c1cb13f51e7482470cf1b
Don't mute hydration errors forcing client render (#24276) * Don't mute hydration errors forcing client render * Nits
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzSuppressHydrationWarning-test.js", "patch": "@@ -248,9 +248,10 @@ describe('ReactDOMFizzServerHydrationWarning', () => {\n ]);\n }).toErrorDev(\n [\n+ 'Expected server HTML to contain a matching <span> in <span>',\n ...
2022-04-05T01:11:22
vercel/next.js
9eb47f11c021956fb1b8f0522f6a32dea4c620a6
9216ab130c0d61929b73445de812ebf2e904d804
docs: fix reading `params` code blocks (#76705) These function the same, but the updated version looks cleaner.
[ { "path": "docs/01-app/01-getting-started/08-error-handling.mdx", "patch": "@@ -152,7 +152,8 @@ You can call the [`notFound`](/docs/app/api-reference/functions/not-found) funct\n import { getPostBySlug } from '@/lib/posts'\n \n export default async function Page({ params }: { params: { slug: string } }) {\n...
2025-03-01T18:38:08
electron/electron
c9ba0d02d7de6ef5861d5fe31991a83af79343cd
612361c4daee1e3a52ea8a1da246fd7ac2afe2e8
feat: support crashpad on linux (#29719)
[ { "path": ".circleci/config.yml", "patch": "@@ -45,7 +45,7 @@ executors:\n type: enum\n enum: [\"medium\", \"xlarge\", \"2xlarge+\"]\n docker:\n- - image: electron.azurecr.io/build:4fc81b50f9c0980699d329bc32062fac20a26701\n+ - image: electron.azurecr.io/build:fe71f448c9b00708c7...
2021-07-19T17:11:10
golang/go
712d47ce15d01d31798d8a9fe677d587cf21c1d6
b7e4d2067c58a326426eddeece76634db0bb1e43
text/template: support range-over-int Fixes #66107 Change-Id: I19b466e3fb17557cf4f198b7fd8c13e774d854b1 Reviewed-on: https://go-review.googlesource.com/c/go/+/615095 Auto-Submit: Ian Lance Taylor <iant@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: C...
[ { "path": "doc/next/6-stdlib/99-minor/text/template/66107.md", "patch": "@@ -1 +1 @@\n-Templates now support range-over-func.\n+Templates now support range-over-func and range-over-int.", "additions": 1, "deletions": 1, "language": "Markdown" }, { "path": "src/text/template/doc.go", ...
2024-09-25T12:20:06
facebook/react
fc47cb1b61ac012f9bd6d7251eb19fcecf364a3b
985272e26858ce3838fde856b022200b9c7d3dcb
Fix suppressHydrationWarning not working in production (#24271)
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -2811,4 +2811,96 @@ describe('ReactDOMFizzServer', () => {\n </ul>,\n );\n });\n+\n+ // @gate experimental\n+ it('suppresses and fixes text mismatches with suppressHydrationWarning', async () => {\n+ funct...
2022-04-04T15:23:58
nodejs/node
f9a182c67c3f20995830c51b69c0c72b6a3bae8f
ba61c0750132a4ed3c0e196fccc3ab54b5d5cdd5
doc: fix node-api call example The `return` statement should not be enclosed in a nested conditional branch. PR-URL: https://github.com/nodejs/node/pull/49395 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Harshitha K P <harshitha014@gmail.com> Reviewed-B...
[ { "path": "doc/api/n-api.md", "patch": "@@ -346,7 +346,7 @@ napi_value create_addon(napi_env env);\n // addon.c\n #include \"addon.h\"\n \n-#define NAPI_CALL(env, call) \\\n+#define NODE_API_CALL(env, call) \\\n do { ...
2023-08-31T16:29:19
vercel/next.js
9216ab130c0d61929b73445de812ebf2e904d804
6f6001a87ad7fbac3f62aa6647f6f027248e6c9e
[dynamicIO] routes with dynamic segments should be able to be static in dev (#76691) Dev mode reports static/dynamic behavior using a heuristic when dynamicIO is enabled. The heuristic previously incorrectly marked routes as dynamic when they were in fact static as a consequence of refactoring metadata to support stre...
[ { "path": "packages/next/src/export/index.ts", "patch": "@@ -387,11 +387,7 @@ async function exportAppImpl(\n strictNextHead: nextConfig.experimental.strictNextHead ?? true,\n deploymentId: nextConfig.deploymentId,\n htmlLimitedBots: nextConfig.htmlLimitedBots.source,\n- streamingMetadata:\n-...
2025-03-01T01:26:29
golang/go
b7e4d2067c58a326426eddeece76634db0bb1e43
1596a6c8ec6d4ccb4a219b0c467bed192720de12
unique: clarify concurrent use of Make and Handle.Value Fixes #69637. Change-Id: Ie612b4df50f42f2786b22fb7a756949530f9178e Reviewed-on: https://go-review.googlesource.com/c/go/+/616235 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Michael Knyszek <mknyszek@goog...
[ { "path": "src/unique/handle.go", "patch": "@@ -25,12 +25,14 @@ type Handle[T comparable] struct {\n }\n \n // Value returns a shallow copy of the T value that produced the Handle.\n+// Value is safe for concurrent use by multiple goroutines.\n func (h Handle[T]) Value() T {\n \treturn *h.value\n }\n \n // ...
2024-09-26T19:44:00
facebook/react
985272e26858ce3838fde856b022200b9c7d3dcb
e912da964dbf5f84bf8c4e78e0ac218362bc074e
Fix name mismatch in react-reconciler custom build. (#24272)
[ { "path": "packages/react-reconciler/src/forks/ReactFiberHostConfig.custom.js", "patch": "@@ -64,7 +64,7 @@ export const getInstanceFromNode = $$$hostConfig.getInstanceFromNode;\n export const beforeActiveInstanceBlur = $$$hostConfig.beforeActiveInstanceBlur;\n export const afterActiveInstanceBlur = $$$host...
2022-04-04T08:47:36
nodejs/node
ba61c0750132a4ed3c0e196fccc3ab54b5d5cdd5
57e78bc9efc1682f6fb083030df708630ebf3429
deps: V8: cherry-pick eadaef581c29 Original commit message: Fix usage of MulHighS64 on <= z13 mgrk is only available with MISC_INSTR_EXT2 installed. A runtime call needs to be made if it's unavailable. We also need to make sure caller saved registers are saved accordingly before making a call. ...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,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.14',\n+ 'v8_embedder_string': '-node.15',\n \n ##### V8 defaults for Node.js #####\n...
2023-08-31T14:51:17
vercel/next.js
d26716bb80909a502f5cfb00021c735b177b3fd0
80fbbc20a8b0fd1b32bcff972163ff58ed76f410
Update test snapshots for alternative bundler [4/n] (#76578) Test Plan: `pnpm test-dev-rspack test/development/acceptance/server-component-compiler-errors-in-pages.test.ts` passes
[ { "path": "test/development/acceptance/server-component-compiler-errors-in-pages.test.ts", "patch": "@@ -3,6 +3,8 @@ import { nextTestSetup } from 'e2e-utils'\n import { createSandbox } from 'development-sandbox'\n import { outdent } from 'outdent'\n \n+const isRspack = process.env.NEXT_RSPACK !== undefined...
2025-02-28T22:55:21
facebook/react
c89a15c716febe71b7d857f839829cd1dc74918f
ebd7ff65b6fea73313c210709c88224910e86339
[ReactDebugTools] wrap uncaught error from rendering user's component (#24216) * [ReactDebugTools] wrap uncaught error from rendering user's component * fix lint * make error names more package specific * update per review comments * fix tests * fix lint * fix tests * fix lint * fix error name ...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -366,7 +366,7 @@ const DispatcherProxyHandler = {\n const error = new Error('Missing method in Dispatcher: ' + prop);\n // Note: This error name needs to stay in sync with react-devtools-shared\n // TODO: refactor this i...
2022-04-01T18:38:11
golang/go
1596a6c8ec6d4ccb4a219b0c467bed192720de12
3f2737f5ddea3375303b952e3d87843d7fc0f986
unique,internal/concurrent: add some more tests One is a test of unsafe.String usage, which was broken before CL 610738 was merged. The other is trying to improve coverage of "near collision" scenarios in the HashTrieMap where only the last few bits differ. This is intended to catch off-by-one errors in iterating dow...
[ { "path": "src/internal/concurrent/hashtriemap_test.go", "patch": "@@ -6,6 +6,7 @@ package concurrent\n \n import (\n \t\"fmt\"\n+\t\"internal/abi\"\n \t\"math\"\n \t\"runtime\"\n \t\"strconv\"\n@@ -33,6 +34,23 @@ func TestHashTrieMapBadHash(t *testing.T) {\n \t})\n }\n \n+func TestHashTrieMapTruncHash(t *t...
2024-09-19T15:43:14
rust-lang/rust
65756bed80e0ce759cb5b6fa9fe80578e18d6981
e29fcf45e4ae686d77b490bf07320f0d3a2cf35f
Remove out of date FIXME comment. In #127273 I added a test and a FIXME comment pointing out how it does the wrong thing. In the next commit I fixed the problem but forgot to remove the FIXME comment, whoops.
[ { "path": "compiler/rustc_parse/src/parser/tests.rs", "patch": "@@ -2666,7 +2666,6 @@ fn look_ahead_non_outermost_stream() {\n });\n }\n \n-// FIXME(nnethercote) All the output is currently wrong.\n #[test]\n fn debug_lookahead() {\n create_default_session_globals_then(|| {", "additions": 0, ...
2026-01-08T03:54:26
nodejs/node
dcf66707836d639186ef395b1ff2d8e96cfce011
f863117ba35c28e3c8ab7b7a8567be623195f33f
net: fix crash due to simultaneous close/shutdown on JS Stream Sockets A JS stream socket wraps a stream, exposing it as a socket for something on top which needs a socket specifically (e.g. an HTTP server). If the internal stream is closed in the same tick as the layer on top attempts to close this stream, the race ...
[ { "path": "lib/internal/js_stream_socket.js", "patch": "@@ -21,6 +21,7 @@ const { ERR_STREAM_WRAP } = require('internal/errors').codes;\n const kCurrentWriteRequest = Symbol('kCurrentWriteRequest');\n const kCurrentShutdownRequest = Symbol('kCurrentShutdownRequest');\n const kPendingShutdownRequest = Symbol...
2023-08-24T15:05:02
vercel/next.js
93a43eed02dcc23b0478f743ff007f33454f41b2
24b8756f262b7961e471e6654755344a01c6d723
fix(CI): Upload to areweturboyet immediately after a manifest is updated, not only on a fixed cron schedule (#76688) I don't have a good way to test this without merging it first.
[ { "path": ".github/workflows/upload-tests-manifest.yml", "patch": "@@ -1,7 +1,7 @@\n # Workflow to upload next.js integration test results to KV for https://areweturboyet.com/\n # This workflow assumes the `next-integration-test` workflow has been executed\n # and test reports have been uploaded to the `tes...
2025-02-28T22:13:32
facebook/react
ebd7ff65b6fea73313c210709c88224910e86339
d352fd09315276b3def318d91f462ee7c49fb1af
Don't recreate the same fallback on the client if hydrating suspends (#24236) * Delay showing fallback if hydrating suspends * Fix up * Include all non-urgent lanes * Moar tests * Add test for transitions
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -869,16 +869,16 @@ describe('ReactDOMFizzServer', () => {\n });\n \n // We still can't render it on the client.\n- expect(Scheduler).toFlushAndYield([\n- 'The server could not finish this Suspense boundary,...
2022-04-01T01:49:54
nodejs/node
f863117ba35c28e3c8ab7b7a8567be623195f33f
b781eaf4309ac0140e073615dd4cc27e000fb6ae
url: handle unicode hostname if empty PR-URL: https://github.com/nodejs/node/pull/49396 Fixes: https://github.com/nodejs/node/issues/48759 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/node_url.cc", "patch": "@@ -208,7 +208,7 @@ void BindingData::Format(const FunctionCallbackInfo<Value>& args) {\n out->hash = std::nullopt;\n }\n \n- if (unicode) {\n+ if (unicode && out->has_hostname()) {\n out->host = ada::idna::to_unicode(out->get_hostname());\n }\n ", "a...
2023-08-31T10:25:31
electron/electron
0d9e6f29ba92cb01d0c1aa0f06ceb2d1d582ea9d
1bb689e6dddd6df093a8780878c61a2923f1b2ac
fix: allow colored tray titles when font type is specified (#30146)
[ { "path": "shell/browser/ui/tray_icon_cocoa.mm", "patch": "@@ -121,7 +121,7 @@ - (void)setTitle:(NSString*)title font_type:(NSString*)font_type {\n weight:NSFontWeightRegular]\n };\n [attributed_title\n- setAttributes:attributes\n+ addAtt...
2021-07-15T23:45:20
facebook/react
d352fd09315276b3def318d91f462ee7c49fb1af
4db3ff6c1ac092676dffc2251f5dec908eca9c74
Fix for SSR2 fixture not working locally (#24237) * SS2 fixture not working locally fix * Fix prettier issue * prettier excess line fix * Update render.js * Update README.md Co-authored-by: dan <dan.abramov@gmail.com>
[ { "path": "fixtures/ssr2/README.md", "patch": "@@ -0,0 +1,30 @@\n+# SSR Fixtures\n+\n+A set of test cases for quickly identifying issues with server-side rendering.\n+\n+## Setup\n+\n+To reference a local build of React, first run `npm run build` at the root\n+of the React project. Then:\n+\n+```\n+cd fixtu...
2022-03-31T23:26:12
electron/electron
1bb689e6dddd6df093a8780878c61a2923f1b2ac
063ac1971244e9d0411a6046e4840c975e38f726
fix: BrowserWindow transparency not working (#30136)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -914,16 +914,6 @@ void WebContents::InitWithWebContents(content::WebContents* web_contents,\n inspectable_web_contents_ = std::make_unique<InspectableWebContents>(\n web_contents, browser_context->prefs(), is_guest);\n inspec...
2021-07-15T20:18:39
facebook/react
a0fb3cf37ec6e81de7b7b1ca01b2cc560231e0c1
0415b18a100043df164bcd40639f9373e3358350
Fix changelog typos
[ { "path": "CHANGELOG.md", "patch": "@@ -7,7 +7,7 @@ Read [React 18 release post](https://reactjs.org/blog/2022/03/29/react-v18.html)\n \n ### React\n \n-* `useId` is a new hook for generating unique IDs on both the client and server, while avoiding hydration mismatches. It is primarily useful for component...
2022-03-30T16:00:29
golang/go
ba42120723a8bb4161c4f54c93f7ab3234923473
4aa5aa63c94976009c0ae747ca04d9268272c773
runtime: properly compute whether PC is inside vDSO pages The old calculation just looked whether PC was within a page of a vDSO symbol. This doesn't work because the vDSO .text might span two whole pages, with trampolines and such redirecting PC around between them. This manifests itself with the new vDSO getrandom(...
[ { "path": "src/runtime/vdso_linux.go", "patch": "@@ -97,6 +97,8 @@ type vdsoInfo struct {\n \tverdef *elfVerdef\n }\n \n+var vdsoLoadStart, vdsoLoadEnd uintptr\n+\n // see vdso_linux_*.go for vdsoSymbolKeys[] and vdso*Sym vars\n \n func vdsoInitFromSysinfoEhdr(info *vdsoInfo, hdr *elfEhdr) {\n@@ -116,6 +118...
2024-09-25T23:14:18
facebook/react
0415b18a100043df164bcd40639f9373e3358350
8b95ea2cba17d3dd653324debc1170fa50bda038
[ReactDebugTools] add custom error type for future new hooks (#24168) * [ReactDebugTools] add custom error type for future new hooks * update per review comments * remove unused argument
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -356,6 +356,23 @@ const Dispatcher: DispatcherType = {\n useId,\n };\n \n+// create a proxy to throw a custom error\n+// in case future versions of React adds more hooks\n+const DispatcherProxyHandler = {\n+ get(target, prop) {\n...
2022-03-30T15:07:12
vercel/next.js
9483a371f1ac3a87464b59c68aa990e9813f28f0
bbce270c85805315f243b6194fa3f7daa01d8090
fix metadata basePath for manifest (#76681) ### What Static metadata manifest file should be prefixed with `basePath` when it's specified, as all the requests are sent to the routes under `/<basePath>/*`, it should also show the correct url in the html Fixes #56687 Closes NEXT-2707
[ { "path": "crates/next-core/src/app_page_loader_tree.rs", "patch": "@@ -133,11 +133,18 @@ impl AppPageLoaderTreeBuilder {\n return Ok(());\n };\n \n- let manifest_route = &format!(\"/{}\", get_metadata_route_name(manifest).await?);\n+ let metadata_manifest_route = get_metad...
2025-02-28T19:27:05
golang/go
4aa5aa63c94976009c0ae747ca04d9268272c773
9b1f8f32b8b3ace71be1f77a6a500b1550365ec6
cmd/link/internal/ld: fix error print in decodetypeGcprog Change-Id: Ifbd33881280d88c00df9b2c4e20f0127aca55799 GitHub-Last-Rev: 5b42bc612c82344f386b7f77043655cbe09eba77 GitHub-Pull-Request: golang/go#69336 Reviewed-on: https://go-review.googlesource.com/c/go/+/610563 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-pro...
[ { "path": "src/cmd/link/internal/ld/decodesym.go", "patch": "@@ -261,7 +261,7 @@ func decodetypeGcprog(ctxt *Link, s loader.Sym) []byte {\n \t\t\t}\n \t\t\treturn append(progsize, progbytes...)\n \t\t}\n-\t\tExitf(\"cannot find gcmask for %s\", ctxt.loader.SymName(s))\n+\t\tExitf(\"cannot find gcprog for %s...
2024-09-07T14:04:00
nodejs/node
3a6a80a4e1ad3fc3f1b181e1c94ecfd0b17e6dd1
fcf5de008a59229fe65a7b8e4e45fb4cfef4de81
test_runner: report covered lines, functions and branches to reporters This is a breaking change for the format of test:coverage events. But the test coverage is still experimental, so I don't believe it requires a semver-major bump. Fixes https://github.com/nodejs/node/issues/49303 PR-URL: https://github.com/nodejs...
[ { "path": "doc/api/test.md", "patch": "@@ -2011,8 +2011,18 @@ object, streaming a series of events representing the execution of the tests.\n * `coveredLinePercent` {number} The percentage of lines covered.\n * `coveredBranchPercent` {number} The percentage of branches covered.\n * `covere...
2023-08-30T20:22:45
electron/electron
063ac1971244e9d0411a6046e4840c975e38f726
849a3b6f814eb252b2da8e3b627186a8b0cc5bf2
chore: bump node to v16.5.0 (main) (#30031) * chore: bump node in DEPS to v16.4.2 * chore: update patches * ci: run main and remote woa tests separately * chore: bump node in DEPS to v16.5.0 * build: restore libplatform headers in distribution https://github.com/nodejs/node/pull/39288 * build: pass d...
[ { "path": "DEPS", "patch": "@@ -17,7 +17,7 @@ vars = {\n 'chromium_version':\n '93.0.4566.0',\n 'node_version':\n- 'v16.4.1',\n+ 'v16.5.0',\n 'nan_version':\n # The following commit hash of NAN is v2.14.2 with *only* changes to the\n # test suite. This should be updated to a specific...
2021-07-15T15:25:00
rust-lang/rust
a3b72d3de584a524d677bbaedf440f9223d439c0
fecb335cbad3d84ef3da39191ba094e6c726a5b4
Fix copy-n-paste error in `vtable_for` docs This is a safe function, which doesn't take a `ptr` parameter.
[ { "path": "library/core/src/intrinsics/mod.rs", "patch": "@@ -2738,10 +2738,6 @@ pub unsafe fn vtable_align(ptr: *const ()) -> usize;\n /// Determining whether `T` can be coerced to the trait object type `U` requires trait resolution by the compiler.\n /// In some cases, that resolution can exceed the recur...
2026-01-08T02:06:20
facebook/react
27199d75678bea21f51ab1364e69ef58e0bde663
cfc76b46582b6614aa1db191734c75ca58c8dacd
fix build script for react dev tools (#24193)
[ { "path": "package.json", "patch": "@@ -108,7 +108,7 @@\n \"scripts\": {\n \"build\": \"node ./scripts/rollup/build.js\",\n \"build-combined\": \"node ./scripts/rollup/build-all-release-channels.js\",\n- \"build-for-devtools\": \"cross-env RELEASE_CHANNEL=experimental yarn build react/index,rea...
2022-03-30T13:26:14
vercel/next.js
bbce270c85805315f243b6194fa3f7daa01d8090
9fd1766f330444b91be2af900441c7e173906013
[Segment Cache] Fix: canonicalURL omits origin (#76444) The canonical URL is the href without the origin. I think historically the reason for this is because the initial canonical URL gets passed as a prop to the top-level React component, which means it needs to be computed during SSR. If it were to include the origi...
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache.ts", "patch": "@@ -912,9 +912,10 @@ export async function fetchRouteOnCacheMiss(\n }\n \n // In output: \"export\" mode, we need to add the segment path to the URL.\n+ const url = new URL(href)\n const requestUrl = isOutputExport...
2025-02-28T19:15:57
nodejs/node
9848352974d66e62fab4339efa6a60dea46df057
eccdbe250ee23c5e44e156da138f0c3fdc8eaf56
node-api: fix compiler warning in node_api.h Fix "-Wstrict-prototypes" warning from AppleClang 14.0.3.14030022, compiling C, targeting arch arm64 (on x86_64 host). I build my C addon with -Werror and recent changes to node_api.h broke our build. PR-URL: https://github.com/nodejs/node/pull/49103 Reviewed-By: Michael D...
[ { "path": "src/node_api.h", "patch": "@@ -30,7 +30,7 @@ struct uv_loop_s; // Forward declaration.\n \n typedef napi_value(NAPI_CDECL* napi_addon_register_func)(napi_env env,\n napi_value exports);\n-typedef int32_t(NAPI_CDECL* node_api_addon_get_api_...
2023-08-30T02:42:31
electron/electron
341b3702137410fbc8cb5babc48ff0249523930a
3f38681c55640fd64f056b6ebac57e2700eb37ea
fix: handle redirects within registered protocols (#29796)
[ { "path": "shell/browser/net/electron_url_loader_factory.cc", "patch": "@@ -170,6 +170,83 @@ void OnWrite(std::unique_ptr<WriteData> write_data, MojoResult result) {\n \n } // namespace\n \n+ElectronURLLoaderFactory::RedirectedRequest::RedirectedRequest(\n+ const net::RedirectInfo& redirect_info,\n+ ...
2021-07-15T11:14:46
golang/go
9b1f8f32b8b3ace71be1f77a6a500b1550365ec6
906338f82fc6641e834964def3199ac25df93e94
go/types: compute effective Go version independent of token.Pos Previously, the Checker.allowVersion method would use a token.Pos to try to infer which file of the current package the checker was "in". This proved fragile when type-checking syntax that had been modified or synthesized and whose positions were invalid....
[ { "path": "src/cmd/compile/internal/types2/api_predicates.go", "patch": "@@ -19,7 +19,7 @@ func AssertableTo(V *Interface, T Type) bool {\n \tif !isValid(T.Underlying()) {\n \t\treturn false\n \t}\n-\treturn (*Checker)(nil).newAssertableTo(nopos, V, T, nil)\n+\treturn (*Checker)(nil).newAssertableTo(V, T, n...
2024-09-16T22:50:52
rust-lang/rust
b0e65da2af8f3e12015d78a1828fceed6360642a
d9617c8d9a55773a96b61ba3a4acb107d65615c1
rustc_parse_format: improve error for missing `:` before `?` in format args Detect the `{ident?}` pattern where `?` is immediately followed by `}` and emit a clearer diagnostic explaining that `:` is required for Debug formatting. This avoids falling back to a generic “invalid format string” error and adds a targeted ...
[ { "path": "compiler/rustc_builtin_macros/messages.ftl", "patch": "@@ -182,6 +182,8 @@ builtin_macros_expected_other = expected operand, {$is_inline_asm ->\n \n builtin_macros_export_macro_rules = cannot export macro_rules! macros from a `proc-macro` crate type currently\n \n+builtin_macros_format_add_missin...
2026-01-07T13:31:19
facebook/react
509d2d906591b0fd364b2853433a4fe5b111bf02
b2b4bddeb85480922542fd1f3f64982d0e916831
Add React 18 changelog (#24195) * Add React 18 to changelog * Fix typo Co-authored-by: Rick Hanlon <rickhanlonii@gmail.com>
[ { "path": "CHANGELOG.md", "patch": "@@ -1,3 +1,147 @@\n+## 18.0.0 (March 29, 2022)\n+\n+Below is a list of all new features, APIs, deprecations, and breaking changes.\n+Read [React 18 release post](https://reactjs.org/blog/2022/03/29/react-v18.html) and [React 18 upgrade guide](https://reactjs.org/blog/2022...
2022-03-29T17:13:05
vercel/next.js
6a30eb4e94f969b3bee1dca59f554add3cabd46c
5f1df89fdc1494aa70b553c521e927ec575b9cfb
[ci] Fix `test-turbopack-integration` not having any shards (#76355) Noticed that this job was the largest contributor to wall time by far ![CleanShot 2025-02-22 at 00 25 39](https://github.com/user-attachments/assets/52ec106c-ac14-4f9d-b4ad-a90f16d7d828) I guess this broke in [#70541 (files)](https://github.com/ve...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -249,11 +249,12 @@ jobs:\n strategy:\n fail-fast: false\n matrix:\n- exclude:\n- # Excluding React 18 tests unless on `canary` branch until budget is approved.\n- - react: ${{ github.event_name == 'pull_r...
2025-02-28T18:57:16
electron/electron
3f38681c55640fd64f056b6ebac57e2700eb37ea
05ba6359d016a6c80f24d4e1573eafcaf796cd42
fix: double traffic lights on exit fullscreen (#30114)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1690,7 +1690,7 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n }\n \n void NativeWindowMac::ReorderButtonsView() {\n- if (buttons_view_) {\n+ if (buttons_view_ && !IsFullscreen()) {\n [buttons_view_ removeFromSuperview];\n [[...
2021-07-14T23:45:12
golang/go
906338f82fc6641e834964def3199ac25df93e94
6d856a804c5d9cfc72104b0e7578da5b38509909
cmd/go: relax the regular expression of TestScript/list_pkgconfig_error Fixes #68283 Change-Id: Ia6af550f0fc232e4ae6f7ea96370138e958aaca2 GitHub-Last-Rev: 206ce8b0d9309e09c7b482d3e0f42a8f47474936 GitHub-Pull-Request: golang/go#68324 Reviewed-on: https://go-review.googlesource.com/c/go/+/596935 Reviewed-by: David Chas...
[ { "path": "src/cmd/go/testdata/script/list_pkgconfig_error.txt", "patch": "@@ -2,7 +2,9 @@\n [!exec:pkg-config] skip 'test requires pkg-config tool'\n \n ! go list -export .\n-stderr '^# example\\n# \\[pkg-config .*\\]\\n(.*\\n)*Package .* not found'\n+# 'Package .* not found appears' in pkg-config and pkgc...
2024-09-18T13:42:40
vercel/next.js
db0a723db980eee81b8252031217dbb79e4321f3
e3f0a1ac9d656327294400483698e1b4110af499
[Segment Cache] Support output: "export" mode (#75671) Adds support for output: "export" mode to the Segment Cache implementation. We output an additional `.txt` data file per segment per page. When the client issues a per-segment request, it appends the segment path to the end of the page URL, rather than passing it ...
[ { "path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts", "patch": "@@ -160,6 +160,20 @@ export async function fetchServerResponse(\n : 'low'\n : 'auto'\n \n+ if (process.env.NODE_ENV === 'production') {\n+ if (process.env.__NEXT_CONFIG_OUTPUT === 'export...
2025-02-28T17:46:48
nodejs/node
9cd70f4c0ef52324d08651676430f37ef868a6d0
7104a715e04c8720a0233c27da0118da36ef6e83
test: migrate message source map tests from Python to JS Migrate the remaining source map tests in the `test/message` folder from Python to JS. Fixes: https://github.com/nodejs/node/issues/47707 test: migrate message source map tests from Python to JS PR-URL: https://github.com/nodejs/node/pull/49238 Reviewed-By: Mo...
[ { "path": "test/fixtures/source-map/output/source_map_enclosing_function.js", "patch": "@@ -0,0 +1,7 @@\n+// Flags: --enable-source-maps\n+\n+'use strict';\n+require('../../../common');\n+Error.stackTraceLimit = 5;\n+\n+require('../enclosing-call-site-min.js');", "additions": 7, "deletions": 0, ...
2023-08-29T10:36:23
golang/go
a3a05ed04cb53c53bdacded2d16f0f3e5facdbb0
607975cfa15768e3587facfbde18ef9f18c46170
os: ignore SIGSYS in checkPidfd In Android version 11 and earlier, pidfd-related system calls are not allowed by the seccomp policy, which causes crashes due to SIGSYS signals. Fixes #69065 Change-Id: Ib29631639a5cf221ac11b4d82390cb79436b8657 GitHub-Last-Rev: aad6b3b32c81795f86bc4a9e81aad94899daf520 GitHub-Pull-Requ...
[ { "path": "src/os/pidfd_linux.go", "patch": "@@ -18,6 +18,7 @@ package os\n import (\n \t\"errors\"\n \t\"internal/syscall/unix\"\n+\t\"runtime\"\n \t\"sync\"\n \t\"syscall\"\n \t\"unsafe\"\n@@ -151,6 +152,13 @@ var checkPidfdOnce = sync.OnceValue(checkPidfd)\n // execution environment in which the above sy...
2024-09-24T01:27:40
electron/electron
05ba6359d016a6c80f24d4e1573eafcaf796cd42
4b780f97703f0e16cf2795611e8da55ab9323858
feat: add signal option to dialog.showMessageBox (#26102) * mac: add dialog.closeMessageBox API * win: Implement dialog.closeMessageBox * mac: Return cancelId with closeMessageBox * gtk: Implement dialog.closeMessageBox * win: Fix 32bit build * win: Reduce the scope of lock * fix: Build error after r...
[ { "path": "docs/api/dialog.md", "patch": "@@ -273,6 +273,11 @@ If `browserWindow` is not shown dialog will not be attached to it. In such case\n will result in one button labeled \"OK\".\n * `defaultId` Integer (optional) - Index of the button in the buttons array which will\n be selected by defau...
2021-07-14T22:59:27
vercel/next.js
e3f0a1ac9d656327294400483698e1b4110af499
61b81f4fddffc043e08099743fefc02773cea941
[Segment Cache] Omit from bundle if flag disabled (#76622) Alternative to https://github.com/vercel/next.js/pull/76597. This works by importing all Segment Cache related code through a single entry point (segment-cache.ts), and wrapping each export in a feature flag check. This fixes the size regression in v15.2 but...
[ { "path": ".vscode/settings.json", "patch": "@@ -61,7 +61,8 @@\n \"packages/next/src/server/app-render/after-task-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/clean-async-snapshot-instance.ts\",\n \"packages/next/src/server/app-render/work-async-storage-instance.ts\",\n- ...
2025-02-28T17:19:52
facebook/react
fc46dba67fc47783bbb5919e656c66c6e51ce16d
fe6e0741286345edb2aa23784c21f8ea611ebdea
Remove rc suffix from versions (#24190) * Remove rc suffix from versions * Bump eslint-plugin-react-hooks version I noticed this one was behind the latest published version
[ { "path": "ReactVersions.js", "patch": "@@ -18,26 +18,26 @@\n //\n // 0.0.0-experimental-241c4467e-20200129\n \n-const ReactVersion = '18.0.0-rc.3';\n+const ReactVersion = '18.0.0';\n \n // The label used by the @next channel. Represents the upcoming release's\n // stability. Could be \"alpha\", \"beta\",...
2022-03-29T14:53:46
rust-lang/rust
b02e9756f2d0b0367cdedcba16016fc5e867999c
f06a6b9fdcb9db492a364b48a08f70afa98da182
Fix hir-ty clippy issue I am not familiar with this code at allso just doing what I can to unblock.
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/next_solver/infer/traits.rs", "patch": "@@ -55,6 +55,13 @@ impl ObligationCause {\n }\n }\n \n+impl Default for ObligationCause {\n+ #[inline]\n+ fn default() -> Self {\n+ Self::new()\n+ }\n+}\n+\n /// An `Obligation` represents some t...
2026-01-07T22:53:00
nodejs/node
4ba73706507aebbd746838e903e38d568ca87e9d
1ca23adc35de86fc674fe8457904438a1eb46ec3
stream: use Buffer.from when constructor is a Buffer When using BYOB streams, it's possible for the constructor in readableByteStreamControllerConvertPullIntoDescriptor to be a node Buffer. If it is, use `Buffer.from` over `new ctor`. Fixes https://github.com/nodejs/node/issues/49245 PR-URL: https://github.com/nodej...
[ { "path": "lib/internal/webstreams/readablestream.js", "patch": "@@ -132,6 +132,8 @@ const {\n writableStreamDefaultWriterWrite,\n } = require('internal/webstreams/writablestream');\n \n+const { Buffer } = require('buffer');\n+\n const assert = require('internal/assert');\n \n const kCancel = Symbol('kCan...
2023-08-26T11:43:58
golang/go
3d6173aa120e64a31438f9fb717afb1b9f6708dd
7d91cc26abdcc213de83bb6122a929ff6449be8f
all: fix typos of possessive its (I noticed the one mistake in hashtriemap.go and figured I'd clean up others.) Change-Id: I4ade424b400056f161bc6c9c2838ba1f96b1f6bb Reviewed-on: https://go-review.googlesource.com/c/go/+/615675 Auto-Submit: Brad Fitzpatrick <bradfitz@golang.org> LUCI-TryBot-Result: Go LUCI <golang-sco...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -145,7 +145,7 @@ func Batch(fns []*ir.Func, recursive bool) {\n \t}\n \n \t// We've walked the function bodies, so we've seen everywhere a\n-\t// variable might be reassigned or have it's address taken. Now we\n+\t// variable might be reass...
2024-09-25T03:41:28
electron/electron
a855aa34d939625c00b309dacd9dcdeef98d855e
bec47f54f419f6b910da8bc999a52d91e3b9d53b
docs: fix fiddle path (#30139) This is breaking the build in `electron/electronjs.org-new` and will most likely not work when clicking the "Fiddle" button. Rel: https://github.com/electron/electronjs.org-new/pull/65
[ { "path": "docs/tutorial/launch-app-from-url-in-another-app.md", "patch": "@@ -168,7 +168,7 @@ After you start your electron app, you can now enter in a URL in your browser th\n can leave it empty.\n -->\n \n-```fiddle docs/fiddles/system/protocol-handler/launch-app-from-url-in-another-app\n+```fiddle d...
2021-07-14T20:16:59
facebook/react
fe6e0741286345edb2aa23784c21f8ea611ebdea
ba0aee5d71874202ebf8760a802bb1d6f2f61a5e
Fix usage of console.error to prevent transform (#24188) We were suppressing the `react-internals/warning-args` lint rule for the call to `console.error` in `defaultOnRecoverableError`. As far as I could tell, the lint rule exists because on dev builds, we replace all calls to `console.error` with [this error fu...
[ { "path": "packages/react-dom/src/client/ReactDOMRoot.js", "patch": "@@ -81,8 +81,8 @@ const defaultOnRecoverableError =\n reportError\n : (error: mixed) => {\n // In older browsers and test environments, fallback to console.error.\n- // eslint-disable-next-line react-internal/no-pr...
2022-03-29T09:45:14
vercel/next.js
61b81f4fddffc043e08099743fefc02773cea941
6fa1be819cd466b979f5f5316806b8e03c1cc543
[metadata] fix duplicate metadata for parallel routes (#76669)
[ { "path": "packages/next/src/server/app-render/create-component-tree.tsx", "patch": "@@ -527,7 +527,7 @@ async function createComponentTreeInternal({\n missingSlots,\n preloadCallbacks,\n authInterrupts,\n- StreamingMetadata,\n+ StreamingMetadata: is...
2025-02-28T16:26:11
rust-lang/rust
2d581773fed793f9d62b190e56374065d37291d7
3fdb78cba695824cba5be894a032779c9b4a4ac3
Fix RunnableKind::Run label interpolation It was pretty useless without this. Previously: Parsing target pattern `{label}` Caused by: Invalid target name `{label}`. (...) Build ID: 6dab5942-d81c-4430-83b0-5ba523999050 Network: Up: 0B Down: 0B Command: run. Time elapsed: 0.3s BUI...
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/target_spec.rs", "patch": "@@ -77,7 +77,16 @@ impl ProjectJsonTargetSpec {\n RunnableKind::Bin => {\n for runnable in &self.shell_runnables {\n if matches!(runnable.kind, project_model::project_json::...
2025-12-03T01:03:05
nodejs/node
4178683a26871ec8adba4c29c38dbec5f764ad85
3d0a317763d686b44dbfd26ddcebb61c9ff75377
doc: update `options.filter` description for `fs.cp` PR-URL: https://github.com/nodejs/node/pull/49289 Fixes: https://github.com/nodejs/node/issues/49092 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-B...
[ { "path": "doc/api/fs.md", "patch": "@@ -1001,7 +1001,8 @@ changes:\n * `errorOnExist` {boolean} when `force` is `false`, and the destination\n exists, throw an error. **Default:** `false`.\n * `filter` {Function} Function to filter copied files/directories. Return\n- `true` to copy the item, `fa...
2023-08-26T05:53:46
golang/go
49e542aa85b7c2d9f6cf50de00843b455bc1e635
c64ca8c6ef13723b9f25f4b5e1c7b6986b958d2e
runtime: fix GoroutineProfile stacks not getting null terminated Fix a regression introduced in CL 572396 causing goroutine stacks not getting null terminated. This bug impacts callers that reuse the []StackRecord slice for multiple calls to GoroutineProfile. See https://github.com/felixge/fgprof/issues/33 for an exa...
[ { "path": "src/runtime/mprof.go", "patch": "@@ -1277,7 +1277,8 @@ func pprof_mutexProfileInternal(p []profilerecord.BlockProfileRecord) (n int, ok\n // of calling ThreadCreateProfile directly.\n func ThreadCreateProfile(p []StackRecord) (n int, ok bool) {\n \treturn threadCreateProfileInternal(len(p), func(...
2024-08-30T06:17:19
electron/electron
bec47f54f419f6b910da8bc999a52d91e3b9d53b
4db7221c7da219116e4287278f446c76ab6d3f89
fix: use correct userData path when unbundled (#30113)
[ { "path": "shell/app/electron_main_delegate.cc", "patch": "@@ -123,7 +123,8 @@ bool ElectronPathProvider(int key, base::FilePath* result) {\n case chrome::DIR_USER_DATA:\n if (!base::PathService::Get(DIR_APP_DATA, &cur))\n return false;\n- cur = cur.Append(base::FilePath::FromUTF8Unsa...
2021-07-14T20:10:37
facebook/react
ba0aee5d71874202ebf8760a802bb1d6f2f61a5e
e7d0053e65db49a536440eb24e6c1e4961d976f6
DevTools bugfix: Ignore duplicate welcome "message" events (#24186)
[ { "path": "packages/react-devtools-extensions/src/backend.js", "patch": "@@ -6,6 +6,8 @@\n \n 'use strict';\n \n+let welcomeHasInitialized = false;\n+\n function welcome(event) {\n if (\n event.source !== window ||\n@@ -14,6 +16,25 @@ function welcome(event) {\n return;\n }\n \n+ // In some cir...
2022-03-28T18:25:30
vercel/next.js
6fa1be819cd466b979f5f5316806b8e03c1cc543
8a91d46830b98e3498a1ec26f231dc4f78469497
Turbopack: fix order of chunk items in cycles (#76676) ### What? Traverse modules in cycles actually in postorder Because post-order edge traversal is not the same as post-order node traversal
[ { "path": "turbopack/crates/turbopack-core/src/chunk/chunk_group.rs", "patch": "@@ -219,13 +219,13 @@ pub async fn chunk_group_content(\n if should_trace {\n result.traced_modules.insert(node.module);\n }\n- return Ok(GraphTr...
2025-02-28T16:04:57
rust-lang/rust
53a371c505a00be220aca18dfba091ee2b2d8f31
778de45547f9a584894fad295c86539e7c57aa9d
flycheck: notifications show full command when configured in a rust-project.json runnable For JSON / override users, pretty-print the custom flycheck command with fewer quote characters Better debug logging in flycheck
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs", "patch": "@@ -309,13 +309,18 @@ impl fmt::Debug for FlycheckMessage {\n \n #[derive(Debug)]\n pub(crate) enum Progress {\n- DidStart,\n+ DidStart {\n+ /// The user sees this in VSCode, etc. May be a shortened version of t...
2024-09-04T03:52:59
golang/go
c64ca8c6ef13723b9f25f4b5e1c7b6986b958d2e
8c8948c375a97f8cc09b3b6c3a06c75c31d83aa0
runtime: fix MutexProfile missing root frames Fix a regression introduced in CL 598515 causing runtime.MutexProfile stack traces to omit their root frames. In most cases this was merely causing the `runtime.goexit` frame to go missing. But in the case of runtime._LostContendedRuntimeLock, an empty stack trace was bei...
[ { "path": "src/runtime/mprof.go", "patch": "@@ -1142,11 +1142,12 @@ func expandFrames(p []BlockProfileRecord) {\n \tfor i := range p {\n \t\tcf := CallersFrames(p[i].Stack())\n \t\tj := 0\n-\t\tfor ; j < len(expandedStack); j++ {\n+\t\tfor j < len(expandedStack) {\n \t\t\tf, more := cf.Next()\n \t\t\t// f.P...
2024-09-07T11:44:09
nodejs/node
3d0a317763d686b44dbfd26ddcebb61c9ff75377
69f7583ee5dfa0e470a7484797161f78320a64b3
doc: add riscv64 to list of architectures PR-URL: https://github.com/nodejs/node/pull/49284 Signed-off-by: Stewart X Addison <sxa@redhat.com> Fixes: https://github.com/nodejs/node/issues/49278 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Mohammed Keyvanzadeh <m...
[ { "path": "doc/api/os.md", "patch": "@@ -51,7 +51,7 @@ added: v0.5.0\n \n Returns the operating system CPU architecture for which the Node.js binary was\n compiled. Possible values are `'arm'`, `'arm64'`, `'ia32'`, `'mips'`,\n-`'mipsel'`, `'ppc'`, `'ppc64'`, `'s390'`, `'s390x'`, and `'x64'`.\n+`'mipsel'`, `...
2023-08-26T05:48:16
electron/electron
637ba48b420142092f9b426e4f9099b12777c212
4d0475c9ce9d0a7695f5f5aa7901a6750fce7260
fix: pressing ESC should exit fullscreen from webview (#30063)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -3612,9 +3612,7 @@ void WebContents::UpdateHtmlApiFullscreen(bool fullscreen) {\n manager->ForEachGuest(\n web_contents(), base::BindRepeating([](content::WebContents* guest) {\n WebContents* api_web_contents = We...
2021-07-14T11:51:26
facebook/react
e7d0053e65db49a536440eb24e6c1e4961d976f6
3787230b1bff799bb8837b5a30e2d11d24b77ce1
[fizz] Fix validateIterable call (#24166) * fix validate iterable call * supports iterable * gate test by experimental
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -2508,4 +2508,27 @@ describe('ReactDOMFizzServer', () => {\n <span>default</span>,\n ]);\n });\n+\n+ // @gate experimental\n+ it('Supports iterable', async () => {\n+ const Immutable = require('immutable')...
2022-03-25T18:03:06
rust-lang/rust
3b97d38702700a274b22dcd9cc21d836d4dc1ce0
ac641771a83d23f965b3dcb180bb854de21002fb
Fix misuse of ? This exited the whole loop instead of having continue semantics and continuing to find workspaces. So wrap in find_map.
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/global_state.rs", "patch": "@@ -847,21 +847,18 @@ impl GlobalStateSnapshot {\n &self,\n package: &Arc<PackageId>,\n ) -> Option<FxHashSet<Arc<PackageId>>> {\n- for workspace in self.workspaces.iter() {\n- match...
2025-12-02T03:11:52
vercel/next.js
902e5eb9cf8cfa860012534bd80e25a1d6f2842b
6d93d652e0e7ba72d9a3b66e78746dce2069db03
[dev-overlay] fix: env name label style was out of sync with error type label (#76668) ### Why? ![image](https://github.com/user-attachments/assets/de7206bb-2027-4684-8311-1b44c6e58f3a) The env name label style was different from the error type label. It is because during change of https://github.com/vercel/next.js...
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/environment-name-label/environment-name-label.tsx", "patch": "@@ -10,13 +10,12 @@ export const ENVIRONMENT_NAME_LABEL_STYLES = `\n [data-nextjs-environment-name-label] {\n padding: 2px 6px;\n margin: 0;\n- /* ...
2025-02-28T14:48:40
golang/go
6cb107452a5a5551a04baf6bc4ff0b8299dfb596
b17a55d0953429c9b23ef89407734ac9bba159f5
runtime: print fatal messages without interleaving Grab the print lock around the set of prints we use to report fatal errors. This ensures that each fatal error gets reported atomically instead of interleaved with other fatal errors. Fixes #69447 Change-Id: Ib3569f0c8210fd7e19a7d8ef4bc114f07469f317 Reviewed-on: htt...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -621,7 +621,7 @@ func TestConcurrentMapWrites(t *testing.T) {\n \t}\n \ttestenv.MustHaveGoRun(t)\n \toutput := runTestProg(t, \"testprog\", \"concurrentMapWrites\")\n-\twant := \"fatal error: concurrent map writes\"\n+\twant := \"fatal error: concurrent ma...
2024-09-24T22:11:54
nodejs/node
69f7583ee5dfa0e470a7484797161f78320a64b3
460c19f226ae2ad58bb8dcd97500ad2c49c83044
policy: fix path to URL conversion PR-URL: https://github.com/nodejs/node/pull/49133 Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/process/pre_execution.js", "patch": "@@ -606,7 +606,7 @@ function readPolicyFromDisk() {\n // no bare specifiers for now\n let manifestURL;\n if (require('path').isAbsolute(experimentalPolicy)) {\n- manifestURL = new URL(`file://${experimentalPolicy}`);\n+ manif...
2023-08-26T05:45:13
facebook/react
3787230b1bff799bb8837b5a30e2d11d24b77ce1
a6bdb882b73cd0b2702656d767606c74ac0b6670
Fix fixture
[ { "path": "fixtures/ssr/src/components/Chrome.js", "patch": "@@ -1,8 +1,4 @@\n-import React, {\n- Component,\n- Suspense,\n- unstable_startTransition as startTransition,\n-} from 'react';\n+import React, {Component, Suspense, startTransition} from 'react';\n \n import Theme, {ThemeToggleButton} from './T...
2022-03-25T17:38:10
electron/electron
eb2efd4b7ef6513b78d4b4beb7feb2f64fdcf192
d267f979b75f98c0f1a8ec5c4cad819babd6643e
docs: Update timeline for E15 alpha announcement (#30109) * docs: Update timeline for E15 alpha announcement * fix line break
[ { "path": "docs/tutorial/electron-timelines.md", "patch": "@@ -1,23 +1,27 @@\n # Electron Release Timelines\n \n+Special notes:\n+\n * The `-beta.1` and `stable` dates are our solid release dates.\n * We strive for weekly beta releases, however we often release more betas than scheduled.\n * All dates are o...
2021-07-13T20:54:13
rust-lang/rust
4976fdf203b5122bf3b26acf02af5ae6ea25f138
6c83a47592f5cbbf3fd7b6c566c310b043be00e1
fix: `significant_drop_tightening` suggests wrongly for non-method usage
[ { "path": "clippy_lints/src/significant_drop_tightening.rs", "patch": "@@ -2,6 +2,7 @@ use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::res::MaybeResPath;\n use clippy_utils::source::{indent_of, snippet};\n use clippy_utils::{expr_or_init, get_builtin_attr, peel_hir_expr_unary, sym};\n...
2026-01-07T23:17:33
vercel/next.js
4eb7e23b467914192043648b468fc4a58065c175
cf99982e14b1fd88a061ce441f0f1527d672d2ac
[dev-overlay] fix dark theme missing close bracket (#76672) ### Why? The dark theme was broken due to invalid CSS syntax been shipped at https://github.com/vercel/next.js/issues/76528. ### Follow Up Restore the removed VS Code Extension styled-components as recommended, and apply a real "noop" to CSS template liter...
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/styles/dark-theme.tsx", "patch": "@@ -112,11 +112,13 @@ export function DarkTheme() {\n :host(.dark) {\n ${base}\n ${colors}\n+ }\n \n @media (prefers-color-scheme: dark) {\n :host(:not(.light)) {\n ...
2025-02-28T13:31:13
facebook/react
e62a8d754548a490c2a3bcff3b420e5eedaf11c0
3f8990898309c61c817fbf663f5221d9a00d0eaa
Store throws a specific Error type (UnsupportedBridgeOperationError) (#24147) When this Error type is detected, DevTools shows a custom error overlay with upgrade/downgrade instructions.
[ { "path": "packages/react-devtools-shared/src/UnsupportedBridgeOperationError.js", "patch": "@@ -0,0 +1,21 @@\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 this source tree.\n+ ...
2022-03-23T21:04:54
nodejs/node
6117cc3bd1184d0cbd0cb0831d0fd82bc53ed1b0
a494ef68f3b84250f6fc5cdb10097030ec5063b5
test: fix compiler warning in NodeCryptoEnv This fixes a warning in line 26: "warning: value computed is not used" when calling BIO_seek(). Refs: https://github.com/nodejs/node/pull/47160 PR-URL: https://github.com/nodejs/node/pull/49206 Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "test/cctest/test_node_crypto_env.cc", "patch": "@@ -23,8 +23,9 @@ TEST_F(NodeCryptoEnv, LoadBIO) {\n Local<String> key = String::NewFromUtf8(isolate_, \"abcdef\").ToLocalChecked();\n node::crypto::BIOPointer bio(node::crypto::LoadBIO(*env, key));\n #if OPENSSL_VERSION_NUMBER >= 0x30000000L\n-...
2023-08-24T16:25:09
golang/go
d39b366841b6582535f540467e70f5a78056e7ec
944a2ac3c7995b25944e00efc907f2410cb1f024
runtime: disable epipe check for wasm platform Pipe operation seems impossible for wasm build Fixes #59099 Change-Id: Ibb526693dce4e867dabd92e5ace38a1adf18f401 GitHub-Last-Rev: d7dc3362717f4ddae2c026016812008d25783f4f GitHub-Pull-Request: golang/go#69583 Reviewed-on: https://go-review.googlesource.com/c/go/+/614935 ...
[ { "path": "src/runtime/os_wasm.go", "patch": "@@ -109,10 +109,10 @@ func newosproc(mp *m) {\n \tthrow(\"newosproc: not implemented\")\n }\n \n+// Do nothing on WASM platform, always return EPIPE to caller.\n+//\n //go:linkname os_sigpipe os.sigpipe\n-func os_sigpipe() {\n-\tthrow(\"too many writes on closed...
2024-09-22T19:04:36
electron/electron
9959f01e4cea8f42827dc4ff27929d7d6cf752ef
19a6286dfdeeb1ecb1f903ea749388394b75a72d
spec: fix check for electron_common_testing binding in logging-spec.ts (#30086)
[ { "path": "spec-main/logging-spec.ts", "patch": "@@ -7,8 +7,17 @@ import * as fs from 'fs/promises';\n import * as path from 'path';\n import * as uuid from 'uuid';\n \n+function isTestingBindingAvailable () {\n+ try {\n+ process._linkedBinding('electron_common_testing');\n+ return true;\n+ } catch ...
2021-07-13T05:11:19
rust-lang/rust
ac0b17bcf94517c301d4abd9c0278ab180c3248d
6c83a47592f5cbbf3fd7b6c566c310b043be00e1
fix: `unnecessary_to_owned` wrongly unmangled macros
[ { "path": "clippy_lints/src/methods/unnecessary_to_owned.rs", "patch": "@@ -3,7 +3,7 @@ use super::unnecessary_iter_cloned::{self, is_into_iter};\n use clippy_utils::diagnostics::{span_lint_and_sugg, span_lint_and_then};\n use clippy_utils::msrvs::{self, Msrv};\n use clippy_utils::res::MaybeDef;\n-use clipp...
2026-01-07T22:32:16
vercel/next.js
e3878ca38f61ab50af46d342e770344076015b55
fceb1d1d44243116a62fdb21d31b2d3fe29407df
Turbopack: Improve edge tests (#76607) ## What? Improves the test to check not just the one output file but all files related to the route. This makes it clearer why Turbopack fails instead of failing on the file not existing. It does not attempt to fix the test, only makes it easier to fix it later. <!-- Thanks for...
[ { "path": "test/e2e/app-dir/dynamic/dynamic.test.ts", "patch": "@@ -1,5 +1,6 @@\n import { nextTestSetup } from 'e2e-utils'\n import { retry } from 'next-test-utils'\n+import path from 'path'\n \n describe('app dir - next/dynamic', () => {\n const { next, isNextStart, isNextDev, skipped } = nextTestSetup(...
2025-02-28T09:22:41
facebook/react
3f8990898309c61c817fbf663f5221d9a00d0eaa
de516ca5a635220d0cbe82b8f04003820e3f4072
Fix test-build-devtools if build was generated by build-for-devtools (#24088) Co-authored-by: Brian Vaughn <brian.david.vaughn@gmail.com>
[ { "path": "package.json", "patch": "@@ -131,7 +131,7 @@\n \"test-prod-build\": \"yarn test --deprecated 'yarn test --prod --build'\",\n \"test-build\": \"yarn test --deprecated 'yarn test --build'\",\n \"test-build-prod\": \"yarn test --deprecated 'yarn test --build --prod'\",\n- \"test-build...
2022-03-23T13:51:59
nodejs/node
b0f423390f581b4bafd012889aa86909d362f653
da197d189021b34db1164ec68f123c885877b2ee
stream: add `highWaterMark` for the map operator this is done so we don't wait for the first items to finish before starting new ones Fixes: https://github.com/nodejs/node/issues/46132 Co-authored-by: Robert Nagy <ronagy@icloud.com> PR-URL: https://github.com/nodejs/node/pull/49249 Reviewed-By: Matteo Collina <matte...
[ { "path": "doc/api/stream.md", "patch": "@@ -2012,6 +2012,10 @@ showBoth();\n added:\n - v17.4.0\n - v16.14.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/49249\n+ description: added `highWaterMark` in options.\n -->\n \n > Stability: 1 - Experimental\n@@ -202...
2023-08-24T12:11:21
golang/go
5a1de4ed34c476d443946c2d8bbf118ef389b968
68bcef7e9f979b24f42bbddd3400cae97b9de846
go/types, types2: check that alias type arguments satisfy constraints Fixes #69576. Change-Id: I8fc077970276977dd89fc2dd3867f2765d52e54e Reviewed-on: https://go-review.googlesource.com/c/go/+/615275 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Griesemer...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -150,6 +150,7 @@ func (check *Checker) instantiateSignature(pos syntax.Pos, expr syntax.Expr, typ\n \t// verify instantiation lazily (was go.dev/issue/50450)\n \tcheck.later(func() {\n \t\ttparams := typ.TypeParams().list()\n+\t\t// check typ...
2024-09-23T20:02:16