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
b7c9cdd53cb39934f74b1cdbe08ad1f9e4a12e78
bcfa00cbd259a8653547b227f8207ab43bf7d5c8
cmd/compile: establish limits of bool to uint8 conversions Improves bound check elimination for: func arrayLargeEnough(b bool, a [2]int64) int64 { c := byte(0) if b { c = 1 } // this bound check gets elided return a[c] } We also detect never true branches like: func cCanOnlyBe0or1(b boo...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -1653,6 +1653,10 @@ func initLimit(v *Value) limit {\n \tcase OpCtz8, OpBitLen8:\n \t\tlim = lim.unsignedMax(8)\n \n+\t// bool to uint8 conversion\n+\tcase OpCvtBoolToUint8:\n+\t\tlim = lim.unsignedMax(1)\n+\n \t// length operations\n \tcase Op...
2025-01-14T21:13:29
facebook/react
a0777212df7009cc26e47ffd46444276d0be923d
fdbfac8f8216839520d093513908918de591468f
Propagate scope declarations to parent scopes Fix for bug demonstrated in #1506. When we add variables as output of their defining scope, we need to propagate this information upwards to all parent scopes which are not current active.
[ { "path": "compiler/forget/src/ReactiveScopes/PropagateScopeDependencies.ts", "patch": "@@ -23,6 +23,7 @@ import {\n eachInstructionValueOperand,\n eachPatternOperand,\n } from \"../HIR/visitors\";\n+import { empty, Stack } from \"../Utils/Stack\";\n import { assertExhaustive } from \"../Utils/utils\";\...
2023-04-19T04:27:11
electron/electron
7b8fb2b07418c7bad6ce811ca75c926ee53663fc
4e8480b15b63cf71648f8f9357713b8827dec27c
fix: Wayland general CSD fixes (#34955) * fix: broken wayland window decorations due to botched chromium update The `GetTitlebarBounds().height()` is obviously intended to be placed in the `top` parameter, which used to be the second one before upstream removed multi-parameter `gfx::Rect::Inset`, but it's the fir...
[ { "path": "patches/chromium/.patches", "patch": "@@ -114,3 +114,4 @@ disable_freezing_flags_after_init_in_node.patch\n short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch\n chore_add_electron_deps_to_gitignores.patch\n chore_allow_chromium_to_handle_synthetic_mouse_events_for_touch.patch\...
2022-08-03T08:51:52
vercel/next.js
0bcbab529e26ebd3d92b56a32287525700df2c43
c51300807ea7e0590104343b8616572503f0b78d
[dev-overlay] Move error handlers into dispatcher in /app (#79660) The dispatcher will later be the bridge between user code and the dev overlay so it should house all logic that communicates with the Dev Overlay frontend.
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx", "patch": "@@ -1,7 +1,7 @@\n /// <reference types=\"webpack/module.d.ts\" />\n \n import type { ReactNode } from 'react'\n-import { useCallback, useEffect, startTransition, useMemo, useRef } from 'react'\n+import {...
2025-05-27T18:55:33
nodejs/node
d32a914ac72a32e4a51e5389e092a06f59a0a758
411503bacd68e30a0701c597783523e9e7c679ea
doc: add lint-js-fix into BUILDING.md When there is any auto-fixable linting errors, there is not a way to pass `--fix` into `make lint-js` as far as I am aware of. Spent quiet some time fixing them one by one and just realised `lint-js-fix` exists. PR-URL: https://github.com/nodejs/node/pull/52290 Reviewed-By: Luigi...
[ { "path": "BUILDING.md", "patch": "@@ -327,6 +327,8 @@ documentation tests.\n To run the linter without running tests, use\n `make lint`/`vcbuild lint`. It will lint JavaScript, C++, and Markdown files.\n \n+To fix auto fixable JavaScript linting errors, use `make lint-js-fix`.\n+\n If you are updating test...
2024-04-10T23:45:36
golang/go
be2b809e5b888ed0ee636f1e07340640ffd88842
a1ea78c470d3136b7aed42a4d8b94497563f98ea
os: fix race condition in readdir by atomically initializing dirinfo This change ensures that dirinfo in the File struct is initialized atomically, avoiding redundant allocations when multiple goroutines access it concurrently. Instead of creating separate buffers, we now use CompareAndSwap to guarantee thread-safe in...
[ { "path": "src/os/dir_plan9.go", "patch": "@@ -11,12 +11,19 @@ import (\n )\n \n func (file *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEntry, infos []FileInfo, err error) {\n-\t// If this file has no dirinfo, create one.\n-\td := file.dirinfo.Load()\n-\tif d == nil {\n-\t\td = new...
2025-02-03T05:56:31
facebook/react
96fd2fb726130d2980e6d450f5d9e468f922b8b9
d8089f2cf27a17872a13805fce415b74fd3b107e
(patch)[DevTools] bug fix: backend injection logic not working for undocked devtools window (#26665) bugfix for #26492 This bug would cause users unable to use the devtools (component tree empty). The else-if logic is broken when user switch to undocked devtools mode (separate window) because `sender.tab` woul...
[ { "path": "packages/react-devtools-extensions/src/background.js", "patch": "@@ -172,6 +172,7 @@ chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {\n \n chrome.runtime.onMessage.addListener((request, sender) => {\n const tab = sender.tab;\n+ // sender.tab.id from content script points to the ...
2023-04-19T00:39:22
electron/electron
4e8480b15b63cf71648f8f9357713b8827dec27c
3fe00d75e9499ed9f55754548358e10385ab169e
chore: fix linking with component ffmpeg (#35178)
[ { "path": "BUILD.gn", "patch": "@@ -901,6 +901,13 @@ if (is_mac) {\n \"@executable_path/../../../../../..\",\n ]\n }\n+\n+ # For component ffmpeg under non-component build, it is linked from\n+ # @loader_path. However the ffmpeg.dylib is moved to a different place\n+ # when genera...
2022-08-03T07:51:30
vercel/next.js
c51300807ea7e0590104343b8616572503f0b78d
d55e2f84933bbbd84413c80afa0521ec15a7b801
[dev-overlay] Show error overlay on any thrown value in /app (#79658) May have been a leftover from earlier. We always consider any throw. Even without a sync stack, we might still have an async stack to show. And even if we have no stack at all, the message is still relevant. Basically, never hide errors.
[ { "path": ".changeset/smooth-bears-run.md", "patch": "@@ -0,0 +1,8 @@\n+---\n+'next': patch\n+---\n+\n+[dev-overlay] Show error overlay on any thrown value\n+\n+We used to only show the error overlay on thrown values with a stack property.\n+On other thrown values we kept the overlay collapsed.", "addit...
2025-05-27T18:17:38
golang/go
0825475599d40c786c19c3449e22d2db66754456
5cb5437b6daee8971be0bd393535e263333ef311
cmd/compile: do not treat OpLocalAddr as load in DSE Fixes #70409 Fixes #47107 Change-Id: I82a66c46f6b76c68e156b5d937273b0316975d44 Reviewed-on: https://go-review.googlesource.com/c/go/+/629016 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@go...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -52,9 +52,8 @@ func dse(f *Func) {\n \t\t\t\tif v.Op == OpLocalAddr {\n \t\t\t\t\tif _, ok := localAddrs[v.Aux]; !ok {\n \t\t\t\t\t\tlocalAddrs[v.Aux] = v\n-\t\t\t\t\t} else {\n-\t\t\t\t\t\tcontinue\n \t\t\t\t\t}\n+\t\t\t\t\tcontinue\n \t\t...
2024-11-18T09:34:20
nodejs/node
eb53121b7787e07755ca649f2d7160f3d68f41d7
a760dadec337f61dd574bbe4e96e7fb907a51a47
test: fix Windows compiler warnings in overlapped-checker Fixes two warnings: - test\overlapped-checker\main_win.c(37,25): warning : format specifies type 'int' but the argument has type 'DWORD' (aka 'unsigned long') [-Wformat] - test\overlapped-checker\main_win.c(9,14): warning : unused variable 'write_count' [...
[ { "path": "test/overlapped-checker/main_win.c", "patch": "@@ -6,7 +6,6 @@\n \n static char buf[256];\n static DWORD read_count;\n-static DWORD write_count;\n static HANDLE stdin_h;\n static OVERLAPPED stdin_o;\n \n@@ -34,7 +33,7 @@ static void write(const char* buf, size_t buf_size) {\n if (!WriteFile(std...
2024-04-10T21:08:06
rust-lang/rust
bcb76f4ea6ee380972b1187423def5091c4ef25c
ebf13cca58b551b83133d4895e123f7d1e795111
docs: fix outdated Debian Ports ISO reference
[ { "path": "src/doc/rustc/src/platform-support/m68k-unknown-linux-gnu.md", "patch": "@@ -52,7 +52,7 @@ Atari systems or emulated environments such as QEMU version 4.2 or newer or ARAn\n ISO images for installation are provided by the Debian Ports team and can be obtained\n from the Debian CD image server ava...
2026-01-27T05:57:42
facebook/react
fdbfac8f8216839520d093513908918de591468f
746c1dbed581ad128f0ea22b8fe20267391e1c2f
Repro for bug with memo vars at wrong block scope Minimal(ish) repro of a bug we saw internally, where an output of a nested reactive scope is defined at the wrong block scope, and so later references to that value are invalid. The simplified structure is: ``` scope0 inputs=[] outputs=[] { scope1 inputs=[] ...
[ { "path": "compiler/forget/src/__tests__/fixtures/compiler/_bug.inner-memo-value-not-promoted-to-outer-scope-dynamic.expect.md", "patch": "@@ -0,0 +1,127 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const item = useFragment(FRAGMENT, props.item);\n+ useFreeze(item);\n+\n+ const co...
2023-04-18T23:10:00
electron/electron
3d4d1b33ba7f33fbdf377c7abc4c185ba1f29578
53cd23159e0eeddf32399560e163c3fe1a1c144b
fix: fail non-fatally when InitLogging fails (#35138)
[ { "path": "shell/common/logging.cc", "patch": "@@ -141,7 +141,7 @@ void InitElectronLogging(const base::CommandLine& command_line,\n : APPEND_TO_OLD_LOG_FILE;\n bool success = InitLogging(settings);\n if (!success) {\n- PLOG(FATAL) << \"Failed to init logging\";\n+ PLOG(ERROR) << \"Faile...
2022-08-02T19:45:30
vercel/next.js
1f2511839052b0a66d70ff1e328af6ac816db1ff
ac680c49bfba9e672f6f18c05605ed75b2394a59
Fix name tracking for closures in server actions transform (#79657) When a server function passes a closure to a method on a closed-over value (e.g. an array), we must correctly track the value itself so that it's included in the bound arguments. For example, in this snippet, `list` must be bound to the server action...
[ { "path": ".changeset/tough-peaches-burn.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+\"next\": patch\n+---\n+\n+Fix name tracking for closures in server actions transform", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": "crates/next-custom-transforms/src/transforms/server...
2025-05-27T15:23:25
golang/go
5cb5437b6daee8971be0bd393535e263333ef311
7472b4c324970895b1d44f39c284d72c40d4b621
cmd/go/internal/vcsweb/vcstest: skip bzr test if deps not found The linux-arm64 trybots are consistently failing with vcstest_test.go:155: 2025/01/30 21:50:41 hello.txt: > handle bzr > env BZR_EMAIL='Russ Cox <rsc@google.com>' > env EMAIL='Russ Cox <rsc@google.com>' > bzr init-repo...
[ { "path": "src/cmd/go/internal/vcweb/vcstest/vcstest_test.go", "patch": "@@ -158,6 +158,13 @@ func TestScripts(t *testing.T) {\n \t\t\t\tif notInstalled := (vcweb.ServerNotInstalledError{}); errors.As(err, &notInstalled) || errors.Is(err, exec.ErrNotFound) {\n \t\t\t\t\tt.Skip(err)\n \t\t\t\t}\n+\n+\t\t\t\t...
2025-02-04T19:56:38
nodejs/node
7b01bfb2be3e5383f8cfcd5209c7e193c3e81ebe
0d1e64f64c04601ff9213d0761d5e33d7020e4f0
doc: correct naming convention in C++ style guide The code and documentation uses PascalCase for C++ functions, methods, and classes but the C++ style guide incorrectly says to use camelCase. PR-URL: https://github.com/nodejs/node/pull/52424 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga ...
[ { "path": "doc/contributing/cpp-style-guide.md", "patch": "@@ -13,7 +13,7 @@ Node.js codebase not related to stylistic issues.\n * [4 spaces of indentation for statement continuations](#4-spaces-of-indentation-for-statement-continuations)\n * [Align function arguments vertically](#align-function-argumen...
2024-04-10T15:32:53
facebook/react
746c1dbed581ad128f0ea22b8fe20267391e1c2f
de89ed32a2b649ad542a4f3387312aa3c171d3a7
Add common (Relay) hooks to playground environment This aligns the playground configuration with our internal compiler configuration to make it easier to repro compilation issues on playground. There is a bug that doesn't repro right now and i suspect it's because of different hooks being configured. Test plan: ...
[ { "path": "compiler/forget/packages/playground/components/Editor/index.tsx", "patch": "@@ -9,9 +9,12 @@ import { parse, ParserPlugin } from \"@babel/parser\";\n import traverse, { NodePath } from \"@babel/traverse\";\n import * as t from \"@babel/types\";\n import {\n+ Effect,\n+ Hook,\n printHIR,\n p...
2023-04-18T22:29:17
electron/electron
e3893632e7e7cf39fff160946fdc19a7ae058da2
0cdc946b2708c3592ec1c413f28a28442c843183
fix: touch events not recognized by WCO on windows (#35117)
[ { "path": "patches/chromium/.patches", "patch": "@@ -114,3 +114,4 @@ fix_allow_guest_webcontents_to_enter_fullscreen.patch\n disable_freezing_flags_after_init_in_node.patch\n short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch\n chore_add_electron_deps_to_gitignores.patch\n+chore_allow_ch...
2022-08-02T03:13:58
vercel/next.js
fffb2eb6fb38689d12494114665a37c5acebd005
97c9fc485a03bd0067c13683bb8e8bc4d7a3be81
Docs IA 2.0: Delete Error Handling page (#79495) The content has already been migrated to https://nextjs.org/docs/app/getting-started/error-handling. Closes: https://linear.app/vercel/issue/DOC-4700/bya-delete-error-handling-page Redirects: https://github.com/vercel/front/pull/46127
[ { "path": "docs/01-app/02-guides/incremental-static-regeneration.mdx", "patch": "@@ -464,7 +464,7 @@ If you are using on-demand revalidation, you do not need to specify a `revalidat\n \n <AppOnly>\n \n-If an error is thrown while attempting to revalidate data, the last successfully generated data will conti...
2025-05-27T14:58:40
golang/go
ef7f09149b4af54839e191841ddbfaff8640a484
b07b20fbb591ac77158e1089299ce5acad71ffde
cmd/compile: prefer hv2 <= 127 over hv2 < 128 This is shorter to encode on AMD64/x86. Shrinks a few functions and doesn't seem to cause any regressions. No size impact on other archs. Covers a bit more than CL 639935. compilecmp linux/amd64: unicode/utf8 unicode/utf8.RuneCountInString changed unicode/utf8.RuneCount...
[ { "path": "src/cmd/compile/internal/walk/range.go", "patch": "@@ -342,7 +342,10 @@ func walkRange(nrange *ir.RangeStmt) ir.Node {\n \n \t\t// if hv2 < utf8.RuneSelf\n \t\tnif := ir.NewIfStmt(base.Pos, nil, nil, nil)\n-\t\tnif.Cond = ir.NewBinaryExpr(base.Pos, ir.OLT, hv2, ir.NewInt(base.Pos, utf8.RuneSelf))...
2025-01-13T20:35:04
facebook/react
d8089f2cf27a17872a13805fce415b74fd3b107e
1b4a0daba8aba71f6fbf0c3b88633c51207a6ec7
[Flight Reply] Encode FormData (#26663) Builds on top of https://github.com/facebook/react/pull/26661 This lets you pass FormData objects through the Flight Reply serialization. It does that by prefixing each entry with the ID of the reference and then the decoding side creates a new FormData object containing o...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -7,8 +7,9 @@ import {Counter as Counter2} from './Counter2.js';\n \n import ShowMore from './ShowMore.js';\n import Button from './Button.js';\n+import Form from './Form.js';\n \n-import {like} from './actions.js';\n+import {like, greet} from './actions.j...
2023-04-18T18:57:33
nodejs/node
db1746182bdb0eb3d3c6cc249d028212b20a1b59
45f0dd019250945bafa56e14d187cbcd7793f2b6
module: disallow CJS <-> ESM edges in a cycle from require(esm) This patch disallows CJS <-> ESM edges when they come from require(esm) requested in ESM evalaution. Drive-by: don't reuse the cache for imported CJS modules to stash source code of required ESM because the former is also used for cycle detection. PR-UR...
[ { "path": "doc/api/errors.md", "patch": "@@ -2489,6 +2489,21 @@ Accessing `Object.prototype.__proto__` has been forbidden using\n [`Object.setPrototypeOf`][] should be used to get and set the prototype of an\n object.\n \n+<a id=\"ERR_REQUIRE_CYCLE_MODULE\"></a>\n+\n+### `ERR_REQUIRE_CYCLE_MODULE`\n+\n+> St...
2024-04-08T14:45:55
electron/electron
0cdc946b2708c3592ec1c413f28a28442c843183
0d36c0cdc6fe616fe235e0f1aa32b691054d503d
fix: modify file extension generation on Windows (#34723) * fix: modify file extension generation on Windows * modify includes * include vector in header * add win build flags * remove hardcoded strings * Update shell/browser/electron_download_manager_delegate.h Co-authored-by: Charles Kerr <charles@...
[ { "path": "shell/browser/electron_download_manager_delegate.cc", "patch": "@@ -30,6 +30,16 @@\n #include \"shell/common/gin_converters/file_path_converter.h\"\n #include \"shell/common/options_switches.h\"\n \n+#if BUILDFLAG(IS_WIN)\n+#include <vector>\n+\n+#include \"base/i18n/case_conversion.h\"\n+#includ...
2022-08-02T00:40:17
vercel/next.js
97c9fc485a03bd0067c13683bb8e8bc4d7a3be81
b3d78ea809e73e30b2ff0b89311b4f50b1896265
Avoid bundling dev overlay in page template (#79641) As noticed in https://github.com/vercel/next.js/pull/79632 we increased compile times for pages routes in development which is due to us including the dev-overlay component in the page bundle itself instead of just in the server runtime. x-ref: https://github.com/v...
[ { "path": "packages/next/src/build/templates/pages.ts", "patch": "@@ -161,16 +161,6 @@ export async function handler(\n const publicRuntimeConfig: Record<string, string> =\n routerServerContext?.publicRuntimeConfig || nextConfig.publicRuntimeConfig\n \n- let ErrorDebug: any\n-\n- if (process...
2025-05-27T14:44:36
facebook/react
b433c379d55d9684945217c7d375de1082a1abb8
d962f35cac4e1b9e4c6d9320e60ca51037680296
Fix input tracking bug (#26627) In https://github.com/facebook/react/pull/26573/commits/2019ddc75f448292ffa6429d7625514af192631b, we changed to set .defaultValue before .value on updates. In some cases, setting .defaultValue causes .value to change, and since we only set .value if it has the wrong value, this resu...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -1297,32 +1297,36 @@ export function updateProperties(\n let type = null;\n let value = null;\n let defaultValue = null;\n+ let lastDefaultValue = null;\n let checked = null;\n let defaul...
2023-04-18T17:49:32
golang/go
ad7b46ee4ac1cee5095d64b01e8cf7fcda8bee5e
d96fd2e758d79a60f2c3df46e9b15e9ad084a5cb
go/parser, go/types, syntax, types2: report invalid uses of ... by parsers Check correct use of ...'s in parameter lists in parsers. This allows the type checkers to assume correct ASTs with respect to ... use. Adjust some error messages: if a ... is used in a result parameter list, the error is now more accurate. E...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -650,7 +650,7 @@ func (p *parser) typeDecl(group *Group) Decl {\n \t\t\t\t// d.Name \"[\" pname ...\n \t\t\t\t// d.Name \"[\" pname ptype ...\n \t\t\t\t// d.Name \"[\" pname ptype \",\" ...\n-\t\t\t\td.TParamList = p.paramList(pname, ptype,...
2024-11-25T21:08:34
nodejs/node
45f0dd019250945bafa56e14d187cbcd7793f2b6
6f504b71ac4693f5b7ad33cd6a1490d82b9a9955
module,win: fix long path resolve Fixes: https://github.com/nodejs/node/issues/50753 PR-URL: https://github.com/nodejs/node/pull/51097 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "src/node_modules.cc", "patch": "@@ -272,8 +272,15 @@ void BindingData::ReadPackageJSON(const FunctionCallbackInfo<Value>& args) {\n permission::PermissionScope::kFileSystemRead,\n path.ToStringView());\n \n+ // TODO(StefanStojanovic): Remove ifdef after\n+ // path.toNamespacedPath l...
2024-04-08T14:37:46
electron/electron
7588bb7425522959206daaa25d7e1f36c7015934
6c17dd229618d6033b0e2255db29315cd3a891a4
fix: DCHECK entering fullscreen while loading url (#35111) * fix: DCHECK entering fullscreen while loading url * spec: fixup test
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1327,6 +1327,8 @@ void WebContents::OnEnterFullscreenModeForTab(\n return;\n }\n \n+ owner_window()->set_fullscreen_transition_type(\n+ NativeWindow::FullScreenTransitionType::HTML);\n exclusive_access_manager_->fullscre...
2022-08-01T20:52:58
facebook/react
31f6dd8070aa2f2983bf659e1caf0ce772884d87
34bca247d69c60d9318892e335959a3001839a9e
[test] Add failing test showing useMemo bug
[ { "path": "compiler/forget/src/__tests__/fixtures/compiler/useMemo-inlining-block-return.expect.md", "patch": "@@ -0,0 +1,46 @@\n+\n+## Input\n+\n+```javascript\n+// @inlineUseMemo\n+function component(a, b) {\n+ let x = useMemo(() => {\n+ if (a) {\n+ return { b };\n+ }\n+ }, [a, b]);\n+ retur...
2023-04-17T19:59:35
golang/go
530c829270bef744b3acae7891a0635874af3fd4
4160ebf28f69a738203571bba6abab6ec0913080
syscall: use consistent message for ESTALE on Linux For some reason the ESTALE error message differed on Linux systems. On Linux strerror normally returns "Stale file handle" for ESTALE, except possibly in the en_GB locale. The mkerrors.sh script sets LC_ALL=C, so it should always produces "stale file handle". However...
[ { "path": "src/syscall/zerrors_linux_386.go", "patch": "@@ -1467,7 +1467,7 @@ var errors = [...]string{\n \t113: \"no route to host\",\n \t114: \"operation already in progress\",\n \t115: \"operation now in progress\",\n-\t116: \"stale NFS file handle\",\n+\t116: \"stale file handle\",\n \t117: \"structure ...
2025-01-17T17:59:50
nodejs/node
3fc8d2200e78c51f2e3116b6c1c382816b4d0a5e
468cb99ba427bc07a7383f1b25b08f5a4441bb80
http2: fix h2-over-h2 connection proxying PR-URL: https://github.com/nodejs/node/pull/52368 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -177,6 +177,7 @@ const {\n kUpdateTimer,\n kHandle,\n kSession,\n+ kBoundSession,\n setStreamTimeout,\n } = require('internal/stream_base_commons');\n const { kTimeout } = require('internal/timers');\n@@ -1121,7 +1122,7 @@ function cleanupSession...
2024-04-08T09:53:18
electron/electron
6c17dd229618d6033b0e2255db29315cd3a891a4
29434ee7c671637bf2be54d0200ff4cdddec1d76
fix: ensure native modules use the correct config (#35159) * fix: ensure native modules are built with config.gypi This works by patching node.h to check that two defines are set using the equivilant of an XNOR operation. One define "ELECTRON_ENSURE_CONFIG_GYPI" is set via common.gypi which is _already_ used to bu...
[ { "path": "BUILD.gn", "patch": "@@ -233,6 +233,7 @@ action(\"electron_js2c\") {\n action(\"generate_config_gypi\") {\n outputs = [ \"$root_gen_dir/config.gypi\" ]\n script = \"script/generate-config-gypi.py\"\n+ inputs = [ \"//third_party/electron_node/configure.py\" ]\n args = rebase_path(outputs) +...
2022-08-01T14:52:26
facebook/react
77d3b02e5c8bd92190d20c692fdbf2db01e3657b
b6006201b5fdfcc5720160f169b80ddb7b8d7467
React DevTools 4.27.4 -> 4.27.5 (#26637) Full list of changes (not everything included in changelog): * refactor[devtools]: copy to clipboard only on frontend side ([hoxyq](https://github.com/hoxyq) in [#26604](https://github.com/facebook/react/pull/26604)) * Provide icon to edge devtools. ([harrygz889](https://g...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.27.4\",\n+ \"version\": \"4.27.5\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j...
2023-04-17T16:42:02
golang/go
4160ebf28f69a738203571bba6abab6ec0913080
dcebb675b3fa0fd8d3056323a9f7f857ce4a2105
net: permit Interface with no Name On darwin the utun interface sometimes has no name. Fixes #71064 Change-Id: Iec51641880515f8bd3f97bd892c26f68fd588fa3 Reviewed-on: https://go-review.googlesource.com/c/go/+/641855 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit:...
[ { "path": "src/internal/routebsd/interface_classic.go", "patch": "@@ -20,9 +20,7 @@ func (w *wireFormat) parseInterfaceMessage(b []byte) (Message, error) {\n \t\treturn nil, errInvalidMessage\n \t}\n \tattrs := uint(nativeEndian.Uint32(b[4:8]))\n-\tif attrs&syscall.RTA_IFP == 0 {\n-\t\treturn nil, nil\n-\t}...
2025-01-09T21:04:51
nodejs/node
9f939f5af7d11299796999af3cbfa4845b505c78
128c60d90609ac25e6dce9cd5937c497786bda41
crypto: reject Ed25519/Ed448 in Sign/Verify prototypes fixes: #52097 PR-URL: https://github.com/nodejs/node/pull/52340 Fixes: https://github.com/nodejs/node/issues/52097 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail...
[ { "path": "src/crypto/crypto_sig.cc", "patch": "@@ -423,6 +423,11 @@ void Sign::SignFinal(const FunctionCallbackInfo<Value>& args) {\n if (!key)\n return;\n \n+ if (IsOneShot(key)) {\n+ THROW_ERR_CRYPTO_UNSUPPORTED_OPERATION(env);\n+ return;\n+ }\n+\n int padding = GetDefaultSignPadding(key)...
2024-04-08T06:18:43
facebook/react
2bfe4b246f58d1f8d357f984fba9a8aa1fa79c73
ab2385fa388f3d4ebc0b1a9f5a747c82e4aa82ed
[Flight] Fix style nit from #26623 (#26629) Maybe this is faster. https://github.com/facebook/react/pull/26623#discussion_r1167053174
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -565,7 +565,7 @@ export function parseModelString(\n }\n case '-': {\n // $-0 or $-Infinity\n- if (value[2] === '0') {\n+ if (value === '$-0') {\n return -0;\n } else {\n re...
2023-04-14T16:49:41
electron/electron
b67c69d741c648569d86c5a7846f2559219f9b14
00e9bf107a6357029b3e4c247456450c3d2554a4
fix: remove skip-taskbar feature on Linux. (#35123)
[ { "path": "docs/api/browser-window.md", "patch": "@@ -1323,7 +1323,7 @@ win.setSheetOffset(toolbarRect.height)\n \n Starts or stops flashing the window to attract user's attention.\n \n-#### `win.setSkipTaskbar(skip)`\n+#### `win.setSkipTaskbar(skip)` _macOS_ _Windows_\n \n * `skip` boolean\n ", "additi...
2022-08-01T10:42:02
golang/go
439d39a719da12c213aeb69a09c5aaef83d9df67
82337de9f2157a132257b2e2fe5ae8f1ad57ff20
all: replace reflect.Value.Type.Kind with reflect.Value.Kind Fixes #46107 Change-Id: I170f3cacda652752cd740e04b565a616a0e43fd1 Reviewed-on: https://go-review.googlesource.com/c/go/+/632635 Reviewed-by: Rob Pike <r@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Commit-Queue: Ian Lance Taylor <iant@google.co...
[ { "path": "src/cmd/fix/cftype.go", "patch": "@@ -67,14 +67,14 @@ func typefix(f *ast.File, badType func(string) bool) bool {\n \t\t\t\treturn\n \t\t\t}\n \t\t\tv := reflect.ValueOf(n)\n-\t\t\tif v.Type().Kind() != reflect.Pointer {\n+\t\t\tif v.Kind() != reflect.Pointer {\n \t\t\t\treturn\n \t\t\t}\n \t\t\t...
2024-12-01T20:06:26
vercel/next.js
9225917fdcff9c626f9faacbd1bf974f2ebf6f43
7cbc15ab709ea10b0139897cce7baa45d50a9043
Turbopack Build: Fix runtime value test (#79654) ## What? Ensures the warning message is the same between webpack/Turbopack. Found that Turbopack does have the info we check in the test but it's currently not logged, seems intentionally. Need to check with @wbinnssmith because it was commented out here: https://gith...
[ { "path": "crates/next-core/src/app_segment_config.rs", "patch": "@@ -206,7 +206,8 @@ impl Issue for NextSegmentConfigParsingIssue {\n \n #[turbo_tasks::function]\n fn title(&self) -> Vc<StyledString> {\n- StyledString::Text(\"Unable to parse config export in source file\".into()).cell()\n+ ...
2025-05-27T13:44:39
nodejs/node
893e2cf22b9c240f1d6ac5957eb44a1a3164e1e6
2c77be5488c80f08195b7e065dc9b5925d7eb796
watch: fix some node argument not passed to watched process PR-URL: https://github.com/nodejs/node/pull/52358 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": "lib/internal/main/watch_mode.js", "patch": "@@ -1,11 +1,12 @@\n 'use strict';\n const {\n- ArrayPrototypeFilter,\n ArrayPrototypeForEach,\n ArrayPrototypeJoin,\n ArrayPrototypeMap,\n+ ArrayPrototypePush,\n ArrayPrototypePushApply,\n ArrayPrototypeSlice,\n+ StringPrototypeIncludes,\n ...
2024-04-07T20:50:45
electron/electron
00e9bf107a6357029b3e4c247456450c3d2554a4
9028bb79a85fedf64230c2f1c6a29ab072c98c20
docs: new main -> renderers messageChannel example (#34978) * docs: new main -> renderers messageChannel example * consistent use of your * fix a typo * linting * markdown linting * Update docs/tutorial/message-ports.md Co-authored-by: Erick Zhao <erick@hotmail.ca> * update code example headings, ...
[ { "path": "docs/tutorial/message-ports.md", "patch": "@@ -8,8 +8,7 @@ your app.\n \n Here is a very brief example of what a MessagePort is and how it works:\n \n-```js\n-// renderer.js ///////////////////////////////////////////////////////////////\n+```js title='renderer.js (Renderer Process)'\n // Message...
2022-07-29T16:47:43
rust-lang/rust
b33fdb2c7093fb414833936d830e2e1135cebf9b
506ea790caa945aa6541f371f98df39c999e149c
Move `TokenDescription`. From the `parser` module to the `errors` module, which is where most of its uses are. This means the `errors` module no longer depends on the `parser` module, removing a cyclic dependency between the two modules.
[ { "path": "compiler/rustc_parse/src/errors.rs", "patch": "@@ -3,7 +3,7 @@\n use std::borrow::Cow;\n use std::path::PathBuf;\n \n-use rustc_ast::token::Token;\n+use rustc_ast::token::{self, InvisibleOrigin, MetaVarKind, Token};\n use rustc_ast::util::parser::ExprPrecedence;\n use rustc_ast::{Path, Visibility...
2026-01-21T04:47:00
golang/go
82337de9f2157a132257b2e2fe5ae8f1ad57ff20
77f5ecef3a4f30644eadb922a8ba5deb76fa8e07
test/issue71226: add cast to avoid clang error Change-Id: I2d8ecb7b5f48943697d454d09947fdb1817809d0 Reviewed-on: https://go-review.googlesource.com/c/go/+/646295 TryBot-Bypass: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by...
[ { "path": "test/fixedbugs/issue71226.go", "patch": "@@ -14,7 +14,7 @@ package main\n #include <stdio.h>\n \n static void CFn(_GoString_ gostr) {\n-\tprintf(\"%.*s\\n\", _GoStringLen(gostr), _GoStringPtr(gostr));\n+\tprintf(\"%.*s\\n\", (int)(_GoStringLen(gostr)), _GoStringPtr(gostr));\n }\n */\n import \"C\...
2025-02-03T17:50:38
vercel/next.js
7cbc15ab709ea10b0139897cce7baa45d50a9043
0eb276b4cada5a6558ac42e4d97d8f5aee1ca982
Turbopack Build: Fix conflicting page error (#79634) ## What? Implements the missing part of the error to make the test pass. Small difference between webpack/Turbopack is that Turbopack will spot the conflict earlier and because of that errors earlier too, making the path still correct but shorter, not a problem in...
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -767,6 +767,7 @@ fn directory_tree_to_entrypoints(\n #[turbo_tasks::value]\n struct DuplicateParallelRouteIssue {\n app_dir: ResolvedVc<FileSystemPath>,\n+ previously_inserted_page: AppPage,\n page: AppPage,\n }\n \n@@ -783,11 +784,1...
2025-05-27T13:43:43
nodejs/node
47c934e464756952719927529c2d28a92a58d701
ba07e4e5e643e80e4d14a108fa99727904596be5
benchmark: conditionally use spawn with taskset for cpu pinning This change enhances the benchmarking tool by conditionally using the, spawn method with taskset for CPU pinning, improving consistency of benchmark results across different environments. Fixes: https://github.com/nodejs/node/issues/52233 PR-URL: https:/...
[ { "path": "benchmark/_cli.js", "patch": "@@ -125,3 +125,24 @@ CLI.prototype.shouldSkip = function(scripts) {\n \n return skip;\n };\n+\n+/**\n+ * Extracts the CPU core setting from the CLI arguments.\n+ * @returns {string|null} The CPU core setting if found, otherwise null.\n+ */\n+CLI.prototype.getCpuCor...
2024-04-06T22:43:53
rust-lang/rust
506ea790caa945aa6541f371f98df39c999e149c
2135bc1f1063073479b8b4c8e83fcb9a635f9ab0
Move two `rustc_parse` error diagnostics. Every diagnostic struct in `rustc_parse` is in the `errors` module, except for `ForbiddenLetReason` and `MisspelledKw`. There's no good reason for this, and presumably it is just an accidental inconsistency. This commit moves them into `errors`.
[ { "path": "compiler/rustc_parse/src/errors.rs", "patch": "@@ -17,7 +17,7 @@ use rustc_span::edition::{Edition, LATEST_STABLE_EDITION};\n use rustc_span::{Ident, Span, Symbol};\n \n use crate::fluent_generated as fluent;\n-use crate::parser::{ForbiddenLetReason, TokenDescription};\n+use crate::parser::TokenD...
2026-01-21T04:22:21
electron/electron
9028bb79a85fedf64230c2f1c6a29ab072c98c20
8004cb8722c8d52f4cd553bbaea86750149e8ca4
fix: empty result of `webContents.getUserAgent()` (#35069) fix: empty result of webContents.getUserAgent()
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -675,10 +675,8 @@ WebContents::WebContents(v8::Isolate* isolate,\n auto session = Session::CreateFrom(isolate, GetBrowserContext());\n session_.Reset(isolate, session.ToV8());\n \n- absl::optional<std::string> user_agent_override ...
2022-07-29T15:09:47
facebook/react
d121c67004a2e6b0bb5d341843663ef213f64863
7b0642bb989ec659c6c9891ea16daa0420caab4d
Synchronously flush the transition lane scheduled in a popstate event (#26025) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before su...
[ { "path": "packages/react-art/src/ReactFiberConfigART.js", "patch": "@@ -346,6 +346,10 @@ export function getCurrentEventPriority() {\n return DefaultEventPriority;\n }\n \n+export function shouldAttemptEagerTransition() {\n+ return false;\n+}\n+\n // The ART renderer is secondary to the React DOM render...
2023-04-13T19:21:19
golang/go
3caf5bd09e84f77cc5e0394819d57a1beca87fcb
3a81ebea0de65aa877f46afb80575ec67b7d9170
text/scanner: add required ScanComments in example Fixes #71133 Change-Id: I11f792bf4cb275e7bc3585cd92a4b327a3b6e368 Reviewed-on: https://go-review.googlesource.com/c/go/+/646036 Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@...
[ { "path": "src/text/scanner/scanner.go", "patch": "@@ -50,7 +50,7 @@ func (pos Position) String() string {\n // to configure a [Scanner] such that it only recognizes (Go) identifiers,\n // integers, and skips comments, set the Scanner's Mode field to:\n //\n-//\tScanIdents | ScanInts | SkipComments\n+//\tSc...
2025-02-01T16:42:22
vercel/next.js
0eb276b4cada5a6558ac42e4d97d8f5aee1ca982
fc17ba97100db45bb986654c95e15e34fa5f38b6
Turbopack Build: Fix edge _document test (#79628) ## What? Currently there's a specific case when you set `runtime: 'experimental-edge'` for `_document.js` or `_app.js` where we incorrectly write a bundle that is wrapped with the route handling code to disk. This in turn causes `_document.js` to break during prerende...
[ { "path": "crates/next-api/src/pages.rs", "patch": "@@ -907,36 +907,39 @@ impl PageEndpoint {\n .module();\n \n let config = parse_config_from_source(ssr_module, NextRuntime::default()).await?;\n- Ok(if config.runtime == NextRuntime::Edge {\n- let modules = create_page_...
2025-05-27T13:43:29
rust-lang/rust
0385e26e7d1e6a984954d1daa448471e9ef1051e
474276961f48b0d05f4ea260ba400096b027584e
Reintroduce `QueryStackFrame` split. I tried removing it in #151203, to replace it with something simpler. But a couple of fuzzing failures have come up and I don't have a clear picture on how to fix them. So I'm reverting the main part of #151203. This commit also adds the two fuzzing tests. Fixes #151226, #151358.
[ { "path": "compiler/rustc_middle/src/query/mod.rs", "patch": "@@ -88,7 +88,7 @@ use rustc_index::IndexVec;\n use rustc_lint_defs::LintId;\n use rustc_macros::rustc_queries;\n use rustc_query_system::ich::StableHashingContext;\n-use rustc_query_system::query::{QueryMode, QueryState};\n+use rustc_query_system...
2026-01-20T00:56:19
nodejs/node
ba07e4e5e643e80e4d14a108fa99727904596be5
8c0b723ccb69b76b415fb2f549c0bcb490d7126e
doc: fix typo in cli.md Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/52388 Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -1216,7 +1216,7 @@ When enabled, the parser will accept the following:\n * Allow message containing both `Transfer-Encoding`\n and `Content-Length` headers.\n * Allow extra data after message when `Connection: close` is present.\n-* Allow extra trasfer encodings af...
2024-04-06T18:49:45
electron/electron
7f757075bc5ac35c751aecf0dd4a94d0daf21f7d
674596d11e5ad72b6651073619d282fbfea74ae1
docs: update E21 release date (#35122) * docs: update E21 release date * chore: fix lint Co-authored-by: Keeley Hammond <khammond@slack-corp.com>
[ { "path": "docs/tutorial/electron-timelines.md", "patch": "@@ -24,10 +24,11 @@ check out our [Electron Versioning](./electron-versioning.md) doc.\n | 14.0.0 | -- | 2021-May-27 | 2021-Aug-31 | M93 | v14.17 | 🚫 |\n | 15.0.0 | 2021-Jul-20 | 2021-Sep-01 | 2021-Sep-21 | M94 | v16.5 | 🚫 |\n | 16.0.0 | 2021-Sep-...
2022-07-29T04:54:48
facebook/react
8256781fdf3ae1947a7f27ddc78ae11b9989c2cd
72c890e3123d3ea48b5d7f51bca301d7da16a8b1
Throttle retries even if everything has loaded (#26611) If a Suspense fallback is shown, and the data finishes loading really quickly after that, we throttle the content from appearing for 500ms to reduce thrash. This already works for successive fallback states (like if one fallback is nested inside another) b...
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.js", "patch": "@@ -1085,108 +1085,87 @@ function finishConcurrentRender(\n finishedWork: Fiber,\n lanes: Lanes,\n ) {\n+ // TODO: The fact that most of these branches are identical suggests that some\n+ // of the exit statuses are not best mo...
2023-04-13T00:25:32
golang/go
1118da25148d20f0fc275dd7ce7a08bd4ac4bdf2
e57769d5ad251a26d7676cd7a63e5332b26a35f0
text/template improved comparison error addresses issue #71421 Addresses issue #71421, improves the error message given for comparison. Previous error message did not specify the types causing conflict, just said incompatible types, new error message specifies the two types causing the issue. Change-Id: I9d940ab7573c...
[ { "path": "src/text/template/funcs.go", "patch": "@@ -409,7 +409,6 @@ func not(arg reflect.Value) bool {\n \n var (\n \terrBadComparisonType = errors.New(\"invalid type for comparison\")\n-\terrBadComparison = errors.New(\"incompatible types for comparison\")\n \terrNoComparison = errors.New(\"miss...
2025-01-31T20:57:20
vercel/next.js
fc17ba97100db45bb986654c95e15e34fa5f38b6
8b7f937e369061d615d026069708ed0f9ee0a19a
Docs: scrub html in `ld+json` script (#79627) Closes: https://linear.app/vercel/issue/DOC-4708/json-ld-security-w-jsonstringify Fixes: https://github.com/vercel/next.js/issues/79593
[ { "path": "docs/01-app/02-guides/json-ld.mdx", "patch": "@@ -6,7 +6,11 @@ description: Learn how to add JSON-LD to your Next.js application to describe yo\n \n [JSON-LD](https://json-ld.org/) is a format for structured data that can be used by search engines and AI to to help them understand the structure o...
2025-05-27T13:23:05
electron/electron
62001dc6cbfd78a82d2fca849ca5eb0504cd0b71
ff804e3a748c72f4812af8ccf3b1d7442a468f4a
fix: crash on startup in X11 (#35075) Fixes #34996.
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -278,12 +278,6 @@ void ElectronBrowserMainParts::PostEarlyInitialization() {\n }\n \n int ElectronBrowserMainParts::PreCreateThreads() {\n-#if defined(USE_AURA)\n- if (!display::Screen::GetScreen()) {\n- screen_ = views::CreateDeskto...
2022-07-27T04:44:44
nodejs/node
3f5ff8dc20bf6118454bc30e5384cfbd2fb4f398
67b9dda003a93b3a7805e479e4eac011511d75ba
lib: .load .save add proper error message when no file passed This commit adds a proper error message using ERR_MISSING_ARGS('file') when a .save or .load REPL command is runned. This commit also adds test for both of this cases. Fixes: https://github.com/nodejs/node/issues/52218 Signed-off-by: Thomas Mauran <thomas...
[ { "path": "lib/repl.js", "patch": "@@ -147,6 +147,7 @@ const {\n ERR_CANNOT_WATCH_SIGINT,\n ERR_INVALID_REPL_EVAL_CONFIG,\n ERR_INVALID_REPL_INPUT,\n+ ERR_MISSING_ARGS,\n ERR_SCRIPT_EXECUTION_INTERRUPTED,\n },\n isErrorStackTraceLimitWritable,\n@@ -1788,10 +1789,17 @@ function defineD...
2024-04-06T02:12:19
facebook/react
21021fb0f06f5b8ccdad0774d53ff5f865faeb6d
5426af3d50ff706f3ebeb4764f838e0a3812bf9a
refactor[devtools]: copy to clipboard only on frontend side (#26604) Fixes https://github.com/facebook/react/issues/26500 ## Summary - No more using `clipboard-js` from the backend side, now emitting custom `saveToClipboard` event, also adding corresponding listener in `store.js` - Not migrating to `navigator.c...
[ { "path": "packages/react-devtools-extensions/src/contentScripts/prepareInjection.js", "patch": "@@ -128,19 +128,3 @@ if (IS_FIREFOX) {\n }\n }\n }\n-\n-if (typeof exportFunction === 'function') {\n- // eslint-disable-next-line no-undef\n- exportFunction(\n- text => {\n- // Call clipboard.wr...
2023-04-12T15:12:03
golang/go
f7b8dd9033663944e3b563afaeb55dace4c060fc
9896da303a74c7af02f711fbb49ac08e4ef3590b
io/fs: add ReadLinkFS interface Added implementations for *io/fs.subFS, os.DirFS, and testing/fstest.MapFS. Amended testing/fstest.TestFS to check behavior. Addressed TODOs in archive/tar and os.CopyFS around symbolic links. I am deliberately not changing archive/zip in this CL, since it currently does not resolve s...
[ { "path": "api/next/49580.txt", "patch": "@@ -0,0 +1,8 @@\n+pkg io/fs, func Lstat(FS, string) (FileInfo, error) #49580\n+pkg io/fs, func ReadLink(FS, string) (string, error) #49580\n+pkg io/fs, type ReadLinkFS interface { Lstat, Open, ReadLink } #49580\n+pkg io/fs, type ReadLinkFS interface, Lstat(string) (...
2024-07-16T17:21:30
vercel/next.js
ead767a1a7b6d7c9ed631a0c7786cdf089762901
2d81adc5201ad282ae8fb69ec8f24fddc56d3ae1
Turbopack: avoid panics due to eventual consistency (#79242) ### What? Avoid panics in favor of bails as this might happen due to eventual consistency.
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/chunk_group_info.rs", "patch": "@@ -3,7 +3,7 @@ use std::{\n ops::{Deref, DerefMut},\n };\n \n-use anyhow::{Result, bail};\n+use anyhow::{Context, Result, bail};\n use either::Either;\n use indexmap::map::Entry;\n use roaring::RoaringBitmap;\n@...
2025-05-27T09:58:09
facebook/react
5426af3d50ff706f3ebeb4764f838e0a3812bf9a
f9de24a26af23ce63b6f0474670870c86e1a631c
Provide icon to edge devtools. (#26543) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please make su...
[ { "path": "packages/react-devtools-extensions/src/main.js", "patch": "@@ -475,7 +475,7 @@ function createPanelIfReactLoaded() {\n \n chrome.devtools.panels.create(\n IS_CHROME || IS_EDGE ? '⚛️ Components' : 'Components',\n- '',\n+ IS_EDGE ? 'icons/production.svg' : '',\n ...
2023-04-11T18:42:13
electron/electron
ff804e3a748c72f4812af8ccf3b1d7442a468f4a
9416091180e18c1ba1f625f86505332a018d9049
fix: use win_clang_x64 binary for x86 extract symbols (#35078) fix: use win_clang_x64 for x86 extract symbols
[ { "path": "appveyor.yml", "patch": "@@ -170,19 +170,16 @@ build_script:\n - python %LOCAL_GOMA_DIR%\\goma_ctl.py stat\n - python3 electron/build/profile_toolchain.py --output-json=out/Default/windows_toolchain_profile.json\n - 7z a node_headers.zip out\\Default\\gen\\node_headers\n- # Temporarily dis...
2022-07-27T04:33:07
nodejs/node
d0c364a84412b4dbf70fd98dee5e9ee5bd8286cc
d619aab575b40543441912f04bc989a5d1fa5c58
doc: document missing options of events.on Fixes: https://github.com/nodejs/node/issues/52078 Refs: https://github.com/nodejs/node/pull/41276 PR-URL: https://github.com/nodejs/node/pull/52080 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/events.md", "patch": "@@ -1661,12 +1661,31 @@ console.log(listenerCount(myEmitter, 'event'));\n added:\n - v13.6.0\n - v12.16.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/52080\n+ description: Support `highWaterMark` and `lowWaterMark` optio...
2024-03-14T08:02:46
golang/go
6adf54a3ebca857ae529b78c03945750731042ed
bf351677c4c134f15d28cf5352964838609de129
cmd/cgo: declare _GoString{Len,Ptr} in _cgo_export.h Fixes #71226 Change-Id: I91c46a4310a9c7a9fcd1e3a131ca16e46949edb3 Reviewed-on: https://go-review.googlesource.com/c/go/+/642235 Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@...
[ { "path": "src/cmd/cgo/out.go", "patch": "@@ -1938,6 +1938,8 @@ const builtinExportProlog = `\n \n #ifndef GO_CGO_GOSTRING_TYPEDEF\n typedef struct { const char *p; ptrdiff_t n; } _GoString_;\n+extern size_t _GoStringLen(_GoString_ s);\n+extern const char *_GoStringPtr(_GoString_ s);\n #endif\n \n #endif", ...
2025-01-11T00:35:24
vercel/next.js
c0104dcf55a1b70b7e307a96328f5d48b4bbc2a3
522793548a23298bd17cae272802959ba5fc7f98
Turbopack: improve error handling when DB read/deserialization fails (#79545) ### What? Instead of only printing on DB read errors, panic instead of continuing with a corrupted graph. Also improve the error message to be more clear about deserialization errors: Before: ``` Looking up data for TaskId 3 failed: miss...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -220,9 +220,13 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n Self {\n options,\n start_time: Instant::now(),\n- session_id: backing_storage.next_session_id(),\n+ ...
2025-05-27T07:43:17
rust-lang/rust
17f89e76abe4b4af4a2c551c3d79835df849eaa0
1b33602298b4e75a08e6f97277e1df7e8a4c4873
Fix `useless_attribute` FP on `exported_private_dependencies` lint attributes.
[ { "path": "clippy_lints/src/attrs/useless_attribute.rs", "patch": "@@ -31,6 +31,7 @@ pub(super) fn check(cx: &EarlyContext<'_>, item: &Item, attrs: &[Attribute]) {\n | sym::dead_code\n | sym::deprecated\n ...
2026-01-26T19:11:40
electron/electron
9416091180e18c1ba1f625f86505332a018d9049
6d9e8b65bc94dea8fc47f4e03c1833263c3622e9
fix: allow setsize to be called within a move or resize for preventDefault (#34843) fix: #34599 allow setsize to be called within a move or resize for preventDefault
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -729,7 +729,6 @@ void NativeWindowViews::SetBounds(const gfx::Rect& bounds, bool animate) {\n #if BUILDFLAG(IS_WIN)\n if (is_moving_ || is_resizing_) {\n pending_bounds_change_ = bounds;\n- return;\n }\n #endif\n ", "additions": 0...
2022-07-27T00:02:06
facebook/react
343a45ffa48065e60699bbe68f82d7b62fa02840
58742c21b8c3237e8b66c7df4e200504846a01ae
Remove initOption special case (#26595) This traces back to https://github.com/facebook/react/pull/6449 and then another before that. I think that back then we favored the property over the attribute, and setting the property wouldn't be enough. However, the default path for these are now using attributes if we ...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -32,7 +32,7 @@ import {\n updateInput,\n restoreControlledInputState,\n } from './ReactDOMInput';\n-import {initOption, validateOptionProps} from './ReactDOMOption';\n+import {validateOptionProps} from './ReactDOMOptio...
2023-04-11T16:39:00
nodejs/node
d619aab575b40543441912f04bc989a5d1fa5c58
ec1550407bbb6da90cea50f3c1ea2ad96ec03392
events: rename high & low watermark for consistency PR-URL: https://github.com/nodejs/node/pull/52080 Fixes: https://github.com/nodejs/node/issues/52078 Refs: https://github.com/nodejs/node/pull/41276 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "lib/events.js", "patch": "@@ -1053,8 +1053,8 @@ function eventTargetAgnosticAddListener(emitter, name, listener, flags) {\n * @param {{\n * signal: AbortSignal;\n * close?: string[];\n- * highWatermark?: number,\n- * lowWatermark?: number\n+ * highWaterMark?: number,\n+ * low...
2024-03-14T22:59:35
rust-lang/rust
c3ab233ca45075ec9306385633fb2f09999ac825
dc57e57f747a1a5ce13c7674f56bce5864c9f9e1
fix: `manual_dangling_ptr` FP when pointee type is not `Sized`
[ { "path": "clippy_lints/src/casts/manual_dangling_ptr.rs", "patch": "@@ -15,6 +15,8 @@ pub(super) fn check(cx: &LateContext<'_>, expr: &Expr<'_>, from: &Expr<'_>, to:\n let init_expr = expr_or_init(cx, from);\n if is_expr_const_aligned(cx, init_expr, ptr_ty.ty)\n && let Some(std_...
2026-01-26T18:27:06
golang/go
bf351677c4c134f15d28cf5352964838609de129
9d6af4082b4ee0dc912a5cd108581f6eefd778a5
cmd/cgo: add C declaration parameter unused attribute Fixes #71225 Change-Id: I3e60fdf632f2aa0e63b24225f13e4ace49906925 Reviewed-on: https://go-review.googlesource.com/c/go/+/642196 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> ...
[ { "path": "src/cmd/cgo/out.go", "patch": "@@ -1094,7 +1094,7 @@ func (p *Package) writeExports(fgo2, fm, fgcc, fgcch io.Writer) {\n \t\t// This unpacks the argument struct above and calls the Go function.\n \t\tfmt.Fprintf(fgo2, \"func _cgoexp%s_%s(a *%s) {\\n\", cPrefix, exp.ExpName, gotype)\n \n-\t\tfmt.F...
2025-01-11T00:22:20
vercel/next.js
05dc8408beaccef01f24e2f1cfd95cc99e502e6e
e5f2e0f9c1a78b9a391085c803f6711a54120088
Unflake `Undefined default export` test (#79632) [flakiness metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20env%3Aci%20%40git.repository.id%3Agithub.com%2Fvercel%2Fnext.js%20%40test.service%3Anextjs%20%40test.status%3Afail%20%40test.name%3A%22Undefined%20default%20export%20should%20error%20whe...
[ { "path": "test/development/acceptance-app/undefined-default-export.test.ts", "patch": "@@ -1,11 +1,11 @@\n import path from 'path'\n import { FileRef, nextTestSetup } from 'e2e-utils'\n import { createSandbox } from 'development-sandbox'\n+import { retry } from 'next-test-utils'\n \n describe('Undefined de...
2025-05-26T12:14:08
nodejs/node
ec1550407bbb6da90cea50f3c1ea2ad96ec03392
433bd1b04d3f6b6c8726874a1f0f247cc535e8bf
src: stop using `v8::BackingStore::Reallocate` It's being deprecated by V8. Explicitly allocate a new ArrayBuffer and copy the data when needed instead. Fixes: https://github.com/nodejs/node/issues/52234 Co-authored-by: Joyee Cheung <joyeec9h3@gmail.com> PR-URL: https://github.com/nodejs/node/pull/52292 Reviewed-By: ...
[ { "path": "src/crypto/crypto_cipher.cc", "patch": "@@ -820,10 +820,15 @@ CipherBase::UpdateResult CipherBase::Update(\n len);\n \n CHECK_LE(static_cast<size_t>(buf_len), (*out)->ByteLength());\n- if (buf_len == 0)\n+ if (buf_len == 0) {\n *out = ArrayBuffer::NewBackingStor...
2024-04-05T09:20:10
facebook/react
0b931f90e8964183f08ac328e7350d847abb08f9
ac43bf6870a15566507477a4504f22160835c8d3
Remove JND delay for non-transition updates (#26597) Updates that are marked as part of a transition are allowed to block a render from committing. Generally, other updates cannot — however, there's one exception that's leftover from a previous iteration of our Suspense architecture. If an update is not the result ...
[ { "path": "packages/react-cache/src/__tests__/ReactCacheOld-test.internal.js", "patch": "@@ -236,7 +236,7 @@ describe('ReactCache', () => {\n \n jest.advanceTimersByTime(100);\n assertLog(['Promise resolved [4]']);\n- await waitForAll([1, 4, 'Suspend! [5]', 'Loading...']);\n+ await waitForAll(...
2023-04-11T04:19:49
rust-lang/rust
dfcfd73b2c3bc0c076226ebbb04554b689dd5041
dc57e57f747a1a5ce13c7674f56bce5864c9f9e1
fix: `cmp_owned` FP when `to_string` comes from macro input
[ { "path": "clippy_lints/src/operators/cmp_owned.rs", "patch": "@@ -10,10 +10,10 @@ use rustc_span::symbol::sym;\n \n use super::CMP_OWNED;\n \n-pub(super) fn check(cx: &LateContext<'_>, op: BinOpKind, lhs: &Expr<'_>, rhs: &Expr<'_>) {\n+pub(super) fn check(cx: &LateContext<'_>, e: &Expr<'_>, op: BinOpKind, ...
2026-01-26T17:57:34
golang/go
b25b5f3ff4e671aa4f5897c788137fe91f62cf57
4f11d5879a01e64cb8bd59911bb205ffedd4f265
runtime: fix GODEBUG=gccheckmark=1 and add smoke test This change fixes GODEBUG=gccheckmark=1 which seems to have bit-rotted. Because the root jobs weren't being reset, it wasn't doing anything. Then, it turned out that checkmark mode would queue up noscan objects in workbufs, which caused it to fail. Then it turned o...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -752,8 +752,8 @@ func (t *tester) registerTests() {\n \t\t\t})\n \t}\n \n-\t// GODEBUG=gcstoptheworld=2 tests. We only run these in long-test\n-\t// mode (with GO_TEST_SHORT=0) because this is just testing a\n+\t// GC debug mode tests. We only run these in long...
2024-08-27T21:02:02
vercel/next.js
e5f2e0f9c1a78b9a391085c803f6711a54120088
e0d4df2180111bcb1511fc08d40d4c1b237326dd
[release-new] fix: release pr commit contains `(#number)` at last (#79611) When the "Version Packages" PR is merged, the created commit is the format of "Version Packages (#number)". Therefore, the check-is-release.js script won't match the current regex. Also, I modified the workflows that use the `check-is-release.j...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -19,8 +19,9 @@ env:\n #\n # See https://doc.rust-lang.org/rustc/platform-support/apple-darwin.html#os-version for more details\n MACOSX_DEPLOYMENT_TARGET: 11.0\n- # This will become \"true\" if the latest commit is\n- # \"Version Packa...
2025-05-26T12:02:49
facebook/react
451736b557ebf53dd6d6b92c55cad14f7eba864c
fec97ecbc4bc2e0e1407160289a8f5fac5241cbc
[DevTools][BE] move shared types & constants to consolidated locations (#26572) ## Summary This pull request aims to improve the maintainability of the codebase by consolidating types and constants that are shared between the backend and frontend. This consolidation will allow us to maintain backwards compatibil...
[ { "path": "packages/react-devtools-core/src/cachedSettings.js", "patch": "@@ -7,10 +7,8 @@\n * @flow\n */\n \n-import {\n- type ConsolePatchSettings,\n- writeConsolePatchSettingsToWindow,\n-} from 'react-devtools-shared/src/backend/console';\n+import type {ConsolePatchSettings} from 'react-devtools-shar...
2023-04-10T21:07:05
nodejs/node
433bd1b04d3f6b6c8726874a1f0f247cc535e8bf
f1f32d89e0a681bfac9e69650abf03110a02ed95
test_runner: fix recursive run PR-URL: https://github.com/nodejs/node/pull/52322 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/internal/test_runner/runner.js", "patch": "@@ -519,6 +519,8 @@ function run(options = kEmptyObject) {\n root.harness.shouldColorizeTestFiles ||= shouldColorizeTestFiles(root);\n \n if (process.env.NODE_TEST_CONTEXT !== undefined) {\n+ process.emitWarning('node:test run() is being calle...
2024-04-04T13:10:52
golang/go
e5ae12ab82e09539b77cfba3fa1c4c31f5b948db
e2f342fc51a70351205af839dff2749bc7a977e2
net/url: add panic to unhex for imposible error case Change-Id: I9f39b3d2a1a0a3e510afc874dd071302b2b0c89e Reviewed-on: https://go-review.googlesource.com/c/go/+/643555 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian ...
[ { "path": "src/net/url/url.go", "patch": "@@ -67,8 +67,9 @@ func unhex(c byte) byte {\n \t\treturn c - 'a' + 10\n \tcase 'A' <= c && c <= 'F':\n \t\treturn c - 'A' + 10\n+\tdefault:\n+\t\tpanic(\"invalid hex character\")\n \t}\n-\treturn 0\n }\n \n type encoding int", "additions": 2, "deletions": 1,...
2025-01-20T20:54:28
vercel/next.js
e0d4df2180111bcb1511fc08d40d4c1b237326dd
3175a22feb40cf0d424324493b61cb83c5199451
[ppr] Narrow condition for fallback shell generation at runtime (#79565) This addresses a bug where a fallback shell was generated at runtime when it was not expected to do so. This was an issue with how the `x-now-route-matches` header was parsed and was incorrectly assuming that a falsy header was the same as compar...
[ { "path": ".changeset/giant-bushes-sink.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Resolved bug where hitting the parameterized path directly would cause a fallback shell generation instead of just rendering the route with the parameterized placeholders.", "additions": 5, "delet...
2025-05-26T11:57:20
facebook/react
fec97ecbc4bc2e0e1407160289a8f5fac5241cbc
9a9da7721e5b73a8af242807e463e2af842c58ee
act: Move didScheduleLegacyUpdate to ensureRootIsScheduled (#26552) `act` uses the `didScheduleLegacyUpdate` field to simulate the behavior of batching in React <17 and below. It's a quirk leftover from a previous implementation, not intentionally designed. This sets `didScheduleLegacyUpdate` every time a legacy ...
[ { "path": "packages/react-reconciler/src/ReactFiberRootScheduler.js", "patch": "@@ -119,6 +119,15 @@ export function ensureRootIsScheduled(root: FiberRoot): void {\n // unblock additional features we have planned.\n scheduleTaskForRootDuringMicrotask(root, now());\n }\n+\n+ if (\n+ __DEV__ &&\...
2023-04-10T18:40:18
electron/electron
b42fd1ddca873b7354e39558935eba517fe1706e
182ab9ad7646ccf42b25e539990f8cb0c40f68b5
fix: handle WCO pressed state when going maximized -> minimized (#35070)
[ { "path": "shell/browser/native_window_views.h", "patch": "@@ -225,6 +225,7 @@ class NativeWindowViews : public NativeWindow,\n \n #if BUILDFLAG(IS_WIN)\n void HandleSizeEvent(WPARAM w_param, LPARAM l_param);\n+ void ResetWindowControls();\n void SetForwardMouseMessages(bool forward);\n static LRESUL...
2022-07-26T17:30:15
nodejs/node
04e16463d1bb6b7797f077f5257d9e1bb638ff06
b25b5aca96bfd92dd497aae96af22c6ec1afbd2e
http: do not allow OBS fold in headers by default Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Fixes: https://hackerone.com/reports/2237099 PR-URL: https://github.com/nodejs-private/node-private/pull/556 CVE-ID: CVE-2024-27982
[ { "path": "deps/llhttp/.gitignore", "patch": "@@ -1 +0,0 @@\n-libllhttp.pc", "additions": 0, "deletions": 1, "language": "Unknown" }, { "path": "deps/llhttp/CMakeLists.txt", "patch": "@@ -1,7 +1,7 @@\n cmake_minimum_required(VERSION 3.5.1)\n cmake_policy(SET CMP0069 NEW)\n \n-project...
2024-03-14T15:45:42
golang/go
37f27fbecd422da9fefb8ae1cc601bc5b4fec44b
77d20838e9cc3ad4f9c167db245752569d7ffc48
cmd/go: enable fips test and fix caching bug Enable the cmd/go fips test now that v1.0.0.zip has been checked in. Will still need to enable the alias half when the alias is checked in. Also fix a problem that was causing spurious failures, by fixing repeated unpackings and also disabling modindex reads of the virtual...
[ { "path": "src/cmd/go/internal/modfetch/cache.go", "patch": "@@ -113,6 +113,13 @@ func DownloadDir(ctx context.Context, m module.Version) (string, error) {\n \t\treturn dir, err\n \t}\n \n+\t// Special case: ziphash is not required for the golang.org/fips140 module,\n+\t// because it is unpacked from a file...
2024-11-17T22:17:50
vercel/next.js
2219ba0da9efe1eba18cdd7fe8d837e5390b0c65
e4d18b05632d8dbfee18d5572dfa385e00929dee
[release] fix: correctly set tag during publish (#79548) ### Why? The `process.env.RELEASE_TYPE` handling was set incorrectly. It should've been set to the "trigger" workflow, but instead, it was set to the "publish" workflow. Therefore, the "publish" workflow needs to know which dist tag to set for publish. -------...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -611,7 +611,6 @@ jobs:\n env:\n GITHUB_TOKEN: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}\n NPM_TOKEN: ${{ secrets.NPM_TOKEN_ELEVATED }}\n- RELEASE_TYPE: ${{ github.event.inputs.releaseType }}\n \n # Add ...
2025-05-26T10:12:24
facebook/react
9a9da7721e5b73a8af242807e463e2af842c58ee
e5146cb5250be1a4e66511af91549859b36ed488
Don't update textarea defaultValue and input checked unnecessarily (#26580) In #26573 I changed it so that textareas get their defaultValue reset if you don't specify one. However, the way that was implemented, it always set it for any update even if it hasn't changed. We have a test for that, but that test on...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMInput.js", "patch": "@@ -84,7 +84,7 @@ export function validateInputProps(element: Element, props: Object) {\n export function updateInputChecked(element: Element, props: Object) {\n const node: HTMLInputElement = (element: any);\n const checked ...
2023-04-10T02:16:38
rust-lang/rust
2859fde18af84f07c886d523f3747176da775ed9
82fc4ec5950be12b340b6cfe8c37c36f79b69f62
Fix rustc test suite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -50,6 +50,7 @@ rm -r tests/run-make/c-link-to-rust-va-list-fn # requires callee side vararg sup\n rm tests/ui/c-variadic/valid.rs # same\n rm tests/ui/c-variadic/trait-method.rs # same\n rm tests/ui/c-variadic/inherent-method.rs # same\n+rm tests/ui/c-va...
2026-01-26T16:38:55
electron/electron
0be73d18ef7386584fac964794c2f5a3dcc48f01
c842f63383d8d9500a850e3470972de74ff0809f
fix: Make disable_color_correct_rendering patch work again (#35050) Fix disable_color_correct_rendering patch.
[ { "path": "patches/chromium/disable_color_correct_rendering.patch", "patch": "@@ -20,14 +20,15 @@ to deal with color spaces. That is being tracked at\n https://crbug.com/634542 and https://crbug.com/711107.\n \n diff --git a/cc/trees/layer_tree_host_impl.cc b/cc/trees/layer_tree_host_impl.cc\n-index 6a148c3...
2022-07-26T16:35:10
nodejs/node
b25b5aca96bfd92dd497aae96af22c6ec1afbd2e
6590a8c4e44923d6fbf6548db37e93f5049f73db
src: ensure to close stream when destroying session Co-Authored-By: Anna Henningsen <anna@addaleax.net> PR-URL: https://github.com/nodejs-private/node-private/pull/561 Fixes: https://hackerone.com/reports/2319584 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> ...
[ { "path": "src/node_http2.cc", "patch": "@@ -605,6 +605,12 @@ Http2Session::Http2Session(Http2State* http2_state,\n Http2Session::~Http2Session() {\n CHECK(!is_in_scope());\n Debug(this, \"freeing nghttp2 session\");\n+ // Ensure that all `Http2Stream` instances and the memory they hold\n+ // on to ar...
2024-03-26T18:55:13
vercel/next.js
e4d18b05632d8dbfee18d5572dfa385e00929dee
624a40b7f8c96c0a698b0c4b6122a5f1fa52c4d9
Turbopack: use unsigned values for follower and upper edges (#79489) <!-- 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: ##...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs", "patch": "@@ -1304,10 +1304,6 @@ impl AggregationUpdateQueue {\n follower_in_upper = true;\n return None;\n };\n- if old < 0 {\...
2025-05-26T06:45:28
golang/go
77d20838e9cc3ad4f9c167db245752569d7ffc48
ce7ea0a6a529ce91327900e29afc3abd620030b4
cmd: update golang.org/x/tools to CL 645697, and revendor go get golang.org/x/tools@9874647 # CL 645697 go mod tidy go mod vendor Fixes #71485 Change-Id: I72d8f82abd0c6e05f2698d8a372bf9485002d1b3 Reviewed-on: https://go-review.googlesource.com/c/go/+/645336 Reviewed-by: Carlos Amedee <carlos@golang.org> Auto-Submit:...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.28.0\n \tgolang.org/x/telemetry v0.0.0-20241204182053-c0ac0e154df3\n \tgolang.org/x/term v0.27.0\n-\tgolang.org/x/tools v0.28.0\n+\tgolang.org/x/tools v0.28.1-0.20250131145412-98746475647e\n )\n \n require (", "add...
2025-01-31T15:06:15
facebook/react
fcfb66914ad98c6b1d09cfc232bb42729e85848f
2eae7dc6b9add777d24229d8c44efa1ba4da49f1
[Babel] Skip files that contain one or more disables of React eslint rules To unblock internal experimentation, for now let's just skip over compiling any file that contains one or more disables of React's eslint rules, and log that. This is a little coarse in the sense that we could skip over just functions that ...
[ { "path": "compiler/forget/src/Babel/BabelPlugin.ts", "patch": "@@ -10,7 +10,11 @@\n import type * as BabelCore from \"@babel/core\";\n import jsx from \"@babel/plugin-syntax-jsx\";\n import * as t from \"@babel/types\";\n-import { CompilerError } from \"../CompilerError\";\n+import {\n+ CompilerError,\n+ ...
2023-04-06T23:14:08
electron/electron
648c9934c01c12ea082a18fdf690c37e3112ce12
aeba6ca973c8ed8a8b75cceb4e0dde33f3595850
fix: properly fire serial-port-added and serial-port-removed events (#34958) Based on 2309652: [webhid] Notify chooser context observers on shutdown | https://chromium-review.googlesource.com/c/chromium/src/+/2309652
[ { "path": "shell/browser/serial/electron_serial_delegate.cc", "patch": "@@ -71,15 +71,15 @@ device::mojom::SerialPortManager* ElectronSerialDelegate::GetPortManager(\n \n void ElectronSerialDelegate::AddObserver(content::RenderFrameHost* frame,\n Observer* observer) ...
2022-07-25T14:50:19
nodejs/node
6590a8c4e44923d6fbf6548db37e93f5049f73db
24d036ba4564dbb54da4b1714da806bdba5ee688
2024-04-03, Version 18.20.1 'Hydrogen' (LTS) This is a security release. Notable changes: * CVE-2024-27983 - Assertion failed in node::http2::Http2Session::\~Http2Session() leads to HTTP/2 server crash- (High) * CVE-2024-27982 - HTTP Request Smuggling via Content Length Obfuscation - (Medium) * llhttp version 9.2.1 ...
[ { "path": "CHANGELOG.md", "patch": "@@ -71,7 +71,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V20.md#20.0.0\">20.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.0\">18.20.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.1\">18.20.1...
2024-04-01T14:26:02
facebook/react
85bb7b685b7aec50879703b94dd31523cf69b34d
60cfeeebe3902f4f996973ce8189afcb7363a6be
Fix: Move `destroy` field to shared instance object (#26561) This fixes the "double free" bug illustrated by the regression test added in the previous commit. The underlying issue is that `effect.destroy` field is a mutable field but we read it during render. This is a concurrency bug — if we had a borrow checke...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -592,9 +592,10 @@ function commitHookEffectListUnmount(\n do {\n if ((effect.tag & flags) === flags) {\n // Unmount\n- const destroy = effect.destroy;\n- effect.destroy = undefined;\n+ cons...
2023-04-06T16:08:05
golang/go
4f48ad5c6b2775ab295ea0062b93527cbf4ea9d0
1f58ad5d6d2eebc1939a65a511ca84c9b997cd6a
cmd/link/internal/loader: fix linknames from FIPS 140 frozen tree blockedLinknames was updated in CL 635676 after the lib/fips140 zip mechanism was last tested. linknames from crypto/internal/fips140/v1.0.0 need to be allowed if they'd be allowed from crypto/internal/fips140. Change-Id: I6a6a4656022118d4739ae14831f2a...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2394,6 +2394,16 @@ func (l *Loader) checkLinkname(pkg, name string, s Sym) {\n \t\t\tif pkg == p {\n \t\t\t\treturn // pkg is allowed\n \t\t\t}\n+\t\t\t// crypto/internal/fips140/vX.Y.Z/... is the frozen version of\n+\t\t\t// crypto/internal/...
2025-01-29T02:18:01
vercel/next.js
734754760f7606f1da3865b27bdbcb6a73cfe029
dc84c3f3e44a48a7c45c9d51c2476603098e9883
[release] fix: `GITHUB_TOKEN` is needed to open release pr (#79609) To open a "Version Packages" PR, the Action requires a `GITHUB_TOKEN` token. Discovered while testing: ![CleanShot 2025-05-25 at 13 38 56@2x](https://github.com/user-attachments/assets/91d6b4b6-0f13-4cf1-85d7-fa309ca3aaa0)
[ { "path": ".github/workflows/trigger_release_new.yml", "patch": "@@ -111,3 +111,5 @@ jobs:\n uses: changesets/action@v1\n with:\n version: pnpm ci:version\n+ env:\n+ GITHUB_TOKEN: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}", "additions": 2, "deletions": 0, ...
2025-05-25T14:04:58