repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
facebook/react
9c6806964f453cb5e8a530881dcc9f33480e7388
572ded3762fa7332e2d062e4373369cd7008b7b0
Add regression test for #30172 (#30198) The issue reported in #30172 was fixed with #29823. The PR also added the test [`should resolve deduped objects that are themselves blocked`](https://github.com/facebook/react/blob/6d2a97a7113dfac2ad45067001b7e49a98718324/packages/react-server-dom-webpack/src/__tests__/ReactFl...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMBrowser-test.js", "patch": "@@ -392,6 +392,70 @@ describe('ReactFlightDOMBrowser', () => {\n expect(container.innerHTML).toBe('<div><span>12345</span>12345</div>');\n });\n \n+ it('should resolve deduped objects in nested childr...
2024-07-03T11:10:23
electron/electron
9b0409f7c91b1dd8e1554f8428972c1b0f171766
0725f5c5cf8bb7abef5920b3bd92f8e9fee0c32d
chore: bump chromium to 126.0.6445.0 (main) (#41868) * chore: bump chromium in DEPS to 125.0.6421.0 * chore: bump chromium in DEPS to 125.0.6422.0 * Add ENABLE_BASE_TRACING flags for compatibility with enable_base_tracing = false on Windows https://chromium-review.googlesource.com/c/chromium/src/+/5434658 ...
[ { "path": "BUILD.gn", "patch": "@@ -658,6 +658,7 @@ source_set(\"electron_lib\") {\n libs += [ \"dwmapi.lib\" ]\n sources += [ \"shell/common/asar/archive_win.cc\" ]\n deps += [\n+ \"//components/app_launch_prefetch\",\n \"//components/crash/core/app:crash_export_thunks\",\n \"/...
2024-05-10T15:21:10
vercel/next.js
237f142860d77b5cd1fd7e474176bf87dac11958
5b5d9b14e993790d98aa4c3a43f90cb964355496
Turbopack: run tests with multiple threads (#84074) These tests were broken ``` ➜ next.js-other git:(mischnic/parallelize-merged-module-info) UPDATE=1 cargo nextest run -p turbopack-tests -E 'test(test_tests__execution__turbopack__basic__esm_this__input__index_js)' --no-capture Finished `test` profile [unoptim...
[ { "path": "turbopack/crates/turbopack-tests/tests/execution.rs", "patch": "@@ -161,7 +161,7 @@ fn get_messages(js_results: JsResult) -> Vec<String> {\n messages\n }\n \n-#[tokio::main(flavor = \"current_thread\")]\n+#[tokio::main(flavor = \"multi_thread\", worker_threads = 2)]\n async fn run(resource: P...
2025-09-22T13:18:09
nodejs/node
75b9c1cdd844c108d6c420093ad96289b16f95ec
8c19a5c8858dd84de1e6ec0422d48c1351106890
test: remove test-macos-app-sandbox flaky designation Fixes: https://github.com/nodejs/node/issues/54811 Refs: https://github.com/nodejs/node/issues/54811#issuecomment-2334463112 PR-URL: https://github.com/nodejs/node/pull/56471 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gma...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -44,8 +44,6 @@ test-runner-watch-mode: PASS,FLAKY\n # https://github.com/nodejs/node/issues/42741\n test-http-server-headers-timeout-keepalive: PASS,FLAKY\n test-http-server-request-timeout-keepalive: PASS,FLAKY\n-# https://github.com/nodejs/node/issue...
2025-01-07T16:32:02
facebook/react
572ded3762fa7332e2d062e4373369cd7008b7b0
3db98c917701d59f62cf1fbe45cbf01b0b61c704
React DevTools 5.3.0 -> 5.3.1 (#30199) ## Summary Full list of changes, mostly fixes: * chore[react-devtools/renderer]: dont show strict mode warning for prod renderer builds ([hoxyq](https://github.com/hoxyq) in [#30158](https://github.com/facebook/react/pull/30158)) * chore[react-devtools/ui]: fix strict mode...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.3.0\",\n+ \"version\": \"5.3.1\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2024-07-03T10:46:46
vercel/next.js
5b5d9b14e993790d98aa4c3a43f90cb964355496
af9298cc38e98615f8a22295c2cfc5ad362ab416
Turbopack: fix test case and update project_update to turbo_tasks::run too (#83978) ### What? Changing an env var that is used in an RSC doesn't lead to HMR updates. It only refetches the RSC stream and no compilation happens at all since the env var is consumed only at runtime. This test did pass before as the `run...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -455,13 +455,13 @@ pub fn project_new(\n \n let options: ProjectOptions = options.into();\n let container = turbo_tasks\n- .run_once(async move {\n+ .run(async move {\n let project = ProjectCo...
2025-09-22T12:20:33
golang/go
084c0f849467d5e45b7242cda3dd957352e86b8f
a62f72f7a7ee606c803d1c68cadd24e45eea5e83
cmd/compile: allow InlMark operations to be speculatively executed Although InlMark takes a memory argument it ultimately becomes a NOP and therefore is safe to speculatively execute. Fixes #74915 Change-Id: I64317dd433e300ac28de2bcf201845083ec2ac82 Reviewed-on: https://go-review.googlesource.com/c/go/+/693795 LUCI-...
[ { "path": "src/cmd/compile/internal/ssa/branchelim.go", "patch": "@@ -436,8 +436,15 @@ func canSpeculativelyExecute(b *Block) bool {\n \t// don't fuse memory ops, Phi ops, divides (can panic),\n \t// or anything else with side-effects\n \tfor _, v := range b.Values {\n-\t\tif v.Op == OpPhi || isDivMod(v.Op)...
2025-08-06T21:43:05
electron/electron
3bd807b03e7c0f4c5dd14ee0ac88f56585ab4ba7
e2acdffe58ad9b622ca1fd983348bf4ce26f9379
fix: View reordering on re-addition to same parent (#42085)
[ { "path": "docs/api/view.md", "patch": "@@ -48,6 +48,9 @@ Objects created with `new View` have the following instance methods:\n * `index` Integer (optional) - Index at which to insert the child view.\n Defaults to adding the child at the end of the child list.\n \n+If the same View is added to a parent w...
2024-05-10T08:16:33
nodejs/node
8c19a5c8858dd84de1e6ec0422d48c1351106890
52c644966d78503d63fca3b50b041bce429c8c84
tools: fix loong64 build failed PR-URL: https://github.com/nodejs/node/pull/56466 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/v8_gypfiles/v8.gyp", "patch": "@@ -1230,6 +1230,11 @@\n '<(V8_ROOT)/src/trap-handler/handler-outside-posix.cc',\n ],\n }],\n+ ['(_toolset==\"host\" and host_arch==\"x64\" or _toolset==\"target\" and target_arch==\"x64\") a...
2025-01-07T16:31:45
rust-lang/rust
b9614b2dc2f0baa65469b28b88077f9775e88d13
d8b2222b11fc03a31d43707c8c9006f025809ece
Fix relative path handling for --extern-html-root-url
[ { "path": "src/librustdoc/clean/types.rs", "patch": "@@ -203,7 +203,14 @@ impl ExternalCrate {\n if !url.ends_with('/') {\n url.push('/');\n }\n- Remote(url)\n+ let is_absolute = url.starts_with('/')\n+ || url.split_once(\"://\").i...
2026-02-23T13:09:08
facebook/react
3db98c917701d59f62cf1fbe45cbf01b0b61c704
cfb8945f511add040e1d5427d9961337f98f7618
[Fizz] Track Current debugTask and run it for onError Callbacks (#30182) Stacked on #30174. This tracks the current debugTask on the Task so that when an error is thrown we can use it to run the `onError` (and `onShellError` and `onFatalError`) callbacks within the Context of that task. Ideally it would be assoc...
[ { "path": "packages/react-server/src/ReactFizzServer.js", "patch": "@@ -250,6 +250,7 @@ type RenderTask = {\n thenableState: null | ThenableState,\n isFallback: boolean, // whether this task is rendering inside a fallback tree\n legacyContext: LegacyContext, // the current legacy context that this tas...
2024-07-02T23:46:18
electron/electron
865b0499bbdd918708b6b1b66fcabf07d3d2fdbb
6675f3ae65b8cba5da13242a72cb3dca6cdc4738
refactor: use `//ui/shell_dialogs` on Linux (#42045) * refactor: use //ui/shell_dialogs on Linux * fix: add proper filtering * fix: add support for missing dialog features to //shell_dialogs * fix: parent_window could be null * chore: cleanup patch * fix: use a OnceCallback in the sync implementation ...
[ { "path": "BUILD.gn", "patch": "@@ -81,18 +81,11 @@ if (is_linux) {\n ]\n }\n \n- # Generates electron_gtk_stubs.h header which contains\n- # stubs for extracting function ptrs from the gtk library.\n- # Function signatures for which stubs are required should be\n- # declared in electron_gtk.sigs,...
2024-05-09T13:51:42
vercel/next.js
af9298cc38e98615f8a22295c2cfc5ad362ab416
2d96b9660fe8ef9be1e7dd3ef27048d083f15147
Fix TypeScript type error in example code (#84041) Without the `| null`, the following error appears during compilation: ``` TS2322: Type RefObject<HTMLDivElement | null> is not assignable to type RefObject<HTMLDivElement> Type HTMLDivElement | null is not assignable to type HTMLDivElement Type null is not assignable ...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/error.mdx", "patch": "@@ -219,7 +219,7 @@ export class GracefullyDegradingErrorBoundary extends Component<\n ErrorBoundaryProps,\n ErrorBoundaryState\n > {\n- private contentRef: React.RefObject<HTMLDivElement>\n+ private contentRef: React.Re...
2025-09-22T11:29:45
rust-lang/rust
262744eb36c8e5621fcd2b3145c33a2f31c8044c
59fd4ef94daa991e6797b5aa6127e824f3067def
Enable rust.remap-debuginfo in the dist profile Anyone who distributes rustc almost certainly wants to enable this option. It is necessary for reproducibility and for a distributed rustc local paths are useless anyway. And finally it improves privacy if you distribute a local build.
[ { "path": "src/bootstrap/defaults/bootstrap.dist.toml", "patch": "@@ -24,6 +24,8 @@ channel = \"auto-detect\"\n download-rustc = false\n # Build the llvm-bitcode-linker\n llvm-bitcode-linker = true\n+# Required to make builds reproducible.\n+remap-debuginfo = true\n \n [dist]\n # Use better compression when...
2026-02-20T13:27:06
golang/go
bce5601cbbb1a3a33ecdb13b796033e44931a3da
777d76c4f2392b782418a867172e7e951c0278f8
cmd/go: fix fips doc link Change-Id: I8f06ebd65ba9961e19274c1e5fec251b18395d1c Reviewed-on: https://go-review.googlesource.com/c/go/+/691435 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-s...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2527,7 +2527,7 @@\n //\t\tThe default is GOFIPS140=off, which makes no FIPS-140 changes at all.\n //\t\tOther values enable FIPS-140 compliance measures and select alternate\n //\t\tversions of the cryptography source code.\n-//\t\tSee https://go.dev/security...
2025-07-29T16:19:51
nodejs/node
7895b8eae9e4f2919028fe81e38790af07b4cc92
984a4721375afa6cb3c3ec12876126a2587d5f7d
test: update error code in tls-psk-circuit for for OpenSSL 3.4 Update parallel/test-tls-psk-circuit.js to account for error code changes in OpenSSL 3.4 and probably later. Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc> PR-URL: https://github.com/nodejs/node/pull/56420 Reviewed-By: Luigi Pinca <lui...
[ { "path": "test/parallel/test-tls-psk-circuit.js", "patch": "@@ -66,7 +66,8 @@ const expectedHandshakeErr = common.hasOpenSSL(3, 2) ?\n 'ERR_SSL_SSL/TLS_ALERT_HANDSHAKE_FAILURE' : 'ERR_SSL_SSLV3_ALERT_HANDSHAKE_FAILURE';\n test({ psk: USERS.UserB, identity: 'UserC' }, {}, expectedHandshakeErr);\n // Recog...
2025-01-06T15:58:13
facebook/react
cfb8945f511add040e1d5427d9961337f98f7618
309e146193c7b84d1c7a60d1a2ab2d6c836ba515
[Fizz] Implement debugInfo (#30174) Stacked on #30170. This lets us track Server Component parent stacks in Fizz which also lets us track the correct owner stack for lazy. In Fiber we're careful not to make any DEV only fibers but since the ReactFizzComponentStack data structures just exist for debug meta data...
[ { "path": "packages/react-html/src/__tests__/ReactHTMLServer-test.js", "patch": "@@ -244,17 +244,19 @@ if (!__EXPERIMENTAL__) {\n expect(caughtErrors.length).toBe(1);\n expect(caughtErrors[0].error).toBe(thrownError);\n expect(normalizeCodeLocInfo(caughtErrors[0].parentStack)).toBe(\n- ...
2024-07-02T22:26:32
electron/electron
6675f3ae65b8cba5da13242a72cb3dca6cdc4738
731bc7a334565b67b0f75b8b713bfb55db12e67a
fix: CHECK when adding view as its own child (#42067)
[ { "path": "shell/browser/api/electron_api_view.cc", "patch": "@@ -189,6 +189,14 @@ void View::AddChildViewAt(gin::Handle<View> child,\n // has a View, possibly a wrapper view around the underlying platform View.\n if (!view_)\n return;\n+\n+ // This will CHECK and crash in View::AddChildViewAtImpl ...
2024-05-09T13:47:47
golang/go
dcc77f9e3c7097b497e99800a7a4ed80c7a430d8
c7b85e9ddc1e23f84ccb3c5de8fdb55e80a9dd69
cmd/go: fix get -tool when multiple packages are provided Fixes #74035 Change-Id: I51865f4f753aade9a8be62ed6f9bc2d298742bf1 Reviewed-on: https://go-review.googlesource.com/c/go/+/679975 Reviewed-by: Ian Alexander <jitsu@google.com> Reviewed-by: Michael Matloob <matloob@google.com> Reviewed-by: Michael Matloob <matloo...
[ { "path": "src/cmd/go/internal/modget/get.go", "patch": "@@ -453,7 +453,7 @@ func updateTools(ctx context.Context, queries []*query, opts *modload.WriteOpts)\n \t\tif queries[i].version == \"none\" {\n \t\t\topts.DropTools = append(opts.DropTools, m.Pkgs...)\n \t\t} else {\n-\t\t\topts.AddTools = append(opt...
2025-06-07T19:28:20
vercel/next.js
2d96b9660fe8ef9be1e7dd3ef27048d083f15147
9d73c864037f3e90234c23ce2863f8311588a70e
docs: add pageExtensions note to Middleware and clarify default filename (#84045) - Added a Note to the Middleware docs explaining that when `pageExtensions` are customized (e.g. `.page.ts`), the Middleware file should be named `middleware.page.ts` or `middleware.page.js`. - Updated wording so `middleware.ts/js` is de...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx", "patch": "@@ -20,6 +20,8 @@ Middleware executes before routes are rendered. It's particularly useful for imp\n \n Create a `middleware.ts` (or `.js`) file in the project root, or inside `src` if applicable, so that it is located at...
2025-09-22T09:24:57
nodejs/node
08b7d38aa46392f15cd28f283be3f92c174f0cb6
383e1a281b6b979ede9d2ee46781643971da104b
sqlite: support TypedArray and DataView in `StatementSync` Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com> PR-URL: https://github.com/nodejs/node/pull/56385 Fixes: https://github.com/nodejs/node/issues/56384 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Rev...
[ { "path": "doc/api/sqlite.md", "patch": "@@ -339,11 +339,15 @@ over hand-crafted SQL strings when handling user input.\n \n <!-- YAML\n added: v22.5.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/56385\n+ description: Add support for `DataView` and typed array obj...
2025-01-05T11:18:36
facebook/react
309e146193c7b84d1c7a60d1a2ab2d6c836ba515
e60063d9e7d346e92a5af42975a2fe7dd306f86f
Implement onError signature for renderToMarkup (#30170) Stacked on #30132. This way we can get parent and owner stacks from the error. This forces us to confront multiple errors and whether or not a Flight error that ends up being unobservable needs to really reject the render. This implements stashing of Fl...
[ { "path": "packages/react-html/src/ReactHTMLClient.js", "patch": "@@ -8,6 +8,7 @@\n */\n \n import type {ReactNodeList} from 'shared/ReactTypes';\n+import type {ErrorInfo} from 'react-server/src/ReactFizzServer';\n \n import ReactVersion from 'shared/ReactVersion';\n \n@@ -27,6 +28,7 @@ import {\n type Mar...
2024-07-02T20:31:35
electron/electron
731bc7a334565b67b0f75b8b713bfb55db12e67a
793276ac87ec4b68af4149c1275b20e753b90e8e
fix: `BrowserWindow.center()` should center relative to screen (#42048)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -39,6 +39,7 @@\n #include \"shell/common/options_switches.h\"\n #include \"ui/aura/window_tree_host.h\"\n #include \"ui/base/hit_test.h\"\n+#include \"ui/display/screen.h\"\n #include \"ui/gfx/image/image.h\"\n #include \"ui/gfx/native_widget_ty...
2024-05-08T22:42:20
golang/go
a8dd771e132beb8e4b2354f209cbb29b9f4fc815
bdb2d50fdf40706e7d7411f33ade80edac726707
crypto/tls: check if quic conn can send session ticket On SendSessionTicket, returns nil if SessionTicketsDisabled is disabled in config. Fixes #62032 Change-Id: Id0c89e2e6fb0805bbf108bb0cafdabdfbaf3897f Reviewed-on: https://go-review.googlesource.com/c/go/+/528755 Reviewed-by: Roland Shoemaker <roland@golang.org> R...
[ { "path": "src/crypto/tls/quic.go", "patch": "@@ -302,6 +302,9 @@ type QUICSessionTicketOptions struct {\n // Currently, it can only be called once.\n func (q *QUICConn) SendSessionTicket(opts QUICSessionTicketOptions) error {\n \tc := q.conn\n+\tif c.config.SessionTicketsDisabled {\n+\t\treturn nil\n+\t}\n...
2023-09-15T18:23:51
nodejs/node
338d70b752fd918ebd568f432373065e04539830
d0ff34f4b690ad49c86b6df8fd424f39d183e1a6
sqlite: enable SQL math functions This commit enables SQLite math functions. Fixes: https://github.com/nodejs/node/issues/56435 PR-URL: https://github.com/nodejs/node/pull/56447 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail...
[ { "path": "deps/sqlite/sqlite.gyp", "patch": "@@ -13,6 +13,7 @@\n 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden\n },\n 'defines': [\n+ 'SQLITE_ENABLE_MATH_FUNCTIONS',\n 'SQLITE_ENABLE_SESSION',\n 'SQLITE_ENABLE_PREUPDATE_HOOK'\n ],", "additi...
2025-01-05T05:35:54
vercel/next.js
52ac89f608d02db8e00cb35849f56c1d0d7b3969
d608590ced4f592c9939c841b9814c121bb6b20d
[turbopack] Consolodate logic for visiting functions to simplify state management (#82763) Introduce a new helper function `enter_fn` in the analyzer to ensure state like `cur_fn_id` is consistently updated. Follow the existing pattern of moving the state into a private module to control access. Leverage the early r...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -286,8 +286,6 @@ pub fn create_graph(m: &Program, eval_context: &EvalContext, is_tracing: bool) -\n hoisted_effects: Default::default(),\n early_return_stack: Default::default(),\n var_d...
2025-09-22T02:03:35
facebook/react
e60063d9e7d346e92a5af42975a2fe7dd306f86f
6d2a97a7113dfac2ad45067001b7e49a98718324
[Fizz] Include a component stack in prod but only lazily generate it (#30132) When we added component stacks to Fizz in prod it severely slowed down common cases where you intentionally are throwing error for purposes of client rendering. Our parent component stack generation is very slow since call components with...
[ { "path": "packages/react-server/src/ReactFizzServer.js", "patch": "@@ -908,27 +908,23 @@ type ThrownInfo = {\n export type ErrorInfo = ThrownInfo;\n export type PostponeInfo = ThrownInfo;\n \n-// While we track component stacks in prod all the time we only produce a reified stack in dev and\n-// during pre...
2024-07-02T20:05:20
electron/electron
8cfc4b9d50cde472d5bcca3d55f1630b86f86fe4
c3c41733770c1b4662e2321868e621a78a77d54e
ci: keep GitHub Actions up to date with GitHub's Dependabot (#42042) * Keep GitHub Actions up to date with GitHub's Dependabot Fixes software supply chain safety warnings like at the bottom right of https://github.com/electron/electron/actions/runs/8619491231 * [Keeping your actions up to date with Dependabot](...
[ { "path": ".github/dependabot.yml", "patch": "@@ -0,0 +1,9 @@\n+# Keep GitHub Actions up to date with GitHub's Dependabot...\n+# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot\n+# https://docs.github.com/en/code-security/dependabot...
2024-05-07T23:25:46
golang/go
bdb2d50fdf40706e7d7411f33ade80edac726707
768c51e368e05739854c1413fdf7fd129d01e482
net: fix WriteMsgUDPAddrPort addr handling on IPv4 sockets Accept IPv4-mapped IPv6 destination addresses on IPv4 UDP sockets. Fixes #74737. Change-Id: I4624b9b8f861aedcae29e51d5298d23ce1c0f2c7 Reviewed-on: https://go-review.googlesource.com/c/go/+/689976 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun...
[ { "path": "src/net/ipsock_posix.go", "patch": "@@ -237,8 +237,12 @@ func ipToSockaddr(family int, ip IP, port int, zone string) (syscall.Sockaddr, e\n func addrPortToSockaddrInet4(ap netip.AddrPort) (syscall.SockaddrInet4, error) {\n \t// ipToSockaddrInet4 has special handling here for zero length slices.\n...
2025-07-25T07:14:16
nodejs/node
4a7b8157b5585cb62e77e9e3c66d6af3aaf3a448
7e08ccad17d95d866ca1177b6cc5711a6e8fea8d
test_runner: add assert.register() API This commit adds a top level assert.register() API to the test runner. This function allows users to define their own custom assertion functions on the TestContext. Fixes: https://github.com/nodejs/node/issues/52033 PR-URL: https://github.com/nodejs/node/pull/56434 Reviewed-By: ...
[ { "path": "doc/api/test.md", "patch": "@@ -1750,6 +1750,29 @@ describe('tests', async () => {\n });\n ```\n \n+## `assert`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+An object whose methods are used to configure available assertions on the\n+`TestContext` objects in the current process. The methods from `...
2025-01-04T18:30:04
vercel/next.js
a520dc9241c8a07f54b8eaf97119e6db7cc31e15
6a40da0345939fe4f7b1ae519b296a86dd103432
fix: worker logs should still support color (#84024) Logs emitted from the static export worker lost their ANSI colors because the worker process starts with piped stdio, so picocolors disables coloring. Most terminal-color helpers treat ANSI styling as a TTY-only feature. At module load it checks process.stdout.isTTY...
[ { "path": "packages/next/src/lib/worker.test.ts", "patch": "@@ -0,0 +1,127 @@\n+import { PassThrough } from 'stream'\n+\n+let latestForkEnv: NodeJS.ProcessEnv | undefined\n+\n+jest.mock('next/dist/compiled/jest-worker', () => {\n+ const WorkerMock = jest.fn().mockImplementation((_path, options) => {\n+ ...
2025-09-20T18:42:47
electron/electron
d5c8f2d6d9d3029c4fe2daa42b6314e417cfbbc6
5b60698dea0830c8b82d154578afb5e29e83d7df
fix: avoid crash after upgrade on Linux (#41046)
[ { "path": "shell/browser/electron_browser_client.cc", "patch": "@@ -456,7 +456,15 @@ void ElectronBrowserClient::AppendExtraCommandLineSwitches(\n base::CommandLine* command_line,\n int process_id) {\n // Make sure we're about to launch a known executable\n+#if BUILDFLAG(IS_LINUX)\n+ // On Linux,...
2024-05-07T14:04:50
facebook/react
315109b02b0c9460b7466ca88f3f4d6ed1215a21
ad59ddf272dad17203561ceab7ea813c3e49d831
[Fizz] Enable owner stacks for SSR (#30152) Stacked on #30142. This tracks owners and their stacks in DEV in Fizz. We use the ComponentStackNode as the data structure to track this information - effectively like ReactComponentInfo (Server) or Fiber (Client). They're the instance. I then port them same logic f...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -1766,9 +1766,9 @@ describe('ReactDOMFizzServer', () => {\n // Intentionally trigger a key warning here.\n return (\n <div>\n- {children.map(t => (\n- <span>{t}</span>\n- ))...
2024-07-01T14:27:52
golang/go
94d72355f662a1c8229db661cc068ea8e901641c
8eb5f6020e707672a846f0f83011b87e48039550
[dev.simd] simd: add emulations for bitwise ops and for mask/merge methods This CL adds the emulations under a "wrong name"; subsequent CLs will move the AVX512 versions of these operations out of the way, and then will rename these to their better names. Change-Id: I49e7a73e4fea74fb7bd26cb8062014568d7999ca Reviewed-...
[ { "path": "src/simd/genfiles.go", "patch": "@@ -50,13 +50,20 @@ var convert32Shapes = &shapes{\n \tfloats: []int{32},\n }\n \n-var avx512MaskedLoadShapes = &shapes{\n+var avx512Shapes = &shapes{\n \tvecs: []int{512},\n \tints: []int{8, 16, 32, 64},\n \tuints: []int{8, 16, 32, 64},\n \tfloats: []int{32,...
2025-07-30T21:42:10
nodejs/node
804d41f9c73c03e670d8e788d14a2237c8c2a057
01554f316c8647e1f893338f822b1116a937473d
tools: disable unneeded rule ignoring in Python linting Removing PLC1901 and RUF100 from the list of Python lint rules to ignore does not result in any errors. Keeping the ignore list as short as possible seems like a good idea, so this change removes them from the ignore list. PR-URL: https://github.com/nodejs/node/...
[ { "path": "pyproject.toml", "patch": "@@ -33,9 +33,7 @@ ignore = [\n \"E401\",\n \"E402\",\n \"E7\",\n- \"PLC1901\",\n \"RUF005\",\n- \"RUF100\",\n ]\n \n [tool.ruff.lint.mccabe]", "additions": 0, "deletions": 2, "language": "Unknown" } ]
2025-01-03T23:12:08
vercel/next.js
6a40da0345939fe4f7b1ae519b296a86dd103432
62f39136c4acafe505dc8a9e412fc705a95c0d65
[Turbopack] Fix AST traversal for `this` in function default parameters (#83746)
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -2075,6 +2075,7 @@ impl VisitAstPath for Analyzer<'_> {\n | AstParentKind::ClassDecl(ClassDeclField::Class)\n | AstParentKind::ClassExpr(ClassExprField::Class)\n ...
2025-09-20T08:31:29
electron/electron
5b60698dea0830c8b82d154578afb5e29e83d7df
05631ec4453fd46f61be37177bfa9f9bf02c5a2d
docs: fix lint command (#42028)
[ { "path": "docs/development/coding-style.md", "patch": "@@ -41,7 +41,7 @@ etc.\n \n * Write [remark](https://github.com/remarkjs/remark) markdown style.\n \n-You can run `npm run lint-docs` to ensure that your documentation changes are\n+You can run `npm run lint:docs` to ensure that your documentation chan...
2024-05-04T13:48:08
facebook/react
ad59ddf272dad17203561ceab7ea813c3e49d831
e6783e7cc94bceb5bba92b79ff71f44f630e1c00
chore[react-devtools/ui]: fix strict mode badge styles (#30159) ## Summary Just a minor UI fix to strict mode badge layout and component name text overflow ## How did you test this change? | Before | After | | --- | --- | | ![Screenshot 2024-06-30 at 23 35 19](https://github.com/facebook/react/assets/289026...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElement.css", "patch": "@@ -45,12 +45,13 @@\n .SelectedComponentName {\n flex: 1 1 auto;\n overflow: hidden;\n- text-overflow: ellipsis;\n- line-height: normal;\n+ display: flex;\n+ padding: 0.25rem 0;\n+ height: 100%;...
2024-07-01T14:27:15
nodejs/node
c5aa8b8ef11e5e593a193454fc4ffd642b48e137
19d58c5181e0a7d9a039a1a36163f29c499407d5
node-api: define version 10 Notable runtime changes to existing APIs: - returning `node_api_cannot_run_js` instead of `napi_pending_exception`. - allow creating references to objects, functions, and symbols. PR-URL: https://github.com/nodejs/node/pull/55676 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed...
[ { "path": "doc/api/n-api.md", "patch": "@@ -1748,7 +1748,7 @@ will not be freed. This can be avoided by calling\n \n **Change History:**\n \n-* Experimental (`NAPI_EXPERIMENTAL` is defined):\n+* Version 10 (`NAPI_VERSION` is defined as `10` or higher):\n \n References can be created for all value types. T...
2024-12-31T16:29:50
golang/go
b3388569a187ea6be48caa41265f2b4dbc2fdfd3
d83b16fcb8de765f25cabbea63284406ea6dd091
reflect: handle zero-sized fields of directly-stored structures correctly type W struct { E struct{} X *byte } type W is a "direct" type. That is, it is a pointer-ish type that can be stored directly as the second word of an interface. But if we ask reflect for W's first field, that value must *not* be direct, as ...
[ { "path": "src/reflect/value.go", "patch": "@@ -1277,6 +1277,17 @@ func (v Value) Field(i int) Value {\n \t\t\tfl |= flagStickyRO\n \t\t}\n \t}\n+\tif fl&flagIndir == 0 && typ.Size() == 0 {\n+\t\t// Special case for picking a field out of a direct struct.\n+\t\t// A direct struct must have a pointer field a...
2025-08-07T22:30:54
electron/electron
05631ec4453fd46f61be37177bfa9f9bf02c5a2d
36310b87297930b92e749c89caca4a4d00410093
chore: disable tests that require nut.js (#42006) * chore: disable tests that require nut.js * fixup! chore: disable tests that require nut.js
[ { "path": "spec/api-browser-window-spec.ts", "patch": "@@ -6596,6 +6596,7 @@ describe('BrowserWindow module', () => {\n afterEach(closeAllWindows);\n \n ifit(hasCapturableScreen())('should allow the window to be dragged when enabled', async () => {\n+ // FIXME: nut-js has been removed from npm;...
2024-05-01T01:13:38
facebook/react
b20d2327d634a1f102926859512b8667e2870741
d6b1c488d41c1d69e099d5f15e6d3c0b38cc19b7
Update `react-refresh-webpack-plugin` in Flight fixture (#30156)
[ { "path": "fixtures/flight/package.json", "patch": "@@ -10,7 +10,7 @@\n \"@babel/core\": \"^7.16.0\",\n \"@babel/plugin-proposal-private-property-in-object\": \"^7.18.6\",\n \"@babel/preset-react\": \"^7.22.5\",\n- \"@pmmmwh/react-refresh-webpack-plugin\": \"0.5.7\",\n+ \"@pmmmwh/react-ref...
2024-07-01T08:01:28
vercel/next.js
62f39136c4acafe505dc8a9e412fc705a95c0d65
3d466e5d1afdb4f8596d8003368558163b3b319c
[turbopack] cleanup analyzer (#83983) Remove `special_cases` a dead module Standardize spelling of `undefined` (and `NaN` and `Infinity`). These are all standard globals with primitive values that are better modeled as constants instead of FreeVars Don't emit FreeVar effects for these things and consolodate free va...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/builtin.rs", "patch": "@@ -1,7 +1,5 @@\n use std::mem::take;\n \n-use swc_core::ecma::atoms::atom;\n-\n use super::{ConstantNumber, ConstantValue, JsValue, LogicalOperator, LogicalProperty, ObjectPart};\n use crate::analyzer::JsValueUrlKind;\n \n...
2025-09-20T07:29:44
nodejs/node
19d58c5181e0a7d9a039a1a36163f29c499407d5
4afb0e235a0c3e8c35314abc15bf2f9c3c71fe88
module: fix async resolution error within the sync `findPackageJSON` PR-URL: https://github.com/nodejs/node/pull/56382 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
[ { "path": "doc/api/module.md", "patch": "@@ -81,13 +81,17 @@ added: v23.2.0\n * `base` {string|URL} The absolute location (`file:` URL string or FS path) of the\n containing module. For CJS, use `__filename` (not `__dirname`!); for ESM, use\n `import.meta.url`. You do not need to pass it if `specifier`...
2024-12-31T12:07:23
golang/go
f3606b0825c20e3f3ccdae00bb8d5d7d8dfd745e
ee7bb8969a62b12f466f818e4e3d836a2e126940
cmd/compile/internal/ssa: fix typo in LOONG64Ops.go comment Change-Id: I680bae7fc1a26c1f249ab833fa8d41e9387b2d50 Reviewed-on: https://go-review.googlesource.com/c/go/+/693456 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Re...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go", "patch": "@@ -589,7 +589,7 @@ func init() {\n \t\t{name: \"FPT\", controls: 1}, // FP flag is true\n \t\t{name: \"FPF\", controls: 1}, // FP flag is false\n \t\t{name: \"BEQ\", controls: 2}, // controls[0] == controls[1]\n-\t\t{name: \"BNE\", c...
2025-08-06T02:31:59
facebook/react
05cebffe16494367f38396a40a56db5866de96ab
2e72ea8401df491c1c6aa7af80419af8e21d8cc6
[prettier][eslint] Support sapling in prettier changed files command Summary: The listChangesFiles module didn't work under sapling; this fixes ghstack-source-id: 9f685de5e7550075369723b845104ac0e676ce95 Pull Request resolved: https://github.com/facebook/react/pull/30149
[ { "path": "scripts/shared/listChangedFiles.js", "patch": "@@ -19,14 +19,46 @@ const exec = (command, args) => {\n return execFileSync(command, args, options);\n };\n \n+const isGit = () => {\n+ try {\n+ const wt = execGitCmd(['rev-parse', '--is-inside-work-tree']);\n+ return wt.length > 0 && wt[0] ...
2024-06-30T21:22:22
electron/electron
36310b87297930b92e749c89caca4a4d00410093
f5fb44eaf81a7f632b920acb4735d4f31d366d3d
chore: fixup gn check when enable_pdf_viewer is false (#41990)
[ { "path": "shell/app/electron_content_client.cc", "patch": "@@ -39,8 +39,8 @@\n #endif // BUILDFLAG(ENABLE_WIDEVINE)\n \n #if BUILDFLAG(ENABLE_PDF_VIEWER)\n-#include \"components/pdf/common/constants.h\"\n-#include \"pdf/pdf.h\" // nogncheck\n+#include \"components/pdf/common/constants.h\" // nogncheck\n...
2024-05-01T00:32:11
vercel/next.js
0a81c72a87b6dd8e675f4019e4bfe0b3b62e70a0
7fb8bfe685a117ca87332ab5366efcda8fdbcb82
Turbopack: use depth as priority for merged module info (#83909) module_count: 63896 visit_count of the `traverse_edges_fixed_point_with_priority`: - before: 277.620 - with +depth: 1.250.882 - with -depth (this PR): 184.697
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/chunk_group_info.rs", "patch": "@@ -405,7 +405,8 @@ pub async fn compute_chunk_group_info(graph: &ModuleGraphRef) -> Result<Vc<Chunk\n \n // First, compute the depth for each module in the graph\n let module_depth: FxHashMap<Resolve...
2025-09-19T16:09:32
nodejs/node
91c6b8a38e6923bf2e36f120a3b5949fb2e10b86
7d7e2cec25f7da017e1596262a7907351de87e23
assert: make partialDeepStrictEqual throw when comparing [0] with [-0] Fixes: https://github.com/nodejs/node/issues/56230 PR-URL: https://github.com/nodejs/node/pull/56237 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Xuguang Mei <meixuguang@gmail.com> Review...
[ { "path": "lib/assert.js", "patch": "@@ -56,6 +56,7 @@ const {\n StringPrototypeIndexOf,\n StringPrototypeSlice,\n StringPrototypeSplit,\n+ Symbol,\n SymbolIterator,\n TypedArrayPrototypeGetLength,\n Uint8Array,\n@@ -497,6 +498,17 @@ function partiallyCompareSets(actual, expected, comparedObjec...
2024-12-12T10:54:48
golang/go
1f7ffca171cd8c50fe6a10eb77a84a95c5b37c61
8282b72d627269ed2c2f7db7ea744e109667d7b1
time: skip TestLongAdjustTimers on plan9 (too slow) The TestLongAdjustTimers test has been consistently timing out after 60 seconds on plan9-arm. Skip the test for plan9, as it is already skipped for being too slow on android and ios. Fixes #74921 Change-Id: Icc32e902cecd2e98971a898373fe8346b179437d Reviewed-on: htt...
[ { "path": "src/time/tick_test.go", "patch": "@@ -151,7 +151,7 @@ func TestTickerResetLtZeroDuration(t *testing.T) {\n }\n \n func TestLongAdjustTimers(t *testing.T) {\n-\tif runtime.GOOS == \"android\" || runtime.GOOS == \"ios\" {\n+\tif runtime.GOOS == \"android\" || runtime.GOOS == \"ios\" || runtime.GOOS...
2025-08-07T10:58:20
electron/electron
f5fb44eaf81a7f632b920acb4735d4f31d366d3d
441dbda833a53a5ab01732bb5080dcacc640f101
fix: `requestFullscreen` from `WebContentsView` (#41966) fix: requestFullscreen from WebContentsView
[ { "path": "shell/browser/api/electron_api_web_contents_view.cc", "patch": "@@ -89,6 +89,9 @@ void WebContentsView::OnViewAddedToWidget(views::View* observed_view) {\n widget->GetNativeWindowProperty(electron::kElectronNativeWindowKey));\n if (!native_window)\n return;\n+ // We don't need to cal...
2024-04-29T23:09:29
facebook/react
1e241f9d6c5f7d0e875b19a99c83cd6197fa62f7
b3aface19a17d78d190dd2883f6e4f9f719181d0
Add renderToMarkup for Client Components (#30121) Follow up to #30105. This supports `renderToMarkup` in a non-RSC environment (not the `react-server` condition). This is just a Fizz renderer but it errors at runtime when you use state, effects or event handlers that would require hydration - like the RSC ver...
[ { "path": "packages/react-client/src/forks/ReactFlightClientConfig.dom-legacy.js", "patch": "@@ -7,82 +7,20 @@\n * @flow\n */\n \n-import type {Thenable} from 'shared/ReactTypes';\n+export * from 'react-client/src/ReactFlightClientStreamConfigWeb';\n+export * from 'react-client/src/ReactClientConsoleConfi...
2024-06-28T13:25:10
vercel/next.js
27515900b31bfad83c3ecc65ed2e5d020ec289a6
2d80f1a249634ebcd5a84ba4f8b0763a91f4a560
Turbopack: less eager manifest generation (#83736) Before: <img width="2560" height="1224" alt="Bildschirmfoto 2025-09-12 um 18 47 11" src="https://github.com/user-attachments/assets/c40d2be6-f570-40b4-8a82-7b181f2de073" /> After: <img width="2560" height="1323" alt="Bildschirmfoto 2025-09-12 um 19 15 35" src...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1362,21 +1362,15 @@ impl AppEndpoint {\n }\n \n let build_manifest = BuildManifest {\n+ output_path: node_root.join(&format!(\n+ \"server/app{manifest_path_prefix}/build-manifest.json\",\n+ ...
2025-09-19T10:42:29
electron/electron
441dbda833a53a5ab01732bb5080dcacc640f101
ef097b77adcfcc478837f0132962ce456b525130
fix: recentDocuments on macOS not working (#41978)
[ { "path": "shell/browser/ui/cocoa/electron_menu_controller.h", "patch": "@@ -26,8 +26,6 @@ class ElectronMenuModel;\n @protected\n base::WeakPtr<electron::ElectronMenuModel> model_;\n NSMenu* __strong menu_;\n- NSMenuItem* __strong recentDocumentsMenuItem_;\n- NSMenu* __strong recentDocumentsMenuSwap...
2024-04-29T23:07:14
facebook/react
b3aface19a17d78d190dd2883f6e4f9f719181d0
e02baf6c92833a0d45a77fb2e741676f393c24f7
[fix] replace polyfill.io with cloudflare equivalent (#30123)
[ { "path": "fixtures/dom/public/renderer.html", "patch": "@@ -80,7 +80,7 @@\n \n <div id=\"output\"></div>\n \n- <script src=\"https://cdn.polyfill.io/v2/polyfill.min.js\"></script>\n+ <script src=\"https://cdnjs.cloudflare.com/polyfill/v2/polyfill.min.js\"></script>\n <script src=\"renderer.js...
2024-06-28T08:26:28
rust-lang/rust
1f076d2f938b42fe968ff06f1107871a665eabe9
286fbe5d84569c718f189122db9e68a16b50eeef
Add try_shrink_to and try_shrink_to_fit to Vec * Add try_shrink_to and try_shrink_to_fit to Vec Both functions are required to support shrinking a vector in environments without global OOM handling. * Format the try_shrink functions * Remove excess "```" from doc * Remove `cfg(not(no_global_oom_handling))` from rawve...
[ { "path": "library/alloc/src/raw_vec/mod.rs", "patch": "@@ -399,6 +399,21 @@ impl<T, A: Allocator> RawVec<T, A> {\n // SAFETY: All calls on self.inner pass T::LAYOUT as the elem_layout\n unsafe { self.inner.shrink_to_fit(cap, T::LAYOUT) }\n }\n+\n+ /// Shrinks the buffer down to the s...
2026-02-23T01:20:41
vercel/next.js
ffa66ff5429e14bb32a86f4720aab65c0a6daa7d
4160af22a0bc10563d83faf330e0abb33bc6a6fd
fix: error overlay not closing when backdrop clicked (#83981) The ref object wasn't passed to the hook; instead, ref.current (the value) was passed. This caused `useOnClickOutside` to be noop on initial render when ref.current was null, and only worked later because the component re-rendered with a different value. Th...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/dialog/dialog.tsx", "patch": "@@ -37,8 +37,7 @@ const Dialog: React.FC<DialogProps> = function Dialog({\n )\n \n useOnClickOutside(\n- // eslint-disable-next-line react-hooks/refs -- TODO\n- dialogRef.current,\n+ dialogRef,\n ...
2025-09-19T09:21:21
facebook/react
e02baf6c92833a0d45a77fb2e741676f393c24f7
ffec9ec5b5c846f61d7b40e92f138e2a7b34f273
Warn for invalid type in renderer with the correct RSC stack (#30102) This is all behind the `enableOwnerStacks` flag. This is a follow up to #29088. In that I moved type validation into the renderer since that's the one that knows what types are allowed. However, I only removed it from `React.createElement` and ...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -692,14 +692,22 @@ describe('ReactFlight', () => {\n \n const transport = ReactNoopFlightServer.render(<ServerComponent />);\n \n- await act(async () => {\n- const rootModel = await ReactNoopFlightClient.read(trans...
2024-06-27T16:10:09
electron/electron
ef097b77adcfcc478837f0132962ce456b525130
5310b79ffb40f840dd881fb8446b16a2f345322c
chore: fix notes stack updates (#41600) * chore: fix removeSupercededStackUpdates for generating notes * add early stop for less than * Update script/release/notes/notes.js Co-authored-by: David Sanders <dsanders11@ucsbalum.com> * clean up comparison functionality * add tests --------- Co-authored...
[ { "path": "script/release/notes/notes.js", "patch": "@@ -485,6 +485,24 @@ const getNotes = async (fromRef, toRef, newVersion) => {\n return notes;\n };\n \n+const compareVersions = (v1, v2) => {\n+ const [split1, split2] = [v1.split('.'), v2.split('.')];\n+\n+ if (split1.length !== split2.length) {\n+ ...
2024-04-29T15:41:54
golang/go
8eb5f6020e707672a846f0f83011b87e48039550
b226bcc4a9ae71dd75effbd020220590a29a68a9
[dev.simd] cmd/compile, simd: API interface fixes - Absolute -> Abs - ApproximateReciprocal -> Reciprocal - Other derived apis also changed. - Round -> RoundToEven - Other derived apis also changed. - Drop DotProdBroadcast - Fused(Mul|Add)(Mul|Add)? -> remove the "Fused" - MulEvenWi...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -24,18 +24,6 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPABSQ128,\n \t\tssa.OpAMD64VPABSQ256,\n \t\tssa.OpAMD64VPABSQ512,\n-\t\tssa.OpAMD64VRCPPS128,\n-\t\tssa.OpAMD64VRCPPS256,\n-\t\tssa.OpAMD64VRCP14PS...
2025-08-07T17:05:50
nodejs/node
ba5992831b4175c086580cfd2adbf07411821669
c94a9dbc40790273a70a0d0e9879b42dcf44ffba
module: unflag --experimental-strip-types PR-URL: https://github.com/nodejs/node/pull/56350 Fixes: https://github.com/nodejs/typescript/issues/17 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Revie...
[ { "path": "benchmark/ts/strip-typescript.js", "patch": "@@ -12,7 +12,7 @@ const bench = common.createBenchmark(main, {\n filepath: [ts, js],\n n: [1e4],\n }, {\n- flags: ['--experimental-strip-types', '--disable-warning=ExperimentalWarning'],\n+ flags: ['--disable-warning=ExperimentalWarning'],\n });\...
2024-12-26T18:46:06
vercel/next.js
4160af22a0bc10563d83faf330e0abb33bc6a6fd
d5f9cfb3c4e829058da7dd2b631fcabe2751c8ba
Fix output comparison when checking conclusion of required jobs (#83986)
[ { "path": ".github/workflows/retry_test.yml", "patch": "@@ -71,7 +71,7 @@ jobs:\n \n return await rerunIfRequiredNotSuccessful()\n - name: send retry request to GitHub API\n- if: ${{ steps.required_job_conclusion.outputs.result != 'success' }}\n+ if: ${{ steps.required_job_co...
2025-09-19T08:48:27
electron/electron
5310b79ffb40f840dd881fb8446b16a2f345322c
b95d0f76232613a9f2a2afa87d3ce26259fbdcd9
fix: `setTitleBarOverlay` should be implemented on `BaseWindow` (#41960) fix: setTitleBarOverlay should be implemented on BaseWindow
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -11,6 +11,7 @@\n \n #include \"base/containers/contains.h\"\n #include \"base/task/single_thread_task_runner.h\"\n+#include \"content/public/common/color_parser.h\"\n #include \"electron/buildflags/buildflags.h\"\n #include \"gin/dictio...
2024-04-29T15:28:24
facebook/react
ffec9ec5b5c846f61d7b40e92f138e2a7b34f273
3bee073c01ee7af48c4ad19d98837cabaace67dc
Add new package with renderToMarkup export (#30105) Name of the package is tbd (straw: `react-html`). It's a new package separate from `react-dom` though and can be used as a standalone package - e.g. also from a React Native app. ```js import {renderToMarkup} from '...'; const html = await renderToMarkup(<Comp...
[ { "path": "packages/react-client/src/forks/ReactFlightClientConfig.dom-bun.js", "patch": "@@ -11,7 +11,6 @@ export * from 'react-client/src/ReactFlightClientStreamConfigWeb';\n export * from 'react-client/src/ReactClientConsoleConfigPlain';\n export * from 'react-dom-bindings/src/shared/ReactFlightClientCon...
2024-06-27T16:09:40
golang/go
8282b72d627269ed2c2f7db7ea744e109667d7b1
dc54d7b607488e71776ba0fa3d09398d65daf033
runtime/race: update darwin race syso On macOS, the script in LLVM TSAN building the race syso files produces the Mach-O object with a malformed dynamic symbol table, which new Apple linker doesn't like and emits an annoying warning (https://github.com/golang/go/issues/61229#issuecomment-1988965927). The dynamic symbo...
[ { "path": "src/runtime/race/README", "patch": "@@ -4,14 +4,14 @@ the LLVM project (https://github.com/llvm/llvm-project/tree/main/compiler-rt).\n \n To update the .syso files use golang.org/x/build/cmd/racebuild.\n \n-internal/amd64v1/race_darwin.syso built with LLVM 51bfeff0e4b0757ff773da6882f4d538996c9b04...
2025-03-25T19:21:04
nodejs/node
1d1d8f2df35d2b48fff0d822980e937dfd66f9ec
b420c8fce2fa106afbf501f17939403dcbc77ba2
url: use resolved path to convert UNC paths to URL PR-URL: https://github.com/nodejs/node/pull/56302 Fixes: https://github.com/nodejs/node/issues/56262 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Xugu...
[ { "path": "lib/internal/url.js", "patch": "@@ -1512,32 +1512,35 @@ function fileURLToPath(path, options = kEmptyObject) {\n \n function pathToFileURL(filepath, options = kEmptyObject) {\n const windows = options?.windows ?? isWindows;\n- if (windows && StringPrototypeStartsWith(filepath, '\\\\\\\\')) {\n...
2024-12-25T18:42:11
electron/electron
b41da150caa363d06f522427c87bd989464c9edd
b684a9826740e6cc7447a62e1feced01210fefd5
build: add GitHub Actions testing pipeline for macOS (#41812) * build: test the Mac runner space * build: baby steps, super basic checkout * chore: simplify depot-tools * build: try a sync * build: fix path * build: pass different URL for sync * build: gclient sync with --verbose * debug: add logg...
[ { "path": ".github/workflows/config/evm.mas.json", "patch": "@@ -0,0 +1,26 @@\n+{\n+ \"root\": \"/Users/runner/work/electron/electron/\",\n+ \"remotes\": {\n+ \"electron\": {\n+ \"origin\": \"https://github.com/electron/electron.git\"\n+ }\n+ },\n+ \"gen\": {\n+ \"args\": [\n+ \"impor...
2024-04-24T17:29:19
golang/go
e0a1ea431c960c3ed740f9b32754e7c31737035c
2747f925dd1f08f9b9a1ef23170ee601519d70c2
cmd/compile: make panicBounds stack frame smaller on ppc64 We're running into nosplit limits when compiled with all=-N -l. Fixes #74910 Change-Id: I156263ae9b54ded240000001719512af86af70ee Reviewed-on: https://go-review.googlesource.com/c/go/+/693557 Reviewed-by: Paul Murphy <paumurph@redhat.com> Auto-Submit: Keith ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/PPC64Ops.go", "patch": "@@ -171,7 +171,7 @@ func init() {\n \t\tfpstore = regInfo{inputs: []regMask{gp | sp | sb, fp}}\n \t\tfpstoreidx = regInfo{inputs: []regMask{gp | sp | sb, gp | sp | sb, fp}}\n \t\tcallerSave = regMask(gp | fp | gr | xer)\n-\t\tfirst8 ...
2025-08-06T16:59:12
facebook/react
f5a22fa27d54d8a5eb898416436be4ca87850d4d
fcfbfc1d1e3e350e1ea3fbc4a2418f647dc28a31
Bump ws from 7.2.1 to 7.5.10 (#29919) Bumps [ws](https://github.com/websockets/ws) from 7.2.1 to 7.5.10. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/websockets/ws/releases">ws's releases</a>.</em></p> <blockquote> <h2>7.5.10</h2> <h1>Bug fixes</h1> <ul> <li>Back...
[ { "path": "yarn.lock", "patch": "@@ -7202,7 +7202,6 @@ eslint-plugin-no-unsanitized@3.1.2:\n \n \"eslint-plugin-react-internal@link:./scripts/eslint-rules\":\n version \"0.0.0\"\n- uid \"\"\n \n eslint-plugin-react@^6.7.1:\n version \"6.10.3\"\n@@ -7274,7 +7273,7 @@ eslint-utils@^2.0.0, eslint-utils@^2...
2024-06-27T14:07:09
vercel/next.js
82e1eb1f77fdbd97d979aa354f44994c1c080e77
2838b8b0a55d14bb63f5643cbe78da0fdc09727d
Docs/workspace setup (#83490) Retrying this... ## TODO - [x] deploy docs action - [x] verify that re-compiled deps are ok, no version regression - [x] turbopack with fumadocs errors out, why?
[ { "path": ".github/workflows/deploy_docs.yml", "patch": "@@ -0,0 +1,54 @@\n+name: docs-deploy\n+\n+on:\n+ pull_request:\n+ paths:\n+ - 'apps/docs/**'\n+ types: [opened, synchronize]\n+\n+permissions:\n+ contents: read\n+ pull-requests: write\n+\n+env:\n+ NODE_LTS_VERSION: 20\n+\n+jobs:\n+ de...
2025-09-19T08:27:34
nodejs/node
bd0b704d3cf159645e51c2d14e788b74e908377c
49acdc8748fe9fe83bc1b444e24c456dff00ecc5
doc: fix the `crc32` documentation PR-URL: https://github.com/nodejs/node/pull/55898 Fixes: https://github.com/nodejs/node/issues/55800 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/zlib.md", "patch": "@@ -910,7 +910,67 @@ The `zlib.bytesWritten` property specifies the number of bytes written to\n the engine, before the bytes are processed (compressed or decompressed,\n as appropriate for the derived class).\n \n-### `zlib.crc32(data[, value])`\n+### `zlib.close([cal...
2024-12-24T20:53:53
golang/go
2747f925dd1f08f9b9a1ef23170ee601519d70c2
025d36917c8f56baede2f477131bbf08bf1382ca
debug/macho: support reading imported symbols without LC_DYSYMTAB Currently, the ImportedSymbols method requires an LC_DYSYMTAB load command to exist. However, a Mach-O object file may not have an LC_DYSYMTAB load command, e.g. the one produced by "ld -r". Support this case by just reading the symbol table and gathers...
[ { "path": "src/debug/macho/file.go", "patch": "@@ -719,15 +719,28 @@ func (f *File) DWARF() (*dwarf.Data, error) {\n // referred to by the binary f that are expected to be\n // satisfied by other libraries at dynamic load time.\n func (f *File) ImportedSymbols() ([]string, error) {\n-\tif f.Dysymtab == nil ...
2025-08-04T14:30:26
electron/electron
d8f8560b1c427a9047f762019f4b6ca1379f8599
1cf194faae12592c1963040a7fd94085bae1852e
refactor: address changes and fix errors in `chrome://accessibility` (#41911) refactor: address changes and fix errors in chrome://accessibility
[ { "path": "patches/chromium/.patches", "patch": "@@ -52,7 +52,7 @@ crash_allow_setting_more_options.patch\n upload_list_add_loadsync_method.patch\n allow_setting_secondary_label_via_simplemenumodel.patch\n feat_add_streaming-protocol_registry_to_multibuffer_data_source.patch\n-fix_patch_out_profile_refs_in_...
2024-04-23T15:30:47
rust-lang/rust
9b2b57085d8e2c2707028ef8a82c2c51b235d2c0
0492671fc8cb1a4fe240681e83e71845db697793
fix: `unnecessary_safety_comment` FP on code blocks inside inner docs
[ { "path": "clippy_lints/src/undocumented_unsafe_blocks.rs", "patch": "@@ -822,7 +822,9 @@ fn text_has_safety_comment(\n // Don't lint if the safety comment is part of a codeblock in a doc comment.\n // It may or may not be required, and we can't very easily check it (and we shouldn't...
2026-02-12T23:10:44
facebook/react
fcfbfc1d1e3e350e1ea3fbc4a2418f647dc28a31
1f59d07042466fa958d74062592cc31890e88661
[compiler] Always error on async reassignments Summary: Addresses the issue in #30109: any mutation of a local in an async function may occur after rendering has finished. ghstack-source-id: 9f15cf0f144c0badd6009ceb51df43a50399d82b Pull Request resolved: https://github.com/facebook/react/pull/30111
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateLocalsNotReassignedAfterRender.ts", "patch": "@@ -19,7 +19,12 @@ import {\n */\n export function validateLocalsNotReassignedAfterRender(fn: HIRFunction): void {\n const contextVariables = new Set<IdentifierId>();\n- const re...
2024-06-27T00:07:40
nodejs/node
48c75bc02b24445199bc7cd3bc0cb54da369d197
31c20f6e52dfd96c8972f92231f002c483a6eb47
tools: fix `require-common-first` lint rule from subfolder PR-URL: https://github.com/nodejs/node/pull/56325 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": "test/addons/esm/test-esm.mjs", "patch": "@@ -4,7 +4,6 @@\n * the ESM loader or the CJS loader.\n */\n \n-// eslint-disable-next-line node-core/require-common-first\n import { buildType } from '../../common/index.mjs';\n import assert from 'node:assert';\n import { createRequire } from 'node:mod...
2024-12-22T18:44:20
golang/go
f53dcb6280a66acb7f6a66d39eaf51e5f0f5698b
a3895fe9f18682d5055cb68283eba21d7255a67f
cmd/internal/testdir: unify link command There are three places where we manually construct a "go tool link" command. Unify them. Test binaries don't need the symbol table or debug info, so pass -s -w always. Change-Id: I40143894172877738e250f291d7e7ef8dce62488 Reviewed-on: https://go-review.googlesource.com/c/go/+/...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -233,19 +233,23 @@ var stdlibImportcfgFile = sync.OnceValue(func() string {\n \treturn filename\n })\n \n-func linkFile(runcmd runCmd, goname string, importcfg string, ldflags []string) (err error) {\n+// linkFile links infile with the given...
2025-08-02T22:06:57
electron/electron
a0fee8f47a0d0eff408d69f6fb7b3aa596de6fa1
4e8c28fdf0fc415f892e86d2bdb84ebe6fd3d3ca
build: fixup codespaces on-create (#41428)
[ { "path": ".devcontainer/devcontainer.json", "patch": "@@ -27,7 +27,8 @@\n \t\t\t]\n \t\t},\n \t\t\"vscode\": {\n-\t\t\t\"extensions\": [\"joeleinbinder.mojom-language\",\n+\t\t\t\"extensions\": [\n+\t\t\t\t\"joeleinbinder.mojom-language\",\n \t\t\t\t\"rafaelmaiolla.diff\",\n \t\t\t\t\"surajbarkale.ninja\",...
2024-04-23T00:26:11
rust-lang/rust
5b87b994d805b902563c08590f3b71c5c7a9b3f3
d8b2222b11fc03a31d43707c8c9006f025809ece
fix interpreter tracing output
[ { "path": "compiler/rustc_const_eval/src/interpret/step.rs", "patch": "@@ -86,7 +86,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {\n span = ?stmt.source_info.span,\n tracing_separate_thread = Empty,\n )\n- .or_if_tracing_disabled(|| info!(stmt = ?stmt.kind));\n+...
2026-02-22T21:38:46
facebook/react
00775d94dc32c5136787e3ca60065b9a5e2df9b8
4c9a2d2ddf1bc8205a426b14d8a37804b5beb57a
[compiler] Add todo fixtures for local reassignment in an async callback ghstack-source-id: eca878f62a2149af76a72b59acd1820d0df86f30 Pull Request resolved: https://github.com/facebook/react/pull/30109
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/todo.invalid-reassign-local-variable-in-async-callback.expect.md", "patch": "@@ -0,0 +1,58 @@\n+\n+## Input\n+\n+```javascript\n+function Component() {\n+ let value = null;\n+ const reassign = async () => {\n+ awai...
2024-06-26T23:06:16
nodejs/node
31c20f6e52dfd96c8972f92231f002c483a6eb47
b8140384473c286f35c67a431b4e5805946dc4c1
build: fix GN build for ngtcp2 PR-URL: https://github.com/nodejs/node/pull/56300 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Xuguang Mei <meixuguang@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "deps/ngtcp2/unofficial.gni", "patch": "@@ -68,8 +68,7 @@ template(\"ngtcp2_gn_build\") {\n cflags_c = [\n \"-Wno-extra-semi\",\n \"-Wno-implicit-fallthrough\",\n- # Remove after https://github.com/ngtcp2/ngtcp2/issues/1050 is fixed.\n- \"-Wno-sometimes-uninitia...
2024-12-18T03:50:24
vercel/next.js
18e7c84af25c69c7807026a9044819ace1780abb
0f27700f3df6604215993cdbbeb8681ec19d42e2
Remove JS size reporting from next build (#83815) ## What Remove the `First Used JS` and `Size` metrics from `next build` CLI output, as well as the manifest files that supported these metrics. ## Why A recent investigation has revealed a number of bugs and longstanding known issues in the implementation. * The me...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -23,8 +23,8 @@ use next_core::{\n next_dynamic::NextDynamicTransition,\n next_edge::route_regex::get_named_middleware_regex,\n next_manifests::{\n- AppBuildManifest, AppPathsManifest, BuildManifest, ClientReferenceManifest,\n- Ed...
2025-09-19T06:57:41
golang/go
a3895fe9f18682d5055cb68283eba21d7255a67f
608e9fac9055aa188c513f4dd53f12e692bc3c0c
database/sql: avoid closing Rows while scan is in progress A database/sql/driver.Rows can return database-owned data from Rows.Next. The driver.Rows documentation doesn't explicitly document the lifetime guarantees for this data, but a reasonable expectation is that the caller of Next should only access it until the n...
[ { "path": "src/database/sql/convert.go", "patch": "@@ -335,7 +335,6 @@ func convertAssignRows(dest, src any, rows *Rows) error {\n \t\t\tif rows == nil {\n \t\t\t\treturn errors.New(\"invalid context to convert cursor rows, missing parent *Rows\")\n \t\t\t}\n-\t\t\trows.closemu.Lock()\n \t\t\t*d = Rows{\n \...
2025-07-23T21:26:54
electron/electron
4e8c28fdf0fc415f892e86d2bdb84ebe6fd3d3ca
46adb0a3a9f1fa60ee2bb140f08894543777256a
fix: data corruption in `protocol.handle` (#41894)
[ { "path": "lib/browser/api/protocol.ts", "patch": "@@ -18,7 +18,7 @@ function makeStreamFromPipe (pipe: any): ReadableStream {\n try {\n const rv = await pipe.read(buf);\n if (rv > 0) {\n- controller.enqueue(buf.subarray(0, rv));\n+ controller.enqueue(buf.slice(0, rv)...
2024-04-22T20:40:01
facebook/react
609d0cc3c8d484cd16378f4ba0e2e9eedbf48358
349a99a7a347f280ce40e9297cac5a3bd796901e
Add new error message for awaiting the client export (#29853) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull r...
[ { "path": "packages/react-server-dom-turbopack/src/ReactFlightTurbopackReferences.js", "patch": "@@ -133,6 +133,11 @@ const deepProxyHandlers = {\n `Instead, you can export a Client Component wrapper ` +\n `that itself renders a Client Context Provider.`,\n );\n+ case 't...
2024-06-26T17:47:39
nodejs/node
b6df12819da0fd1e1a8dbeb65f5ddc54cb267ddf
57b21b16d20f7327dca870dca3a1998e5dc10b6c
esm: add experimental support for addon modules PR-URL: https://github.com/nodejs/node/pull/55844 Fixes: https://github.com/nodejs/node/issues/40541 Fixes: https://github.com/nodejs/node/issues/55821 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: J...
[ { "path": "doc/api/cli.md", "patch": "@@ -45,8 +45,11 @@ Otherwise, the file is loaded using the CommonJS module loader. See\n \n When loading, the [ES module loader][Modules loaders] loads the program\n entry point, the `node` command will accept as input only files with `.js`,\n-`.mjs`, or `.cjs` extensio...
2024-12-20T11:59:08
vercel/next.js
8c8e9a50d77eb132b6a5a0d20c2e9546aab75027
1ee2861c037ac433ad22ccbe22059ee839dac846
Fix conclusion check for retry_test workflow (#83960)
[ { "path": ".github/workflows/retry_test.yml", "patch": "@@ -39,7 +39,7 @@ jobs:\n const requiredJobName = {\n 'build-and-test': 'thank you, next',\n 'build-and-deploy': 'thank you, build',\n- }[github.event.workflow_run.name]\n+ }[context.payload...
2025-09-18T17:09:01
electron/electron
46adb0a3a9f1fa60ee2bb140f08894543777256a
a8db7fe2ef65bbe8a26bee404cdbb2bedea123d7
fix: offscreen rendering does not paint after gpu process crashed (#41904) Co-authored-by: zhangqi.67 <zhangqi.67@bytedance.com>
[ { "path": "shell/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -230,6 +230,7 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n \n ResizeRootLayer(false);\n render_widget_host_->SetView(this);\n+ render_widget_host_->render_frame_metadata_provider()->AddObserver(this);\n \n ...
2024-04-22T13:50:55
facebook/react
349a99a7a347f280ce40e9297cac5a3bd796901e
7045700a6db5edaf8427310de09ce0f113e781dc
Badge Environment Name on Thrown Errors from the Server (#29846) When we replay logs we badge them with e.g. `[Server]`. That way it's easy to identify that the source of the log actually happened on the Server (RSC). However, when we threw an error we didn't have any such thing. The error was rethrown on the clien...
[ { "path": "packages/internal-test-utils/consoleMock.js", "patch": "@@ -418,13 +418,18 @@ export function createLogAssertion(\n let argIndex = 0;\n // console.* could have been called with a non-string e.g. `console.error(new Error())`\n // eslint-disable-next-line react-internal/safe...
2024-06-26T17:27:26
vercel/next.js
a0e5996f0a7cb5245ad24b01deafb518ba6162b6
74b226fe4afc7149901affc3c005476e9e592315
[Cache Components] Allow sync IO inside console methods (#83843) console methods may be patched to do things like add a timestamp to the log row. While we can't determine the meaning of reading the current time in arbitrary contexts we can know with reasonable certainty that any sync IO inside a console method is not...
[ { "path": ".vscode/settings.json", "patch": "@@ -62,6 +62,7 @@\n \"packages/next/src/server/app-render/dynamic-access-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-unit-async-storage-instance.ts...
2025-09-18T15:23:56
golang/go
608e9fac9055aa188c513f4dd53f12e692bc3c0c
72e8237cc11569de2faf9885a1b83d06446533b5
go/types, types2: flip on position tracing Running compilebench with flags off / on, we get the below: │ old.txt │ new.txt │ │ sec/op │ sec/op vs base │ Template 149.2m ± 6% 155.5m ± 5% ...
[ { "path": "src/cmd/compile/internal/types2/check.go", "patch": "@@ -22,7 +22,7 @@ var nopos syntax.Pos\n const debug = false // leave on during development\n \n // position tracing for panics during type checking\n-const tracePos = false // TODO(markfreeman): check performance implications\n+const tracePos ...
2025-05-28T16:12:35
nodejs/node
57b21b16d20f7327dca870dca3a1998e5dc10b6c
14803eaa9aaec5373a862521ae212891f2c92c10
stream: validate undefined sizeAlgorithm in WritableStream PR-URL: https://github.com/nodejs/node/pull/56067 Fixes: https://github.com/nodejs/node/issues/56014 Refs: https://github.com/whatwg/streams/pull/1333 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "lib/internal/webstreams/writablestream.js", "patch": "@@ -1176,9 +1176,18 @@ function writableStreamDefaultControllerGetDesiredSize(controller) {\n }\n \n function writableStreamDefaultControllerGetChunkSize(controller, chunk) {\n+ const {\n+ stream,\n+ sizeAlgorithm,\n+ } = controller[kS...
2024-12-20T06:57:34
electron/electron
39bf441b3b6ee5cdefb3da98861632928c821ca7
46ef7ef8fbfccff4cace74dd22b62926a1329419
build: enable Perfetto in Chromium (#41880) * build: enable perfetto in Chromium * refactor: delete TracingControllerImpl * fix: TraceObject isn't present when v8_use_perfetto is true * fix: update lib/internal/http for perfetto * chore: remove stray log
[ { "path": "build/args/all.gn", "patch": "@@ -50,10 +50,6 @@ is_cfi = false\n # TODO: fix this once sysroots have been updated.\n use_qt = false\n \n-# https://chromium-review.googlesource.com/c/chromium/src/+/4365718\n-# TODO(codebytere): fix perfetto incompatibility with Node.js.\n-use_perfetto_client_libr...
2024-04-19T15:07:36
facebook/react
7baae65e767726e44a23c13203c05ae0d540e26f
bbc8851c84fc6b6793340de89713bf142b8c05e6
compiler: fix the `hookKind` for `useInsertionEffect` (#30069) Currently, the `hookKind` for `useInsertionEffect` is set to `useLayoutEffect`. This pull request fixes it by adding a new `hookKind` for `useInsertionEffect`.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts", "patch": "@@ -363,7 +363,7 @@ const REACT_APIS: Array<[string, BuiltInType]> = [\n restParam: Effect.Freeze,\n returnType: { kind: \"Poly\" },\n calleeEffect: Effect.Read,\n- hookKind: \"useLayoutEff...
2024-06-26T13:59:03
nodejs/node
a33ec1248bc2df74811da8b0cd811f16663205db
990497c514c30a2f104ed8da3a0f91284bad26b0
lib: suppress source map lookup exceptions When the source map data are invalid json strings, skip construct `SourceMap` on it. Additionally, suppress exceptions on source map lookups and fix test runners crash on invalid source maps. PR-URL: https://github.com/nodejs/node/pull/56299 Refs: https://github.com/nodejs/n...
[ { "path": "lib/internal/source_map/source_map_cache.js", "patch": "@@ -155,6 +155,9 @@ function maybeCacheSourceMap(filename, content, moduleInstance, isGeneratedSourc\n }\n \n const data = dataFromUrl(filename, sourceMapURL);\n+ // `data` could be null if the source map is invalid.\n+ // In this case...
2024-12-17T23:12:00
vercel/next.js
8b0d684c40397fc3833c1ff9cdb1c2f1a23e8e22
cef3dd05aa3a5c70c5ad59a4c780bcda2d788fa5
Turbopack: extract parse_source_map_comment (#83938) <!-- 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 Contributor...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -23,6 +23,7 @@ mod path_visitor;\n pub mod references;\n pub mod runtime_functions;\n pub mod side_effect_optimization;\n+pub mod source_map;\n pub(crate) mod special_cases;\n pub(crate) mod static_code;\n mod swc_comments;", "ad...
2025-09-18T13:09:49
golang/go
72e8237cc11569de2faf9885a1b83d06446533b5
3406a617d9643902e932ca99c6f276fa7b19e030
cmd/compile: allow more args in StructMake folding rule imakeOfStructMake does the right thing, but we never call it when the StructMake has more than one argument. Fixes #74908 Change-Id: Ib4b1a025bfb1fa69a325207e47b74bd6217092bf Reviewed-on: https://go-review.googlesource.com/c/go/+/693615 Auto-Submit: Keith Randa...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -921,7 +921,7 @@\n @x.Block (Load <v.Type> (OffPtr <v.Type.PtrTo()> [t.FieldOff(int(i))] ptr) mem)\n \n // Putting struct{*byte} and similar into direct interfaces.\n-(IMake _typ (StructMake val)) => imakeOfStructMake(v)\n+(IMake _t...
2025-08-06T16:21:41
electron/electron
07a68c2bf8b53ea1c639b5c12fa725e5ae81fab0
ed9fec7da413533788d57a48c97e36dedfc6003c
fix: don't check for Desktop Environment in unity_service.cc (#41211) Don't check for Desktop Environment in unity_service.cc
[ { "path": "shell/browser/linux/unity_service.cc", "patch": "@@ -51,21 +51,10 @@ unity_launcher_entry_set_progress_visible_func entry_set_progress_visible =\n nullptr;\n \n void EnsureLibUnityLoaded() {\n- using base::nix::GetDesktopEnvironment;\n-\n if (attempted_load)\n return;\n attempted_loa...
2024-04-19T13:58:32
facebook/react
bbc8851c84fc6b6793340de89713bf142b8c05e6
a8b465c6e0576b9ac490c2e2762c273db314dfcf
Bump ws from 8.13.0 to 8.17.1 in /compiler (#30043) Bumps [ws](https://github.com/websockets/ws) from 8.13.0 to 8.17.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/websockets/ws/releases">ws's releases</a>.</em></p> <blockquote> <h2>8.17.1</h2> <h1>Bug fixes</h1> ...
[ { "path": "compiler/yarn.lock", "patch": "@@ -9127,7 +9127,16 @@ string-length@^4.0.1:\n char-regex \"^1.0.2\"\n strip-ansi \"^6.0.0\"\n \n-\"string-width-cjs@npm:string-width@^4.2.0\", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:\n+\"string-width-cjs@npm:string-width@^4.2.0\":\n+ ...
2024-06-26T13:56:13
nodejs/node
854d23b0d60bec3ebdaf5b4c05a4f57fd1bbf62a
a85ef6a04a8b10de037c62b446e92ee1102e82f2
2024-12-19, Version 23.5.0 (Current) Notable changes: crypto: * graduate WebCryptoAPI Ed25519 and X25519 algorithms as stable (Filip Skokan) https://github.com/nodejs/node/pull/56142 dgram: * (SEMVER-MINOR) support blocklist in udp (theanarkh) https://github.com/nodejs/node/pull/56087 doc: * stabilize util.styl...
[ { "path": "CHANGELOG.md", "patch": "@@ -39,7 +39,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.4.0\">23.4.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.5.0\">23.5.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V23.md#23.4.0\">2...
2024-12-18T21:40:13