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
vercel/next.js
b6a7714057220561153c7a40152de4a22ae9e8f6
b13493aba9b00442de2beb1b04ccf632db8ed14a
Hoist inner `'use cache'` functions to reduce function allocations (#85904) This PR fixes a slight performance regression introduced in #85519 where inline async function expressions were created for each unique set of arguments passed to a `'use cache'` function. For a function like this: ```js export async functio...
[ { "path": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -733,8 +733,7 @@ impl<C: Comments> ServerActions<C> {\n }\n \n let cache_name: Atom = self.gen_cache_ident();\n- let cache_ident = private_ident!(Span::dummy_with_cmt(), cache_name.clone());\n- ...
2025-11-10T12:09:59
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
rust-lang/rust
82034115efa523a2fa470078901db92d2d4d246f
ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d
Fix LegacyKeyValueFormat report from docker build: mips
[ { "path": "src/ci/docker/host-x86_64/dist-mips-linux/Dockerfile", "patch": "@@ -26,5 +26,5 @@ ENV \\\n \n ENV HOSTS=mips-unknown-linux-gnu\n \n-ENV RUST_CONFIGURE_ARGS --enable-extended --disable-docs\n-ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS\n+ENV RUST_CONFIGURE_ARGS=\"--enable-extend...
2026-03-07T08:45:29
facebook/react
ee10c74824fa9631032f031b20ad1f208ccb4aca
2a4f2507a09a715e8182b7954b1bc3d9c107f492
[playground] Fix incorrect ci path and change reporter (#31572) --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31572). * #31573 * __->__ #31572
[ { "path": ".github/workflows/compiler_playground.yml", "patch": "@@ -6,7 +6,7 @@ on:\n pull_request:\n paths:\n - compiler/**\n- - .github/workflows/compiler-playground.yml\n+ - .github/workflows/compiler_playground.yml\n \n concurrency:\n group: ${{ github.workflow }}-${{ github.eve...
2024-11-19T00:17:58
golang/go
ee163197a879cf19aa9758bc544c717445284311
de9da0de30377532370a09a311851afc0616c185
path/filepath: return cleaned path from Rel As the doc says, Rel should return a cleaned path. Fixes #75763 Change-Id: Ic0f5a3b1da3cc4cf3c31fdb1a88ebcc4ea6f9169 Reviewed-on: https://go-review.googlesource.com/c/go/+/709675 Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci...
[ { "path": "src/path/filepath/path.go", "patch": "@@ -248,7 +248,7 @@ func Rel(basepath, targpath string) (string, error) {\n \t\t\tbuf[n] = Separator\n \t\t\tcopy(buf[n+1:], targ[t0:])\n \t\t}\n-\t\treturn string(buf), nil\n+\t\treturn Clean(string(buf)), nil\n \t}\n \treturn targ[t0:], nil\n }", "addit...
2025-10-06T23:13:14
vercel/next.js
ad93e452a458a27110e7cf5e8272e40d4741b756
4b3ccc13906876eeffbba9ecbaa938bf4327a41c
Fix telemetry event loss on build failures and server shutdown (#85867) ## Problem Telemetry events were not being captured in three scenarios: ### 1. MCP Telemetry Lost on Dev Server Shutdown Two telemetry instances were created during dev server startup. MCP events were recorded to one instance but shutdown flush...
[ { "path": "packages/next/errors.json", "patch": "@@ -905,5 +905,7 @@\n \"904\": \"The file \\\"%s\\\" must export a function, either as a default export or as a named \\\"%s\\\" export.\",\n \"905\": \"Page \\\"%s\\\" cannot use \\\\`export const unstable_prefetch = ...\\\\` without enabling \\\\`cacheC...
2025-11-10T02:58:39
rust-lang/rust
58652d5a4312b2d2549d2f631bc301df8e4d7aae
ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d
Fix LegacyKeyValueFormat report from docker build: ohos
[ { "path": "src/ci/docker/host-x86_64/dist-ohos-aarch64/Dockerfile", "patch": "@@ -40,14 +40,13 @@ ENV \\\n AR_aarch64_unknown_linux_ohos=/opt/ohos-sdk/native/llvm/bin/llvm-ar \\\n CXX_aarch64_unknown_linux_ohos=/usr/local/bin/aarch64-unknown-linux-ohos-clang++.sh\n \n-ENV RUST_CONFIGURE_ARGS \\\n- ...
2026-03-07T08:42:15
facebook/react
579cc2a44c17f848bb3ad3b82121c87eb415935a
e33b13795dd25eba780c97b17cf7deee7f21a3e5
[playground] Add support for "use no memo" (#31561) Fixes #31331 ## Summary There is a bug in playground(https://github.com/facebook/react/issues/31331) which doesnt support 'use memo' or 'use no memo' directives. Its misleading while debugging components in the playground ## How did you test this change? Ran test c...
[ { "path": "compiler/apps/playground/README.md", "patch": "@@ -26,6 +26,13 @@ $ npm run dev\n $ yarn\n ```\n \n+## Testing\n+```sh\n+# Install playwright browser binaries\n+$ npx playwright install --with-deps\n+# Run tests\n+$ yarn test\n+```\n ## Deployment\n \n This project has been deployed using Vercel....
2024-11-18T20:38:22
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
vercel/next.js
24cfba6b72542364288c4314faa796b3f6de5b8a
2342c9008b2f497829f82976819d18f1af159863
Add Appwrite Sites to supported adapters (#85830) <!-- 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 ...
[ { "path": "docs/01-app/01-getting-started/17-deploying.mdx", "patch": "@@ -72,6 +72,7 @@ Next.js can be adapted to run on different platforms to support their infrastruc\n \n Refer to each provider's documentation for information on supported Next.js features:\n \n+- [Appwrite Sites](https://appwrite.io/doc...
2025-11-08T17:49:38
nodejs/node
4adcd59f3f5f847373edb4960eed32235ec888b0
395b917ed9bab5d236466d8d6ae7f3686db57f5f
deps: define V8_PRESERVE_MOST as no-op on Windows It's causing linker errors with node.lib in node-gyp and potentially breaks other 3rd party tools PR-URL: https://github.com/nodejs/node/pull/56238 Refs: https://github.com/nodejs/node/pull/55784 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M ...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.2',\n+ 'v8_embedder_string': '-node.3',\n \n ##### V8 defaults for Node.js #####\n "...
2024-12-16T10:11:22
golang/go
de9da0de30377532370a09a311851afc0616c185
ae094a1397d03aafde380cdb79e0d6a5731c8dbc
cmd/compile/internal/devirtualize: improve concrete type analysis This change improves the concrete type analysis in the devirtualizer, it not longer relies on ir.Reassigned, it now statically tries to determine the concrete type of an interface, even when assigned multiple times, following type assertions and iface c...
[ { "path": "src/cmd/compile/internal/devirtualize/devirtualize.go", "patch": "@@ -18,9 +18,11 @@ import (\n \t\"cmd/compile/internal/types\"\n )\n \n+const go126ImprovedConcreteTypeAnalysis = true\n+\n // StaticCall devirtualizes the given call if possible when the concrete callee\n // is available staticall...
2025-10-07T17:57:59
facebook/react
e33b13795dd25eba780c97b17cf7deee7f21a3e5
4beb1fd8bacacd3f4faeb180bca00ea0edcf27e4
[compiler] repro for type inference + control flow bug (#31570) Repro for bug in our type inference system. We currently propagate inferred types through control flow / potential type guards. Note that this is inconsistent with both [Flow](https://flow.org/try/#1N4Igxg9gdgZglgcxALlAIwIZoKYBsD6uEEAztvhgE6UYCe+JADp...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-type-inference-control-flow.expect.md", "patch": "@@ -0,0 +1,114 @@\n+\n+## Input\n+\n+```javascript\n+import {arrayPush, CONST_NUMBER0, mutate} from 'shared-runtime';\n+\n+/**\n+ * Repro for bug in our type inferen...
2024-11-18T16:54:11
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
2342c9008b2f497829f82976819d18f1af159863
f50cd943c67c43be68522fb4fe8e7858a27c12f0
Turbopack: Fix IO concurrency for MacOS (#85861) ### What? The previous default of 256 parallel write operations caused a serious performance problem. For a bigger application this change improves write performance by 5.8x (12.8s -> 2.2s) on MacOS.
[ { "path": "turbopack/crates/turbo-tasks-fs/src/lib.rs", "patch": "@@ -193,21 +193,36 @@ where\n }\n }\n \n-fn create_semaphore() -> tokio::sync::Semaphore {\n+fn number_env_var(name: &'static str) -> Option<usize> {\n+ env::var(name)\n+ .ok()\n+ .filter(|val| !val.is_empty())\n+ ...
2025-11-08T17:30:52
golang/go
d945600d060e7a0b7c5e72ac606a017d105a17f3
d4830c61301a32ad9373bc30c5fd6196c3567f61
cmd/gofmt: change -d to exit 1 if diffs exist When using the -d flag, set the exit code to 1 if there is a diff. Fixes #46289 Change-Id: I802e8ccd1798ed7f4448696bec4bc82835ec71a2 GitHub-Last-Rev: db2207fba9a8f7a2f50138ec1f086ac6a74e1b10 GitHub-Pull-Request: golang/go#75649 Reviewed-on: https://go-review.googlesource...
[ { "path": "src/cmd/gofmt/gofmt.go", "patch": "@@ -41,6 +41,9 @@ var (\n \n \t// debugging\n \tcpuprofile = flag.String(\"cpuprofile\", \"\", \"write cpu profile to this file\")\n+\n+\t// errors\n+\terrFormattingDiffers = fmt.Errorf(\"formatting differs from gofmt's\")\n )\n \n // Keep these in sync with go/...
2025-10-06T12:47:34
nodejs/node
395b917ed9bab5d236466d8d6ae7f3686db57f5f
91617e7a677c4a8fdf8f9331853447e5c7d5f650
deps: fix FP16 bitcasts.h PR-URL: https://github.com/nodejs/node/pull/53134 Refs: https://github.com/nodejs/node/issues/52809 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pul...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "...
2024-05-28T07:10:52
rust-lang/rust
d3149ca7aa0d5ea00ad1b69fb01ca067dde336bd
69370dc4a8862b8401615a2a7b950704ba66c495
Fix incorrect rustdoc JSON representation of `#[doc(test(..))]` attrs.
[ { "path": "src/librustdoc/json/conversions.rs", "patch": "@@ -1041,10 +1041,10 @@ fn maybe_from_hir_attr(attr: &hir::Attribute, item_id: ItemId, tcx: TyCtxt<'_>)\n for attr_span in test_attrs {\n // FIXME: This is ugly, remove when `test_attrs` has been ported to new attribute AP...
2026-03-06T04:38:02
facebook/react
92c0f5f85fed42024b17bf6595291f9f5d6e8734
053b3cb0503e26da6d1dfa02b74fa52e30936bd6
Track separate SuspendedOnAction flag by rethrowing a separate SuspenseActionException sentinel (#31554) This lets us track separately if something was suspended on an Action using useActionState rather than suspended on Data. This approach feels quite bloated and it seems like we'd eventually might want to read ...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -214,7 +214,7 @@ const SuspenseException: mixed = new Error(\n '`try/catch` block. Capturing without rethrowing will lead to ' +\n 'unexpected behavior.\\n\\n' +\n 'To handle async errors, wrap your component in an error...
2024-11-15T22:52:24
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
vercel/next.js
d358c547c94429c05dcc7a6964684236d8b36dc4
9b9d6e1edd26f5f47c8f781908d68f76a493cbaf
Update deploy manifest (#85924) The filter condition on the existing tests was incorrect so updated those and added flakey prefetch ones from https://github.com/vercel/next.js/actions/runs/19184159066/job/54847336252 https://github.com/vercel/next.js/actions/runs/19184159066/job/54847336291
[ { "path": "test/deploy-tests-manifest.json", "patch": "@@ -1,13 +1,23 @@\n {\n \"version\": 2,\n \"suites\": {\n+ \"test/e2e/app-dir/app-client-cache/client-cache.defaults.test.ts\": {\n+ \"failed\": [\n+ \"app dir client cache semantics (default semantics) prefetch={true} should re-use t...
2025-11-08T02:37:12
nodejs/node
fca4107e76f0931ecfb6f90e7ad41bfd298e1e71
c240c03013b2b5da76d7820755c8fc0f95f0ba12
tools: ignore V8 tests in CodeQL scans CodeQL reports hundreds of errors in V8 tests indicating 'A parse error occurred'. Code quality issues in V8 tests are not a concern for Node.js. Exclude the tests from CodeQL scans. PR-URL: https://github.com/nodejs/node/pull/58081 Reviewed-By: Michaël Zasso <targos@protonmail....
[ { "path": ".github/codeql-config.yml", "patch": "@@ -2,3 +2,4 @@ name: CodeQL config\n \n paths-ignore:\n - test\n+ - deps/v8/test", "additions": 1, "deletions": 0, "language": "YAML" } ]
2025-05-02T06:12:58
golang/go
d4830c61301a32ad9373bc30c5fd6196c3567f61
e1ca1de1234aa0f6be85c97db5492a94b099a305
cmd/internal/obj: fix Link.Diag printf errors go1.26's vet printf checker can associate the printf-wrapper property with local vars and struct fields if they are assigned from a printf-like func literal (CL 706635). This leads to better detection of mistakes. Change-Id: I604be1e200aa1aba75e09d4f36ab68c1dba3b8a3 Revie...
[ { "path": "src/cmd/internal/obj/arm/asm5.go", "patch": "@@ -579,7 +579,7 @@ func span5(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t}\n \n \t\tif int64(pc) > p.Pc {\n-\t\t\tctxt.Diag(\"PC padding invalid: want %#d, has %#d: %v\", p.Pc, pc, p)\n+\t\t\tctxt.Diag(\"PC padding invalid: want ...
2025-10-08T16:19:14
facebook/react
0f3c62b4667f62bf36485079ab242dba8e54917c
858633f900768e63870a0a8d450ad7b5d6df0256
[compiler][be] Patch test fixtures for evaluator (#31203) Add more `FIXTURE_ENTRYPOINT`s ' --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31203). * #31202 * __->__ #31203 * #31201 * #31200...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/capturing-func-alias-captured-mutate.expect.md", "patch": "@@ -2,39 +2,55 @@\n ## Input\n \n ```javascript\n-function component(foo, bar) {\n+import {mutate} from 'shared-runtime';\n+\n+function Component({foo, bar}) {\...
2024-11-15T18:06:29
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
vercel/next.js
f7d262902ac9f7581a9d6440535573b308783fbe
f5f2660cba878057be45c2ac5aadba5a4166b968
fix isDynamicRSC condition when deployed (#85919) Next.js relies on on the Resume Data Cache to prevent tearing between the statically prefetchable parts of the UI by seeding the resume with the same cache as the revalidation/build. The RDC data is stashed in the postponed state which is attached to all of the differe...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -267,9 +267,16 @@ export async function handler(\n // If PPR is enabled, and this is a RSC request (but not a prefetch), then\n // we can use this fact to only generate the flight data for the request\n // because we can't cache t...
2025-11-08T01:34:46
nodejs/node
430027c979894fe3db3c2cdeb01977866b96dc09
fc054bbbb1005c924799c80b07eb0e7ed0278b99
doc: fix formatting of `import.meta.filename` section And `import.meta.dirname`. PR-URL: https://github.com/nodejs/node/pull/58079 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlo...
[ { "path": "doc/api/esm.md", "patch": "@@ -356,8 +356,9 @@ changes:\n description: This property is no longer experimental.\n -->\n \n-* {string} The directory name of the current module. This is the same as the\n- [`path.dirname()`][] of the [`import.meta.filename`][].\n+* {string} The directory name o...
2025-05-01T17:22:50
rust-lang/rust
7baf2be12a95fc489c3fc4111baeedbf867b0f46
4e0b64408c4aee1066eefa6a80a56803a69467aa
Fix uitests
[ { "path": "tests/ui-fulldeps/session-diagnostic/diagnostic-derive-doc-comment-field.stderr", "patch": "@@ -35,12 +35,6 @@ help: the nightly-only, unstable trait `IntoDiagArg` is not implemented for `Not\n LL | struct NotIntoDiagArg;\n | ^^^^^^^^^^^^^^^^^^^^^\n = help: normalized in stderr\n-note: requ...
2026-03-07T00:23:58
golang/go
bb1ca7ae81ea8ca49a2773ace8ccff8fbc7f4dfd
162392773085d4cc12072200853a0424117983c0
cmd/go, testing: add TB.ArtifactDir and -artifacts flag Add TB.ArtifactDir, which returns a directory for a test to store output files in. Add a -artifacts testflag which enables persistent storage of artifacts in the output directory (-outputdir, or the current directory by default). Fixes #71287 Change-Id: I5f6515...
[ { "path": "api/next/71287.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg testing, method (*B) ArtifactDir() string #71287\n+pkg testing, method (*F) ArtifactDir() string #71287\n+pkg testing, method (*T) ArtifactDir() string #71287\n+pkg testing, type TB interface, ArtifactDir() string #71287", "additions": 4, ...
2025-08-15T22:24:05
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
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
vercel/next.js
f5f2660cba878057be45c2ac5aadba5a4166b968
6bed4dc088f0c4a6acaf4d748907247e36ae198e
fix: support root span attributes with a custom server (#85521) <!-- 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": "packages/next/src/server/lib/trace/tracer.ts", "patch": "@@ -287,14 +287,18 @@ class NextTracerImpl implements NextTracer {\n let spanContext = this.getSpanContext(\n options?.parentSpan ?? this.getActiveScopeSpan()\n )\n- let isRootSpan = false\n \n if (!spanContext) {\n ...
2025-11-07T23:43:26
nodejs/node
fc054bbbb1005c924799c80b07eb0e7ed0278b99
102d8cff66550777bec7b0a750ae2203007f3749
doc: fix env variable name in `util.styleText` PR-URL: https://github.com/nodejs/node/pull/58072 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "doc/api/util.md", "patch": "@@ -2418,7 +2418,7 @@ changes:\n - v20.18.0\n pr-url: https://github.com/nodejs/node/pull/54389\n description: Respect isTTY and environment variables\n- such as NO_COLORS, NODE_DISABLE_COLORS, and FORCE_COLOR.\n+ such as NO_COLOR, NODE_DISABLE_CO...
2025-05-01T10:00:43
golang/go
a1661e776f57602b4d4470389a0246f9784fd722
cb81270113968408d7cc41c0b1530adb51dd8496
Revert "crypto/internal/fips140/subtle: add assembly implementation of xorBytes for mips64x" This reverts commit 49d6777d87a0abb3eda032da95eff024156835f7. Reason for revert: doesn't handle unaligned accesses correctly Fixes #74998 Change-Id: Ia272245a6a2a91b305d411207430bad660ee355b Reviewed-on: https://go-review.g...
[ { "path": "src/crypto/internal/fips140/subtle/xor_asm.go", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build (amd64 || arm64 || mips64 || mips64le || ppc64 || ppc64le || riscv64) && !purego\n+//go:build (amd6...
2025-10-07T17:15:43
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
rust-lang/rust
c465c7571a9c83cdb98dbb6311a6774accc8c14a
2d2c5521a2e2c592e587657dbe6277f19b56042d
Another unused feature fix
[ { "path": "example/mini_core.rs", "patch": "@@ -8,9 +8,9 @@\n rustc_attrs,\n transparent_unions,\n auto_traits,\n- freeze_impls,\n- thread_local\n+ freeze_impls\n )]\n+#![cfg_attr(not(all(windows, target_env = \"gnu\")), thread_local)]\n #![no_core]\n #![allow(dead_code, internal_featur...
2026-03-06T21:47:56
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
f7a68d3804efabd271f0338391858bc1e7e57422
463165699d874ef0ac7965fc5788fe1693eaae9a
archive/tar: set a limit on the size of GNU sparse file 1.0 regions Sparse files in tar archives contain only the non-zero components of the file. There are several different encodings for sparse files. When reading GNU tar pax 1.0 sparse files, archive/tar did not set a limit on the size of the sparse region data. A ...
[ { "path": "src/archive/tar/common.go", "patch": "@@ -39,6 +39,7 @@ var (\n \terrMissData = errors.New(\"archive/tar: sparse file references non-existent data\")\n \terrUnrefData = errors.New(\"archive/tar: sparse file contains unreferenced data\")\n \terrWriteHole = errors.New(\"archive/t...
2025-09-11T20:32:10
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
vercel/next.js
1752d79c59c7f36a3668323bdf6b7eb2ac2ff5b0
f09304af7c64c9bebd517151b2de97ec7252bcfd
fix: skip collecting metadata for app-error in webpack (#85892)
[ { "path": "packages/next/src/build/webpack/loaders/next-app-loader/index.ts", "patch": "@@ -38,6 +38,7 @@ import { PARALLEL_ROUTE_DEFAULT_PATH } from '../../../../client/components/built\n import type { Compilation } from 'webpack'\n import { createAppRouteCode } from './create-app-route-code'\n import { Mi...
2025-11-07T21:52:06
nodejs/node
a7cbb904745591c9a9d047a364c2c188e5470047
50cfc6ca63439ba09d058d0dca50a66389464588
lib: avoid StackOverflow on `serializeError` `serializeError` should avoid StackOverflow and the test should not rely on `--stack-size`. PR-URL: https://github.com/nodejs/node/pull/58075 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee Cheu...
[ { "path": "lib/internal/error_serdes.js", "patch": "@@ -36,6 +36,7 @@ const kSerializedObject = 1;\n const kInspectedError = 2;\n const kInspectedSymbol = 3;\n const kCustomInspectedObject = 4;\n+const kCircularReference = 5;\n \n const kSymbolStringLength = 'Symbol('.length;\n \n@@ -44,12 +45,12 @@ const e...
2025-04-29T21:12:29
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
golang/go
463165699d874ef0ac7965fc5788fe1693eaae9a
5ede095649db7783726c28390812bca9ce2c684a
net/mail: avoid quadratic behavior in mail address parsing RFC 5322 domain-literal parsing built the dtext value one character at a time with string concatenation, resulting in excessive resource consumption when parsing very large domain-literal values. Replace with a subslice. Benchmark not included in this CL bec...
[ { "path": "src/net/mail/message.go", "patch": "@@ -724,7 +724,8 @@ func (p *addrParser) consumeDomainLiteral() (string, error) {\n \t}\n \n \t// Parse the dtext\n-\tvar dtext string\n+\tdtext := p.s\n+\tdtextLen := 0\n \tfor {\n \t\tif p.empty() {\n \t\t\treturn \"\", errors.New(\"mail: unclosed domain-lite...
2025-09-25T21:41:53
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
vercel/next.js
db5528317e24e0316e0497716976a715a325ca09
326c6722bdeeec42ba81bf5c8392863ea69d862b
Turbopack: remove the streaming hack for improved stability (#85858) ### What? Remove the hack we use for streaming in turbo-tasks. We don't use the stream capability and the streaming hack causes some problems. fixes `Item already exists` error Closes https://github.com/vercel/next.js/issues/85833
[ { "path": "crates/next-core/src/next_font/google/mod.rs", "patch": "@@ -8,7 +8,6 @@ use rustc_hash::FxHashMap;\n use serde::{Deserialize, Serialize};\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{Completion, FxIndexMap, ResolvedVc, Vc};\n-use turbo_tasks_bytes::stream::SingleValue;\n use turbo_task...
2025-11-07T09:07:07
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
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
golang/go
5ede095649db7783726c28390812bca9ce2c684a
5ce8cd16f3859ec5ac4106ad8ec15d6236f4501b
net/textproto: avoid quadratic complexity in Reader.ReadResponse Reader.ReadResponse constructed a response string from repeated string concatenation, permitting a malicious sender to cause excessive memory allocation and CPU consumption by sending a response consisting of many short lines. Use a strings.Builder to c...
[ { "path": "src/net/textproto/reader.go", "patch": "@@ -285,8 +285,10 @@ func (r *Reader) ReadCodeLine(expectCode int) (code int, message string, err err\n //\n // An expectCode <= 0 disables the check of the status code.\n func (r *Reader) ReadResponse(expectCode int) (code int, message string, err error) {...
2025-09-30T22:11:16
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
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
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
golang/go
5ce8cd16f3859ec5ac4106ad8ec15d6236f4501b
f6f4e8b3ef21299db1ea3a343c3e55e91365a7fd
encoding/pem: make Decode complexity linear Because Decode scanned the input first for the first BEGIN line, and then the first END line, the complexity of Decode is quadratic. If the input contained a large number of BEGINs and then a single END right at the end of the input, we would find the first BEGIN, and then s...
[ { "path": "src/encoding/pem/pem.go", "patch": "@@ -37,7 +37,7 @@ type Block struct {\n // line bytes. The remainder of the byte array (also not including the new line\n // bytes) is also returned and this will always be smaller than the original\n // argument.\n-func getLine(data []byte) (line, rest []byte)...
2025-09-30T18:16:56
rust-lang/rust
65e7758f07a2d5b14c4be67e4bc8dd9281f76a2d
f5cc1871a6dd69744b0268dd36715b587e469a26
Fix syntax/fuzz build error
[ { "path": "src/tools/rust-analyzer/crates/syntax/fuzz/Cargo.toml", "patch": "@@ -23,6 +23,3 @@ path = \"fuzz_targets/parser.rs\"\n [[bin]]\n name = \"reparse\"\n path = \"fuzz_targets/reparse.rs\"\n-\n-[lints]\n-workspace = true", "additions": 0, "deletions": 3, "language": "Unknown" } ]
2026-03-06T18:35:35
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
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
rust-lang/rust
4e0b64408c4aee1066eefa6a80a56803a69467aa
e58ddb5ae575f13d5624cb6fb0a8324a806bc1c4
Fix newly detected subdiagnostics using variables from parent
[ { "path": "compiler/rustc_const_eval/src/check_consts/ops.rs", "patch": "@@ -265,6 +265,7 @@ fn build_error_for_const_call<'tcx>(\n }\n }\n CallKind::FnCall { fn_trait_id, self_ty } => {\n+ let kind = ccx.const_kind();\n let note = match self_ty.kind() {\n ...
2026-03-06T17:20:30
rust-lang/rust
e58ddb5ae575f13d5624cb6fb0a8324a806bc1c4
10eb844bac7551efc821a7f55b2e1715098ed26b
Fix `variable_references` logic to catch all variable references
[ { "path": "compiler/rustc_macros/src/diagnostics/message.rs", "patch": "@@ -64,26 +64,46 @@ fn verify_variables_used(msg_span: Span, message_str: &str, variant: Option<&Var\n \n fn variable_references<'a>(msg: &fluent_syntax::ast::Message<&'a str>) -> Vec<&'a str> {\n let mut refs = vec![];\n+\n if ...
2026-03-06T17:19:58
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
vercel/next.js
6434035f8de1d04b861cda660730d510d6e83d86
bfe26808bed729c494c8fa180ff0022b4dcf35f9
sort dependencies for smaller diffs (#82291) Fixes #82290 Co-authored-by: Steven <steven@ceriously.com>
[ { "path": "packages/create-next-app/templates/index.ts", "patch": "@@ -15,6 +15,15 @@ import { Bundler, GetTemplateFileArgs, InstallTemplateArgs } from \"./types\";\n // Do not rename or format. sync-react script relies on this line.\n // prettier-ignore\n const nextjsReactPeerVersion = \"19.2.0\";\n+functi...
2025-11-06T14:44:34
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
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
golang/go
f6f4e8b3ef21299db1ea3a343c3e55e91365a7fd
7dd54e1fd7f3a25fccbb5c6ab7066e2baad23e66
net/url: enforce stricter parsing of bracketed IPv6 hostnames - Previously, url.Parse did not enforce validation of hostnames within square brackets. - RFC 3986 stipulates that only IPv6 hostnames can be embedded within square brackets in a URL. - Now, the parsing logic should strictly enforce that only IPv6 hos...
[ { "path": "src/go/build/deps_test.go", "patch": "@@ -237,7 +237,6 @@ var depsRules = `\n \t internal/types/errors,\n \t mime/quotedprintable,\n \t net/internal/socktest,\n-\t net/url,\n \t runtime/trace,\n \t text/scanner,\n \t text/tabwriter;\n@@ -300,6 +299,12 @@ var depsRules = `\n \tFMT\n \t< tex...
2025-08-29T17:35:55
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
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
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
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
3ee761739b0cbb074f5a6e8b28b491664ec1414a
8709a41d5ef7321f486a1857f189c3fee20e8edd
runtime: free spanQueue on P destroy Span queues must be empty when destroying a P since we are outside of the mark phase. But we don't actually free them, so they simply sit around using memory. More importantly, they are still in work.spanSPMCs.all, so freeDeadSpanSPMCs must continue traversing past them until the e...
[ { "path": "src/runtime/mgcmark_greenteagc.go", "patch": "@@ -618,6 +618,40 @@ func (q *spanQueue) refill(r *spanSPMC) objptr {\n \treturn q.tryGetFast()\n }\n \n+// destroy frees all chains in an empty spanQueue.\n+//\n+// Preconditions:\n+// - World is stopped.\n+// - GC is outside of the mark phase.\n+// ...
2025-10-06T21:28:37
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
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
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
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
8709a41d5ef7321f486a1857f189c3fee20e8edd
9b9d02c5a015910ce57024788de2ff254c6cfca6
encoding/asn1: prevent memory exhaustion when parsing using internal/saferio Within parseSequenceOf, reflect.MakeSlice is being used to pre-allocate a slice that is needed in order to fully validate the given DER payload. The size of the slice allocated are also multiple times larger than the input DER: - When using ...
[ { "path": "src/encoding/asn1/asn1.go", "patch": "@@ -22,6 +22,7 @@ package asn1\n import (\n \t\"errors\"\n \t\"fmt\"\n+\t\"internal/saferio\"\n \t\"math\"\n \t\"math/big\"\n \t\"reflect\"\n@@ -666,10 +667,17 @@ func parseSequenceOf(bytes []byte, sliceType reflect.Type, elemType reflect.Type\n \t\toffset +=...
2025-09-03T13:30:56
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
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
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
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
golang/go
9b9d02c5a015910ce57024788de2ff254c6cfca6
3fc4c79fdbb17b9b29ea9f8c29dd780df075d4c4
net/http: add httpcookiemaxnum GODEBUG option to limit number of cookies parsed When handling HTTP headers, net/http does not currently limit the number of cookies that can be parsed. The only limitation that exists is for the size of the entire HTTP header, which is controlled by MaxHeaderBytes (defaults to 1 MB). U...
[ { "path": "doc/godebug.md", "patch": "@@ -153,6 +153,16 @@ for example,\n see the [runtime documentation](/pkg/runtime#hdr-Environment_Variables)\n and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n+### Go 1.26\n+\n+Go 1.26 added a new `httpcookiemaxnum` setting that controls the m...
2025-09-30T18:02:38
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
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
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
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
golang/go
3fc4c79fdbb17b9b29ea9f8c29dd780df075d4c4
6e4007e8cffbb870e6b606307ab7308236ecefb9
crypto/x509: improve domain name verification Don't use domainToReverseLabels to check if domain names are valid, since it is not particularly performant, and can contribute to DoS vectors. Instead just iterate over the name and enforce the properties we care about. This also enforces that DNS names, both in SANs and...
[ { "path": "src/crypto/x509/name_constraints_test.go", "patch": "@@ -1456,63 +1456,7 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\texpectedError: \"incompatible key usage\",\n \t},\n \n-\t// An invalid DNS SAN should be detected only at validation time so\n-\t// that we can process CA certificat...
2025-09-15T20:31:22
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
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
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
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
golang/go
6e4007e8cffbb870e6b606307ab7308236ecefb9
6f7926589d03180863aa05cbb55a9d9c63e76b99
crypto/x509: mitigate DoS vector when intermediate certificate contains DSA public key An attacker could craft an intermediate X.509 certificate containing a DSA public key and can crash a remote host with an unauthenticated call to any endpoint that verifies the certificate chain. Thank you to Jakub Ciolek for repor...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -927,7 +927,10 @@ func alreadyInChain(candidate *Certificate, chain []*Certificate) bool {\n \t\tif !bytes.Equal(candidate.RawSubject, cert.RawSubject) {\n \t\t\tcontinue\n \t\t}\n-\t\tif !candidate.PublicKey.(pubKeyEqual).Equal(cert.PublicKey) {\n+\t\t// ...
2025-09-11T20:27:04
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
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
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
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
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
golang/go
11d5484190f80823c9b6312fd40f6491e864111b
2e52060084ff170097347457525f0debde91aea9
runtime: fix self-deadlock on sbrk platforms The sbrk mem.go implementation doesn't enforce being called on the systemstack, but it can call back into itself if there's a stack growth. Because the sbrk implementation requires acquiring memlock, it can self-deadlock. For the most part the mem.go API is called on the s...
[ { "path": "src/runtime/mem_sbrk.go", "patch": "@@ -48,13 +48,32 @@ type memHdrPtr uintptr\n func (p memHdrPtr) ptr() *memHdr { return (*memHdr)(unsafe.Pointer(p)) }\n func (p *memHdrPtr) set(x *memHdr) { *p = memHdrPtr(unsafe.Pointer(x)) }\n \n+// memAlloc allocates n bytes from the brk reservation, or if...
2025-10-07T16:10:19
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
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
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
golang/go
f86ddb54b5b8e4cb30b8fe2f9f3a2c0c172e7c37
c938051dd0b80a5c60572d6807270d06ca685d2e
cmd/go: refactor usage of `ForceUseModules` This commit refactors usage of the global variable `ForceUseModules` to the global LoaderState field of the same name. This commit is part of the overall effort to eliminate global modloader state. [git-generate] cd src/cmd/go/internal/modload rf 'mv State.forceUseModules ...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -3348,7 +3348,7 @@ func GoFilesPackage(ctx context.Context, opts PackageOpts, gofiles []string) *Pa\n // would cause it to be interpreted differently if it were the main module\n // (replace, exclude).\n func PackagesAndErrorsOutsideModule(ctx contex...
2025-08-20T23:21:56
electron/electron
fff6ea438ac99cfec9818e961faf5c8a87787f91
3e77faf2f75f1cade24f3a9e7f8388d7a2c32013
fix: software compositing infinite loop (#44318) Co-authored-by: Keeley Hammond <vertedinde@electronjs.org>
[ { "path": "patches/chromium/.patches", "patch": "@@ -132,4 +132,5 @@ build_expose_webplugininfo_interface_to_electron.patch\n osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch\n feat_allow_usage_of_sccontentsharingpicker_on_supported_platforms.patch\n chore_partial_revert_of.patch\n+fix_software_compo...
2024-10-21T22:56:03
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
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