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 | 46e4d6ac797dc59832ad8f605d62e3f55485dbcf | abfc98ff542c7589ae598281eaa2f2708767c9bc | fix(Turbopack): Give intercept routes correct regex in generated manifest files (#83128) | [
{
"path": "Cargo.lock",
"patch": "@@ -4347,6 +4347,7 @@ dependencies = [\n \"qstring\",\n \"react_remove_properties\",\n \"regex\",\n+ \"regress\",\n \"remove_console\",\n \"rustc-hash 2.1.1\",\n \"serde\",\n@@ -5832,9 +5833,9 @@ dependencies = [\n \n [[package]]\n name = \"regress\"\n-version = \"0.1... | 2025-09-02T14:13:15 |
electron/electron | fc917985ae8165e0cbcc11b3bebbcc995b1bd271 | ffec3127d55a31c6735b4364fec5250dbbc5ac64 | fix: ensure `WebContents` before checking draggable region (#41154)
fix: ensure WebContents before checking draggable region | [
{
"path": "shell/browser/api/electron_api_web_contents_view.cc",
"patch": "@@ -81,11 +81,14 @@ void WebContentsView::SetBackgroundColor(std::optional<WrappedSkColor> color) {\n }\n \n int WebContentsView::NonClientHitTest(const gfx::Point& point) {\n- gfx::Point local_point(point);\n- views::View::Convert... | 2024-01-30T10:53:19 |
facebook/react | 5d4b7587da52dd81bc5c366b909c4511e2970cd1 | 2aed507a76a0b1524426c398897cbe47d80c51e5 | Don't let error boundaries catch errors during hydration (#28675)
When an error boundary catches an error during hydration it'll try to
render the error state which will then try to hydrate that state,
causing hydration warnings.
When an error happens inside a Suspense boundary during hydration, we
instead let t... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzShellHydration-test.js",
"patch": "@@ -314,4 +314,229 @@ describe('ReactDOMFizzShellHydration', () => {\n 'RangeError: Maximum call stack size exceeded',\n );\n });\n+\n+ it('client renders when an error is thrown in an error boundary', as... | 2024-03-29T20:43:22 |
golang/go | 33fb4819f59d16c483be6cf2016f79eef3543691 | a995269a9383d90a3bdd029989bafc8fc3b19dc3 | cmd/compile/internal/ssa: skip EndSequence entries in TestStmtLines
The TestStmtLines test has been accessing a nil pointer when it
tries to look up LineEntry.File.Name on a line entry with
EndSequence set to true. The doc for EndSequence specifies that if
EndSequence is set, only it and the Address field are meaningf... | [
{
"path": "src/cmd/compile/internal/ssa/stmtlines_test.go",
"patch": "@@ -120,6 +120,11 @@ func TestStmtLines(t *testing.T) {\n \t\t\t\tbreak\n \t\t\t}\n \t\t\tmust(err)\n+\t\t\tif le.EndSequence {\n+\t\t\t\t// When EndSequence is true only\n+\t\t\t\t// le.Address is meaningful, skip.\n+\t\t\t\tcontinue\n+\... | 2025-07-04T10:45:42 |
nodejs/node | c9bf257180e7edaa493e5bd326a240fc9a765b7a | b09618e474e520e5fcb5ab97b4f750614c05564a | lib: avoid excluding symlinks in recursive fs.readdir with filetypes
Fixes: https://github.com/nodejs/node/issues/52663
Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/55714
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: James M Snell <jasnell@gmail... | [
{
"path": "lib/fs.js",
"patch": "@@ -1402,9 +1402,12 @@ function readdirSyncRecursive(basePath, options) {\n // of the first array within the result.\n const length = readdirResult[0].length;\n for (let i = 0; i < length; i++) {\n+ // Avoid excluding symlinks, as they are not direct... | 2024-11-25T05:07:13 |
rust-lang/rust | 4916d9538151589027f8fb243de94a1af2774f2a | 18a4108bf24e88f1537ed1f87264a64d0fb0f70d | Fix unnecessary_min_or_max for usize
Signed-off-by: Taym Haddadi <haddadi.taym@gmail.com> | [
{
"path": "clippy_lints/src/methods/unnecessary_min_or_max.rs",
"patch": "@@ -88,7 +88,17 @@ fn detect_extrema<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> Option<\n match (cv.int_value(cx.tcx, ty)?, ty.kind()) {\n (FullInt::S(i), &ty::Int(ity)) if i == i128::MIN >> (128 - ity.bit_widt... | 2026-02-19T08:24:28 |
facebook/react | 13f35433bca9fc08fc7c4ab001f39c982cbde051 | 6cd6ba703de77e332ab201518b6e30e47cd49aaf | Mock modules in tests using `Module` (#28678)
## Summary
Fixes a type validation error introduced in newer versions of Node.js
when calling `Module.prototype._compile` in our unit tests. (I tried but
have yet to pinpoint the precise change in Node.js that introduced this
vaildation.)
The specific error that c... | [
{
"path": "packages/react-server-dom-turbopack/src/__tests__/utils/TurbopackMock.js",
"patch": "@@ -55,7 +55,7 @@ exports.clientModuleError = function clientModuleError(moduleError) {\n chunks: [],\n name: '*',\n };\n- const mod = {exports: {}};\n+ const mod = new Module();\n nodeCompile.call(... | 2024-03-29T20:19:54 |
vercel/next.js | 2bcb4bd6e85f7037a2998ea66691d3bb60e9a5ce | 7aa5d162311150921cc9441434b003aeb5800ca2 | Unflake `missing required html tags` test (#83328)
[Flakiness metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20env%3Aci%20%40git.repository.id%3Agithub.com%2Fvercel%2Fnext.js%20%40test.service%3Anextjs%20%40test.status%3Afail%20%40test.name%3A%22app-dir%20-%20missing%20required%20html%20tags%20... | [
{
"path": "test/development/app-dir/missing-required-html-tags/index.test.ts",
"patch": "@@ -35,18 +35,22 @@ describe('app-dir - missing required html tags', () => {\n `)\n })\n \n- it('should hmr when you fix the error', async () => {\n- const browser = await next.browser('/')\n-\n- await next... | 2025-09-02T13:23:02 |
electron/electron | de76fc01ec9891d5918424982512d4648a725027 | 2571396584b698ab30181e62cd444e29ac51dbee | chore: fix outdated osk patch on main branch (#41152) | [
{
"path": "patches/chromium/fix_on-screen-keyboard_hides_on_input_blur_in_webview.patch",
"patch": "@@ -9,10 +9,10 @@ focus node change via TextInputManager.\n chromium-bug: https://crbug.com/1369605\n \n diff --git a/content/browser/renderer_host/render_widget_host_view_aura.cc b/content/browser/renderer_h... | 2024-01-29T06:35:33 |
rust-lang/rust | 8b03e83d2dec60884b07a9b51f419517cec43db7 | 9437c83913748e9215cba13f11b33585abb9f15e | fix genmc build | [
{
"path": "src/tools/miri/src/concurrency/genmc/shims.rs",
"patch": "@@ -24,24 +24,22 @@ impl GenmcCtx {\n }\n }\n \n+/// Small helper to get the arguments of an intercepted function call.\n+fn get_fn_args<'tcx, const N: usize>(\n+ instance: ty::Instance<'tcx>,\n+ args: &[FnArg<'tcx>],\n+) -> Inte... | 2026-02-19T07:37:22 |
nodejs/node | b6fe731c55eb4cb9d14042a23e5002ed39b7c8b7 | 1d0738a85e7a0fce67ddcbef0a7e6b93b9559e99 | test: make HTTP/1.0 connection test more robust
Fixes: https://github.com/nodejs/node/issues/47200
Co-authored-by: Luigi Pinca <luigipinca@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/55959
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Jason Zhan... | [
{
"path": "test/parallel/test-http-remove-connection-header-persists-connection.js",
"patch": "@@ -10,6 +10,13 @@ const server = http.createServer(function(request, response) {\n // For HTTP/1.0, the connection should be closed after the response automatically.\n response.removeHeader('connection');\n \... | 2024-11-24T22:30:38 |
golang/go | a995269a9383d90a3bdd029989bafc8fc3b19dc3 | 6c3b5a2798c83d583cb37dba9f39c47300d19f1f | sort: clarify Less doc
clarifies the requirements for Less
Fixes https://github.com/golang/go/issues/73420
Change-Id: I7d49b10fad78c618d946b3bb161ce19680ede47a
GitHub-Last-Rev: 7a49ad81923048bfc99b265dd89f012eefcf5699
GitHub-Pull-Request: golang/go#74333
Reviewed-on: https://go-review.googlesource.com/c/go/+/683275
... | [
{
"path": "src/sort/sort.go",
"patch": "@@ -26,13 +26,15 @@ type Interface interface {\n \t// Sort may place equal elements in any order in the final result,\n \t// while Stable preserves the original input order of equal elements.\n \t//\n-\t// Less must describe a transitive ordering:\n+\t// Less must des... | 2025-07-06T18:41:28 |
vercel/next.js | f1d4b5dd084426306475e40f0beb476e783edbd0 | 4453d20e610c1fd34c7f81eedf3812827cf1184c | Fix deployment tests (#83306) | [
{
"path": "test/production/next-server-nft/next-server-nft.test.ts",
"patch": "@@ -2,14 +2,18 @@ import { nextTestSetup } from 'e2e-utils'\n import path from 'path'\n import fs from 'fs'\n \n+const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n+\n // Only run this test for Turbopack as i... | 2025-09-01T17:23:56 |
facebook/react | f2690747239533fa266612d2d4dd9ae88ea92fbc | cc56bed38cbe5a5c76dfdc4e9c642fab4884a3fc | Revert "Remove module pattern function component support" (#28670)
This breaks internal tests, so must be something in the refactor. Since
it's the top commit let's revert and split into two PRs, one that
removes the flag and one that does the refactor, so we can find the bug. | [
{
"path": "packages/react-devtools-shared/src/backend/renderer.js",
"patch": "@@ -225,7 +225,7 @@ export function getInternalReactConstants(version: string): {\n HostSingleton: 27, // Same as above\n HostText: 6,\n IncompleteClassComponent: 17,\n- IndeterminateComponent: 2, // removed... | 2024-03-29T14:10:11 |
electron/electron | 2571396584b698ab30181e62cd444e29ac51dbee | 8104c7908a2e281cdb2e380dd2ec49c3ead7fa3e | fix: update osk patch to fix more corner cases (#41131)
This is a follow up to https://github.com/electron/electron/pull/35921
that, it fixes more corner cases that on-screen-keyboard does not hide
for webviews.
This change has been applied in Teams for quite a while and should be
reliable enough to introduce to... | [
{
"path": "patches/chromium/fix_on-screen-keyboard_hides_on_input_blur_in_webview.patch",
"patch": "@@ -3,47 +3,89 @@ From: Kyrylo Hrechykhin <khrechykhin@microsoft.com>\n Date: Thu, 6 Oct 2022 18:30:53 +0200\n Subject: fix: on-screen-keyboard hides on input blur in webview\n \n-Changes introduced by this p... | 2024-01-29T01:42:59 |
nodejs/node | d0d52092cf4002dfc07254a2a2cb55aa9a3485af | a2a0c22fbf89a9172142e0f776a35932ac3ce514 | assert: add partialDeepStrictEqual
Fixes: https://github.com/nodejs/node/issues/50399
Co-Authored-By: Cristian Barlutiu <cristian.barlutiu@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/54630
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Mos... | [
{
"path": "doc/api/assert.md",
"patch": "@@ -2548,6 +2548,96 @@ assert.throws(throwingFirst, /Second$/);\n Due to the confusing error-prone notation, avoid a string as the second\n argument.\n \n+## `assert.partialDeepStrictEqual(actual, expected[, message])`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> S... | 2024-11-23T17:45:49 |
golang/go | 72c39ef83470334b1e592312d30ebef9a1e8ddda | 1ee72a15a3e893c82cc7108c49f141e824f941c2 | [dev.simd] cmd/compile: fix the "always panic" code to actually panic
without this change, the intrinsics of non-constant immediates
just substitute a zero, which is wrong.
Change-Id: I2c39ebedcfb0d0d6c072f4434f393027c6f3f033
Reviewed-on: https://go-review.googlesource.com/c/go/+/685575
Reviewed-by: Junyang Shao <sha... | [
{
"path": "src/cmd/compile/internal/ssagen/intrinsics.go",
"patch": "@@ -1636,7 +1636,7 @@ func opLen4(op ssa.Op, t *types.Type) func(s *state, n *ir.CallExpr, args []*ssa\n \n func plainPanicSimdImm(s *state) {\n \tcmp := s.newValue0(ssa.OpConstBool, types.Types[types.TBOOL])\n-\tcmp.AuxInt = 1\n+\tcmp.Aux... | 2025-07-02T18:28:10 |
facebook/react | 299a9c0598576f7dba170771b1c0b821281b1e15 | e10a7b5cd541882a78ff659147c1a0294413ccb0 | [Fiber] Remove the digest property from errorInfo passed to onRecoverableError (#28222)
Removes the digest property from errorInfo passed to onRecoverableError
when handling an error propagated from the server. Previously we warned
in Dev but still provided the digest on the errorInfo object. This
change removes di... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -3563,11 +3563,11 @@ describe('ReactDOMFizzServer', () => {\n onRecoverableError(error, errorInfo) {\n expect(() => {\n expect(error.digest).toBe('a digest');\n- expect(errorInfo.di... | 2024-03-28T15:01:35 |
vercel/next.js | 95ee107a85b5ec8178f01a37f36e8bfd864fee49 | 828221d0dfdf49c70c8b85b5c01f72730ef62539 | Update caching.mdx (#83149)
In the docs it says => ( The default caching behavior of fetch (e.g.,
when the cache option is not specified) is equal to setting the cache
option to no-store )
But when I code, I found that fetch default behaviour and setting the
cache option to no-store are different.
After building pro... | [
{
"path": "docs/01-app/02-guides/caching.mdx",
"patch": "@@ -421,11 +421,10 @@ See the [`useRouter` hook](/docs/app/api-reference/functions/use-router) API ref\n \n Data returned from `fetch` is _not_ automatically cached in the Data Cache.\n \n-The default caching behavior of `fetch` (e.g., when the `cache... | 2025-09-01T08:38:14 |
electron/electron | 8104c7908a2e281cdb2e380dd2ec49c3ead7fa3e | db2bf1a0d1be6b81ca2d1a6b693b78753d3ba6ea | fix: potential `async_hooks` crash in `NotifyWindowRestore` on Windows (#40576)
* fix: potential async_hooks crash in NotifyWindowRestore on Windows
* fix: don't use CallbackScope for Error objects | [
{
"path": "shell/browser/api/electron_api_auto_updater.cc",
"patch": "@@ -32,13 +32,26 @@ void AutoUpdater::OnError(const std::string& message) {\n v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();\n v8::HandleScope handle_scope(isolate);\n v8::Local<v8::Object> wrapper;\n+\n+ // We do not ... | 2024-01-26T18:53:07 |
nodejs/node | 19195608fcbf83969d32ea60197a20e4c0c98bd5 | d3bcb97e5a1c8caeba0b05102c03f60091fb5c69 | module: do not warn when require(esm) comes from node_modules
As part of the standard experimental feature graduation
policy, when we unflagged require(esm) we moved the
experimental warning to be emitted when require() is
actually used to load ESM, which previously was an error.
However, some packages in the ecosyste... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -70,6 +70,7 @@ const {\n module_export_private_symbol,\n module_parent_private_symbol,\n },\n+ isInsideNodeModules,\n } = internalBinding('util');\n \n const { kEvaluated, createRequiredModuleFacade } = internalBinding('module_wrap');\n... | 2024-11-23T11:28:47 |
facebook/react | 7748ce8f3ff89065b7c25622873f86e3693a5667 | df5ff9753a7d338b90c57a1d1471fb01fb405870 | Update compiler naming in remaining error text | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Suppression.ts",
"patch": "@@ -164,12 +164,12 @@ export function suppressionsToCompilerError(\n switch (suppressionRange.source) {\n case \"Eslint\":\n reason =\n- \"React Forget has bailed out of optimizing thi... | 2024-03-28T14:40:05 |
rust-lang/rust | 6314bd72db4badf597b584b33a00967cc7f590f1 | e0cb264b814526acb82def4b5810e394a2ed294f | fix(codegen): Use `body_codegen_attrs` for caller in `adjust_target_feature_sig` | [
{
"path": "compiler/rustc_middle/src/ty/context.rs",
"patch": "@@ -1330,8 +1330,8 @@ impl<'tcx> TyCtxt<'tcx> {\n caller: DefId,\n ) -> Option<ty::Binder<'tcx, ty::FnSig<'tcx>>> {\n let fun_features = &self.codegen_fn_attrs(fun_def).target_features;\n- let callee_features = &self.c... | 2026-02-19T05:52:42 |
electron/electron | db2bf1a0d1be6b81ca2d1a6b693b78753d3ba6ea | 6c9f9de40ac6a46da7f5766ec97388030b77f3e6 | fix: apply module search paths restriction on worker and child process (#41118) | [
{
"path": "filenames.auto.gni",
"patch": "@@ -260,7 +260,6 @@ auto_filenames = {\n \"lib/common/deprecate.ts\",\n \"lib/common/init.ts\",\n \"lib/common/ipc-messages.ts\",\n- \"lib/common/reset-search-paths.ts\",\n \"lib/common/web-view-methods.ts\",\n \"lib/common/webpack-globals-pro... | 2024-01-26T08:29:04 |
golang/go | 6c3b5a2798c83d583cb37dba9f39c47300d19f1f | dd687c386016445b2f4abc2a958963dd2056d95f | runtime: correct vdsoSP on S390X
It should get the caller's SP. The current code gets the address
of the first parameter, which is one word above the caller's SP.
There is a slot for saving the LR at 0(SP) in the caller's frame.
Fixes #62086 (for s390x).
Change-Id: Ie8cbfabc8161b98658c884a32e0af72df189ea56
Reviewed-... | [
{
"path": "src/runtime/sys_linux_s390x.s",
"patch": "@@ -226,7 +226,7 @@ TEXT runtime·walltime(SB),NOSPLIT,$32-12\n \tMOVD\tR4, 24(R15)\n \n \tMOVD\tR14, R8 \t\t// Backup return address\n-\tMOVD\t$sec+0(FP), R4 \t// return parameter caller\n+\tMOVD\t$ret-8(FP), R4 \t// caller's SP\n \n \tMOVD\tR8, m_vdsoPC(... | 2025-07-03T03:26:44 |
nodejs/node | 05b3fcb4d7d421a079ebf0740ce5444e5a118090 | 3178a762d6a2b1a37b74f02266eea0f3d86603be | doc: fix Node.js 23 column in CHANGELOG.md
The column for Node.js 23 in `CHANGELOG.md` is missing an opening
`<td>` tag so was not correctly rendering.
PR-URL: https://github.com/nodejs/node/pull/55935
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -38,6 +38,7 @@ release.\n <th title=\"LTS Until 2025-04\"><a href=\"doc/changelogs/CHANGELOG_V18.md\">18</a> (LTS)</th>\n </tr>\n <tr>\n+ <td valign=\"top\">\n <b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.3.0\">23.3.0</a></b><br/>\n <a href=\"doc/changelogs/CHANG... | 2024-11-22T18:01:35 |
vercel/next.js | 9de3daa343165de2139d8b8457209493293bfc08 | 635f7fd1be079ff21722b8b19a600d796fdb5510 | fix: remove `satisfies` keyword from type validation to preserve old TS compatibility (#83239) | [
{
"path": "packages/next/src/server/lib/router-utils/typegen.ts",
"patch": "@@ -446,12 +446,19 @@ export function generateValidatorFile(\n type === 'RouteHandlerConfig')\n ? `${type}<${JSON.stringify(route)}>`\n : type\n+\n+ // NOTE: we previously used `satisfies` ... | 2025-09-01T07:37:21 |
facebook/react | df5ff9753a7d338b90c57a1d1471fb01fb405870 | f4229cdb7fd53cf95bdb79209fa86f4216701c9b | Fix jest script | [
{
"path": "compiler/packages/babel-plugin-react-forget/package.json",
"patch": "@@ -10,7 +10,7 @@\n \"scripts\": {\n \"build\": \"rimraf dist && rollup --config --bundleConfigAsCjs\",\n \"test\": \"yarn snap:ci\",\n- \"jest\": \"tsc && ts-node \\\"$(yarn --silent which jest)\\\"\",\n+ \"jest... | 2024-03-28T14:40:05 |
electron/electron | 9e630eb66aaa237401f87a97ee114eef7e1a74cc | 1a0991a9b924534d3e1d06974616135de21129a1 | build: remove unneeded dlls in Windows zip (#41120)
* build: fixup zip manifest check on Windows
* build: remove unused dlls | [
{
"path": "appveyor-woa.yml",
"patch": "@@ -177,7 +177,12 @@ for:\n # built on CI.\n 7z a pdb.zip out\\Default\\*.pdb\n }\n- - python3 electron/script/zip_manifests/check-zip-manifest.py out/Default/dist.zip electron/script/zip_manifests/dist_zip.win.%TARGET_ARCH%.mani... | 2024-01-25T20:26:21 |
golang/go | dd687c386016445b2f4abc2a958963dd2056d95f | b3251514531123d7fd007682389bce7428d159a0 | hash: document that Clone may only return ErrUnsupported or a nil error
Updates #69521
Change-Id: I6a6a6964ce384a80c4c89efe67c260dc6e9ed6c8
Reviewed-on: https://go-review.googlesource.com/c/go/+/685235
Auto-Submit: Filippo Valsorda <filippo@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.... | [
{
"path": "src/hash/hash.go",
"patch": "@@ -64,7 +64,8 @@ type Hash64 interface {\n // unless GOFIPS140=v1.0.0 is set.\n //\n // If a hash can only determine at runtime if it can be cloned (e.g. if it wraps\n-// another hash), it may return an error wrapping [errors.ErrUnsupported].\n+// another hash), Clon... | 2025-07-01T09:51:37 |
nodejs/node | 5ba3b540d459a60c7edff5074073fb397be81e8a | d8947721570b007aed24d8de523129dc03a87fa3 | build: fix GN build for sqlite
PR-URL: https://github.com/nodejs/node/pull/55912
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipi... | [
{
"path": "deps/sqlite/unofficial.gni",
"patch": "@@ -7,6 +7,10 @@\n template(\"sqlite_gn_build\") {\n config(\"sqlite_config\") {\n include_dirs = [ \".\" ]\n+ defines = [\n+ \"SQLITE_ENABLE_SESSION\",\n+ \"SQLITE_ENABLE_PREUPDATE_HOOK\",\n+ ]\n }\n \n gypi_values = exec_script(\"... | 2024-11-21T00:33:35 |
rust-lang/rust | c9a76c4da5857546c0880c6e0fd5267532968416 | 94f6e7efd37f1ab2f045e4f4685076696ad690fd | style: fix clippy collapsible_if warning | [
{
"path": "src/tools/rust-analyzer/crates/ide-db/src/path_transform.rs",
"patch": "@@ -580,10 +580,10 @@ impl Ctx<'_> {\n }\n }\n \n- if let hir::ModuleDef::Variant(v) = def {\n- if v.kind(self.source_scope.db) != hir::StructKind::Unit {\... | 2026-02-19T05:06:43 |
facebook/react | f4229cdb7fd53cf95bdb79209fa86f4216701c9b | 638f8e3ddc9a73036d527dfc396e21fa8862a20f | Rename error type | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -173,7 +173,7 @@ export class CompilerError extends Error {\n \n constructor(...args: any[]) {\n super(...args);\n- this.name = \"ReactForgetCompilerError\";\n+ this.name = \"ReactCompilerError\";\n }\n ... | 2024-03-28T14:40:04 |
vercel/next.js | 635f7fd1be079ff21722b8b19a600d796fdb5510 | d4d380ed7cfecd9cb56c9ea889b313b806194929 | fix: remove redundant posix normalization (#83244) | [
{
"path": "packages/next/src/lib/typescript/writeAppTypeDeclarations.ts",
"patch": "@@ -62,13 +62,8 @@ export async function writeAppTypeDeclarations({\n 'types/routes.d.ts'\n )\n \n- // Ensure the path is POSIX-compliant for imports.\n- const routeTypesPathPosix = routeTypesPath\n- .split(path.s... | 2025-09-01T07:35:38 |
golang/go | b3251514531123d7fd007682389bce7428d159a0 | 15d9fe43d648764d41a88c75889c84df5e580930 | cmd/cgo/internal/testsanitizers: skip asan tests when FIPS140 mode is on
Executing "GODEBUG=fips140=on go test -run TestASAN
./cmd/cgo/internal/testsanitizers" fails because FIPS 140 mode is
incompatible with ASAN.
Change-Id: I1a489f3398bbabf597fe7ffc0982c86c3b86e07e
Reviewed-on: https://go-review.googlesource.com/c/... | [
{
"path": "src/cmd/cgo/internal/testsanitizers/asan_test.go",
"patch": "@@ -8,6 +8,7 @@ package sanitizers_test\n \n import (\n \t\"bytes\"\n+\t\"crypto/fips140\"\n \t\"fmt\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n@@ -157,6 +158,10 @@ func mustHaveASAN(t *testing.T) *config {\n \t\tt.Skipf(\"sk... | 2025-07-02T14:11:37 |
nodejs/node | cb7d855f88d4caad63d6563bb78e2772382b4c0b | f270462c09ddfd770291a7c8a2cd204b2c63d730 | 2024-11-20, Version 23.3.0 (Current)
Notable changes:
doc:
* enforce strict policy to semver-major releases (Rafael Gonzaga) https://github.com/nodejs/node/pull/55732
src:
* (SEMVER-MINOR) add cli option to preserve env vars on dr (Rafael Gonzaga) https://github.com/nodejs/node/pull/55697
util:
* (SEMVER-MINOR)... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -38,7 +38,8 @@ release.\n <th title=\"LTS Until 2025-04\"><a href=\"doc/changelogs/CHANGELOG_V18.md\">18</a> (LTS)</th>\n </tr>\n <tr>\n-<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.2.0\">23.2.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.3.0\">... | 2024-11-19T13:43:37 |
vercel/next.js | a26a753fa447971db3525437542cf6a45433ef8f | 4996d9fb4e31c20776f8f555060786fff4234e7e | docs: fix snippets in getting started (#83228)
Fixing snippets in Getting Started | [
{
"path": "docs/01-app/01-getting-started/05-server-and-client-components.mdx",
"patch": "@@ -154,7 +154,7 @@ export default function Counter() {\n }\n ```\n \n-```jsx filename=\"app/ui/counter.tsx\" highlight={1} switcher\n+```jsx filename=\"app/ui/counter.js\" highlight={1} switcher\n 'use client'\n \n im... | 2025-08-29T22:38:05 |
facebook/react | 638f8e3ddc9a73036d527dfc396e21fa8862a20f | 51668692046ebd997d93c45a91f7cc1ca1479fac | Remove [ReactForget] prefix from error messages | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -93,7 +93,7 @@ export class CompilerErrorDetail {\n }\n \n toString(): string {\n- return `[ReactForget] ${this.printErrorMessage()}`;\n+ return this.printErrorMessage();\n }\n }\n ",
"additions": 1,
... | 2024-03-28T14:40:03 |
electron/electron | 1a0991a9b924534d3e1d06974616135de21129a1 | 921da723b8707d7438da1d39534e4d4d50a6f5ea | chore: bump chromium to 122.0.6261.6 (main) (#40949)
* chore: bump chromium in DEPS to 122.0.6239.2
* chore: update patches
* refactor: extensions replaced StringPiece with string_view
Ref: https://chromium-review.googlesource.com/c/chromium/src/+/5171926
* chore: bump chromium in DEPS to 122.0.6240.0
*... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '122.0.6236.2',\n+ '122.0.6261.6',\n 'node_version':\n 'v20.11.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-01-25T17:46:30 |
golang/go | 6e95fd96cc4514bb6fb39db85bb2164d717cb4da | 7755a05209177e6f2d494a08a9b98b9b31d6ee8f | crypto/ecdsa: fix crypto/x509 godoc links
Change-Id: I6a6a6964c0e8269305804dc2bb57f13f94f08ed5
Reviewed-on: https://go-review.googlesource.com/c/go/+/685236
Reviewed-by: David Chase <drchase@google.com>
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Res... | [
{
"path": "src/crypto/ecdsa/ecdsa.go",
"patch": "@@ -48,9 +48,9 @@ type PublicKey struct {\n \t// invalidate internal optimizations; moreover, [big.Int] methods are not\n \t// suitable for operating on cryptographic values. To encode and decode\n \t// PublicKey values, use [PublicKey.Bytes] and [ParseUncomp... | 2025-07-01T09:55:48 |
nodejs/node | f270462c09ddfd770291a7c8a2cd204b2c63d730 | 81f7c769e123803a6e93ffa1b8555c27ca240f09 | test: fix determining lower priority
PR-URL: https://github.com/nodejs/node/pull/55908
Fixes: https://github.com/NixOS/nixpkgs/issues/355919
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "test/parallel/test-os.js",
"patch": "@@ -84,7 +84,8 @@ assert.ok(hostname.length > 0);\n // IBMi process priority is different.\n if (!common.isIBMi) {\n const { PRIORITY_BELOW_NORMAL, PRIORITY_LOW } = os.constants.priority;\n- const LOWER_PRIORITY = os.getPriority() > PRIORITY_BELOW_NORMAL ? ... | 2024-11-20T18:25:05 |
vercel/next.js | 9fc907f14c6c07c4cd7c70f7b91e9f0b73d8b1b2 | 5f5503630489bcba56be06871daa6e785df0300b | feat: [create-next-app] generate route types after setup (#82956)
## Run `next typegen` after project creation in create-next-app
### What?
This PR adds automatic type generation after a Next.js project is
created with create-next-app.
### Why?
Running `next typegen` immediately after project creation ensures that
r... | [
{
"path": "packages/create-next-app/create-app.ts",
"patch": "@@ -17,6 +17,7 @@ import { install } from './helpers/install'\n import { isFolderEmpty } from './helpers/is-folder-empty'\n import { getOnline } from './helpers/is-online'\n import { isWriteable } from './helpers/is-writeable'\n+import { runTypeg... | 2025-08-29T21:51:13 |
facebook/react | e10a7b5cd541882a78ff659147c1a0294413ccb0 | 323b6e98a76fe6ee721f10d327a9a682334d1a97 | Don't log onRecoverableError if the current commit fail (#28665)
We didn't recover after all.
Currently we might log a recoverable error in the recovery pass. E.g.
the SSR server had an error. Then the client component fails to render
which errors again. This ends up double logging.
So if we fail to actually c... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -6004,23 +6004,23 @@ describe('ReactDOMFizzServer', () => {\n expect(reportedServerErrors.length).toBe(1);\n expect(reportedServerErrors[0].message).toBe('Oops!');\n \n+ const reportedCaughtErrors = [];\n co... | 2024-03-28T14:39:49 |
electron/electron | 921da723b8707d7438da1d39534e4d4d50a6f5ea | 3e6a038af77cc01e16bf139dc68dd8eb45483c7b | fix: dangling raw_ptr in OSRWHV destructor (#41088)
`delegated_frame_host_` holds a pointer to `delegated_frame_host_client_`.
Since `delegated_frame_host_client_` was being destroyed first, that
pointer was dangling in the OSRWHV destructor.
Also, make these two unique_ptr fields `const` since they point to the
... | [
{
"path": "shell/browser/osr/osr_render_widget_host_view.cc",
"patch": "@@ -187,6 +187,12 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n frame_rate_(frame_rate),\n size_(initial_size),\n painting_(painting),\n+ delegated_frame_host_client_{\n+ std::make_un... | 2024-01-25T01:15:32 |
golang/go | d168ad18e15c4e052260bb8c3446c90ab46fdde0 | 27ad1f50135c6de20c2afd593cdd17f47c2388e0 | slices: update TestIssue68488 to avoid false positives
Fixes #74387
Even tho we are abusing unsafe.SliceData a bit here it's probably fine;
in case this test fail, it means some memory alias is happening
which is not good for GC purposes.
We don't care about false keep alives for stack locations tho.
Change-Id: I94... | [
{
"path": "src/slices/slices_test.go",
"patch": "@@ -1454,13 +1454,16 @@ func TestRepeatPanics(t *testing.T) {\n \t}\n }\n \n+var leak *int\n+\n func TestIssue68488(t *testing.T) {\n \ts := make([]int, 3)\n \tclone := Clone(s[1:1])\n \tswitch unsafe.SliceData(clone) {\n \tcase &s[0], &s[1], &s[2]:\n \t\tt.E... | 2025-06-28T00:20:22 |
nodejs/node | eb1cb369fe6647acca73aaf262e0715ce69797f6 | 2c11d6e61cd34c40a23ec09912dffc1c2d37a6b1 | src: fix kill signal on Windows
Fixes: https://github.com/nodejs/node/issues/42923
PR-URL: https://github.com/nodejs/node/pull/55514
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> | [
{
"path": "doc/api/child_process.md",
"patch": "@@ -1700,8 +1700,8 @@ may not actually terminate the process.\n See kill(2) for reference.\n \n On Windows, where POSIX signals do not exist, the `signal` argument will be\n-ignored, and the process will be killed forcefully and abruptly (similar to\n-`'SIGKIL... | 2024-11-20T12:14:20 |
rust-lang/rust | 94f6e7efd37f1ab2f045e4f4685076696ad690fd | 0a6961d2e002bd7730c427c18c8e65e84a5991c0 | fix: filter non-value definitions in path transform | [
{
"path": "src/tools/rust-analyzer/crates/ide-db/src/path_transform.rs",
"patch": "@@ -558,6 +558,34 @@ impl Ctx<'_> {\n return None;\n }\n \n+ if matches!(\n+ def,\n+ hir::ModuleDef::Function(_)\n+ ... | 2026-02-19T04:16:52 |
facebook/react | 323b6e98a76fe6ee721f10d327a9a682334d1a97 | 9f33f699e4f832971dc0f2047129f832655a3b6d | Remove errorHydratingContainer (#28664)
I originally added this in #21021 but I didn't mention why and I don't
quite remember why. Maybe because there were no other message? However
at the time the recoverable errors mechanism didn't exist.
Today I believe all cases where this happens will trigger another
recove... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -2406,19 +2406,12 @@ describe('ReactDOMFizzServer', () => {\n },\n });\n \n- await expect(async () => {\n- // The first paint switches to client rendering due to mismatch\n- await waitForPaint([\n- ... | 2024-03-28T03:48:18 |
electron/electron | 3e6a038af77cc01e16bf139dc68dd8eb45483c7b | a05bfd332d1553aaa096f4a63d60242d46fac98f | fix: draggable regions not working (#41030)
* fix: draggable regions not working
* fix: only support app regions for main frame
---------
Co-authored-by: deepak1556 <hop2deep@gmail.com> | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -128,3 +128,4 @@ fix_restore_original_resize_performance_on_macos.patch\n feat_allow_code_cache_in_custom_schemes.patch\n enable_partition_alloc_ref_count_size.patch\n build_run_reclient_cfg_generator_after_chrome.patch\n+fix_drag_regions_not_working_after... | 2024-01-25T00:12:54 |
golang/go | 27ad1f50135c6de20c2afd593cdd17f47c2388e0 | 86fca3dcb63157b8e45e565e821e7fb098fcf368 | internal/abi: fix comment on NonEmptyInterface
Change-Id: Ia3f4e844049caf11ae67d1bd6dd48350f51c532f
Reviewed-on: https://go-review.googlesource.com/c/go/+/684375
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Keith Ra... | [
{
"path": "src/internal/abi/iface.go",
"patch": "@@ -26,7 +26,7 @@ type EmptyInterface struct {\n \tData unsafe.Pointer\n }\n \n-// EmptyInterface describes the layout of an interface that contains any methods.\n+// NonEmptyInterface describes the layout of an interface that contains any methods.\n type Non... | 2025-06-26T21:36:14 |
nodejs/node | f4cd4d97497757cdbc44c27a511e16e9d2b22367 | 172841c2ef59428bcc55cde66b43e7edc2ffc5e4 | doc: fix relative path mention in --allow-fs
PR-URL: https://github.com/nodejs/node/pull/55791
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -208,23 +208,18 @@ The valid arguments for the `--allow-fs-read` flag are:\n * Multiple paths can be allowed using multiple `--allow-fs-read` flags.\n Example `--allow-fs-read=/folder1/ --allow-fs-read=/folder1/`\n \n-Paths delimited by comma (`,`) are no longer al... | 2024-11-19T18:31:29 |
rust-lang/rust | 5bb10ae244facd131840cc66ca4e961a62eaef7c | c8cf1711c8ec329d9c3fed818ebee1fa58a3ac5d | Fix some TryEnum reference assists
- Fix `convert_to_guarded_return`
- Fix `replace_let_with_if_let`
- Fix `replace_if_let_with_match` | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_to_guarded_return.rs",
"patch": "@@ -934,6 +934,32 @@ fn foo() -> Option<i32> {\n None\n }\n \n+fn main() {\n+ let Some(x) = foo() else { return };\n+}\n+\"#,\n+ );\n+ }\n+\n+ #[test]\n+ fn convert_let_ref_stmt... | 2026-01-02T11:00:55 |
facebook/react | 51668692046ebd997d93c45a91f7cc1ca1479fac | b98b569017c1fd896159ba2430faadcf03d7bf70 | [patch] Fix control flow bug in PropagateScopeDeps
A dependency D from either an instruction or scope is poisoned if there may be a
(non-linear) jump instruction between it and the start of its immediate parent
scope. Poisoned dependencies are added as conditional dependencies to their
parent scope.
(done: reduc... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PropagateScopeDependencies.ts",
"patch": "@@ -7,6 +7,8 @@\n \n import { CompilerError } from \"../CompilerError\";\n import {\n+ BlockId,\n+ GeneratedSource,\n Identifier,\n IdentifierId,\n InstructionId,\n@@ -135,9 +137,152 @... | 2024-03-28T00:26:18 |
golang/go | 0710cce6eb0d75db1fc6c45807773f40edb14d73 | 59846af331228b28e69326412011b26b62f0c74d | [dev.simd] runtime: remove write barrier in xRegRestore
Currently, there's a write barrier in xRegRestore when it assigns
pp.xRegs.cache = gp.xRegs.state. This is bad because that gets called
on the asyncPreempt return path, where we have really limited stack
space, and we don't currently account for this write barrie... | [
{
"path": "src/runtime/mkpreempt.go",
"patch": "@@ -160,7 +160,7 @@ func writeXRegs(arch string, l *layout) {\n \tfmt.Fprintf(g.w, `\n package runtime\n \n-type xRegState struct {\n+type xRegs struct {\n `)\n \tpos := 0\n \tfor _, reg := range l.regs {",
"additions": 1,
"deletions": 1,
"language... | 2025-06-30T20:42:19 |
rust-lang/rust | 08a7b9a734c9a1d7b4bc33a4199726308c8b551d | 802ee0156a35e4e334eb32bec9a8f9ea16995494 | Remove fixme | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/toggle_macro_delimiter.rs",
"patch": "@@ -415,7 +415,6 @@ prt!{(3 + 5)}\n )\n }\n \n- // FIXME @alibektas : Inner macro_call is not seen as such. So this doesn't work.\n #[test]\n fn test_nested_macros() {\n ch... | 2026-02-19T01:53:25 |
nodejs/node | 1d01ad67737ce8b88a67850e45340377413b0c11 | d1830685b450c03f236c8f734a066304677b3d10 | doc,lib,src,test: unflag sqlite module
This commit allows the node:sqlite module to be used without
starting Node with a CLI flag. The module is still experimental.
Fixes: https://github.com/nodejs/node/issues/55854
PR-URL: https://github.com/nodejs/node/pull/55890
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -1065,14 +1065,6 @@ added:\n \n Use this flag to enable [ShadowRealm][] support.\n \n-### `--experimental-sqlite`\n-\n-<!-- YAML\n-added: v22.5.0\n--->\n-\n-Enable the experimental [`node:sqlite`][] module.\n-\n ### `--experimental-strip-types`\n \n <!-- YAML\n@@ -16... | 2024-11-19T03:23:18 |
facebook/react | b98b569017c1fd896159ba2430faadcf03d7bf70 | 2782fa2664784d7c3c941aa708349e570418103d | [DeriveMinimalDeps] Account for conditional / poisoned accesses within
conditionals
This change is needed for #2752. To minimize renaming `error.fixture` ->
`fixture` files, I'm reordering this PR to earlier in the stack.
Prior to the fix in #2752, we only expected unconditional accesses within
`depsInCurrentCon... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/DeriveMinimalDependencies.ts",
"patch": "@@ -6,7 +6,7 @@\n */\n \n import { CompilerError } from \"../CompilerError\";\n-import { GeneratedSource, Identifier, ReactiveScopeDependency } from \"../HIR\";\n+import { Identifier, Reactive... | 2024-03-28T00:26:18 |
vercel/next.js | 91d78d1035585b2eb746c4dd4615b838264c8673 | 50edb74488b0c2becf74d62a33d8b1721f09742d | [turbopack] Create a simple benchmark to measure the overhead of turbotasks (#82982)
This benchmark works by
* creating a simple busy wait function to simulate cpu bound work
- This is mostly to prove that we are measuring overheads and not some feature of small tasks. The overheads for a 1us task are ~identical t... | [
{
"path": "turbopack/crates/turbo-tasks-backend/benches/mod.rs",
"patch": "@@ -3,13 +3,14 @@\n \n use criterion::{Criterion, criterion_group, criterion_main};\n \n+pub(crate) mod overhead;\n pub(crate) mod scope_stress;\n pub(crate) mod stress;\n \n criterion_group!(\n name = turbo_tasks_backend_stress;... | 2025-08-29T15:39:19 |
golang/go | e46d586eddfdd2186d77a5e996bbd6415cfcf2f5 | 479b51ee1f78a884a45b517c1e993d91c9774e29 | cmd/compile/internal/escape: add debug hash for literal allocation optimizations
Several CLs earlier in this stack added optimizations to reduce
user allocations by recognizing and taking advantage of literals,
including CL 649555, CL 649079, and CL 649035.
This CL adds debug hashing of those changes, which enables u... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -40,6 +40,7 @@ type DebugFlags struct {\n \tInlFuncsWithClosures int `help:\"allow functions with closures to be inlined\" concurrent:\"ok\"`\n \tInlStaticInit int `help:\"allow static initialization of inlined calls\" concurren... | 2025-06-28T20:53:37 |
facebook/react | 1515cb32182e48c25369673607abb76ba773bab6 | 4d37a599e302ec11647c75b9cedfce52922256b8 | [be][sprout] Add ErrorBoundary to test exceptions in sequentialRenders | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reduce-reactive-deps/cfg-condexpr.expect.md",
"patch": "@@ -6,11 +6,18 @@\n // scope that produces x, since it is accessed unconditionally in all cfg\n // paths\n \n-function TestCondDepInConditionalExpr(props, other) {\n... | 2024-03-28T00:26:15 |
nodejs/node | bdaa898ceaf61840d030ee83b2e9adf40973544d | f8c9ab46947b2ba8289d36c919f23d3622ffebec | tools: fix riscv64 build failed
PR-URL: https://github.com/nodejs/node/pull/52888
Reviewed-By: Stewart X Addison <sxa@redhat.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "tools/v8_gypfiles/v8.gyp",
"patch": "@@ -1176,6 +1176,23 @@\n 'sources': [\n '<!@pymod_do_main(GN-scraper \"<(V8_ROOT)/BUILD.gn\" \"\\\\\"v8_base_without_compiler.*?v8_enable_wasm_gdb_remote_debugging.*?v8_current_cpu == \\\\\"riscv64\\\\\".*?sources \\\\+= \")',\n ... | 2024-11-18T15:41:23 |
electron/electron | a05bfd332d1553aaa096f4a63d60242d46fac98f | 4164ef93ad57ba30bd1fe9bf31ea922960f9cd15 | fix: on error, reset spawnedProcess (#41033)
reset spawnedProcess instance in case of error | [
{
"path": "lib/browser/api/auto-updater/squirrel-update-win.ts",
"patch": "@@ -38,6 +38,8 @@ const spawnUpdate = async function (args: string[], options: { detached: boolean\n spawnedProcess.stderr.on('data', (data) => { stderr += data; });\n \n spawnedProcess.on('error', (error) => {\n+ spawne... | 2024-01-24T22:45:08 |
vercel/next.js | 50edb74488b0c2becf74d62a33d8b1721f09742d | 11762a78fb132ab211945b87c94184c597eba7e1 | [ppr] RDC for RSCs (redo) (#80853)
## What?
This PR introduces the Resume Data Cache (RDC) functionality to improve
handling of dynamic React Server Component (RSC) requests when Partial
Pre-rendering (PPR) is enabled. This enhancement enables dynamic RSC
responses to utilize the Resume Data Cache, significantly redu... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -795,5 +795,8 @@\n \"794\": \"Invalid <Link> with <a> child. Please remove <a>.\\nLearn more: https://nextjs.org/docs/messages/invalid-new-link-with-extra-anchor\",\n \"795\": \"\\\\`%s\\\\` was called from a Server Component. Next.js should be prevent... | 2025-08-29T15:27:06 |
rust-lang/rust | baa74a85ee2e901f28576cd81429d18da99875df | c4a69d4712effc7f51c05ce01a882e69f178784a | Remove `DepKind` name plumbing.
There is a bunch of plumbing to record the string `"foo"` for each
variant `DepKind::foo`. But that's what the `Debug `impl` now produces.
So this commit removes the plumbing. | [
{
"path": "compiler/rustc_middle/src/dep_graph/dep_node.rs",
"patch": "@@ -83,10 +83,6 @@ impl DepKind {\n *self as usize\n }\n \n- pub(crate) fn name(self) -> &'static str {\n- DEP_KIND_NAMES[self.as_usize()]\n- }\n-\n /// This is the highest value a `DepKind` can have. It's us... | 2026-02-17T01:55:14 |
facebook/react | 4d37a599e302ec11647c75b9cedfce52922256b8 | a37f242f593c685f0a71a8ff35d9f0ebd4e8391a | [be][tests] Move PropagateScopeDep fixtures to separate directory | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reduce-reactive-deps/cfg-condexpr.expect.md",
"patch": "@@ -36,4 +36,12 @@ function TestCondDepInConditionalExpr(props, other) {\n }\n \n ```\n- \n\\ No newline at end of file\n+ \n+### Eval output\n+(kind: exce... | 2024-03-28T00:26:14 |
golang/go | 479b51ee1f78a884a45b517c1e993d91c9774e29 | 8002d283e8dc3d02f087a3885894c2c29fac93fa | cmd/compile/internal/escape: stop disabling literal allocation optimizations when coverage is enabled
CL 649079 and CL 649035 updated escape analysis to rewrite certain
expressions in OMAKE and OCONVIFACE nodes as optimizations to
reduce user allocations.
Part of the change in CL 649079 disabled those optimzations wh... | [
{
"path": "src/cmd/compile/internal/escape/escape.go",
"patch": "@@ -534,10 +534,6 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \tif n.Op() != ir.OMAKESLICE && n.Op() != ir.OCONVIFACE {\n \t\treturn\n \t}\n-\tif base.Flag.Cfg.CoverageInfo != nil {\n-\t\t// Avoid altering coverage resul... | 2025-06-27T22:46:27 |
nodejs/node | 775a10039a8eaa6c7d2784701c91eac1a17ba47c | b648d37ad76072f380d167baf84863507975f0ad | test_runner: error on mocking an already mocked date
Fixes #55849
PR-URL: https://github.com/nodejs/node/pull/55858
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "lib/internal/test_runner/mock/mock_timers.js",
"patch": "@@ -328,6 +328,9 @@ class MockTimers {\n #createDate() {\n kMock ??= Symbol('MockTimers');\n const NativeDateConstructor = this.#nativeDateDescriptor.value;\n+ if (NativeDateConstructor.isMock) {\n+ throw new ERR_INVALID_S... | 2024-11-17T10:25:12 |
electron/electron | 4164ef93ad57ba30bd1fe9bf31ea922960f9cd15 | d13a93fb616f90cdcd58f97c274554b0253ea35e | refactor: remove banned std::to_string() calls (#41087)
* refactor: do not use banned std::to_string() in ServiceWorkerContext::GetAllRunningWorkerInfo()
* refactor: do not use banned std::to_string() in REPORT_AND_RETURN_IF_FAILED()
* refactor: do not use banned std::to_string() in JSChunkedDataPipeGetter::OnWr... | [
{
"path": "shell/browser/api/electron_api_service_worker_context.cc",
"patch": "@@ -7,6 +7,7 @@\n #include <string_view>\n #include <utility>\n \n+#include \"base/strings/string_number_conversions.h\"\n #include \"chrome/browser/browser_process.h\"\n #include \"content/public/browser/console_message.h\"\n #... | 2024-01-24T22:43:31 |
vercel/next.js | 94414f7897499bc526218d4d395ad6a1a0266e88 | 81bd026e753515284427baff1e143ff5af1d7239 | bugfix: Bad `next.route` on `pages` dir OTel spans for `404`s / `500`s (#77150)
## Issue
- Resolves https://github.com/vercel/next.js/issues/82102
## What it Does
Prevents the root span attribute `next.route` from being overwritten
once set for a request. This resolves two issues:
1. Fixes `404`s and `500`s in the... | [
{
"path": "packages/next/src/server/lib/trace/tracer.ts",
"patch": "@@ -456,7 +456,7 @@ class NextTracerImpl implements NextTracer {\n public setRootSpanAttribute(key: AttributeNames, value: AttributeValue) {\n const spanId = context.active().getValue(rootSpanIdKey) as number\n const attributes = ... | 2025-08-29T13:50:25 |
rust-lang/rust | c4a69d4712effc7f51c05ce01a882e69f178784a | 90b994b8832e913f08930dfc5f40b001856595ca | Bring back `enum DepKind`.
It was removed in #115920 to enable it being moved to
`rustc_query_system`, a move that has recently been reversed. It's much
simpler as an enum.
Also:
- Remove the overly complicated `Debug` impl for `DepKind`.
- Remove the trivial `DepKind` associated constants (`NULL` et al.)
- Add an as... | [
{
"path": "compiler/rustc_incremental/src/assert_dep_graph.rs",
"patch": "@@ -44,9 +44,7 @@ use rustc_hir::attrs::AttributeKind;\n use rustc_hir::def_id::{CRATE_DEF_ID, DefId, LocalDefId};\n use rustc_hir::intravisit::{self, Visitor};\n use rustc_middle::bug;\n-use rustc_middle::dep_graph::{\n- DepGraphQ... | 2026-02-17T00:36:48 |
facebook/react | 0a3d1c3d31ce83d18906357c29381e722cbec8b4 | a6c6855dd12b0e3fb40b6b987e6c7ad60045c026 | Add type defs for reanimated
The reanimated babel plugin specifically looks for args to their hooks that are
callbacks, then it workletizes the body of that callback so it can run on the
main thread.
But, forget extracts that callback into a temporary variable and then replaces
the previously inlined callback as... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts",
"patch": "@@ -17,6 +17,7 @@ import {\n DEFAULT_SHAPES,\n Global,\n GlobalRegistry,\n+ installReAnimatedTypes,\n } from \"./Globals\";\n import {\n BlockId,\n@@ -357,6 +358,16 @@ const EnvironmentConfigSchema = z.object(... | 2024-03-28T12:26:22 |
golang/go | 8002d283e8dc3d02f087a3885894c2c29fac93fa | fdd7713fe5a7bc054fe08f79a1877f90c7188e53 | crypto/tls: update bogo version
This commit updates the pinned revision of BoringSSL that's used for the
BoGo integration test.
Doing this requires a few categories of config changes:
* ignoring a few new tests for features crypto/tls doesn't implement
* ignoring a few new tests that require further
investigation/... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -74,6 +74,9 @@\n \"BadRSAClientKeyExchange-5\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comment\",\n \"SupportTicketsWithSessionID\": \"We don't support session ID resumptio... | 2025-06-23T19:48:57 |
nodejs/node | 9f2885ad21f6cdc3352b3cbc777af1f0e8a2e318 | 7fa2a134af35fb794f7e618d823b3df38b104719 | Revert "src: migrate `String::Value` to `String::ValueView`"
This reverts commit 45c6a9e1f6e165eb0ab2f7b5635662aa1875c171.
PR-URL: https://github.com/nodejs/node/pull/55828
Fixes: https://github.com/nodejs/node/issues/55826
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Antoine du Hamel <duhamelanto... | [
{
"path": "src/inspector_js_api.cc",
"patch": "@@ -245,9 +245,9 @@ static void AsyncTaskScheduledWrapper(const FunctionCallbackInfo<Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n \n CHECK(args[0]->IsString());\n-\n- TwoByteValue task_name_buffer(args.GetIsolate(), args[0]);\n- S... | 2024-11-16T23:42:26 |
vercel/next.js | e657c383fd901ee829507dc2325b85f0f3ce8133 | 7b6136b0d66e0462d0dcc15d5bb634d2fa5cb26b | Turbopack: fix persistent caching test case (#83170)
### What?
The test case was broken and never tested if persistent caching was caching at all | [
{
"path": "test/e2e/persistent-caching/my-loader.js",
"patch": "@@ -1,4 +1,5 @@\n module.exports = async function myLoader(source) {\n+ console.log('Loader is running!')\n // Make webpack consider the build as large change which makes it persistent cache it sooner\n await new Promise((resolve) => setTi... | 2025-08-29T08:31:50 |
rust-lang/rust | 90b994b8832e913f08930dfc5f40b001856595ca | 1d410c58312119c1418346bec21ef5fe8e96d77e | Rename query `dep_kind`.
The next commit will bring back `enum DepKind` and there would be a
variant `DepKind::dep_kind`. This makes it impossible to have a variable
named `dep_kind`, because the `bindings_with_variant_name` lint is
overzealous. For this code:
```
let dep_kind = DepKind::dep_kind;
```
the lint will gi... | [
{
"path": "compiler/rustc_codegen_ssa/src/base.rs",
"patch": "@@ -911,7 +911,7 @@ impl CrateInfo {\n .rev()\n .copied()\n .filter(|&cnum| {\n- let link = !tcx.dep_kind(cnum).macros_only();\n+ let link = !tcx.crate_dep_kind(cnum).macros_only()... | 2026-02-17T00:37:01 |
facebook/react | a0537160771bafae90c6fd3154eeead2f2c903e7 | 9f8daa6cb5aae476cf54611874ea7522243c6ba6 | Make onUncaughtError and onCaughtError Configurable (#28641)
Stacked on #28627.
This makes error logging configurable using these
`createRoot`/`hydrateRoot` options:
```
onUncaughtError(error: mixed, errorInfo: {componentStack?: ?string}) => void
onCaughtError(error: mixed, errorInfo: {componentStack?: ?strin... | [
{
"path": "packages/react-dom/index.classic.fb.js",
"patch": "@@ -20,11 +20,8 @@ Object.assign((Internals: any), {\n \n export {\n createPortal,\n- createRoot,\n- hydrateRoot,\n findDOMNode,\n flushSync,\n- render,\n unmountComponentAtNode,\n unstable_batchedUpdates,\n unstable_createEventHan... | 2024-03-27T04:51:37 |
electron/electron | 031d6368230853fe601ff5fe36fe86789a1a4fb0 | 5ced88a90a6471ceb6d90b8582de2d31f8991132 | fix: only remove hijackable envs from foreign parent (#41079) | [
{
"path": "filenames.gni",
"patch": "@@ -656,7 +656,6 @@ filenames = {\n \"shell/common/node_includes.h\",\n \"shell/common/node_util.cc\",\n \"shell/common/node_util.h\",\n- \"shell/common/node_util_mac.mm\",\n \"shell/common/options_switches.cc\",\n \"shell/common/options_switches.h... | 2024-01-24T15:51:27 |
vercel/next.js | 186174a73ffe702072c5a38b3efba1703cec4a58 | cad41015dcaead1565bd361c7975cb32d559473d | Turbopack: fix hanging of persistent caching with webpack loaders (#83201)
### What?
When webpack loaders where invalidated after restoring from persistent cache, the process pool is not correctly recreated. It doesn't rewrite the output files to disk before creating the pool. | [
{
"path": "turbopack/crates/turbopack-node/src/evaluate.rs",
"patch": "@@ -1,4 +1,6 @@\n-use std::{borrow::Cow, iter, ops::ControlFlow, thread::available_parallelism, time::Duration};\n+use std::{\n+ borrow::Cow, iter, ops::ControlFlow, sync::Arc, thread::available_parallelism, time::Duration,\n+};\n \n ... | 2025-08-29T07:49:12 |
nodejs/node | c91ce2120c5c292f28685b364f2e3a897da751ea | 293386626aa0f7429ffef39ac6fa80f25c8fdf2f | fs: fix `getDirent().parentPath` when type is `UV_DIRENT_UNKNOWN`
PR-URL: https://github.com/nodejs/node/pull/55553
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "lib/internal/fs/utils.js",
"patch": "@@ -301,7 +301,7 @@ function getDirent(path, name, type, callback) {\n callback(err);\n return;\n }\n- callback(null, new DirentFromStats(name, stats, filepath));\n+ callback(null, new DirentFromStats(name, stats, path... | 2024-11-16T23:23:58 |
rust-lang/rust | 1d410c58312119c1418346bec21ef5fe8e96d77e | c043085801b7a884054add21a94882216df5971c | Fix a typo. | [
{
"path": "compiler/rustc_incremental/src/persist/clean.rs",
"patch": "@@ -9,7 +9,7 @@\n //! - `#[rustc_clean(cfg=\"rev2\")]` same as above, except that the\n //! fingerprints must be the SAME (along with all other fingerprints).\n //!\n-//! - `#[rustc_clean(cfg=\"rev2\", loaded_from_disk='typeck\")]` ass... | 2026-02-17T01:14:37 |
golang/go | fdd7713fe5a7bc054fe08f79a1877f90c7188e53 | 740857f529ce4074c7f9aa1d6f38db8c4a00246c | internal/goexperiment: fix godoc formatting
In internal/goexperiment fix godoc formatting (list indent, add godoc
links).
In internal/buildcfg fix godoc for Experiment.baseline.
Change-Id: I30eaba60cbf3978a375b50dda19dbb2830903bdb
Reviewed-on: https://go-review.googlesource.com/c/go/+/595915
Reviewed-by: Austin Clem... | [
{
"path": "src/internal/buildcfg/exp.go",
"patch": "@@ -25,7 +25,7 @@ type ExperimentFlags struct {\n // (This is not necessarily the set of experiments the compiler itself\n // was built with.)\n //\n-// experimentBaseline specifies the experiment flags that are enabled by\n+// Experiment.baseline specifie... | 2024-06-30T22:49:11 |
facebook/react | 6786563f3cbbc9b16d5a8187207b5bd904386e53 | 5910eb34567a8699d1faa73b546baafd94f26411 | [Fiber] Don't Rethrow Errors at the Root (#28627)
Stacked on top of #28498 for test fixes.
### Don't Rethrow
When we started React it was 1:1 setState calls a series of renders and
if they error, it errors where the setState was called. Simple. However,
then batching came and the error actually got thrown some... | [
{
"path": "packages/internal-test-utils/ReactInternalTestUtils.js",
"patch": "@@ -13,6 +13,8 @@ import simulateBrowserEventDispatch from './simulateBrowserEventDispatch';\n \n export {act} from './internalAct';\n \n+import {thrownErrors, actingUpdatesScopeDepth} from './internalAct';\n+\n function assertYie... | 2024-03-27T03:44:07 |
electron/electron | 1af9612edfdd9cd7f7d4aecd002f26ee74c0b2aa | 1300e83884595a3c89c24bd4d42f3a1bbbb6fe7d | fix: ElectronBrowserContext::PartitionKey comparisons (#41055)
* fix: ElectronBrowserContext::PartitionKey comparisons
Use c++20 default comparisons to simplify + fix PartitionKey sorting:
- The equality operator is broken. `PartitionKey{"foo", false}` is both
equal, to and less than, `PartitionKey{"foo", tru... | [
{
"path": "shell/browser/electron_browser_context.h",
"patch": "@@ -9,6 +9,7 @@\n #include <memory>\n #include <optional>\n #include <string>\n+#include <string_view>\n #include <variant>\n #include <vector>\n \n@@ -80,41 +81,22 @@ class ElectronBrowserContext : public content::BrowserContext {\n \n // pa... | 2024-01-23T15:41:44 |
nodejs/node | b67986f57a17030afc3beee7bdfa3fed30d25ba2 | 7d28de9a7991ce83e304600458e26dc958f55aa2 | doc: add `node:sqlite` to mandatory `node:` prefix list
PR-URL: https://github.com/nodejs/node/pull/55846
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/modules.md",
"patch": "@@ -519,6 +519,7 @@ modules from having a conflict with user land packages that already have\n taken the name. Currently the built-in modules that requires the `node:` prefix are:\n \n * [`node:sea`][]\n+* [`node:sqlite`][]\n * [`node:test`][]\n * [`node:test/report... | 2024-11-16T04:05:45 |
vercel/next.js | 628540fbbc9cb2cce858cba63d56e973744f2f83 | efac8e2c501ca7e523cb9507189d36320afa49b3 | Turbopack: Add new webpack loader rule/condition syntax in config (#82857)
# This PR:
- [x] Allow a condition to be specified inline within a `rule`
- [x] Support `all`/`any`/`not` for conditions
- [x] Simple flattening/optimization logic for the generated `RuleCondition` objects
- [x] Unit test coverage of flatten... | [
{
"path": "Cargo.lock",
"patch": "@@ -9482,6 +9482,7 @@ dependencies = [\n \"anyhow\",\n \"codspeed-criterion-compat\",\n \"difference\",\n+ \"either\",\n \"regex\",\n \"rstest\",\n \"rstest_reuse\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "crates/next-... | 2025-08-29T02:49:57 |
facebook/react | 5910eb34567a8699d1faa73b546baafd94f26411 | 2ec2aaea98588178525f83495669e11e96815a00 | Add Flag to Favor Hydration Performance over User Safety (#28655)
If false, this ignores text comparison checks during hydration at the
risk of privacy safety.
Since React 18 we recreate the DOM starting from the nearest Suspense
boundary if any of the text content mismatches. This ensures that if we
have nodes ... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -4423,6 +4423,7 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ // @gate favorSafetyOverHydrationPerf\n it('#24384: Suspending should halt hydration warnings but still emit hydration warnings after unsu... | 2024-03-27T02:52:46 |
electron/electron | 1300e83884595a3c89c24bd4d42f3a1bbbb6fe7d | 03a3deca181807c2b152264a11f92c70b7adc9ef | docs: fixed typos and grammatical errors (#40966)
* docs: fixed typos
* Update docs/tutorial/performance.md
Co-authored-by: Keeley Hammond <vertedinde@electronjs.org>
* Update performance.md
---------
Co-authored-by: Keeley Hammond <vertedinde@electronjs.org> | [
{
"path": "docs/tutorial/devices.md",
"patch": "@@ -33,7 +33,7 @@ clicked.\n ## WebHID API\n \n The [WebHID API](https://web.dev/hid/) can be used to access HID devices such\n-as keyboards and gamepads. Electron provides several APIs for working with\n+as keyboards and gamepads. Electron provides several A... | 2024-01-19T14:21:42 |
facebook/react | 2ec2aaea98588178525f83495669e11e96815a00 | f7aa5e0aa3e2aa51279af4b6cb5413912cacd7f5 | Add Diffs to Hydration Warnings (#28512)
Stacked on #28502.
This builds on the mechanism in #28502 by adding a diff of everything
we've collected so far to the thrown error or logged error.
This isn't actually a longest common subsequence diff. This means that
there are certain cases that can appear confusing ... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -251,7 +251,7 @@ function warnForExtraAttributes(\n ) {\n if (__DEV__) {\n attributeNames.forEach(function (attributeName) {\n- serverDifferences[attributeName] =\n+ serverDifferences[getPropNameFromAttribu... | 2024-03-27T00:02:18 |
vercel/next.js | 3c3c4dbe7fd0e6324189b2eb0c8b2282bd5b964c | 6b83df95598fb1c8711bfbbf3969292baa94c9b7 | [turbopack] Change execution and snapshot tests to check for the existence of files rather than directories (#83189)
This fixes an annoying devex issue when switching branches | [
{
"path": "turbopack/crates/turbopack-tests/tests/execution.rs",
"patch": "@@ -102,8 +102,12 @@ fn register() {\n //\n // \"Skip\" directories named `__skipped__`, which include test directories to\n // skip.\n-#[testing::fixture(\"tests/execution/*/*/*\", exclude(\"node_modules|__skipped__\"))]\n+#[testing... | 2025-08-29T00:12:51 |
golang/go | 426cf36b4d0c672dc88fc5cef9b0d5db0d2f4fe5 | ead249a2e2989c6775235058d38f0e33afdf752a | [dev.simd] runtime: save scalar registers off stack in amd64 async preemption
Asynchronous preemption must save all registers that could be in use
by Go code. Currently, it saves all of these to the goroutine stack.
As a result, the stack frame requirements of asynchronous preemption
can be rather high. On amd64, this... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -555,6 +555,8 @@ type G = g\n \n type Sudog = sudog\n \n+type XRegPerG = xRegPerG\n+\n func Getg() *G {\n \treturn getg()\n }",
"additions": 2,
"deletions": 0,
"language": "Go"
},
{
"path": "src/runtime/lockrank.go",
"patch": "@@ -... | 2025-04-30T02:55:40 |
facebook/react | f7aa5e0aa3e2aa51279af4b6cb5413912cacd7f5 | 4b8dfd6215bf855402ae1a94cb0ae4f467afca9a | Move Hydration Mismatch Errors to Throw or Log Once (Kind of) (#28502)
Stacked on #28476.
We used to `console.error` for every mismatch we found, up until the
error we threw for the hydration mismatch.
This changes it so that we build up a set of diffs up until we either
throw or complete hydrating the root/su... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzForm-test.js",
"patch": "@@ -182,7 +182,8 @@ describe('ReactDOMFizzForm', () => {\n ReactDOMClient.hydrateRoot(container, <App isClient={true} />);\n });\n }).toErrorDev(\n- 'Prop `action` did not match. Server: \"function\" Clie... | 2024-03-27T00:01:41 |
vercel/next.js | a8c9d07a026a02831af83d874a91f42dc58a8866 | b4ac90a1352f1d00971586eda457add8ae4e5c61 | add unstable_prefetch config to typescript plugin (#83181)
In #8290 i forgot to update our typescript plugin, so exporting
`unstable_prefetch` caused it to error.
This is fixed now:
<img width="871" height="145" alt="Screenshot 2025-08-28 at 17 19 18"
src="https://github.com/user-attachments/assets/ca295029-5a93-483b... | [
{
"path": "packages/next/src/server/typescript/rules/config.ts",
"patch": "@@ -12,6 +12,7 @@ import {\n LEGACY_CONFIG_EXPORT,\n } from '../constant'\n import type tsModule from 'typescript/lib/tsserverlibrary'\n+import type { AppSegmentConfig } from '../../../build/segment-config/app/app-segment-config'\n... | 2025-08-28T17:11:48 |
electron/electron | f4ee3c1b2a4a2c0ae69140a04cc76d0ffbaab320 | 6ea7da4b90fcca23ec9858a38e10d59bd98506bf | chore: bump node to v20.11.0 (main) (#40941)
* chore: bump node in DEPS to v20.11.0
* module: bootstrap module loaders in shadow realm
https://github.com/nodejs/node/pull/48655
* src: add commit hash shorthand in zlib version
https://github.com/nodejs/node/pull/50158
* v8,tools: expose necessary V8 defi... | [
{
"path": "BUILD.gn",
"patch": "@@ -9,7 +9,7 @@ import(\"//pdf/features.gni\")\n import(\"//ppapi/buildflags/buildflags.gni\")\n import(\"//printing/buildflags/buildflags.gni\")\n import(\"//testing/test.gni\")\n-import(\"//third_party/electron_node/node.gni\")\n+import(\"//third_party/electron_node/electro... | 2024-01-18T21:16:45 |
golang/go | 740857f529ce4074c7f9aa1d6f38db8c4a00246c | 9ae38be3025fa71ec2967111e0a184f886876cb1 | runtime: stash allpSnapshot on the M
findRunnable takes a snapshot of allp prior to dropping the P because
afterwards procresize may mutate allp without synchronization.
procresize is careful to never mutate the contents up to cap(allp), so
findRunnable can still safely access the Ps in the slice.
Unfortunately, grow... | [
{
"path": "src/runtime/proc.go",
"patch": "@@ -1059,6 +1059,28 @@ func (mp *m) becomeSpinning() {\n \tsched.needspinning.Store(0)\n }\n \n+// Take a snapshot of allp, for use after dropping the P.\n+//\n+// Must be called with a P, but the returned slice may be used after dropping\n+// the P. The M holds a ... | 2025-06-27T21:21:20 |
facebook/react | 4b8dfd6215bf855402ae1a94cb0ae4f467afca9a | bb66aa3cef4e42aee790200d03cf7a82659da121 | Move Hydration Warnings from the DOM Config into the Fiber reconciliation (#28476)
Stacked on #28458.
This doesn't actually really change the messages yet, it's just a
refactor.
Hydration warnings can be presented either as HTML or React JSX format.
If presented as HTML it makes more sense to make that a DOM s... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -80,7 +80,6 @@ import {\n \n let didWarnControlledToUncontrolled = false;\n let didWarnUncontrolledToControlled = false;\n-let didWarnInvalidHydration = false;\n let didWarnFormActionType = false;\n let didWarnFormActionNa... | 2024-03-26T23:04:18 |
golang/go | 9ae38be3025fa71ec2967111e0a184f886876cb1 | 4731832342f6430d6eb4cb13a00b97c3db5da993 | sync: disassociate WaitGroups from bubbles on Wait
Fix a race condition in disassociating a WaitGroup in a synctest
bubble from its bubble. We previously disassociated the WaitGroup
when count becomes 0, but this causes problems when an Add call
setting count to 0 races with one incrementing the count.
Instead, disas... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -654,6 +654,17 @@ func TestWaitGroupInBubble(t *testing.T) {\n \t})\n }\n \n+// https://go.dev/issue/74386\n+func TestWaitGroupRacingAdds(t *testing.T) {\n+\tsynctest.Run(func() {\n+\t\tvar wg sync.WaitGroup\n+\t\tfor range 100 {\n+\t\t\twg.Go... | 2025-06-27T15:46:28 |
vercel/next.js | b4ac90a1352f1d00971586eda457add8ae4e5c61 | 8d78f8f11014a02a9f7d15127bea21f9b865e428 | [test] Add esm and cjs testing for next-config-ts (#83134)
Split tests into ESM and CJS to ensure it works on both environments.
The changes are mostly:
1. Split tests into two
2. Add `-esm` and `-cjs` for each
3. Add `packageJson: { type: 'module' }` to `-esm` test
4. Renamed `tsconfig.json` -> `tsconfig.tes... | [
{
"path": "test/e2e/app-dir/next-config-ts/async-function/async-function-cjs.test.ts",
"patch": "@@ -1,11 +1,11 @@\n import { nextTestSetup } from 'e2e-utils'\n \n-describe('next-config-ts-config-as-async-function', () => {\n+describe('next-config-ts-async-function-cjs', () => {\n const { next } = nextTes... | 2025-08-28T15:45:33 |
facebook/react | dbfbfb3312db019183ef92fd2ef110cc7d807e80 | f24cf4a1af4e677dd85fce66001eee42b75b1cf7 | Update error messages (#28652)
## Overview
The error messages that say:
> ReactDOM.hydrate is no longer supported in React 18
Don't make sense in the React 19 release. Instead, they should say:
> ReactDOM.hydrate was removed in React 19.
For legacy mode, they should say:
> ReactDOM.hydrate has not be... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -2159,7 +2159,7 @@ describe('InspectedElement', () => {\n const container = document.createElement('div');\n container.innerHTML = '<div></div>';\n withErrorsOrWarningsIgnored(\n- ['React... | 2024-03-26T21:25:53 |
electron/electron | 135c542555dc14af9cc0e21a9f741a380fdec706 | 3dafb318a864b76fbe6412e00965af867da05b25 | feat: Windows integrity check (#40504)
* Add Windows integrity check feature into Electron
Co-authored-by: Weiyun Dai <weiyun.chn@gmail.com>
* Add integrity checker header file to sources
Co-authored-by: Weiyun Dai <weiyun.chn@gmail.com>
* Moved integrity checker after checking command line args
Co-auth... | [
{
"path": "BUILD.gn",
"patch": "@@ -660,6 +660,7 @@ source_set(\"electron_lib\") {\n }\n if (is_win) {\n libs += [ \"dwmapi.lib\" ]\n+ sources += [ \"shell/common/asar/archive_win.cc\" ]\n deps += [\n \"//components/crash/core/app:crash_export_thunks\",\n \"//ui/native_theme:nativ... | 2024-01-18T20:00:49 |
nodejs/node | d9540b51ebc1a97bbb109fff0825c2f0090aefa2 | 8a29648ff5604477778b279744b6df0fcc837c6a | fs: remove `dirent.path`
PR-URL: https://github.com/nodejs/node/pull/55548
Fixes: https://github.com/nodejs/node/issues/55538
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Ethan Arrowood <ethan@arrowood.d... | [
{
"path": "benchmark/fs/bench-opendirSync.js",
"patch": "@@ -8,7 +8,7 @@ tmpdir.refresh();\n \n const testFiles = fs.readdirSync('test', { withFileTypes: true })\n .filter((f) => f.isDirectory())\n- .map((f) => path.join(f.path, f.name));\n+ .map((f) => path.join(f.parentPath, f.name));\n const bench = ... | 2024-10-26T08:27:24 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.