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
c63d0d61e71f12d29efb1df885a0883ae76bb164
e3f2ca1425b3e873287f4dcabd46af1f553716bf
chore: bump Node.js to v22.9.0 (#44281) * chore: bump Node.js to v22.9.0 * build: drop base64 dep in GN build https://github.com/nodejs/node/pull/52856 * build,tools: make addons tests work with GN https://github.com/nodejs/node/pull/50737 * fs: add fast api for InternalModuleStat https://github.com/...
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -176,7 +176,7 @@ jobs:\n if [ \"${{ inputs.is-asan }}\" == \"true\" ]; then\n cd ..\n ASAN_SYMBOLIZE=\"$PWD/tools/valgrind/asan/asan_symbolize.py --executable-path=$PWD/out/Default/electron\"\n- ...
2024-11-04T18:41:56
golang/go
6fd8e88d07b08531a5585aa4fbcc6043d556742f
1abc6b0204ed231311c9bbc53cfab36dc546aa8e
encoding/json/v2: restrict presence of default options Originally, DefaultOptionsV1 and DefaultOptionsV2 represented the full set of all options with specific ones set to true or false. However, there are certain options such as WithIndent or WithMarshalers that are neither v1 or v2 specific. At some point we removed...
[ { "path": "src/encoding/json/internal/jsonopts/options.go", "patch": "@@ -48,16 +48,16 @@ type ArshalValues struct {\n // DefaultOptionsV2 is the set of all options that define default v2 behavior.\n var DefaultOptionsV2 = Struct{\n \tFlags: jsonflags.Flags{\n-\t\tPresence: uint64(jsonflags.AllFlags & ^json...
2025-10-11T18:37:58
nodejs/node
5ed1bcbd9b9eea5f6116ef0a0c6980dec2ec6508
adc948af56bfdc8c9a47b35c095653dd9a131b08
src: fix internalModuleStat v8 fast path PR-URL: https://github.com/nodejs/node/pull/58054 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com>
[ { "path": "lib/fs.js", "patch": "@@ -1424,7 +1424,7 @@ function handleDirents({ result, currentPath, context }) {\n const dirent = getDirent(currentPath, names[i], types[i]);\n ArrayPrototypePush(context.readdirResults, dirent);\n \n- if (dirent.isDirectory() || binding.internalModuleStat(binding...
2025-04-29T17:53:12
golang/go
1abc6b0204ed231311c9bbc53cfab36dc546aa8e
9fdd6904da3d6ef2ed457fada1fb26130213f359
go/types, types2: permit type cycles through type parameter lists Issue #49439 was about a deadlock during type inference inside a type parameter list of a recursive constraint. As a remedy we disallowed recursive type parameter lists. In the meantime we have removed support for type inference for type arguments to g...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -302,6 +302,12 @@ loop:\n \t\t}\n \t}\n \n+\t// Cycles through type parameter lists are ok (go.dev/issue/68162).\n+\t// TODO(gri) if we are happy with this this, remove this flag and simplify code.\n+\tif tparCycle {\n+\t\treturn true\n+\t}\n...
2025-10-13T19:47:42
facebook/react
4972718c264f8f92ea56b86fde6aab610e876717
3720870a979b48a1ea8776f64a190878b8558f2b
[compiler] Fix: ref.current now correctly reactive (#31521) We were previously filtering out `ref.current` dependencies in propagateScopeDependencies:checkValidDependency`. This is incorrect. Instead, we now always take a dependency on ref values (the outer box) as they may be reactive. Pruning is done in pruneN...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PropagateScopeDependenciesHIR.ts", "patch": "@@ -440,14 +440,6 @@ class Context {\n \n // Checks if identifier is a valid dependency in the current scope\n #checkValidDependency(maybeDependency: ReactiveScopeDependency): boolean {\n- //...
2024-11-15T18:05:55
electron/electron
f5bdbdb1e84e029028fb4d55714e40166ceab5ee
48801be8e9e3b898635e55abb0b596c83bb9c17a
refactor: more inline constexpr string view (#44498) * chore: remove unused electron::kHidProductIdKey * refactor: make electron::kHidDeviceNameKey inline constexpr std::string_view refactor: make electron::kHidGuidKey inline constexpr std::string_view * refactor: make serial_chooser_context keys inline const...
[ { "path": "filenames.gni", "patch": "@@ -675,7 +675,6 @@ filenames = {\n \"shell/common/node_includes.h\",\n \"shell/common/node_util.cc\",\n \"shell/common/node_util.h\",\n- \"shell/common/options_switches.cc\",\n \"shell/common/options_switches.h\",\n \"shell/common/platform_util.cc...
2024-11-04T18:27:49
vercel/next.js
ed41ac1a74305c97d281229696ac069556f020f9
d787abba606eec89df1b90f440c57923d7950717
chore: upgrade rspack 1.6.0 (#84210) 1. Fixed the incremental update bug in buildChunkGraph. 2. Fixed a bug in Rspack's built-in CssChunkingPlugin. For detailed release information, please see https://github.com/web-infra-dev/rspack/releases. Note: All the faulty Rspack test cases on GitHub, from what I can see, eit...
[ { "path": "package.json", "patch": "@@ -142,7 +142,7 @@\n \"@next/third-parties\": \"workspace:*\",\n \"@opentelemetry/api\": \"1.4.1\",\n \"@picocss/pico\": \"1.5.10\",\n- \"@rspack/core\": \"1.5.0\",\n+ \"@rspack/core\": \"1.6.0\",\n \"@slack/web-api\": \"7.9.1\",\n \"@swc/cli\":...
2025-11-06T01:29:04
facebook/react
3720870a979b48a1ea8776f64a190878b8558f2b
e1ef8c95154a4c5fffa301de9392519121b47dbf
Log Render Phases that Never Committed (#31548) This includes: - `Interrupted Render`: Interrupted Renders (setState or ping at higher priority) - `Prewarm`: Suspended Renders outside a Suspense boundary (RootSuspendedWithDelay/RootSuspendedAtTheShell) - `Errored Render`: Render that errored somewhere in the tr...
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -198,6 +198,54 @@ export function logRenderPhase(startTime: number, endTime: number): void {\n }\n }\n \n+export function logInterruptedRenderPhase(\n+ startTime: number,\n+ endTime: number,\n+): void {\n+ if (support...
2024-11-15T17:13:24
nodejs/node
44b4354b4e14a0370f1f4ba56479cf4f55984368
2fe23af880286b127dee2a5319d45cd72b857635
build: downgrade armv7 support to experimental There are a bunch of issues on that platform with recent V8 versions and we don't have the capacity to fix them. PR-URL: https://github.com/nodejs/node/pull/58071 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gm...
[ { "path": ".github/ISSUE_TEMPLATE/4-report-a-flaky-test.yml", "patch": "@@ -28,7 +28,6 @@ body:\n - AIX\n - FreeBSD\n - Linux ARM64\n- - Linux ARMv7\n - Linux PPC64LE\n - Linux s390x\n - Linux x64", "additions": 0, "deletions": 1, "language"...
2025-04-29T14:57:11
golang/go
0e64ee1286c092eca95b3ffcc5917d34f43d4c0f
6bcd97d9f4386528aa85eb3cc27da0ed902de870
encoding/json/v2: report EOF for top-level values in UnmarshalDecode The fully streaming UnmarshalJSONFrom method and UnmarshalFromFunc introduce an edge case where they can encounter EOF in the stream, where it should be reported upstream as EOF rather than ErrUnexpectedEOF or be wrapped within a SemanticError. This...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -792,6 +792,12 @@ func (d *decoderState) CheckNextValue(last bool) error {\n \treturn nil\n }\n \n+// AtEOF reports whether the decoder is at EOF.\n+func (d *decoderState) AtEOF() bool {\n+\t_, err := d.consumeWhitespace(d.prevEnd)\n+\treturn er...
2025-10-11T00:56:04
vercel/next.js
4bf134433344c57df0ad23a0e7bc81b0a930e990
5080ce5383fc5eab3cd7e8b0e1c21cef763d6391
Turbopack: chore: Remove dead experimental.ppr struct field (#85792) - `experimental.ppr` was replaced with `cacheComponents`. - It's still in the zod and TS type schemas, I think for our error messages on the Next.js side, but Turbopack only needs to know about the fields that Turbopack cares about. Serde silently ig...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -863,9 +863,6 @@ pub struct ExperimentalConfig {\n /// Automatically apply the \"modularize_imports\" optimization to imports of\n /// the specified packages.\n optimize_package_imports: Option<Vec<RcStr>>,\n- /// Using this featur...
2025-11-05T17:27:15
facebook/react
63cde684f5340b1ca73f6244501aac1c3d2c92a8
b01722d58533e5e2664a71b70031e1c5390d813b
(chore): copy fix in <style> precedence error (#31524) ## Summary This fixes a typo in the error that gets reported when Float errors while hoisting a style tag that does not contain both `precedence` and `href`. There was a typo in _conflict_ and the last part of the sentence doesn't make sense. I assume it was...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -3142,10 +3142,9 @@ export function isHostHoistableType(\n console.error(\n 'Cannot render a <style> outside the main document without knowing its precedence and a unique href key.' +\n ...
2024-11-14T22:03:59
electron/electron
48801be8e9e3b898635e55abb0b596c83bb9c17a
d9a9d5b8fe30ee0a9539d9e546f6d51c62c957b8
chore: bump chromium to 132.0.6807.0 (main) (#44360) * chore: bump chromium in DEPS to 132.0.6791.0 * 5804481: [UI] Migrate remaining clients of `MenuSourceType` https://chromium-review.googlesource.com/c/chromium/src/+/5804481 * chore: try revert PA CL * chore: bump chromium in DEPS to 132.0.6793.0 * c...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '132.0.6789.0',\n+ '132.0.6807.0',\n 'node_version':\n 'v20.18.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2024-11-04T14:10:00
nodejs/node
2fe23af880286b127dee2a5319d45cd72b857635
3a19a713123453669755d03424744df6b675397e
doc: fix typo in `buffer.md` "Buffers" -> "Buffer's" in `Buffer` documentation. PR-URL: https://github.com/nodejs/node/pull/58052 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/buffer.md", "patch": "@@ -239,7 +239,7 @@ the characters.\n changes:\n - version: v3.0.0\n pr-url: https://github.com/nodejs/node/pull/2002\n- description: The `Buffer`s class now inherits from `Uint8Array`.\n+ description: The `Buffer` class now inherits from `Uint8Array`.\n ...
2025-04-29T13:04:50
golang/go
6bcd97d9f4386528aa85eb3cc27da0ed902de870
1cd71689f2ed8f07031a0cc58fc3586ca501839f
all: replace calls to errors.As with errors.AsType This change replaces most occurrences (in code as well as in comments) of errors.As with errors.AsType. It leaves the errors package and vendored code untouched. Change-Id: I3bde73f318a0b408bdb8f5a251494af15a13118a GitHub-Last-Rev: 8aaaa36a5a12d2a6a90c6d51680464e1a31...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -2468,8 +2468,8 @@ func TestInstantiateErrors(t *testing.T) {\n \t\t\tt.Fatalf(\"Instantiate(%v, %v) returned nil error, want non-nil\", T, test.targs)\n \t\t}\n \n-\t\tvar argErr *ArgumentError\n-\t\tif !errors.As(err, &argErr) {\n+\t\ta...
2025-10-01T20:08:18
vercel/next.js
937a3246f214f5c7f648d90ff4df6e86dc982790
1226b5352af4fb2b855effb21440c7a2e3d6d76c
Resolve request ID confusion (#85809) Setting the cache status for a page in dev mode is a sequential operation that only requires the HTML request ID to identify WebSocket clients across different browser tabs/windows. This is different from connecting the React debug channel (after which the cache status handling wa...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -792,7 +792,7 @@ async function generateDynamicFlightRenderResultWithStagesInDev(\n // Before we kick off the render, we set the cache status back to it's initial state\n // in case a previous render bypassed the cache.\n ...
2025-11-05T14:57:09
electron/electron
7fea537fbf959c3527b0404d291ea16c21ac0b09
bc6c7bd757a23ccd13a292c92b40c5760398f69e
docs: fix apostrophe typo "Electrons" -> "Electron's" (#44516) s/Electrons/Electron's/
[ { "path": "docs/api/web-frame.md", "patch": "@@ -182,7 +182,7 @@ dispatch errors of isolated worlds to foreign worlds.\n \n ### `webFrame.setIsolatedWorldInfo(worldId, info)`\n \n-* `worldId` Integer - The ID of the world to run the javascript in, `0` is the default world, `999` is the world used by Electro...
2024-11-02T20:52:22
facebook/react
b01722d58533e5e2664a71b70031e1c5390d813b
c13986da7866a1a70a73b7ee05c87a9618ce6d03
Format event with "warning" yellow and prefix with "Event: " (#31536) It's useful to quickly see where new events are kicking off new rendering. This uses the new "warning" color (yellow) to do that. This is to help distinguish it from the purple (secondary color) which is used for the commit phase which is more of...
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -125,10 +125,15 @@ export function logBlockingStart(\n reusableLaneDevToolDetails.track = 'Blocking';\n if (eventTime > 0 && eventType !== null) {\n // Log the time from the event timeStamp until we called se...
2024-11-14T21:44:29
nodejs/node
067a779f17df61fc1c0452de7146f428a3a7d2ac
6cd1c09c1029f51f85baf7b52982f49094437f61
tools: enable CodeQL config file A previous change designed to ignore test files in CodeQL scans had multiple problems. This fixes the CodeQL scan breakage. It adds a CodeQL config file, which allows us to ignore the test directory in our scans. Refs: https://github.com/nodejs/node/pull/57978#issuecomment-2829182983 ...
[ { "path": ".github/codeql-config.yml", "patch": "@@ -0,0 +1,4 @@\n+name: CodeQL config\n+\n+paths-ignore:\n+ - test", "additions": 4, "deletions": 0, "language": "YAML" }, { "path": ".github/workflows/codeql.yml", "patch": "@@ -7,9 +7,6 @@ on:\n permissions:\n contents: read\n \n-...
2025-04-28T13:34:47
golang/go
1cd71689f2ed8f07031a0cc58fc3586ca501839f
8aa1efa223d7bd39faaabdfbf85882ed3942a6f4
crypto/x509: rework fix for CVE-2025-58187 In CL 709854 we enabled strict validation for a number of properties of domain names (and their constraints). This caused significant breakage, since we didn't previously disallow the creation of certificates which contained these malformed domains. Rollback a number of the ...
[ { "path": "src/crypto/x509/name_constraints_test.go", "patch": "@@ -1456,7 +1456,63 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\texpectedError: \"incompatible key usage\",\n \t},\n \n-\t// #77: if several EKUs are requested, satisfying any of them is sufficient.\n+\t// An invalid DNS SAN shoul...
2025-10-09T20:35:24
vercel/next.js
1226b5352af4fb2b855effb21440c7a2e3d6d76c
831534c163dc5602d68812022b17936b8d2dd00b
[test] Deflake legacy-link-behavior (#85805) Suspense around body will trigger "missing tags" warning if something throws in the boundary. This error can come in slightly later and cause flaky test results. Fixes ``` ● Validations for <Link legacyBehavior> › When rendering from a Client Component › warns and thro...
[ { "path": "test/e2e/legacy-link-behavior/app/layout.tsx", "patch": "@@ -8,11 +8,11 @@ export default async function Root({\n }) {\n return (\n <html>\n- <Suspense>\n- <Connection>\n- <body>{children}</body>\n- </Connection>\n- </Suspense>\n+ <body>\n+ <Susp...
2025-11-05T13:05:40
facebook/react
c13986da7866a1a70a73b7ee05c87a9618ce6d03
4686872159e357accd092b195fb5cafceb980ac8
Fix Overlapping "message" Bug in Performance Track (#31528) When you schedule a microtask from render or effect and then call setState (or ping) from there, the "event" is the event that React scheduled (which will be a postMessage). The event time of this new render will be before the last render finished. We u...
[ { "path": "packages/react-art/src/ReactFiberConfigART.js", "patch": "@@ -363,6 +363,8 @@ export function resolveUpdatePriority(): EventPriority {\n return currentUpdatePriority || DefaultEventPriority;\n }\n \n+export function trackSchedulerEvent(): void {}\n+\n export function resolveEventType(): null | ...
2024-11-14T21:35:08
nodejs/node
6cd1c09c1029f51f85baf7b52982f49094437f61
8e7ae60e3bcb5e0d11ac92b931b762b30a38d4b0
src: fix EnvironmentOptions.async_context_frame default value `default_is_true` in bool OptionsParser is a hint for help text. The default value for an option is still required to be set in the option struct. PR-URL: https://github.com/nodejs/node/pull/58030 Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Revi...
[ { "path": "src/node_options.h", "patch": "@@ -146,7 +146,7 @@ class EnvironmentOptions : public Options {\n bool allow_worker_threads = false;\n bool experimental_repl_await = true;\n bool experimental_vm_modules = false;\n- bool async_context_frame = false;\n+ bool async_context_frame = true;\n b...
2025-04-27T22:10:30
electron/electron
2081f771e4181a5a7db8a59c85e6e966820b9017
15151c68533f5d8d1c9b57dbd7953e805f7719c9
docs: add custom titlebar example (#43693) * docs: add custom titlebar example * docs: add links and other small edits * docs: add panel window docs * docs: remove panel example * docs: specify expected emphasis style * docs: responding to feedback * docs: fix section names in links * docs: rework...
[ { "path": ".markdownlint-cli2.jsonc", "patch": "@@ -5,6 +5,9 @@\n \"autolink\": false,\n \"shortcut\": false\n },\n+ \"MD049\": {\n+ \"style\": \"underscore\"\n+ },\n \"no-angle-brackets\": true,\n \"no-curly-braces\": true,\n \"no-inline-html\": {", "additions": 3...
2024-11-01T15:04:37
golang/go
8aa1efa223d7bd39faaabdfbf85882ed3942a6f4
b497a29d25b0f6f29bedaa92ac1d40a1ee5c0956
cmd/link: in TestFallocate, only check number of blocks on Darwin The number-of-blocks check was introduced when fixing a Darwin- specific bug. On Darwin, the file allocation syscall is a bit tricky. On Linux and BSDs, it is more straightforward and unlikely to go wrong. The test itself, on the other hand, is less re...
[ { "path": "src/cmd/link/internal/ld/fallocate_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"runtime\"\n \t\"syscall\"\n \t\"testing\"\n )\n@@ -53,12 +54,24 @@ func TestFallocate(t *testing.T) {\n \t\tif got := stat.Size(); got != sz {\n \t\t\tt.Errorf(\...
2025-10-11T14:36:49
vercel/next.js
2f86fbab810d3dd6ceb95bc5dea5b96525fe03b9
e989fcb8b5e756162b1b4704f61205b9a3af4237
[runtime prefetching]: fix runtime prefetching when deployed (#85595) Runtime prefetching relies on the presence of headers to determine caching behavior: `x-nextjs-postponed` indicates if the response was partial (so it knows if it should trigger a dynamic request to retrieve the missing data), and `x-nextjs-stale-ti...
[ { "path": "packages/next/src/client/components/segment-cache/cache.ts", "patch": "@@ -1654,7 +1654,7 @@ export async function fetchSegmentPrefetchesUsingDynamicRequest(\n const isResponsePartial =\n fetchStrategy === FetchStrategy.PPRRuntime\n ? // A runtime prefetch may have holes.\n- ...
2025-11-05T02:44:59
facebook/react
4686872159e357accd092b195fb5cafceb980ac8
5d89471ca6a74916bf345ef742e162c77672d2a2
Log passive commit phase when it wasn't delayed (#31526) Fixes a bug. We're supposed to not log "Waiting for Paint" if the passive effect phase was forced since we weren't really waiting until the paint. Instead we just log an empty string when we force it to still ensure continuity. We should always log the ...
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -221,12 +221,19 @@ export function logCommitPhase(startTime: number, endTime: number): void {\n }\n }\n \n-export function logPaintYieldPhase(startTime: number, endTime: number): void {\n+export function logPaintYieldPha...
2024-11-14T21:30:05
nodejs/node
8e7ae60e3bcb5e0d11ac92b931b762b30a38d4b0
c712dd284bf1baac79e96f272b51d8da35ffd5ee
async_hooks: enable AsyncLocalStorage once constructed This fixes the leak behavior when using `enterWith` when no `AsyncLocalStorage`s were enabled inside a promise. PR-URL: https://github.com/nodejs/node/pull/58029 Fixes: https://github.com/nodejs/node/issues/53037 Refs: https://github.com/nodejs/node/pull/58019 Re...
[ { "path": "lib/internal/async_local_storage/async_hooks.js", "patch": "@@ -51,6 +51,8 @@ class AsyncLocalStorage {\n if (options.name !== undefined) {\n this.#name = `${options.name}`;\n }\n+\n+ this._enable();\n }\n \n /** @type {string} */", "additions": 2, "deletions": 0, ...
2025-04-27T21:43:28
golang/go
b497a29d25b0f6f29bedaa92ac1d40a1ee5c0956
48bb7a61147c397d0f45c10bc21ba12fa9cec0ad
encoding/json: fix regression in quoted numbers under goexperiment.jsonv2 The legacy parsing of quoted numbers in v1 was according to the Go grammar for a number, rather than the JSON grammar for a number. The former is a superset of the latter. This is a historical mistake, but usages exist that depend on it. We alr...
[ { "path": "src/encoding/json/decode_test.go", "patch": "@@ -1237,6 +1237,62 @@ var unmarshalTests = []struct {\n \t\tout: (chan int)(nil),\n \t\terr: &UnmarshalTypeError{Value: \"number\", Type: reflect.TypeFor[chan int](), Offset: 1},\n \t},\n+\n+\t// #75619\n+\t{\n+\t\tCaseName: Name(\"QuotedInt...
2025-10-06T19:56:29
electron/electron
15151c68533f5d8d1c9b57dbd7953e805f7719c9
8be4ae4babc88f94577463ba89902f3f680882ad
fix: EventSource undefined in Renderer/Worker (#44475)
[ { "path": "lib/node/init.ts", "patch": "@@ -6,7 +6,7 @@ wrapFsWithAsar(require('fs'));\n \n // See ElectronRendererClient::DidCreateScriptContext.\n if ((globalThis as any).blinkfetch) {\n- const keys = ['fetch', 'Response', 'FormData', 'Request', 'Headers'];\n+ const keys = ['fetch', 'Response', 'FormDat...
2024-10-31T19:24:44
vercel/next.js
a13487fe770478923b93d823282367e55ea80cd0
18c9f02bed49f683b25be1b7344328837a98d423
Turbopack: trace worker_threads worker entry (#85734) Closes PACK-5688 Closes https://github.com/vercel/next.js/issues/84766 1. Trace `new require("worker_threads").Worker` calls 2. ignore syntax errors in all traced files This does lead to a build error currently with cargo run --bin turbopack-nft -- --show-issue...
[ { "path": "turbopack/crates/turbopack-core/src/reference_type.rs", "patch": "@@ -290,6 +290,7 @@ pub enum WorkerReferenceSubType {\n WebWorker,\n SharedWorker,\n ServiceWorker,\n+ NodeWorker,\n Custom(u8),\n Undefined,\n }", "additions": 1, "deletions": 0, "language": "Rus...
2025-11-04T22:42:33
facebook/react
988e2176702fca9b25113d9a8a3e7e3f484e16f2
380f5d675d2269f090d15c3f92e10de66e12516c
Turn on enableSiblingPrerendering in canary (#31541) In preparation for the next RC, I set this feature flag to true everywhere. I did not delete the feature flag yet, in case there are yet more bugs to be discovered. I also didn't remove the dynamic feature flag from the Meta builds; I'll let the Meta folks han...
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -145,7 +145,7 @@ export const enableOwnerStacks = __EXPERIMENTAL__;\n \n export const enableShallowPropDiffing = false;\n \n-export const enableSiblingPrerendering = false;\n+export const enableSiblingPrerendering = true;\n \n /**\n * Enables a...
2024-11-14T16:48:14
nodejs/node
6e60ab744e6a1371aa514cb5b6a5cedceb2a706b
e86adad759702799433b343a1703168e5bc65a6d
src: annotate BaseObjects in the heap snapshots correctly This fixes two issues in the BaseObject views in the heap snapshots: 1. BaseObjects are not conceptually roots when the environment and the realms are also showing up in the heap snapshot. Rather, they should be considered being held alive by the BaseObj...
[ { "path": "src/base_object-inl.h", "patch": "@@ -125,11 +125,6 @@ bool BaseObject::IsWeakOrDetached() const {\n return pd->wants_weak_jsobj || pd->is_detached;\n }\n \n-v8::EmbedderGraph::Node::Detachedness BaseObject::GetDetachedness() const {\n- return IsWeakOrDetached() ? v8::EmbedderGraph::Node::Deta...
2025-03-11T19:02:17
golang/go
48bb7a61147c397d0f45c10bc21ba12fa9cec0ad
e8a53538b473f1a7a92602675eda2d34f3887611
cmd/compile: repair bisection behavior for float-to-unsigned conversion My stab at a bisect-reproducer failed, but I verified that it fixed the problem described in the issue. Updates #75834 Change-Id: I9e0dfacd2bbd22cbc557e144920ee3417a48088c Reviewed-on: https://go-review.googlesource.com/c/go/+/710997 LUCI-TryBot...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -2865,7 +2865,19 @@ func (s *state) conv(n ir.Node, v *ssa.Value, ft, tt *types.Type) *ssa.Value {\n \t}\n \n \tif ft.IsFloat() || tt.IsFloat() {\n-\t\tconv, ok := fpConvOpToSSA[twoTypes{s.concreteEtype(ft), s.concreteEtype(tt)}]\n+\t\tcft, ct...
2025-10-10T21:08:20
electron/electron
31f8e7553b0f01bc3e18fd0826533e619ecb0ade
7cdf1a01b800f6270c1fce1b7b45522e0e0ed79b
fix: flaky utility and BrowserView tests (#44451) * fix: flake wait for crash with specific serviceName * fix: flake when unrelated WebContents exists during BrowserView tests * fix: wait for crash before forking * use name
[ { "path": "spec/api-browser-view-spec.ts", "patch": "@@ -1,4 +1,4 @@\n-import { BrowserView, BrowserWindow, screen, webContents } from 'electron/main';\n+import { BrowserView, BrowserWindow, screen, session, webContents } from 'electron/main';\n \n import { expect } from 'chai';\n \n@@ -11,24 +11,29 @@ impo...
2024-10-31T01:29:01
nodejs/node
e86adad759702799433b343a1703168e5bc65a6d
c1b15a49be8cf4f14cfac3c2a8207e012b97bfd4
test: use validateByRetainingPath in heapdump tests This makes sure that the tests are run on actual heap snapshots and prints out missing paths when it cannot be found, which makes failures easier to debug, and removes the unnecessary requirement for BaseObjects to be root - which would make the heap snapshot contain...
[ { "path": "test/common/heap.js", "patch": "@@ -221,6 +221,7 @@ function validateSnapshotNodes(...args) {\n * A alternative heap snapshot validator that can be used to verify cppgc-managed nodes.\n * Modified from\n * https://chromium.googlesource.com/v8/v8/+/b00e995fb212737802810384ba2b868d0d92f7e5/test/...
2025-03-11T18:58:57
facebook/react
380f5d675d2269f090d15c3f92e10de66e12516c
7ac8e612118a1285ac6aa0bb333d910b9f23a7ad
Fix sizebot (#31535) Our CI workflows generally cache `**/node_modules` (note the glob, it caches all transitive node_module directories) to speed up startup for new jobs that don't change any dependencies. However it seems like one of our caches got into a weird state (not sure how it happened) where the `build` ...
[ { "path": ".github/workflows/devtools_regression_tests.yml", "patch": "@@ -31,6 +31,8 @@ jobs:\n with:\n path: \"**/node_modules\"\n key: runtime-release-node_modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('yarn.lock', 'scripts/release/yarn.lock') }}\n+ - name: En...
2024-11-13T20:13:46
golang/go
e8a53538b473f1a7a92602675eda2d34f3887611
e3be2d1b2b68d960398a343805f77052d5decb22
runtime: fail TestGoroutineLeakProfile on data race Some of the programs in testdata/testgoroutineleakprofile have data races because they were taken from a corpus that showcases general Go concurrency bugs, not just leaked goroutines. This causes some flakiness as tests might fail due to, for example, a concurrent m...
[ { "path": "src/runtime/goroutineleakprofile_test.go", "patch": "@@ -487,7 +487,7 @@ func TestGoroutineLeakProfile(t *testing.T) {\n \ttestCases = append(testCases, patternTestCases...)\n \n \t// Test cases must not panic or cause fatal exceptions.\n-\tfailStates := regexp.MustCompile(`fatal|panic`)\n+\tfail...
2025-10-09T20:58:34
vercel/next.js
18c9f02bed49f683b25be1b7344328837a98d423
a7f9272f289af95a3fd6e473fb09d1ed7519de83
chore: update rspack binding to 1.6.0 (#85717) 1. Fixed the incremental update bug in buildChunkGraph. 2. Fixed a bug in Rspack's built-in CssChunkingPlugin. For detailed release information, please see https://github.com/web-infra-dev/rspack/releases.
[ { "path": "rspack/Cargo.lock", "patch": "@@ -129,9 +129,9 @@ checksum = \"d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16\"\n \n [[package]]\n name = \"ast_node\"\n-version = \"3.0.3\"\n+version = \"4.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"...
2025-11-04T21:09:10
electron/electron
7cdf1a01b800f6270c1fce1b7b45522e0e0ed79b
a720c8daf6a294871be6b8818150d57979f88b40
docs: fix win.setContentView() arg type (#44478) fix: setContentView type
[ { "path": "docs/api/base-window.md", "patch": "@@ -506,7 +506,7 @@ labeled as such.\n \n #### `win.setContentView(view)`\n \n-* `view` [`View`](view.md)\n+* `view` [View](view.md)\n \n Sets the content view of the window.\n ", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2024-10-30T19:56:10
rust-lang/rust
56a074bd3567032ef4ee2433d658d78aa727b596
45efcf5606e59e091113a4239717e8fe1a7f98c6
fix: File watcher should watch directories recursively Currently rust-analyzer only watches the directory itself, and doesn't consider children recursively. This is a problem when the directory itself is deleted and recreated (e.g. if you're creating all of `mycrate/src/` with a code generating script). The obvious s...
[ { "path": "src/tools/rust-analyzer/crates/vfs-notify/src/lib.rs", "patch": "@@ -317,7 +317,7 @@ impl NotifyActor {\n \n fn watch(&mut self, path: &Path) {\n if let Some((watcher, _)) = &mut self.watcher {\n- log_notify_error(watcher.watch(path, RecursiveMode::NonRecursive));\n+ ...
2026-03-06T17:09:01
facebook/react
3770c11011c78d227c7013468787e0c34ae91dc8
d9b3841ca64f292e3450edcd0a87eca05ac4c5f9
[compiler] repro for reactive ref.current accesses (#31519) See test fixture --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31519). * #31521 * __->__ #31519
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-nonreactive-ref.expect.md", "patch": "@@ -0,0 +1,89 @@\n+\n+## Input\n+\n+```javascript\n+import {useRef} from 'react';\n+import {Stringify} from 'shared-runtime';\n+\n+/**\n+ * Bug: we're currently filtering out `r...
2024-11-12T19:04:54
golang/go
e3be2d1b2b68d960398a343805f77052d5decb22
aced4c79a2b2c60e464410cec1e5378d1011fa18
net/url: disallow raw IPv6 addresses in host RFC 3986 requires square brackets around IPv6 addresses. Parse's acceptance of raw IPv6 addresses is non compliant, and complicates splitting out a port. Fixes #31024 Fixes #75223 Change-Id: I477dc420a7441cb33156627dbd5e46d88c677f1e Reviewed-on: https://go-review.googleso...
[ { "path": "src/net/url/url.go", "patch": "@@ -698,7 +698,9 @@ func parseHost(host string) (string, error) {\n \t\t\treturn \"\", errors.New(\"invalid IP-literal\")\n \t\t}\n \t\treturn \"[\" + unescapedHostname + \"]\" + unescapedColonPort, nil\n-\t} else if i := strings.LastIndex(host, \":\"); i != -1 {\n+...
2025-10-09T00:56:09
nodejs/node
f114dbee9d9521eb4b621cece11fbdb7ee8d31e1
e716081f199525b5f81f4688743f841f53eadcbd
src: improve error handling in cares_wrap PR-URL: https://github.com/nodejs/node/pull/57937 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/cares_wrap.cc", "patch": "@@ -76,6 +76,7 @@ using v8::JustVoid;\n using v8::Local;\n using v8::LocalVector;\n using v8::Maybe;\n+using v8::MaybeLocal;\n using v8::Nothing;\n using v8::Null;\n using v8::Object;\n@@ -163,29 +164,31 @@ void ares_sockstate_cb(void* data, ares_socket_t sock, int r...
2025-04-19T21:11:12
vercel/next.js
a6315f2ee72f7b6c9267e47b1792417b17aff110
7ed2b90651de6503ffda88b3d48ebe0431f8c8c5
fix: eslint-config-next types was exporting to dist/src (#85768) `eslint-config-next` types were being emitted to `dist/src` instead of `dist/` during build. | Before | After | |--------|--------| | <img width="422" height="452" alt="CleanShot 2025-11-04 at 15 50 38@2x" src="https://github.com/user-attachments/assets...
[ { "path": "packages/eslint-config-next/package.json", "patch": "@@ -39,7 +39,7 @@\n \"scripts\": {\n \"dev\": \"pnpm build\",\n \"build\": \"swc -d dist src && pnpm types\",\n- \"types\": \"tsc --skipLibCheck --declaration --emitDeclarationOnly --esModuleInterop --outDir dist\",\n+ \"types\"...
2025-11-04T19:06:25
electron/electron
de04fc3b902405491939045161743f22e9fbb712
7ff7160135e52f419f05cfbaf0b6be5cb36f4221
fix: update shell.openExternal to correctly focus on external window (#44408) * fix: Use openURL:configuration:completionHandler instead of openUrl * test: add a test * fix: add dispatch_async to replace GetUIThreadTaskRunner * refactor: remove unused import * fix: update to use BindPostTaskToCurrentDefaul...
[ { "path": "shell/common/platform_util_mac.mm", "patch": "@@ -19,6 +19,7 @@\n #include \"base/logging.h\"\n #include \"base/mac/scoped_aedesc.h\"\n #include \"base/strings/sys_string_conversions.h\"\n+#include \"base/task/sequenced_task_runner.h\"\n #include \"base/task/thread_pool.h\"\n #include \"content/p...
2024-10-29T22:10:10
facebook/react
d9b3841ca64f292e3450edcd0a87eca05ac4c5f9
2ec26bc4323673d1f2035191d3aaf0a18b20d488
Revert "Performance tracks are sorted by start time" hack (#31518) This reverts commit d3bf32a95806b6d583ef041b8d83781cd686cfd8 which was part of #30983 When you have very deep trees this trick can cause the top levels to skew way too much from the real numbers. Creating unbalanced trees. The bug should have b...
[ { "path": "packages/react-reconciler/src/ReactProfilerTimer.js", "patch": "@@ -193,13 +193,8 @@ export function popComponentEffectStart(prevEffectStart: number): void {\n if (!enableProfilerTimer || !enableProfilerCommitHooks) {\n return;\n }\n- if (prevEffectStart < 0) {\n- // If the parent com...
2024-11-12T17:46:55
golang/go
aced4c79a2b2c60e464410cec1e5378d1011fa18
584a89fe7455470b09643b30bdc3cc55bb75a552
net/http: strip request body headers on POST to GET redirects According to WHATWG Fetch, when the body is dropped in a redirect, headers that describe the body should also be dropped. https://fetch.spec.whatwg.org/#http-redirect-fetch Fixes #57273 Change-Id: I84598f69608e95c1b556ea0ce5953ed43bf2d824 Reviewed-on: htt...
[ { "path": "src/net/http/client.go", "patch": "@@ -690,8 +690,7 @@ func (c *Client) do(req *Request) (retres *Response, reterr error) {\n \t\t\t\t\tstripSensitiveHeaders = true\n \t\t\t\t}\n \t\t\t}\n-\t\t\tcopyHeaders(req, stripSensitiveHeaders)\n-\n+\t\t\tcopyHeaders(req, stripSensitiveHeaders, !includeBod...
2025-10-09T01:26:02
nodejs/node
4cd8e1914a503ece778d642e748020e675cf1060
a8a86b3adbbd275a1183ccebe3f782adec92d1e9
http2: add raw header array support to h2Session.request() This also notably changes error handling for request(). Previously some invalid header values (but not all) would cause the session to be unnecessarily destroyed automatically, e.g. passing an unparseable header name to request(). This is no longer the case: h...
[ { "path": "doc/api/http2.md", "patch": "@@ -1073,7 +1073,7 @@ The `'origin'` event is only emitted when using a secure TLS connection.\n added: v8.4.0\n -->\n \n-* `headers` {HTTP/2 Headers Object}\n+* `headers` {HTTP/2 Headers Object} | {Array}\n \n * `options` {Object}\n * `endStream` {boolean} `true` i...
2025-04-17T17:16:52
vercel/next.js
7ed2b90651de6503ffda88b3d48ebe0431f8c8c5
531293634a1b256164efc60a4c713a0fe1e0e498
Fix documentation typo in refresh function (#85696) ### What? Fix documentation typo in `refresh` function.
[ { "path": "packages/next/src/server/web/spec-extension/revalidate.ts", "patch": "@@ -55,7 +55,7 @@ export function updateTag(tag: string) {\n /**\n * This function allows you to refresh client cache from server actions.\n * It's useful as dynamic data can be cached on the client which won't\n- * be refres...
2025-11-04T18:58:46
electron/electron
7ff7160135e52f419f05cfbaf0b6be5cb36f4221
9fc94a162bed056daea0324ca878f33061484cb0
docs: fix `win.getContentView(`) return type (#44430) docs: fix win.getContentView() return type
[ { "path": "docs/api/base-window.md", "patch": "@@ -506,13 +506,13 @@ labeled as such.\n \n #### `win.setContentView(view)`\n \n-* `view` [View](view.md)\n+* `view` [`View`](view.md)\n \n Sets the content view of the window.\n \n #### `win.getContentView()`\n \n-Returns [View](view.md) - The content view of ...
2024-10-29T20:41:44
golang/go
69e82796322bbff60b522534a8a6eacb2bf1ebba
6f4c63ba63fdec6e4a42e2e19ac71937973dedef
net/http: set cookie host to Request.Host when available When both Request.URL and Request.Host are set, the host in URL is used for connecting at the transport level, while Host is used for the request host line. Cookies should be set for the request, not the underlying connection destination. Fixes #38988 Change-I...
[ { "path": "src/net/http/client.go", "patch": "@@ -172,8 +172,13 @@ func refererForURL(lastReq, newReq *url.URL, explicitRef string) string {\n \n // didTimeout is non-nil only if err != nil.\n func (c *Client) send(req *Request, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {\n+\tc...
2025-10-08T21:33:24
facebook/react
2ec26bc4323673d1f2035191d3aaf0a18b20d488
b836de613d66ff36574af95cb93ad15fd743d1f4
[compiler] Repro for mutable range edge case (#31479) See test fixtures
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-aliased-capture-aliased-mutate.expect.md", "patch": "@@ -0,0 +1,107 @@\n+\n+## Input\n+\n+```javascript\n+// @flow @enableTransitivelyFreezeFunctionExpressions:false\n+import {arrayPush, setPropertyByKey, Stringify}...
2024-11-11T23:04:29
vercel/next.js
d0177fa07db68b1ebb412af4b4fbe3609924428e
2c56a6937112e6a0e0cf689234acecfaed8448c2
Tracing: Fix memory leak in span map (#85529) ## What? Fixes a small retainer object that is inserted on each request and not cleaned up. While at it also swapped array -> Set for the type checks to leverage `has`​ instead of `includes`​.
[ { "path": "packages/next/src/server/lib/trace/constants.ts", "patch": "@@ -125,7 +125,7 @@ type SpanTypes =\n | `${MiddlewareSpan}`\n \n // This list is used to filter out spans that are not relevant to the user\n-export const NextVanillaSpanAllowlist = [\n+export const NextVanillaSpanAllowlist = new Set(...
2025-11-04T16:17:20
nodejs/node
3e996dff22da0b61f34d2b60037326434b005eac
b673c697a75f440b9a8c60a28737acc9b01cebe7
build: fix zstd libname PR-URL: https://github.com/nodejs/node/pull/57999 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.co...
[ { "path": "configure.py", "patch": "@@ -2268,7 +2268,7 @@ def make_bin_override():\n configure_library('ngtcp2', output, pkgname='libngtcp2')\n configure_library('sqlite', output, pkgname='sqlite3')\n configure_library('uvwasi', output, pkgname='libuvwasi')\n-configure_library('zstd', output)\n+configure_li...
2025-04-26T09:06:42
electron/electron
9fc94a162bed056daea0324ca878f33061484cb0
53458da01ef239a16fb9de80ccc04fc07a040ffa
build: fix python util verbose mode logic (#44431) build: fix verbose mode logic
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -63,7 +63,7 @@ runs:\n run: |\n cd src\n electron/script/copy-debug-symbols.py --target-cpu=\"${{ inputs.target-arch }}\" --out-dir=out/Default/debug --compress\n- electron/script/strip-binaries.py --target-cpu=...
2024-10-29T15:35:57
facebook/react
b836de613d66ff36574af95cb93ad15fd743d1f4
ed15d5007ca7ee4d61294c741ce3e858d3c1d461
Fix continuation bug (#31434) ## Overview In `scheduleTaskForRootDuringMicrotask` we clear `root.callbackNode` if the work loop is [suspended waiting on data](https://github.com/facebook/react/blob/ac3ca097aeecae8fe3ec7f9b286307a923676518/packages/react-reconciler/src/ReactFiberRootScheduler.js#L338). But we d...
[ { "path": "packages/react-reconciler/src/ReactFiberRootScheduler.js", "patch": "@@ -482,7 +482,7 @@ function performWorkOnRootViaSchedulerTask(\n // only safe to do because we know we're at the end of the browser task.\n // So although it's not an actual microtask, it might as well be.\n scheduleTaskF...
2024-11-11T22:25:37
golang/go
6f4c63ba63fdec6e4a42e2e19ac71937973dedef
955a5a0dc5dd68ed89200a08f17590c0a94c1e09
cmd/go: unify "go fix" and "go vet" This change unifies the fix and vet subcommands; they use the same run function, action graph, and external tool (-vettool for go vet and -fixtool for go fix). go fix runs the tool with the -fix flag, whereas although go vet also supports -fix, it is not the default. The two tools h...
[ { "path": "doc/next/3-tools.md", "patch": "@@ -7,5 +7,15 @@\n a replacement for `go tool doc`: it takes the same flags and arguments and\n has the same behavior.\n \n+<!-- go.dev/issue/75432 -->\n+The `go fix` command, following the pattern of `go vet` in Go 1.10,\n+now uses the Go analysis framework (`gola...
2025-09-26T17:33:09
rust-lang/rust
f5991a8f5a7dd8950534fe91445bf163c5554f89
45efcf5606e59e091113a4239717e8fe1a7f98c6
fix: Incorrect flychecks with multiple workspaces When rust-analyzer receives textDocument/didChangeWatchedFiles, we want to trigger a flycheck in all workspaces if we can't find which workspace owns those files. However, since we used .any() instead of .all(), this behaviour was always triggered when the user had mo...
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs", "patch": "@@ -1021,7 +1021,7 @@ impl JsonLinesParser<CheckMessage> for CheckParser {\n }\n }\n \n-#[derive(Deserialize)]\n+#[derive(Deserialize, Debug)]\n #[serde(untagged)]\n enum JsonMessage {\n Cargo(cargo_metadata::Message...
2026-02-25T00:29:04
nodejs/node
b665127963f8b3df7e18eb3ced30507e8c904d14
5d15cbb4163bd895319d0f300eb08025883f6c3d
watch: clarify completion/failure watch mode messages clarify the messages that `node --watch` presents to the user when the process terminates (either successfully or because of some error) by clearly conveying that node is waiting for new file changes before restarting the process PR-URL: https://github.com/nodejs/...
[ { "path": "lib/internal/main/watch_mode.js", "patch": "@@ -79,10 +79,11 @@ function start() {\n }\n child.once('exit', (code) => {\n exited = true;\n+ const waitingForChanges = 'Waiting for file changes before restarting...';\n if (code === 0) {\n- process.stdout.write(`${blue}Completed ...
2025-04-24T14:00:24
vercel/next.js
3883a8d9591fe6fb163311b4df0ad7ebb8cab4f7
5df646547b1e9a65ad610b0b01f6fdf425ea55ec
Turbopack: disable tree shaking for tracing (#85722) We had tree shaking enabled for NFT. That is incorrect however, as even unused imports (if you don't use any of the imported bindings, and the file is marked as `sideEffects: false`) are still needed at runtime, since Node.js will execute everything anyway. - I mad...
[ { "path": "test/production/standalone-mode/tracing-side-effects-false/app/layout.js", "patch": "@@ -0,0 +1,8 @@\n+export default function Root({ children }) {\n+ return (\n+ <html>\n+ <head></head>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}", "additions": 8, "deletions": 0, ...
2025-11-04T09:24:06
electron/electron
53458da01ef239a16fb9de80ccc04fc07a040ffa
dffe00b232010811f37f07d509c0f3a00d9f119e
docs: Fix `powerMonitor` docs for type generation of `speed-limit-change` (#44391) Fix `powerMonitor` docs for type generation of `speed-limit-change`
[ { "path": "docs/api/power-monitor.md", "patch": "@@ -42,6 +42,8 @@ See https://developer.apple.com/library/archive/documentation/Performance/Concep\n \n ### Event: 'speed-limit-change' _macOS_ _Windows_\n \n+Returns:\n+\n * `limit` number - The operating system's advertised speed limit for CPUs, in percent....
2024-10-29T15:16:29
facebook/react
6e29479bffc188719e797801a9bf7859256b2ea0
ff595de29af107255fd957ca809d3074c16bcf12
[devtools] allow non-coercible objects in formatConsoleArgumentsToSingleString (#31444) ## Summary We have been getting unhandled `TypeError: Cannot convert object to primitive value` errors in development that only occur when using devtools. I tracked it down to `console.error()` calls coming from Apollo Client...
[ { "path": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -155,6 +155,12 @@ describe('utils', () => {\n 'Symbol(abc) 123',\n );\n });\n+\n+ it('should gracefully handle objects with no prototype', () => {\n+ expect(\n+ formatConsoleArgumentsToSingl...
2024-11-10T19:24:15
rust-lang/rust
ae909778390ad9af2f919e171a576e0f9211d083
45efcf5606e59e091113a4239717e8fe1a7f98c6
fix: Update VFS when a watched file is deleted When rust-analyzer handles file watching, it previously wouldn't update the VFS on file deletion. We would discard events where fs::metadata() isn't available, and we never have metadata for deleted files. See also the discussion in rust-lang/rust-analyzer#19907.
[ { "path": "src/tools/rust-analyzer/crates/vfs-notify/src/lib.rs", "patch": "@@ -208,6 +208,22 @@ impl NotifyActor {\n )\n })\n .filter_map(|path| -> Option<(AbsPathBuf, Option<Vec<u8>>)> {\n+ ...
2026-03-06T15:43:14
golang/go
5368e7742971c8dbcb75a405eb2319e71fb1d0c7
c53cb642deea152e28281133bc0053f5ec0ce358
net/http: run TestRequestWriteTransport with fake time to avoid flakes This test verifies whether or not we use the chunked encoding when sending a request with a body like io.NopCloser(strings.NewReader("")). This depends on whether the transport can read a single byte from the request body within 200ms, which is fla...
[ { "path": "src/net/http/requestwrite_test.go", "patch": "@@ -15,6 +15,7 @@ import (\n \t\"strings\"\n \t\"testing\"\n \t\"testing/iotest\"\n+\t\"testing/synctest\"\n \t\"time\"\n )\n \n@@ -667,6 +668,13 @@ func TestRequestWrite(t *testing.T) {\n func TestRequestWriteTransport(t *testing.T) {\n \tt.Parallel(...
2025-10-09T22:25:30
nodejs/node
5d15cbb4163bd895319d0f300eb08025883f6c3d
2c315d24f5775f837e5f51021611820e338d0810
crypto: fix cross-realm `SharedArrayBuffer` validation PR-URL: https://github.com/nodejs/node/pull/57974 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "lib/internal/crypto/webidl.js", "patch": "@@ -25,9 +25,6 @@ const {\n String,\n TypedArrayPrototypeGetBuffer,\n TypedArrayPrototypeGetSymbolToStringTag,\n- globalThis: {\n- SharedArrayBuffer,\n- },\n } = primordials;\n \n const {\n@@ -47,7 +44,7 @@ const {\n validateMaxBufferLength,\...
2025-04-24T13:28:51
vercel/next.js
2f8dec2314e43ca190b454ac73c31d54daa3177e
3f854dc3eaeedbda8e1ce439e3834985e97250d5
docs(next.config): this docs should remove ".mts" is not supported. (#85716) Fix #85715 --------- Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com> Co-authored-by: Jiwon Choi <devjiwonchoi@gmail.com>
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/index.mdx", "patch": "@@ -37,7 +37,7 @@ const nextConfig = {\n export default nextConfig\n ```\n \n-> **Good to know**: `next.config` with the `.cjs`, `.cts`, or `.mts` extensions are currently **not** supported.\n+> **Good to know**: `next...
2025-11-03T22:31:44
electron/electron
dffe00b232010811f37f07d509c0f3a00d9f119e
39b24aed923a98559181ae6e0a64cda7c2cd91e7
fix: -Wunsafe-buffer-usage warnings with argc, argv (#44366) * refactor: move uv_setup_args() calls to startup * refactor: call base::CommandLine::Init() before ContentMain() * feat: add ElectronCommandLine::AsUtf8() * refactor: call base::CommandLine::Init() before NodeMain() * refactor: use ElectronComma...
[ { "path": "BUILD.gn", "patch": "@@ -865,6 +865,7 @@ if (is_mac) {\n \":electron_framework_resources\",\n \":electron_swiftshader_library\",\n \":electron_xibs\",\n+ \"//third_party/electron_node:node_lib\",\n ]\n if (!is_mas_build) {\n deps += [ \":electron_crashpad_help...
2024-10-29T12:23:08
rust-lang/rust
ae25efb4ac3db8dbec8dc9f4d41f427f47600175
dbb159a432940d3788b83f5fbbbe9274d0be25d7
Fix panic by setting the span before it is actually needed
[ { "path": "clippy_utils/src/diagnostics.rs", "patch": "@@ -250,9 +250,11 @@ where\n }\n }\n \n+ let sp = sp.into();\n #[expect(clippy::disallowed_methods)]\n- cx.emit_span_lint(lint, sp, ClippyDiag(|diag: &mut Diag<'_, ()>| {\n+ cx.emit_span_lint(lint, sp.clone(), ClippyDiag(|diag: ...
2026-03-06T15:38:53
golang/go
c53cb642deea152e28281133bc0053f5ec0ce358
954fdcc51a678a2b84edb29ef4c3743b318a6fd8
internal/buildcfg: enable greenteagc experiment for loong64 The loong64 compiler bug has been resolved, so we can now unconditionally enable the experiment on the architecture. Updates #73581 Fixes #75776 Change-Id: I390f8a125d43ca64798ea5b6a408aaf7220fadbf Reviewed-on: https://go-review.googlesource.com/c/go/+/7104...
[ { "path": "src/internal/buildcfg/exp.go", "patch": "@@ -78,18 +78,13 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {\n \t// things like .debug_addr (needed for DWARF 5).\n \tdwarf5Supported := (goos != \"darwin\" && goos != \"ios\" && goos != \"aix\")\n \n-\t// The compiler...
2025-10-09T08:05:35
facebook/react
989af12f72080c17db03ead91d99b6394a215564
5c56b873efb300b4d1afc4ba6f16acf17e4e5800
Make prerendering always non-blocking with fix (#31452) We've previously failed to land this change due to some internal apps seeing infinite render loops due to external store state updates during render. It turns out that since the `renderWasConcurrent` var was moved into the do block, the sync render triggered f...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFiberAsync-test.js", "patch": "@@ -744,7 +744,7 @@ describe('ReactDOMFiberAsync', () => {\n // Because it suspended, it remains on the current path\n expect(div.textContent).toBe('/path/a');\n });\n- assertLog([]);\n+ assertLog(gate('...
2024-11-08T17:38:41
nodejs/node
2c315d24f5775f837e5f51021611820e338d0810
555aeb3aae3b1b91a1c183c6326fd033f491e103
doc: fix `AsyncLocalStorage` example response changes after node v18 PR-URL: https://github.com/nodejs/node/pull/57969 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/async_context.md", "patch": "@@ -75,8 +75,8 @@ http.get('http://localhost:8080');\n http.get('http://localhost:8080');\n // Prints:\n // 0: start\n-// 1: start\n // 0: finish\n+// 1: start\n // 1: finish\n ```\n \n@@ -107,8 +107,8 @@ http.get('http://localhost:8080');\n http.get...
2025-04-24T07:54:33
vercel/next.js
3f854dc3eaeedbda8e1ce439e3834985e97250d5
7cfb1488e047f15fe59b8e1b216d6662aef29873
[codemod] fix: next-lint-to-eslint-cli did not handle `'next'` plugin (#85749) Codemod `next-lint-to-eslint-cli` did not handle `extends: ['next']` in legacy ESLint config. x-ref: https://github.com/vercel/next.js/issues/85244#issuecomment-3482558412 Fixes #85244
[ { "path": "packages/next-codemod/transforms/__testfixtures__/next-lint-to-eslint-cli/legacy-config/.eslintrc.json", "patch": "@@ -3,6 +3,8 @@\n \"root\": true,\n \"extends\": [\n \"next/core-web-vitals\",\n+ \"next\",\n+ \"next/typescript\",\n \"turbo\",\n \"prettier\",\n \"plugin:...
2025-11-03T22:18:27
electron/electron
b3c2e83243b3c24da97b6b695e1ef19e1b473992
cc3359f12619afb5fea7b86782e40b70cceef038
refactor: prefer `inline constexpr string_view` for string constants (#44405) * refactor: BaseWindow::OnExecuteAppCommand() now takes a std::string_view * refactor: NativeWindow::NotifyWindowExecuteAppCommand() takes a std::string_view * refactor: AppCommandToString() returns a std::string_view, is now constexpr...
[ { "path": "BUILD.gn", "patch": "@@ -920,7 +920,6 @@ if (is_mac) {\n \"shell/app/electron_main_mac.cc\",\n \"shell/app/uv_stdio_fix.cc\",\n \"shell/app/uv_stdio_fix.h\",\n- \"shell/common/electron_constants.cc\",\n ]\n include_dirs = [ \".\" ]\n info_plist = \...
2024-10-29T09:30:12
rust-lang/rust
e01a7e7ba1a8adb7bb3477838d6f1b4b57d9761a
8d96e603b1c3e65bba9e944616de6260e7e40781
Fix panic by setting the span before it is actually needed
[ { "path": "src/tools/clippy/clippy_utils/src/diagnostics.rs", "patch": "@@ -250,9 +250,11 @@ where\n }\n }\n \n+ let sp = sp.into();\n #[expect(clippy::disallowed_methods)]\n- cx.emit_span_lint(lint, sp, ClippyDiag(|diag: &mut Diag<'_, ()>| {\n+ cx.emit_span_lint(lint, sp.clone(), C...
2026-03-06T15:38:53
golang/go
954fdcc51a678a2b84edb29ef4c3743b318a6fd8
19a30ea3f250f8d6258f3e08aa3561f1193fdd38
cmd/compile: declare no output register for loong64 LoweredAtomic{And,Or}32 ops The ICE seen on loong64 while compiling the `(*gcWork).tryStealSpan` function was due to an `LoweredAtomicAnd32` op (inlined from the `(pMask).clear` implementation) being incorrectly assigned an output register while it shouldn't have. Be...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go", "patch": "@@ -143,6 +143,7 @@ func init() {\n \t\tgp2load = regInfo{inputs: []regMask{gpspsbg, gpg}, outputs: []regMask{gp}}\n \t\tgpstore = regInfo{inputs: []regMask{gpspsbg, gpg}}\n \t\tgpstore2 = regInfo{inputs: []regMask{gpspsbg, gpg, gpg...
2025-10-09T07:52:02
nodejs/node
555aeb3aae3b1b91a1c183c6326fd033f491e103
bd3f27166b37cfde9349d31501cf0aa3401c7b61
test: deflake test-http2-options-max-headers-block-length The socket can be closed while data is still being written, causing an `ECONNRESET` error to be emitted on the client. Add a listener for it. PR-URL: https://github.com/nodejs/node/pull/57959 Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Joyee Che...
[ { "path": "test/parallel/test-http2-options-max-headers-block-length.js", "patch": "@@ -22,6 +22,8 @@ server.listen(0, common.mustCall(() => {\n const client = h2.connect(`http://localhost:${server.address().port}`,\n options);\n \n+ client.on('error', () => {});\n+\n const ...
2025-04-24T05:08:08
vercel/next.js
5f9e5f0e70651542cddb027a5ad00aa241a7d788
63b9e8bdf85ef7f01039b89a42cd9de573472edc
Don't invalidate hot reloader excessively during dev server boot (#85732) Suspecting that this fixes (or reduces) the "Watchpack Error (watcher): Error: EMFILE:" issues e.g. https://github.com/vercel/next.js/actions/runs/19028750529/job/54337767548?pr=85637 I noticed that all the Watchpack errors in CI happened in te...
[ { "path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts", "patch": "@@ -371,6 +371,7 @@ async function startWatcher(\n const routeTypesFilePath = path.join(distDir, 'types', 'routes.d.ts')\n const validatorFilePath = path.join(distDir, 'types', 'validator.ts')\n \n+ let initialW...
2025-11-03T18:51:14
electron/electron
739688214b8629fe6be8eea6423b160b99607442
5d0d15a0b365267d3a88fe43e6719903c6d3e82d
fix: keep gdk_pixbuf a dynamic dependency (#44423)
[ { "path": "shell/browser/ui/electron_gdk_pixbuf.sigs", "patch": "@@ -1,3 +1,4 @@\n-GdkPixbuf* gdk_pixbuf_new(GdkColorspace colorspace, gboolean has_alpha, int bits_per_sample, int width, int height)\n+GdkPixbuf* gdk_pixbuf_new_from_bytes(GBytes* data, GdkColorspace colorspace, gboolean has_alpha, int bits_p...
2024-10-29T00:44:20
rust-lang/rust
923582ca0833798fe6943afc9cde35b49ba16ffd
835c745a9ee60493a23fc596e949b20a604ba0e2
fix: add ident_pat qualifier to fully fn param - Do not show commas on label Example --- ```rust fn f(foo: (), bar: u32) {} fn g(foo: (), mut ba$0) ``` **Before this PR** ```rust fn f(foo: (), bar: u32) {} fn g(foo: (), bar: u32) ``` **After this PR** ```rust fn f(foo: (), bar: u32) {} fn g(foo: (), mut bar: u32)...
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/fn_param.rs", "patch": "@@ -30,14 +30,27 @@ pub(crate) fn complete_fn_param(\n _ => return None,\n };\n \n+ let qualifier = param_qualifier(param);\n let comma_wrapper = comma_wrapper(ctx);\n let mut add_new_item...
2026-03-06T12:20:12
golang/go
80f3bb5516bb12233a15167bc8ba9d39cca5b535
9db7e30bb42eed9912f5e7e9e3959f3b38879d5b
reflect: remove timeout in TestChanOfGC This test has an arbitrary 5 second timeout, and this seems to fire on Darwin with mayMoreStackMove enabled (which is slow). Just rely on the regular test timeout instead of this arbitrary shorter timeout to eliminate the possibility that the test is just too slow. On my Linux ...
[ { "path": "src/reflect/all_test.go", "patch": "@@ -6198,19 +6198,6 @@ func TestChanOfDir(t *testing.T) {\n }\n \n func TestChanOfGC(t *testing.T) {\n-\tdone := make(chan bool, 1)\n-\tgo func() {\n-\t\tselect {\n-\t\tcase <-done:\n-\t\tcase <-time.After(5 * time.Second):\n-\t\t\tpanic(\"deadlock in TestChanO...
2025-10-09T21:13:59
nodejs/node
7bc37af0f7150b9c1f90508b491ceff937734188
d19437d859e4f80cd2b61d95c9a9e9924419c3bf
src: fix -Wunreachable-code-return in node_sea PR-URL: https://github.com/nodejs/node/pull/57664 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/node_sea.cc", "patch": "@@ -640,8 +640,9 @@ bool MaybeLoadSingleExecutableApplication(Environment* env) {\n \n LoadEnvironment(env, LoadSingleExecutableApplication);\n return true;\n-#endif\n+#else\n return false;\n+#endif\n }\n \n void Initialize(Local<Object> target,", "additions"...
2025-04-23T10:13:23
vercel/next.js
63b9e8bdf85ef7f01039b89a42cd9de573472edc
1db925ad86b8c74d699781bde251de42dc728944
[test] Allow CLI integration test to be retryable (#85586) Fixes https://github.com/vercel/next.js/actions/runs/18937795131/job/54068900147#step:34:1879 `--experimental-https` test creates a cert relying on no cert existing in the default path. When it passes, it doesn't cleanup. Retrying that test file due to an u...
[ { "path": "test/integration/cli/test/index.test.js", "patch": "@@ -15,6 +15,7 @@ import path, { join } from 'path'\n import pkg from 'next/package'\n import http from 'http'\n import stripAnsi from 'strip-ansi'\n+import { rmSync } from 'fs'\n \n const dirBasic = join(__dirname, '../basic')\n const dirDuplic...
2025-11-03T16:44:52
electron/electron
348801b20eb7094f87ffb92b84903d010afca56c
57920e7747f09627f99ed5c27457339aa7c3fe57
fix: crash on netlog connection error (#44406) * fix: crash on netlog connection error * refactor: remove default PromiseBase constructor * Revert "refactor: remove default PromiseBase constructor" This reverts commit 9292324a0d5f9e63ba8f73f63dfff1d48eb2f38f. * remove dcheck
[ { "path": "shell/browser/api/electron_api_net_log.cc", "patch": "@@ -166,6 +166,7 @@ void NetLog::StartNetLogAfterCreateFile(net::NetLogCaptureMode capture_mode,\n std::move(*pending_start_promise_)\n .RejectWithErrorMessage(\n base::File::ErrorToString(output_file.error_details()));...
2024-10-28T09:24:54
rust-lang/rust
2d2c5521a2e2c592e587657dbe6277f19b56042d
e316da9660a6a2d28fc0d93a915056705becf5de
Fix another unused feature warning
[ { "path": "example/neon.rs", "patch": "@@ -1,6 +1,6 @@\n // Most of these tests are copied from https://github.com/japaric/stdsimd/blob/0f4413d01c4f0c3ffbc5a69e9a37fbc7235b31a9/coresimd/arm/neon.rs\n \n-#![feature(portable_simd)]\n+#![cfg_attr(target_arch = \"aarch64\", feature(portable_simd))]\n \n #[cfg(t...
2026-03-06T15:07:59
golang/go
9db7e30bb42eed9912f5e7e9e3959f3b38879d5b
8d810286b3121b601480426159c04d178fa29166
net/url: allow IP-literals with IPv4-mapped IPv6 addresses The security fix we applied in CL709857 was overly broad. It applied rules from RFC 2732, which disallowed IPv4-mapped IPv6 addresses, but these were later allowed in RFC 3986, which is the canonical URI syntax RFC. Revert the portion of CL709857 which restri...
[ { "path": "src/net/url/url.go", "patch": "@@ -689,13 +689,13 @@ func parseHost(host string) (string, error) {\n \n \t\t// Per RFC 3986, only a host identified by a valid\n \t\t// IPv6 address can be enclosed by square brackets.\n-\t\t// This excludes any IPv4 or IPv4-mapped addresses.\n+\t\t// This excludes...
2025-10-09T00:13:12
facebook/react
09197bb786344d2ede1286e7f3ec4e21b18a58f2
2df8f6188537514a538741064ae83682c2bef7c1
[compiler] Outline jsx with duplicate attributes (#31441) Previously, we would skip outlining jsx expressions that had duplicate jsx attributes as we would not rename them causing incorrect compilation. In this PR, we add outlining support for duplicate jsx attributes by renaming them.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Optimization/OutlineJsx.ts", "patch": "@@ -222,6 +222,8 @@ function collectProps(\n const attributes: Array<OutlinedJsxAttribute> = [];\n const jsxIds = new Set(instructions.map(i => i.lvalue.identifier.id));\n const seen: Set<string> = new ...
2024-11-06T17:50:13
vercel/next.js
a293884745ea0bd930056299e8f10cd05c24d8cd
b350da474b152281ec2da6e2f515634dfaed9aff
Turbopack: Upgrade image crate (#85084) ## What? Upgrade the image crate which includes some bugfixes for bmp files.
[ { "path": "Cargo.lock", "patch": "@@ -300,9 +300,9 @@ checksum = \"23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b\"\n \n [[package]]\n name = \"arrayvec\"\n-version = \"0.7.4\"\n+version = \"0.7.6\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"96d30a0...
2025-11-03T09:44:24
rust-lang/rust
e316da9660a6a2d28fc0d93a915056705becf5de
263613601f446208ad59c6c8ae0644b64b6638a6
Fix unused feature warning
[ { "path": "example/std_example.rs", "patch": "@@ -1,7 +1,6 @@\n #![feature(\n core_intrinsics,\n coroutines,\n- stmt_expr_attributes,\n coroutine_trait,\n repr_simd,\n tuple_trait,", "additions": 0, "deletions": 1, "language": "Rust" } ]
2026-03-06T14:16:48
electron/electron
83d704009687956fb4b69cb13ab03664d7950118
c42fb09fc925bbe82d0c99b6890af7dd1e0daf62
fix: -Wunsafe-buffer-usage warning in didRegisterForRemoteNotificationsWithDeviceToken (#44348) * chore: move as_byte_span() to new shell/common/mac_util.h this way it can be used by multiple mm files * fix: -Wunsafe-buffer-usage warnings in UNNotificationResponseToNSDictionary * refactor: use base::HexEncode...
[ { "path": "filenames.gni", "patch": "@@ -205,6 +205,8 @@ filenames = {\n \"shell/common/mac/main_application_bundle.mm\",\n \"shell/common/mac/codesign_util.cc\",\n \"shell/common/mac/codesign_util.h\",\n+ \"shell/common/mac_util.h\",\n+ \"shell/common/mac_util.mm\",\n \"shell/common/n...
2024-10-23T19:18:22
nodejs/node
d19437d859e4f80cd2b61d95c9a9e9924419c3bf
71f8c3be1fa6f92128176d2cc182b03878b209d0
doc: fix linter errors PR-URL: https://github.com/nodejs/node/pull/57987 Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "doc/api/async_context.md", "patch": "@@ -172,7 +172,7 @@ added:\n - v19.8.0\n - v18.16.0\n changes:\n- - version: \n+ - version:\n - v23.11.0\n - v22.15.0\n pr-url: https://github.com/nodejs/node/pull/57510", "additions": 1, "deletions": 1, "language": "Markdown" }, {...
2025-04-23T08:59:33
golang/go
0e466a8d1d89e15e953c7d35bcd9e02d3c89f62b
4837fbe4145cd47b43eed66fee9eed9c2b988316
cmd/compile: modify float-to-[u]int so that amd64 and arm64 match Eventual goal is that all the architectures agree, and are sensible. The test will be build-tagged to exclude not-yet-handled platforms. This change also bisects the conversion change in case of bugs. (`bisect -compile=convert ...`) Change-Id: I98528...
[ { "path": "src/cmd/compile/internal/base/debug.go", "patch": "@@ -20,6 +20,7 @@ type DebugFlags struct {\n \tAppend int `help:\"print information about append compilation\"`\n \tCheckptr int `help:\"instrument unsafe pointer conversions\\n0: instrumentation disabled\\n1: co...
2025-07-21T17:30:08
rust-lang/rust
ddb729abdc8fb0bc47e4dcb95b83cef050ef6272
f8262c13446ac50a7361cd18ee3eeb93c5d06d99
fix: Fix invalid `PartialEq` impl for `EditionedFileIdData` This broke the contract of `HashEqLike`, causing interning to return different IDs
[ { "path": "src/tools/rust-analyzer/crates/base-db/src/editioned_file_id.rs", "patch": "@@ -20,7 +20,7 @@ const _: () = {\n use zalsa_::interned as zalsa_struct_;\n type Configuration_ = EditionedFileId;\n \n- #[derive(Debug, Clone, PartialEq, Eq)]\n+ #[derive(Debug, Clone, Eq)]\n pub struc...
2026-03-06T12:38:25
electron/electron
c42fb09fc925bbe82d0c99b6890af7dd1e0daf62
fd500477acca903fd5470801d8a9edf20f2a5654
test: fixup flaky tests (#44349) * test: fixup flaky test * test: disable flaky protocol speed test on macOS * test: fixup flaky test in api-browser-window-spec.ts
[ { "path": "spec/api-browser-window-spec.ts", "patch": "@@ -17,7 +17,7 @@ import * as nodeUrl from 'node:url';\n \n import { emittedUntil, emittedNTimes } from './lib/events-helpers';\n import { HexColors, hasCapturableScreen, ScreenCapture } from './lib/screen-helpers';\n-import { ifit, ifdescribe, defer, l...
2024-10-23T19:14:50
vercel/next.js
b350da474b152281ec2da6e2f515634dfaed9aff
c2f1062bd305eb3ffaf4b4a9dc5ab5eae786fae1
docs: fix generateImageMetadata example to use normal params object (#85658) ### What? Fixes an inconsistency in the v16 upgrade documentation for `generateImageMetadata`. ### Why? In the “Upgrading to Version 16” guide, the example incorrectly awaited the `params` object inside `generateImageMetadata`, implying th...
[ { "path": "docs/01-app/02-guides/upgrading/version-16.mdx", "patch": "@@ -322,12 +322,11 @@ export default function Image({ params, id }) {\n }\n ```\n \n-Starting with **Next.js 16**, to align with the [Async Request APIs](#async-request-apis-breaking-change) change, these are also asynchronous.\n+Starting...
2025-11-03T09:28:31
nodejs/node
71f8c3be1fa6f92128176d2cc182b03878b209d0
8e7f32f968a723bc8811e9f146876a1061f7941b
2025-04-23, Version 22.15.0 'Jod' (LTS) Notable changes: assert: * (SEMVER-MINOR) implement partial error comparison (Ruben Bridgewater) https://github.com/nodejs/node/pull/57370 * (SEMVER-MINOR) improve partialDeepStrictEqual (Ruben Bridgewater) https://github.com/nodejs/node/pull/57370 cli: * (SEMVER-MINOR) a...
[ { "path": "CHANGELOG.md", "patch": "@@ -54,7 +54,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.14.0\">22.14.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.15.0\">22.15.0...
2025-04-11T20:38:28
facebook/react
fd018af617cf9f8be607f45fc53d6d8167d29eb4
f2f002c7c19e273f3f31289d6f288c3248f10183
[compiler] Delete propagateScopeDeps (non-hir) (#31199) `enablePropagateScopeDepsHIR` is now used extensively in Meta. This has been tested for over two weeks in our e2e tests and production. The rest of this stack deletes `LoweredFunction.dependencies`, which the non-hir version of `PropagateScopeDeps` depends o...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -57,7 +57,6 @@ import {\n mergeReactiveScopesThatInvalidateTogether,\n promoteUsedTemporaries,\n propagateEarlyReturns,\n- propagateScopeDependencies,\n pruneHoistedContexts,\n pruneNonEscapingScope...
2024-11-06T00:22:04
golang/go
4837fbe4145cd47b43eed66fee9eed9c2b988316
ee163197a879cf19aa9758bc544c717445284311
net/http/httptest: check whether response bodies are allowed Fixes #75471 Change-Id: Ie8fc5fae4b2a9285501198d8379bbffe51ee63f7 Reviewed-on: https://go-review.googlesource.com/c/go/+/709335 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-sc...
[ { "path": "src/net/http/httptest/recorder.go", "patch": "@@ -105,6 +105,10 @@ func (rw *ResponseRecorder) writeHeader(b []byte, str string) {\n // Write implements http.ResponseWriter. The data in buf is written to\n // rw.Body, if not nil.\n func (rw *ResponseRecorder) Write(buf []byte) (int, error) {\n+\t...
2025-10-05T22:09:03
rust-lang/rust
ed12fe81b07cf7c2371306a3400bccc9e2b117e8
ca2178dd9fe7f036537414def4593258ca4adb7b
fix ICE in offset_of! error recovery
[ { "path": "compiler/rustc_mir_build/src/thir/cx/expr.rs", "patch": "@@ -806,6 +806,10 @@ impl<'tcx> ThirBuildCx<'tcx> {\n lit: ScalarInt::try_from_uint(val, Size::from_bits(32)).unwrap(),\n user_ty: None,\n };\n+ let mk_usize_kind = |val...
2026-03-06T13:19:23
electron/electron
e3e94d45eecf24d976adb1905fdef40544de806c
fff6ea438ac99cfec9818e961faf5c8a87787f91
fix: silence -Wunsafe-buffer-usage warning in GetPreferredLanguages() (#44333) fix: use UNSAFE_BUFFERS macro in GetPreferredLanguages()
[ { "path": "shell/common/language_util_linux.cc", "patch": "@@ -22,7 +22,10 @@ std::vector<std::string> GetPreferredLanguages() {\n DCHECK(languages); // A valid pointer is guaranteed.\n DCHECK(*languages); // At least one entry, \"C\", is guaranteed.\n \n- for (; *languages; ++languages) {\n+ // SA...
2024-10-21T23:20:00