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 |
|---|---|---|---|---|---|
electron/electron | 3340bc1bf938cc821da1e2f91b49cdba46cb29e1 | 2029224a845bb0751fb8b092ab28c109821e1715 | fix: maximized window bounds when toggle setResizable (#40503) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -682,11 +682,16 @@ void NativeWindowViews::Unmaximize() {\n if (transparent()) {\n SetBounds(restore_bounds_, false);\n NotifyWindowUnmaximize();\n+ UpdateThickFrame();\n return;\n }\n #endif\n \n widget()->Res... | 2023-11-22T06:21:18 |
facebook/react | 338dddc089d5865761219f02b5175db85c54c489 | c35b9b05fee039a8c3a99fdb7e35d5ca30db9eb0 | Remove RTR from DebugTracing-test (#28411)
## Summary
Internal cleanup of ReactTestRenderer
## How did you test this change?
`yarn test
packages/react-reconciler/src/__tests__/DebugTracing-test.internal.js` | [
{
"path": "packages/react-reconciler/src/__tests__/DebugTracing-test.internal.js",
"patch": "@@ -11,9 +11,10 @@\n \n describe('DebugTracing', () => {\n let React;\n- let ReactTestRenderer;\n+ let ReactNoop;\n let waitForPaint;\n let waitForAll;\n+ let act;\n \n let logs;\n \n@@ -27,10 +28,11 @@ d... | 2024-03-07T21:36:50 |
golang/go | 3432c68467d50ffc622fed230a37cd401d82d4bf | 1aa336209363d9715e145244c7b22620ac0f0584 | runtime: make bubbled timers more consistent with unbubbled
This CL makes two changes to reduce the predictability
with which bubbled timers fire.
When asynctimerchan=0 (the default), regular timers with an associated
channel are only added to a timer heap when some channel operation
is blocked on that channel. This ... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -226,8 +226,8 @@ func TestTimerNondeterminism(t *testing.T) {\n \t\tconst iterations = 1000\n \t\tvar seen1, seen2 bool\n \t\tfor range iterations {\n-\t\t\ttm1 := time.NewTimer(0)\n-\t\t\ttm2 := time.NewTimer(0)\n+\t\t\ttm1 := time.NewTimer(1... | 2025-06-02T16:26:27 |
vercel/next.js | 5033dcb9d3820317c7a79326228fe5834a68d5b0 | 116770b8e4b69a6340af3b4b626007626c584925 | Turbopack: run unit tests in multi threaded runtime (#82665)
### What?
run unit tests in multi threaded runtime
fix cache hit tracking | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -1267,7 +1267,6 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n return task_id;\n }\n \n- self.track_cache_miss(&task_type);\n let tx = self\n .should_restore()\n ... | 2025-08-20T21:23:04 |
facebook/react | c35b9b05fee039a8c3a99fdb7e35d5ca30db9eb0 | 447fc27e3613d9fd026fbf48aa8a5e5a3f5167d4 | Fix ReactHooksInspection-test.js (#28520)
## Summary
Currently, `ReactHooksInspection-test.js` fails because something is
polluting the resulting `Promise` with symbol properties. This changes
the unit test to be more resilient to such symbol properties.
## How did you test this change?
Ran the following su... | [
{
"path": "packages/react-debug-tools/src/__tests__/ReactHooksInspection-test.js",
"patch": "@@ -584,24 +584,29 @@ describe('ReactHooksInspection', () => {\n return <div>{value}</div>;\n }\n const tree = ReactDebugTools.inspectHooks(Foo, {});\n- expect(normalizeSourceLoc(tree)).toMatchInlin... | 2024-03-07T19:22:42 |
electron/electron | f3676ff975b4696ff334f00ea4d81a216360ed1f | 0b5fceb50ea18102411950106037636834e0f7d2 | docs: wording in IPC tutorial docs (#40555)
fix: wording in IPC tutorial docs | [
{
"path": "docs/tutorial/ipc.md",
"patch": "@@ -280,8 +280,8 @@ selected file path in the `#filePath` element.\n ### Note: legacy approaches\n \n The `ipcRenderer.invoke` API was added in Electron 7 as a developer-friendly way to tackle two-way\n-IPC from the renderer process. However, there exist a couple ... | 2023-11-22T06:19:54 |
golang/go | 1aa336209363d9715e145244c7b22620ac0f0584 | f537061e1b7599e97bafc0c8f9cc0bf686eb813e | Revert "cmd/compile: Enable inlining of tail calls"
This reverts CL 650455 and CL 655816.
Reason for revert: it causes #73747. Properly fixing it gets into
trickiness with defer/recover, wrapper, and inlining. We're late
in the Go 1.25 release cycle.
Fixes #73747.
Change-Id: Ifb343d522b18fec3fec73a7c886678032ac8e4d... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -785,7 +785,7 @@ func inlineCallCheck(callerfn *ir.Func, call *ir.CallExpr) (bool, bool) {\n \tif call.Op() != ir.OCALLFUNC {\n \t\treturn false, false\n \t}\n-\tif call.GoDefer {\n+\tif call.GoDefer || call.NoInline {\n \t\treturn false, fals... | 2025-06-03T19:44:32 |
vercel/next.js | 902ad4ad5001da899f5f38a49168ce0f0641cae5 | bdce43d249da7be5eb1a67c4892289d07d7308ef | fix: missing `next/link` types with `typedRoutes` (#82814)
# Problem
When `typedRoutes` is enabled, some of the types are missing.
For example, doing `import { useLinkStatus } from 'next/link'` will
receive a type error where the `useLinkStatus` cannot be found from
`next/link`.
<img width="824" height="141" alt="i... | [
{
"path": "packages/next/src/server/lib/router-utils/typegen.ts",
"patch": "@@ -292,6 +292,8 @@ declare module 'next' {\n }\n \n declare module 'next/link' {\n+ export { useLinkStatus } from 'next/dist/client/link.js'\n+\n import type { LinkProps as OriginalLinkProps } from 'next/dist/client/link.js'\n ... | 2025-08-20T20:03:36 |
facebook/react | 447fc27e3613d9fd026fbf48aa8a5e5a3f5167d4 | 850fac4915864a487e7cb9ecae8a75dbac144174 | fix[devtools/e2e]: fixed source inspection in e2e tests (#28518)
DevTools e2e tests started to fail after landing
https://github.com/facebook/react/pull/28471:
-
https://app.circleci.com/pipelines/github/facebook/react/50984/workflows/a7be25ed-9547-40e9-87bd-b14d9d2e87da/jobs/798270
-
https://app.circleci.com/pip... | [
{
"path": "packages/react-devtools-inline/__tests__/__e2e__/components.test.js",
"patch": "@@ -59,7 +59,7 @@ test.describe('Components', () => {\n const isEditableValue = semver.gte(config.use.react_version, '16.8.0');\n \n // Then read the inspected values.\n- const [propName, propValue, sourceT... | 2024-03-07T17:59:37 |
electron/electron | d6bb9b40b036c8e000b6edfe1c2f81bac1702510 | 2c03b8fd6be5029dce0a78849860e5f57a3b3026 | feat: add webUtils module with getPathForFile method (#38776)
* feat: add blinkUtils module with getPathForFile method
This is designed to replace the File.path augmentation
we currently have in place to allow apps to get the filesystem
path for a file that blink has a representation of.
File.path is non-stand... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -2165,7 +2165,7 @@ jobs:\n <<: *env-ninja-status\n <<: *env-macos-build\n <<: *env-apple-silicon\n- GCLIENT_EXTRA_ARGS: '--custom-var=checkout_mac=True --custom-var=host_os=mac'\n+ GCLIENT_EXTRA_ARGS: '--custom-var=checkout_mac=... | 2023-11-20T23:59:36 |
nodejs/node | fa8f149c0a4f1d7f9b1de64ea2a6e2d2e38143af | 019efe1453ba2c3f3cb6d6cd99d18bb72c16b84f | 2024-10-16, Version 23.0.0 (Current)
Semver-Major Commits:
assert,util:
* (SEMVER-MAJOR) change WeakMap and WeakSet comparison handling (Cristian Barlutiu) https://github.com/nodejs/node/pull/53495
buffer:
* (SEMVER-MAJOR) throw when writing beyond buffer" (Robert Nagy) https://github.com/nodejs/node/pull/54588
... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -2,6 +2,7 @@\n \n Select a Node.js version below to view the changelog history:\n \n+* [Node.js 23](doc/changelogs/CHANGELOG_V23.md) **Current**\n * [Node.js 22](doc/changelogs/CHANGELOG_V22.md) **Current**\n * [Node.js 21](doc/changelogs/CHANGELOG_V21.md) End-of-Life\... | 2024-10-09T17:48:01 |
golang/go | f537061e1b7599e97bafc0c8f9cc0bf686eb813e | d4bf7167935e84e7200e95649563d1368cf05331 | cmd/trace: handle Sync event at the beginning of the trace
Currently the code assumes that there's no Sync event at the start of
the trace, but this hasn't been correct for some time. Count Syncs and
look for at least one instead of looking for zero.
Fixes #73962.
Change-Id: I2b4199a21c699c5b50b3d5add37dc46a515108c6... | [
{
"path": "src/cmd/trace/gen.go",
"patch": "@@ -215,12 +215,12 @@ func (g *stackSampleGenerator[R]) StackSample(ctx *traceContext, ev *trace.Event\n // to trace.ResourceNone (the global scope).\n type globalRangeGenerator struct {\n \tranges map[string]activeRange\n-\tseenSync bool\n+\tseenSync int\n }\n ... | 2025-06-03T20:30:43 |
vercel/next.js | 7a59a7904a42012602ac3861ec2497594cf204d0 | 50c172daa94e6c73d623214caa047e3fb1dffef3 | [test] fix cache components build error in next-form tests (#82841) | [
{
"path": "test/cache-components-tests-manifest.json",
"patch": "@@ -33,10 +33,11 @@\n ]\n },\n \"test/e2e/next-form/default/next-form-prefetch.test.ts\": {\n- \"passed\": [],\n- \"failed\": [\n- \"app dir - form prefetching should not prefetch when prefetch is set to false`\"... | 2025-08-20T17:21:01 |
facebook/react | fe91bcefd2bbc3da9f1998befb466acc8b4afdca | 449aa70f99c4984e7550fb9ef1aa16b1b60d6544 | Fix promotion of catch bindings w/in function expressions
One of our visitors wasn't visiting TryTerminal's handlerBinding, which meant
that we missed renaming those identifiers in RenameVariables. I also updated the
printers to print this binding. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/PrintHIR.ts",
"patch": "@@ -266,8 +266,10 @@ export function printTerminal(terminal: Terminal): Array<string> | string {\n break;\n }\n case \"try\": {\n- value = `Try block=bb${terminal.block} catch=bb${\n- terminal.ha... | 2024-03-07T17:21:33 |
electron/electron | 2c03b8fd6be5029dce0a78849860e5f57a3b3026 | 67894f1493ca5bdbd5c3f22d6ea8f5db7f283950 | fix: ShowItemUsingFileManager should escape path in Linux (#40527) | [
{
"path": "shell/common/platform_util_linux.cc",
"patch": "@@ -21,6 +21,7 @@\n #include \"base/posix/eintr_wrapper.h\"\n #include \"base/process/kill.h\"\n #include \"base/process/launch.h\"\n+#include \"base/strings/escape.h\"\n #include \"base/strings/string_util.h\"\n #include \"base/threading/thread_res... | 2023-11-20T00:00:56 |
nodejs/node | c0aebed4b3395bd65d54b18d1fd00f071002ac20 | 4dc76a990f0037401b6bf8c982d7401c2533f23b | esm: fix inconsistency with `importAssertion` in `resolve` hook
As the documentation states, the `context.importAssertion` should be
still supported and emit a warning. This is true for the `load` hook,
but not correct for context of the `resolve` hook.
This commit fixes the inconsistency.
PR-URL: https://github.com... | [
{
"path": "lib/internal/modules/esm/hooks.js",
"patch": "@@ -237,7 +237,7 @@ class Hooks {\n \n const nextResolve = nextHookFactory(chain[chain.length - 1], meta, { validateArgs, validateOutput });\n \n- const resolution = await nextResolve(originalSpecifier, context);\n+ const resolution = await ... | 2024-10-15T19:02:07 |
golang/go | d4bf7167935e84e7200e95649563d1368cf05331 | 1f2a4d192d71ae5eeaacaa72a8bb2df4e6c08edd | runtime: reduce per-P memory footprint when greenteagc is disabled
There are two additional sources of memory overhead per P that come from
greenteagc. One is for ptrBuf, but on platforms other than Windows it
doesn't actually cost anything due to demand-paging (Windows also
demand-pages, but the memory is 'committed'... | [
{
"path": "src/runtime/mgc.go",
"patch": "@@ -131,6 +131,7 @@ package runtime\n import (\n \t\"internal/cpu\"\n \t\"internal/goarch\"\n+\t\"internal/goexperiment\"\n \t\"internal/runtime/atomic\"\n \t\"internal/runtime/gc\"\n \t\"unsafe\"\n@@ -717,7 +718,7 @@ func gcStart(trigger gcTrigger) {\n \t\t\tthrow(... | 2025-06-03T19:28:00 |
facebook/react | 449aa70f99c4984e7550fb9ef1aa16b1b60d6544 | 854a810f0598def185f3f9593b070960433b21fd | Fix promotion of locals referenced outside of scopes | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PropagateScopeDependencies.ts",
"patch": "@@ -23,6 +23,7 @@ import {\n ReactiveScopeDependency,\n ReactiveTerminalStatement,\n ReactiveValue,\n+ ScopeId,\n } from \"../HIR/HIR\";\n import {\n eachInstructionValueOperand,\n@@ ... | 2024-03-07T00:19:28 |
vercel/next.js | ed5d085fb182364414b8ca0e8baa2e1988e629d6 | 8dd5f48611c9d1022cef73b0a194c775ac5ef580 | [Cache Components] Error for Sync IO in Server Components during Static Prerender (#82500)
Currently we error if you cannot produce a shell unless you have a
Suspense boundary above the root. This is fine for normal IO but sync IO
like Math.random() and new Date() have much more significant bad
consequences for preren... | [
{
"path": "errors/next-prerender-crypto.mdx",
"patch": "@@ -1,15 +1,17 @@\n ---\n-title: Cannot access `crypto.getRandomValue()`, `crypto.randomUUID()`, or another web or node crypto API that generates random values synchronously in a Server Component\n+title: Cannot access `crypto.getRandomValue()`, `crypt... | 2025-08-20T15:23:31 |
electron/electron | dec96acf14f6bf18aa20d38610d2f4feb625675c | d2b07a484d04ea3c447fa96a1543777f361197cb | fix: add patch for simdutf base64 crash (#40536) | [
{
"path": "patches/node/.patches",
"patch": "@@ -55,3 +55,4 @@ win_process_avoid_assert_after_spawning_store_app_4152.patch\n test_fix_edge_snapshot_stack_traces.patch\n chore_remove_use_of_deprecated_kmaxlength.patch\n api_remove_allcan_read_write.patch\n+fix_avx_detection.patch",
"additions": 1,
"... | 2023-11-16T04:11:08 |
nodejs/node | 231d5e4437163a2b99e87793d2766bf1ae283f38 | 0f375db9c6434c49dd3c738e85ab9fc91ee4e7a3 | buffer: make Buffer work with resizable ArrayBuffer
Fixes: https://github.com/nodejs/node/issues/52195
PR-URL: https://github.com/nodejs/node/pull/55377
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Ruben ... | [
{
"path": "lib/buffer.js",
"patch": "@@ -504,9 +504,7 @@ function fromArrayBuffer(obj, byteOffset, length) {\n if (maxLength < 0)\n throw new ERR_BUFFER_OUT_OF_BOUNDS('offset');\n \n- if (length === undefined) {\n- length = maxLength;\n- } else {\n+ if (length !== undefined) {\n // Convert l... | 2024-10-15T17:22:15 |
facebook/react | 8faed2af4cfd39b32063189f3e7c845984e513ea | 2ae0f36543e3306bc4b72de01a1ad8554c9176bf | Avoid conflicting names for reactive scope codegen
This is a key part of avoiding generating conflicting names in our output. To
start, RenameVariables now returns a Set of the unique identifier names that
exist in the function. Codegen uses this to avoid generating duplicate names for
change variables and for the... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts",
"patch": "@@ -348,7 +348,7 @@ function* runWithEnvironment(\n value: reactiveFunction,\n });\n \n- renameVariables(reactiveFunction);\n+ const uniqueIdentifiers = renameVariables(reactiveFunction);\n yield log({\n ... | 2024-03-06T19:07:11 |
golang/go | 1f2a4d192d71ae5eeaacaa72a8bb2df4e6c08edd | 5b748eed9c479383fc3ea3d018bbd03de1baa6e6 | test: add another regression test for issue 73309
Fixed #73309
Change-Id: Id715b9c71c95c92143a7fdb5a66b24305346dd3b
Reviewed-on: https://go-review.googlesource.com/c/go/+/678415
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Aut... | [
{
"path": "src/cmd/compile/internal/types2/stdlib_test.go",
"patch": "@@ -333,6 +333,7 @@ func TestStdFixed(t *testing.T) {\n \t\t\"issue56103.go\", // anonymous interface cycles; will be a type checker error in 1.22\n \t\t\"issue52697.go\", // types2 does not have constraints on stack size\n \t\t\"issue7... | 2025-06-03T17:04:26 |
vercel/next.js | 8dd5f48611c9d1022cef73b0a194c775ac5ef580 | df5bc544760bb3b6b65f05511245379095240088 | fix: update @types/node to resolve Vite 7.x peer dependency conflict (#82794)
## Problem
The project was experiencing npm dependency resolution conflicts when
running `npm install`, caused by incompatible @types/node versions
between Vite 7.1.3 and the existing project dependencies.
Fixes: https://github.com/vercel/n... | [
{
"path": "examples/with-vitest/package.json",
"patch": "@@ -8,17 +8,18 @@\n },\n \"dependencies\": {\n \"next\": \"latest\",\n- \"react\": \"^18.2.0\",\n- \"react-dom\": \"^18.2.0\",\n+ \"react\": \"^19.1.1\",\n+ \"react-dom\": \"^19.1.1\",\n \"server-only\": \"^0.0.1\"\n },\n \... | 2025-08-20T12:57:22 |
electron/electron | 371bca69b69351dc47d4b4dcfdf9a626f43b3b51 | 088affd4a4311e03b8ed400cdf5d82f1db2125a4 | refactor: use new extensions Messaging API IPC (#40511)
* refactor: use new extensions Messaging API IPC
Refs CRBUG:993189
Incorporates changes from:
* Bind ServiceWorker associated interfaces on Worker Thread (CL:4929154)
* [extensions] Move WakeEventPage to mojom::RendererHost (CL:4902564)
* [extensions] Co... | [
{
"path": "build/args/all.gn",
"patch": "@@ -60,8 +60,3 @@ enable_dangling_raw_ptr_checks = false\n # This flag speeds up the performance of fork/execve on linux systems.\n # Ref: https://chromium-review.googlesource.com/c/v8/v8/+/4602858\n v8_enable_private_mapping_fork_optimization = true\n-\n-# https://c... | 2023-11-15T14:30:47 |
nodejs/node | 0f375db9c6434c49dd3c738e85ab9fc91ee4e7a3 | 5e76c40b27f440b5b80ad57021e59dc8ebbd2594 | tools: fix typos
PR-URL: https://github.com/nodejs/node/pull/55061
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "tools/actions/commit-queue.sh",
"patch": "@@ -57,7 +57,7 @@ for pr in \"$@\"; do\n fi\n \n git node land --autorebase --yes $MULTIPLE_COMMIT_POLICY \"$pr\" >output 2>&1 || echo \"Failed to land #${pr}\"\n- # cat here otherwise we'll be supressing the output of git node land\n+ # cat here ot... | 2024-10-15T13:59:49 |
facebook/react | 4af3ff1e759682c05336341f242bb886a81839f3 | f4455ef51a11570a397c341a4119eab76955f267 | Fixture for transitive invalidation of effect dep
This fixture shows that this optimization partially improves transitive checking
for validateMemoizedEffectDependencies. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.validate-memoized-effect-deps-invalidated-dep-value.expect.md",
"patch": "@@ -0,0 +1,44 @@\n+\n+## Input\n+\n+```javascript\n+// @validateMemoizedEffectDependencies\n+import { useHook } from \"shared-runtime\";\n+\n... | 2024-03-06T17:28:03 |
golang/go | 5b748eed9c479383fc3ea3d018bbd03de1baa6e6 | cfb4e9bc4ae957dba63cb2ee5e020fcd25d553fd | cmd/compile: better error message when import embed package
Fixes #73955
Change-Id: I7cf3ab4c70dc2e2765b54b88ae8cfc77a3073344
Reviewed-on: https://go-review.googlesource.com/c/go/+/678355
Auto-Submit: Robert Griesemer <gri@google.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Robert Griesemer <gri@g... | [
{
"path": "src/cmd/compile/internal/noder/noder.go",
"patch": "@@ -458,7 +458,7 @@ func Renameinit() *types.Sym {\n func checkEmbed(decl *syntax.VarDecl, haveEmbed, withinFunc bool) error {\n \tswitch {\n \tcase !haveEmbed:\n-\t\treturn errors.New(\"go:embed only allowed in Go files that import \\\"embed\\\... | 2025-06-03T15:01:27 |
vercel/next.js | bed08dd1cce19209af9b64534aa4804f85aa76a5 | 58d85ae99cfcd8cc8691130663987b09269b0ffd | docs: fix typo in `Image#priority` (#82806)
`s/isused/is used`
<!-- 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": "docs/01-app/03-api-reference/02-components/image.mdx",
"patch": "@@ -277,7 +277,7 @@ A boolean that indicates if the image should be preloaded.\n \n **When not to use it:**\n \n-- When the `loading` prop isused (will trigger warnings).\n+- When the `loading` prop is used (will trigger warnings).\... | 2025-08-20T01:11:34 |
electron/electron | 088affd4a4311e03b8ed400cdf5d82f1db2125a4 | 0e4e9dc98c5b15442659d44cfca678c01c15f26d | fix: emit will-navigate for links in chrome: pages (#40390)
* fix: emit will-navigate for links in chrome: pages
* test: will-navigate emitted from chrome: pages
* Update shell/browser/electron_navigation_throttle.cc
Co-authored-by: Charles Kerr <charles@charleskerr.com>
---------
Co-authored-by: Charle... | [
{
"path": "shell/browser/electron_navigation_throttle.cc",
"patch": "@@ -4,9 +4,11 @@\n \n #include \"shell/browser/electron_navigation_throttle.h\"\n \n+#include \"content/browser/renderer_host/render_frame_host_impl.h\" // nogncheck\n #include \"content/public/browser/navigation_handle.h\"\n #include \"s... | 2023-11-14T22:09:44 |
facebook/react | 48e08c42be4ce37269b1ddc49ab349c1b74807cf | 22ea72d4e909e607d79bca8b46f09ded00153e06 | Fixtures where unmemoized value invalidates later scopes
These fixtures demonstrate how currently, even if the dependency of a scope
doesn't get memoized (ie the scope gets pruned), we don't remove later scopes
that depend on that value. Those later scopes will always invalidate, so we
might as well remove them. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/prune-scopes-whose-deps-invalidate-array.expect.md",
"patch": "@@ -0,0 +1,63 @@\n+\n+## Input\n+\n+```javascript\n+import { useHook } from \"shared-runtime\";\n+\n+function Component(props) {\n+ const x = [];\n+ useHook... | 2024-03-06T17:28:01 |
nodejs/node | 51d81466efc00417711558a08d0ff4206d8bf174 | 87da1f39298b1b1ea7b05a88e4c9ba956df54020 | src: fix winapi_strerror error string
Fixes: https://github.com/nodejs/node/issues/23191
PR-URL: https://github.com/nodejs/node/pull/55207
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/api/exceptions.cc",
"patch": "@@ -157,14 +157,14 @@ Local<Value> UVException(Isolate* isolate,\n static const char* winapi_strerror(const int errorno, bool* must_free) {\n char* errmsg = nullptr;\n \n- FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM |\n- ... | 2024-10-15T06:41:38 |
golang/go | cfb4e9bc4ae957dba63cb2ee5e020fcd25d553fd | 94764d093822721337243de77aeba72df1f9b230 | cmd/dist: don't install tools that won't be shipped in distribution
We shouldn't be installing these tools because we will remove them in
distpack. Installing the tools will also prevent us from testing what
happens when the tools are missing.
The changes below this on the stack, CL 677775 (cmd/doc: build cmd/doc
dir... | [
{
"path": "src/cmd/dist/build.go",
"patch": "@@ -1516,7 +1516,7 @@ func cmdbootstrap() {\n \t}\n \n \t// To recap, so far we have built the new toolchain\n-\t// (cmd/asm, cmd/cgo, cmd/compile, cmd/link)\n+\t// (cmd/asm, cmd/cgo, cmd/compile, cmd/link, cmd/preprofile)\n \t// using the Go bootstrap toolchain ... | 2025-05-30T16:53:42 |
vercel/next.js | 533bcd1485a731ade68a4fe6ea6aeffc2030cce2 | e6718d699d1d188fdff8a98191d1e6f69a8604fb | docs: Route props helpers, typegen and next lint deprecation (#82784)
As this lands and people learn about the new Route Props helpers, I
think we will have this period where the TypeScript snippets show the
manual typing, but in key places we introduce the helpers usage. We can
then follow up updating all TypeScript ... | [
{
"path": "docs/01-app/01-getting-started/03-layouts-and-pages.mdx",
"patch": "@@ -324,3 +324,37 @@ export default async function Post({ post }) {\n ```\n \n > **Good to know**: `<Link>` is the primary way to navigate between routes in Next.js. You can also use the [`useRouter` hook](/docs/app/api-reference... | 2025-08-19T21:32:52 |
rust-lang/rust | 18a707fc8e8126917c74982954b07b1adacdde6b | 3c9faa0d037b9eecda4a440cc482ff7f960fb8a5 | Revert "Fix an ICE in the vtable iteration for a trait reference"
The ICE fix appears to be unsound, causing a miscompilation involving
`dyn Trait` and `async {}` which induces segfaults in safe Rust code.
As the patch only hid an ICE, it does not seem worth the risk.
This reverts commit 8afd63610b0a261d3c39e24140c6a... | [
{
"path": "compiler/rustc_trait_selection/src/traits/vtable.rs",
"patch": "@@ -12,7 +12,7 @@ use rustc_span::DUMMY_SP;\n use smallvec::{SmallVec, smallvec};\n use tracing::debug;\n \n-use crate::traits::is_vtable_safe_method;\n+use crate::traits::{impossible_predicates, is_vtable_safe_method};\n \n #[derive... | 2026-02-17T01:41:30 |
facebook/react | c11b196ae3e2e3c5d143d9102b35a6b6fa97c849 | 966d17483c2a628fda36794bc193c7ad2c3124eb | Move tail hydration mismatch back to hydration context (#28501)
In #23176 we added a special case in completeWork for SuspenseBoundaries
if they still have trailing children. However, that misses a case
because it doesn't log a recoverable error for the hydration mismatch.
So we get an error that we rerendered.
... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js",
"patch": "@@ -538,6 +538,7 @@ describe('ReactDOMServerPartialHydration', () => {\n assertLog([\n 'Server rendered',\n 'Client rendered',\n+ 'Hydration failed because the initial UI does not mat... | 2024-03-06T01:54:24 |
nodejs/node | 80b56bbab0f3962b1ee21d8fdd6b8f94ca0adf0f | 488ce99d7632cd59729a5debe18d662bd0678ae6 | diagnostics_channel: fix unsubscribe during publish
PR-URL: https://github.com/nodejs/node/pull/55116
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Claudio Wunder <cwunder@gnome.org> | [
{
"path": "lib/diagnostics_channel.js",
"patch": "@@ -4,6 +4,8 @@ const {\n ArrayPrototypeAt,\n ArrayPrototypeIndexOf,\n ArrayPrototypePush,\n+ ArrayPrototypePushApply,\n+ ArrayPrototypeSlice,\n ArrayPrototypeSplice,\n ObjectDefineProperty,\n ObjectGetPrototypeOf,\n@@ -97,6 +99,7 @@ function w... | 2024-10-14T10:55:39 |
golang/go | 792548a4835f019b40bf8bd4442c893eae280467 | 49f63047245a50f4ec38044fc6fa2bc75719726a | cmd/go/internal/cfg: fix GOROOT setting when forcing host config
We manage the state using a bunch of global config, so we need to make
sure we're doing things in the right order. In this case, the SetGOROOT
function was being called in init, setting the GOROOT on the global
Context, but when we reset the context in F... | [
{
"path": "src/cmd/go/internal/cfg/cfg.go",
"patch": "@@ -227,6 +227,8 @@ func ForceHost() {\n \t// Recompute the build context using Goos and Goarch to\n \t// set the correct value for ctx.CgoEnabled.\n \tBuildContext = defaultContext()\n+\t// Call SetGOROOT to properly set the GOROOT on the new context.\n... | 2025-05-30T20:16:27 |
vercel/next.js | e6718d699d1d188fdff8a98191d1e6f69a8604fb | 91da00336c244858f2503b57aa29805e3ae24aa1 | docs: fix TS error in Node.js runtime local assets example (#82672)
## What?
Updated the documentation for `opengraph-image` / `twitter-image` to fix
the **Node.js runtime with local assets** example.
## Why?
The existing snippet did not type-check cleanly with Next.js 15+ and
could confuse developers.
This updat... | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/01-metadata/opengraph-image.mdx",
"patch": "@@ -402,7 +402,59 @@ export default async function Image({ params }) {\n \n #### Using Node.js runtime with local assets\n \n-This example uses the Node.js runtime to fetch a local image on the file syste... | 2025-08-19T21:28:18 |
electron/electron | 0e4e9dc98c5b15442659d44cfca678c01c15f26d | b639fa4626a78872b64462f52ee0fb8925148676 | chore: bump chromium to 121.0.6116.0 (main) (#40490)
* chore: bump chromium in DEPS to 121.0.6116.0
* chore: update patches
* Update webIDL to support close event.
Refs https://chromium-review.googlesource.com/c/chromium/src/+/4970653
* Remove uses of implicit conversion of ScopedTypeRef
Refs https://bu... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '121.0.6110.0',\n+ '121.0.6116.0',\n 'node_version':\n 'v18.18.2',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "appvey... | 2023-11-14T21:21:32 |
rust-lang/rust | d54a023c69d095d1185a7303456672656bda25f9 | b28ebc87a8716c561cfbc1913e5c146975971d22 | [cg_clif]: Fix codegen of f128 to i128 casts
Correct name for intrinsic that converts f128 to u128
Use `to_signed` instead of `from_signed` to ensure proper intrinsic
selected for u128/i128 | [
{
"path": "src/codegen_f16_f128.rs",
"patch": "@@ -208,7 +208,7 @@ pub(crate) fn codegen_cast(\n let ret_ty = if to_ty.bits() < 32 { types::I32 } else { to_ty };\n let name = format!(\n \"__fix{sign}tf{size}i\",\n- sign = if from_signed { \"\" } else { \"un\" },\n+ ... | 2026-02-12T20:38:13 |
facebook/react | 22ea72d4e909e607d79bca8b46f09ded00153e06 | f5d99baf8e64530473fac5fe0dd2bd489f3bf8fc | Allow global mutation within useEffect (#2646)
Summary: Currently Forget bails on mutations to globals within any callback function. However, callbacks passed to useEffect should not bail and are not subject to the rules of react in the same way.
We allow this by instead of immediately raising errors when we see il... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -165,6 +165,12 @@ export class CompilerError extends Error {\n throw errors;\n }\n \n+ static throw(options: CompilerErrorDetailOptions): never {\n+ const errors = new CompilerError();\n+ errors.pushError... | 2024-03-05T19:54:29 |
nodejs/node | 488ce99d7632cd59729a5debe18d662bd0678ae6 | f97865fab436fba24b46dad14435ec4b482243a2 | events: optimize EventTarget.addEventListener
PR-URL: https://github.com/nodejs/node/pull/55312
Fixes: https://github.com/nodejs/node/issues/55311
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.... | [
{
"path": "benchmark/events/eventtarget-add-remove-abort.js",
"patch": "@@ -0,0 +1,25 @@\n+'use strict';\n+const common = require('../common.js');\n+\n+const bench = common.createBenchmark(main, {\n+ n: [1e5],\n+ nListener: [1, 5, 10],\n+});\n+\n+function main({ n, nListener }) {\n+ const target = new Ev... | 2024-10-14T10:24:32 |
golang/go | 3bd0eab96f581daafa3045de0c5877254e19054c | a37969852194c841beb61f8078e9939438841fec | runtime: randomize order of timers at the same instant in bubbles
In synctest bubbles, fire timers scheduled for the same instant
in a randomized order.
Pending timers are added to a heap ordered by the timer's wakeup time.
Add a per-timer random value, set when the timer is added to a heap,
to break ties between tim... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -16,6 +16,7 @@ import (\n \t\"strconv\"\n \t\"strings\"\n \t\"sync\"\n+\t\"sync/atomic\"\n \t\"testing\"\n \t\"time\"\n \t\"weak\"\n@@ -218,6 +219,65 @@ func TestTimerFromOutsideBubble(t *testing.T) {\n \t}\n }\n \n+// TestTimerNondeterminism ... | 2025-05-29T18:48:06 |
vercel/next.js | 91da00336c244858f2503b57aa29805e3ae24aa1 | e3e21977ede164c4a9983d4c437d4b64d44559fa | fix: remove a few old references to 'next lint' (#82800) | [
{
"path": "docs/01-app/01-getting-started/01-installation.mdx",
"patch": "@@ -66,7 +66,7 @@ Then, add the following scripts to your `package.json` file:\n \"dev\": \"next dev\",\n \"build\": \"next build\",\n \"start\": \"next start\",\n- \"lint\": \"next lint\"\n+ \"lint\": \"eslint\"\n ... | 2025-08-19T20:56:46 |
rust-lang/rust | 7be024fc06538914615971c2c5b2c964dde5551f | 67799c97393c82a6fd378e460cfd3996fc461020 | [cg_clif]: Fix codegen of f128 to i128 casts
Correct name for intrinsic that converts f128 to u128
Use `to_signed` instead of `from_signed` to ensure proper intrinsic
selected for u128/i128 | [
{
"path": "compiler/rustc_codegen_cranelift/src/codegen_f16_f128.rs",
"patch": "@@ -208,7 +208,7 @@ pub(crate) fn codegen_cast(\n let ret_ty = if to_ty.bits() < 32 { types::I32 } else { to_ty };\n let name = format!(\n \"__fix{sign}tf{size}i\",\n- sign = if from_signed... | 2026-02-12T20:38:13 |
facebook/react | 966d17483c2a628fda36794bc193c7ad2c3124eb | e5287287aacd3c51d24e223651b7f38ece584c49 | React DevTools 5.0.1 -> 5.0.2 (#28496)
* feat[devtools]: symbolicate source for inspected element
([hoxyq](https://github.com/hoxyq) in
[#28471](https://github.com/facebook/react/pull/28471))
* refactor[devtools]: lazily define source for fiber based on component
stacks ([hoxyq](https://github.com/hoxyq) in
[#283... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.0.1\",\n+ \"version\": \"5.0.2\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\... | 2024-03-05T14:11:30 |
electron/electron | 7981d955b8f84e2129f5a907445fbc0aea6b9fe8 | cf5f0419f11516937e43e8259204339dffa22aa4 | fix: `chrome.action` API registration (#40500) | [
{
"path": "shell/browser/extensions/api/BUILD.gn",
"patch": "@@ -11,6 +11,7 @@ assert(enable_extensions,\n \n function_registration(\"api_registration\") {\n sources = [\n+ \"//electron/shell/common/extensions/api/action.json\",\n \"//electron/shell/common/extensions/api/extension.json\",\n \"/... | 2023-11-13T07:27:18 |
nodejs/node | 6d36199c5f955ee41d8ad370eb84d9776daa752c | 129ca9e319f6aad91161e393d47a3e0512421f23 | build: fix make errors that occur in Makefile
fix make errors that occur in
coverage-clean case and coverage-test in Makefile
PR-URL: https://github.com/nodejs/node/pull/55287
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "Makefile",
"patch": "@@ -243,7 +243,7 @@ coverage-clean: ## Remove coverage artifacts.\n \t$(RM) -r coverage/tmp\n \t@if [ -d \"out/Release/obj.target\" ]; then \\\n \t\t$(FIND) out/$(BUILDTYPE)/obj.target \\( -name \"*.gcda\" -o -name \"*.gcno\" \\) \\\n-\t\t\t-type f -exec $(RM) {};\\\n+\t\t\t-... | 2024-10-14T06:41:11 |
rust-lang/rust | 67799c97393c82a6fd378e460cfd3996fc461020 | 71e00273c0921e1bc850ae8cc4161fbb44cfa848 | core: Implement feature `float_exact_integer_constants`
Implement accepted ACP for `MAX_EXACT_INTEGER` and `MIN_EXACT_INTEGER`
on `f16`, `f32`, `f64`, and `f128`
Add tests to `coretests/tests/floats/mod.rs`
Disable doc tests for i586 since float<->int casts return incorrect
results | [
{
"path": "library/core/src/num/f128.rs",
"patch": "@@ -275,6 +275,70 @@ impl f128 {\n #[unstable(feature = \"f128\", issue = \"116909\")]\n pub const NEG_INFINITY: f128 = -1.0_f128 / 0.0_f128;\n \n+ /// Maximum integer that can be represented exactly in an [`f128`] value,\n+ /// with no other... | 2026-02-12T02:27:51 |
vercel/next.js | 408920c566e3419d24488d9770d64eb22217c24b | 4e9cc18917a3cc300b8a8b21e1b570ab775edb2b | fix: possible null access (#82799)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### Improving D... | [
{
"path": "packages/next-codemod/transforms/next-lint-to-eslint-cli.ts",
"patch": "@@ -484,9 +484,10 @@ function updateExistingFlatConfig(\n exportedArray.value.elements.splice(insertIndex, 0, ignoresConfig)\n } else {\n // Merge with existing ignores\n- const existingIgnoresObj =\n- expor... | 2025-08-19T20:40:56 |
electron/electron | cf5f0419f11516937e43e8259204339dffa22aa4 | 262723e3948197b26f9c2b9bc245ca0bb7e31f36 | chore: fix some typos (#40506) | [
{
"path": "docs/api/structures/user-default-types.md",
"patch": "@@ -9,4 +9,4 @@\n * `array` Array\\<unknown>\n * `dictionary` Record\\<string, unknown>\n \n-This type is a helper alias, no object will never exist of this type.\n+This type is a helper alias, no object will ever exist of this type.",
"ad... | 2023-11-13T03:51:56 |
facebook/react | e5287287aacd3c51d24e223651b7f38ece584c49 | 61bd00498d2a6e23885bac42f3aeb0e02cadb8eb | feat[devtools]: symbolicate source for inspected element (#28471)
Stacked on https://github.com/facebook/react/pull/28351, please review
only the last commit.
Top-level description of the approach:
1. Once user selects an element from the tree, frontend asks backend to
return the inspected element, this is where... | [
{
"path": ".eslintrc.js",
"patch": "@@ -455,6 +455,13 @@ module.exports = {\n __IS_CHROME__: 'readonly',\n __IS_FIREFOX__: 'readonly',\n __IS_EDGE__: 'readonly',\n+ __IS_INTERNAL_VERSION__: 'readonly',\n+ },\n+ },\n+ {\n+ files: ['packages/react-devtools-shared... | 2024-03-05T12:32:11 |
nodejs/node | 19c1b9dff5eef0a969222fb8531696cac10ffd51 | 50b4ada55108b553530b785030ff2832b66578ea | doc: fix ambasador markdown list
PR-URL: https://github.com/nodejs/node/pull/55361
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Benjamin Gru... | [
{
"path": "doc/contributing/advocacy-ambasador-program.md",
"patch": "@@ -45,9 +45,9 @@ If there is no objection within 14 days, the nomination is approved.\n \n To onboard an ambassador, a member of the TSC will:\n \n-* \\[] Add the ambassador to the nodejs/ambassadors team.\n-* \\[] Add the ambassador to ... | 2024-10-13T19:14:48 |
rust-lang/rust | 7e14260fd1f4a9bea9d6078428cd18b58c7b93d9 | 71e00273c0921e1bc850ae8cc4161fbb44cfa848 | `probe_op` silence ambiguity errors if tainted
see the `proc-macro/quote/not-repeatable.rs` test for a case where this is useful | [
{
"path": "compiler/rustc_hir_typeck/src/method/probe.rs",
"patch": "@@ -490,6 +490,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n .unwrap_or_else(|_| span_bug!(span, \"instantiating {:?} failed?\", ty));\n let ty = self.resolve_vars_if_possible(ty.value);\n let... | 2026-02-16T19:35:43 |
vercel/next.js | 4e9cc18917a3cc300b8a8b21e1b570ab775edb2b | c57fe2561cda36f8a5abb41a94ea1a3f0a094226 | fix: don't fail with amp config in JS (#82798)
Because tsc doesn't infer string literal types in JS files
---------
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "packages/next/src/server/lib/router-utils/typegen.ts",
"patch": "@@ -475,7 +475,7 @@ export function generateValidatorFile(\n * Validated at build-time by parsePagesSegmentConfig.\n */\n config?: {\n- amp?: boolean | 'hybrid'\n+ amp?: boolean | 'hybrid' | string // necessary for JS\... | 2025-08-19T20:40:39 |
electron/electron | 262723e3948197b26f9c2b9bc245ca0bb7e31f36 | 6697042c0ab61ac55e91251427a131792de0358e | build: fix building content_unittests (#40491)
chore: fix building content_unittests | [
{
"path": "patches/chromium/allow_disabling_blink_scheduler_throttling_per_renderview.patch",
"patch": "@@ -5,6 +5,23 @@ Subject: allow disabling blink scheduler throttling per RenderView\n \n This allows us to disable throttling for hidden windows.\n \n+diff --git a/content/browser/renderer_host/navigation... | 2023-11-10T16:50:28 |
facebook/react | 61bd00498d2a6e23885bac42f3aeb0e02cadb8eb | aa4eae6b99a6081afabf180d02fa0a8b0cb1b3ab | refactor[devtools]: lazily define source for fiber based on component stacks (#28351)
`_debugSource` was removed in
https://github.com/facebook/react/pull/28265.
This PR migrates DevTools to define `source` for Fiber based on
component stacks. This will be done lazily for inspected elements, once
user clicks on ... | [
{
"path": "packages/react-devtools-core/src/standalone.js",
"patch": "@@ -144,7 +144,7 @@ function canViewElementSourceFunction(\n \n const {source} = inspectedElement;\n \n- return doesFilePathExist(source.fileName, projectRoots);\n+ return doesFilePathExist(source.sourceURL, projectRoots);\n }\n \n fu... | 2024-03-05T12:10:36 |
rust-lang/rust | 3099121bb5fb7cd3d29ffbc4acced9e356dc5ad9 | 71e00273c0921e1bc850ae8cc4161fbb44cfa848 | Rework explanation of CLI lint level flags
I think the previous wording as either wrong or confusing. I would
consider the CLI flags at a *lower* ranking, since source attributes are
able to override the CLI flag. | [
{
"path": "src/doc/rustc/src/lints/levels.md",
"patch": "@@ -393,7 +393,7 @@ Here’s how these different lint controls interact:\n warning: 1 warning emitted\n ```\n \n-3. [CLI level flags](#via-compiler-flag) take precedence over attributes.\n+3. [CLI level flags](#via-compiler-flag) override the def... | 2026-02-16T18:47:35 |
nodejs/node | 50b4ada55108b553530b785030ff2832b66578ea | ac49b20c75696d893149a4b6ca675d591fb4e57a | lib: convert transfer sequence to array in js
This commit lets `tranfer` passed to `structuredClone` get validated at
JS layer by doing webidl conversion. This avoids the C++ to JS function
call overhead in the native implementaiton of `structuredClone`
PR-URL: https://github.com/nodejs/node/pull/55317
Fixes: https:/... | [
{
"path": "lib/internal/bootstrap/web/exposed-window-or-worker.js",
"patch": "@@ -38,8 +38,11 @@ const {\n } = require('internal/process/task_queues');\n defineOperation(globalThis, 'queueMicrotask', queueMicrotask);\n \n-const { structuredClone } = internalBinding('messaging');\n-defineOperation(globalThis... | 2024-10-13T18:11:21 |
golang/go | 711ff943afc572c6b0e800aa1e73aaf336568c2d | e9d3b030ed6fe8380d9b0411ef06eff001769641 | testing: add Output method to TB
Updates #59928
Fixes #73937
Change-Id: Ibf7ec61758edccd245841c3acc9096563b44fcd2
Reviewed-on: https://go-review.googlesource.com/c/go/+/677875
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Jonathan Amsterdam <jba@google.com>
Rev... | [
{
"path": "api/go1.25.txt",
"patch": "@@ -101,6 +101,7 @@ pkg testing, method (*F) Output() io.Writer #59928\n pkg testing, method (*T) Attr(string, string) #43936\n pkg testing, method (*T) Output() io.Writer #59928\n pkg testing, type TB interface, Attr(string, string) #43936\n+pkg testing, type TB interf... | 2025-05-31T14:41:15 |
vercel/next.js | c57fe2561cda36f8a5abb41a94ea1a3f0a094226 | ad48b8f42c2fd0ed31e3f0f57906b351c51316f4 | feat: add a codemod to migrate from the deprecated "next lint" command (#82685)
## Add codemod to migrate from `next lint` to ESLint CLI
This PR introduces a new codemod `next-lint-to-eslint-cli` that helps
users migrate away from the deprecated `next lint` command to using
ESLint directly, in preparation for Next.js... | [
{
"path": "docs/01-app/02-guides/upgrading/codemods.mdx",
"patch": "@@ -24,6 +24,73 @@ Replacing `<transform>` and `<path>` with appropriate values.\n \n ## Codemods\n \n+### 16.0\n+\n+#### Migrate from `next lint` to ESLint CLI\n+\n+##### `next-lint-to-eslint-cli`\n+\n+```bash filename=\"Terminal\"\n+npx @... | 2025-08-19T20:27:17 |
electron/electron | 1ba535296efe87ecf0362759d2fab29b2af8b755 | e8d9294d9d51ca0e2eaae22d4f57561e79a08833 | docs: fix `hid-device-{added|removed|revoked}` event types (#40462)
docs: fix hid-device-{added|removed|revoked} types | [
{
"path": "docs/api/session.md",
"patch": "@@ -266,7 +266,7 @@ Returns:\n \n * `event` Event\n * `details` Object\n- * `device` [HIDDevice[]](structures/hid-device.md)\n+ * `device` [HIDDevice](structures/hid-device.md)\n * `frame` [WebFrameMain](web-frame-main.md)\n \n Emitted after `navigator.hid.requ... | 2023-11-07T22:26:35 |
facebook/react | aa4eae6b99a6081afabf180d02fa0a8b0cb1b3ab | 0ae2b13412e0e4cf10a799ec645035213834556c | fix[devtools/tree/element]: onClick -> onMouseDown to handle first click correctly (#28486)
There is a weird behaviour in all shells of RDT: when user opens
`Components` tab and scrolls down a tree (without any prior click or
focus event), and then clicks on some element, the `click` event will
not be fired. Becaus... | [
{
"path": "packages/react-devtools-inline/__tests__/__e2e__/devtools-utils.js",
"patch": "@@ -37,7 +37,10 @@ async function selectElement(page, displayName, waitForOwnersText) {\n createTestNameSelector('ComponentTreeListItem'),\n createTextSelector(listItemText),\n ])[0];\n- listItem.cli... | 2024-03-05T11:42:10 |
golang/go | 1947c4233a33953088468a23457f6779c34be2d1 | 8cd7f17248b9215530e9ce9ed7831fc24b5eeef7 | runtime: set HeapGoal to zero when the GC is disabled
When the GC is disabled, the tracer should emit a heap goal of 0. Not
setting the heap goal to 0 causes an inaccurate NextGC value to be
emmited.
Fixes #63864
Change-Id: Iecceaca86c0a43c1cc4d9433f1f9bb736f01ccbc
Reviewed-on: https://go-review.googlesource.com/c/g... | [
{
"path": "src/runtime/traceruntime.go",
"patch": "@@ -574,7 +574,9 @@ func (tl traceLocker) HeapAlloc(live uint64) {\n // HeapGoal reads the current heap goal and emits a HeapGoal event.\n func (tl traceLocker) HeapGoal() {\n \theapGoal := gcController.heapGoal()\n-\tif heapGoal == ^uint64(0) {\n+\t// The ... | 2025-01-02T19:41:59 |
nodejs/node | ac49b20c75696d893149a4b6ca675d591fb4e57a | d881fcba86f72ff506eea53a5eca9a0ab2e4a02f | assert: fix deepEqual always return true on URL
PR-URL: https://github.com/nodejs/node/pull/50853
Fixes: https://github.com/nodejs/node/issues/50836
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "lib/internal/util/comparisons.js",
"patch": "@@ -27,6 +27,7 @@ const {\n \n const { compare } = internalBinding('buffer');\n const assert = require('internal/assert');\n+const { isURL } = require('internal/url');\n const types = require('internal/util/types');\n const {\n isAnyArrayBuffer,\n@@ ... | 2024-10-13T14:01:47 |
electron/electron | b55d7f4a16293164693618b8a0822370f7f4d46c | 7999ea39e2ee9702e64e4125e8e89c314e9f468f | fix: Do not activate app when calling focus on inactive panel window (#40307)
* fix: Do not activate app when calling focus on inactive panel window
* Use activate
* Use "activate" for all windows | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -469,7 +469,20 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n return;\n \n if (focus) {\n- [[NSApplication sharedApplication] activateIgnoringOtherApps:NO];\n+ // On macOS < Sonoma, \"activateIgnori... | 2023-11-06T21:38:12 |
facebook/react | 034130c02ffb47b0026059b57d17e9b080976ff3 | 1940cb27b260c2eab79c76763d1151ba18353ff8 | Fix Broken Links In Documentation (#28321)
## Summary
I used [link-inspector](https://github.com/justindhillon/link-inspector)
to find a bunch of broken links in this projects documentation. Here is
what I fixed:
https://www.html5rocks.com/en/tutorials/canvas/hidpi/ -->
https://web.dev/articles/canvas-hidipi
... | [
{
"path": "fixtures/dom/src/components/fixtures/suspense/index.js",
"patch": "@@ -213,7 +213,7 @@ class TextInputFixtures extends React.Component {\n \n <Fixture>\n <SuspendyTree>\n- <img src=\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Atom_%282%29.png\" />\n+ ... | 2024-03-03T22:44:27 |
vercel/next.js | 523ae09b0b684f4795f231feae49f90df9844d97 | c970d95136dbff4a11b8a096372a7ddfee561618 | [Cache Components] Faster partial hydration in PPR resumes (#82742)
This PR fixes some HTML/RSC stream interleaving logic that, under some
circumstances, resulted in hydration of a resumed page being delayed
unnecessarily.
Fixes NAR-284
---
When SSRing a page, we're mixing two streams -- the HTML stream, and the
RS... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -107,6 +107,7 @@ import {\n import {\n DynamicState,\n type PostponedState,\n+ DynamicHTMLPreludeState,\n parsePostponedState,\n } from './postponed-state'\n import {\n@@ -2291,8 +2292,8 @@ async function renderToStream(\n ... | 2025-08-19T18:31:28 |
golang/go | 8cd7f17248b9215530e9ce9ed7831fc24b5eeef7 | 29782bd347a1c707b6804ea6ee7da3a70ba9fd4a | testing, testing/synctest: report correct duration after panics
Report the correct wall-clock test duration after handling a
panic in a synctest.Test bubble.
Fixes #73852
Change-Id: I053262e5eac2dd9d5938b17c3093cbc3fa115a0d
Reviewed-on: https://go-review.googlesource.com/c/go/+/676695
Auto-Submit: Damien Neil <dneil... | [
{
"path": "src/testing/synctest/synctest.go",
"patch": "@@ -273,13 +273,19 @@ import (\n // associated with the bubble.\n // - T.Run, T.Parallel, and T.Deadline must not be called.\n func Test(t *testing.T, f func(*testing.T)) {\n+\tvar ok bool\n \tsynctest.Run(func() {\n-\t\ttestingSynctestTest(t, f)... | 2025-05-23T23:21:19 |
nodejs/node | fdf838aee69939db91bdaf7192a2cf176e3e5fb0 | e9904fe49af2b08ea317da93f5684bd0da76582e | node-api: add napi_create_buffer_from_arraybuffer method
PR-URL: https://github.com/nodejs/node/pull/54505
Fixes: https://github.com/nodejs/node/issues/54440
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Gabriel Schulhof <gabrielschulhof@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -2696,6 +2696,37 @@ is raised.\n JavaScript `TypedArray` objects are described in\n [Section 22.2][] of the ECMAScript Language Specification.\n \n+#### `node_api_create_buffer_from_arraybuffer`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1 - Experime... | 2024-10-11T15:21:57 |
facebook/react | bb4b147da9a892529995f55f15f19f46a00cf4f6 | b8da12e8f8e6a6b087f6531c1c791ab41e5273d4 | Clean up empty string special cases (#28475)
This was fixed in https://github.com/facebook/react/pull/22807 so we
don't need these special cases anymore. | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -2977,13 +2977,6 @@ export function warnForInsertedHydratedText(\n text: string,\n ) {\n if (__DEV__) {\n- if (text === '') {\n- // We expect to insert empty text nodes since they're not represented in\n- ... | 2024-03-01T01:27:26 |
electron/electron | 5b18d90597a4a9fd837125786ac29af2151d6931 | f501dabc8064fa441e959d2203c706801aa21a22 | fix: crash when unloading some WebViews (#40400) | [
{
"path": "shell/browser/web_view_guest_delegate.cc",
"patch": "@@ -40,10 +40,6 @@ void WebViewGuestDelegate::AttachToIframe(\n \n content::WebContents* guest_web_contents = api_web_contents_->web_contents();\n \n- // Force a refresh of the webPreferences so that OverrideWebkitPrefs runs on\n- // the ne... | 2023-11-03T14:36:25 |
vercel/next.js | 64b69ff0a6faafc6859db4ce84fe48bf37e50018 | b6b629441d0df6ebf5cea1c58fd46d8c01f471fc | Avoid duplicate WebSocket connection for global error pages (#82788)
When we're rendering a global error page (something with `<html
id="__next_error__">`), we are wrapping the root element in a component
that renders a top-level dev overlay to show the global error. The
function that's wrapping this element was previ... | [
{
"path": "packages/next/src/client/app-index.tsx",
"patch": "@@ -276,11 +276,13 @@ export function hydrate(\n let element = reactEl\n // Server rendering failed, fall back to client-side rendering\n if (process.env.NODE_ENV !== 'production') {\n- const { createRootLevelDevOverlayElement } ... | 2025-08-19T16:47:29 |
golang/go | 29782bd347a1c707b6804ea6ee7da3a70ba9fd4a | 78e86297f5cccb82a6a57081947fab8e8af32586 | os: add implementation of fs.ReadLinkFS to *rootFS
Fixes #73887
Change-Id: I43f3f4324d740b5381615bce864b7ec31415a635
Reviewed-on: https://go-review.googlesource.com/c/go/+/676135
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Damien Neil <dneil@google.com>
Revie... | [
{
"path": "src/os/root.go",
"patch": "@@ -352,8 +352,8 @@ func splitPathInRoot(s string, prefix, suffix []string) (_ []string, suffixSep s\n \n // FS returns a file system (an fs.FS) for the tree of files in the root.\n //\n-// The result implements [io/fs.StatFS], [io/fs.ReadFileFS] and\n-// [io/fs.ReadDir... | 2025-05-24T23:07:58 |
facebook/react | 6dbec55791dd858cceb4fb145df2300bab12281a | 9d5a01359faf1652eda92952aa6e40d2e61968e1 | Support prefixed useState due to pre-bundling | [
{
"path": "compiler/packages/snap/src/SproutTodoFilter.ts",
"patch": "@@ -444,6 +444,7 @@ const skipFilter = new Set([\n \"forest/forest-phi-type-unused-initializer.flow\",\n \"forest/forest-TaskEditor.flow\",\n \"forest/forest-TaskTitleField.flow\",\n+ \"forest/forest-prefixed-useState.flow\",\n \n ... | 2024-02-28T21:12:56 |
nodejs/node | acd698a5c83d73901d4da47ba9cd04f930b8ef50 | ccd4faf4bfc869f63d2128b69d3e9308d832acd9 | doc: fix the return type of outgoingMessage.setHeaders()
The actual implementation returns `outgoingMessage` itself, but not
exactly `http.ServerResponse`.
Refs: https://github.com/nodejs/node/blob/20d8b85d3493bec944de541a896e0165dd356345/lib/_http_outgoing.js#L712-L751
PR-URL: https://github.com/nodejs/node/pull/552... | [
{
"path": "doc/api/http.md",
"patch": "@@ -3289,9 +3289,7 @@ added:\n -->\n \n * `headers` {Headers|Map}\n-* Returns: {http.ServerResponse}\n-\n-Returns the response object.\n+* Returns: {this}\n \n Sets multiple header values for implicit headers.\n `headers` must be an instance of [`Headers`][] or `Map`,\... | 2024-10-11T13:03:35 |
rust-lang/rust | b4e645fe5af113f6ec072e04d55b7eb742e236ca | 2219766af622ad1f051ca96ae40650106b1bd9bd | Support JSON target specs in bootstrap
JSON target specs were destabilized in
https://github.com/rust-lang/rust/pull/150151 and
https://github.com/rust-lang/rust/pull/151534. However, this broke
trying to build rustc itself with a JSON target spec. This is because in
a few places bootstrap is manually calling `rustc` ... | [
{
"path": "src/bootstrap/src/core/build_steps/compile.rs",
"patch": "@@ -543,6 +543,9 @@ pub fn std_cargo(\n // `MACOSX_DEPLOYMENT_TARGET`, `IPHONEOS_DEPLOYMENT_TARGET`, etc.\n let mut cmd = builder.rustc_cmd(cargo.compiler());\n cmd.arg(\"--target\").arg(target.rustc_target_arg());\... | 2026-02-15T19:10:23 |
vercel/next.js | 71f323d07b63e29fa183fcd7346332550f5c93b0 | a745826b2cb0192db9ae8c404dc75e2c6f39b6f9 | [Cache Components] Fix HMR for nested pages (#82776)
To bypass existing caches when editing server components, we store an
HMR hash in a session cookie. The cookie is sent to the server when
refetching the RSC, and included in the cache key of all `'use cache'`
functions (see #75474).
Before this fix, we weren't sett... | [
{
"path": "packages/next/src/client/dev/hot-reloader/app/hot-reloader-app.tsx",
"patch": "@@ -389,7 +389,7 @@ function processMessage(\n \n // Store the latest hash in a session cookie so that it's sent back to the\n // server with any subsequent requests.\n- document.cookie = `${NEXT_HMR_R... | 2025-08-19T14:13:54 |
golang/go | 9f3dd846e2ee6e8fcb2c673122d9d0c932e01b71 | 21b7e60c6b64dd3221ab5b95d164fb42492029e8 | cmd/internal/obj/s390x: fix potential recursive String call
This String method can potentially recurse infinitely, since %#x will
apparently call String if the method exists. This isn't well documented,
but cmd/vet will be updated soon to check this (when we update the
vendored x/tools dependency) so cut off the recur... | [
{
"path": "src/cmd/internal/obj/s390x/condition_code.go",
"patch": "@@ -122,7 +122,7 @@ func (c CCMask) String() string {\n \t}\n \n \t// invalid\n-\treturn fmt.Sprintf(\"Invalid (%#x)\", c)\n+\treturn fmt.Sprintf(\"Invalid (%#x)\", uint8(c))\n }\n \n func (CCMask) CanBeAnSSAAux() {}",
"additions": 1,
... | 2025-05-29T19:04:08 |
facebook/react | 130b809ac2006ebfb381244bfa4bf3828304ea67 | 8879a2dd498dd6d6d936f1ea2831312a88c0f5c4 | Allow property loads from hook
Looking up certain properties on a hook is a common pattern for logging.
It's non-ideal but it's not a bug to do this.
This updates Forget to not error on this pattern. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateHooksUsage.ts",
"patch": "@@ -233,7 +233,6 @@ export function validateHooksUsage(fn: HIRFunction): void {\n break;\n }\n case \"PropertyLoad\": {\n- visitPlace(instr.value.object);\n co... | 2024-02-29T00:19:43 |
rust-lang/rust | 32d32b68912a07b0b47705d05cc0031d8038c672 | 9d850a0e308e376f7baccc2566fa50e360d3b892 | adjust clippy to fix some of the issues | [
{
"path": "clippy_utils/src/higher.rs",
"patch": "@@ -297,12 +297,12 @@ impl<'a> VecArgs<'a> {\n // `vec![elem; size]` case\n Some(VecArgs::Repeat(elem, size))\n },\n- (sym::slice_into_vec, [slice])\n- if let ExprKind:... | 2025-11-09T11:55:51 |
nodejs/node | f98d9c125cc4216266cf9a15e928107ca32c9c4b | 27f8d9e9d20e33eeaf7d36627ee4c629b3b15aa1 | process: fix `process.features.typescript` when Amaro is unavailable
PR-URL: https://github.com/nodejs/node/pull/55323
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "lib/internal/bootstrap/node.js",
"patch": "@@ -315,7 +315,7 @@ ObjectDefineProperty(process, 'features', {\n const { emitWarning, emitWarningSync } = require('internal/process/warning');\n const { getOptionValue } = require('internal/options');\n \n-let kTypeStrippingMode = null;\n+let kTypeStrip... | 2024-10-11T11:27:16 |
electron/electron | bc1ba1fe9d34044ffc6e7422e85e2dc4e7e1eafe | 83892ab995fb7a0b60ebc0c8837b2dba35ec5262 | chore: bump chromium to 120.0.6099.0 (main) (#40316)
* chore: bump chromium in DEPS to 120.0.6086.0
* chore: update patches
* chore: rename FrameSubscriber::OnNewCropVersion()
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4905819
just a simple renaming
* chore: rename ToJsTime() to .In... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '120.0.6078.0',\n+ '120.0.6099.0',\n 'node_version':\n 'v18.18.2',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "docs/a... | 2023-11-01T14:02:12 |
vercel/next.js | 73fadcac70aeda0766fa45134f557816cf336c89 | bccdb3fd1135644aa70a5a8483a63024ce7bbe33 | Turbopack: don't look into fallback import map twice (#82786)
Fixes a panic where we tried to lookup a `Pattern::Alternatives` in a `fallback_import_map.lookup()` (but the API is that the caller is in charge of unwrapping the alternative and calling lookup multiple times). We can completely skip this in this case, bec... | [
{
"path": "turbopack/crates/turbopack-core/src/resolve/mod.rs",
"patch": "@@ -2094,27 +2094,31 @@ async fn resolve_internal_inline(\n }\n };\n \n- // Apply fallback import mappings if provided\n- if let Some(import_map) = &options_value.fallback_import_map\n- && ... | 2025-08-19T13:02:08 |
golang/go | 21b7e60c6b64dd3221ab5b95d164fb42492029e8 | 555d425d177db7fa7123779d253aee42980cb8a3 | runtime, testing/synctest: breaking bubble isolation with Cond is fatal
sync.Cond.Wait is durably blocking. Waking a goroutine out of Cond.Wait
from outside its bubble panics.
Make this panic a fatal panic, since it leaves the notifyList in an
inconsistent state. We could do some work to make this a recoverable
panic... | [
{
"path": "src/runtime/crash_test.go",
"patch": "@@ -1228,3 +1228,20 @@ func TestFinalizerOrCleanupDeadlock(t *testing.T) {\n \t\t})\n \t}\n }\n+\n+func TestSynctestCondSignalFromNoBubble(t *testing.T) {\n+\tfor _, test := range []string{\n+\t\t\"SynctestCond/signal/no_bubble\",\n+\t\t\"SynctestCond/broadca... | 2025-05-22T18:14:53 |
rust-lang/rust | e5ed8643b6983ff7ddbc3cb2a8712edb65115a87 | 5e65109f219f56b94544efdacf527bc2146a7f91 | adjust clippy to fix some of the issues | [
{
"path": "compiler/rustc_span/src/symbol.rs",
"patch": "@@ -2181,7 +2181,6 @@ symbols! {\n slice_from_raw_parts_mut,\n slice_from_ref,\n slice_get_unchecked,\n- slice_into_vec,\n slice_iter,\n slice_len_fn,\n slice_patterns,",
"additions": 0,
"... | 2025-11-09T11:55:51 |
nodejs/node | 27f8d9e9d20e33eeaf7d36627ee4c629b3b15aa1 | 82dab76d63e6f3592e15e49d7dba2367044d4869 | build,win: enable pch for clang-cl
Fixes: https://github.com/nodejs/node/issues/55208
PR-URL: https://github.com/nodejs/node/pull/55249
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "node.gypi",
"patch": "@@ -65,15 +65,11 @@\n 'NODE_PLATFORM=\"win32\"',\n '_UNICODE=1',\n ],\n- 'conditions': [\n- ['clang==0', {\n- 'msvs_precompiled_header': 'tools/msvs/pch/node_pch.h',\n- 'msvs_precompiled_source': 'tools/msvs/pch/node_pch.cc... | 2024-10-11T10:28:55 |
electron/electron | 83892ab995fb7a0b60ebc0c8837b2dba35ec5262 | 39d36e4462a0b84c469c72ddcfcf5c426a58482d | refactor: ensure IpcRenderer is not bridgable (#40330)
* refactor: ensure IpcRenderer is not bridgable
* chore: add notes to breaking-changes
* spec: fix test that bridged ipcrenderer | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -14,6 +14,19 @@ This document uses the following convention to categorize breaking changes:\n \n ## Planned Breaking API Changes (29.0)\n \n+### Behavior Changed: `ipcRenderer` can no longer be sent over the `contextBridge`\n+\n+Attempting to send `ipcRende... | 2023-10-31T21:29:40 |
vercel/next.js | 49371dc364eecca41e52dfc5f6bf1b6cda3ed83d | 15653f3a280b61734ba6ec80542284ed06ba23cf | [sourcemaps] Fix sourcemapping in Redbox on Windows (#82078) | [
{
"path": "crates/napi/src/next_api/project.rs",
"patch": "@@ -41,7 +41,7 @@ use turbo_tasks_backend::{BackingStorage, db_invalidation::invalidation_reasons}\n use turbo_tasks_fs::{\n DiskFileSystem, FileContent, FileSystem, FileSystemPath, util::uri_from_file,\n };\n-use turbo_unix_path::get_relative_p... | 2025-08-19T09:18:19 |
golang/go | 555d425d177db7fa7123779d253aee42980cb8a3 | f14f3aae1c3dc382c15d9c3174a037b7d3595009 | testing, testing/synctest: write bubble errors to parent test log
Ensure that log messages written to the testing.T created by
synctest.Test appear in the test output when a test fails.
Fixes #73902
Change-Id: Ie97f5efe54eb003e6c0a5394c2def4cac1520ecb
Reviewed-on: https://go-review.googlesource.com/c/go/+/676995
Rev... | [
{
"path": "src/testing/synctest/synctest_test.go",
"patch": "@@ -22,37 +22,56 @@ func TestSuccess(t *testing.T) {\n }\n \n func TestFatal(t *testing.T) {\n-\trunTest(t, func() {\n+\trunTest(t, nil, func() {\n \t\tsynctest.Test(t, func(t *testing.T) {\n \t\t\tt.Fatal(\"fatal\")\n \t\t})\n-\t}, `^=== RUN Te... | 2025-05-28T17:55:26 |
rust-lang/rust | c259c4048a97329a70a7ec2dcd0e79fe2c36be68 | e823167aa6f7f03aea8e91208ce9bace8ad9ebf2 | compiletest: normalize stderr before SVG rendering
Element position is hardcoded in the rendered SVG. This means that any
change in element length (for instance, when substituting the path with
the `rust` checkout with `$DIR`) would not change the position and result
in buggy SVG being generated. Normalizing before SV... | [
{
"path": "src/tools/compiletest/src/runtest.rs",
"patch": "@@ -2379,15 +2379,22 @@ impl<'test> TestCx<'test> {\n _ => {}\n };\n \n- let stderr = if self.force_color_svg() {\n- anstyle_svg::Term::new().render_svg(&proc_res.stderr)\n- } else if explicit_format {\n... | 2026-02-14T19:52:42 |
nodejs/node | 82dab76d63e6f3592e15e49d7dba2367044d4869 | 9f9069d3130dc336a86271ca4e3c36e9b87cce90 | test: fix tests when Amaro is unavailable
Fix two tests that fail when `node` is configured `--without-amaro`.
PR-URL: https://github.com/nodejs/node/pull/55320
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.... | [
{
"path": "test/es-module/test-esm-loader-entry-url.mjs",
"patch": "@@ -76,7 +76,7 @@ describe('--entry-url', { concurrency: true }, () => {\n );\n });\n \n- it('should support loading TypeScript URLs', async () => {\n+ it('should support loading TypeScript URLs', { skip: !process.config.variables.n... | 2024-10-11T05:27:54 |
electron/electron | 39d36e4462a0b84c469c72ddcfcf5c426a58482d | f5262060957b7e32b33d64b3529a69417bdb5c26 | build: actually show github upload output if verbose is true. (#40393)
* build: actually show github upload output if verbose is true.
* chore: fixup lint | [
{
"path": "script/release/uploaders/upload.py",
"patch": "@@ -363,8 +363,10 @@ def upload_io_to_github(release, filename, filepath, version):\n (filename))\n script_path = os.path.join(\n ELECTRON_DIR, 'script', 'release', 'uploaders', 'upload-to-github.ts')\n- execute([TS_NODE, script_path, fi... | 2023-10-31T21:05:16 |
nodejs/node | 9f9069d3130dc336a86271ca4e3c36e9b87cce90 | 7a3027d5630cb133c80301c8e0a88fea076b05b7 | fs: fix linter issue
PR-URL: https://github.com/nodejs/node/pull/55353
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "lib/internal/fs/utils.js",
"patch": "@@ -723,7 +723,7 @@ const validatePath = hideStackFrames((path, propName = 'path', options) => {\n \n const pathIsString = typeof path === 'string';\n const pathIsUint8Array = isUint8Array(path);\n- if (options && options.expectFile) {\n+ if (options?.ex... | 2024-10-10T22:50:19 |
electron/electron | e1c413c845a8fa62e9ffd8f566d23ff968968df2 | fcdd5cba71b82c13c4f64a3e529dea91ed72d23c | build: update deps to fix yarn audit (#40376) | [
{
"path": "yarn.lock",
"patch": "@@ -2062,14 +2062,7 @@ debug@2.6.9:\n dependencies:\n ms \"2.0.0\"\n \n-debug@^3.1.0:\n- version \"3.2.6\"\n- resolved \"https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b\"\n- integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBb... | 2023-10-31T18:05:12 |
facebook/react | 84ed1f2a37cbe17975bd3691cb0e2a61d2a6285f | d81da8e2f55ae9f46384a7a9d73e43fdca26994a | Update scope declaration invariant to support error grouping
This invariant interpolated values into the `reason` which prevent our internal
tooling from grouping related errors. This PR updates to make the reason static
and interpolate the description. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -435,8 +435,8 @@ function codegenReactiveScope(\n );\n if (testCondition === null) {\n CompilerError.invariant(firstOutputIndex !== null, {\n- reason: `Expected scope '@${scope.id... | 2024-02-26T23:08:42 |
rust-lang/rust | 33a8dc10cf4efe91874cf02dc24afb55448bcc09 | fef627b1ebdc7369ddf8a4031a5d25733ac1fb34 | Fix wrong par_slice implementation | [
{
"path": "compiler/rustc_data_structures/src/sync/parallel.rs",
"patch": "@@ -133,7 +133,7 @@ fn par_slice<I: DynSend>(\n rustc_thread_pool::scope(|s| {\n let proof = items.derive(());\n let group_size = std::cmp::max(items.len() / 128, 1);\n- for group in items.chunks_exact_mut(... | 2026-02-16T14:49:42 |
golang/go | 4878b4471bf1267a8f87b40ed49b36ab82b79d18 | 7b4d065267aec8f899a5c5423c1ac501d31807cc | slices: document and test nilness behavior of all functions
This change documents the current nilness behavior of all
functions in the package, and asserts each with a test.
There is no change to behavior, but the postcondition is
strengthened, so this may require a proposal.
Fixes #73604
Fixes #73048
Change-Id: Ie... | [
{
"path": "src/slices/iter.go",
"patch": "@@ -46,6 +46,7 @@ func Values[Slice ~[]E, E any](s Slice) iter.Seq[E] {\n \n // AppendSeq appends the values from seq to the slice and\n // returns the extended slice.\n+// If seq is empty, the result preserves the nilness of s.\n func AppendSeq[Slice ~[]E, E any](s... | 2025-05-12T17:16:23 |
facebook/react | d81da8e2f55ae9f46384a7a9d73e43fdca26994a | 915a0b8389cc26eabdd32183030aa210f6c83042 | Fix JSXMemberExpression dependency calculation
Fixes T173101142 — we previously computed incorrect function expression
dependencies for JSXMemberExpressions. This PR applies similar logic to
JSXMemberExpression as we use for MemberExpression.
## Test Plan
Synced internally, only one file changes output. I manua... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -3803,6 +3803,7 @@ function gatherCapturedDeps(\n */\n let dependency:\n | NodePath<t.MemberExpression>\n+ | NodePath<t.JSXMemberExpression>\n | NodePath<t.Identifier>\n | NodePath<t.JSX... | 2024-02-26T23:04:44 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.