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
d080f0db1f7d05bbf058425485f14c29f471a7ba
4379dfb1fdcd6a862ae5c3c74757efdc5bc11b0d
module: unify TypeScript and .mjs handling in CommonJS This refactors the CommonJS loading a bit to create a center point that handles source loading (`loadSource`) and make format detection more consistent to pave the way for future synchronous hooks. - Handle .mjs in the .js handler, similar to how .cjs has been ha...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -100,6 +100,9 @@ const kIsMainSymbol = Symbol('kIsMainSymbol');\n const kIsCachedByESMLoader = Symbol('kIsCachedByESMLoader');\n const kRequiredModuleSymbol = Symbol('kRequiredModuleSymbol');\n const kIsExecuting = Symbol('kIsExecuting');\n+\n+con...
2024-10-31T15:43:57
rust-lang/rust
751b7d5bda0676f55f14a1451c58b6c9cb92bfd3
41198cb9659f3cc7c4a1a3ee97bc4af78bee403e
Build: Add `stdenv.cc.cc.lib` to Nix dependencies Otherwise, it systematically fails on: ``` error: process didn't exit successfully: `[...]/rust/build/bootstrap/debug/rustc [...]/rust/build/bootstrap/debug/rustc -vV` (exit status: 127) --- stderr [...]/rust/build/x86_64-unknown-linux-gnu/stage1/bin/rustc: error whil...
[ { "path": "src/bootstrap/src/core/download.rs", "patch": "@@ -675,6 +675,7 @@ fn fix_bin_or_dylib(out: &Path, fname: &Path, exec_ctx: &ExecutionContext) {\n // the `.nix-deps` location.\n //\n // bintools: Needed for the path of `ld-linux.so` (via `nix-support/dynamic-linker`).\n+ ...
2025-05-16T11:06:27
golang/go
426cf36b4d0c672dc88fc5cef9b0d5db0d2f4fe5
ead249a2e2989c6775235058d38f0e33afdf752a
[dev.simd] runtime: save scalar registers off stack in amd64 async preemption Asynchronous preemption must save all registers that could be in use by Go code. Currently, it saves all of these to the goroutine stack. As a result, the stack frame requirements of asynchronous preemption can be rather high. On amd64, this...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -555,6 +555,8 @@ type G = g\n \n type Sudog = sudog\n \n+type XRegPerG = xRegPerG\n+\n func Getg() *G {\n \treturn getg()\n }", "additions": 2, "deletions": 0, "language": "Go" }, { "path": "src/runtime/lockrank.go", "patch": "@@ -...
2025-04-30T02:55:40
electron/electron
8104c7908a2e281cdb2e380dd2ec49c3ead7fa3e
db2bf1a0d1be6b81ca2d1a6b693b78753d3ba6ea
fix: potential `async_hooks` crash in `NotifyWindowRestore` on Windows (#40576) * fix: potential async_hooks crash in NotifyWindowRestore on Windows * fix: don't use CallbackScope for Error objects
[ { "path": "shell/browser/api/electron_api_auto_updater.cc", "patch": "@@ -32,13 +32,26 @@ void AutoUpdater::OnError(const std::string& message) {\n v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();\n v8::HandleScope handle_scope(isolate);\n v8::Local<v8::Object> wrapper;\n+\n+ // We do not ...
2024-01-26T18:53:07
vercel/next.js
9163d25a3c70358ff782d0c6495e6b0d7e073da9
8f7790ab4750e358b33506d6bb4b2ad505420557
docs: use `resourceFromAttributes` to replace `new Resource()` to obtain `Resource` (#83321) ### What? By following the default method to integrate OpenTelemetry in Next.js applications... this error occurs: ``` 'Resource' only refers to a type, but is being used as a value here. ``` ### Why? `Resource` presented ...
[ { "path": "docs/01-app/02-guides/open-telemetry.mdx", "patch": "@@ -117,13 +117,13 @@ export async function register() {\n \n ```ts filename=\"instrumentation.node.ts\" switcher\n import { OTLPTraceExporter } from '@opentelemetry/exporter-trace-otlp-http'\n-import { Resource } from '@opentelemetry/resources...
2025-09-02T16:57:41
facebook/react
ea6e05912aa43a0bbfbee381752caa1817a41a86
b078c810c787cf13d9bd1958f083b4e3a162a720
[Fiber] Enable Native console.createTask Stacks When Available (#29223) Stacked on #29206 and #29221. This disables appending owner stacks to console when `console.createTask` is available in the environment. Instead we rely on native "async" stacks that end up looking like this with source maps and ignore list ...
[ { "path": "packages/react-devtools-shared/src/backend/DevToolsFiberComponentStack.js", "patch": "@@ -98,3 +98,10 @@ export function getStackByFiberInDevAndProd(\n return '\\nError generating stack: ' + x.message + '\\n' + x.stack;\n }\n }\n+\n+export function supportsNativeConsoleTasks(fiber: Fiber): ...
2024-05-26T21:55:57
nodejs/node
4379dfb1fdcd6a862ae5c3c74757efdc5bc11b0d
a465b206d71ff99e8d7e131638f59adb7cd1ec3a
http: add diagnostic channel `http.client.request.created` PR-URL: https://github.com/nodejs/node/pull/55586 Fixes: https://github.com/nodejs/node/issues/55352 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: theanarkh <theratliter@gmail.com>
[ { "path": "doc/api/diagnostics_channel.md", "patch": "@@ -1123,6 +1123,13 @@ independently.\n \n #### HTTP\n \n+`http.client.request.created`\n+\n+* `request` {http.ClientRequest}\n+\n+Emitted when client creates a request object.\n+Unlike `http.client.request.start`, this event is emitted before the reques...
2024-10-31T13:04:25
rust-lang/rust
27c04763e1b74b3ed241002bfb26061f2b3d66be
41198cb9659f3cc7c4a1a3ee97bc4af78bee403e
Fix typo in doc for core::mem::type_info::Struct
[ { "path": "library/core/src/mem/type_info.rs", "patch": "@@ -153,7 +153,7 @@ pub struct Trait {\n pub is_auto: bool,\n }\n \n-/// Compile-time type information about arrays.\n+/// Compile-time type information about structs.\n #[derive(Debug)]\n #[non_exhaustive]\n #[unstable(feature = \"type_info\", is...
2026-02-19T15:27:22
golang/go
740857f529ce4074c7f9aa1d6f38db8c4a00246c
9ae38be3025fa71ec2967111e0a184f886876cb1
runtime: stash allpSnapshot on the M findRunnable takes a snapshot of allp prior to dropping the P because afterwards procresize may mutate allp without synchronization. procresize is careful to never mutate the contents up to cap(allp), so findRunnable can still safely access the Ps in the slice. Unfortunately, grow...
[ { "path": "src/runtime/proc.go", "patch": "@@ -1059,6 +1059,28 @@ func (mp *m) becomeSpinning() {\n \tsched.needspinning.Store(0)\n }\n \n+// Take a snapshot of allp, for use after dropping the P.\n+//\n+// Must be called with a P, but the returned slice may be used after dropping\n+// the P. The M holds a ...
2025-06-27T21:21:20
electron/electron
db2bf1a0d1be6b81ca2d1a6b693b78753d3ba6ea
6c9f9de40ac6a46da7f5766ec97388030b77f3e6
fix: apply module search paths restriction on worker and child process (#41118)
[ { "path": "filenames.auto.gni", "patch": "@@ -260,7 +260,6 @@ auto_filenames = {\n \"lib/common/deprecate.ts\",\n \"lib/common/init.ts\",\n \"lib/common/ipc-messages.ts\",\n- \"lib/common/reset-search-paths.ts\",\n \"lib/common/web-view-methods.ts\",\n \"lib/common/webpack-globals-pro...
2024-01-26T08:29:04
vercel/next.js
46e4d6ac797dc59832ad8f605d62e3f55485dbcf
abfc98ff542c7589ae598281eaa2f2708767c9bc
fix(Turbopack): Give intercept routes correct regex in generated manifest files (#83128)
[ { "path": "Cargo.lock", "patch": "@@ -4347,6 +4347,7 @@ dependencies = [\n \"qstring\",\n \"react_remove_properties\",\n \"regex\",\n+ \"regress\",\n \"remove_console\",\n \"rustc-hash 2.1.1\",\n \"serde\",\n@@ -5832,9 +5833,9 @@ dependencies = [\n \n [[package]]\n name = \"regress\"\n-version = \"0.1...
2025-09-02T14:13:15
facebook/react
b078c810c787cf13d9bd1958f083b4e3a162a720
d6cfa0f295f4c8b366af15fd20c84e27cdd1fab7
[Fiber] Replace setCurrentDebugFiberInDEV with runWithFiberInDEV (#29221) Stacked on #29044. To work with `console.createTask(...).run(...)` we need to be able to run a function in the scope of the task. The main concern with this, other than general performance, is that it might add more stack frames on very ...
[ { "path": "packages/react-reconciler/src/ReactChildFiber.js", "patch": "@@ -63,10 +63,7 @@ import {createThenableState, trackUsedThenable} from './ReactFiberThenable';\n import {readContextDuringReconciliation} from './ReactFiberNewContext';\n import {callLazyInitInDEV} from './ReactFiberCallUserSpace';\n \...
2024-05-25T15:58:40
nodejs/node
81517faceac86497b3c8717837f491aa29a5e0f9
84fe809535b0954bbfed8658d3ede8a2f0e030db
build: fix building with system icu 76 ICU 76 decided to reduce overlinking[^1] thus `icu-i18n` will no longer add `icu-uc` when linking to shared libraries. This results in undefined symbols/references when trying to build with system ICU 76. [^1]: unicode-org/icu@199bc82 PR-URL: https://github.com/nodejs/node/pull...
[ { "path": "configure.py", "patch": "@@ -1879,7 +1879,7 @@ def icu_download(path):\n elif with_intl == 'system-icu':\n # ICU from pkg-config.\n o['variables']['v8_enable_i18n_support'] = 1\n- pkgicu = pkg_config('icu-i18n')\n+ pkgicu = pkg_config(['icu-i18n', 'icu-uc'])\n if not pkgicu[0]...
2024-10-29T23:24:38
rust-lang/rust
4f31ff893d4dd6125a445e3bda85c0fae623578c
fbd6934114e905d3cc61adbbd7e4a355eac5d0d7
Not linting irrefutable_let_patterns on let chains inline rest of the check try fix ci errors inline in check_let
[ { "path": "compiler/rustc_mir_build/src/errors.rs", "patch": "@@ -874,52 +874,6 @@ pub(crate) struct UpperRangeBoundCannotBeMin {\n pub(crate) span: Span,\n }\n \n-#[derive(LintDiagnostic)]\n-#[diag(\n- \"leading irrefutable {$count ->\n- [one] pattern\n- *[other] patterns\n-} in let chain\"\n-...
2025-11-02T02:50:43
vercel/next.js
2bcb4bd6e85f7037a2998ea66691d3bb60e9a5ce
7aa5d162311150921cc9441434b003aeb5800ca2
Unflake `missing required html tags` test (#83328) [Flakiness metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20env%3Aci%20%40git.repository.id%3Agithub.com%2Fvercel%2Fnext.js%20%40test.service%3Anextjs%20%40test.status%3Afail%20%40test.name%3A%22app-dir%20-%20missing%20required%20html%20tags%20...
[ { "path": "test/development/app-dir/missing-required-html-tags/index.test.ts", "patch": "@@ -35,18 +35,22 @@ describe('app-dir - missing required html tags', () => {\n `)\n })\n \n- it('should hmr when you fix the error', async () => {\n- const browser = await next.browser('/')\n-\n- await next...
2025-09-02T13:23:02
electron/electron
9e630eb66aaa237401f87a97ee114eef7e1a74cc
1a0991a9b924534d3e1d06974616135de21129a1
build: remove unneeded dlls in Windows zip (#41120) * build: fixup zip manifest check on Windows * build: remove unused dlls
[ { "path": "appveyor-woa.yml", "patch": "@@ -177,7 +177,12 @@ for:\n # built on CI.\n 7z a pdb.zip out\\Default\\*.pdb\n }\n- - python3 electron/script/zip_manifests/check-zip-manifest.py out/Default/dist.zip electron/script/zip_manifests/dist_zip.win.%TARGET_ARCH%.mani...
2024-01-25T20:26:21
golang/go
9ae38be3025fa71ec2967111e0a184f886876cb1
4731832342f6430d6eb4cb13a00b97c3db5da993
sync: disassociate WaitGroups from bubbles on Wait Fix a race condition in disassociating a WaitGroup in a synctest bubble from its bubble. We previously disassociated the WaitGroup when count becomes 0, but this causes problems when an Add call setting count to 0 races with one incrementing the count. Instead, disas...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -654,6 +654,17 @@ func TestWaitGroupInBubble(t *testing.T) {\n \t})\n }\n \n+// https://go.dev/issue/74386\n+func TestWaitGroupRacingAdds(t *testing.T) {\n+\tsynctest.Run(func() {\n+\t\tvar wg sync.WaitGroup\n+\t\tfor range 100 {\n+\t\t\twg.Go...
2025-06-27T15:46:28
facebook/react
d6cfa0f295f4c8b366af15fd20c84e27cdd1fab7
935180c7e060e4d6e7868cef8f2e7c1b77cf8f7f
[Fiber] Use Owner/JSX Stack When Appending Stacks to Console (#29206) This one should be fully behind the `enableOwnerStacks` flag. Instead of printing the parent Component stack all the way to the root, this now prints the owner stack of every JSX callsite. It also includes intermediate callsites between the Com...
[ { "path": ".eslintrc.js", "patch": "@@ -486,6 +486,7 @@ module.exports = {\n $ReadOnlyArray: 'readonly',\n $ArrayBufferView: 'readonly',\n $Shape: 'readonly',\n+ ConsoleTask: 'readonly', // TOOD: Figure out what the official name of this will be.\n ReturnType: 'readonly',\n AnimationF...
2024-05-25T15:58:17
nodejs/node
84fe809535b0954bbfed8658d3ede8a2f0e030db
8aac7da7d66fc0b1426d8bf1e7b3e7b7208885bd
test: remove unneeded listeners Unhandled `'error'` events will make the process exit with an unclean exit code anyway. PR-URL: https://github.com/nodejs/node/pull/55486 Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "test/parallel/test-child-process-dgram-reuseport.js", "patch": "@@ -32,4 +32,4 @@ const socket = dgram.createSocket(options);\n \n socket.bind(+process.env.port, common.mustCall(() => {\n socket.close();\n-})).on('error', common.mustNotCall());\n+}));", "additions": 1, "deletions": 1, ...
2024-10-29T21:52:09
vercel/next.js
f1d4b5dd084426306475e40f0beb476e783edbd0
4453d20e610c1fd34c7f81eedf3812827cf1184c
Fix deployment tests (#83306)
[ { "path": "test/production/next-server-nft/next-server-nft.test.ts", "patch": "@@ -2,14 +2,18 @@ import { nextTestSetup } from 'e2e-utils'\n import path from 'path'\n import fs from 'fs'\n \n+const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n+\n // Only run this test for Turbopack as i...
2025-09-01T17:23:56
golang/go
03ad694dcbe8d981d644c9878326bd086d056af0
9d1cd0b8816654ac36f2122b52dd8335aae86b26
runtime: update skips for TestGdbBacktrace We encountered a new type of "no such process" error on loong64, it's like this "Couldn't get NT_PRSTATUS registers: No such process.", I checked the source code of gdb, NT_PRSTATUS is not fixed, it may be another name, so I use regular expression here to match possible cases...
[ { "path": "src/runtime/runtime-gdb_test.go", "patch": "@@ -528,11 +528,12 @@ func TestGdbBacktrace(t *testing.T) {\n \tgot, err := cmd.CombinedOutput()\n \tt.Logf(\"gdb output:\\n%s\", got)\n \tif err != nil {\n+\t\tnoProcessRE := regexp.MustCompile(`Couldn't get [a-zA-Z_ -]* ?registers: No such process\\.`...
2025-06-13T03:48:44
nodejs/node
8aac7da7d66fc0b1426d8bf1e7b3e7b7208885bd
3b3a95ac0cdb1808f4ea699ff64942eb85ea61a6
module: fix error thrown from require(esm) hitting TLA repeatedly This tracks the asynchronicity in the ModuleWraps when they turn out to contain TLA after instantiation, and throw the right error (ERR_REQUIRE_ASYNC_MODULE) when it's required again. It removes the freezing of ModuleWraps since it's not meaningful to f...
[ { "path": "lib/internal/errors.js", "patch": "@@ -1650,6 +1650,9 @@ E('ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS', '%s', TypeError);\n E('ERR_QUIC_CONNECTION_FAILED', 'QUIC connection failed', Error);\n E('ERR_QUIC_ENDPOINT_CLOSED', 'QUIC endpoint closed: %s (%d)', Error);\n E('ERR_QUIC_OPEN_STREAM_FAILED', '...
2024-10-29T21:15:19
facebook/react
935180c7e060e4d6e7868cef8f2e7c1b77cf8f7f
788ed90b186f1e61497e0ab4a57dab3714caae0f
compiler: only resolve globals and react imports Updates Environment#getGlobalDeclaration() to only resolve "globals" if they are a true global or an import from react/react-dom. We still keep the logic to resolve hook-like names as custom hooks. Notably, this means that a local `Array` reference won't get confused wi...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -11,7 +11,6 @@ import { fromZodError } from \"zod-validation-error\";\n import { CompilerError } from \"../CompilerError\";\n import { Logger } from \"../Entrypoint\";\n import { Err, Ok, Result } from \"../Utils/...
2024-05-24T05:59:06
electron/electron
1a0991a9b924534d3e1d06974616135de21129a1
921da723b8707d7438da1d39534e4d4d50a6f5ea
chore: bump chromium to 122.0.6261.6 (main) (#40949) * chore: bump chromium in DEPS to 122.0.6239.2 * chore: update patches * refactor: extensions replaced StringPiece with string_view Ref: https://chromium-review.googlesource.com/c/chromium/src/+/5171926 * chore: bump chromium in DEPS to 122.0.6240.0 *...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '122.0.6236.2',\n+ '122.0.6261.6',\n 'node_version':\n 'v20.11.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2024-01-25T17:46:30
vercel/next.js
95ee107a85b5ec8178f01a37f36e8bfd864fee49
828221d0dfdf49c70c8b85b5c01f72730ef62539
Update caching.mdx (#83149) In the docs it says => ( The default caching behavior of fetch (e.g., when the cache option is not specified) is equal to setting the cache option to no-store ) But when I code, I found that fetch default behaviour and setting the cache option to no-store are different. After building pro...
[ { "path": "docs/01-app/02-guides/caching.mdx", "patch": "@@ -421,11 +421,10 @@ See the [`useRouter` hook](/docs/app/api-reference/functions/use-router) API ref\n \n Data returned from `fetch` is _not_ automatically cached in the Data Cache.\n \n-The default caching behavior of `fetch` (e.g., when the `cache...
2025-09-01T08:38:14
golang/go
acb914f2c2a3ec3dd227812ba6b119480d6400cd
b51f1cdb8752c2fdd6a2bf06224aab0b5c07caac
cmd/doc: fix -http on Windows On Windows, GOMODCACHE almost never starts with a slash, and "go doc -http" constructs a GOPROXY URL by doing "file://" + GOMODCACHE, resulting in an invalid file URI. For example, if GOMODCACHE is "C:\foo", then the file URI should be "file:///C:/foo", but it becomes "file://C:/foo" ins...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -405,6 +405,8 @@\n //\n //\tgo doc\n //\t\tShow documentation for current package.\n+//\tgo doc -http\n+//\t\tServe HTML documentation over HTTP for the current package.\n //\tgo doc Foo\n //\t\tShow documentation for Foo in the current package.\n //\t\t(Foo s...
2025-06-27T10:45:22
facebook/react
ee5c19493086fdeb32057e16d1e3414370242307
f55d172bcf921d761733533395b798c5b3665e04
Fix async batching in React.startTransition (#29226) Note: Despite the similar-sounding description, this fix is unrelated to the issue where updates that occur after an `await` in an async action must also be wrapped in their own `startTransition`, due to the absence of an AsyncContext mechanism in browsers today....
[ { "path": "packages/react-dom/src/__tests__/ReactStartTransitionMultipleRenderers-test.js", "patch": "@@ -0,0 +1,143 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this sour...
2024-05-23T21:19:09
nodejs/node
45c6a9e1f6e165eb0ab2f7b5635662aa1875c171
5633c62219e199baac833e8862d60333d85dc3d3
src: migrate `String::Value` to `String::ValueView` Fixes #54417 Ref: #55452 PR-URL: https://github.com/nodejs/node/pull/55458 Refs: https://github.com/nodejs/node/issues/55452 Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gma...
[ { "path": "src/inspector_js_api.cc", "patch": "@@ -245,9 +245,9 @@ static void AsyncTaskScheduledWrapper(const FunctionCallbackInfo<Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n \n CHECK(args[0]->IsString());\n- Local<String> task_name = args[0].As<String>();\n- String::Value t...
2024-10-29T00:32:26
electron/electron
921da723b8707d7438da1d39534e4d4d50a6f5ea
3e6a038af77cc01e16bf139dc68dd8eb45483c7b
fix: dangling raw_ptr in OSRWHV destructor (#41088) `delegated_frame_host_` holds a pointer to `delegated_frame_host_client_`. Since `delegated_frame_host_client_` was being destroyed first, that pointer was dangling in the OSRWHV destructor. Also, make these two unique_ptr fields `const` since they point to the ...
[ { "path": "shell/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -187,6 +187,12 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n frame_rate_(frame_rate),\n size_(initial_size),\n painting_(painting),\n+ delegated_frame_host_client_{\n+ std::make_un...
2024-01-25T01:15:32
vercel/next.js
9de3daa343165de2139d8b8457209493293bfc08
635f7fd1be079ff21722b8b19a600d796fdb5510
fix: remove `satisfies` keyword from type validation to preserve old TS compatibility (#83239)
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -446,12 +446,19 @@ export function generateValidatorFile(\n type === 'RouteHandlerConfig')\n ? `${type}<${JSON.stringify(route)}>`\n : type\n+\n+ // NOTE: we previously used `satisfies` ...
2025-09-01T07:37:21
golang/go
b51f1cdb8752c2fdd6a2bf06224aab0b5c07caac
f1e6ae2f6f5424f9f5c6dc915866d4f457c1483e
runtime: remove arbitrary 5-second timeout in TestNeedmDeadlock The NeedmDeadlock test program currently has a 5-second timeout, which is sort of arbitrary. It is long enough in regular mode (which usually takes 0.0X seconds), but not quite so for configurations like ASAN. Instead of using an arbitrary timeout, just u...
[ { "path": "src/runtime/testdata/testprogcgo/needmdeadlock.go", "patch": "@@ -70,8 +70,6 @@ import \"C\"\n \n import (\n \t\"fmt\"\n-\t\"os\"\n-\t\"time\"\n )\n \n func init() {\n@@ -84,12 +82,8 @@ func GoNeedM() {\n \n func NeedmDeadlock() {\n \t// The failure symptom is that the program hangs because of a\...
2025-06-27T23:45:22
rust-lang/rust
5a3f581b1fba6660c53b91af0c00d25f353b8a36
6d80670bb2ea6e9d722641131d03be2c0eadc114
style: fix rustfmt formatting
[ { "path": "src/tools/rust-analyzer/crates/ide/src/references.rs", "patch": "@@ -531,7 +531,7 @@ fn t2() {\n my_macro!(foo());\n }\n \"#,\n- expect![[r#\"\n+ expect![[r#\"\n foo Function FileId(0) 52..74 55..58\n \n FileId(0) 91..94", "additions": 1...
2026-02-19T11:55:54
nodejs/node
5633c62219e199baac833e8862d60333d85dc3d3
7cb3a662dad3a3d1af14c8657992274f7c426924
http: don't emit error after destroy PR-URL: https://github.com/nodejs/node/pull/55457 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: James M Snell <jasne...
[ { "path": "lib/_http_outgoing.js", "patch": "@@ -908,6 +908,10 @@ OutgoingMessage.prototype.write = function write(chunk, encoding, callback) {\n };\n \n function onError(msg, err, callback) {\n+ if (msg.destroyed) {\n+ return;\n+ }\n+\n const triggerAsyncId = msg.socket ? msg.socket[async_id_symbol]...
2024-10-28T12:57:58
facebook/react
84239da896fd7395a667ab1e7ef1ef338a32de8f
5fe8c0b4ecd09cfd2c0e1422089e2c603d558ff8
Move createElement/JSX Warnings into the Renderer (#29088) This is necessary to simplify the component stack handling to make way for owner stacks. It also solves some hacks that we used to have but don't quite make sense. It also solves the problem where things like key warnings get silenced in RSC because they ge...
[ { "path": "fixtures/flight/server/region.js", "patch": "@@ -81,17 +81,20 @@ async function renderApp(res, returnValue, formState) {\n ).main.css;\n }\n const App = m.default.default || m.default;\n- const root = [\n+ const root = React.createElement(\n+ React.Fragment,\n+ null,\n // Prep...
2024-05-23T16:48:57
electron/electron
3e6a038af77cc01e16bf139dc68dd8eb45483c7b
a05bfd332d1553aaa096f4a63d60242d46fac98f
fix: draggable regions not working (#41030) * fix: draggable regions not working * fix: only support app regions for main frame --------- Co-authored-by: deepak1556 <hop2deep@gmail.com>
[ { "path": "patches/chromium/.patches", "patch": "@@ -128,3 +128,4 @@ fix_restore_original_resize_performance_on_macos.patch\n feat_allow_code_cache_in_custom_schemes.patch\n enable_partition_alloc_ref_count_size.patch\n build_run_reclient_cfg_generator_after_chrome.patch\n+fix_drag_regions_not_working_after...
2024-01-25T00:12:54
vercel/next.js
635f7fd1be079ff21722b8b19a600d796fdb5510
d4d380ed7cfecd9cb56c9ea889b313b806194929
fix: remove redundant posix normalization (#83244)
[ { "path": "packages/next/src/lib/typescript/writeAppTypeDeclarations.ts", "patch": "@@ -62,13 +62,8 @@ export async function writeAppTypeDeclarations({\n 'types/routes.d.ts'\n )\n \n- // Ensure the path is POSIX-compliant for imports.\n- const routeTypesPathPosix = routeTypesPath\n- .split(path.s...
2025-09-01T07:35:38
golang/go
f1e6ae2f6f5424f9f5c6dc915866d4f457c1483e
e81c624656e415626c7ac3a97768f5c2717979a4
reflect: fix TypeAssert on nil interface values In the Go language a type assertion of a nil interface value will always report false: var err error v, ok := err.(error) // always reports (nil, false) Consequently, assertion on a reflect.Value.Interface() will also report false: var err error rv := ValueOf(&err...
[ { "path": "src/reflect/all_test.go", "patch": "@@ -8719,6 +8719,11 @@ func TestTypeAssert(t *testing.T) {\n \ttestTypeAssert(t, any(int(1)), int(1), true)\n \ttestTypeAssert(t, any(int(1)), byte(0), false)\n \ttestTypeAssert(t, fmt.Stringer(vv), vv, true)\n+\n+\ttestTypeAssert(t, any(nil), any(nil), false)\...
2025-06-27T17:59:44
rust-lang/rust
6d80670bb2ea6e9d722641131d03be2c0eadc114
918214c19ae9f44eaca32d03f4a4cb10cc6089e9
test: fix exclude_tests_macro_refs test to use custom macro
[ { "path": "src/tools/rust-analyzer/crates/ide/src/references.rs", "patch": "@@ -513,61 +513,32 @@ fn test() {\n }\n \n #[test]\n- fn test_access() {\n+ fn exclude_tests_macro_refs() {\n check(\n r#\"\n-struct S { f$0: u32 }\n-\n-#[test]\n-fn test() {\n- let mut x = S { f...
2026-02-19T11:52:01
nodejs/node
7cb3a662dad3a3d1af14c8657992274f7c426924
4b48f9b63307b41c1a7ec872aaa82f74f95d2be7
module: allow ESM that failed to be required to be re-imported When a ESM module cannot be loaded by require due to the presence of TLA, its module status would be stopped at kInstantiated. In this case, when it's imported again, we should allow it to be evaluated asynchronously, as it's also a common pattern for user...
[ { "path": "lib/internal/modules/esm/module_job.js", "patch": "@@ -22,7 +22,7 @@ let debug = require('internal/util/debuglog').debuglog('esm', (fn) => {\n debug = fn;\n });\n \n-const { ModuleWrap, kEvaluated } = internalBinding('module_wrap');\n+const { ModuleWrap, kInstantiated } = internalBinding('modul...
2024-10-28T12:21:22
electron/electron
a05bfd332d1553aaa096f4a63d60242d46fac98f
4164ef93ad57ba30bd1fe9bf31ea922960f9cd15
fix: on error, reset spawnedProcess (#41033) reset spawnedProcess instance in case of error
[ { "path": "lib/browser/api/auto-updater/squirrel-update-win.ts", "patch": "@@ -38,6 +38,8 @@ const spawnUpdate = async function (args: string[], options: { detached: boolean\n spawnedProcess.stderr.on('data', (data) => { stderr += data; });\n \n spawnedProcess.on('error', (error) => {\n+ spawne...
2024-01-24T22:45:08
vercel/next.js
a26a753fa447971db3525437542cf6a45433ef8f
4996d9fb4e31c20776f8f555060786fff4234e7e
docs: fix snippets in getting started (#83228) Fixing snippets in Getting Started
[ { "path": "docs/01-app/01-getting-started/05-server-and-client-components.mdx", "patch": "@@ -154,7 +154,7 @@ export default function Counter() {\n }\n ```\n \n-```jsx filename=\"app/ui/counter.tsx\" highlight={1} switcher\n+```jsx filename=\"app/ui/counter.js\" highlight={1} switcher\n 'use client'\n \n im...
2025-08-29T22:38:05
golang/go
e81c624656e415626c7ac3a97768f5c2717979a4
2a22aefa1f7befb0ac7a95c918b75b05919c1907
os: use minimal file permissions when opening parent directory in RemoveAll On Windows, the process might not have read permission on the parent directory, but still can delete files in it. This change allows RemoveAll to open the parent directory with minimal permissions, which is sufficient for deleting child files....
[ { "path": "src/os/removeall_at.go", "patch": "@@ -8,6 +8,7 @@ package os\n \n import (\n \t\"io\"\n+\t\"runtime\"\n \t\"syscall\"\n )\n \n@@ -34,7 +35,15 @@ func removeAll(path string) error {\n \t// its parent directory\n \tparentDir, base := splitPath(path)\n \n-\tparent, err := Open(parentDir)\n+\tflag :...
2025-06-27T09:16:54
rust-lang/rust
1cd345b22bfec529ad6a835474a3ee80ad04ec49
55bfca7d7d45358b220758e26869e50615e6a4e2
For panic=unwind on Wasm targets, define __cpp_exception tag Since llvm/llvm-project 159143, llvm no longer weak links the __cpp_exception tag into each object that uses it. They are now defined in compiler-rt. Rust doesn't seem to get them from compiler-rt so llvm decides they need to be imported. This adds them to l...
[ { "path": "library/unwind/src/lib.rs", "patch": "@@ -7,7 +7,7 @@\n #![cfg_attr(not(target_env = \"msvc\"), feature(libc))]\n #![cfg_attr(\n all(target_family = \"wasm\", any(not(target_os = \"emscripten\"), emscripten_wasm_eh)),\n- feature(link_llvm_intrinsics, simd_wasm64)\n+ feature(link_llvm_in...
2026-02-06T16:33:48
electron/electron
4164ef93ad57ba30bd1fe9bf31ea922960f9cd15
d13a93fb616f90cdcd58f97c274554b0253ea35e
refactor: remove banned std::to_string() calls (#41087) * refactor: do not use banned std::to_string() in ServiceWorkerContext::GetAllRunningWorkerInfo() * refactor: do not use banned std::to_string() in REPORT_AND_RETURN_IF_FAILED() * refactor: do not use banned std::to_string() in JSChunkedDataPipeGetter::OnWr...
[ { "path": "shell/browser/api/electron_api_service_worker_context.cc", "patch": "@@ -7,6 +7,7 @@\n #include <string_view>\n #include <utility>\n \n+#include \"base/strings/string_number_conversions.h\"\n #include \"chrome/browser/browser_process.h\"\n #include \"content/public/browser/console_message.h\"\n #...
2024-01-24T22:43:31
vercel/next.js
9fc907f14c6c07c4cd7c70f7b91e9f0b73d8b1b2
5f5503630489bcba56be06871daa6e785df0300b
feat: [create-next-app] generate route types after setup (#82956) ## Run `next typegen` after project creation in create-next-app ### What? This PR adds automatic type generation after a Next.js project is created with create-next-app. ### Why? Running `next typegen` immediately after project creation ensures that r...
[ { "path": "packages/create-next-app/create-app.ts", "patch": "@@ -17,6 +17,7 @@ import { install } from './helpers/install'\n import { isFolderEmpty } from './helpers/is-folder-empty'\n import { getOnline } from './helpers/is-online'\n import { isWriteable } from './helpers/is-writeable'\n+import { runTypeg...
2025-08-29T21:51:13
golang/go
2a22aefa1f7befb0ac7a95c918b75b05919c1907
742fda95246958076e439bbcf71fedda43a894bb
encoding/json: add security section to doc Add a section to the package doc which details the security considerations of using encoding/json, in particular with respect to parser misalignment issues. Additionally, clarify previously ambiguous statement in the Unmarshal doc about how case is used when matching keys in...
[ { "path": "src/encoding/json/decode.go", "patch": "@@ -43,11 +43,14 @@ import (\n // and the input is a JSON quoted string, Unmarshal calls\n // [encoding.TextUnmarshaler.UnmarshalText] with the unquoted form of the string.\n //\n-// To unmarshal JSON into a struct, Unmarshal matches incoming object\n-// ke...
2025-06-26T19:19:23
electron/electron
031d6368230853fe601ff5fe36fe86789a1a4fb0
5ced88a90a6471ceb6d90b8582de2d31f8991132
fix: only remove hijackable envs from foreign parent (#41079)
[ { "path": "filenames.gni", "patch": "@@ -656,7 +656,6 @@ filenames = {\n \"shell/common/node_includes.h\",\n \"shell/common/node_util.cc\",\n \"shell/common/node_util.h\",\n- \"shell/common/node_util_mac.mm\",\n \"shell/common/options_switches.cc\",\n \"shell/common/options_switches.h...
2024-01-24T15:51:27
vercel/next.js
91d78d1035585b2eb746c4dd4615b838264c8673
50edb74488b0c2becf74d62a33d8b1721f09742d
[turbopack] Create a simple benchmark to measure the overhead of turbotasks (#82982) This benchmark works by * creating a simple busy wait function to simulate cpu bound work - This is mostly to prove that we are measuring overheads and not some feature of small tasks. The overheads for a 1us task are ~identical t...
[ { "path": "turbopack/crates/turbo-tasks-backend/benches/mod.rs", "patch": "@@ -3,13 +3,14 @@\n \n use criterion::{Criterion, criterion_group, criterion_main};\n \n+pub(crate) mod overhead;\n pub(crate) mod scope_stress;\n pub(crate) mod stress;\n \n criterion_group!(\n name = turbo_tasks_backend_stress;...
2025-08-29T15:39:19
golang/go
fdc076ce762326fc19ef1b6de01da6ce50f55926
d9d2cadd635f3b8fdfba0ab6369604f5e78643b0
net/http: fix RoundTrip context cancellation for js/wasm The existing js/wasm implementation of RoundTrip calls abort() on the fetch() call when the context is canceled but does not wait for for the resulting promise to be rejected. The result is the failure callback for the promise will be called at some later point ...
[ { "path": "src/net/http/roundtrip_js.go", "patch": "@@ -236,6 +236,14 @@ func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n \t\tif !ac.IsUndefined() {\n \t\t\t// Abort the Fetch request.\n \t\t\tac.Call(\"abort\")\n+\n+\t\t\t// Wait for fetch promise to be rejected prior to exiting. See\n+\t...
2025-06-10T15:09:35
facebook/react
82a0a5f88a1bd0f2a0af52e44bbacff1207fc144
2e540e22b2b4038a278b2875306976b016fb31a9
compiler: fixture for suboptimal jsx sibling memo block merging React Compiler attempts to merge consecutive reactive scopes in order to reduce overhead. The basic idea is that if two consecutive scopes would always invalidate together then we should merge them. It gets more complicated, though, because values produce...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/merge-consecutive-scopes-deps-subset-of-decls.expect.md", "patch": "@@ -0,0 +1,84 @@\n+\n+## Input\n+\n+```javascript\n+import { useState } from \"react\";\n+\n+function Component() {\n+ const [count, setCount] = useSt...
2024-05-21T12:10:27
golang/go
d9d2cadd635f3b8fdfba0ab6369604f5e78643b0
0f8ab2db177baee7b04182f5641693df3b212aa9
encoding/json: fix typo in hotlink for jsontext.PreserveRawStrings Updates #71845 Change-Id: Ie099e7ac77293696fd9e69559487e27f4b70ab3f Reviewed-on: https://go-review.googlesource.com/c/go/+/684416 Auto-Submit: Joseph Tsai <joetsai@digital-static.net> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.ia...
[ { "path": "src/encoding/json/v2_options.go", "patch": "@@ -221,7 +221,7 @@ type Options = jsonopts.Options\n // - [jsontext.AllowInvalidUTF8]\n // - [jsontext.EscapeForHTML]\n // - [jsontext.EscapeForJS]\n-// - [jsontext.PreserveRawString]\n+// - [jsontext.PreserveRawStrings]\n //\n // All other b...
2025-06-27T01:18:32
nodejs/node
4b48f9b63307b41c1a7ec872aaa82f74f95d2be7
7270f845964ed86e8bd70fa24dbc6616b3333b3a
build: fix GN arg used in generate_config_gypi.py PR-URL: https://github.com/nodejs/node/pull/55530 Reviewed-By: Cheng Zhao <zcbenz@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/generate_config_gypi.py", "patch": "@@ -19,11 +19,7 @@\n \n # Regex used for parsing results of \"gn args\".\n GN_RE = re.compile(r'(\\w+)\\s+=\\s+(.*?)$', re.MULTILINE)\n-\n-if sys.platform == 'win32':\n- GN = 'gn.exe'\n-else:\n- GN = 'gn'\n+GN = 'gn.bat' if sys.platform == 'win32' else ...
2024-10-28T09:27:31
facebook/react
2e540e22b2b4038a278b2875306976b016fb31a9
2e3e6a9b1cc97ec91248be74565e7ccbf6946067
Set the current fiber to the source of the error during error reporting (#29044) This lets us expose the component stack to the error reporting that happens here as `console.error` patching. Now if you just call `console.error` in the error handlers it'll get the component stack added to the end by React DevTools. ...
[ { "path": "packages/react-devtools-shared/src/__tests__/treeContext-test.js", "patch": "@@ -2586,16 +2586,14 @@ describe('TreeListContext', () => {\n utils.act(() => TestRenderer.create(<Contexts />));\n \n expect(store).toMatchInlineSnapshot(`\n- ✕ 1, ⚠ 0\n [root]\n- ...
2024-05-23T16:39:52
vercel/next.js
50edb74488b0c2becf74d62a33d8b1721f09742d
11762a78fb132ab211945b87c94184c597eba7e1
[ppr] RDC for RSCs (redo) (#80853) ## What? This PR introduces the Resume Data Cache (RDC) functionality to improve handling of dynamic React Server Component (RSC) requests when Partial Pre-rendering (PPR) is enabled. This enhancement enables dynamic RSC responses to utilize the Resume Data Cache, significantly redu...
[ { "path": "packages/next/errors.json", "patch": "@@ -795,5 +795,8 @@\n \"794\": \"Invalid <Link> with <a> child. Please remove <a>.\\nLearn more: https://nextjs.org/docs/messages/invalid-new-link-with-extra-anchor\",\n \"795\": \"\\\\`%s\\\\` was called from a Server Component. Next.js should be prevent...
2025-08-29T15:27:06
electron/electron
1af9612edfdd9cd7f7d4aecd002f26ee74c0b2aa
1300e83884595a3c89c24bd4d42f3a1bbbb6fe7d
fix: ElectronBrowserContext::PartitionKey comparisons (#41055) * fix: ElectronBrowserContext::PartitionKey comparisons Use c++20 default comparisons to simplify + fix PartitionKey sorting: - The equality operator is broken. `PartitionKey{"foo", false}` is both equal, to and less than, `PartitionKey{"foo", tru...
[ { "path": "shell/browser/electron_browser_context.h", "patch": "@@ -9,6 +9,7 @@\n #include <memory>\n #include <optional>\n #include <string>\n+#include <string_view>\n #include <variant>\n #include <vector>\n \n@@ -80,41 +81,22 @@ class ElectronBrowserContext : public content::BrowserContext {\n \n // pa...
2024-01-23T15:41:44
rust-lang/rust
89c18c50692e18f0d085eb22091e3661904ff325
523ab42004c0f954ed404676616d58f74c80fb0a
fix: disable `bytecount/generic-simd` dependency This is a temporary measure meant to allow rustfmt to move forward with the latest subtree-push. Currently, there are issues with `bytecount/generic-simd` on the latest nightly.
[ { "path": "Cargo.toml", "patch": "@@ -30,7 +30,10 @@ path = \"src/git-rustfmt/main.rs\"\n default = [\"cargo-fmt\", \"rustfmt-format-diff\"]\n cargo-fmt = []\n rustfmt-format-diff = []\n-generic-simd = [\"bytecount/generic-simd\"]\n+# FIXME(ytmimi) re-enable \"bytecount/generic-simd\" to the `generic-simd` ...
2026-02-19T08:38:58
golang/go
0f8ab2db177baee7b04182f5641693df3b212aa9
988a20c8c5e2c9eb49f8749e5ee94ce3c964fe59
cmd/link: permit a larger size BSS reference to a smaller DATA symbol Currently, if there is a BSS reference and a DATA symbol definition with the same name, we pick the DATA symbol, as it contains the right content. In this case, if the BSS reference has a larger size, we error out, because it is not safe to access a...
[ { "path": "src/cmd/cgo/internal/testsanitizers/asan_test.go", "patch": "@@ -42,6 +42,8 @@ func TestASAN(t *testing.T) {\n \t\t{src: \"asan_global3_fail.go\", memoryAccessError: \"global-buffer-overflow\", errorLocation: \"asan_global3_fail.go:13\"},\n \t\t{src: \"asan_global4_fail.go\", memoryAccessError: \...
2025-06-26T19:46:31
nodejs/node
c35cbcde4b7c8821587ad96d0e69942c01ace23d
5d4fee8975aabd04fdfba0ff407e4dbd18d94411
build: fix GN build for sqlite and nghttp2 PR-URL: https://github.com/nodejs/node/pull/55529 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Cheng Zhao <zcbenz@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "deps/nghttp2/unofficial.gni", "patch": "@@ -34,6 +34,9 @@ template(\"nghttp2_gn_build\") {\n if (is_clang || !is_win) {\n cflags_c = [\n \"-Wno-implicit-fallthrough\",\n+ # Ref https://github.com/nghttp2/nghttp2/pull/2258\n+ # This can be removed when the above PR ...
2024-10-27T09:21:39
facebook/react
2e3e6a9b1cc97ec91248be74565e7ccbf6946067
4c2e457c7c820e5b4bc895735a703cdbf40f3175
Unify ReactFiberCurrentOwner and ReactCurrentFiber (#29038) We previously had two slightly different concepts for "current fiber". There's the "owner" which is set inside of class components in prod if string refs are enabled, and sometimes inside function components in DEV but not other contexts. Then we have...
[ { "path": "packages/react-devtools-shared/src/__tests__/treeContext-test.js", "patch": "@@ -2586,14 +2586,14 @@ describe('TreeListContext', () => {\n utils.act(() => TestRenderer.create(<Contexts />));\n \n expect(store).toMatchInlineSnapshot(`\n- ✕ 2, ⚠ 0\n+ ✕ 1, ⚠ 0\n ...
2024-05-23T16:25:23
vercel/next.js
94414f7897499bc526218d4d395ad6a1a0266e88
81bd026e753515284427baff1e143ff5af1d7239
bugfix: Bad `next.route` on `pages` dir OTel spans for `404`s / `500`s (#77150) ## Issue - Resolves https://github.com/vercel/next.js/issues/82102 ## What it Does Prevents the root span attribute `next.route` from being overwritten once set for a request. This resolves two issues: 1. Fixes `404`s and `500`s in the...
[ { "path": "packages/next/src/server/lib/trace/tracer.ts", "patch": "@@ -456,7 +456,7 @@ class NextTracerImpl implements NextTracer {\n public setRootSpanAttribute(key: AttributeNames, value: AttributeValue) {\n const spanId = context.active().getValue(rootSpanIdKey) as number\n const attributes = ...
2025-08-29T13:50:25
rust-lang/rust
523ab42004c0f954ed404676616d58f74c80fb0a
f6eebbdb669bb580d23b1f666fcd3f5abcf88c92
chore: bump bytecount to 0.6.9 Having some issues with the subtree-push related to bytecount. Hoping that bumping the version fixes that.
[ { "path": "Cargo.lock", "patch": "@@ -92,9 +92,9 @@ dependencies = [\n \n [[package]]\n name = \"bytecount\"\n-version = \"0.6.8\"\n+version = \"0.6.9\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce\"\n+ch...
2026-02-19T08:29:05
electron/electron
1300e83884595a3c89c24bd4d42f3a1bbbb6fe7d
03a3deca181807c2b152264a11f92c70b7adc9ef
docs: fixed typos and grammatical errors (#40966) * docs: fixed typos * Update docs/tutorial/performance.md Co-authored-by: Keeley Hammond <vertedinde@electronjs.org> * Update performance.md --------- Co-authored-by: Keeley Hammond <vertedinde@electronjs.org>
[ { "path": "docs/tutorial/devices.md", "patch": "@@ -33,7 +33,7 @@ clicked.\n ## WebHID API\n \n The [WebHID API](https://web.dev/hid/) can be used to access HID devices such\n-as keyboards and gamepads. Electron provides several APIs for working with\n+as keyboards and gamepads. Electron provides several A...
2024-01-19T14:21:42
golang/go
988a20c8c5e2c9eb49f8749e5ee94ce3c964fe59
b5d555991ab73e06e09741952a66dd7eeaf2a185
cmd/compile/internal/escape: evaluate any side effects when rewriting with literals CL 649035 and CL 649079 updated escape analysis to rewrite certain operands in OMAKE and OCONVIFACE nodes from non-constant expressions to basic literals that evaluate to the same value. However, when doing that rewriting, we need to ...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -545,6 +545,14 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \t\tbase.Fatalf(\"no ReassignOracle for function %v with closure parent %v\", fn, fn.ClosureParent)\n \t}\n \n+\tassignTemp := func(n ir.Node, init *ir.Nodes)...
2025-06-25T23:01:11
facebook/react
4c2e457c7c820e5b4bc895735a703cdbf40f3175
f994737d14e83f22ead70e6a41f87353008b73cf
compiler: Handle TSNonNullAssertion expressions (#29218) ## Summary We ran React compiler against part of our codebase and collected compiler errors. One of the more common non-actionable errors is caused by usage of the `!` TypeScript non-null assertion operation: ``` (BuildHIR::lowerExpression) Handle TSNon...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -2407,6 +2407,10 @@ function lowerExpression(\n loc: expr.node.loc ?? GeneratedSource,\n };\n }\n+ case \"TSNonNullExpression\": {\n+ let expr = exprPath as NodePath<t.TSNonNullExpression>;\...
2024-05-22T22:42:06
nodejs/node
7ddd2c2282968cdb17b541bb8fe07f039c429897
53b1050e6f692ee0330e1076e045b58aada0032d
2024-10-24, Version 23.1.0 (Current) Notable changes: assert: * (SEMVER-MINOR) make `assertion_error` use Myers diff algorithm (Giovanni Bucci) https://github.com/nodejs/node/pull/54862 buffer: * (SEMVER-MINOR) make `Buffer` work with resizable `ArrayBuffer` (James M Snell) https://github.com/nodejs/node/pull/553...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,7 +38,8 @@ release.\n <th title=\"LTS Until 2025-04\"><a href=\"doc/changelogs/CHANGELOG_V18.md\">18</a> (LTS)</th>\n </tr>\n <tr>\n-<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.1.0\">...
2024-10-24T09:19:18
vercel/next.js
e657c383fd901ee829507dc2325b85f0f3ce8133
7b6136b0d66e0462d0dcc15d5bb634d2fa5cb26b
Turbopack: fix persistent caching test case (#83170) ### What? The test case was broken and never tested if persistent caching was caching at all
[ { "path": "test/e2e/persistent-caching/my-loader.js", "patch": "@@ -1,4 +1,5 @@\n module.exports = async function myLoader(source) {\n+ console.log('Loader is running!')\n // Make webpack consider the build as large change which makes it persistent cache it sooner\n await new Promise((resolve) => setTi...
2025-08-29T08:31:50
rust-lang/rust
4916d9538151589027f8fb243de94a1af2774f2a
18a4108bf24e88f1537ed1f87264a64d0fb0f70d
Fix unnecessary_min_or_max for usize Signed-off-by: Taym Haddadi <haddadi.taym@gmail.com>
[ { "path": "clippy_lints/src/methods/unnecessary_min_or_max.rs", "patch": "@@ -88,7 +88,17 @@ fn detect_extrema<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> Option<\n match (cv.int_value(cx.tcx, ty)?, ty.kind()) {\n (FullInt::S(i), &ty::Int(ity)) if i == i128::MIN >> (128 - ity.bit_widt...
2026-02-19T08:24:28
electron/electron
f4ee3c1b2a4a2c0ae69140a04cc76d0ffbaab320
6ea7da4b90fcca23ec9858a38e10d59bd98506bf
chore: bump node to v20.11.0 (main) (#40941) * chore: bump node in DEPS to v20.11.0 * module: bootstrap module loaders in shadow realm https://github.com/nodejs/node/pull/48655 * src: add commit hash shorthand in zlib version https://github.com/nodejs/node/pull/50158 * v8,tools: expose necessary V8 defi...
[ { "path": "BUILD.gn", "patch": "@@ -9,7 +9,7 @@ import(\"//pdf/features.gni\")\n import(\"//ppapi/buildflags/buildflags.gni\")\n import(\"//printing/buildflags/buildflags.gni\")\n import(\"//testing/test.gni\")\n-import(\"//third_party/electron_node/node.gni\")\n+import(\"//third_party/electron_node/electro...
2024-01-18T21:16:45
facebook/react
81c5ff2e040ee56b85b8bd27a2f8065661f17fee
217b2ccf160d7594a926d276a75c7312b299be4d
[Flight Reply] retain listeners when resolving models with existing listeners (#29207) In #29201 a fix was made to ensure we don't "forget" about some listeners when handling cyclic chunks. In #29204 another fix was made for a special case when the chunk already has listeners before it first resolves. This imple...
[ { "path": "packages/react-server/src/ReactFlightReplyServer.js", "patch": "@@ -205,8 +205,23 @@ function wakeChunkIfInitialized<T>(\n case PENDING:\n case BLOCKED:\n case CYCLIC:\n- chunk.value = resolveListeners;\n- chunk.reason = rejectListeners;\n+ if (chunk.value) {\n+ ...
2024-05-21T23:16:20
nodejs/node
53b1050e6f692ee0330e1076e045b58aada0032d
cbb72ebfa7888504c2347624c19f6648ccee2679
module: add module.stripTypeScriptTypes PR-URL: https://github.com/nodejs/node/pull/55282 Fixes: https://github.com/nodejs/node/issues/54300 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Paolo Insogna <paolo@cowt...
[ { "path": "doc/api/module.md", "patch": "@@ -270,6 +270,105 @@ changes:\n Register a module that exports [hooks][] that customize Node.js module\n resolution and loading behavior. See [Customization hooks][].\n \n+## `module.stripTypeScriptTypes(code[, options])`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n...
2024-10-24T18:27:58
vercel/next.js
186174a73ffe702072c5a38b3efba1703cec4a58
cad41015dcaead1565bd361c7975cb32d559473d
Turbopack: fix hanging of persistent caching with webpack loaders (#83201) ### What? When webpack loaders where invalidated after restoring from persistent cache, the process pool is not correctly recreated. It doesn't rewrite the output files to disk before creating the pool.
[ { "path": "turbopack/crates/turbopack-node/src/evaluate.rs", "patch": "@@ -1,4 +1,6 @@\n-use std::{borrow::Cow, iter, ops::ControlFlow, thread::available_parallelism, time::Duration};\n+use std::{\n+ borrow::Cow, iter, ops::ControlFlow, sync::Arc, thread::available_parallelism, time::Duration,\n+};\n \n ...
2025-08-29T07:49:12
rust-lang/rust
8b03e83d2dec60884b07a9b51f419517cec43db7
9437c83913748e9215cba13f11b33585abb9f15e
fix genmc build
[ { "path": "src/tools/miri/src/concurrency/genmc/shims.rs", "patch": "@@ -24,24 +24,22 @@ impl GenmcCtx {\n }\n }\n \n+/// Small helper to get the arguments of an intercepted function call.\n+fn get_fn_args<'tcx, const N: usize>(\n+ instance: ty::Instance<'tcx>,\n+ args: &[FnArg<'tcx>],\n+) -> Inte...
2026-02-19T07:37:22
facebook/react
9b3f909cc19fd848dcf8cba2cc3750f32053c056
0a0a5c02f138b37e93d5d93341b494d0f5d52373
[Flight] don't overwrite existing chunk listeners in 'wakeChunkIfInitialized' (#29204) Follow up to https://github.com/facebook/react/pull/29201. If a chunk had listeners attached already (e.g. because `.then` was called on the chunk returned from `createFromReadableStream`), `wakeChunkIfInitialized` would overwrit...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -320,8 +320,24 @@ function wakeChunkIfInitialized<T>(\n case PENDING:\n case BLOCKED:\n case CYCLIC:\n- chunk.value = resolveListeners;\n- chunk.reason = rejectListeners;\n+ if (chunk.value) {\n+ for (...
2024-05-21T21:04:46
nodejs/node
f630fde68baf1c80b0b4312c24920a47373a5394
c1bbd634581eec25e6254d80fd9e6d1423de8827
deps: V8: cherry-pick f915fa4c9f41 Original commit message: [osr] Ensure trying to osr does not skip loop interrupts Fixed: 374013413 Change-Id: I52d7b4e165e0abd0bd517a81d2e8ef3f1f802bfb Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5946288 Commit-Queue: Darius Mercadier <dmerca...
[ { "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.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n...
2024-10-21T12:33:55
electron/electron
135c542555dc14af9cc0e21a9f741a380fdec706
3dafb318a864b76fbe6412e00965af867da05b25
feat: Windows integrity check (#40504) * Add Windows integrity check feature into Electron Co-authored-by: Weiyun Dai <weiyun.chn@gmail.com> * Add integrity checker header file to sources Co-authored-by: Weiyun Dai <weiyun.chn@gmail.com> * Moved integrity checker after checking command line args Co-auth...
[ { "path": "BUILD.gn", "patch": "@@ -660,6 +660,7 @@ source_set(\"electron_lib\") {\n }\n if (is_win) {\n libs += [ \"dwmapi.lib\" ]\n+ sources += [ \"shell/common/asar/archive_win.cc\" ]\n deps += [\n \"//components/crash/core/app:crash_export_thunks\",\n \"//ui/native_theme:nativ...
2024-01-18T20:00:49
golang/go
f8ccda2e0574c9ca5d92068852a34b463f87a85b
f069a8299876f9987a01a8d4a664d2a887bd5efc
runtime: make explicit nil check in (*spanInlineMarkBits).init The hugo binary gets slower, potentially dramatically so, with GOEXPERIMENT=greenteagc. The root cause is page mapping churn. The Green Tea code introduced a new implicit nil check on value in a freshly-allocated span to clear some new heap metadata. This ...
[ { "path": "src/runtime/mgcmark_greenteagc.go", "patch": "@@ -111,6 +111,26 @@ func (o *spanScanOwnership) or(v spanScanOwnership) spanScanOwnership {\n }\n \n func (imb *spanInlineMarkBits) init(class spanClass) {\n+\tif imb == nil {\n+\t\t// This nil check and throw is almost pointless. Normally we would\n...
2025-06-25T15:47:05
vercel/next.js
628540fbbc9cb2cce858cba63d56e973744f2f83
efac8e2c501ca7e523cb9507189d36320afa49b3
Turbopack: Add new webpack loader rule/condition syntax in config (#82857) # This PR: - [x] Allow a condition to be specified inline within a `rule` - [x] Support `all`/`any`/`not` for conditions - [x] Simple flattening/optimization logic for the generated `RuleCondition` objects - [x] Unit test coverage of flatten...
[ { "path": "Cargo.lock", "patch": "@@ -9482,6 +9482,7 @@ dependencies = [\n \"anyhow\",\n \"codspeed-criterion-compat\",\n \"difference\",\n+ \"either\",\n \"regex\",\n \"rstest\",\n \"rstest_reuse\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crates/next-...
2025-08-29T02:49:57
facebook/react
8f3c0525f964fc5c75a627a6852f63efce1796b7
5cc9f69a74ac42d55ad635229e9eaf129a1f0862
[Flight / Flight Reply] Don't clear pending listeners when entering blocked state (#29201) Fixes #29200 The cyclic state might have added listeners that will still need to be invoked. This happens if we have a cyclic reference AND end up blocked. We have already cleared these before entering the parsing when we...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -506,8 +506,6 @@ function initializeModelChunk<T>(chunk: ResolvedModelChunk<T>): void {\n // We have to go the BLOCKED state until they're resolved.\n const blockedChunk: BlockedChunk<T> = (chunk: any);\n blockedChunk...
2024-05-21T18:12:20
nodejs/node
e90704cd9ed351e6e1709e696f9daae783685fe7
f6cfdb918ec704b83b509c34e7d4f491f9ac7528
build: fix GN build for cares/uv deps PR-URL: https://github.com/nodejs/node/pull/55477 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "deps/cares/unofficial.gni", "patch": "@@ -38,7 +38,10 @@ template(\"cares_gn_build\") {\n ]\n }\n \n- include_dirs = [ \"src/lib\" ]\n+ include_dirs = [\n+ \"src/lib\",\n+ \"src/lib/include\",\n+ ]\n if (is_win) {\n include_dirs += [ \"config/win32\" ]\n ...
2024-10-23T03:48:59
electron/electron
3dafb318a864b76fbe6412e00965af867da05b25
7e6fb97a2f4659d1416300a1c38f7294af081fb2
test: fixup assertNotWindows (#41045) * chore: fixup assertNotWindows * remove logging
[ { "path": "spec/lib/window-helpers.ts", "patch": "@@ -29,13 +29,19 @@ export const closeWindow = async (\n await ensureWindowIsClosed(window);\n \n if (assertNotWindows) {\n- const windows = BaseWindow.getAllWindows();\n- try {\n- expect(windows).to.have.lengthOf(0);\n- } finally {\n- ...
2024-01-18T19:04:43
golang/go
e515ef8bc271f632bb2ebb94e8e700ab67274268
47b941f445f0a839e826b81a5394d30934821500
context: fix typo in context_test.go Change-Id: Iee90ce7965eec4074fcb81a34968591877a062d3 GitHub-Last-Rev: f18fd099e490b130affa298bfc40da27ac589b26 GitHub-Pull-Request: golang/go#74360 Reviewed-on: https://go-review.googlesource.com/c/go/+/683675 Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri ...
[ { "path": "src/context/context_test.go", "patch": "@@ -5,7 +5,7 @@\n package context\n \n // Tests in package context cannot depend directly on package testing due to an import cycle.\n-// If your test does requires access to unexported members of the context package,\n+// If your test requires access to un...
2025-06-24T23:46:06
vercel/next.js
3c3c4dbe7fd0e6324189b2eb0c8b2282bd5b964c
6b83df95598fb1c8711bfbbf3969292baa94c9b7
[turbopack] Change execution and snapshot tests to check for the existence of files rather than directories (#83189) This fixes an annoying devex issue when switching branches
[ { "path": "turbopack/crates/turbopack-tests/tests/execution.rs", "patch": "@@ -102,8 +102,12 @@ fn register() {\n //\n // \"Skip\" directories named `__skipped__`, which include test directories to\n // skip.\n-#[testing::fixture(\"tests/execution/*/*/*\", exclude(\"node_modules|__skipped__\"))]\n+#[testing...
2025-08-29T00:12:51
facebook/react
5cc9f69a74ac42d55ad635229e9eaf129a1f0862
7621466b1b17965032aed24591e9b67fcd926a1b
Fix assertConsoleErrorDev on message mismatch with withoutStack: true (#29198) ## Summary ```js assertConsoleErrorDev([ ['Hello', {withoutStack: true}] ]) ``` now errors with a helpful diff message if the message mismatched. See first commit for previous behavior. ## How did you test this change? - ...
[ { "path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js", "patch": "@@ -2417,6 +2417,32 @@ describe('ReactInternalTestUtils console assertions', () => {\n If all errors should include the component stack, you may need to remove {withoutStack: true} from the assertConsoleEr...
2024-05-21T16:48:41
nodejs/node
47ad609d647ca504104c35cc97160e851af16e70
eb63cd24d23a38fb39bbe1b8a1bb8357eaf4be16
test: fix addons and node-api test assumptions PR-URL: https://github.com/nodejs/node/pull/55441 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/addons/repl-domain-abort/test.js", "patch": "@@ -38,7 +38,7 @@ process.on('exit', () => {\n \n const lines = [\n // This line shouldn't cause an assertion error.\n- `require('${buildPath}')` +\n+ `require(${JSON.stringify(buildPath)})` +\n // Log output to double check callback ran.\n ...
2024-10-22T07:49:19
rust-lang/rust
6314bd72db4badf597b584b33a00967cc7f590f1
e0cb264b814526acb82def4b5810e394a2ed294f
fix(codegen): Use `body_codegen_attrs` for caller in `adjust_target_feature_sig`
[ { "path": "compiler/rustc_middle/src/ty/context.rs", "patch": "@@ -1330,8 +1330,8 @@ impl<'tcx> TyCtxt<'tcx> {\n caller: DefId,\n ) -> Option<ty::Binder<'tcx, ty::FnSig<'tcx>>> {\n let fun_features = &self.codegen_fn_attrs(fun_def).target_features;\n- let callee_features = &self.c...
2026-02-19T05:52:42
golang/go
fcb985085925e1d89511ef7523215a2f71cfb891
11f11f2a00aa3149a6ea69a50e7b7b429cf368b7
net/http: reduce allocs in CrossOriginProtection.Check Rather than repeatedly creating error values on CrossOriginProtection.Check's unhappy paths, return non-exported and effectively constant error variables. For #73626. Change-Id: Ibaa036c29417071b3601b8d200ab0902359d1bb9 GitHub-Last-Rev: e704d63cd63665845d544796e...
[ { "path": "src/net/http/csrf.go", "patch": "@@ -136,7 +136,7 @@ func (c *CrossOriginProtection) Check(req *Request) error {\n \t\tif c.isRequestExempt(req) {\n \t\t\treturn nil\n \t\t}\n-\t\treturn errors.New(\"cross-origin request detected from Sec-Fetch-Site header\")\n+\t\treturn errCrossOriginRequest\n ...
2025-06-23T16:19:19
facebook/react
57fbe3ba3729935b7ce5b670e57d30d487134bcb
d14ce51327c1bd4daf78f5118ae23f8620ebad03
[Compiler playground] bold changed passes (#29159) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, ple...
[ { "path": "compiler/apps/playground/components/Editor/Output.tsx", "patch": "@@ -187,13 +187,29 @@ function Output({ store, compilerOutput }: Props) {\n });\n }, [store.source, compilerOutput]);\n \n+ const changedPasses: Set<string> = new Set();\n+ let lastResult: string = \"\";\n+ for (const [pas...
2024-05-20T15:05:48
nodejs/node
1c2eecd6695ab0067806a70bc7c0fdcc0c15aaff
5983110545e7ac78ce6e3310f16ccfc90c0c3c1f
doc: add note about stdio streams in child_process PR-URL: https://github.com/nodejs/node/pull/55322 Fixes: https://github.com/nodejs/node/issues/15714 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "doc/api/child_process.md", "patch": "@@ -1061,6 +1061,15 @@ pipes between the parent and child. The value is one of the following:\n corresponds to the index in the `stdio` array. The stream must have an\n underlying descriptor (file streams do not start until the `'open'` event has\n oc...
2024-10-22T05:05:05
electron/electron
7e6fb97a2f4659d1416300a1c38f7294af081fb2
df7f07a8af35a7b96c892374f0b51f3d432fc705
fix: crash when `dialog.showMessageBoxSync` with missing buttons (#40996) * fix: crash when dialog.showMessageBoxSync missing buttons * chore: feedback from review
[ { "path": "shell/browser/ui/message_box_mac.mm", "patch": "@@ -76,15 +76,16 @@\n [[ns_buttons objectAtIndex:settings.default_id] setKeyEquivalent:@\"\\r\"];\n }\n \n- // Bind cancel id button to escape key if there is more than one button\n- if (button_count > 1 && settings.cancel_id >= 0 &&\n- ...
2024-01-18T12:21:15
vercel/next.js
a8c9d07a026a02831af83d874a91f42dc58a8866
b4ac90a1352f1d00971586eda457add8ae4e5c61
add unstable_prefetch config to typescript plugin (#83181) In #8290 i forgot to update our typescript plugin, so exporting `unstable_prefetch` caused it to error. This is fixed now: <img width="871" height="145" alt="Screenshot 2025-08-28 at 17 19 18" src="https://github.com/user-attachments/assets/ca295029-5a93-483b...
[ { "path": "packages/next/src/server/typescript/rules/config.ts", "patch": "@@ -12,6 +12,7 @@ import {\n LEGACY_CONFIG_EXPORT,\n } from '../constant'\n import type tsModule from 'typescript/lib/tsserverlibrary'\n+import type { AppSegmentConfig } from '../../../build/segment-config/app/app-segment-config'\n...
2025-08-28T17:11:48
golang/go
11f11f2a00aa3149a6ea69a50e7b7b429cf368b7
62deaf4fb839a6e152fc832c2c71325215e55831
encoding/json/v2: support ISO 8601 durations Based on the discussion in #71631, it is hotly contested whether the default JSON representation for a Go time.Duration should be the time.Duration.String format or a particular profile of ISO 8601. Regardless of the default, it seems clear that we should at least support I...
[ { "path": "src/encoding/json/v2/arshal.go", "patch": "@@ -147,17 +147,23 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n // If the format matches one of the format constants declared\n // in the time package (e.g., RFC1123), then that format is used.\n // If the format is ...
2025-06-19T01:35:36
electron/electron
df7f07a8af35a7b96c892374f0b51f3d432fc705
f97d8719e6071722c67d2a1ac371f80faee78b0e
fix: modal rounding on nonmodal windows (#41003) * fix: modal rounding on nonmodal windows * chore: feedback from review
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1402,14 +1402,15 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n if (vibrantView != nil && !vibrancy_type_.empty()) {\n const bool no_rounded_corner = !HasStyleMask(NSWindowStyleMaskTitled);\n const i...
2024-01-18T08:59:54
nodejs/node
5983110545e7ac78ce6e3310f16ccfc90c0c3c1f
d3526af7ff6c11cddc637d8c932a7481c1603a40
doc: add `isBigIntObject` to documentation Refs: https://github.com/nodejs/node/pull/19989 Fixes: https://github.com/nodejs/node/issues/55446 PR-URL: https://github.com/nodejs/node/pull/55450 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <d...
[ { "path": "doc/api/util.md", "patch": "@@ -2379,6 +2379,24 @@ util.types.isBigInt64Array(new BigInt64Array()); // Returns true\n util.types.isBigInt64Array(new BigUint64Array()); // Returns false\n ```\n \n+### `util.types.isBigIntObject(value)`\n+\n+<!-- YAML\n+added: v10.4.0\n+-->\n+\n+* `value` {any}\...
2024-10-22T05:00:25
vercel/next.js
b4ac90a1352f1d00971586eda457add8ae4e5c61
8d78f8f11014a02a9f7d15127bea21f9b865e428
[test] Add esm and cjs testing for next-config-ts (#83134) Split tests into ESM and CJS to ensure it works on both environments. The changes are mostly: 1. Split tests into two 2. Add `-esm` and `-cjs` for each 3. Add `packageJson: { type: 'module' }` to `-esm` test 4. Renamed `tsconfig.json` -> `tsconfig.tes...
[ { "path": "test/e2e/app-dir/next-config-ts/async-function/async-function-cjs.test.ts", "patch": "@@ -1,11 +1,11 @@\n import { nextTestSetup } from 'e2e-utils'\n \n-describe('next-config-ts-config-as-async-function', () => {\n+describe('next-config-ts-async-function-cjs', () => {\n const { next } = nextTes...
2025-08-28T15:45:33
rust-lang/rust
c9a76c4da5857546c0880c6e0fd5267532968416
94f6e7efd37f1ab2f045e4f4685076696ad690fd
style: fix clippy collapsible_if warning
[ { "path": "src/tools/rust-analyzer/crates/ide-db/src/path_transform.rs", "patch": "@@ -580,10 +580,10 @@ impl Ctx<'_> {\n }\n }\n \n- if let hir::ModuleDef::Variant(v) = def {\n- if v.kind(self.source_scope.db) != hir::StructKind::Unit {\...
2026-02-19T05:06:43
facebook/react
d14ce51327c1bd4daf78f5118ae23f8620ebad03
c325aec1ee5ae970ea70efc9b19574aa0e72c9a1
refactor[react-devtools]: rewrite context menus (#29049) ## Summary - While rolling out RDT 5.2.0 on Fusebox, we've discovered that context menus don't work well with this environment. The reason for it is the context menu state implementation - in a global context we define a map of registered context menus, basi...
[ { "path": "packages/react-devtools-inline/__tests__/__e2e__/components.test.js", "patch": "@@ -8,6 +8,7 @@ const devToolsUtils = require('./devtools-utils');\n const {test, expect} = require('@playwright/test');\n const config = require('../../playwright.config');\n const semver = require('semver');\n+\n te...
2024-05-20T14:12:21
golang/go
62deaf4fb839a6e152fc832c2c71325215e55831
2e9bb62bfed92ef24a6744fbdc3cf24eb672cd56
doc: fix links to runtime Environment Variables Change-Id: I9e8ecc5e4f4cba0b09008b2b0d9d3f8842687ec3 GitHub-Last-Rev: e0ddaaed3875761a1ff3692af49c0ec2622a5e20 GitHub-Pull-Request: golang/go#74180 Reviewed-on: https://go-review.googlesource.com/c/go/+/681516 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-...
[ { "path": "doc/godebug.md", "patch": "@@ -187,7 +187,7 @@ Go 1.25 switched to SHA-256 to fill in missing SubjectKeyId in\n crypto/x509.CreateCertificate. The setting `x509sha256skid=0` reverts to SHA-1.\n \n Go 1.25 corrected the semantics of contention reports for runtime-internal locks,\n-and so removed t...
2025-06-16T22:15:04
nodejs/node
fed28bf8134b20059cf96392a58abb8a81f8dca8
e92446536ed4e268c9eef6ae6f911e384c98eecf
build: fix uninstall script for AIX 7.1 Signed-off-by: Cloorc <13597105+cloorc@users.noreply.github.com> PR-URL: https://github.com/nodejs/node/pull/55438 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Abdirahim Musse <abdirahim.musse@ibm.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "tools/install.py", "patch": "@@ -4,10 +4,15 @@\n import ast\n import errno\n import os\n+import platform\n import shutil\n import sys\n import re\n \n+current_system = platform.system()\n+\n+SYSTEM_AIX = \"AIX\"\n+\n def abspath(*args):\n path = os.path.join(*args)\n return os.path.abspath(pa...
2024-10-21T19:50:43
electron/electron
f97d8719e6071722c67d2a1ac371f80faee78b0e
021592200e4bcc0127ad6aebcee3caa578fb77f4
fix: use `HasStyleMask(NSWindowStyleMaskResizable)` instead of `IsResizable()` for enabling/disabling window maximize button (#40994)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -916,7 +916,8 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n \n void NativeWindowMac::UpdateZoomButton() {\n [[window_ standardWindowButton:NSWindowZoomButton]\n- setEnabled:IsResizable() && (CanMaximize...
2024-01-17T17:23:41
facebook/react
c325aec1ee5ae970ea70efc9b19574aa0e72c9a1
ba51ebe03a3cf6ec86f940b09b8efc722c7ce905
Bump word-wrap from 1.2.3 to 1.2.5 in /compiler (#29064) Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jonschlinkert/word-wrap/releases">word-wrap's releases</a>.</em></p> <blockquote>...
[ { "path": "compiler/yarn.lock", "patch": "@@ -9813,9 +9813,9 @@ which@^2.0.1:\n isexe \"^2.0.0\"\n \n word-wrap@^1.2.3, word-wrap@~1.2.3:\n- version \"1.2.3\"\n- resolved \"https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c\"\n- integrity sha512-Hz/m...
2024-05-20T11:03:55