repo
stringclasses
11 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
59.2k
files
listlengths
1
300
timestamp
timestamp[s]date
2016-04-11 04:39:55
2026-04-09 07:34:40
golang/go
6e165b4d176fb4c7fbb615b522a8b69d0b66c513
9f6590f333ee3ecd318e95ef54073fe76d1225de
cmd/compile: implement Avg64u, Hmul64, Hmul64u for wasm This lets us remove useAvg and useHmul from the division rules. The compiler is simpler and the generated code is faster. goos: wasip1 goarch: wasm pkg: internal/strconv │ old.txt │ new.txt │ ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/Wasm.rules", "patch": "@@ -2,6 +2,8 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+(Last ___) => v.Args[len(v.Args)-1]\n+\n // Lowering arithmetic\n (Add(64|32|16|8|Ptr) ...) => (I64Add ...)\n (...
2025-11-04T03:09:48
nodejs/node
0e8ae9185573f01b2c80ddf3d271e4a3383e440c
49679ddd9833dbfd20ef7af1bf8bd3d67e41993f
fs: fix cpSync handle existing symlinks PR-URL: https://github.com/nodejs/node/pull/58476 Fixes: https://github.com/nodejs/node/issues/58468 Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com>
[ { "path": "lib/internal/fs/cp/cp-sync.js", "patch": "@@ -196,7 +196,9 @@ function onLink(destStat, src, dest, verbatimSymlinks) {\n if (!isAbsolute(resolvedDest)) {\n resolvedDest = resolve(dirname(dest), resolvedDest);\n }\n- if (isSrcSubdir(resolvedSrc, resolvedDest)) {\n+ const srcIsDir = fsBin...
2025-05-27T02:46:11
vercel/next.js
3b8cd9225b5cc20b4cd80722c7ea12962a53c77e
13ae35110e0103605fb0a83c7eae747b22d1cf88
Fix error logging for `'use cache'` runtime errors in production (#86500) In production, when throwing an error in `'use cache'` at runtime, we are currently logging the obfuscated error that React is producing when crossing the cache-server boundary. This is not ideal for investigating production issues so we're also...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -606,11 +606,17 @@ export async function handler(\n },\n onAfterTaskError: () => {},\n \n- onInstrumentationRequestError: (error, _request, errorContext) =>\n+ onInstrumentationRequestError: (\n+ ...
2025-11-27T19:25:32
facebook/react
7c864c98342e6e92a992ac32c1846f13eb1a314c
19557443c8c2f54571dbb1519403cf310ad6e68b
[compiler][ez] Patch for JSX escape sequences in @babel/generator (#32131) Fall back to using JSXExpressionContainer for strings potentially containing escape sequences (a single backslash) to fix https://github.com/facebook/react/issues/32123. This is an extension of https://github.com/facebook/react/pull/29079
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -2269,7 +2269,7 @@ function codegenInstructionValue(\n * https://en.wikipedia.org/wiki/List_of_Unicode_characters#Control_codes\n */\n const STRING_REQUIRES_EXPR_CONTAINER_PATTERN =\n- /[...
2025-01-22T19:22:35
nodejs/node
49679ddd9833dbfd20ef7af1bf8bd3d67e41993f
0c6e16bc849450a450a9d2dbfbf6244c04f90642
Revert "benchmark: fix broken fs.cpSync benchmark" This reverts commit 52430b9839c31f846a788125efda82887d115e21. PR-URL: https://github.com/nodejs/node/pull/58476 Fixes: https://github.com/nodejs/node/issues/58468 Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com>
[ { "path": "benchmark/fs/bench-cpSync.js", "patch": "@@ -8,10 +8,7 @@ const tmpdir = require('../../test/common/tmpdir');\n const bench = common.createBenchmark(main, {\n n: [1, 100, 10_000],\n dereference: ['true', 'false'],\n- // When `force` is `true` the `cpSync` function is called twice the second\...
2025-05-27T23:57:34
electron/electron
8543820d98bd0ace5173218f7e803106ca23d85c
93f4a93e123a4d7e19f11aadf9afab77d5a8e92d
build: fixup concurrent builds on protected branches (#45355)
[ { "path": ".github/workflows/pipeline-electron-build-and-test-and-nan.yml", "patch": "@@ -56,8 +56,8 @@ on:\n default: false\n \n concurrency:\n- group: electron-build-and-test-and-nan-${{ inputs.target-platform }}-${{ inputs.target-arch }}-${{ github.ref }}\n- cancel-in-progress: ${{ github.ref !...
2025-01-29T21:47:25
facebook/react
19557443c8c2f54571dbb1519403cf310ad6e68b
e5a2062c80abe2118b8bd32972a5100a2b1ffa01
[compiler][repro] JSX escape sequences not printed correctly by @babel/generator (#32130) Repro for https://github.com/facebook/react/issues/32123 Note that this is only a bug when calling `@babel/generator:generate()` before transforming JSX. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](http...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/jsx-preserve-escape-character.expect.md", "patch": "@@ -0,0 +1,57 @@\n+\n+## Input\n+\n+```javascript\n+/**\n+ * Fixture showing `@babel/generator` bug with jsx attribute strings containing\n+ * escape sequences. Note t...
2025-01-22T18:52:05
vercel/next.js
e0008a9e7df9318604dcd5a47a5893c62c7bc9b2
77f60a6f582df6dea020dd65d6d59a15698ca667
fix(turbopack): Disable ES3 transforms from preset-env (#86532) Co-authored-by: Niklas Mischkulnig <4586894+mischnic@users.noreply.github.com>
[ { "path": "turbopack/crates/turbopack-ecmascript/src/transform/mod.rs", "patch": "@@ -8,7 +8,7 @@ use swc_core::{\n common::{Mark, SourceMap, comments::Comments},\n ecma::{\n ast::{ExprStmt, ModuleItem, Pass, Program, Stmt},\n- preset_env::{self, Targets},\n+ preset_env::{self,...
2025-11-27T13:37:37
golang/go
fe040658b20878bdbb9122ebc5446bc4104a7ddf
e452f4ac7de6c80e0be69a3c59ae739cfd806917
[dev.simd] simd/_gen: fix sorting ops slices Fix sorting slices to avoid panic when there are more opsDataImm than opsData (the problem occurs when generating only a subset of instructions but it may be better to keep them sorted by their own names anyway). Change-Id: Iea7fe61259e8416f16c46158d87c84b1d7a3076d Reviewe...
[ { "path": "src/simd/_gen/simdgen/gen_simdMachineOps.go", "patch": "@@ -185,13 +185,13 @@ func writeSIMDMachineOps(ops []Operation) *bytes.Buffer {\n \t\treturn compareNatural(opsData[i].OpName, opsData[j].OpName) < 0\n \t})\n \tsort.Slice(opsDataImm, func(i, j int) bool {\n-\t\treturn compareNatural(opsData...
2025-10-29T13:49:28
nodejs/node
d327cbea9aef5b97bb456e2a55e9463dc81b571c
9e35ddca4484224606aa4ac1c13e02d73fadc3ac
deps: V8: cherry-pick 249de887a8d3 Original commit message: [explicit-resource-management] Fix parsing for (using of=null;;) Apparently `using of` is allowed in the initializer position of C-style for loops. See https://github.com/tc39/proposal-explicit-resource-management/issues/248 Bug: 42203...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.12',\n+ 'v8_embedder_string': '-node.13',\n \n ##### V8 defaults for Node.js #####\n...
2025-06-05T07:51:08
vercel/next.js
d96cc5c5d4178910195a29b300cd8938494bf24d
47d309af34198c92053280ffe40e918ee258dfd0
docs: fix cache component doc grammar (#86563) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ###...
[ { "path": "docs/01-app/01-getting-started/06-cache-components.mdx", "patch": "@@ -374,7 +374,7 @@ export default async function Page() {\n }\n ```\n \n-All requests will be served a route containing same random numbers, timestamp, and UUID until the cache is revalidated.\n+All requests will be served a rout...
2025-11-27T09:33:34
electron/electron
93f4a93e123a4d7e19f11aadf9afab77d5a8e92d
ecd5d0a3a48d6cf94ee40173a58c756bbdc755ad
chore: bump node to v22.13.1 (main) (#45307) * chore: bump node in DEPS to v22.13.1 * chore: fixup GN build file * https://github.com/nodejs/node/pull/55529 * https://github.com/nodejs/node/pull/55798 * https://github.com/nodejs/node/pull/55530 * module: simplify --inspect-brk handling https://github.com...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '134.0.6968.0',\n 'node_version':\n- 'v22.11.0',\n+ 'v22.13.1',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1 }, { "p...
2025-01-29T20:41:00
facebook/react
e5a2062c80abe2118b8bd32972a5100a2b1ffa01
9b62ee71f483502db4f44220552b97757b346094
fix(react-compiler): `JSXText` emits incorrect with bracket (#32138) <!-- 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...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -2327,7 +2327,7 @@ function codegenJsxAttribute(\n }\n }\n \n-const JSX_TEXT_CHILD_REQUIRES_EXPR_CONTAINER_PATTERN = /[<>&]/;\n+const JSX_TEXT_CHILD_REQUIRES_EXPR_CONTAINER_PATTERN = /[<>&...
2025-01-22T17:04:59
golang/go
34fec512ce34fb5926aa38e0ccd0083feed94733
162ba6cc405851ee7f0d30b600de1a308321ddca
internal/strconv: extract fixed-precision ftoa from ftoaryu.go The fixed-precision ftoa algorithm is not actually documented in the Ryū paper, and it is fairly straightforward: multiply by a power of 10 to get an integer that contains the digits we need. There is also no need for separate float32 and float64 implement...
[ { "path": "src/internal/strconv/atoi.go", "patch": "@@ -41,8 +41,6 @@ const intSize = 32 << (^uint(0) >> 63)\n // IntSize is the size in bits of an int or uint value.\n const IntSize = intSize\n \n-const maxUint64 = 1<<64 - 1\n-\n // ParseUint is like [ParseInt] but for unsigned numbers.\n //\n // A sign pr...
2025-11-01T13:41:40
nodejs/node
3d22cdb7130cbf98e447e2f3f8b61e4ce8725e2c
a63126409ad4334dd5d838c39806f38c020748b9
src: remove fast API for InternalModuleStat There are several motivation for removing this: 1. The implementation does not align with InternalModuleStat, most noticably it does not namespace the path or convert it to UTF-16 before using it with std::filesystem::path on Windows which could crash on non-Englis...
[ { "path": "src/node_file.cc", "patch": "@@ -64,7 +64,6 @@ using v8::Array;\n using v8::BigInt;\n using v8::Context;\n using v8::EscapableHandleScope;\n-using v8::FastApiCallbackOptions;\n using v8::FunctionCallbackInfo;\n using v8::FunctionTemplate;\n using v8::HandleScope;\n@@ -1073,32 +1072,6 @@ static vo...
2025-06-03T10:15:39
vercel/next.js
dae80fb704c507e2af823c9235e4086037e2cf77
52ea3cbabc0fe8e6b8cc8bdcc10843586c49c013
Turbopack: Simplify the return type of `FileSystemPath::try_join` (#86523) This is probably left over from when more of `FileSystemPath` was using `turbo_task::function`s... We can't ever possibly return an error, so the wrapping `Result` isn't needed.
[ { "path": "turbopack/crates/turbo-tasks-fs/src/lib.rs", "patch": "@@ -1438,30 +1438,27 @@ impl FileSystemPath {\n ))\n }\n \n- /// Similar to [FileSystemPath::join], but returns an Option that will be\n- /// None when the joined path would leave the filesystem root.\n+ /// Similar to [F...
2025-11-26T21:35:33
electron/electron
ecd5d0a3a48d6cf94ee40173a58c756bbdc755ad
8cf2e46c1f4b0b9bf74e5d41fc95e498612c091f
fix: crash in gin::wrappable::secondweakcallback (#45368)
[ { "path": "patches/chromium/.patches", "patch": "@@ -140,3 +140,4 @@ build_add_public_config_simdutf_config.patch\n revert_code_health_clean_up_stale_macwebcontentsocclusion.patch\n build_remove_vr_directx_helpers_dependency.patch\n ignore_parse_errors_for_pkey_appusermodel_toastactivatorclsid.patch\n+feat_...
2025-01-29T18:20:37
facebook/react
9b62ee71f483502db4f44220552b97757b346094
5f05181a8b527260fc0a338edcde0e9d3b35ab20
docs(eslint-plugin-react-compiler): fix typo (#32149)
[ { "path": "compiler/packages/eslint-plugin-react-compiler/README.md", "patch": "@@ -29,7 +29,7 @@ import react from \"eslint-plugin-react\"\n export default [\n // Your existing config\n { ...pluginReact.configs.flat.recommended, settings: { react: { version: \"detect\" } } },\n-+ reactCompiler.co...
2025-01-22T15:59:50
golang/go
162ba6cc405851ee7f0d30b600de1a308321ddca
9795c7ba220702c8bbf0188a8fc28e1d482bae4f
internal/strconv: add tests and benchmarks for ftoaFixed ftoaFixed is in the next CL; this proves the tests are correct against the current implementation, and it adds a benchmark for comparison with the new implementation. Change-Id: I7ac8a1f699b693ea6d11a7122b22fc70cc135af6 Reviewed-on: https://go-review.googlesour...
[ { "path": "src/internal/strconv/fp_test.go", "patch": "@@ -99,12 +99,14 @@ func TestFp(t *testing.T) {\n \ts := bufio.NewScanner(strings.NewReader(testfp))\n \tfor lineno := 1; s.Scan(); lineno++ {\n \t\tline := s.Text()\n-\t\tif len(line) == 0 || line[0] == '#' {\n+\t\tline, _, _ = strings.Cut(line, \"#\")...
2025-11-02T14:59:59
nodejs/node
22685b8aafdea488e9f83c298cbb297581341158
91b3bd3fe62a0cf158c7c3dab8eb7997780f49d2
lib: graduate error codes that have been around for years PR-URL: https://github.com/nodejs/node/pull/58541 Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Darshan Sen <raisinten@gmail.com> Revi...
[ { "path": "doc/api/errors.md", "patch": "@@ -1796,8 +1796,6 @@ time.\n \n ### `ERR_INPUT_TYPE_NOT_ALLOWED`\n \n-> Stability: 1 - Experimental\n-\n The `--input-type` flag was used to attempt to execute a file. This flag can\n only be used with input via `--eval`, `--print`, or `STDIN`.\n \n@@ -3095,17 +3093...
2025-06-03T03:35:18
vercel/next.js
52ea3cbabc0fe8e6b8cc8bdcc10843586c49c013
1f6391ceee35ccaeedf05ce914dc2cc2da1ae9d8
Fix stale dev types causing build failure after route deletion (#86489) When running `next dev`, then stopping it, deleting a route, and running `next build`, the build would fail with a type error like: ``` .next/dev/types/validator.ts:78:39 Type error: Cannot find module '../../../app/simple-test/page.js' ``` The ...
[ { "path": "packages/next/src/lib/typescript/runTypeCheck.ts", "patch": "@@ -2,9 +2,11 @@ import path from 'path'\n import { getFormattedDiagnostic } from './diagnosticFormatter'\n import { getTypeScriptConfiguration } from './getTypeScriptConfiguration'\n import { getRequiredConfiguration } from './writeCon...
2025-11-26T21:29:49
facebook/react
5f05181a8b527260fc0a338edcde0e9d3b35ab20
b000019578a417ec0a1aeec8bda689db240cb28e
Include error name in error chunks (#32157)
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -16,6 +16,7 @@ import type {\n ReactTimeInfo,\n ReactStackTrace,\n ReactCallSite,\n+ ReactErrorInfoDev,\n } from 'shared/ReactTypes';\n import type {LazyComponent} from 'react/src/ReactLazy';\n \n@@ -2123,18 +2124,12 @@ function...
2025-01-22T15:39:00
rust-lang/rust
86da9312dc68ffb72cd1d28a99946dc4d37690c1
0c68443b0a0469e4211acca7e7b06e14f256ada8
mir-opt: Drop invalid debuginfos after SingleUseConsts.
[ { "path": "compiler/rustc_middle/src/mir/statement.rs", "patch": "@@ -1050,11 +1050,12 @@ impl<'tcx> StmtDebugInfos<'tcx> {\n self.0.extend_from_slice(debuginfos);\n }\n \n- pub fn retain<F>(&mut self, f: F)\n- where\n- F: FnMut(&StmtDebugInfo<'tcx>) -> bool,\n- {\n- self....
2026-03-10T14:15:04
golang/go
9795c7ba220702c8bbf0188a8fc28e1d482bae4f
ad5e941a4559a402fa3f428e612c58ec86471517
internal/strconv: fix pow10 off-by-one in exponent result The exact meaning of pow10 was not defined nor tested directly. Define it as pow10(e) returns mant, exp where mant/2^128 * 2**exp = 10^e. This is the most natural definition but is off-by-one from what it had been returning. Fix the off-by-one and then adjust t...
[ { "path": "src/internal/strconv/atofeisel.go", "patch": "@@ -40,7 +40,7 @@ func eiselLemire64(man uint64, exp10 int, neg bool) (f float64, ok bool) {\n \t// Normalization.\n \tclz := bits.LeadingZeros64(man)\n \tman <<= uint(clz)\n-\tretExp2 := uint64(exp2+64-float64Bias) - uint64(clz)\n+\tretExp2 := uint64...
2025-11-02T03:26:17
vercel/next.js
181c9af0b464bd0223e2c55e30506bb1e047cb77
7905cb4cc3246f20145694ee490ff4ecd926541f
Fix no-double-tailwind-execution flake (#86549) https://github.com/vercel/next.js/runs/56466402435 wait for the `patchFile` revert operation to finish before asserting ``` FAIL webpack test/e2e/app-dir/no-double-tailwind-execution/no-double-tailwind-execution.test.ts (31.136 s) no-double-tailwind-execution ✕ s...
[ { "path": "test/e2e/app-dir/no-double-tailwind-execution/no-double-tailwind-execution.test.ts", "patch": "@@ -23,33 +23,37 @@ describe('no-double-tailwind-execution', () => {\n const browser = await next.browser('/')\n expect(await browser.elementByCss('p').text()).toBe('hello world')\n \n+ funct...
2025-11-26T18:43:01
electron/electron
ae56a03e339f76cfdab9c77932026b47686af6f6
4629e449a9f50a28333d623505b52e5b66bc8895
fix: crash parsing CLSID in `shell.readShortcutLink()` (#45195) * fix: crash parsing CLSID in shell.readShortcutLink * fix: ignore clsid if it could not be set
[ { "path": "patches/chromium/.patches", "patch": "@@ -139,3 +139,4 @@ build_disable_thin_lto_mac.patch\n build_add_public_config_simdutf_config.patch\n revert_code_health_clean_up_stale_macwebcontentsocclusion.patch\n build_remove_vr_directx_helpers_dependency.patch\n+ignore_parse_errors_for_pkey_appusermode...
2025-01-27T20:22:56
rust-lang/rust
005a1eddd724bd6d3e01f66497b42164052e17ea
a7bcfc149f9b5bb871c3730086bbea5dfabd16b4
internal: Fix test_loading_rust_analyzer when rust-project.json is present load_workspace_at() looks at parent directories. If rust-analyzer is in a directory (e.g. a monorepo) where a parent directory contains a rust-project.json, that configuration wins over the Cargo.toml and the test fails. One easy way of testin...
[ { "path": "src/tools/rust-analyzer/crates/load-cargo/src/lib.rs", "patch": "@@ -744,16 +744,25 @@ mod tests {\n \n #[test]\n fn test_loading_rust_analyzer() {\n- let path = Path::new(env!(\"CARGO_MANIFEST_DIR\")).parent().unwrap().parent().unwrap();\n+ let cargo_toml_path = Path::new(e...
2026-03-10T17:43:34
facebook/react
b000019578a417ec0a1aeec8bda689db240cb28e
028c8e6cf5ce2a87147a7e03e503ce94c7a7a0cf
DevTools: support useEffectEvent and forward-fix experimental prefix support (#32106) - Adds support for `experimental_useEffectEvent`, now DevTools will be able to display this hook for inspected element - Added a use case to DevTools shell, couldn't add case, because we are using ReactTestRenderer, which has the ...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -127,6 +127,13 @@ function getPrimitiveStackCache(): Map<string, Array<any>> {\n }\n \n Dispatcher.useId();\n+\n+ if (typeof Dispatcher.useResourceEffect === 'function') {\n+ Dispatcher.useResourceEffect(() =...
2025-01-22T14:15:48
golang/go
c93cc603cd5c731d00dc019c94490edca6160841
b5353fd90a3824f4ff903e0d89cf4e63714f61d1
runtime: allow Stack to traceback goroutines in syscall _Grunning window net/http/cgi.TestCopyError calls runtime.Stack to take a stack trace of all goroutines, and searches for a specific line in that stack trace. It currently sometimes fails because it encounters the goroutine its looking for in the small window wh...
[ { "path": "src/runtime/traceback.go", "patch": "@@ -1314,7 +1314,16 @@ func tracebacksomeothers(me *g, showf func(*g) bool) {\n \t\t// from a signal handler initiated during a systemstack call.\n \t\t// The original G is still in the running state, and we want to\n \t\t// print its stack.\n-\t\tif gp.m != g...
2025-10-30T20:26:56
electron/electron
5c67cd9150bacb687f0ea651a943b98e8e36e64c
f66a0c2acff66fdf67e1ff98fd1980bed2d91563
docs: fix broken code in drag and drop example (#45332)
[ { "path": "docs/tutorial/native-file-drag-drop.md", "patch": "@@ -22,12 +22,9 @@ In `preload.js` use the [`contextBridge`][] to inject a method `window.electron.\n \n ```js\n const { contextBridge, ipcRenderer } = require('electron')\n-const path = require('node:path')\n \n contextBridge.exposeInMainWorld('...
2025-01-24T21:28:30
vercel/next.js
0683859c93e8671636c1e037450ccf358c2a3384
f71ce534a8e9429f4341998ae386b23055c5888c
Migrate app-dir-export test to be isolated (#86534) Flakey: ``` ❌ test/integration/app-dir-export/test/start.test.ts output: HEADLESS=true NEXT_TELEMETRY_DISABLED=1 CI= NEXT_TEST_CI=true IS_RETRY=undefined TRACE_PLAYWRIGHT=true CIRCLECI= GITHUB_ACTIONS= CONTINUOUS_INTEGRATION= RUN_ID= BUILD_NUMBER= JEST_JUNIT_OUTPU...
[ { "path": "test/cache-components-tests-manifest.json", "patch": "@@ -290,6 +290,13 @@\n \"test/e2e/app-dir/use-selected-layout-segment-s/use-selected-layout-segment-s.test.ts\",\n \"test/e2e/app-dir/use-server-inserted-html/use-server-inserted-html.test.ts\",\n \"test/e2e/app-dir/with-expo...
2025-11-26T15:15:55
facebook/react
028c8e6cf5ce2a87147a7e03e503ce94c7a7a0cf
18eaf51bd51fed8dfed661d64c306759101d0bfd
Add Transition Types (#32105) This adds an isomorphic API to add Transition Types, which represent the cause, to the current Transition. This is currently mainly for View Transitions but as a concept it's broader and we might expand it to more features and object types in the future. ```js import { unstable_addTransi...
[ { "path": "fixtures/view-transition/src/components/App.js", "patch": "@@ -3,6 +3,7 @@ import React, {\n useLayoutEffect,\n useEffect,\n useState,\n+ unstable_addTransitionType as addTransitionType,\n } from 'react';\n \n import Chrome from './Chrome';\n@@ -35,11 +36,23 @@ export default function App(...
2025-01-21T20:00:02
golang/go
b5353fd90a3824f4ff903e0d89cf4e63714f61d1
43491f8d52f13df3c70277f81c85809818969d77
runtime: don't panic in castogscanstatus The panic calls gopanic which may have write barriers, but castogscanstatus is called from //go:nowritebarrier contexts. The panic is dead code anyway, and appears immediately before a call to 'throw'. Change-Id: I4a8e296b71bf002295a3aa1db4f723c305ed939a Reviewed-on: https://...
[ { "path": "src/runtime/proc.go", "patch": "@@ -1254,8 +1254,8 @@ func castogscanstatus(gp *g, oldval, newval uint32) bool {\n \t\t}\n \t}\n \tprint(\"runtime: castogscanstatus oldval=\", hex(oldval), \" newval=\", hex(newval), \"\\n\")\n-\tthrow(\"castogscanstatus\")\n-\tpanic(\"not reached\")\n+\tthrow(\"b...
2025-11-03T22:29:36
vercel/next.js
f71ce534a8e9429f4341998ae386b23055c5888c
59fe222b5e4f83349462663ce073fbbbcdf03962
[test] Add test fixture for runtime error in `'use cache'` (#86499) In production, when throwing an error in `'use cache'` at runtime, we are currently logging the obfuscated error that React is producing when crossing the cache-server boundary. This is not ideal for investigating production issues so we're also loggi...
[ { "path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts", "patch": "@@ -1,6 +1,6 @@\n import { isNextDev, nextTestSetup } from 'e2e-utils'\n-import { waitForNoErrorToast } from 'next-test-utils'\n-import { getPrerenderOutput } from './utils'\n+import { retry, waitForNoErrorToast ...
2025-11-26T15:00:35
rust-lang/rust
e9d76c811afceb4a76452339a9abb4d986753c4b
5e1d741a1debd2541e5dd3274fa85b0c921a445a
fix: `match_same_arms` FP with associated consts
[ { "path": "clippy_utils/src/consts.rs", "patch": "@@ -841,7 +841,8 @@ impl<'tcx> ConstEvalCtxt<'tcx> {\n && ty.span.ctxt() == self.ctxt.get()\n && ty_name.ident.span.ctxt() == self.ctxt.get()\n && matches!(ty_path.res, Res::PrimTy(_))\n- ...
2026-03-10T15:40:48
facebook/react
18eaf51bd51fed8dfed661d64c306759101d0bfd
829401dc173d79994a3401fce24084670f55fb5c
Support eslint 8+ flat plugin syntax out of the box for eslint-plugin-react-compiler (#32120) ## Summary The current docs for the react compiler eslint plugin is based on integrating with the old-style eslint config format. This is generally fine, but most plugins (and the [official docs](https://eslint.org/docs/late...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/README.md", "patch": "@@ -18,7 +18,24 @@ npm install eslint-plugin-react-compiler --save-dev\n \n ## Usage\n \n-Add `react-compiler` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:\n+### Flat c...
2025-01-18T22:41:34
electron/electron
a467d0684ed26cdd45b022a5a70d63fa8ec6b437
75eac86506da4fd87aa7ec36478d5c196b988d4f
feat: ServiceWorkerMain (#45232) * feat: ServiceWorkerMain * refactor: disconnect remote * handle version_info_ nullptr case * initiate finish request when possible and enumerate errors * explicit name for test method * oops * fix: wait for redundant version to stop before destroying * docs: clari...
[ { "path": "docs/README.md", "patch": "@@ -127,6 +127,7 @@ These individual tutorials expand on topics discussed in the guide above.\n * [pushNotifications](api/push-notifications.md)\n * [safeStorage](api/safe-storage.md)\n * [screen](api/screen.md)\n+* [ServiceWorkerMain](api/service-worker-main.md)\n * [s...
2025-01-24T13:33:44
golang/go
43491f8d52f13df3c70277f81c85809818969d77
aa94fdf0cc693b5846a936d5cd6f3bd358093245
cmd/cgo: use the export'ed file/line in error messages When an unpinned Go pointer (or a pointer to an unpinned Go pointer) is returned from Go to C, 1 package main 2 3 import ( 4 "C" 5 ) 6 7 //export foo 8 func foo(CLine *C.char) string { 9 return C...
[ { "path": "src/cmd/cgo/main.go", "patch": "@@ -72,8 +72,8 @@ type File struct {\n \tExpFunc []*ExpFunc // exported functions for this file\n \tName map[string]*Name // map from Go name to Name\n \tNamePos map[*Name]token.Pos // map from Name to position of the first reference\n-\t...
2025-11-01T14:20:45
nodejs/node
2be863be08ff9f16eae6bb907388c354c55c3bfc
eb159a8cfd04c1a63c874e3d70b42b916604ef99
dns: fix dns query cache implementation PR-URL: https://github.com/nodejs/node/pull/58404 Refs: https://github.com/nodejs/node/pull/57640 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tim Perry <pimterry@gmail.com>
[ { "path": "src/cares_wrap.cc", "patch": "@@ -879,9 +879,9 @@ void ChannelWrap::Setup() {\n }\n \n /* We do the call to ares_init_option for caller. */\n- const int optmask =\n- ARES_OPT_FLAGS | ARES_OPT_TIMEOUTMS |\n- ARES_OPT_SOCK_STATE_CB | ARES_OPT_TRIES;\n+ const int optmask = ARES_OPT_F...
2025-06-02T15:29:36
rust-lang/rust
8fc7440ceca81538e9ff23b17cb01da01e440db4
c465c7571a9c83cdb98dbb6311a6774accc8c14a
Fix
[ { "path": "example/mini_core.rs", "patch": "@@ -10,7 +10,7 @@\n auto_traits,\n freeze_impls\n )]\n-#![cfg_attr(not(all(windows, target_env = \"gnu\")), thread_local)]\n+#![cfg_attr(not(all(windows, target_env = \"gnu\")), feature(thread_local))]\n #![no_core]\n #![allow(dead_code, internal_features,...
2026-03-10T16:04:12
facebook/react
829401dc173d79994a3401fce24084670f55fb5c
fd2d2799840d9066a752bb32bbbb07c93f64a891
[Flight] Transport custom error names in dev mode (#32116) Typed errors is not a feature that Flight currently supports. However, for presentation purposes, serializing a custom error name is something we could support today. With this PR, we're now transporting custom error names through the server-client boundary, ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2123,8 +2123,15 @@ function resolveErrorProd(response: Response): Error {\n \n function resolveErrorDev(\n response: Response,\n- errorInfo: {message: string, stack: ReactStackTrace, env: string, ...},\n+ errorInfo: {\n+ name: ...
2025-01-17T22:48:57
golang/go
aa94fdf0cc693b5846a936d5cd6f3bd358093245
4d2b03d2fc281a1883aceee3511f22d4865f8844
cmd/go: link to go.dev/doc/godebug for removed GODEBUG settings This makes the user experience better, before users would receive an unknown godebug error message, now we explicitly mention that it was removed and link to go.dev/doc/godebug where users can find more information about the removal. Additionally we keep...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -2242,9 +2242,12 @@ func CheckGodebug(verb, k, v string) error {\n \t\t}\n \t\treturn nil\n \t}\n-\tfor _, info := range godebugs.All {\n-\t\tif k == info.Name {\n-\t\t\treturn nil\n+\tif godebugs.Lookup(k) != nil {\n+\t\treturn nil\n+\t}\n+\tfor...
2025-09-08T17:54:21
electron/electron
75eac86506da4fd87aa7ec36478d5c196b988d4f
996477152d2c11098f6d154e4de9bc51c6088701
chore: bump chromium to 134.0.6968.0 (main) (#45172) * chore: bump chromium in DEPS to 134.0.6948.0 * chore: update can_create_window.patch https://chromium-review.googlesource.com/c/chromium/src/+/6151982 no patch code changes, but had to manually apply due to upstream context shear * chore: update proxy_...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '133.0.6920.0',\n+ '134.0.6968.0',\n 'node_version':\n 'v22.11.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "build/args/all.gn", "patch": ...
2025-01-24T04:07:43
vercel/next.js
13e4d08e3b173cfed3c08cbf3d8daa5416dfaa20
2846e785e7bb0e0fce975a8579ab68b7e23d13d0
Turbopack: Use `Debug` instead of `Display` for `ValueDebugFormat` impl on `RcStr` (#86522) Stuff like empty `RcStr`s look really confusing if we use `Display`. Also stop using the alternate debug mode for `String`, as it looks like the alternate flag doesn't do anything in this case.
[ { "path": "turbopack/crates/turbo-tasks/src/debug/mod.rs", "patch": "@@ -74,13 +74,13 @@ pub trait ValueDebugFormat {\n \n impl ValueDebugFormat for String {\n fn value_debug_format(&self, _depth: usize) -> ValueDebugFormatString<'_> {\n- ValueDebugFormatString::Sync(format!(\"{self:#?}\"))\n+ ...
2025-11-26T10:54:40
nodejs/node
ef9cd8f062565842ba52450093a87cd4498926dd
9dc41f27f4a07604a69d817b903f87083ba56b34
build,win: fix dll build Fixes: https://github.com/nodejs/node/issues/58208 PR-URL: https://github.com/nodejs/node/pull/58357 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/node_builtins.cc", "patch": "@@ -64,6 +64,11 @@ BuiltinLoader::BuiltinLoader()\n #endif // HAVE_AMARO\n }\n \n+std::ranges::keys_view<std::ranges::ref_view<const BuiltinSourceMap>>\n+BuiltinLoader::GetBuiltinIds() const {\n+ return std::views::keys(*source_.read());\n+}\n+\n bool BuiltinLoa...
2025-06-02T11:23:28
rust-lang/rust
8f7af978eec77c7dae8c99b738713e90c9b40a03
b9123ccd6fec1ebc09fce90d3f909998b1e6845d
fix: implement naming convention validation for `union` types. generated with ai assistance (claude sonnet 4.6).
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/diagnostics/decl_check.rs", "patch": "@@ -17,7 +17,7 @@ use std::fmt;\n \n use hir_def::{\n AdtId, ConstId, EnumId, EnumVariantId, FunctionId, HasModule, ItemContainerId, Lookup,\n- ModuleDefId, ModuleId, StaticId, StructId, TraitId, TypeAliasId, a...
2026-03-10T15:08:45
facebook/react
b25bcd460f98a0b89e5a7199a6c88112163d961f
77656c557a05951643ffecdf4efdf43b8bc73d84
[Fizz] Support Suspense boundaries anywhere (#32069) Suspense is meant to be composable but there has been a lonstanding limitation with using Suspense above the `<body>` tag of an HTML document due to peculiarities of how HTML is parsed. For instance if you used Suspense to render an entire HTML document and had a...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -135,8 +135,7 @@ export type RenderState = {\n // be null or empty when resuming.\n \n // preamble chunks\n- htmlChunks: null | Array<Chunk | PrecomputedChunk>,\n- headChunks: null | Array<Chunk | PrecomputedChunk>,...
2025-01-17T18:54:11
nodejs/node
d89657c29e69043289ae0f75d87cca634d396bff
4513e9c50fe5a380a211402b34a637261064aa69
http2: add diagnostics channel 'http2.server.stream.error' Signed-off-by: Darshan Sen <raisinten@gmail.com> PR-URL: https://github.com/nodejs/node/pull/58512 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "doc/api/diagnostics_channel.md", "patch": "@@ -1253,6 +1253,13 @@ Emitted when a stream is created on the server.\n \n Emitted when a stream is started on the server.\n \n+`http2.server.stream.error`\n+\n+* `stream` {ServerHttp2Stream}\n+* `error` {Error}\n+\n+Emitted when an error occurs during ...
2025-06-01T13:08:20
vercel/next.js
4deba0f6ea83a9a4b2ac28eb3e9a38651acfffcd
06b3c4452d36b4c2eaa9874e3a60c2e4efa6f79d
Try to improve typed-routes test flakyness (#86512) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors...
[ { "path": "test/e2e/app-dir/typed-routes/typed-links.test.ts", "patch": "@@ -11,11 +11,17 @@ describe('typed-links', () => {\n }\n \n it('should generate types for next/link', async () => {\n+ // To wait for the (dev) server to have started up.\n+ await next.render('/')\n+\n const dts = await ...
2025-11-26T09:09:04
golang/go
85bec791a0941734520217d548f80714554e5f20
17b57078ab5388d830c28965717c3cc52bb845e1
cmd/go/testdata/script: loosen list_empty_importpath for freebsd We've been seeing the flakes where we get a 'no errors' output on freebsd in addition to windows and solaris. Also allow that case to avoid flakes. For #73976 Change-Id: I6a6a696445ec908b55520d8d75e7c1f867b9c092 Reviewed-on: https://go-review.googlesou...
[ { "path": "src/cmd/go/testdata/script/list_empty_importpath.txt", "patch": "@@ -1,12 +1,15 @@\n ! go list all\n ! stderr 'panic'\n-[!GOOS:windows] [!GOOS:solaris] stderr 'invalid import path'\n-# #73976: Allow 'no errors' on Windows and Solaris until issue\n+[!GOOS:windows] [!GOOS:solaris] [!GOOS:freebsd] [...
2025-10-28T15:18:02
electron/electron
e09577b1233453d9f24ce4efcac0583494ed8f2b
26d228ccfe009400a06d0271ca84a7b08b574c1b
feat: redesign preload APIs (#45230) * feat: redesign preload APIs * docs: remove service-worker mentions for now * fix lint * remove service-worker ipc code * add filename * fix: web preferences preload not included * fix: missing common init * fix: preload bundle script error
[ { "path": "docs/api/session.md", "patch": "@@ -1330,18 +1330,43 @@ the initial state will be `interrupted`. The download will start only when the\n \n Returns `Promise<void>` - resolves when the session’s HTTP authentication cache has been cleared.\n \n-#### `ses.setPreloads(preloads)`\n+#### `ses.setPreloa...
2025-01-24T02:12:23
facebook/react
313c8c55de39cd5f009ebb033eec1666b3daa59e
d46b04a27dc9fb4c7baaa379f5a6aec1449883a1
Fix moveBefore feature detection (#32087) `moveBefore` was moved to the `ParentNode` mixin as per https://github.com/whatwg/dom/pull/1307#discussion_r1881981120 _(and was committed in https://github.com/whatwg/dom/commit/3f3e94c5beda922962dacaeb606087f57bd7f7be)_ As a result, its existence can no longer be checked on...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -780,7 +780,7 @@ const supportsMoveBefore =\n // $FlowFixMe[prop-missing]: We're doing the feature detection here.\n enableMoveBefore &&\n typeof window !== 'undefined' &&\n- typeof window.Node.prototype.moveBefor...
2025-01-17T16:42:30
golang/go
c5559344acf76c6ddbbb6f222354a2dd88e0abba
5132158ac2dee721790ad4b9f745bb6364406ea0
internal/profile: optimize Parse allocs In our case, it greatly improves the performance of continuously collecting diff profiles from the net/http/pprof endpoint, such as /debug/pprof/allocs?seconds=30. This CL is a cherry-pick of my PR upstream: https://github.com/google/pprof/pull/951 Benchmark of profile Parse f...
[ { "path": "src/internal/profile/proto.go", "patch": "@@ -24,6 +24,7 @@ package profile\n import (\n \t\"errors\"\n \t\"fmt\"\n+\t\"slices\"\n )\n \n type buffer struct {\n@@ -175,6 +176,16 @@ func le32(p []byte) uint32 {\n \treturn uint32(p[0]) | uint32(p[1])<<8 | uint32(p[2])<<16 | uint32(p[3])<<24\n }\n \...
2025-11-02T11:28:31
nodejs/node
705bcc2a006400f4f31803de0e126a1092e07478
62ba6196d40c12f56c34f38cecab061dfd4681cc
module: move Module._debug to end-of-life Was runtime deprecated 7 years ago. Probably safe to remove now. PR-URL: https://github.com/nodejs/node/pull/58473 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -1769,14 +1769,17 @@ not handle all certificate subjects correctly and should not be used.\n \n <!-- YAML\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/58473\n+ description: End-of-Life.\n - version: v9.0.0\n ...
2025-05-26T17:57:17
vercel/next.js
e64be50becbdcd795a10921983fe48534802b338
a9b6491664083b163038d8e3cc43392a544ee989
Turbopack: fixup route hashes generation (#86502) Previously, it tried to compute the hash of some pages router endpoints, even they weren't in the graph (because there is no `pages` folder)
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -83,7 +83,10 @@ use crate::{\n instrumentation::InstrumentationEndpoint,\n middleware::MiddlewareEndpoint,\n pages::PagesProject,\n- route::{Endpoint, EndpointGroup, EndpointGroupKey, EndpointGroups, Endpoints, Route},\n+ route::{\n+...
2025-11-26T09:03:08
rust-lang/rust
cd09c1a326a6989c8b6e1fbefbe62510365b88d7
badffdb6601301db8beac1ebd8c98520a146d0f8
fix: handle multi-byte UTF-8 identifiers in `NameGenerator::suggest_name` `split_numeric_suffix` used `rfind` to locate the last non-numeric character and then split at `pos + 1`. Since `rfind` returns a byte offset, this panics when the last non-numeric character is multi-byte (e.g. CJK identifiers like `日本語`). Use ...
[ { "path": "src/tools/rust-analyzer/crates/ide-db/src/syntax_helpers/suggest_name.rs", "patch": "@@ -89,6 +89,12 @@ const USELESS_METHODS: &[&str] = &[\n ///\n /// assert_eq!(generator.suggest_name(\"b2\"), \"b2\");\n /// assert_eq!(generator.suggest_name(\"b\"), \"b3\");\n+///\n+/// // Multi-byte UTF-8 iden...
2026-03-10T13:46:14
facebook/react
d46b04a27dc9fb4c7baaa379f5a6aec1449883a1
5f38ef671958a2fb054cb999d68faa8ffdc79e54
[ci] Fix maintainer output condition check (#32111) It appears GH actions treats outputs from workflow_calls to [always be strings](https://github.com/orgs/community/discussions/9343) so we need to do an explicit comparison.
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -12,7 +12,7 @@ jobs:\n uses: facebook/react/.github/workflows/shared_check_maintainer.yml@main\n \n notify:\n- if: ${{ needs.check_maintainer.outputs.is_core_team }}\n+ if: ${{ needs.check_maintainer.outputs.is_core_team == ...
2025-01-17T15:35:25
nodejs/node
7622f0d050c66bd02f578536529b3c494cf58878
0854aa33244dc5e058631070e5a8dd037241438a
src: fix FIPS init error handling If `--enable-fips` or `--force-fips` fails to be applied during `ProcessFipsOptions()`, the node process might exit with `ExitCode::kNoFailure` because `ERR_GET_REASON(ERR_peek_error())` can return `0` since `ncrypto::testFipsEnabled()` does not populate the OpenSSL error queue. You ...
[ { "path": "src/node.cc", "patch": "@@ -1167,10 +1167,7 @@ InitializeOncePerProcessInternal(const std::vector<std::string>& args,\n }\n #endif\n if (!crypto::ProcessFipsOptions()) {\n- // XXX: ERR_GET_REASON does not return something that is\n- // useful as an exit code at all.\n- resu...
2025-05-30T11:23:57
vercel/next.js
555838ecbe2cf49a2f1349870412e26806358426
bd2c871eb5cfe86739a09b6856652d61c7cc4ff0
examples: fix typos in cms-agilitycms (#82504) ## Summary Correct spelling errors in the cms-agilitycms example, including the image prop spelling and dependency imports. Bug Fixes: - Fix misspelled intersectionTreshold prop to intersectionThreshold in the Image component and its useInView configuration Enhancement...
[ { "path": "examples/cms-agilitycms/lib/api.ts", "patch": "@@ -3,7 +3,7 @@ import { CMS_LANG, CMS_CHANNEL } from \"./constants\";\n import { asyncForEach } from \"./utils\";\n export { validatePreview } from \"./preview\";\n import { normalizePosts } from \"./normalize\";\n-import { requireComponentDependanc...
2025-11-25T23:05:18
golang/go
5132158ac2dee721790ad4b9f745bb6364406ea0
361d51a6b58bccaab0559e06737c918018a7a5fa
bytes: add Buffer.Peek Fixes #73794 Change-Id: I0a57db05aacfa805213fe8278fc727e76eb8a65e GitHub-Last-Rev: 3494d93f803f21905dfd5a9d593644da69279f16 GitHub-Pull-Request: golang/go#73795 Reviewed-on: https://go-review.googlesource.com/c/go/+/674415 Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <gola...
[ { "path": "api/next/73794.txt", "patch": "@@ -0,0 +1 @@\n+pkg bytes, method (*Buffer) Peek(int) ([]uint8, error) #73794", "additions": 1, "deletions": 0 }, { "path": "doc/next/6-stdlib/99-minor/bytes/73794.md", "patch": "@@ -0,0 +1,2 @@\n+The new [Buffer.Peek] method returns the next n b...
2025-10-31T20:11:04
electron/electron
863faea542e82d18e1ec475fec04c32afa2b4f95
5aabb6bec5eed5775e106ae2c4b093b986d63ca4
chore: bump node to v22.11.0 (main) (#44530) * chore: bump node in DEPS to v22.11.0 * src: move evp stuff to ncrypto https://github.com/nodejs/node/pull/54911 * crypto: add Date fields for validTo and validFrom https://github.com/nodejs/node/pull/54159 * module: fix discrepancy between .ts and .js ht...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '133.0.6920.0',\n 'node_version':\n- 'v22.9.0',\n+ 'v22.11.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1 }, { "pa...
2025-01-22T17:16:26
rust-lang/rust
407e421f7fe7fba44863b1c216519b512d8b8948
2d76d9bc76f27b03b4899e72ce561c7ac2c5cf6b
Unify same-span labels in move error diagnostics
[ { "path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs", "patch": "@@ -990,30 +990,25 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n let bind_to = &self.body.local_decls[*local];\n let binding_span = bind_to.source_info.span;\n \n- if j == 0 {\n- ...
2026-03-10T12:13:41
facebook/react
5f38ef671958a2fb054cb999d68faa8ffdc79e54
61e713c1d31976175316c8256f4be14ba8bbdb29
Fix maintainer check condition (#32110) <!-- 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 request, please make sure the...
[ { "path": ".github/workflows/shared_label_core_team_prs.yml", "patch": "@@ -13,7 +13,7 @@ jobs:\n uses: facebook/react/.github/workflows/shared_check_maintainer.yml@main\n \n label:\n- if: ${{ needs.check_maintainer.outputs.is_core_team }}\n+ if: ${{ needs.check_maintainer.outputs.is_core_team =...
2025-01-17T15:22:34
electron/electron
5aabb6bec5eed5775e106ae2c4b093b986d63ca4
5e05dff9495aac2ac251dc45e9352a24451756ce
fix: potential crash in `chrome.tabs.update()` (#45276) fix: potential crash in chrome.tabs.update()
[ { "path": "shell/browser/extensions/api/tabs/tabs_api.cc", "patch": "@@ -651,7 +651,16 @@ bool TabsUpdateFunction::UpdateURL(const std::string& url_string,\n // will stay in the omnibox - see https://crbug.com/1085779.\n load_params.transition_type = ui::PAGE_TRANSITION_FROM_API;\n \n- web_contents_->G...
2025-01-22T16:02:29
vercel/next.js
6bfd81847fe9aff8d0dc968ce0dc536d1912c766
f585c0dd5f66986a60f538c94591156299ed0c83
Fix grammar and typos in typescript doc (#86513) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors #...
[ { "path": "docs/01-app/03-api-reference/05-config/02-typescript.mdx", "patch": "@@ -35,7 +35,7 @@ Now, when editing files, the custom plugin will be enabled. When running `next b\n \n The TypeScript plugin can help with:\n \n-- Warning if the invalid values for [segment config options](/docs/app/api-referen...
2025-11-25T22:02:47
nodejs/node
a8e9f634d3e5b0fb1a5c3f5e22a8193adba30cff
4eeb78b999067573b40893ace174b13035fb370b
src: fix possible dereference of null pointer There is a CHECK_NOT_NULL check before dereferencing node_env on line 710 in the "if" block, but there is no CHECK_NOT_NULL check before dereferencing node_env on line 721. Maybe it makes sense to put CHECK_NOT_NULL right after calling the Environment::GetCurrent function....
[ { "path": "src/node_api.cc", "patch": "@@ -704,9 +704,9 @@ void napi_module_register_by_symbol(v8::Local<v8::Object> exports,\n napi_addon_register_func init,\n int32_t module_api_version) {\n node::Environment* node_env = node::Envir...
2025-05-29T20:01:48
golang/go
388c41c412c24b751c8c09465787ae79bceca9c7
385dc33250336081c0c630938c3efede481eff76
cmd/go: skip git sha256 tests if git < 2.29 Fix test building on older Ubuntu LTS releases (that are still supported). Git SHA256 support was only included in 2.29, which came out in 2021. Check the output of `git version` and skip these tests if the version is older than that introduction. Thanks to @ianlancetaylor ...
[ { "path": "src/cmd/go/internal/modfetch/codehost/git_test.go", "patch": "@@ -16,14 +16,18 @@ import (\n \t\"io/fs\"\n \t\"log\"\n \t\"os\"\n+\t\"os/exec\"\n \t\"path\"\n \t\"path/filepath\"\n \t\"reflect\"\n+\t\"regexp\"\n \t\"runtime\"\n \t\"strings\"\n \t\"sync\"\n \t\"testing\"\n \t\"time\"\n+\n+\t\"gola...
2025-08-24T19:15:06
rust-lang/rust
10c92ecb1250f2042954b5f6d8a1b249739e672a
84442006abc09626ba04b966d42d86633de7e164
`x b error_index_generator` works even if submodules aren't checked out
[ { "path": "src/bootstrap/src/core/build_steps/tool.rs", "patch": "@@ -600,6 +600,12 @@ impl Step for ErrorIndex {\n }\n \n fn run(self, builder: &Builder<'_>) -> ToolBuildResult {\n+ builder.require_submodule(\n+ \"src/doc/reference\",\n+ Some(\"error_index_generator req...
2026-03-10T10:56:12
facebook/react
91add7bbdc1a06f9c6b71f3b41590266481b56cc
5a274a37e05ba627e3e9c8a1000bee881aeaef1c
Fix outdated maintainers list (#32102) I made a few mistakes while adding the initial list --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32102). * #32103 * __->__ #32102
[ { "path": "MAINTAINERS", "patch": "@@ -1,5 +1,4 @@\n acdlite\n-bvaughn\n eps1lon\n gaearon\n gnoff\n@@ -13,7 +12,9 @@ kassens\n lunaleaps\n mattcarrollcode\n mofeiZ\n+mvitousek\n noahlemen\n+pieterv\n poteto\n rickhanlonii\n sebmarkbage", "additions": 2, "deletions": 1 } ]
2025-01-16T20:05:40
vercel/next.js
f585c0dd5f66986a60f538c94591156299ed0c83
c0e8e55a6692fec7dfbb2a0293ee97cf3403a413
docs: fix typos in packages (#82508) ## Summary Fix typos in package documentation and templates Documentation: - Correct spelling of “bindings” in [next-swc README](https://github.com/vercel/next.js/blob/canary/packages/next-swc/README.md) - Update [gitignore](https://github.com/vercel/next.js/blob/canary/packages/...
[ { "path": "packages/next-swc/README.md", "patch": "@@ -64,7 +64,7 @@ flowchart TD\n D(next-core) --> E(next-build)\n ```\n \n-- `next-custom-transforms`: provides next-swc specific SWC transform visitors. Turbopack, and the plain next-swc bidnings (`transform`) use these transforms. Since this is a bott...
2025-11-25T17:27:26
electron/electron
3ea623364b5c3b03d803884f612016221d7b5695
cf67dc8898a1dbc76b60c4f8b50bc794f0259f5a
feat: support global shortcuts via GlobalShortcutsPortal feature with ozone/wayland (#45171) * fix: backport patch to fix systemd unit activation in Chromium This backports a patch from Chromium, which fixes systemd unit activation. That is, a globalShortcuts feature that Chromium has needs to create a systemd unit a...
[ { "path": "docs/api/global-shortcut.md", "patch": "@@ -12,9 +12,17 @@ shortcuts.\n not have the keyboard focus. This module cannot be used before the `ready`\n event of the app module is emitted.\n \n+Please also note that it is also possible to use Chromium's\n+`GlobalShortcutsPortal` implementation, which...
2025-01-22T10:59:48
nodejs/node
8e2fb67bd9a4af907b359930a9e06d6343303c25
da079e0350975bded5182cd0320e01381a944e33
test: mark `test-http2-debug` as flaky on LinuxONE PR-URL: https://github.com/nodejs/node/pull/58494 Refs: https://github.com/nodejs/node/issues/58353 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James ...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -41,6 +41,10 @@ test-esm-loader-hooks-inspect-wait: PASS, FLAKY\n # https://github.com/nodejs/node/issues/54534\n test-runner-run-watch: PASS, FLAKY\n \n+[$system==linux && $arch==s390x]\n+# https://github.com/nodejs/node/issues/58353\n+test-http2-debu...
2025-05-28T11:47:08
golang/go
385dc33250336081c0c630938c3efede481eff76
99b724f4542f4d9fb4a2ceacbbd2a6d9367dc0f6
runtime: prevent time.Timer.Reset(0) from deadlocking testing/synctest tests In Go 1.23+, timer channels behave synchronously. When we have a timer channel (i.e. !async && t.isChan) we would lock the runtime.timer.sendLock mutex at the beginning of runtime.timer.modify()'s execution. Calling time.Timer.Reset(0) withi...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -5,6 +5,7 @@\n package synctest_test\n \n import (\n+\t\"context\"\n \t\"fmt\"\n \t\"internal/synctest\"\n \t\"internal/testenv\"\n@@ -329,6 +330,31 @@ func TestAfterFuncRunsImmediately(t *testing.T) {\n \t})\n }\n \n+// TestTimerResetZeroDoNo...
2025-11-01T15:15:58
rust-lang/rust
b707e7ae52065f659f08fe6fd5858623b83da5e4
3bc6ea5673e3e292db1e5b6ecaaaa883ca5af0b8
Remove `FromCycleError` trait before code formatting Currently `QueryVTable`'s `value_from_cycle_error` function pointer uses the `FromCycleError` trait to call query cycle handling code and to construct an erroneous query output value. This trick however relies too heavily on trait impl specialization and makes those...
[ { "path": "compiler/rustc_query_impl/src/from_cycle_error.rs", "patch": "@@ -1,5 +1,6 @@\n use std::collections::VecDeque;\n use std::fmt::Write;\n+use std::iter;\n use std::ops::ControlFlow;\n \n use rustc_data_structures::fx::FxHashSet;\n@@ -9,55 +10,56 @@ use rustc_hir as hir;\n use rustc_hir::def::{DefK...
2026-03-06T12:58:10
facebook/react
35dcf02b04b3b5c539f666b86dd1910ddcee9c89
e5fdd994bf5262a6fbed5d08e93999bf0a7d234e
[rcr] Always target node (#32091) Alternative to #32071. As a follow up to #31993, the `platform` target was incorrectly being set to `browser` since it was the default argument for the build script. This corrects it to `node` and `cjs` which I think should resolve node 20 issues.
[ { "path": "compiler/packages/react-compiler-runtime/scripts/build.js", "patch": "@@ -13,11 +13,6 @@ const path = require('path');\n const {Generator} = require('npm-dts');\n \n const argv = yargs(process.argv.slice(2))\n- .options('p', {\n- alias: 'platform',\n- default: 'browser',\n- choices: ['b...
2025-01-16T18:37:13
vercel/next.js
c0e8e55a6692fec7dfbb2a0293ee97cf3403a413
0dd4ba3fd657b161550d51eb96c7e2d93cde4968
Add test for external middleware rewrite with changed headers (#49606) ### What? Within Issue https://github.com/vercel/next.js/issues/48040 / PR #49487 the middleware proxy for external rewrites was fixed. Unfortunately, this does not work when you change the headers in your middleware (according to https://vercel.c...
[ { "path": "test/e2e/middleware-rewrites/app/middleware.js", "patch": "@@ -23,6 +23,44 @@ export async function middleware(request) {\n })\n }\n \n+ if (\n+ url.pathname.includes(\n+ '/middleware-external-rewrite-body-headers-return-body'\n+ )\n+ ) {\n+ const tmpHeaders = new Headers(re...
2025-11-25T12:37:37
nodejs/node
47081ee21c9ee9954dfb059b590399cd4bf0f4d2
f77a96cd760086b659683d8f5ed90954cf933124
src: fix -Wreturn-stack-address error PR-URL: https://github.com/nodejs/node/pull/58439 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_config_file.cc", "patch": "@@ -23,7 +23,7 @@ std::optional<std::string_view> ConfigReader::GetDataFromArgs(\n } else if (it->starts_with(flag_path)) {\n // Case: \"--experimental-config-file=foo\"\n if (it->size() > flag_path.size() && (*it)[flag_path.size()] == '=') {\n-...
2025-05-28T13:56:20
golang/go
99b724f4542f4d9fb4a2ceacbbd2a6d9367dc0f6
27937289dc9fccf1f5513475145799087f39b964
cmd/go: document purego convention Fixes #23172 Change-Id: I854e399471dfa22e62fbdec9719e561c4501e5ac Reviewed-on: https://go-review.googlesource.com/c/go/+/660136 Reviewed-by: Michael Matloob <matloob@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mi...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2190,6 +2190,12 @@\n // building the package for Windows; similarly, math_386.s will be included\n // only when building the package for 32-bit x86.\n //\n+// By convention, packages with assembly implementations may provide a go-only\n+// version under the \...
2025-03-21T23:23:50
electron/electron
d7b568a1c0ab276fdec59c386b32711c08f5fa2f
fe9031eb23bfab177abdffd5fcfda7f5d709e507
ci: fix issue workflow failures (#45294)
[ { "path": ".github/workflows/branch-created.yml", "patch": "@@ -94,7 +94,7 @@ jobs:\n }))\n - name: Create Release Project Board\n if: ${{ steps.check-major-version.outputs.MAJOR }}\n- uses: dsanders11/project-actions/copy-project@8bc0bd421be3a2f9e96e160c4cb703f97cd3be55 # v...
2025-01-22T08:40:10
rust-lang/rust
acba81e6891d0bef49c3646e2ca68ffd04343e68
efe2e6c6c6cf3b66b3a97f581e3e3b71ece0d540
core doctests support panic=abort
[ { "path": "library/core/src/intrinsics/mir.rs", "patch": "@@ -62,7 +62,9 @@\n //!\n //! # Examples\n //!\n-//! ```rust\n+#![cfg_attr(panic = \"unwind\", doc = \"```rust\")]\n+// This test can't support panic=abort because it generates an UnwindContinue MIR terminator.\n+#![cfg_attr(panic = \"abort\", doc = ...
2026-02-25T01:44:11
vercel/next.js
fd7838e95dd4d07b3218d3eab069277614f59147
0daf66739d28439d009ec9e3b1bf76d3eaa0731e
[turbopack] Enable the filesystem cache for dev in canary builds (#85940) Enable the filesystem cache in canary builds in preparation for enabling it by default in the next release. It can still be disabled by explicitly setting the option to `false`. Flipping it for all users is deferred to #85975 so as not to inte...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -427,6 +427,8 @@ export interface ExperimentalConfig {\n \n /**\n * Enable filesystem cache for the turbopack dev server.\n+ *\n+ * Defaults to `true` in canary releases.\n */\n turbopackFileSystemCacheForDev?: boolean\n \n@@ ...
2025-11-25T07:22:08
facebook/react
4749dcb7c586bc82133136d0847449123b0df600
5b51a2b9e249f264b1345cc35b275464ae3ef6eb
React DevTools 6.0.1 -> 6.1.0 (#32090) List of changes in this release: * fix[DevTools]: fix HostComponent naming in filters for Native ([hoxyq](https://github.com/hoxyq) in [#32086](https://github.com/facebook/react/pull/32086)) * Fix copy functionality in Firefox ([V3RON](https://github.com/V3RON) in [#32077]...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"6.0.1\",\n+ \"version\": \"6.1.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2025-01-16T17:07:03
nodejs/node
3877800ffb60e64b02466907f9a4978c5c5b01a4
5a2344310434f6c5ebba92fc885d073bd9909ba1
doc,src,test: fix typos PR-URL: https://github.com/nodejs/node/pull/58477 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Review...
[ { "path": "doc/api/cli.md", "patch": "@@ -2625,7 +2625,7 @@ changes:\n - v23.4.0\n - v22.13.0\n pr-url: https://github.com/nodejs/node/pull/55897\n- description: Snapsnot testing is no longer experimental.\n+ description: Snapshot testing is no longer experimental.\n -->\n \n Regenerates t...
2025-05-28T08:18:47
electron/electron
e1762e6e44e898783065765048711b4f1f16743b
9d32b6ddfc4892706d3eb2aa904b01ff3b486489
fix: consume the file permission callback when used (#45267) fixes 0e5fe3f regression
[ { "path": "shell/browser/file_system_access/file_system_access_permission_context.cc", "patch": "@@ -594,7 +594,7 @@ void FileSystemAccessPermissionContext::ConfirmSensitiveEntryAccess(\n content::GlobalRenderFrameHostId frame_id,\n base::OnceCallback<void(SensitiveEntryResult)> callback) {\n DCHE...
2025-01-21T17:59:38
golang/go
89dee70484669d546fff6ca29a4717368af351ff
8683bb846dfc1460c476cfed1696aad8e681926f
runtime: prioritize panic output over racefini For some reason CL 646198 uncovered #3934 and #20018 again, but only in race mode. It turns out that because racefini does not return, and racefini is called early after main returns, we would not properly wait for a concurrent panic to complete. This would result in fair...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -788,9 +788,6 @@ func TestPanicInlined(t *testing.T) {\n // Test for issues #3934 and #20018.\n // We want to delay exiting until a panic print is complete.\n func TestPanicRace(t *testing.T) {\n-\tif race.Enabled {\n-\t\tt.Skip(\"racefini exits program be...
2025-07-30T00:36:40
rust-lang/rust
f1f0b4504a6303da44205548c2747ad346287bfc
9bbe2cd55abfd7b8f1580d4f658aad4e0801e5e8
downgrade duplicate features from hard-error -> deny-by-default
[ { "path": "compiler/rustc_error_codes/src/error_codes/E0636.md", "patch": "@@ -1,8 +1,10 @@\n+#### Note: this error code is no longer emitted by the compiler.\n+\n The same feature is enabled multiple times with `#![feature]` attributes\n \n Erroneous code example:\n \n-```compile_fail,E0636\n+```compile_fa...
2026-02-25T01:42:31
vercel/next.js
0daf66739d28439d009ec9e3b1bf76d3eaa0731e
39440fc8de5996114601a5d4967f441daefaa24c
Fix typed routes test expectations (#86487) Follow up to https://github.com/vercel/next.js/pull/86273 The typed routes test was checking for `/project/[slug]` in the `RedirectRoutes` type, but this route doesn't actually exist in the test fixture anymore. The test fixture only has redirects defined for `/blog/[catego...
[ { "path": "test/e2e/app-dir/typed-routes/typed-routes.test.ts", "patch": "@@ -6,7 +6,7 @@ type AppRoutes = \"/\" | \"/_shop/[[...category]]\" | \"/dashboard\" | \"/dashboard/set\n type AppRouteHandlerRoutes = \"/api-test\" | \"/api/docs/[...slug]\" | \"/api/shop/[[...category]]\" | \"/api/users/[id]\"\n typ...
2025-11-25T02:09:57
facebook/react
5b51a2b9e249f264b1345cc35b275464ae3ef6eb
6093f1862a1995d8c7447d5c4d803ea0bdfb9292
fix[DevTools]: support useResourceEffect (#32088) Since we've started experimenting with it, I've started seeing a spike in errors: ``` Unsupported hook in the react-debug-tools package: Missing method in Dispatcher: useResourceEffect ``` Adding missing hook to the `Dispatcher` that is proxied by React DevTool...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -731,6 +731,24 @@ function useHostTransitionStatus(): TransitionStatus {\n return status;\n }\n \n+function useResourceEffect(\n+ create: () => mixed,\n+ createDeps: Array<mixed> | void | null,\n+ update: ((resource: mixed) => ...
2025-01-16T15:42:53
nodejs/node
52430b9839c31f846a788125efda82887d115e21
de57d9b4393c74185693286280397965603439fa
benchmark: fix broken fs.cpSync benchmark PR-URL: https://github.com/nodejs/node/pull/58472 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "benchmark/fs/bench-cpSync.js", "patch": "@@ -8,7 +8,10 @@ const tmpdir = require('../../test/common/tmpdir');\n const bench = common.createBenchmark(main, {\n n: [1, 100, 10_000],\n dereference: ['true', 'false'],\n- force: ['true', 'false'],\n+ // When `force` is `true` the `cpSync` functi...
2025-05-27T16:53:04
golang/go
cbbd385cb863e4a0969de9846fdd80227ed91ad0
6aca04a73ac3ec20c39e4abe47a27370b286fc76
strconv: remove arch-specific decision in formatBase10 There is only one architecture-specific code segment left in formatBase10. Remove it for simplicity. The only affected system is ppc64le, which does add 10-20% to the runtime, but that's a ppc64le problem, not a strconv problem. Changing the "uint32" to "uint" ma...
[ { "path": "src/internal/strconv/itoa.go", "patch": "@@ -4,10 +4,7 @@\n \n package strconv\n \n-import (\n-\t\"internal/goarch\"\n-\t\"math/bits\"\n-)\n+import \"math/bits\"\n \n // FormatUint returns the string representation of i in the given base,\n // for 2 <= base <= 36. The result uses the lower-case l...
2025-10-29T16:09:18
electron/electron
9d32b6ddfc4892706d3eb2aa904b01ff3b486489
7a413ff2ad07a3fe6bd0e8f0019e1ab094300dcc
fix: `webContents.print()` with OOP printing (#45266) * fix: webContents.print() with OOP printing * Update patches/chromium/printing.patch Co-authored-by: Robo <hop2deep@gmail.com> --------- Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -604,6 +604,19 @@ index 402be34ab888cdf834d0fb65de0832e9a8021ced..82ddc92a35d824926c30279e660cc4e8\n }\n \n #if BUILDFLAG(IS_CHROMEOS)\n+diff --git a/chrome/browser/printing/printer_query_oop.cc b/chrome/browser/printing/printer_query_oop.cc\n+ind...
2025-01-21T16:39:21
facebook/react
6093f1862a1995d8c7447d5c4d803ea0bdfb9292
89dbd487fc2a47262a5e0d95b0dbb2779bbe4f97
Fix local react usage in DOM fixture (#32080) The DOM fixture hasn't worked on local builds since the UMD support was removed in https://github.com/facebook/react/pull/28735 Here we update the fixture to set the local experimental builds to window. Some of the pages are still broken, such as hydration. But these bugs...
[ { "path": ".github/workflows/runtime_build_and_test.yml", "patch": "@@ -416,7 +416,6 @@ jobs:\n - name: Ensure clean build directory\n run: rm -rf build\n - run: yarn install --frozen-lockfile\n- - run: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn\n working-di...
2025-01-16T15:33:24
vercel/next.js
cc3c9f630e1803d177bcba516d8b20dcaeb24bb5
4d7d9abc0886583f365db0f4e55258847915ff51
Turbopack: bail instead of panic (#86470) Eventual consistency strikes again We already had the infrastructure here to store a result in the swc visitor.
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -1316,7 +1316,8 @@ async fn merge_modules(\n // corresponding export in the module that exports it.\n if let Some(&module) = self.reverse_module_contexts.get(ctxt) {\n let eval_context_exports ...
2025-11-24T16:27:04
nodejs/node
c969649535b7cdbc2c89a0aac0a7676bacd0b7da
bbc059378bbb1b0a415472fdf44edfa8f675b9a4
zlib: remove mentions of unexposed Z_TREES constant `Z_TREES` is never exposed on `DefineZlibConstants()`, hence it shall be removed. This fix is applicable to v18+. Refs: https://github.com/nodejs/node/blob/main/src/node_zlib.cc PR-URL: https://github.com/nodejs/node/pull/58371 Reviewed-By: Yagiz Nizipli <yagiz@niz...
[ { "path": "doc/api/zlib.md", "patch": "@@ -615,7 +615,6 @@ Allowed flush values.\n * `zlib.constants.Z_FULL_FLUSH`\n * `zlib.constants.Z_FINISH`\n * `zlib.constants.Z_BLOCK`\n-* `zlib.constants.Z_TREES`\n \n Return codes for the compression/decompression functions. Negative\n values are errors, positive val...
2025-05-27T03:00:30
golang/go
235b4e729d22bbca25c372bcccbc2613035d37aa
d44db293f9efabac3abf718a02e7787fb961b63f
cmd/compile/internal/ssa: model right shift more precisely Prove currently checks for 0 sign bit extraction (x>>63) at the end of the pass, but it is more general and more useful (and not really more work) to model right shift during value range tracking. This handles sign bit extraction (both 0 and -1) but also makes...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"math\"\n \t\"math/bits\"\n \t\"slices\"\n+\t\"strings\"\n )\n \n type branch int\n@@ -132,7 +133,7 @@ type limit struct {\n }\n \n func (l limit) String() string {\n-\treturn fmt.Sprintf(\"sm,SM,um,UM=%d,%d,%d,%d\"...
2025-10-29T11:27:38
electron/electron
81d12fa452f63193fa0f3b483c308eb932c48e90
83666ddc3613b4633ace754bfbd32020e6dc4aba
build: fix clang-format duplicate message (#45235)
[ { "path": "script/run-clang-format.py", "patch": "@@ -369,9 +369,6 @@ def main():\n patch_file.close()\n os.unlink(patch_file.name)\n else:\n- print(\n- 'To patch these files, run:',\n- f\"$ git apply {patch_file.name}\", sep='\\n')\n file...
2025-01-20T10:05:40
facebook/react
89dbd487fc2a47262a5e0d95b0dbb2779bbe4f97
87276ef1efb340467563c107f24248653d7f7f00
fix[DevTools]: fix HostComponent naming in filters for Native (#32086) Right now we mention DOM elements as Host elements for React Native, which doesn't make sense.
[ { "path": ".eslintrc.js", "patch": "@@ -496,6 +496,7 @@ module.exports = {\n {\n files: [\n 'packages/react-devtools-extensions/**/*.js',\n+ 'packages/react-devtools-shared/src/devtools/views/**/*.js',\n 'packages/react-devtools-shared/src/hook.js',\n 'packages/react...
2025-01-16T14:17:06
vercel/next.js
7e093afb8cb1324b2aae6a16fd8b2b6e3cc577a5
d45fc5ad95eeee2218f29c0bfbf1310189ab7781
Eslint: Improve Google Tag manager third parties message (#51903) Note: new PR description written by @timneutkens ## What? Improves the detection of Google Tag Manager vs Google Analytics. As indicated by the author of this PR it was confusing that when you have Google Tag Manager set up it gives you an error mess...
[ { "path": "errors/next-script-for-ga.mdx", "patch": "@@ -1,8 +1,8 @@\n ---\n-title: Using Google Analytics with Next.js (through `next/script`)\n+title: Using Google Analytics with Next.js (through `@next/third-parties/google`)\n ---\n \n-> Prefer `next/script` component when using the inline script for Goo...
2025-11-24T13:29:52
nodejs/node
bbc059378bbb1b0a415472fdf44edfa8f675b9a4
e7255b6bab2b6ddc379bc79aa45343ecd2c125b4
esm: implement import.meta.main Boolean value to check if an ES Module is the entrypoint of the current process. Implements: #57226 Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com> PR-URL: https://github.com/nodejs/node/pull/57804 Fixes: https://github.com/nodejs/node/issues/57226 Reviewed-By: James M...
[ { "path": "doc/api/esm.md", "patch": "@@ -400,6 +400,35 @@ import { readFileSync } from 'node:fs';\n const buffer = readFileSync(new URL('./data.proto', import.meta.url));\n ```\n \n+### `import.meta.main`\n+\n+<!-- YAML\n+added:\n+ - REPLACEME\n+-->\n+\n+> Stability: 1.0 - Early development\n+\n+* {boolea...
2025-05-26T22:31:54
golang/go
d44db293f9efabac3abf718a02e7787fb961b63f
cdc6b559ca2ccac8eda7e0ed2c4745df2a32a697
go/token: fix a typo in a comment Fixes #75632 Change-Id: I71f891eb837147b6ff818ec4b2133c8c07091931 GitHub-Last-Rev: 3eeeea2dc28ef13eaef0fee7abf00ad418218f83 GitHub-Pull-Request: golang/go#76117 Reviewed-on: https://go-review.googlesource.com/c/go/+/716440 Reviewed-by: t hepudds <thepudds1460@gmail.com> Reviewed-by: ...
[ { "path": "src/go/token/position.go", "patch": "@@ -511,7 +511,7 @@ func (s *FileSet) AddExistingFiles(files ...*File) {\n \t//\t}\n \t//\n \t// because all calls to AddFile must be in increasing order.\n-\t// AddExistingFilesFiles lets us augment an existing FileSet\n+\t// AddExistingFiles lets us augment ...
2025-10-30T13:46:44