repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
1eac9a3d41b304c0dad86b1d8188a893afb7a75d
42fd6401c24509e94d75cca4a0ba3ad2665d5783
test: compare paths on Windows without considering case PR-URL: https://github.com/nodejs/node/pull/53993 Fixes: https://github.com/nodejs/node/issues/53989 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Yag...
[ { "path": "test/parallel/test-child-process-cwd.js", "patch": "@@ -52,7 +52,14 @@ function testCwd(options, expectPidType, expectCode = 0, expectData) {\n });\n \n child.on('close', common.mustCall(function() {\n- expectData && assert.strictEqual(data.trim(), expectData);\n+ if (expectData) {\n+ ...
2024-07-23T12:07:34
vercel/next.js
145d7613b621369afa7ddc0a05ed3ebecda4b624
3be29d88298c12ec313d771a5e7ccbdad55b9b60
fix: update useEffect closure when menu is truly mounted (#81531) Previously we mounted event handlers on the the menu's [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument) to listen for clicks outside the menu. This causes a bug where the ref the useEffect captures is not set yet, a...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -163,8 +163,8 @@ function DevToolsPopover({\n )\n \n // Features to make the menu accessible\n- useFocusTrap(menuRef, triggerRef, isMenuOpen)\n- useClickOutside(menuRef, ...
2025-07-11T21:08:22
golang/go
ec4a9fb3211e1b7bd4035af7d70f17a21cd26508
3acd4402195aadc581aa68977154ac3b3403f8af
context: don't return a nil Cause for a canceled custom context Avoid a case where Cause(ctx) could return nil for a canceled context, when ctx is a custom context implementation and descends from a cancellable-but-not-canceled first-party Context. Fixes #73258 Change-Id: Idbd81ccddea82ecabece4373d718baae6ca4b58e Re...
[ { "path": "src/context/context.go", "patch": "@@ -288,11 +288,17 @@ func withCancel(parent Context) *cancelCtx {\n func Cause(c Context) error {\n \tif cc, ok := c.Value(&cancelCtxKey).(*cancelCtx); ok {\n \t\tcc.mu.Lock()\n-\t\tdefer cc.mu.Unlock()\n-\t\treturn cc.cause\n+\t\tcause := cc.cause\n+\t\tcc.mu....
2025-04-08T20:39:08
facebook/react
21c563157003ded36fcc54589a6075d2dd157c90
ad5a27239392d02ffec168cdbffc582ee1cb3969
[be] Prune implicit breaks when flattening unused labels A labeled block will generally end with an implicit break out of the label. However, if there are no _explicit_ breaks to the label, we'll end up with a ReactiveFunction along the lines of: ``` bb1: { ...instructions with no explicit `break bb1`... (i...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PrintReactiveFunction.ts", "patch": "@@ -132,6 +132,9 @@ function writeReactiveInstruction(\n break;\n }\n case \"terminal\": {\n+ if (instr.label !== null) {\n+ writer.write(`bb${instr.label}: `);\n+ }\...
2024-02-14T23:36:40
electron/electron
905aad9cb6007c2e0ff4897ec64f0c9967f63ee2
4c89061e0e79ccd8574c058e30d9b694f22ced1b
chore: type check JS in docs (#38423) * build(deps): update @electron/lint-roller * chore: type check JS in docs * docs: add @ts-check and @ts-expect-error to code blocks * chore: fix type check errors in docs * chore: add ts-type to blocks
[ { "path": "docs/api/app.md", "patch": "@@ -971,7 +971,7 @@ app.setJumpList([\n title: 'Tool A',\n program: process.execPath,\n args: '--run-tool-a',\n- icon: process.execPath,\n+ iconPath: process.execPath,\n iconIndex: 0,\n description: 'Runs Tool A'\n ...
2023-06-05T07:26:26
golang/go
559b5d814f63bbeee626778c41ab4ee4fd48030a
3a4f077710b96ee72fcd4214280a41a7c355205b
go/types, types2: fix failing error message test for s390x Fixes #73206. Change-Id: If27ce5fe7aa71415b6e2d525c78b1f04b88a308b Reviewed-on: https://go-review.googlesource.com/c/go/+/663635 TryBot-Result: Gopher Robot <gobot@golang.org> TryBot-Bypass: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Robert Griesemer...
[ { "path": "src/internal/types/testdata/fixedbugs/issue70549.go", "patch": "@@ -7,9 +7,9 @@ package p\n import \"math\"\n \n var (\n-\t_ = math.Sin\n-\t_ = math.SIn /* ERROR \"undefined: math.SIn (but have Sin)\" */\n-\t_ = math.sin /* ERROR \"name sin not exported by package math\" */\n-\t_ = math.Foo /* ER...
2025-04-07T21:28:47
vercel/next.js
f024178135f1e4f468644715e138f05b064fe120
48b2976ed268a78249679a82da43750e190943a1
Turbopack: fix `@opentelemetry/api` resolve fallback (#81541) Previously, it tried `[project]/node_modules/@opentelemetry/api` and then fell back to `node_modules/next/dist/compiled/@opentelemetry/api`. But that doesn't work if the dependency is installed in a monorepo subpackage and should have been resolved from ...
[ { "path": "crates/next-core/src/next_edge/context.rs", "patch": "@@ -22,7 +22,7 @@ use crate::{\n mode::NextMode,\n next_config::NextConfig,\n next_font::local::NextFontLocalResolvePlugin,\n- next_import_map::get_next_edge_import_map,\n+ next_import_map::{get_next_edge_and_server_fallback_...
2025-07-11T13:07:28
facebook/react
a7144f297c1c6fe457ca30ce6a211ab59feac11e
adadb8169e781ff645c61aa558dc901b1c2c97f4
[Flight] Improve error message when it's not a real Error object (#28327) Also deals with symbols. Alternative to #28312. We currently always normalize rejections or thrown values into `Error` objects. Partly because in prod it'll be an error object and you shouldn't fork behavior on knowing the value outside a d...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -83,7 +83,16 @@ describe('ReactFlight', () => {\n ' builds to avoid leaking sensitive details. A digest property is included on this error instance which' +\n ' may provide additional details about ...
2024-02-14T23:21:07
electron/electron
4c89061e0e79ccd8574c058e30d9b694f22ced1b
8fdd7de3d27d159479b653c932feb0950b79738a
docs: fix SerialPort typing (#38544)
[ { "path": "docs/api/structures/serial-port.md", "patch": "@@ -2,9 +2,9 @@\n \n * `portId` string - Unique identifier for the port.\n * `portName` string - Name of the port.\n-* `displayName` string - A string suitable for display to the user for describing this device.\n-* `vendorId` string - Optional USB v...
2023-06-05T06:58:30
nodejs/node
8536b674d8423b2b7e87d6107210d59273629d71
e192a32c27f223e7a3dcb43134fd891dd8ded760
test_runner: added colors to dot reporter PR-URL: https://github.com/nodejs/node/pull/53450 Fixes: https://github.com/nodejs/node/issues/51770 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/test_runner/reporter/dot.js", "patch": "@@ -12,10 +12,10 @@ module.exports = async function* dot(source) {\n const failedTests = [];\n for await (const { type, data } of source) {\n if (type === 'test:pass') {\n- yield '.';\n+ yield `${colors.green}.${colors.clear}`...
2024-06-15T08:11:38
vercel/next.js
7560398745ed989253920d6f08fba56e11496ca0
8389b9f7f5f9a4c568725e2dceedfbdc5949c675
docs: root layout + opengraph-image + cna-eslit vs next lint bootstrap (#81542) Fixes: https://github.com/vercel/next.js/issues/81529, https://github.com/vercel/next.js/issues/81352 and https://github.com/vercel/next.js/issues/78630
[ { "path": "docs/01-app/01-getting-started/01-installation.mdx", "patch": "@@ -293,15 +293,19 @@ You'll see a prompt like this:\n \n > ? How would you like to configure ESLint?\n >\n-> ❯ Strict (recommended) \n-> Base \n+> ❯ Strict (recommended)\n+> Base\n > Cancel\n \n - **Strict**: Includes Next.js' base...
2025-07-11T11:27:55
golang/go
3a4f077710b96ee72fcd4214280a41a7c355205b
58b6891108fa75f5856750e13dff3fa980987f07
syscall: fix dangling pointers in Windows' process attributes Windows' _PROC_THREAD_ATTRIBUTE_LIST can contain pointers to memory owned by Go, but the GC is not aware of this. This can lead to the memory being freed while the _PROC_THREAD_ATTRIBUTE_LIST is still in use. This CL uses the same approach as in x/sys/wind...
[ { "path": "src/syscall/exec_windows.go", "patch": "@@ -332,20 +332,20 @@ func StartProcess(argv0 string, argv []string, attr *ProcAttr) (pid int, handle\n \t\t\tdefer DuplicateHandle(parentProcess, fd[i], 0, nil, 0, false, DUPLICATE_CLOSE_SOURCE)\n \t\t}\n \t}\n-\tsi := new(_STARTUPINFOEXW)\n-\tsi.ProcThrea...
2025-04-08T09:19:57
facebook/react
a927040b7a67b2304ad484c903bb56e55f511b3b
8a3def923bf88d23cc705a55416cd955e3dc169a
Add an optional validation to bail out on capitalized function calls Some components stop being components over time and are used as regular functions instead, but they may have lingering hook calls. Those hook calls make it so the capitalized function calling them do not error (they appear to be a function to exi...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -72,6 +72,7 @@ import {\n validateContextVariableLValues,\n validateHooksUsage,\n validateMemoizedEffectDependencies,\n+ validateNoCapitalizedCalls,\n validateNoRefAccessInRender,\n validateNoSetState...
2024-02-14T18:23:32
electron/electron
d818f35ad4ec44c83f21dd3656ef1072e196c34f
9ffffdb6ef202bd93be496b53fdd4156dd3504ce
build: fix doc-only early exit on Appveyor (#38547)
[ { "path": "appveyor-woa.yml", "patch": "@@ -68,9 +68,11 @@ for:\n node script/yarn.js install --frozen-lockfile\n node script/doc-only-change.js --prNumber=$env:APPVEYOR_PULL_REQUEST_NUMBER\n if ($LASTEXITCODE -eq 0) {\n- Write-warning \"Skipping build for doc only c...
2023-06-01T14:40:35
nodejs/node
e192a32c27f223e7a3dcb43134fd891dd8ded760
b19a9501020ce4bd553d8356e4526bf222bd7544
build: fix conflict gyp configs Gyp generated build files can be built in either Release/Debug mode. - make: single directory, two configurations by cli: `make -C out BUILDTYPE=Release` and `make -C out BUILDTYPE=Debug`. - msbuild: single directory, two configurations by cli: `msbuild node.sln /p:Configuration=Re...
[ { "path": "configure.py", "patch": "@@ -1305,6 +1305,9 @@ def host_arch_win():\n \n return matchup.get(arch, 'x64')\n \n+def set_configuration_variable(configs, name, release=None, debug=None):\n+ configs['Release'][name] = release\n+ configs['Debug'][name] = debug\n \n def configure_arm(o):\n if opti...
2024-07-23T08:56:44
vercel/next.js
a4a754d01cd1dd1f1d1498a2135c382328537dd0
5157472d841b06cf58f5e63b38167256fb01f012
fix(CI): On musl/alpine builds, pin llvm to llvm20, add llvm bin directory to path (#81519) Alpine Edge recently removed `llvm-config` from the PATH: - 3.22: https://pkgs.alpinelinux.org/contents?file=llvm-config&path=&name=&branch=v3.22&repo=&arch=x86_64 - Edge: https://pkgs.alpinelinux.org/contents?file=llvm-config...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -224,16 +224,16 @@ jobs:\n # - zig linker with portable glibc is avoided as it has known issues with static tls + node.js + multi threaded\n # environment.\n docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:sta...
2025-07-11T00:38:49
golang/go
58b6891108fa75f5856750e13dff3fa980987f07
38a2a3c7ce156e01f8980cb97912b7067709aaa3
go/ast: don't MergeLine in SortImports when last import on the same line as RParen Fixes #69183 Change-Id: I8b78dadaa8ba91e74ea2bfc21abd6abe72b7e38b GitHub-Last-Rev: 1a41f9e8e3bef9926993813568902d1a77c991c1 GitHub-Pull-Request: golang/go#69187 Reviewed-on: https://go-review.googlesource.com/c/go/+/610035 Reviewed-by:...
[ { "path": "src/go/ast/import.go", "patch": "@@ -33,11 +33,11 @@ func SortImports(fset *token.FileSet, f *File) {\n \t\tfor j, s := range d.Specs {\n \t\t\tif j > i && lineAt(fset, s.Pos()) > 1+lineAt(fset, d.Specs[j-1].End()) {\n \t\t\t\t// j begins a new run. End this one.\n-\t\t\t\tspecs = append(specs, s...
2025-04-08T06:43:33
electron/electron
9ffffdb6ef202bd93be496b53fdd4156dd3504ce
c14f7b7d0babba14390da10b4066061fc7da3e25
docs: fix performance tutorial (#38469) * docs: fixed "Analyze runtime performance" link * docs: added missing list item
[ { "path": "docs/tutorial/performance.md", "patch": "@@ -54,7 +54,7 @@ at once, consider the [Chrome Tracing](https://www.chromium.org/developers/how-t\n \n ### Recommended Reading\n \n-* [Get Started With Analyzing Runtime Performance][chrome-devtools-tutorial]\n+* [Analyze runtime performance][chrome-devto...
2023-05-31T19:56:06
nodejs/node
b19a9501020ce4bd553d8356e4526bf222bd7544
cad73dadba005ddb5b1d810e0bfbcd7034b94e35
test_runner: cleanup global event listeners after run PR-URL: https://github.com/nodejs/node/pull/53878 Fixes: https://github.com/nodejs/node/issues/53868 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "lib/internal/test_runner/harness.js", "patch": "@@ -170,8 +170,13 @@ function setup(root) {\n kCancelledByParent));\n \n hook.disable();\n- process.removeListener('unhandledRejection', rejectionHandler);\n process.removeListener('uncaughtException', exceptionHandler);\n+ proce...
2024-07-23T06:49:52
golang/go
14b15a2beaed423ba6b6c97fa5983bd57999038e
af278bfb1f07b9f8f84d325a84b3891a3ab0dbf1
internal/runtime/maps: pass proper func PC to race.WritePC/race.ReadPC Fixes #73191 Change-Id: I0f8a5a19faa745943a98476c7caf4c97ccdce184 Reviewed-on: https://go-review.googlesource.com/c/go/+/663175 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <m...
[ { "path": "src/internal/runtime/maps/runtime_fast32_swiss.go", "patch": "@@ -17,7 +17,7 @@ import (\n func runtime_mapaccess1_fast32(typ *abi.SwissMapType, m *Map, key uint32) unsafe.Pointer {\n \tif race.Enabled && m != nil {\n \t\tcallerpc := sys.GetCallerPC()\n-\t\tpc := abi.FuncPCABIInternal(runtime_map...
2025-04-05T17:29:49
vercel/next.js
b0641f12e9fefb7e75049c6ab9477ce2d211e471
535ba0676ab5f46a1e6dcc88306914091515f468
[turbopack] Improve internal error message when source map retrieval fails (#81508) Mostly so that I know which source URL slipped through.
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -1411,7 +1411,7 @@ pub async fn get_source_map_rope(\n },\n )\n }\n- _ => bail!(\"Unknown url scheme\"),\n+ _ => bail!(\"Unknown url scheme '{}'\", url.scheme()),\n },\...
2025-07-10T21:21:30
nodejs/node
cad73dadba005ddb5b1d810e0bfbcd7034b94e35
4b8000c66c09da5f3c7667378c94ce7558f8c1b3
test: skip sea tests in large debug builds In debug builds, the node binary could exceed 2GB and can not be read by postject. PR-URL: https://github.com/nodejs/node/pull/53918 Refs: https://github.com/nodejs/reliability/issues/922 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gma...
[ { "path": "test/common/sea.js", "patch": "@@ -50,6 +50,14 @@ function skipIfSingleExecutableIsNotSupported() {\n common.skip('UndefinedBehavior Sanitizer is not supported');\n }\n \n+ try {\n+ readFileSync(process.execPath);\n+ } catch (e) {\n+ if (e.code === 'ERR_FS_FILE_TOO_LARGE') {\n+ ...
2024-07-22T21:39:48
vercel/next.js
bdcb114ddbb7207108d21f142727465d134a2f9e
17a1fd8f4caa56e31ed4541068f19ea4963f3036
Turbopack: fix export-all-as with name collision (#81510) `EcmascriptModulePartReference` is a pretty counterintuitive reference. The `part` declares which module should be synthesised on the other side. That doesn't have anything to do with which exports are actually being imported by reference. This only triggere...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/side_effect_optimization/reference.rs", "patch": "@@ -173,25 +173,17 @@ impl EcmascriptModulePartReference {\n ));\n }\n \n- if merged_index.is_some() && matches!(*this.export_usage.await?, ExportUsage::Evaluation) {\n+ l...
2025-07-10T19:31:06
golang/go
af278bfb1f07b9f8f84d325a84b3891a3ab0dbf1
92309ff771be5daa113acb85ad22e8783188ca67
cmd/compile: add additional flag constant folding rules Fixes #73200 Change-Id: I77518d37acd838acf79ed113194bac5e2c30897f Reviewed-on: https://go-review.googlesource.com/c/go/+/663535 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules", "patch": "@@ -1385,16 +1385,18 @@\n (CSNEG [cc] x y (InvertFlags cmp)) => (CSNEG [arm64Invert(cc)] x y cmp)\n \n // absorb flag constants into boolean values\n-(Equal (FlagConstant [fc])) => (MOVDconst [b2i(fc.eq())])\n-(NotEqual (FlagC...
2025-04-07T17:33:31
rust-lang/rust
6eb2a8fa9ef2b35d34b021550942cc327fa93b3a
41e0e0690f74685f094d88ae2a0f05379e38873f
Reformat existing error messages
[ { "path": "compiler/rustc_const_eval/src/const_eval/eval_queries.rs", "patch": "@@ -471,9 +471,9 @@ fn report_eval_error<'tcx>(\n span,\n inline_fluent!(\n \"evaluation of `{$instance}` failed {$num_frames ->\n- [0] here\n- *[other] inside this call\...
2026-02-09T18:12:22
nodejs/node
4b8000c66c09da5f3c7667378c94ce7558f8c1b3
17fb18d3c2e3936119774a6079b10cce5c61dd5d
doc: fix documentation for `--run` PR-URL: https://github.com/nodejs/node/pull/53976 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -2017,7 +2017,7 @@ changes:\n > Stability: 1.2 - Release candidate\n \n This runs a specified command from a package.json's `\"scripts\"` object.\n-If no `\"command\"` is provided, it will list the available scripts.\n+If a missing `\"command\"` is provided, it will ...
2024-07-22T19:13:00
vercel/next.js
17a1fd8f4caa56e31ed4541068f19ea4963f3036
f219487dcdde38b9263e797d452c65f48ee65d39
Turbopack: improve debugging features (#81415) ### What? * add no_fast_stale feature * nicer hanging messages * print details on strongly consistent hanging (prints which tasks are not completing and the chain to them)
[ { "path": "turbopack/crates/turbo-tasks-backend/Cargo.toml", "patch": "@@ -15,6 +15,7 @@ workspace = true\n [features]\n default = []\n print_cache_item_size = []\n+no_fast_stale = []\n verify_serialization = []\n verify_aggregation_graph = []\n verify_immutable = []", "additions": 1, "deletions": 0...
2025-07-10T18:53:23
golang/go
92309ff771be5daa113acb85ad22e8783188ca67
8054d2da5bdbaf154b258d8d2fd24025a809b0de
doc/next: fix link It was rendering incorrectly at https://tip.golang.org/doc/go1.25 Change-Id: I2f66c95414ac5d71b9b02b91bcdc0d0a87b3f605 Reviewed-on: https://go-review.googlesource.com/c/go/+/662436 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Brad Fitzpatric...
[ { "path": "doc/next/6-stdlib/99-minor/net/56025.md", "patch": "@@ -1,4 +1,4 @@\n-[LookupMX] and [(*Resolver).LookupMX] now return DNS names that look\n+[LookupMX] and [*Resolver.LookupMX] now return DNS names that look\n like valid IP address, as well as valid domain names.\n Previously if a name server ret...
2025-04-02T23:12:37
facebook/react
f0e808e5bcbfdaa24a8a0893cd718f4d189f2369
dc3178151b8cb0359e5c36b8ed57458b807ae8e3
[Debug Tools] Always use includeHooksSource option (#28309) This option was added defensively but it's not needed. There's no cost to including it always. I suspect this optional was added mainly to avoid needing to update tests. That's not a reason to have an unnecessary public API though. We have a praxis fo...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -569,7 +569,7 @@ export type HooksNode = {\n value: mixed,\n subHooks: Array<HooksNode>,\n debugInfo: null | ReactDebugInfo,\n- hookSource?: HookSource,\n+ hookSource: null | HookSource,\n };\n export type HooksTree = Array<...
2024-02-14T16:07:35
electron/electron
c14f7b7d0babba14390da10b4066061fc7da3e25
74b8133a9341eefeddbc3245ad8bd6bed71f547a
refactor: remove unused switches (#38497) * refactor: remove unused declaration of electron::kSHA1Certificate usage removed in 13a1d79 * refactor: remove unused declaration of electron::kSHA1MajorDescription usage removed in 13a1d79 * refactor: remove unused declaration of electron::kSHA1MinorDescription ...
[ { "path": "shell/common/electron_constants.cc", "patch": "@@ -9,22 +9,6 @@ namespace electron {\n const char kBrowserForward[] = \"browser-forward\";\n const char kBrowserBackward[] = \"browser-backward\";\n \n-const char kSHA1Certificate[] = \"SHA-1 Certificate\";\n-const char kSHA1MajorDescription[] =\n- ...
2023-05-31T19:55:21
nodejs/node
17fb18d3c2e3936119774a6079b10cce5c61dd5d
1c5fe040a0a73b483cc3e3fef76efe2d1712205b
src: fix slice of slice of file-backed Blob The value for `new_end` was wrong: While the members `start_` and `end_` refer to the entire length of the file, the parameters `start` and `end` are relative to the current slice. The new end would apparently have the current start_ subtracted from it, and the length would...
[ { "path": "src/dataqueue/queue.cc", "patch": "@@ -840,7 +840,9 @@ class FdEntry final : public EntryImpl {\n path_(std::move(path_)),\n stat_(stat),\n start_(start),\n- end_(end) {}\n+ end_(end) {\n+ CHECK_LE(start, end);\n+ }\n \n std::shared_ptr<DataQueue::Reade...
2024-07-22T18:25:30
vercel/next.js
f219487dcdde38b9263e797d452c65f48ee65d39
7c6ac5fd191fc602de348846fbe12798c860bcea
feat(test): introduce cache components testing infrastructure (#81394) ### What? Introduces a testing infrastructure to validate Next.js behavior with the experimental Cache Components feature (`dynamicIO`) enabled. This PR adds dedicated CI jobs and configuration to run a subset of existing tests with Cache Componen...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -871,6 +871,75 @@ jobs:\n stepName: 'test-ppr-prod-${{ matrix.group }}'\n secrets: inherit\n \n+ # TODO: remove these jobs once Cache Components is the default\n+ # Manifest generated via: https://gist.github.com/wyattjoh/2ceaebd82a5...
2025-07-10T17:48:57
electron/electron
57147d1b8d1352e8f49d6086b9957869d0d1e75a
67f273a6d69eb43fda8a520d5c9bba375a6bcdab
fix: `navigator.connection` not working as intended (#38491) * fix: navigator.connection not working as intended * chore: make network quality methods private
[ { "path": "shell/browser/browser_process_impl.cc", "patch": "@@ -25,6 +25,8 @@\n #include \"components/proxy_config/proxy_config_dictionary.h\"\n #include \"components/proxy_config/proxy_config_pref_names.h\"\n #include \"content/public/browser/child_process_security_policy.h\"\n+#include \"content/public/b...
2023-05-31T15:06:25
facebook/react
32df74dba67207300511cf9b7c5ef82dd708c0c1
8d48183291870898ec42ac1f84482d9d26789424
Fix jest inline snapshots (#28308) Prettier 3 is not supported for jest inline snapshots: https://jestjs.io/docs/configuration#prettierpath-string
[ { "path": "package.json", "patch": "@@ -81,6 +81,7 @@\n \"mkdirp\": \"^0.5.1\",\n \"ncp\": \"^2.0.0\",\n \"prettier\": \"3.0.3\",\n+ \"prettier-2\": \"npm:prettier@^2\",\n \"pretty-format\": \"^29.4.1\",\n \"prop-types\": \"^15.6.2\",\n \"random-seed\": \"^0.3.0\",", "addition...
2024-02-13T03:03:50
nodejs/node
96a614d63abeb8aa3b85f4ef82abeb7ae3d0819d
ad0a2db9756dfdbde6050379114445113542de8e
meta: make more bug-report information required PR-URL: https://github.com/nodejs/node/pull/53718 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": ".github/ISSUE_TEMPLATE/1-bug-report.yml", "patch": "@@ -33,13 +33,19 @@ body:\n be run using `node` directly without installing third-party dependencies\n or downloading code from the internet (i.e. no ZIP archive, no GitHub\n repository, etc.).\n+ validations:\n+ ...
2024-07-22T13:21:27
golang/go
8054d2da5bdbaf154b258d8d2fd24025a809b0de
b2819d13dbe19343426e688da4ddfeb57c8589fc
strconv: use switch for '+'/'-' prefix handling Follow the approach used in strconv's readFloat, decimal.set, and Atoi, where leading '+' and '-' are handled using a switch for clarity and consistency. Change-Id: I41eff34ce90b5ac43fcdbc0bb88910d6d5fb4d39 GitHub-Last-Rev: 0c9d2efb5a828515fa00afdba8c436aa31fb0e53 GitHu...
[ { "path": "src/strconv/atof.go", "patch": "@@ -77,12 +77,12 @@ func (b *decimal) set(s string) (ok bool) {\n \tif i >= len(s) {\n \t\treturn\n \t}\n-\tswitch {\n-\tcase s[i] == '+':\n+\tswitch s[i] {\n+\tcase '+':\n \t\ti++\n-\tcase s[i] == '-':\n-\t\tb.neg = true\n+\tcase '-':\n \t\ti++\n+\t\tb.neg = true\...
2025-04-06T13:08:57
vercel/next.js
094253c14c136164212eca856b52b1b218b91a94
fceb19f9b470980ac7384fde07b8f3cdd0201a73
docs: add missing switcher (#81489) Fixing a couple of code snippets annoyances
[ { "path": "docs/01-app/01-getting-started/06-partial-prerendering.mdx", "patch": "@@ -134,15 +134,15 @@ const nextConfig = {\n \n The `'incremental'` value allows you to adopt PPR for specific routes:\n \n-```tsx filename=\"/app/dashboard/layout.tsx\"\n+```tsx filename=\"/app/dashboard/layout.tsx\" switcher...
2025-07-10T09:18:22
electron/electron
40e724e5ddd92879a73fd3eb53af2b128947e9d6
13f9e2db40df5537c13ee72a92fad13a0c09b730
fix: DCHECK minimizing parent window with non-modal child (#38460)
[ { "path": "shell/browser/native_window.h", "patch": "@@ -149,6 +149,9 @@ class NativeWindow : public base::SupportsUserData,\n virtual std::string GetAlwaysOnTopLevel() = 0;\n virtual void SetActive(bool is_key) = 0;\n virtual bool IsActive() const = 0;\n+ virtual void RemoveChildWindow(NativeWindow*...
2023-05-31T09:57:44
nodejs/node
ad0a2db9756dfdbde6050379114445113542de8e
c83af17ff927605d40b34606426c88e6acd371aa
src,test: disallow unsafe integer coercion in SQLite Currently, by default (i.e., when use_big_ints_ has not explicitly been set to true), reading a SQLite integer value that is not a safe integer in JavaScript is likely to yield an incorrect number. Instead, err on the side of caution and throw if the stored integer...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -370,12 +370,21 @@ bool StatementSync::BindValue(const Local<Value>& value, const int index) {\n \n Local<Value> StatementSync::ColumnToValue(const int column) {\n switch (sqlite3_column_type(statement_, column)) {\n- case SQLITE_INTEGER:\n+ case SQLITE_I...
2024-07-22T12:22:17
facebook/react
7a32d718b9ea0eb9ea86e9d21d56a5af6c4ce9ed
3f93ca1c8dec1fd85df4dbb748a2df9438fc699f
[Debug Tools] Introspect Promises in use() (#28297) Alternative to #28295. Instead of stashing all of the Usables eagerly, we can extract them by replaying the render when we need them like we do with any other hook. We already had an implementation of `use()` but it wasn't quite complete. These can also incl...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -13,6 +13,8 @@ import type {\n ReactProviderType,\n StartTransitionOptions,\n Usable,\n+ Thenable,\n+ ReactDebugInfo,\n } from 'shared/ReactTypes';\n import type {\n Fiber,\n@@ -41,6 +43,7 @@ type HookLogEntry = {\n prim...
2024-02-12T22:54:28
golang/go
d584d2b3dda9ab88a51a3e9cffe8ecd140479cef
a08d2db6d1b8a46d2fc909b848da20ef1b8f5e8f
cmd/go: fix version stamping for v2 modules and subdirectories We were not passing the module path to newCodeRepo which caused it to incorrectly parse the major version. This allowed v0 and v1 modules to work because an empty major version is allowed in that case. Additionally we need to pass the root module path to ...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -2577,7 +2577,16 @@ func (p *Package) setBuildInfo(ctx context.Context, autoVCS bool) {\n \t\t}\n \t\tappendSetting(\"vcs.modified\", strconv.FormatBool(st.Uncommitted))\n \t\t// Determine the correct version of this module at the current revision an...
2025-03-31T19:06:43
vercel/next.js
c278c8792f78daf2fe6c18d985f1e82ffdce93a8
04f77423296506747f94eab8b62c8e93c667c6f5
Turbopack: make invalidation from chunking context more granular (#81457) ### What? More granular invalidation to improve incremental builds with Skew Protections (modifies chunking context as it includes `chunk_suffix_path`).
[ { "path": "turbopack/crates/turbopack-browser/src/chunking_context.rs", "patch": "@@ -282,36 +282,6 @@ impl BrowserChunkingContext {\n }\n }\n \n-impl BrowserChunkingContext {\n- /// Returns the kind of runtime to include in output chunks.\n- ///\n- /// This is defined directly on `BrowserChunk...
2025-07-10T06:47:41
electron/electron
56138d879e57d5d5fce55ecbe3f8d3a8ed08e7f8
ddcec84ace5f9f3d4bf705c5bd963abc415160d3
fix: Windows FrameView always appearing inactive (#38468)
[ { "path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "patch": "@@ -37,14 +37,6 @@ bool ElectronDesktopWindowTreeHostWin::PreHandleMSG(UINT message,\n return native_window_view_->PreHandleMSG(message, w_param, l_param, result);\n }\n \n-bool ElectronDesktopWindowTreeHostWin::ShouldPai...
2023-05-28T22:39:13
facebook/react
3f93ca1c8dec1fd85df4dbb748a2df9438fc699f
9e7944f67c72b9a69a8db092ba6bd99fe9c731e2
[Fiber] Transfer `_debugInfo` from Arrays, Lazy, Thenables and Elements to the inner Fibers. (#28286) That way we can use it for debug information like component stacks and DevTools. I used an extra stack argument in Child Fiber to track this as it's flowing down since it's not just elements where we have this info ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -7,7 +7,12 @@\n * @flow\n */\n \n-import type {Thenable} from 'shared/ReactTypes';\n+import type {\n+ Thenable,\n+ ReactDebugInfo,\n+ ReactComponentInfo,\n+ ReactAsyncInfo,\n+} from 'shared/ReactTypes';\n import type {LazyCompone...
2024-02-12T19:56:59
nodejs/node
c83af17ff927605d40b34606426c88e6acd371aa
1c1c9bf33ae52b4b07e5db1b88ae540932803f80
test: skip --title check on IBM i Similar to SmartOS IBM i does not return the process.title PR-URL: https://github.com/nodejs/node/pull/53952 Fixes: https://github.com/nodejs/node/issues/53852 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasne...
[ { "path": "test/fixtures/spawn-worker-with-copied-env.js", "patch": "@@ -2,7 +2,7 @@\n \n // This test is meant to be spawned with NODE_OPTIONS=--title=foo\n const assert = require('assert');\n-if (process.platform !== 'sunos') { // --title is unsupported on SmartOS.\n+if (process.platform !== 'sunos' && p...
2024-07-22T11:39:04
golang/go
adb29670fcf704e1b76db4d31331aaecd0db7118
20a924fe877b70af75d26d0e7fa86b3310851f76
runtime: protect plan9 time_now function with !faketime build tag The introduction of monotonic time support for Plan 9 in CL 656755 causes a build error with multiple declaration of time_now when built with tag faketime. Correct this by moving function time_now into its own source file with !faketime build tag. Fixe...
[ { "path": "src/runtime/os_plan9.go", "patch": "@@ -222,6 +222,7 @@ func unminit() {\n // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.\n //\n // This always runs without a P, so //go:nowritebarrierrec is required.\n+//\n //go:nowritebarrierrec\n func mdestroy(mp *m) {\n...
2025-04-04T19:48:18
vercel/next.js
04f77423296506747f94eab8b62c8e93c667c6f5
45c48f2944a049770659f47e4abdaef04d36b797
docs: PPR requires canary (#81294) Fixes: https://github.com/vercel/next.js/issues/81292
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/ppr.mdx", "patch": "@@ -1,7 +1,7 @@\n ---\n title: ppr\n description: Learn how to enable Partial Prerendering in Next.js.\n-version: experimental\n+version: canary\n related:\n title: Learn more about Partial Prerendering\n links:", ...
2025-07-10T06:26:37
nodejs/node
47b877993f73ac28467e004ce7533eb6a707ec58
1fb23f189797822f354c951c8e5afdff4b9b0b71
child_process: fix incomplete prototype pollution hardening Prior pull request (#48726) hardened against prototype pollution vulnerabilities but effectively missed some use-cases which opened a window for prototype pollution for some child_process functions such as spawn(), spawnSync(), and execFileSync(). PR-URL: ht...
[ { "path": "lib/child_process.js", "patch": "@@ -568,6 +568,7 @@ function normalizeSpawnArguments(file, args, options) {\n else\n validateObject(options, 'options');\n \n+ options = { __proto__: null, ...options };\n let cwd = options.cwd;\n \n // Validate the cwd, if present.", "additions": 1...
2024-07-21T21:27:04
facebook/react
9e7944f67c72b9a69a8db092ba6bd99fe9c731e2
629541bcc09fc7c0cc5c257541d084ee27457512
Suspend Thenable/Lazy if it's used in React.Children and unwrap (#28284) This pains me because `React.Children` is really already pseudo-deprecated. `React.Children` takes any children that `React.Node` takes. We now support Lazy and Thenable in this position elsewhere, but it errors in `React.Children`. This...
[ { "path": "packages/react-reconciler/src/ReactFiberThenable.js", "patch": "@@ -212,19 +212,19 @@ export function trackUsedThenable<T>(\n }\n },\n );\n+ }\n \n- // Check one more time in case the thenable resolved synchronously.\n- switch (thenable.status) {\n...
2024-02-12T18:39:30
electron/electron
ddcec84ace5f9f3d4bf705c5bd963abc415160d3
185180a8e24c70ace61b8e690f55ee2aea4ddc56
chore: bump chromium to 116.0.5791.0 (main) (#38448) * chore: bump chromium in DEPS to 116.0.5791.0 * 4504298: Relax checks in BlobDataBuilder::AppendBlob. https://chromium-review.googlesource.com/c/chromium/src/+/4504298 * chore: fixup patch indices --------- Co-authored-by: electron-roller[bot] <84116...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '115.0.5790.0',\n+ '116.0.5791.0',\n 'node_version':\n 'v18.16.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-05-25T14:10:08
golang/go
20a924fe877b70af75d26d0e7fa86b3310851f76
3046b499918929944cbce1c0ed14c14d0b431adf
log/slog: make examples playable Fixes #69246 Change-Id: I8e59132980404ee58ba2ca8718dd9f68404fdf8d GitHub-Last-Rev: f59d3fad2002cda69a24789f2fdd4e9753cede9c GitHub-Pull-Request: golang/go#69249 Reviewed-on: https://go-review.googlesource.com/c/go/+/610535 Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Sean Liao ...
[ { "path": "src/log/slog/example_discard_test.go", "patch": "@@ -6,15 +6,20 @@ package slog_test\n \n import (\n \t\"log/slog\"\n-\t\"log/slog/internal/slogtest\"\n \t\"os\"\n )\n \n func Example_discardHandler() {\n+\tremoveTime := func(groups []string, a slog.Attr) slog.Attr {\n+\t\tif a.Key == slog.TimeKe...
2025-04-06T16:29:46
vercel/next.js
45c48f2944a049770659f47e4abdaef04d36b797
c6e23a6bb3947486e0df44fb661cb9ea2dc243cd
Turbopack: improve fuzz testing to handle more cases (#81204) ### What? * Improve fuzz testing to test tasks becoming active and inactive. * Improve the verify_aggregation_graph feature to panic to allow running it during fuzz testing
[ { "path": "turbopack/crates/turbo-tasks-backend/fuzz/src/graph.rs", "patch": "@@ -1,12 +1,24 @@\n+use std::sync::Arc;\n+\n use anyhow::Result;\n use arbitrary::Arbitrary;\n use once_cell::sync::Lazy;\n use serde::{Deserialize, Serialize};\n-use turbo_tasks::{self, NonLocalValue, TurboTasks, Vc, trace::Trace...
2025-07-10T06:15:40
facebook/react
629541bcc09fc7c0cc5c257541d084ee27457512
947e7962ad43bd0fe8826c48d94a9df8d5206850
[Flight] Transfer Debug Info in Server-to-Server Flight Requests (#28275) A Flight Server can be a consumer of a stream from another Server. In this case the meta data is attached to debugInfo properties on lazy, Promises, Arrays or Elements that might in turn get forwarded to the next stream. In this case we want ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -77,7 +77,7 @@ const INITIALIZED = 'fulfilled';\n const ERRORED = 'rejected';\n \n // Dev-only\n-type ReactDebugInfo = Array<{+name?: string}>;\n+type ReactDebugInfo = Array<{+name?: string, +env?: string}>;\n \n type PendingChunk<T> =...
2024-02-12T18:38:14
rust-lang/rust
ce2bda4edaf9a14f19a2913410355f6a5e939a86
893e9721cdc202a4c06198d80863d3cbe972e9bc
Allow provisional mgca syntax of type const <IDENT> = <EXPR> to be reconized. Revert, but without type const. Update symbol for feature err, then update suggestion output, and lastly update tests that change because of those. Update these new tests with the correct syntax, and few existing tests with the new outputs...
[ { "path": "src/items.rs", "patch": "@@ -2028,12 +2028,16 @@ impl<'a> StaticParts<'a> {\n ),\n ast::ItemKind::Const(c) => (\n Some(c.defaultness),\n- \"const\",\n+ if c.rhs_kind.is_type_const() {\n+ ...
2026-02-06T06:01:57
nodejs/node
52ba14405bed0759f992b4c34f8cef4659e39cb3
acd1d22ff8fdbefddfa4f13cd80e00a8f0857674
tools: fix `SLACK_TITLE` in invalid commit workflow PR-URL: https://github.com/nodejs/node/pull/53912 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": ".github/workflows/notify-on-push.yml", "patch": "@@ -60,7 +60,7 @@ jobs:\n env:\n SLACK_COLOR: '#DE512A'\n SLACK_ICON: https://github.com/nodejs.png?size=48\n- SLACK_TITLE: Invalid commit was pushed to ${{ github.repository.default_branch }}\n+ SLACK_...
2024-07-21T19:43:40
electron/electron
82af000a371eb74cddc16ed4ef025b7481c54c50
1c075e5ea0416d6f0a030d42350c7be91e389a5c
chore: cleanup eslint suppressions (#38417) * chore: cleanup eslint suppressions * address feedback * revert script/lib/azput.js * revert spec/fixtures/apps/remote-control/main.js * address feedback * revert typings/internal-ambient.d.ts
[ { "path": "lib/asar/fs-wrapper.ts", "patch": "@@ -574,7 +574,6 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n };\n \n const { readFile: readFilePromise } = fs.promises;\n- // eslint-disable-next-line @typescript-eslint/no-unused-vars\n fs.promises.readFile = function (pathArgument:...
2023-05-25T01:09:17
golang/go
3046b499918929944cbce1c0ed14c14d0b431adf
a6e74454577c68ea96ce6512e3e92beffbe15c5c
crypto/tls: add offered cipher suites to the handshake error This change makes debugging easier if the server handshake fails because the client only offers unsupported algorithms. Change-Id: I7daac173a16af2e073aec3d9b59709560f540c6f Reviewed-on: https://go-review.googlesource.com/c/go/+/631555 Reviewed-by: Dmitri Sh...
[ { "path": "src/crypto/tls/handshake_server.go", "patch": "@@ -378,7 +378,8 @@ func (hs *serverHandshakeState) pickCipherSuite() error {\n \ths.suite = selectCipherSuite(preferenceList, hs.clientHello.cipherSuites, hs.cipherSuiteOk)\n \tif hs.suite == nil {\n \t\tc.sendAlert(alertHandshakeFailure)\n-\t\tretu...
2024-11-24T14:28:34
rust-lang/rust
9bf9a12381bfab41c5d7c7a1d3f5c1457064575d
f090e9ce83e0873591e5faca204cfb68da93ff67
Allow provisional mgca syntax of type const <IDENT> = <EXPR> to be reconized. Revert, but without type const. Update symbol for feature err, then update suggestion output, and lastly update tests that change because of those. Update these new tests with the correct syntax, and few existing tests with the new outputs...
[ { "path": "clippy_lints/src/non_copy_const.rs", "patch": "@@ -739,7 +739,7 @@ impl<'tcx> LateLintPass<'tcx> for NonCopyConst<'tcx> {\n }\n \n fn check_trait_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx TraitItem<'_>) {\n- if let TraitItemKind::Const(_, ct_rhs_opt) = item.kind\n+ ...
2026-02-06T06:01:57
vercel/next.js
2f43b359dfc0f3afb6fbab03867d3f8a2fa4ea66
1781abd7d4a7e48e1fbd1b121d79ae26f8935645
fix(turbopack-tests): Ignore or clean up empty snapshot test directories, fix non-nextest execution testing (#81479) This PR fixes two bugs I ran into while trying to add a test case. ## Empty Snapshot Tests With No Input Git tracks files, not directories, so it doesn't track or delete empty directories. This can le...
[ { "path": "turbopack/crates/turbopack-tests/tests/execution.rs", "patch": "@@ -5,7 +5,7 @@\n \n mod util;\n \n-use std::path::PathBuf;\n+use std::{env, path::PathBuf, sync::Once};\n \n use anyhow::{Context, Result};\n use dunce::canonicalize;\n@@ -170,7 +170,8 @@ fn get_messages(js_results: JsResult) -> Vec...
2025-07-10T05:05:52
facebook/react
947e7962ad43bd0fe8826c48d94a9df8d5206850
269edb88b28b7394335fb504d9924acd35d4ef38
fix[devtools/useModalDismissSignal]: use getRootNode for shadow root case support (#28145) In our custom implementation for handling modals dismiss signal, we use element's `ownerDocument` field, which expectedly doesn't work well with shadow root. Now using [`getRootNode`](https://developer.mozilla.org/en-US/docs/...
[ { "path": "packages/react-devtools-shared/src/devtools/views/hooks.js", "patch": "@@ -219,15 +219,18 @@ export function useModalDismissSignal(\n return () => {};\n }\n \n- const handleDocumentKeyDown = (event: any) => {\n+ const handleRootNodeKeyDown = (event: KeyboardEvent) => {\n if ...
2024-02-12T16:56:28
nodejs/node
acd1d22ff8fdbefddfa4f13cd80e00a8f0857674
036ff03691874eea8141200953b062a6843102d6
doc: add info about prefix-only modules to `module.builtinModules` PR-URL: https://github.com/nodejs/node/pull/53954 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -28,6 +28,8 @@ added:\n A list of the names of all modules provided by Node.js. Can be used to verify\n if a module is maintained by a third party or not.\n \n+Note: the list doesn't contain [prefix-only modules][] like `node:test`.\n+\n `module` in this context i...
2024-07-21T17:51:20
electron/electron
c4c17d75346c7187ae2b286c3ad7cd2d6d15e6ce
a043a60b89deda3b6342f08f9ad6b3de9d01a950
build: fix build with "enable_pdf_viewer=false" (#38421) * build: fix build with "enable_pdf_viewer=false" * fixup! build: fix build with "enable_pdf_viewer=false"
[ { "path": "BUILD.gn", "patch": "@@ -773,6 +773,8 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/browser/electron_pdf_web_contents_helper_client.cc\",\n \"shell/browser/electron_pdf_web_contents_helper_client.h\",\n+ \"shell/browser/extensions/api/pdf_viewer_private/pdf_viewe...
2023-05-24T18:37:07
golang/go
a6e74454577c68ea96ce6512e3e92beffbe15c5c
e8adc393327c92525902d38a34af7f2a24e78e25
cmd/go/internal/load: join incompatible and dirty build specifiers with . Change "+incompatible+dirty" version to be "+incompatible.dirty" such that it is SemVer spec compatible. Fixes #71971 Change-Id: I714ffb3f1ad88c793656c3652367db34739a2144 Reviewed-on: https://go-review.googlesource.com/c/go/+/652955 LUCI-TryBo...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -2585,7 +2585,12 @@ func (p *Package) setBuildInfo(ctx context.Context, autoVCS bool) {\n \t\tvers := revInfo.Version\n \t\tif vers != \"\" {\n \t\t\tif st.Uncommitted {\n-\t\t\t\tvers += \"+dirty\"\n+\t\t\t\t// SemVer build metadata is dot-separated...
2022-07-19T15:07:00
vercel/next.js
1781abd7d4a7e48e1fbd1b121d79ae26f8935645
b49ed9087df94b7b8f3b4bd6fd80731feb3db9bd
fix(packages/next-bundle-analyzer): file extension of webpack bundle analyzer report (#81372) ### Issue When `analyzerMode` is selected as `json`, the bundle analyzer still emits a `.html` file. ### Fix Added a check for `analyzerMode` === `json` to determine file extension. --------- Co-authored-by: graphite-app...
[ { "path": "packages/next-bundle-analyzer/index.js", "patch": "@@ -5,6 +5,8 @@ module.exports =\n return nextConfig\n }\n \n+ const extension = analyzerMode === 'json' ? '.json' : '.html'\n+\n return Object.assign({}, nextConfig, {\n webpack(config, options) {\n const { BundleA...
2025-07-10T04:37:39
nodejs/node
036ff03691874eea8141200953b062a6843102d6
d0a6b605fba6cd69a82e6f12ff0363eef8fe1ee9
test: reduce flakiness of `test-assert-esm-cjs-message-verify` PR-URL: https://github.com/nodejs/node/pull/53967 Fixes: https://github.com/nodejs/node/issues/53962 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Marco Ippolito <marcoippolito54...
[ { "path": "test/parallel/test-assert-esm-cjs-message-verify.js", "patch": "@@ -1,51 +1,31 @@\n 'use strict';\n \n const { spawnPromisified } = require('../common');\n-const tmpdir = require('../common/tmpdir');\n-const assert = require('assert');\n-const { writeFileSync, unlink } = require('fs');\n-const { ...
2024-07-21T17:34:38
facebook/react
269edb88b28b7394335fb504d9924acd35d4ef38
35b2c28178bf4f79898d11dce0bc2a7ce675f670
Add jsx-runtime.react-server.js to file allowlist (#28301) https://github.com/facebook/react/pull/28217 doesn't work without this since it's not included in the files list. See https://github.com/dai-shi/waku/pull/467#issuecomment-1936965080. This should fix that.
[ { "path": "packages/react/package.json", "patch": "@@ -15,6 +15,7 @@\n \"cjs/\",\n \"umd/\",\n \"jsx-runtime.js\",\n+ \"jsx-runtime.react-server.js\",\n \"jsx-dev-runtime.js\",\n \"react.react-server.js\"\n ],", "additions": 1, "deletions": 0, "language": "JSON" } ]
2024-02-11T03:19:30
rust-lang/rust
73a991fb9d7f68f497f047d4e948bde463f2f6eb
4cd4c18438fa57e005ee2bf9b80634f3a12d2998
Allow provisional mgca syntax of type const <IDENT> = <EXPR> to be reconized. Revert, but without type const. Update symbol for feature err, then update suggestion output, and lastly update tests that change because of those. Update these new tests with the correct syntax, and few existing tests with the new outputs...
[ { "path": "compiler/rustc_ast/src/ast.rs", "patch": "@@ -3869,27 +3869,44 @@ pub struct ConstItem {\n pub ident: Ident,\n pub generics: Generics,\n pub ty: Box<Ty>,\n- pub rhs: Option<ConstItemRhs>,\n+ pub rhs_kind: ConstItemRhsKind,\n pub define_opaque: Option<ThinVec<(NodeId, Path)>>...
2026-02-06T06:01:57
electron/electron
16cd486356ec2883b36095da3e147788b71fddd5
f07b040cb998a6126979cec9d562acbac5a23c4c
fix: `MediaDevices` missing `DisplayMediaInformation` (#38390) fix: MediaDevices missing DisplayMediaInformation
[ { "path": "shell/browser/electron_browser_context.cc", "patch": "@@ -56,6 +56,7 @@\n #include \"shell/common/gin_helper/error_thrower.h\"\n #include \"shell/common/options_switches.h\"\n #include \"shell/common/thread_restrictions.h\"\n+#include \"third_party/blink/public/mojom/media/capture_handle_config.m...
2023-05-24T15:17:08
golang/go
e8adc393327c92525902d38a34af7f2a24e78e25
16dbd2be3969f4658ced59ddb89871d9f00cf3a5
cmd/go: fix GOAUTH parsing for trailing slash We were treating a url with a trailing slash differently than one without. This CL treats them the same. Additionally this fixes a bug in the way we iteratively try different prefixes. We were only trying the host url but this change now tries all different prefixes. Fix...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2618,7 +2618,7 @@\n //\t\tBlankLine = '\\n' .\n //\n //\tExample:\n-//\t\thttps://example.com/\n+//\t\thttps://example.com\n //\t\thttps://example.net/api/\n //\n //\t\tAuthorization: Basic <token>", "additions": 1, "deletions": 1, "language":...
2025-04-02T20:30:37
vercel/next.js
639c731600746c9be4543c9662b540e7d5ef0fb0
4e51eb2140119bf29d953f30aadec578abf72076
Update image.mdx (#81454) fix: Input image name and output image name is different and causes confusion. --------- Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/03-api-reference/02-components/image.mdx", "patch": "@@ -412,10 +412,10 @@ When providing the `src` prop to the `<Image>` component, both the `srcset` and\n ```html filename=\"output.html\"\n <img\n srcset=\"\n- /_next/image?url=%2Fme.jpg&w=640&q=75 1x,\n- /_next/image?url=%2F...
2025-07-09T18:41:14
rust-lang/rust
6494dabc33a27dafd61b98dca55915b5cb7f60de
7d521a2cd9e2bbcbfc97edddbd07318359a00e80
fix: Sync `allow_normalize` to rustc
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/next_solver/predicate.rs", "patch": "@@ -714,9 +714,9 @@ impl<'db> rustc_type_ir::inherent::Predicate<DbInterner<'db>> for Predicate<'db>\n fn allow_normalization(self) -> bool {\n // TODO: this should probably live in rustc_type_ir\n ...
2026-02-09T15:57:41
nodejs/node
bc677d19377f3dc8e6c4203d4dd84cbbaaea6093
befbe69a0d3617c5e3a71abce5c396a8de453eaa
doc,tools: enforce use of `node:` prefix PR-URL: https://github.com/nodejs/node/pull/53950 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Mohammed Keyvanzad...
[ { "path": "doc/api/async_hooks.md", "patch": "@@ -704,7 +704,7 @@ import {\n executionAsyncId,\n executionAsyncResource,\n createHook,\n-} from 'async_hooks';\n+} from 'node:async_hooks';\n const sym = Symbol('state'); // Private symbol to avoid pollution\n \n createHook({", "additions": 1, "d...
2024-07-21T15:44:27
facebook/react
8a3def923bf88d23cc705a55416cd955e3dc169a
11a5254b9c1f18107a6e8ed77fa695a96aa2f5c0
Fixed sprout test failure
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/no-flow-bailout-unrelated.expect.md", "patch": "@@ -39,4 +39,4 @@ export const FIXTURE_ENTRYPOINT = {\n ```\n \n ### Eval output\n-(kind: ok) null\n+(kind: ok) null\n\\ No newline at end of file", "additions": 1...
2024-02-10T00:48:13
electron/electron
b6c80ba6461ace7dd458d11cd61d5f63776a034a
30e992dec4ca1c7b33c2bda1b4353072a9621aa7
fix: `dangling_raw_ptr` warning in `electron_api_web_contents` (#38403) fix: dangling_raw_ptr warning in electron_api_web_contents
[ { "path": "shell/browser/api/electron_api_web_contents.h", "patch": "@@ -773,9 +773,6 @@ class WebContents : public ExclusiveAccessContext,\n // Whether the guest view has been attached.\n bool attached_ = false;\n \n- // The zoom controller for this webContents.\n- raw_ptr<WebContentsZoomController> ...
2023-05-24T01:52:07
golang/go
16dbd2be3969f4658ced59ddb89871d9f00cf3a5
6fd9ee3da9dc5570f66735e835cac2d66a0f6244
cmd/compile: be more conservative about arm64 insns that can take zero register It's really only needed for stores and store-like instructions (atomic exchange, compare-and-swap, ...). Fixes #73180 Change-Id: I8ecd833a301355adf0fa4bff43250091640c6226 Reviewed-on: https://go-review.googlesource.com/c/go/+/663155 Revi...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64Ops.go", "patch": "@@ -138,17 +138,17 @@ func init() {\n \t// Common individual register masks\n \tvar (\n \t\tgp = buildReg(\"R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 R30\")\n-\t\tgpg = gp ...
2025-04-05T15:34:12
rust-lang/rust
00432c0b85ecd3a099fbe4b0f867f3929b099366
15e0ce9d69340dc83fd8a37ba2c1596354bea6bc
fix dead links in type checking section of the doc
[ { "path": "book/src/development/type_checking.md", "patch": "@@ -146,7 +146,7 @@ in this chapter:\n \n - [Stages of compilation](https://rustc-dev-guide.rust-lang.org/compiler-src.html#the-main-stages-of-compilation)\n - [Diagnostic items](https://rustc-dev-guide.rust-lang.org/diagnostics/diagnostic-items.h...
2026-02-09T14:54:17
nodejs/node
50d09bc5f63552ebc26f2edb283cf34e523334a6
cf8e5356d9fbbdca40d9b9fe062b3c292b7e91e3
test: deflake test-blob-file-backed Avoid race conditions by using a different file for each subtest. Fixes: https://github.com/nodejs/node/issues/51860 PR-URL: https://github.com/nodejs/node/pull/53920 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "test/parallel/test-blob-file-backed.js", "patch": "@@ -21,13 +21,17 @@ const tmpdir = require('../common/tmpdir');\n const testfile = tmpdir.resolve('test-file-backed-blob.txt');\n const testfile2 = tmpdir.resolve('test-file-backed-blob2.txt');\n const testfile3 = tmpdir.resolve('test-file-backed...
2024-07-20T13:16:23
facebook/react
966932c525f1aeaa30bec7381e2899de9a6c074b
c10d711309922b170100f0fcf4cf8167ab4dcba2
fix again :(
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/no-flow-bailout-unrelated.expect.md", "patch": "@@ -9,54 +9,31 @@ function useX() {}\n function Foo(props) {\n // $FlowFixMe[incompatible-type]\n useX();\n- const x = new Foo(...props.foo, null, ...[props.bar]);\n- ...
2024-02-09T23:17:55
vercel/next.js
8f014afff307d22e1d2b2c844b3ed940e645c6db
747ef2babe269885621d552fe980f7f6838aea6b
Consolidate dynamic IO errors test suites into a single fixture (#81451) Previously, we had separate fixtures for each test case because it's complicated to assert on build errors when multiple pages have errors. This meant that running those tests, and especially updating their snapshots, took forever because each te...
[ { "path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.platform-dynamic.test.ts", "patch": "@@ -1,172 +0,0 @@\n-import { isNextDev, nextTestSetup } from 'e2e-utils'\n-import { assertNoErrorToast } from 'next-test-utils'\n-import { getPrerenderOutput } from './utils'\n-\n-describe.each(\n- isNextDe...
2025-07-09T18:09:38
golang/go
1647896aa227d8546de3dbe70a5049eecee964e3
e373771490bab84449c7981a6be84e995de1ae80
cmd/compile: on 32-bit, bump up align for values that may contain 64-bit fields On 32-bit systems, these need to be aligned to 8 bytes, even though the typechecker doesn't tell us that. The 64-bit allocations might be the target of atomic operations that require 64-bit alignment. Fixes 386 longtest builder. Fixes #...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -701,20 +701,42 @@ func (s *state) paramsToHeap() {\n \tdo(typ.Results())\n }\n \n+// allocSizeAndAlign returns the size and alignment of t.\n+// Normally just t.Size() and t.Alignment(), but there\n+// is a special case to handle 64-bit atomi...
2025-04-04T20:05:23
rust-lang/rust
40a264cd454e791f478dae1488bb67ed7d7d058d
c69e1a04db484db8974904e6f8eb1e8df21a39ba
fix: rhs_span to rhs_span_new
[ { "path": "compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs", "patch": "@@ -1695,7 +1695,7 @@ fn suggest_ampmut<'tcx>(\n && let Either::Left(rhs_stmt_new) = body.stmt_at(*assign)\n && let StatementKind::Assign(box (_, rvalue_new)) = &rhs_stmt_new.kind\n ...
2026-02-09T14:16:36
facebook/react
c10d711309922b170100f0fcf4cf8167ab4dcba2
8c7685ed40a421652a2189e8b72c6a64fbd70ddf
Further test fix
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/no-flow-bailout-unrelated.expect.md", "patch": "@@ -4,6 +4,8 @@\n ```javascript\n // @enableFlowSuppressions\n \n+function useX() {}\n+\n function Foo(props) {\n // $FlowFixMe[incompatible-type]\n useX();\n@@ -28,6 +3...
2024-02-09T23:09:26
nodejs/node
cf8e5356d9fbbdca40d9b9fe062b3c292b7e91e3
6fc0218e3ea13c91f0fe388ee33af5a73f776252
lib: improve error message when index not found on cjs PR-URL: https://github.com/nodejs/node/pull/53859 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -3185,6 +3185,8 @@ void BindingData::LegacyMainResolve(const FunctionCallbackInfo<Value>& args) {\n return;\n }\n \n+ std::string package_initial_file = \"\";\n+\n ada::result<ada::url_aggregator> file_path_url;\n std::optional<std::string> initial_file_...
2024-07-20T00:22:24
vercel/next.js
af6fc0ab691a724007583a9f3fb4c320da96d1a7
6560ec279aaca9734df0f430800489319e1684b2
Turbopack: handle all side effects and improve pattern (#81455) Avoid the `let _ = task().resolve().await?` pattern. Instead use the `task().as_side_effect().await?` pattern. This is much better, because the compiler will yell at you if you miss out the `as_side_effect()` or the `await?` due to `must_use`. In the old...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -947,10 +947,10 @@ pub async fn all_entrypoints_write_to_disk_operation(\n project: ResolvedVc<ProjectContainer>,\n app_dir_only: bool,\n ) -> Result<Vc<Entrypoints>> {\n- let _ = project\n+ project\n .project()\n .e...
2025-07-09T15:20:34
golang/go
6839e71d82e0f2c93e043820db6c0238a65ae0fa
7a427143b6ff296125359084a8959bf0c9d23e78
internal/syscall/windows: use unsafe.Pointer instead of uintptr Some functions accept a uintptr when they should accept an unsafe.Pointer, else the compiler won't know that the pointer should be kept alive across the call, potentially causing undefined behavior. Fixes #73156 (potentially) Change-Id: I29c847eb8ffbb78...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -116,7 +116,7 @@ func Openat(dirfd syscall.Handle, name string, flag uint64, perm uint32) (_ sysc\n \t\tFILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,\n \t\tdisposition,\n \t\tFILE_SYNCHRONOUS_IO_NONALERT|FILE_OPEN_FOR_BACKUP_INTENT|o...
2025-04-04T10:16:09
electron/electron
30e992dec4ca1c7b33c2bda1b4353072a9621aa7
e7b8bb4766da58fa693ec3e82c0af9b0a3406c9d
chore: bump chromium to 115.0.5786.0 (main) (#38301) * chore: bump chromium in DEPS to 115.0.5772.0 * chore: update disable_color_correct_rendering.patch no manual changes; patch succeeded with fuzz 2. * chore: update chromium/build_libc_as_static_library.patch no manual changes; patch succeeded with fuzz ...
[ { "path": "BUILD.gn", "patch": "@@ -555,6 +555,7 @@ source_set(\"electron_lib\") {\n }\n \n frameworks = [\n+ \"AuthenticationServices.framework\",\n \"AVFoundation.framework\",\n \"Carbon.framework\",\n \"LocalAuthentication.framework\",", "additions": 1, "deletions":...
2023-05-23T19:58:58
facebook/react
8c7685ed40a421652a2189e8b72c6a64fbd70ddf
48024b76bbb29028ea94f816efb5b69eeb01e948
Fix breakages and add fixture entrypoint
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Suppression.ts", "patch": "@@ -13,6 +13,7 @@ import {\n CompilerSuggestionOperation,\n ErrorSeverity,\n } from \"../CompilerError\";\n+import { assertExhaustive } from \"../Utils/utils\";\n \n /**\n * Captures the start and end range...
2024-02-09T23:00:05
nodejs/node
45ff44b9878ee73be2d1e18263198f1243b858e4
cd39578e53d6502de03f15620d15835b86954ac8
2024-07-19, Version 22.5.1 (Current) Notable changes: This release fixes a regression introduced in Node.js 22.5.0. The problem is known to display the following symptoms: - Crash with ``` FATAL ERROR: v8::Object::GetCreationContextChecked No creation context available ``` - npm errors with `npm error Exit handler ...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,7 +38,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.0\">22.5.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.1\">22.5.1</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.0\">2...
2024-07-19T00:54:47
vercel/next.js
6560ec279aaca9734df0f430800489319e1684b2
8b390602489f12d7ad597939fb8851ef357c7b7c
Turbopack: fix unused export removal with mixed reexport and locals (#81422) We had this reference which caused all locals to be used: ``` node_modules/@react-spring/core/dist/react-spring-core.esm.js [app-client] (ecmascript) <module evaluation> -> node_modules/@react-spring/core/dist/react-spring-core.esm.js [ap...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/references/esm/base.rs", "patch": "@@ -559,8 +559,12 @@ impl EsmAssetReference {\n ));\n }\n \n- if merged_index.is_some() && this.export_name == Some(ModulePart::Evaluation) {\n- ...
2025-07-09T15:06:53
golang/go
16a6b71f18a5d05dde1a208a317a75fd652597f0
822031dffc43567b4c60e12e77afe48a00028c0e
cmd/compile: improve store-to-load forwarding with compatible types Improve the compiler's store-to-load forwarding optimization by relaxing the type comparison condition. Instead of requiring exact type equality (CMPeq), we now use copyCompatibleType which allows forwarding between compatible types where safe. Fix s...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -736,26 +736,26 @@\n // Load of store of same address, with compatibly typed value and same size\n (Load <t1> p1 (Store {t2} p2 x _))\n \t&& isSamePtr(p1, p2)\n-\t&& t1.Compare(x.Type) == types.CMPeq\n+\t&& copyCompatibleType(t1, x.Ty...
2025-04-01T15:43:38
facebook/react
48024b76bbb29028ea94f816efb5b69eeb01e948
19476aa5f6f448a97733dc95739b4873a8f8ab12
Fix lints
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -199,7 +199,7 @@ export function compileProgram(\n const suppressions = findProgramSuppressions(\n pass.comments,\n options.eslintSuppressionRules ?? DEFAULT_ESLINT_SUPPRESSIONS,\n- options.flowSuppr...
2024-02-09T22:50:06
electron/electron
395abf56204ab8feabb0e3616cf6c9f2516d9188
508d7c13536d4dfb04e47d2dc0e1fd93cb483fdc
fix: linker error missing `uv__strtok` (#38382) fix: linker error missing uv__strtok This symbol is referenced inside what seems to be dead code in `uv__search_path` in third_party/electron_node/deps/uv/src/unix/core.c When compiling in LTO mode, the reference is removed, but not during a non-LTO build.
[ { "path": "patches/node/build_add_gn_build_files.patch", "patch": "@@ -1012,10 +1012,10 @@ index 0000000000000000000000000000000000000000..bfbd4e656db1a6c73048443f96f1d576\n +}\n diff --git a/deps/uv/BUILD.gn b/deps/uv/BUILD.gn\n new file mode 100644\n-index 0000000000000000000000000000000000000000..d6bed57...
2023-05-22T11:00:45
nodejs/node
7fe67b707861c742e0ea984b93e6bba8101abd56
86f79e6e7c80d39d4e2c8a92d1d612b3130cd9c0
doc,tty: add documentation for ReadStream and WriteStream Co-authored-by: Qingyu Deng <i@ayase-lab.com> PR-URL: https://github.com/nodejs/node/pull/53567 Fixes: https://github.com/nodejs/node/issues/37780 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Raz Luvaton <rluvaton@gmail.com> Reviewed-By: Claudio...
[ { "path": "doc/api/tty.md", "patch": "@@ -98,6 +98,33 @@ Represents the writable side of a TTY. In normal circumstances,\n `tty.WriteStream` instances created for a Node.js process and there\n should be no reason to create additional instances.\n \n+### `new tty.ReadStream(fd[, options])`\n+\n+<!-- YAML\n+a...
2024-07-19T10:53:24
vercel/next.js
8b390602489f12d7ad597939fb8851ef357c7b7c
6c112f67f2162cdfcf19b306e8e591adfdd2a38a
Turbopack: fix duplicate externals modules (#81306) Don't attatch the resolve request's affecting sources to the external module itself. This list wasn't part of the module ident and would lead to duplicate modules.
[ { "path": "turbopack/crates/turbopack-core/src/resolve/mod.rs", "patch": "@@ -76,7 +76,6 @@ pub enum ModuleResolveResultItem {\n /// uri, path, reference, etc.\n name: RcStr,\n ty: ExternalType,\n- traced: Option<ResolvedVc<ModuleResolveResult>>,\n },\n /// A module co...
2025-07-09T14:04:42
golang/go
822031dffc43567b4c60e12e77afe48a00028c0e
d164776615f75105c6f988900d798a0f476c4668
sync: add WaitGroup.Go Fixes #63796 Change-Id: I2a941275dd64ef858cbf02d31a759fdc5c082ceb Reviewed-on: https://go-review.googlesource.com/c/go/+/662635 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Carlos Amedee <c...
[ { "path": "api/next/63796.txt", "patch": "@@ -0,0 +1 @@\n+pkg sync, method (*WaitGroup) Go(func()) #63769", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/sync/63769.md", "patch": "@@ -0,0 +1,2 @@\n+[WaitGroup] has added a new method...
2025-04-03T15:10:16
facebook/react
24ed13e1f04ccc843f559948137405a7191b4b13
fea7b5ac0d04d9749acf3fe1f0134cfb56a1648e
Update error message and comments
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/ComputeUnconditionalBlocks.ts", "patch": "@@ -23,7 +23,7 @@ export function computeUnconditionalBlocks(fn: HIRFunction): Set<BlockId> {\n while (current !== null && current !== exit) {\n CompilerError.invariant(!unconditionalBlocks.has(cur...
2024-02-14T00:45:18
electron/electron
e138f5f915653966c3ec5779c9e4952cc08401bb
a22635bd9f664be51083947781844ce066ff5599
docs: fix typing of message box type value (#38336) * docs: fix typing of dialog type value * test: add smoke tests * test: update test
[ { "path": "docs/api/dialog.md", "patch": "@@ -223,10 +223,10 @@ expanding and collapsing the dialog.\n * `browserWindow` [BrowserWindow](browser-window.md) (optional)\n * `options` Object\n * `message` string - Content of the message box.\n- * `type` string (optional) - Can be `\"none\"`, `\"info\"`, `\"...
2023-05-17T17:33:30
nodejs/node
014dad5953a632f44e668f9527f546c6e1bb8b86
bcec922e3e9579d7f58f2c19fc82eb238f87a34c
deps: fix include_dirs of nbytes PR-URL: https://github.com/nodejs/node/pull/53862 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "deps/nbytes/nbytes.gyp", "patch": "@@ -6,9 +6,9 @@\n {\n 'target_name': 'nbytes',\n 'type': 'static_library',\n- 'include_dirs': ['src', 'include'],\n+ 'include_dirs': ['include'],\n 'direct_dependent_settings': {\n- 'include_dirs': ['src', 'include'],\n+ ...
2024-07-18T07:39:34
golang/go
d164776615f75105c6f988900d798a0f476c4668
8969771cc3ceed634844dd6c911f3a5439424a97
internal/poll: simplify execIO execIO has multiple return paths and multiple places where error is mangled. This CL simplifies the function by just having one return path. Some more tests have been added to ensure that the error handling is done correctly. Updates #19098. Change-Id: Ida0b1e85d4d123914054306e5bef8da...
[ { "path": "src/internal/poll/export_windows_test.go", "patch": "@@ -1,17 +0,0 @@\n-// Copyright 2017 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-// Export guts for testing on windows.\n-// Since testing...
2025-04-02T08:43:47
facebook/react
69247869734374dd3f66076228f78df8ee0ca238
19b4abed69643be0c6410c6d4a4fdb23c276ef0e
[be] Change validate functions to not return unnecessary Result These validations needs to be able to transitively check for violations within function expressions, without immediately erroring. So the inner "-Impl" helpers return a Result. But the outer, exported validate functions don't need to return a Result, ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -175,11 +175,11 @@ function* runWithEnvironment(\n }\n \n if (env.config.validateRefAccessDuringRender) {\n- validateNoRefAccessInRender(hir).unwrap();\n+ validateNoRefAccessInRender(hir);\n }\n \n ...
2024-02-14T00:45:17