repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
facebook/react
11c9fd0c53133f24f5270d36591b65b8fc2ebd25
2efb1426067322cdb08304432b3ac849dee52bd9
Batch async actions even if useTransition is unmounted (#28078) If there are multiple updates inside an async action, they should all be rendered in the same batch, even if they are separate by an async operation (`await`). We currently implement this by suspending in the `useTransition` hook to block the update fr...
[ { "path": "packages/react-reconciler/src/ReactFiberAsyncAction.js", "patch": "@@ -9,7 +9,6 @@\n \n import type {\n Thenable,\n- PendingThenable,\n FulfilledThenable,\n RejectedThenable,\n } from 'shared/ReactTypes';\n@@ -32,111 +31,32 @@ let currentEntangledListeners: Array<() => mixed> | null = null...
2024-01-25T04:54:53
vercel/next.js
343c83807fd53a2052fce6f7ddccf8461edee8b8
3e022577f2cacfc5c5bb0553327b3e116a58f68d
[node-webstreams] Exhaustive React aliases in App Router (#81040) The previous logic relied heavily on default-fallthroughs which makes it hard to follow what alias we end up using in which bundle. The new logic has more duplication which is intended so that you think about each entrypoint. With the new factoring, ...
[ { "path": "crates/next-core/src/next_edge/context.rs", "patch": "@@ -147,7 +147,7 @@ pub async fn get_edge_resolve_options_context(\n .map(RcStr::from),\n );\n \n- if ty.supports_react_server() {\n+ if ty.should_use_react_server_condition() {\n custom_conditions.push(rcstr!(\"r...
2025-07-02T05:28:36
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
nodejs/node
4c730aed7f825af1691740663d599e9de5958f89
296ce1ba2ac7728c6e1b016964b8fe6ba55a6ba4
deps: V8: cherry-pick 9ebca66a5740 Original commit message: [rab/gsab] Remove --harmony-rab-gsab (has been on by default for a while) Bug: v8:11111 Change-Id: Ie74e7737f3e2e8730820cf00f1cbc7ae02b515af Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5516580 Commit-Queue: Marja Hölt...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.15',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n...
2024-06-23T22:31:33
facebook/react
c92ad38375fe0f0c99460583c7195e8ec74eafec
b2f44c103b45b3bdded2e140b14042101a59b829
Fix block scoping issues from MergeConsecutiveBlocks Fixes the issues from the previous PR. It's a simple fix — we don't merge consecutive blocks if the successor block is some terminal's fallthrough.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/MergeConsecutiveBlocks.ts", "patch": "@@ -14,7 +14,7 @@ import {\n Instruction,\n } from \"./HIR\";\n import { markPredecessors, removeUnreachableFallthroughs } from \"./HIRBuilder\";\n-import { mapOptionalFallthroughs } from \"./visitors\";\n...
2024-01-23T19:41:00
electron/electron
908bef7ca983d553cba7ee82012823a50d30418a
c326b0068e34f2cfebd4b5a1b86de2114461df51
chore: bump chromium to 114.0.5708.0 (main) (#37834) * chore: bump chromium in DEPS to 114.0.5696.0 * chore: update patches * chore: revert clang revert (cherry picked from commit 4c3ffa8001b5fdbfc99374bf77895d8d8e35ee31) * test: remove unneeded test for title on ses.setCertificateVerifyProc This test i...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -524,6 +524,18 @@ step-fix-sync: &step-fix-sync\n mv .git/config.backup .git/config\n git fetch\n \n+step-fix-clang: &step-fix-clang\n+ run:\n+ name: Fix Clang on 32-bit Linux ARM\n+ command: |\n+ if [ \"$TARGET_ARCH\" == \"arm\" ];...
2023-04-12T11:37:48
vercel/next.js
3e022577f2cacfc5c5bb0553327b3e116a58f68d
3cb2f2737a48883f8c6de9f8d7013c5cd5a6554e
Fix resolvedPathname for middleware rewrite (#81144) This updates the handling of `resolvedPathname` to handle the case we don't know the `rewroteURL` for example when it's a middleware rewrite and we can't derive it since it's fully dynamic. Since we always know the `srcPage` we can always recreate the final URL usin...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -41,7 +41,6 @@ import {\n type ResponseCacheEntry,\n type ResponseGenerator,\n } from '../../server/response-cache'\n-import { decodePathParams } from '../../server/lib/router-utils/decode-path-params'\n import { FallbackMode, parse...
2025-07-02T03:53:54
rust-lang/rust
99c45c503eef0218c96406623808e7e37d4e430c
a2b126b6e6a56633d35bcb01f50c71b5af88a845
fix: complete `.let` on block tail prefix expression Example --- ```rust fn main() { &baz.l$0 } ``` **Before this PR** ```text sn if if expr {} sn match match expr {} ``` **After this PR** ```text sn if if expr {} sn let let sn letm let mut sn match match expr {} ```
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs", "patch": "@@ -16,7 +16,7 @@ use itertools::Itertools;\n use stdx::never;\n use syntax::{\n SmolStr,\n- SyntaxKind::{EXPR_STMT, STMT_LIST},\n+ SyntaxKind::{BLOCK_EXPR, EXPR_STMT, STMT_LIST},\n T, TextRange, Te...
2026-02-07T08:07:17
golang/go
8969771cc3ceed634844dd6c911f3a5439424a97
5eaeb7b455d0bb6a39dacb4317ea177cbe0358de
runtime: add thread exit plus vgetrandom stress test Add a regression test similar to the reproducer from #73141 to try to help catch future issues with vgetrandom and thread exit. Though the test isn't very precise, it just hammers thread exit. When the test reproduces #73141, it simply crashes with a SIGSEGV and no...
[ { "path": "src/runtime/proc_test.go", "patch": "@@ -1026,6 +1026,17 @@ func TestLockOSThreadTemplateThreadRace(t *testing.T) {\n \t}\n }\n \n+func TestLockOSThreadVgetrandom(t *testing.T) {\n+\tif runtime.GOOS != \"linux\" {\n+\t\tt.Skipf(\"vgetrandom only relevant on Linux\")\n+\t}\n+\toutput := runTestPro...
2025-04-03T15:16:36
nodejs/node
cd8e61fe2630906fc53de6ff9b98ef8355533785
92a25abca9dd23a723008d88b1ccb63ff40ec9b7
test: extend env for `test-node-output-errors` Extend, rather than replace, `env` for `test-node-output-errors` so that `node` binaries that need `LD_LIBRARY_PATH`, `LIBPATH` or `DYLD_LIBRARY_PATH` can run. PR-URL: https://github.com/nodejs/node/pull/53535 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: ...
[ { "path": "test/parallel/test-node-output-errors.mjs", "patch": "@@ -6,8 +6,6 @@ import { describe, it } from 'node:test';\n import { pathToFileURL } from 'node:url';\n \n const skipForceColors =\n- process.config.variables.icu_gyp_path !== 'tools/icu/icu-generic.gyp' ||\n- process.config.variables.node_s...
2024-06-23T18:53:03
electron/electron
c326b0068e34f2cfebd4b5a1b86de2114461df51
c01dff8d8989c6015e4ab78f629451b6a372f666
fix: recommended `node-gyp` version in `node.h` error (#37829) fix: recommended node-gyp version in node.h error In https://github.com/electron/electron/blob/main/docs/tutorial/using-native-node-modules.md#using-npm, we recommend setting the `npm_config_disturl` variable but doing that does not work on node-gyp ...
[ { "path": "patches/node/allow_embedder_to_control_codegenerationfromstringscallback.patch", "patch": "@@ -30,7 +30,7 @@ index a994221445471b92d12ed9cb3bef9ffb70670ab6..d6c6fd9c257cb51ba387c4b4d07a24ff\n Mutex::ScopedLock lock(node::per_process::cli_options_mutex);\n if (per_process::cli_options->get_p...
2023-04-11T11:26:26
facebook/react
b2f44c103b45b3bdded2e140b14042101a59b829
f9f084087f7eb8a6b56a89db850cb4dddef0ac66
Fixtures demonstrating incorrect block scoping due to MergeConsecutiveBlocks Fixtures from T173102122 and T173101739 demonstrating cases where MergeConsecutiveBlocks can move code out of its correct block scope, changing behavior or breaking the program, in cases where a control flow structure (such as switch) onl...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/block-scoping-switch-dead-code.expect.md", "patch": "@@ -0,0 +1,54 @@\n+\n+## Input\n+\n+```javascript\n+function useHook(a, b) {\n+ switch (a) {\n+ case 1:\n+ if (b == null) {\n+ return;\n+ }\n+ ...
2024-01-23T19:40:56
vercel/next.js
3cb2f2737a48883f8c6de9f8d7013c5cd5a6554e
e52d8c71f180a0791dec1b57f1129ee4571b14c4
Remove unneccesary step that's making workflow fail (#81164) This step was causing the front-sync job to fail. I'm not totally sure how it was working before, some other workflow must have logged logged in at some point. This is just a debug step anyway, so I think we can delete it. **I confirmed that the next step wo...
[ { "path": ".github/workflows/test_e2e_deploy_release.yml", "patch": "@@ -108,10 +108,6 @@ jobs:\n - id: test-result\n name: Set test result variable\n run: echo 'immediately-close=${{ needs.test-deploy.result != 'success' && 'true' || 'false' }}' >> \"$GITHUB_OUTPUT\"\n- - name: C...
2025-07-02T03:48:16
golang/go
5eaeb7b455d0bb6a39dacb4317ea177cbe0358de
ab2926291ba7003dcec7f46824d5f58c344ca849
go/types, types2: better error messages for invalid qualified identifiers This change borrows code from CL 631356 by Emmanuel Odeke (thanks!). Fixes #70549. Change-Id: Id6f794ea2a95b4297999456f22c6e02890fce13b Reviewed-on: https://go-review.googlesource.com/c/go/+/662775 LUCI-TryBot-Result: Go LUCI <golang-scoped@lu...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -720,7 +720,14 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName\n \t\t\t\texp = pkg.scope.Lookup(sel)\n \t\t\t\tif exp == nil {\n \t\t\t\t\tif !pkg.fake && isValidName(sel) {\n-\t\t\t\t\t\tcheck.errorf(e.Sel...
2025-04-03T21:26:55
rust-lang/rust
c5587ca91967f91bf2f1467fbfa68e5d5448bce3
cda9b8c15752df635d693cfe73b147e6090faddc
Split `parse_inner_attr` errors by case
[ { "path": "compiler/rustc_parse/src/parser/attr.rs", "patch": "@@ -209,13 +209,25 @@ impl<'a> Parser<'a> {\n AllowConstBlockItems::Yes,\n ) {\n Ok(Some(item)) => {\n- // FIXME(#100717)\n err.arg(\"item\", item.kind.descr());\n- er...
2026-02-06T15:59:55
facebook/react
f9f084087f7eb8a6b56a89db850cb4dddef0ac66
a023a2da723b730149667d783b1e08aadccbfeae
Fixture for reactively-controlled context variables Mofei considered this case, it works thanks to the handling for function expressions earlier in the stack.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactive-control-dependency-on-context-variable.expect.md", "patch": "@@ -0,0 +1,108 @@\n+\n+## Input\n+\n+```javascript\n+import { identity } from \"shared-runtime\";\n+\n+function Component(props) {\n+ let x;\n+ // Re...
2024-01-23T16:59:21
nodejs/node
cba170d8833dbf05fa80df13fa95cceb72067a21
45c2e2514f8b1e4eee8b236199677e6910203449
lib: fix typo in comment Small update in a realm.js documentation comment to correct `js2c.py` which was ported to `js2c.cc` and removed. PR-URL: https://github.com/nodejs/node/pull/53543 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Paolo In...
[ { "path": "lib/internal/bootstrap/realm.js", "patch": "@@ -31,7 +31,7 @@\n // Internal JavaScript module loader:\n // - BuiltinModule: a minimal module system used to load the JavaScript core\n // modules found in lib/**/*.js and deps/**/*.js. All core modules are\n-// compiled into the node binary via ...
2024-06-22T14:46:07
electron/electron
c01dff8d8989c6015e4ab78f629451b6a372f666
c65632d4045fbbe4b37421b27f544e591cc1ef38
fix: exceptions during function/promise result conversions live in calling world (#37904)
[ { "path": "shell/renderer/api/electron_api_context_bridge.cc", "patch": "@@ -241,10 +241,29 @@ v8::MaybeLocal<v8::Value> PassValueToOtherContext(\n global_destination_context.IsEmpty())\n return;\n context_bridge::ObjectCache object_cache;\n- auto val = PassValue...
2023-04-11T09:57:48
vercel/next.js
e52d8c71f180a0791dec1b57f1129ee4571b14c4
0a67d1c701e1881a567b2ac226e7fb4938441e66
[dynamicIO] recognize prerender interrupted errors as well known (#81160) all Next.js errors should pass through the RSC boundary with an in tact digest
[ { "path": "packages/next/src/server/app-render/create-error-handler.tsx", "patch": "@@ -7,6 +7,7 @@ import { isAbortError } from '../pipe-readable'\n import { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\n import { isDynamicServerError } from '../../client/components/hooks-serve...
2025-07-02T02:59:22
golang/go
ce94e916fe262a51c398153b03dd9a657418bbe8
9302a57134a698b62576cd3b849017a02c731c98
internal/syscall/windows: define NtQueryInformationFile buffer as unsafe.Pointer The unsafe.Pointer -> uintptr conversion must happen when calling syscall.Syscall, not when calling the auto-generated wrapper function, else the Go compiler doesn't know that it has to keep the pointer alive. This can cause undefined be...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -365,7 +365,7 @@ func (fd *FD) initIO() error {\n \t\t\t// Handle opened for overlapped I/O (aka non-blocking) that are not added\n \t\t\t// to the runtime poller need special handling when reading and writing.\n \t\t\tvar info windows.FILE_MODE_INFO...
2025-04-03T12:55:21
nodejs/node
6cb940a546c6229218277f35c2311f9781001b3d
d335487e3f39437a5e3cc5a4a07bf253b9d0d505
build: only generate specified build type files Release and Debug build configurations can not be shared, only generate specified configuration in `configure`. PR-URL: https://github.com/nodejs/node/pull/53511 Fixes: https://github.com/nodejs/node/issues/53446 Reviewed-By: Michaël Zasso <targos@protonmail.com> Review...
[ { "path": "configure.py", "patch": "@@ -2253,7 +2253,7 @@ def make_bin_override():\n gyp_args += ['-Dpython=' + python]\n \n if options.use_ninja:\n- gyp_args += ['-f', 'ninja-' + flavor]\n+ gyp_args += ['-f', 'ninja-' + flavor, '-G', 'config=' + config['BUILDTYPE']]\n elif flavor == 'win' and sys.platfor...
2024-06-22T08:36:36
facebook/react
a023a2da723b730149667d783b1e08aadccbfeae
4d84bee1723ad024058dda7e9a47774146912c77
Fixtures for control values that become reactive due to interleaving See the previous PR, interleaved mutation can cause values that were not reactive to become reactive. I swear I had a case where this was observable, but I came up with it before reordering the PRs in this stack. I think my repro relied on an imm...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactive-control-dependency-from-interleaved-reactivity-do-while.expect.md", "patch": "@@ -0,0 +1,73 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ // a and b are independent but their mutations are...
2024-01-23T16:59:20
electron/electron
c65632d4045fbbe4b37421b27f544e591cc1ef38
adb1172066a72a22e7e1e83a04a3504b964f0cbb
fix: broken buttons in PDF viewer (#37856)
[ { "path": "shell/browser/extensions/api/resources_private/resources_private_api.cc", "patch": "@@ -9,6 +9,7 @@\n \n #include \"base/values.h\"\n #include \"chrome/browser/browser_process.h\"\n+#include \"chrome/browser/pdf/pdf_extension_util.h\"\n #include \"chrome/common/extensions/api/resources_private.h\...
2023-04-11T06:30:36
rust-lang/rust
c1091da34c052b2260c7d4d5e0d4c6a63a34a0b8
edd43c9e1f9fbca3e7f95447fbade7cb1bf11d7c
Fix existing messages in stderrs
[ { "path": "tests/rustdoc-ui/ice-bug-report-url.stderr", "patch": "@@ -9,7 +9,7 @@ LL | fn wrong()\n aborting due to `-Z treat-err-as-bug=1`\n stack backtrace:\n \n-error: the compiler unexpectedly panicked. this is a bug.\n+error: the compiler unexpectedly panicked. This is a bug\n \n note: we would appreci...
2026-02-06T20:16:53
facebook/react
cb9899955b3d2c6e1e4477585f06068c2007efec
bf32989264ff2faa9a009550401f573f29db4df2
Fix ReactFreshIntegration-test not running all tests as assumed (#28033) Fix ReactFreshIntegration-test not running all tests as assumed `testCommon` was executed twice without setting `compileDestructuring` ever to true. This fixes this and removes one layer of abstraction in this test by using `describe.each`.
[ { "path": "packages/react-refresh/src/__tests__/ReactFreshIntegration-test.js", "patch": "@@ -47,7 +47,7 @@ describe('ReactFreshIntegration', () => {\n }\n });\n \n- function executeCommon(source, compileDestructuring) {\n+ function executeJavaScript(source, compileDestructuring) {\n const compi...
2024-01-23T14:59:14
nodejs/node
167ef1a621c964e270911115b811f0aa88945151
53e9106c4b89497bad343ce4eb7b12e4934f02e0
2024-06-20, Version 20.15.0 'Iron' (LTS) Notable changes: doc: * add pimterry to collaborators (Tim Perry) https://github.com/nodejs/node/pull/52874 inspector: * (SEMVER-MINOR) introduce the `--inspect-wait` flag (Kohei Ueno) https://github.com/nodejs/node/pull/52734 test_runner: * (SEMVER-MINOR) support test p...
[ { "path": "CHANGELOG.md", "patch": "@@ -59,7 +59,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V21.md#21.0.0\">21.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.14.0\">20.14.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.15.0\">20.15.0...
2024-06-17T12:18:32
electron/electron
3c0c4d5c278e575691f9376483dc4f60a287c467
69586684484c05a0078e3b916239186a5c3d749a
fix: menus on Linux after window modification (#37798) * fix: menus on Linux after window modification * test: don't run on CI
[ { "path": "patches/chromium/.patches", "patch": "@@ -127,3 +127,4 @@ chore_patch_out_profile_methods_in_profile_selections_cc.patch\n add_gin_converter_support_for_arraybufferview.patch\n chore_defer_usb_service_getdevices_request_until_usb_service_is.patch\n revert_roll_clang_rust_llvmorg-16-init-17653-g39...
2023-04-11T06:17:45
rust-lang/rust
edd43c9e1f9fbca3e7f95447fbade7cb1bf11d7c
ca9c2277008aee9310155c5e6131f0f93f67e3ad
Fix existing messages in the diag structs
[ { "path": "compiler/rustc_codegen_llvm/src/errors.rs", "patch": "@@ -214,5 +214,5 @@ pub(crate) struct FixedX18InvalidArch<'a> {\n }\n \n #[derive(Diagnostic)]\n-#[diag(\"`-Zsanitizer-kcfi-arity` requires LLVM 21.0.0 or later.\")]\n+#[diag(\"`-Zsanitizer-kcfi-arity` requires LLVM 21.0.0 or later\")]\n pub(c...
2026-02-06T20:16:48
electron/electron
69586684484c05a0078e3b916239186a5c3d749a
1e206deec3ef142460c780307752a84782f9baed
fix: exceptions in nested conversions live in the target world (#37895)
[ { "path": "shell/renderer/api/electron_api_context_bridge.cc", "patch": "@@ -241,10 +241,10 @@ v8::MaybeLocal<v8::Value> PassValueToOtherContext(\n global_destination_context.IsEmpty())\n return;\n context_bridge::ObjectCache object_cache;\n- auto val =\n- ...
2023-04-10T21:58:27
facebook/react
4d84bee1723ad024058dda7e9a47774146912c77
57163f0a52bed6229364cc558a786595cd6fa9d3
Propagate reactive scope dependencies transitively During PruneNonReactiveDependencies, we sometimes need to promote a value from non-reactive to reactive if it ended up being grouped in the same reactive scope as some other reactive value. This generally happens due to interleaving mutations. In this case all d...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PruneNonReactiveDependencies.ts", "patch": "@@ -5,7 +5,14 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { IdentifierId, ReactiveFunction, ReactiveScopeBlock } from \"../HIR\";\n+import {\n+ Identif...
2024-01-22T23:35:56
nodejs/node
c93e256ee7bb26cd10aee65e6349e605d56f9c80
0c1c33a2a3dec06b1cea4f9cff2f9bd757ba23f3
src: use `args.This()` instead of `Holder` The latter is deprecated in V8. Refs: http://crbug.com/333672197 PR-URL: https://github.com/nodejs/node/pull/53474 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: ...
[ { "path": "doc/api/addons.md", "patch": "@@ -923,7 +923,7 @@ void MyObject::New(const FunctionCallbackInfo<Value>& args) {\n void MyObject::PlusOne(const FunctionCallbackInfo<Value>& args) {\n Isolate* isolate = args.GetIsolate();\n \n- MyObject* obj = ObjectWrap::Unwrap<MyObject>(args.Holder());\n+ MyO...
2024-06-18T16:02:42
golang/go
9326d9d01231a1834458810c3cb01701bf7293a9
fd8f6cec213a6eaf862998073ea3c4ee52b182ba
make.bat: fix GOROOT_BOOTSTRAP detection Due to a flaw in the %GOROOT_BOOTSTRAP% detection logic, the last Go executable found by `where go` was taking precedence over the first one. In batch scripts, environment variable expansion happens when each line of the script is read, not when it is executed. Thus, the check...
[ { "path": "src/make.bat", "patch": "@@ -60,14 +60,13 @@ if not exist ..\\bin\\tool mkdir ..\\bin\\tool\n :: Calculating GOROOT_BOOTSTRAP\r\n if not \"x%GOROOT_BOOTSTRAP%\"==\"x\" goto bootstrapset\r\n for /f \"tokens=*\" %%g in ('where go 2^>nul') do (\r\n-\tif \"x%GOROOT_BOOTSTRAP%\"==\"x\" (\r\n-\t\tsetlo...
2025-02-28T09:05:52
facebook/react
57163f0a52bed6229364cc558a786595cd6fa9d3
0894e35d94fa84136e68403c7135c276a5f7898a
InferReactivePlaces account for immutable aliases of mutably aliased values I found this by adding logic to reject inputs where reactivity gets newly propagated in PruneNonReactiveDependencies. It's possible to create a readonly alias to a mutable value such that we don't know the value is reactive yet when the al...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReactivePlaces.ts", "patch": "@@ -23,7 +23,6 @@ import {\n eachInstructionValueOperand,\n eachTerminalOperand,\n } from \"../HIR/visitors\";\n-import { hasBackEdge } from \"../Optimization/DeadCodeElimination\";\n import {\n fin...
2024-01-22T23:35:55
vercel/next.js
4a1b510fc100e0f18eeeb9f2358818528a8696bb
b8eb7314be7e1117a9f255adbb5f1a18bbf06489
Add more test cases to the `dynamicIO` sync IO access test suite (#81045) With this PR, we're adding test fixtures for `headers()`, `draftMode()`, and (fallback) `params`, by more or less copy&pasting the fixture for `cookies()`. We're also adding assertions for environment prefixes of `console.log()` calls that happ...
[ { "path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.sync-dynamic.test.ts", "patch": "@@ -1,5 +1,5 @@\n import { isNextDev, nextTestSetup } from 'e2e-utils'\n-import { getPrerenderOutput } from './utils'\n+import { assertLog, getPrerenderOutput } from './utils'\n \n describe.each(\n isNextDev\n...
2025-07-01T20:57:40
electron/electron
e8c87859c461ae2a541cb2625f0281066a9b3659
83e186fdbc99b3c999b8788eada9be24a51924bf
fix: showAboutPanel also on linux (#37828) showAboutPanel also on linux
[ { "path": "lib/browser/api/menu-item-roles.ts", "patch": "@@ -26,7 +26,7 @@ export const roleList: Record<RoleId, Role> = {\n get label () {\n return isLinux ? 'About' : `About ${app.name}`;\n },\n- ...(isWindows && { appMethod: () => app.showAboutPanel() })\n+ ...((isWindows || isLinux)...
2023-04-06T18:50:24
nodejs/node
0c1c33a2a3dec06b1cea4f9cff2f9bd757ba23f3
d2d2797af96feb84e2b3de238e329a481576abd1
inspector: fix disable async hooks on Debugger.setAsyncCallStackDepth This was previously calling the enable function by mistake. As a result, when profiling using Chrome DevTools, the async hooks won't be turned off properly after receiving Debugger.setAsyncCallStackDepth with depth 0. PR-URL: https://github.com/nod...
[ { "path": "src/async_wrap.cc", "patch": "@@ -193,6 +193,12 @@ static void SetPromiseHooks(const FunctionCallbackInfo<Value>& args) {\n args[3]->IsFunction() ? args[3].As<Function>() : Local<Function>());\n }\n \n+static void GetPromiseHooks(const FunctionCallbackInfo<Value>& args) {\n+ Environment* e...
2024-06-18T16:02:25
golang/go
fd8f6cec213a6eaf862998073ea3c4ee52b182ba
06f82af1837bf77dfb2f337f5bb15b6c3f85a454
api: move go1.25 to next/70250 My CL 645115 added the new entries in the wrong place, prematurely creating the go1.25 file. Also, add the missing release note. Change-Id: Ib5b5ccfb42757a9ea9dc93e33b3e3ed8e8bd7d3f Reviewed-on: https://go-review.googlesource.com/c/go/+/662615 Auto-Submit: Alan Donovan <adonovan@google...
[ { "path": "doc/next/6-stdlib/99-minor/go/types/70250.md", "patch": "@@ -0,0 +1,3 @@\n+[Var] now has a [Var.Kind] method that classifies the variable as one\n+of: package-level, receiver, parameter, result, or local variable, or\n+a struct field.", "additions": 3, "deletions": 0, "language": "Mar...
2025-04-03T14:04:02
electron/electron
251e567eff35440e6a0e3812ab20a7bdc21e3065
6bfef67aaeae9613e85b3d5d3745da763b3ef7c4
fix: don't emit `did-fail-load` for MediaDocuments (#37824) * fix: don't emit did-fail-load for MediaDocuments * spec: add test
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -64,6 +64,7 @@\n #include \"gin/handle.h\"\n #include \"gin/object_template_builder.h\"\n #include \"gin/wrappable.h\"\n+#include \"media/base/mime_util.h\"\n #include \"mojo/public/cpp/bindings/associated_remote.h\"\n #include \"mojo/...
2023-04-06T08:23:34
vercel/next.js
c6343db71ee1afd3cb29c805443fcf4152d9eccb
9e19656ecfe6df31981ad970b1ed4f965090d720
[segment explorer] reset error and not-found boundary (#81115) ### Description Add a `key` prop to the segment state boundary and change the key when we call reset, this way it will force the children re-render with the new state where the boundaries will get reset and the simulated error will be gone since we're r...
[ { "path": "packages/next/src/next-devtools/userspace/app/segment-explorer-node.tsx", "patch": "@@ -1,7 +1,14 @@\n 'use client'\n \n import type { ReactNode } from 'react'\n-import { useState, createContext, useContext, use, useMemo } from 'react'\n+import {\n+ useState,\n+ createContext,\n+ useContext,\n...
2025-07-01T20:19:15
facebook/react
0894e35d94fa84136e68403c7135c276a5f7898a
8be56418d31ba6ff0113c3ccb91ce3f3d11ee4fd
More fixtures for reactivity and mutable aliasing (property load case)
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactivity-via-aliased-mutation-through-property-load.expect.md", "patch": "@@ -0,0 +1,87 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const x = {};\n+ const y = [];\n+ x.y = y;\n+ x.y.push(pro...
2024-01-20T03:12:58
nodejs/node
99b01c7105ac6fbd2a4c78df7dbf73353982bfe1
3e7129e5d60d4f017ad06c006dec7f95d986095c
meta: fix typo in dependency updates PR-URL: https://github.com/nodejs/node/pull/53471 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Akhil Marsonya <akhi...
[ { "path": ".github/workflows/tools.yml", "patch": "@@ -175,7 +175,7 @@ jobs:\n cat temp-output\n tail -n1 temp-output | grep \"NEW_VERSION=\" >> \"$GITHUB_ENV\" || true\n rm temp-output\n- # libuv update was disabled because of Feb 14, 2024 security releas\...
2024-06-18T15:28:49
rust-lang/rust
2eec6178094351111d908627511628005c220826
a2b126b6e6a56633d35bcb01f50c71b5af88a845
internal: remove redundant double call in postfix
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs", "patch": "@@ -91,8 +91,7 @@ pub(crate) fn complete_postfix(\n // so it's better to consider references now to avoid breaking the compilation\n \n let (dot_receiver_including_refs, prefix) = include_references(dot_r...
2026-02-07T08:02:23
golang/go
0b31e6d4cc804ab76ae8ced151ee2f50657aec14
13b1261175efde5aac7c4c7f6f66ae3b2c609a2d
runtime: cleanup M vgetrandom state before dropping P When an M is destroyed, we put its vgetrandom state back on the shared list for another M to reuse. This list is simply a slice, so appending to the slice may allocate. Currently this operation is performed in mdestroy, after the P is released, meaning allocation i...
[ { "path": "src/runtime/os3_solaris.go", "patch": "@@ -234,8 +234,11 @@ func unminit() {\n \tgetg().m.procid = 0\n }\n \n-// Called from exitm, but not from drop, to undo the effect of thread-owned\n+// Called from mexit, but not from dropm, to undo the effect of thread-owned\n // resources in minit, semacre...
2025-04-03T03:26:25
electron/electron
6bfef67aaeae9613e85b3d5d3745da763b3ef7c4
db27b9f433f6681c42c9f22910d5908e172a67fe
feat: session.resolveHost (#37690) * feat: session.resolveHost Expose Chromium's host resolution API through the Session object. * Update shell/browser/api/electron_api_session.cc Co-authored-by: Jeremy Rose <nornagon@nornagon.net> * address feedback * fix tests * address feedback * Add options ...
[ { "path": "docs/api/session.md", "patch": "@@ -690,6 +690,41 @@ The `proxyBypassRules` is a comma separated list of rules described below:\n Match local addresses. The meaning of `<local>` is whether the\n host matches one of: \"127.0.0.1\", \"::1\", \"localhost\".\n \n+#### `ses.resolveHost(host, [op...
2023-04-05T14:06:14
vercel/next.js
9e19656ecfe6df31981ad970b1ed4f965090d720
1beea16b933a7acd3a180050a663d8ff1c41537f
fix(next-swc): Apply SWC minifier bugfixes (#81098) ### What? Update `swc_core` to `v29.4.2` ### Why? To apply https://github.com/swc-project/swc/pull/10740 and https://github.com/swc-project/swc/pull/10741
[ { "path": "Cargo.lock", "patch": "@@ -7131,9 +7131,9 @@ dependencies = [\n \n [[package]]\n name = \"swc_core\"\n-version = \"29.4.0\"\n+version = \"29.4.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"991fb5308ade9fb838316d0f1790bf2df25b0cafa6ac2515450e8003107201ae\"...
2025-07-01T20:02:33
facebook/react
8be56418d31ba6ff0113c3ccb91ce3f3d11ee4fd
a272cf9b0c46e2be49a5a05feb4a4a2dd1628a80
InferReactivePlaces accounts for mutable aliasing Fixes T175227223. When inferring reactivity, mutation of a value with a reactive input marks the mutable value as reactive. However, we also need to account for aliases: ```javascript const x = []; const y = x; y.push(props.value); ``` Previously we woul...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReactivePlaces.ts", "patch": "@@ -24,7 +24,11 @@ import {\n eachTerminalOperand,\n } from \"../HIR/visitors\";\n import { hasBackEdge } from \"../Optimization/DeadCodeElimination\";\n-import { isMutable } from \"../ReactiveScopes/In...
2024-01-20T00:03:58
nodejs/node
5909cf3b047f708de6a1373232bfcc899fa97a1d
26f2cbdd59957e9a33a94ee2e0fdbeb9aadb0be6
src: fix dynamically linked OpenSSL version Report the version of OpenSSL that Node.js is running with instead of the version of OpenSSL that Node.js was compiled against. PR-URL: https://github.com/nodejs/node/pull/53456 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "src/node_metadata.cc", "patch": "@@ -23,7 +23,7 @@\n #endif // NODE_BUNDLED_ZLIB\n \n #if HAVE_OPENSSL\n-#include <openssl/opensslv.h>\n+#include <openssl/crypto.h>\n #if NODE_OPENSSL_HAS_QUIC\n #include <openssl/quic.h>\n #endif\n@@ -55,9 +55,10 @@ static constexpr size_t search(const char* s, ...
2024-06-14T16:51:42
rust-lang/rust
2f06c639c3014cdf3260133a72b4eebd4c924f3d
5db03861b063bad596fef43759df988c6e7e28c1
libm: Fix acoshf and acosh for negative inputs The acosh functions were incorrectly returning finite values for some negative inputs (should be NaN for any `x < 1.0`) The bug was inherited when originally ported from musl, and this patch follows their fix for single-precision acoshf in [1]. A similar fix is applied ...
[ { "path": "library/compiler-builtins/libm-test/src/precision.rs", "patch": "@@ -266,6 +266,15 @@ impl MaybeOverride<(f64,)> for SpecialCase {\n return XFAIL_NOCHECK;\n }\n \n+ if ctx.base_name == BaseName::Acosh\n+ && input.0 < 1.0\n+ && actual.is_nan()\n+ ...
2026-02-02T23:14:54
golang/go
13b1261175efde5aac7c4c7f6f66ae3b2c609a2d
116b82354ce53dea7b139039adbda3231689b02d
cmd/compile/internal/devirtualize: do not select a zero-weight edge as the hottest one When both a direct call and an interface call appear on the same line, PGO devirtualization may make a suboptimal decision. In some cases, the directly called function becomes a candidate for devirtualization if no other relevant ou...
[ { "path": "src/cmd/compile/internal/devirtualize/pgo.go", "patch": "@@ -741,7 +741,7 @@ func findHotConcreteCallee(p *pgoir.Profile, caller *ir.Func, call *ir.CallExpr,\n \t\thottest = e\n \t}\n \n-\tif hottest == nil {\n+\tif hottest == nil || hottest.Weight == 0 {\n \t\tif base.Debug.PGODebug >= 2 {\n \t\...
2025-03-06T14:54:17
facebook/react
29fbf6f62625c4262035f931681c7b7822ca9843
4c63dc7bddeea8b44466e918708ea44f76b05378
Convert ReactError-test to createRoot (#27995)
[ { "path": "packages/shared/__tests__/ReactError-test.internal.js", "patch": "@@ -9,7 +9,8 @@\n 'use strict';\n \n let React;\n-let ReactDOM;\n+let ReactDOMClient;\n+let act;\n \n describe('ReactError', () => {\n let globalErrorMock;\n@@ -27,7 +28,8 @@ describe('ReactError', () => {\n }\n jest.rese...
2024-01-19T19:35:56
electron/electron
db27b9f433f6681c42c9f22910d5908e172a67fe
be32740991785c066052d710ddabd7a928f9323a
chore: initial linting fixes for JS in docs/fiddles (#37689)
[ { "path": "docs/fiddles/features/drag-and-drop/main.js", "patch": "@@ -1,9 +1,9 @@\n-const { app, BrowserWindow, ipcMain, nativeImage, NativeImage } = require('electron')\n+const { app, BrowserWindow, ipcMain } = require('electron')\n const path = require('path')\n const fs = require('fs')\n const https = r...
2023-04-05T13:42:20
nodejs/node
7430638df8ce347ee2a53de6a734948e848ab6c1
ee5c6b660468bb4357ac79bc4840e268e1b291fc
fs: do not crash if the watched file is removed while setting up watch Signed-off-by: Matteo Collina <hello@matteocollina.com> PR-URL: https://github.com/nodejs/node/pull/53452 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Marco Ippolito <marcoippolito54@gmail...
[ { "path": "lib/internal/fs/recursive_watch.js", "patch": "@@ -83,7 +83,7 @@ class FSWatcher extends EventEmitter {\n this.#closed = true;\n \n for (const file of this.#files.keys()) {\n- this.#watchers.get(file).close();\n+ this.#watchers.get(file)?.close();\n this.#watchers.delete(f...
2024-06-17T14:28:12
rust-lang/rust
5db03861b063bad596fef43759df988c6e7e28c1
a47510aa0f13ec8e76c4c4ca904e96b85cbd5126
libm-test: Remove exception for fmaximum_num tests This was left over from f6a23a78c44e ("fmaximum,fminimum: Fix incorrect result and add tests"). [ added context to body - Trevor ]
[ { "path": "library/compiler-builtins/libm-test/src/precision.rs", "patch": "@@ -401,14 +401,6 @@ fn binop_common<F1: Float, F2: Float>(\n return SKIP;\n }\n \n- // FIXME(#939): this should not be skipped, there is a bug in our implementationi.\n- if ctx.base_name == BaseName::FmaximumNum\n...
2026-02-02T22:35:17
vercel/next.js
1beea16b933a7acd3a180050a663d8ff1c41537f
dd374da668829a04ed310c1536069ca88cad3ca9
chore: fix typos in rust files (#81113) Co-authored-by: Niklas Mischkulnig <4586894+mischnic@users.noreply.github.com>
[ { "path": ".typos.toml", "patch": "@@ -0,0 +1,56 @@\n+# https://github.com/crate-ci/typos\n+# cargo install typos-cli\n+# typos\n+\n+[default]\n+check-filename = false\n+extend-ignore-identifiers-re = [\"SEPARATORs*\", \"IIFEs*\"]\n+\n+[default.extend-words]\n+rto = \"rto\"\n+wdth = \"wdth\"\n+\n+[type.rust...
2025-07-01T19:07:41
golang/go
dceb77a33676c8a4efb9c63267c351268848de6f
903d7b786209dbb7f119681b8ac5620b240dd2a0
cmd/vet: add waitgroup analyzer + relnote Fixes #18022 Change-Id: I92d1939e9d9f16824655c6c909a5f58ed9500014 Reviewed-on: https://go-review.googlesource.com/c/go/+/661519 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Commi...
[ { "path": "doc/next/3-tools.md", "patch": "@@ -24,3 +24,12 @@ specifying the command's current version.\n \n ### Cgo {#cgo}\n \n+### Vet {#vet}\n+\n+<!-- go.dev/issue/18022 -->\n+\n+The `go vet` command now includes the\n+[waitgroup](https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/waitgroup)\n+anal...
2025-03-28T22:04:16
facebook/react
a272cf9b0c46e2be49a5a05feb4a4a2dd1628a80
c8323f3b42887e292fec37a7dbb476f0fabc1d09
Reactive control fixtures use multipass evaluation Updates all of the reactive control dependency fixtures to use multipass evaluation in sprout.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactive-control-dependency-do-while-indirect.expect.md", "patch": "@@ -16,8 +16,17 @@ function Component(props) {\n \n export const FIXTURE_ENTRYPOINT = {\n fn: Component,\n- params: [{ limit: 10 }],\n- // TODO: test...
2024-01-19T19:04:18
electron/electron
be32740991785c066052d710ddabd7a928f9323a
b8a21dbcd7d784cc4999754b4826d62e0499307a
docs: fix `app.getPreferredSystemLanguages()` return type (#37821) docs: fix app.getPreferredSystemLanguages() return type
[ { "path": "docs/api/app.md", "patch": "@@ -751,14 +751,21 @@ This API can be used for purposes such as deciding what language to present the\n \n Here are some examples of return values of the various language and locale APIs with different configurations:\n \n-* For Windows, where the application locale is...
2023-04-05T13:31:53
nodejs/node
177d63f5735700fda4258e646b1435349acffd71
d3025372d8c600d542f67557ad1ec44baa76bd98
stream: callback should be called when pendingcb is 0 Fixes: https://github.com/nodejs/node/issues/46170 PR-URL: https://github.com/nodejs/node/pull/53438 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina...
[ { "path": "lib/internal/streams/end-of-stream.js", "patch": "@@ -213,7 +213,8 @@ function eos(stream, options, callback) {\n } else if (\n !readable &&\n (!willEmitClose || isReadable(stream)) &&\n- (writableFinished || isWritable(stream) === false)\n+ (writableFinished || isWritable(stream)...
2024-06-15T07:30:11
vercel/next.js
573e31d0c15fc664050c1e9e326270584f8a76b8
1fc2dfb2fa3cc927bc08912e2396313b9d728f6c
Run front-sync after deployment tests finish (#81023) The front-sync job has been running directly have new versions are published, but deployment tests only run after a release as well. This PR runs the front-sync job after the deployment tests. There is a new input on the workflow the front-sync triggers to immedia...
[ { "path": ".github/workflows/notify_release.yml", "patch": "@@ -1,83 +0,0 @@\n-# A workflow runs when a release is published, dispatches a new event to the vercel/turbo\n-# to notify its release. Turbopack, and other integration workflow will subscribe to this event.\n-name: Notify new Next.js release\n-on:...
2025-07-01T18:36:48
golang/go
75bf2a8c493291481af72a07a818c432085919ca
7177f2400995901b666b1ed94d87c15c8c410fab
internal/poll: defer IOCP association until first IO operation Defer the association of the IOCP to the handle until the first I/O operation is performed. A handle can only be associated with one IOCP at a time, so this allows external code to associate the handle with their own IOCP and still be able to use a FD (th...
[ { "path": "src/internal/poll/fd_plan9.go", "patch": "@@ -36,6 +36,10 @@ type FD struct {\n \tisFile bool\n }\n \n+func (fd *FD) initIO() error {\n+\treturn nil\n+}\n+\n // We need this to close out a file descriptor when it is unlocked,\n // but the real implementation has to live in the net package because...
2025-04-01T08:19:36
facebook/react
601dba82175edd321c833395514081fe3aa6f445
feed8f3f95836a99eeaf5dc64d1c9ed62217c1de
Convert ReactErrorLoggingRecovery to createRoot (#28003)
[ { "path": "packages/react-dom/src/__tests__/ReactErrorLoggingRecovery-test.js", "patch": "@@ -17,7 +17,8 @@ if (global.window) {\n \n // The issue only reproduced when React was loaded before JSDOM.\n const React = require('react');\n-const ReactDOM = require('react-dom');\n+const ReactDOMClient = require('...
2024-01-19T17:07:08
electron/electron
3f42040a1b46f3c3bb338730f30f793ceadee386
e9d5c3517cf3a6090826d7e8ca91c2d059a7caca
fix: Fn+F fullscreen transitioning on macOS (#37803)
[ { "path": "shell/browser/api/electron_api_web_contents_mac.mm", "patch": "@@ -7,6 +7,8 @@\n #include \"shell/browser/ui/cocoa/event_dispatching_window.h\"\n #include \"shell/browser/web_contents_preferences.h\"\n #include \"ui/base/cocoa/command_dispatcher.h\"\n+#include \"ui/base/cocoa/nsmenu_additions.h\"...
2023-04-04T13:16:59
nodejs/node
15b39026197437493af224f0fe69aa878ec1abd3
3d09e579d39eab71af2c1476854846be17dde7ee
deps: sqlite: fix Windows compilation This is equivalent to the following upstream change: https://sqlite.org/src/info/6c103aee6f146869 Original commit message: Change constant expressions to pre-computed constants, because apparently MSVC on ARM requires that. [forum:/forumpost/4feb1685cced0a8e|Forum th...
[ { "path": "deps/sqlite/sqlite3.c", "patch": "@@ -24886,8 +24886,8 @@ static const struct {\n /* 1 */ { 6, \"minute\", 7.7379e+12, 60.0 },\n /* 2 */ { 4, \"hour\", 1.2897e+11, 3600.0 },\n /* 3 */ { 3, \"day\", 5373485.0, 86400.0 },\n- /* 4 */ { 5, \"month\", 176546.0,...
2024-06-12T00:40:08
electron/electron
e9d5c3517cf3a6090826d7e8ca91c2d059a7caca
91f62ae73f18c567d19e42e3cfe8cb809160fd8a
fix: apply csp correctly when contextIsolation: false (#37756) * fix: apply csp correctly when contextIsolation: false * better comments
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -184,9 +184,10 @@ v8::ModifyCodeGenerationFromStringsResult ModifyCodeGenerationFromStrings(\n v8::Local<v8::Context> context,\n v8::Local<v8::Value> source,\n bool is_code_like) {\n- // If we're running with contextIsolation enabled in th...
2023-04-04T08:31:49
golang/go
4c1b8ca98c716f0499bb30fd141aa6d4dec7390c
4c32b1cc753e9005ed7c741bf69d3cb69ee3a56c
cmd/internal/obj/riscv: add support for vector fixed-point arithmetic instructions Add support for vector fixed-point arithmetic instructions to the RISC-V assembler. This includes single width saturating addition and subtraction, averaging addition and subtraction and scaling shift instructions. Change-Id: I9aa27e95...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64.s", "patch": "@@ -863,6 +863,80 @@ start:\n \tVMVVX\t\tX10, V3\t\t\t\t// d741055e\n \tVMVVI\t\t$15, V3\t\t\t\t// d7b1075e\n \n+\t// 31.12.1: Vector Single-Width Saturating Add and Subtract\n+\tVSADDUVV\tV1, V2, V3\t\t\t// d7812082\n+\tVSADDUVV\tV1, V2, V0...
2025-01-05T13:30:30
facebook/react
4aa60d32b954ce14ad84892f5b4f937df3e42e28
a0e90065c60223ed14caa0a233e2bcf5a903a821
[patch][dce] Patch dce to have separate mark and sweep phases --- Previously, our logic was something like: ```js fixed-point-loop { foreach instruction { mark referenced identifiers // assume that usages are always visited before declarations if (instruction is decl) { prune(instruction); } } f...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Optimization/DeadCodeElimination.ts", "patch": "@@ -29,62 +29,17 @@ import { assertExhaustive, retainWhere } from \"../Utils/utils\";\n * Note that unreachable blocks are already pruned during HIR construction.\n */\n export function deadCodeElimi...
2024-01-18T23:29:19
rust-lang/rust
a47510aa0f13ec8e76c4c4ca904e96b85cbd5126
345acb1afda663de14f74dc9b617b91b8e989139
Allow unstable_name_collisions In recent nightlies we are hitting errors like the following: error: an associated constant with this name may be added to the standard library in the future --> libm/src/math/support/float_traits.rs:248:48 | 248 | const SIGN_MASK: Self::Int = 1 << ...
[ { "path": "library/compiler-builtins/compiler-builtins/src/lib.rs", "patch": "@@ -11,11 +11,11 @@\n #![feature(repr_simd)]\n #![feature(macro_metavar_expr_concat)]\n #![feature(rustc_attrs)]\n-#![feature(float_bits_const)]\n #![cfg_attr(f16_enabled, feature(f16))]\n #![cfg_attr(f128_enabled, feature(f128))]...
2026-02-06T22:14:58
vercel/next.js
a8ae109b3363f74356e04893d3bbf2deaa6b0d05
12ee9b2545bfcad779ae746ed83d44e0afeffeae
[turbopack] Implement `Issue::source` on more Issue subtypes (#80874) ### What Fill in `source` implementations for the majority of `Issue` implementations, leaving `TODO`s in a number of the buggy or tricky ones. ### Why? Currently `Issue` has both `file_path()` and `source()`. * `file_path()` tells us where the e...
[ { "path": "crates/next-api/src/middleware.rs", "patch": "@@ -86,7 +86,8 @@ impl MiddlewareEndpoint {\n userland_module,\n );\n \n- let config = parse_config_from_source(userland_module, NextRuntime::Edge).await?;\n+ let config =\n+ parse_config_from_source(*self....
2025-07-01T16:44:01
nodejs/node
1872167bb7b2cd69fb6e507bfcb6b9444d505904
4e58cde589dfd980c8976b158853a331142e1e4b
src: add utilities to help debugging reproducibility of snapshots - Print offsets in blob serializer - Add a special node:generate_default_snapshot ID to generate the built-in snapshot. - Improve logging - Add a test to check the reproducibilty of the snapshot PR-URL: https://github.com/nodejs/node/pull/50983 Refs:...
[ { "path": "src/blob_serializer_deserializer-inl.h", "patch": "@@ -238,7 +238,8 @@ size_t BlobSerializer<Impl>::WriteVector(const std::vector<T>& data) {\n if (is_debug) {\n std::string str = std::is_arithmetic_v<T> ? \"\" : ToStr(data);\n std::string name = GetName<T>();\n- Debug(\"\\nWriteVect...
2024-03-22T18:51:49
golang/go
4c32b1cc753e9005ed7c741bf69d3cb69ee3a56c
6d418096b2dfe2a2e47b7aa83b46748fb301e6cb
runtime: fix plan9 monotonic time, crypto randomness Open /dev/bintime at process start on Plan 9, marked close-on-exec, hold it open for the duration of the process, and use it for obtaining time. The change to using /dev/bintime also sets up for an upcoming Plan 9 change to add monotonic time to that file. If the m...
[ { "path": "src/runtime/env_plan9.go", "patch": "@@ -30,7 +30,7 @@ const (\n func goenvs() {\n \tbuf := make([]byte, envBufSize)\n \tcopy(buf, envDir)\n-\tdirfd := open(&buf[0], _OREAD, 0)\n+\tdirfd := open(&buf[0], _OREAD|_OCEXEC, 0)\n \tif dirfd < 0 {\n \t\treturn\n \t}\n@@ -40,7 +40,7 @@ func goenvs() {\n...
2025-03-11T15:23:24
facebook/react
a0e90065c60223ed14caa0a233e2bcf5a903a821
f88e7fe4120b8355ec290acea54036874edec641
[patch][babel] check babel identifier before lowering to HoistedConst Same babel identifier issue as #2510 but for HoistedConst Not sure how we should best test this -- one possibility is using constant prop. Currently, we have false positives for HoistedConst that prevent constant propagation. I don't want to ov...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -372,6 +372,9 @@ function lowerStatement(\n */\n s.traverse({\n Identifier(id: NodePath<t.Identifier>) {\n+ if (!id.isReferencedIdentifier()) {\n+ return;\n+ ...
2024-01-18T23:29:19
electron/electron
4c8583c36525b4fe0778eb6585881b6327737802
0b4ef2b1e51edb325bbbf8b7d15ece88be9d0e9e
test: remove workaround for fixed Menu.closePopup issue (#37802)
[ { "path": "spec/api-menu-spec.ts", "patch": "@@ -817,10 +817,7 @@ describe('Menu module', function () {\n it('should emit menu-will-close event', (done) => {\n menu.on('menu-will-close', () => { done(); });\n menu.popup({ window: w });\n- // https://github.com/electron/electron/issues/1...
2023-04-04T08:27:51
vercel/next.js
12ee9b2545bfcad779ae746ed83d44e0afeffeae
7131d706ae63bd8314ffbd91ca4bd08b32e7855d
[turbopack] Defend against json cyles in our execution tests (#81079) Handle circular references in Jest test results Otherwise failing tests may crash the IPC mechanism. e.g. a test failure induced this ``` ──── STDERR: turbopack-tests::execution test_tests__execution__turbopack__basic__esm_this Input:...
[ { "path": "turbopack/crates/turbopack-tests/js/jest-entry.ts", "patch": "@@ -35,7 +35,23 @@ export default async function run() {\n \n await import('TESTS')\n \n- const jestResult = await jest.run()\n+ let jestResult = await jest.run()\n+ // Jest test results can contain references to arbitrary objects...
2025-07-01T16:12:15
golang/go
6d418096b2dfe2a2e47b7aa83b46748fb301e6cb
c6a1dc47297a47e6111e3a00911393c355800023
os: avoid symlink races in RemoveAll on Windows Make the openat-using version of RemoveAll use the appropriate Windows equivalent, via new portable (but internal) functions added for os.Root. We could reimplement everything in terms of os.Root, but this is a bit simpler and keeps the existing code structure. Fixes #...
[ { "path": "src/internal/syscall/unix/constants.go", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build unix\n+//go:build unix || wasip1\n \n package unix\n ", "additions": 1, "deletions": 1, "langu...
2025-03-28T23:14:43
electron/electron
f40bd2da23ae04be32398f22eebfd558dec0068f
e31f101712ac7ce1c0e54671241695d5b8c57211
fix: record helper error messages in electron_main_mac (#37807)
[ { "path": "shell/app/electron_main_mac.cc", "patch": "@@ -18,13 +18,35 @@\n #include \"sandbox/mac/seatbelt_exec.h\" // nogncheck\n #endif\n \n+extern \"C\" {\n+// abort_report_np() records the message in a special section that both the\n+// system CrashReporter and Crashpad collect in crash reports. Using...
2023-04-03T20:14:19
facebook/react
f88e7fe4120b8355ec290acea54036874edec641
241a615732a71e8da90e17812d855e4c40f0d3b9
[repro] add fixture repro for destructuring bug
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-destructuring-same-property-identifier-names.expect.md", "patch": "@@ -0,0 +1,51 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const {\n+ x: { destructured },\n+ sameName: renamed,\n+ } ...
2024-01-18T23:29:18
vercel/next.js
7131d706ae63bd8314ffbd91ca4bd08b32e7855d
9c3b6f76c1b8bbdc2d05b483a4ed4176178228b3
Fix flakey devtools test (#81127) A regression from #81085 @huozhi The problem is that `openDevToolsIndicatorPopover` doesn't tell anymore whether the popup menu is open, but if the panel is open, but the "Try Turbopack" text is in the popup menu (only in the old UI).
[ { "path": "test/development/client-dev-overlay/index.test.ts", "patch": "@@ -2,12 +2,12 @@ import { FileRef } from 'e2e-utils'\n import { Playwright } from 'next-webdriver'\n import { nextTestSetup } from 'e2e-utils'\n import { join } from 'path'\n-import { openDevToolsIndicatorPopover, retry } from 'next-t...
2025-07-01T16:01:18
golang/go
c6a1dc47297a47e6111e3a00911393c355800023
b9cbb65384f6bebd58f7a8354759b8c7b1bbb13f
cmd/link: close file in tempdir so Windows can delete it Fixes #73098 Change-Id: I9f5570903071b15df9e4f8a1820414f305db9d35 Reviewed-on: https://go-review.googlesource.com/c/go/+/661915 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Damien Neil <dneil@google.com>...
[ { "path": "src/cmd/link/link_test.go", "patch": "@@ -1564,6 +1564,7 @@ func TestLinknameBSS(t *testing.T) {\n \tif err != nil {\n \t\tt.Fatalf(\"fail to open executable: %v\", err)\n \t}\n+\tdefer f.Close()\n \tsyms, err := f.Symbols()\n \tif err != nil {\n \t\tt.Fatalf(\"fail to get symbols: %v\", err)", ...
2025-03-31T22:03:14
nodejs/node
922feb1ff5527f4442e85d7f61cb95b120df677c
2e1f7720dfef643b920900cce14eb225ffa2b526
stream: pipe to a closed or destroyed stream is not allowed in pipeline PR-URL: https://github.com/nodejs/node/pull/53241 Fixes: https://github.com/nodejs/node/issues/52622 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -2621,6 +2621,12 @@ or a pipeline ends non gracefully with no explicit error.\n An attempt was made to call [`stream.push()`][] after a `null`(EOF) had been\n pushed to the stream.\n \n+<a id=\"ERR_STREAM_UNABLE_TO_PIPE\"></a>\n+\n+### `ERR_STREAM_UNABLE_TO_PIPE`\...
2024-06-14T08:27:56
electron/electron
601217218759d088f12680a428fead8c8b26a5e0
a75b892e9080753dcc5e1344f2a59fa641a65be1
fix: set background color for menu bar on Windows (#37766)
[ { "path": "shell/browser/ui/views/menu_bar.cc", "patch": "@@ -35,12 +35,11 @@ const char MenuBar::kViewClassName[] = \"ElectronMenuBar\";\n MenuBar::MenuBar(NativeWindow* window, RootView* root_view)\n : background_color_(kDefaultColor), window_(window), root_view_(root_view) {\n const ui::NativeTheme...
2023-03-31T16:06:09
vercel/next.js
6f0225a09b27679310eddc0858172355fd875def
f9a7d73ac25b3267837fafd61151a28394dcdf29
[devtools]: default to issues tab when error overlay is programmatically toggled (#81091) When there's a build error and we toggle the error overlay on page load, we should ensure that the issues tab is used rather than the one stored in session storage, to avoid the case where we bring up the modal intending to show ...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel.tsx", "patch": "@@ -15,6 +15,7 @@ import {\n STORAGE_KEY_SCALE,\n STORAGE_KEY_POSITION,\n ACTION_ERROR_OVERLAY_CLOSE,\n+ STORAGE_KEY_ACTIVE_TAB,\n } from '../../shared'\n import { css } from '../../utils/c...
2025-07-01T13:07:20
facebook/react
241a615732a71e8da90e17812d855e4c40f0d3b9
8f18b8233f2e68d00e8d175a8bed61c9db601f50
[babel][contextvar] Patch context identifier babel logic; only use referenced identifiers --- A few fixes for finding context identifiers: Previously, we counted every babel identifier as a reference. This is problematic because babel counts every string symbol as an identifier. ```js print(x); // x is an ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/FindContextIdentifiers.ts", "patch": "@@ -8,18 +8,28 @@\n import type { NodePath } from \"@babel/traverse\";\n import type * as t from \"@babel/types\";\n import { CompilerError } from \"../CompilerError\";\n-import { Set_union } from \"../Utils...
2024-01-18T23:29:18
golang/go
b9cbb65384f6bebd58f7a8354759b8c7b1bbb13f
eec3745bd7861f447bfe5fe5a27314079d46acec
os,internal/poll: support I/O on overlapped handles not added to the poller Calling syscall.ReadFile and syscall.WriteFile on overlapped handles always need to be passed a valid *syscall.Overlapped structure, even if the handle is not added to a IOCP (like the Go runtime poller). Else, the syscall will fail with ERROR...
[ { "path": "doc/next/6-stdlib/99-minor/os/15388.md", "patch": "@@ -0,0 +1,6 @@\n+On Windows, [NewFile] supports overlapped (a.k.a non-blocking) file handles even\n+when the handle can't be added to the Go runtime I/O Completion Port (IOCP), normally\n+because it is already attached to another IOCP. The I/O o...
2025-03-31T09:43:12
nodejs/node
2e1f7720dfef643b920900cce14eb225ffa2b526
bcbb2f7b16054469b33df50b5d993501b7e0daa0
src: fix typo in env.cc PR-URL: https://github.com/nodejs/node/pull/53418 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "src/env.cc", "patch": "@@ -520,7 +520,7 @@ void IsolateData::CreateProperties() {\n CreateEnvProxyTemplate(this);\n }\n \n-constexpr uint16_t kDefaultCppGCEmebdderID = 0x90de;\n+constexpr uint16_t kDefaultCppGCEmbedderID = 0x90de;\n Mutex IsolateData::isolate_data_mutex_;\n std::unordered_map<u...
2024-06-14T01:27:11
electron/electron
7c4f4c537e9cc869df24cec050792fd743fbd06b
4ca6fb3c4e2e0f66eea67eee4745f0afa14c135e
build: fix build-tools schema in config (#37765)
[ { "path": ".devcontainer/on-create-command.sh", "patch": "@@ -35,8 +35,13 @@ if [ ! -f $buildtools/configs/evm.testing.json ]; then\n write_config() {\n echo \"\n {\n- \\\"root\\\": \\\"/workspaces/gclient\\\",\n \\\"goma\\\": \\\"$1\\\",\n+ \\\"root\\\": \\\"...
2023-03-31T10:20:02
vercel/next.js
41eaf0e83fbcf6780507e6e1e9050b1ca5ab1775
52060515d5241f4c80b36716b5b1710d7bf93db7
[build] remove the default imports for error boundary (#81000) After we have all the conventions properly defined in the loader tree including the built-in ones since #80957 , the fix in #59085 is not required anymore. If you have custom conventions, they'll be bundled. If you don't have the custom conventions, t...
[ { "path": "packages/next/src/server/app-render/entry-base.ts", "patch": "@@ -29,11 +29,6 @@ export {\n export * as serverHooks from '../../client/components/hooks-server-context'\n export { HTTPAccessFallbackBoundary } from '../../client/components/http-access-fallback/error-boundary'\n export { createMetad...
2025-07-01T09:44:28
nodejs/node
852fa5581396ba147459e041808de4c1024cf39a
2bb39f8acffffb6939b7067e9044f6be1b1d8475
lib: reduce amount of caught URL errors PR-URL: https://github.com/nodejs/node/pull/52658 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Daniel Lemire <daniel@lemire.me>
[ { "path": "lib/internal/modules/esm/hooks.js", "patch": "@@ -33,7 +33,7 @@ const {\n ERR_WORKER_UNSERIALIZABLE_ERROR,\n } = require('internal/errors').codes;\n const { exitCodes: { kUnsettledTopLevelAwait } } = internalBinding('errors');\n-const { URL } = require('internal/url');\n+const { URLParse } = re...
2024-06-13T18:32:59
facebook/react
b3003047101b4c7a643788a8faf576f7e370fb45
5c607369ceebe56d85175df84b7b6ad58dd25e1f
Update error decoder URL (#27240) Updates the error decoder to the URL for the new docs site. - Switches the domain from reactjs.org to react.dev - Switches to put the error code in the URL for SSG - All params are still in the query Example without args: - Before: `https://reactjs.org/docs/error-decoder.ht...
[ { "path": "packages/shared/__tests__/ReactError-test.internal.js", "patch": "@@ -41,7 +41,7 @@ describe('ReactError', () => {\n it('should error with minified error code', () => {\n expect(() => ReactDOM.render('Hi', null)).toThrowError(\n 'Minified React error #200; visit ' +\n- 'https:/...
2024-01-18T02:41:07
golang/go
bfc209518e3f6a15407139d70f31ab4a5dd646c7
391dde29a37f3fd450f7d61e3f220930e0164b89
internal/runtime/maps: speed up small map lookups ~1.7x for unpredictable keys On master, lookups on small Swiss Table maps (<= 8 elements) for non-specialized key types are seemingly a performance regression compared to the Go 1.23 map implementation (reported in #70849). Currently, a linear scan is used for gets in ...
[ { "path": "src/internal/runtime/maps/map.go", "patch": "@@ -439,15 +439,10 @@ func (m *Map) getWithKeySmall(typ *abi.SwissMapType, hash uintptr, key unsafe.Po\n \t\tdata: m.dirPtr,\n \t}\n \n-\th2 := uint8(h2(hash))\n-\tctrls := *g.ctrls()\n+\tmatch := g.ctrls().matchH2(h2(hash))\n \n-\tfor i := uintptr(0);...
2024-12-07T21:17:33
electron/electron
2b9dae4b065e9fea59c90ddee2acf2c01b9ebd59
2e1f803f374a1d262be21b3b4e355698e1753daa
feat: add `will-frame-navigate` event (#34418) * feat: add will-navigate-in-frame event to webContents * docs: add documentation for webview will-frame-navigate event * feat: Eliminate isInPlace argument from will-frame-navigate event * fix: Fire will-frame-navigate before will-navigate * feat: send will-f...
[ { "path": "docs/api/web-contents.md", "patch": "@@ -19,6 +19,36 @@ const contents = win.webContents\n console.log(contents)\n ```\n \n+## Navigation Events\n+\n+Several events can be used to monitor navigations as they occur within a `webContents`.\n+\n+### Document Navigations\n+\n+When a `webContents` nav...
2023-03-28T14:55:41
vercel/next.js
80a580573e8a1ba1305a254b96e1071a441d87cc
79572631397b447884ef037df027db5d1d9ae794
docs: fix grammatical error in upgrading to v15 guide (#81038) Title is pretty self descriptive. <img width="667" alt="image" src="https://github.com/user-attachments/assets/211f9eee-5d39-494e-abb9-9cad996b75be" /> Removes the word "you" for better grammatical clarity. Co-authored-by: Joseph <joseph.chamochumbi@ver...
[ { "path": "docs/01-app/02-guides/upgrading/version-15.mdx", "patch": "@@ -22,7 +22,7 @@ npm i next@latest react@latest react-dom@latest eslint-config-next@latest\n \n > **Good to know:**\n >\n-> - If you see a peer dependencies warning, you may need to update `react` and `react-dom` to the suggested version...
2025-07-01T08:48:47
nodejs/node
c64a00a12db5f0afac102cc04f968d36ad1d62c8
473410d379ec69ed2abf7f13d73c297e2853c03d
tools: fix c-ares update script PR-URL: https://github.com/nodejs/node/pull/53414 Fixes: https://github.com/nodejs/node/issues/53407 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/dep_updaters/update-c-ares.sh", "patch": "@@ -11,19 +11,25 @@ DEPS_DIR=\"$BASE_DIR/deps\"\n # shellcheck disable=SC1091\n . \"$BASE_DIR/tools/dep_updaters/utils.sh\"\n \n-NEW_VERSION=\"$(\"$NODE\" --input-type=module <<'EOF'\n+NEW_VERSION_METADATA=\"$(\"$NODE\" --input-type=module <<'EOF'\n...
2024-06-13T07:37:46
facebook/react
9b6605d313bad279722ac8ef7ed0e03bb16d111e
fb0cf4f83307ff7d4da06f6ce0c90d4ef45bdc37
Remove [ReactForget] prefix from eslint messages Remove [ReactForget] prefix from eslint messages No other lint warnings have a prefix, removing this is cleaner.
[ { "path": "compiler/packages/eslint-plugin-react-forget/__tests__/ReactForgetDiagnostics-test.ts", "patch": "@@ -104,7 +104,7 @@ const tests: ForgetTestCases = {\n errors: [\n {\n message:\n- \"[ReactForget] React Forget has bailed out of optimizing this component as one o...
2024-01-16T18:47:20
golang/go
b9934d855c4635edf02092a72802017676abd8eb
5ec76ae5aa965208d820a0bde8f0abd685c17ecc
internal/poll: honor ERROR_OPERATION_ABORTED if pipe is not closed FD.Read converts a syscall.ERROR_OPERATION_ABORTED error to ErrFileClosing. It does that in case the pipe operation was aborted by a CancelIoEx call in FD.Close. It doesn't take into account that the operation might have been aborted by a CancelIoEx c...
[ { "path": "src/internal/poll/fd_mutex.go", "patch": "@@ -250,3 +250,8 @@ func (fd *FD) writeUnlock() {\n \t\tfd.destroy()\n \t}\n }\n+\n+// closing returns true if fd is closing.\n+func (fd *FD) closing() bool {\n+\treturn atomic.LoadUint64(&fd.fdmu.state)&mutexClosed != 0\n+}", "additions": 5, "del...
2025-03-28T19:38:34
electron/electron
4c6092e151b070db2b87358761db83b99be511a5
b72f81ab5b79bd86856bd46ad99a540fa082a4de
fix: draggable regions shouldn't capture clicks on frames windows (#37594)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1988,6 +1988,9 @@ void WebContents::MessageHost(const std::string& channel,\n \n void WebContents::UpdateDraggableRegions(\n std::vector<mojom::DraggableRegionPtr> regions) {\n+ if (owner_window() && owner_window()->has_frame())\...
2023-03-28T14:52:28
vercel/next.js
b3a6dcba71563b7e958e4524d99bd7d136d57f29
fc008727f0034eba395cafb7f4d68a6de3cac096
Turbopack: instrument scope hoisting with tracing spans (#81078) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For...
[ { "path": "turbopack/crates/turbopack-cli/benches/small_apps.rs", "patch": "@@ -83,6 +83,7 @@ fn bench_small_apps(c: &mut Criterion) {\n no_sourcemap: false,\n no_minify: false,\n force_memory_cleanup: true,\n+ ...
2025-07-01T06:20:28
facebook/react
60a927d04ad3888facebcdf7da620aa1cfc9528f
33068c9db9153a479bb29d138397cb9c32fabfdd
Fix: useOptimistic should return passthrough value when there are no updates pending (#27936) This fixes a bug that happened when the canonical value passed to useOptimistic without an accompanying call to setOptimistic. In this scenario, useOptimistic should pass through the new canonical value. I had written te...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -1256,10 +1256,19 @@ function updateReducerImpl<S, A>(\n queue.pending = null;\n }\n \n- if (baseQueue !== null) {\n+ const baseState = hook.baseState;\n+ if (baseQueue === null) {\n+ // If there are no pending updates, t...
2024-01-14T02:37:35
golang/go
5ec76ae5aa965208d820a0bde8f0abd685c17ecc
8f6c083d7bf68a766073c50ceb8ea405a3fe7bed
weak: clarify Pointer equality semantics The docs currently are imprecise about comparisons. This could lead users to believe that objects of the same type, allocated at the same address, could produce weak pointers that are equal to previously-created weak pointers. This is not the case. Weak pointers map to objects,...
[ { "path": "src/weak/pointer.go", "patch": "@@ -23,13 +23,15 @@ import (\n // the lifetimes of separate values (for example, through a map with weak\n // keys).\n //\n-// Two Pointer values always compare equal if the pointers from which they were\n-// created compare equal. This property is retained even af...
2025-01-23T15:51:35
electron/electron
b72f81ab5b79bd86856bd46ad99a540fa082a4de
97b19a794676217de1bf1756f003fe7515b8c040
ci: fixup update appveyor image workflow (#37684) Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": ".github/workflows/update_appveyor_image.yml", "patch": "@@ -40,7 +40,9 @@ jobs:\n if: ${{ env.APPVEYOR_IMAGE_VERSION }}\n uses: mikefarah/yq@1c7dc0e88aad311c89889bc5ce5d8f96931a1bd0 # v4.27.2\n with:\n- cmd: yq '.image = \"${{ env.APPVEYOR_IMAGE_VERSION }}\"' \"appveyor.y...
2023-03-28T00:57:27
vercel/next.js
fc008727f0034eba395cafb7f4d68a6de3cac096
bab9377990b9c437b176a6f2961e0edb3563d9e3
Turbopack: guard against more eventual consistency (#81080) These might be `None` due to eventual consistency. Don't crash the build because of that.
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -1302,8 +1302,16 @@ async fn merge_modules(\n \n let export_contexts = contents\n .iter()\n- .map(|(module, content)| (*module, content.export_contexts.as_ref().unwrap()))\n- .collect::<FxHashMap<_, _>>();\n...
2025-07-01T06:20:24