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
rust-lang/rust
03663231436d404ea16373297643210baf576c35
440655df7e84845b31d3af3ae0b7c41f8248e78b
fix: Fix extract variable on arg with comma Example --- ```rust fn main() { let x = 2; foo( x + x, $0x - x,$0 ) } ``` **Before this PR** ```rust fn main() { let x = 2; let $0var_name = x + x; foo( var_name, x - x, ) } ``` **After this PR** ```rust fn main...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/extract_variable.rs", "patch": "@@ -283,13 +283,17 @@ fn peel_parens(mut expr: ast::Expr) -> ast::Expr {\n /// Check whether the node is a valid expression which can be extracted to a variable.\n /// In general that's true for any expression...
2026-04-03T05:25:40
golang/go
07e487bc5ceb05d5fdbbec3c66f75a8a36460038
e36ae89c186a5220075ef3ee0b7e2a41470fa6dc
cmd/go: exclude vendor directories in go work use -r When using "go work use -r" to recursively add modules, vendor directories are incorrectly included. Modules under vendor/ are managed by "go mod vendor" and should not be added to go.work. The WalkDir callback in workUse did not skip directories named "vendor", un...
[ { "path": "src/cmd/go/internal/workcmd/use.go", "patch": "@@ -163,6 +163,9 @@ func workUse(ctx context.Context, s *modload.State, gowork string, wf *modfile.W\n \t\t\t\t}\n \t\t\t\treturn nil\n \t\t\t}\n+\t\t\tif d.Name() == \"vendor\" {\n+\t\t\t\treturn filepath.SkipDir\n+\t\t\t}\n \t\t\tlookDir(path)\n \t...
2026-02-12T10:50:43
electron/electron
99fce5b6ca171ac92649ee6a71f89d967e331208
7c66112e88e8401d07d1c2ce14e010e8093dd63e
fix: address upstream Chromium shift to enable `CoreAudio Tap API` for audio capture used in electron's `desktopCapturer` (🍏 macOS). (#49717) * fix: Enable CoreAudio Tap API for Audio Capture (🍏 macOS) * fix: addressed markdown issue which caused pre-commit hook failure 🧑‍🔧 : Ref : https://github.com/electron/e...
[ { "path": "docs/api/desktop-capturer.md", "patch": "@@ -94,18 +94,45 @@ The `desktopCapturer` module has the following methods:\n Returns `Promise<DesktopCapturerSource[]>` - Resolves with an array of [`DesktopCapturerSource`](structures/desktop-capturer-source.md) objects, each `DesktopCapturerSource` repr...
2026-02-10T14:06:21
vercel/next.js
196ed2b83919892d45eaf7aed80852d0c9cc38c7
9848d22842049693526f18bb5788e6d7fbc62fc4
Fix syntax contexts in server action transform (#91210) ``` let x: Ident = IdentName::new(name, span).into(); ``` should never be done. It uses `SyntaxContext::default()` for the Ident. So from swc's perspective, you are referring to a different variable than you think. When constructing an `Ident`, you should usually...
[ { "path": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -481,12 +481,15 @@ impl<C: Comments> ServerActions<C> {\n ) -> Box<Expr> {\n let mut new_params: Vec<Param> = vec![];\n \n+ let closure_bound_ident =\n+ Ident::new(atom!(\"$$ACTION_CLOSURE_...
2026-03-11T21:16:01
nodejs/node
720fefff6ac151a896128b8db95967f9bfa2e21b
e33ce7a6fe6caf8c84663c446913e7f6f46a62aa
test: fix flaky debugger test PR-URL: https://github.com/nodejs/node/pull/58324 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
[ { "path": "test/parallel/test-debugger-break.js", "patch": "@@ -53,6 +53,7 @@ const cli = startCLI([script]);\n 'marks the debugger line');\n \n await cli.command('sb(\"break.js\", 6)');\n+ await cli.waitFor(/> 6.*[.\\s\\S]*debug>/);\n assert.doesNotMatch(cli.output, /Could not resolve breakpoint/)...
2026-01-27T04:49:02
facebook/react
1d68bce19c9409ed70604d1d16b70b68ce71dc4a
ead92181bdbecc332a98daa808f341726dcaa414
[Fiber] Don't unhide a node if a direct parent offscreen is still hidden (#34821) If an inner Offscreen commits an unhide, but an outer Offscreen is still hidden but they're controlling the same DOM node then we shouldn't unhide the DOM node yet. This keeps track of whether we're directly inside a hidden offscreen. I...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -292,6 +292,9 @@ import type {Flags} from './ReactFiberFlags';\n // Allows us to avoid traversing the return path to find the nearest Offscreen ancestor.\n let offscreenSubtreeIsHidden: boolean = false;\n let offscreenSubtreeWas...
2025-10-12T23:50:06
golang/go
0359353574980629e42c73f7ed54397f7fdff321
6c083034f82ddb2a91d3fbe0f96e39f1ecd194d8
net/url: add Values.Clone This change implements a method Clone on Values that creates a deep copy of all of the subject's consistent values. CL 746800 added URL.Clone and this one therefore closes out the feature. Fixes #73450 Change-Id: I6fb95091c856e43063ab641c03034e1faaff8ed6 Reviewed-on: https://go-review.goog...
[ { "path": "api/next/73450.txt", "patch": "@@ -1 +1,2 @@\n pkg net/url, method (*URL) Clone() *URL #73450\n+pkg net/url, method (Values) Clone() Values #73450", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/net/url/73450.md", "patch"...
2026-02-18T23:12:01
electron/electron
fd0108907a1623433f3aaf2ece4bca318f60873a
3fa3e91f90ccb23f88d156fc8671ec4abfb652ae
build: fixup build attestation (#49730)
[ { "path": "script/release/uploaders/upload.py", "patch": "@@ -376,7 +376,7 @@ def upload_io_to_github(release, filename, filepath, version):\n github_output.write(\",\")\n else:\n github_output.write('UPLOADED_PATHS=')\n- github_output.write(filename)\n+ github_output.write(o...
2026-02-09T16:50:17
vercel/next.js
b1db02697c8b856ab7298ba72f4fd9e6aa7df302
29812f268ed0307ed91c224c8f55d48ee683c6c4
fix(turbopack): unref ThreadsafeFunctions to allow Node.js exit after build (#91107) ## What? Calls `unref()` on the `ThreadsafeFunction`s created in `NapiNextTurbopackCallbacks::from_js` (`throw_turbopack_internal_error` and `on_before_deferred_entries`). ## Why? These `ThreadsafeFunction`s are not unref'd, which ...
[ { "path": "crates/next-napi-bindings/src/next_api/project.rs", "patch": "@@ -421,7 +421,7 @@ pub fn project_new(\n turbo_engine_options: NapiTurboEngineOptions,\n napi_callbacks: NapiNextTurbopackCallbacksJsObject,\n ) -> napi::Result<JsObject> {\n- let napi_callbacks = NapiNextTurbopackCallbacks...
2026-03-11T19:05:52
facebook/react
ead92181bdbecc332a98daa808f341726dcaa414
d44659744fd09736793c73e93ea79048f45570ea
[Flight] Avoid unnecessary indirection when serializing debug info (#34797) When a debug channel is hooked up, and we're serializing debug models, if the result is an already outlined reference, we can emit it directly, without also outlining the reference. This would create an unnecessary indirection. Before: ``` :...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMBrowser-test.js", "patch": "@@ -3051,4 +3051,60 @@ describe('ReactFlightDOMBrowser', () => {\n `);\n }\n });\n+\n+ it('should resolve a cycle between debug info and the value it produces when using a debug channel', async ...
2025-10-10T19:44:28
nodejs/node
6beb65e00ef197fdfc392f79e7836bc1761bfd3d
d14b484c73ff15010e51b0f290845306b0443d47
2026-01-26, Version 25.5.0 (Current) Notable changes: crypto: * update root certificates to NSS 3.119 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/61419 deps: * (SEMVER-MINOR) add LIEF as a dependency (Joyee Cheung) https://github.com/nodejs/node/pull/61167 * (SEMVER-MINOR) add tools and scripts to ...
[ { "path": "CHANGELOG.md", "patch": "@@ -41,7 +41,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.4.0\">25.4.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.5.0\">25.5.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V25.md#25.4.0\">2...
2026-01-26T12:42:25
rust-lang/rust
15c6e6e0925aea95e21adad02a992f070dca0002
d9137667574db8fd54e0766f492ff5eff236ab44
Add a `handle_cycle_error` query modifier. This modifier indicates that a query has a custom handler for cycles. That custom handler must be found at `rustc_query_impl::handle_cycle_error::$name`. This eliminates the need for `specialize_query_vtables`, which is the current hack to install custom handlers. It's more ...
[ { "path": "compiler/rustc_macros/src/query.rs", "patch": "@@ -142,6 +142,7 @@ struct QueryModifiers {\n desc: Desc,\n eval_always: Option<Ident>,\n feedable: Option<Ident>,\n+ handle_cycle_error: Option<Ident>,\n no_force: Option<Ident>,\n no_hash: Option<Ident>,\n separate_provid...
2026-04-01T11:01:00
electron/electron
3fa3e91f90ccb23f88d156fc8671ec4abfb652ae
a3563422c471adb2298f728184bedb053a5110e4
docs: fix framerate limit when osr with shared texture (#49705)
[ { "path": "docs/api/web-contents.md", "patch": "@@ -2168,7 +2168,7 @@ Returns `boolean` - If _offscreen rendering_ is enabled returns whether it is cu\n * `fps` Integer\n \n If _offscreen rendering_ is enabled sets the frame rate to the specified number.\n-Only values between 1 and 240 are accepted.\n+When ...
2026-02-09T14:18:06
vercel/next.js
21b9f6ba53a82ecf99acbeb795fbe4cf16f6b762
19ff1babf0f47363194b66f6fccc2c82109a26d8
fix: correct appPaths sort order for parallel routes with route groups (#91160) ### What? Fixes webpack dev 404s when parallel routes have children nested inside a route group (e.g. `@slot` + `(b1)/page`) and when a parallel route has `page.tsx` directly inside it (e.g. `@slot/page.tsx`). ### Why? Two separate issu...
[ { "path": "packages/next/src/build/entries.ts", "patch": "@@ -43,7 +43,10 @@ import {\n } from './utils'\n import { normalizePagePath } from '../shared/lib/page-path/normalize-page-path'\n import type { ServerRuntime } from '../types'\n-import { normalizeAppPath } from '../shared/lib/router/utils/app-paths'...
2026-03-11T16:03:50
facebook/react
d44659744fd09736793c73e93ea79048f45570ea
8454a32f3cacdcb11465cfd14d68fb3eb613815f
[Flight] Fix preload `as` attribute for stylesheets (#34760) Follow-up to #34604. For a stylesheet, we need to render `<link rel="preload" as="style" ...>`, and not `<link rel="preload" as="stylesheet" ...>`. ([ref](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Attributes/rel/preload#what_types_of_conten...
[ { "path": "packages/react-dom-bindings/src/server/ReactFlightServerConfigDOM.js", "patch": "@@ -169,7 +169,7 @@ function processLink(props: Object, formatContext: FormatContext): void {\n return;\n }\n case 'stylesheet': {\n- preload(href, 'stylesheet', {\n+ preload(href, 'style', {\...
2025-10-10T19:40:56
nodejs/node
644ba1f7e6cc67d9b68083897abd7b602a3c548f
a27052f2e0471b154b9911bd554c2d537264aa3a
module: do not wrap module._load when tracing is not enabled This prevents clobbering the stack traces with another internal frame and removes the unnecessary hoops from step-debugging. PR-URL: https://github.com/nodejs/node/pull/61479 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Marco Ippolito...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -238,15 +238,21 @@ let statCache = null;\n function wrapModuleLoad(request, parent, isMain) {\n const logLabel = `[${parent?.id || ''}] [${request}]`;\n const traceLabel = `require('${request}')`;\n+ const channel = onRequire();\n \n startT...
2026-01-26T11:20:53
electron/electron
a3563422c471adb2298f728184bedb053a5110e4
9db2290bcddd5a6e1c1f40000e0272be49bd1a10
ci: fix patches changes detected in apply patches workflow (#49701)
[ { "path": ".github/workflows/apply-patches.yml", "patch": "@@ -66,6 +66,7 @@ jobs:\n git config user.name \"Electron Bot\"\n git fetch origin refs/pull/${PR_NUMBER}/head\n git merge --squash FETCH_HEAD\n+ git commit -n -m \"Squashed commits\"\n - name: Checkout & Sync & Sa...
2026-02-06T21:48:30
vercel/next.js
187f35f28721bf633ff9082d90d123f1347cfc47
ff36c17c142d8cea81fa4b370b3288aa60e78d07
Add experimental.lightningCssFeatures config option (#90901) ### What? Adds a new `experimental.lightningCssFeatures` config option that lets users control which CSS features lightningcss should always transpile (`include`) or never transpile (`exclude`), regardless of browserslist targets. ```js // next.config.js m...
[ { "path": "Cargo.lock", "patch": "@@ -4542,6 +4542,7 @@ dependencies = [\n \"indexmap 2.13.0\",\n \"indoc\",\n \"itertools 0.10.5\",\n+ \"lightningcss\",\n \"mime_guess\",\n \"modularize_imports\",\n \"next-custom-transforms\",\n@@ -4636,6 +4637,7 @@ dependencies = [\n \"futures-util\",\n \"getrando...
2026-03-11T07:06:52
facebook/react
8454a32f3cacdcb11465cfd14d68fb3eb613815f
06fcc8f380c6a905c7bc18d94453f623cf8cbc81
devtools: fix ellipsis truncation for key values (#34796) before <img width="349" height="73" alt="Screenshot 2025-10-09 at 11 38 03" src="https://github.com/user-attachments/assets/93fec45d-4ef2-498f-9550-36ff807b63f9" /> after <img width="349" height="73" alt="Screenshot 2025-10-09 at 11 38 39" src="https://github....
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/Element.js", "patch": "@@ -181,9 +181,7 @@ export default function Element({data, index, style}: Props): React.Node {\n className={styles.KeyValue}\n title={key}\n onDoubleClick={handleKeyDouble...
2025-10-10T18:05:49
golang/go
6c083034f82ddb2a91d3fbe0f96e39f1ecd194d8
73db2f85aab25c06f47c832364600d2c5e243ffa
testing: fix construction of the testing artifacts path The existing implementation had a few problems: - It constructs a path which starts with a forward slash, which is then immediately rejected by filepath.Localize() as invalid. - It did not correctly remove the module path from the import path if the test was in t...
[ { "path": "src/testing/testing.go", "patch": "@@ -1363,6 +1363,21 @@ func (c *common) makeArtifactDir() (string, error) {\n \t\treturn c.makeTempDir()\n \t}\n \n+\tartifactBase := filepath.Join(artifactDir, c.relativeArtifactBase())\n+\tif err := os.MkdirAll(artifactBase, 0o777); err != nil {\n+\t\treturn \...
2026-03-05T00:46:20
electron/electron
9db2290bcddd5a6e1c1f40000e0272be49bd1a10
60d35bbaf4b52287c37b09e4f343fd8959998afb
fix: restore macos 12 support in Node 24 (#49697)
[ { "path": "patches/node/.patches", "patch": "@@ -46,3 +46,4 @@ test_make_buffer_sizes_32bit-aware_in.patch\n src_refactor_module_wrap_cc_to_update_fixedarray_get_params.patch\n src_refactor_wasmstreaming_finish_to_accept_a_callback.patch\n src_stop_using_v8_propertycallbackinfo_t_this.patch\n+build_restore_...
2026-02-06T15:48:37
vercel/next.js
ff36c17c142d8cea81fa4b370b3288aa60e78d07
38a1d1d73b6104230ba4cf5836201ba47262cab5
[turbopack] Render code frames on the turbopack side (#90534) Not that error rendering performance is critical, but it is silly to pass frame information from turbopack to js just to have js pass the same information back to native code to draw a frame.
[ { "path": "Cargo.lock", "patch": "@@ -4650,12 +4650,14 @@ dependencies = [\n \"once_cell\",\n \"owo-colors\",\n \"rand 0.10.0\",\n+ \"regex\",\n \"rustc-hash 2.1.1\",\n \"serde\",\n \"serde_json\",\n \"supports-hyperlinks\",\n \"swc_core\",\n \"terminal_hyperlink\",\n+ \"terminal_size\",\n \"tokio...
2026-03-11T01:52:40
facebook/react
06fcc8f380c6a905c7bc18d94453f623cf8cbc81
91e5c3daf11408262e1345cbbbbadd943859b748
[playground] Fix syntax error from crashing the Compiler playground (#34623) <!-- 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...
[ { "path": "compiler/apps/playground/__tests__/e2e/page.spec.ts", "patch": "@@ -314,6 +314,36 @@ test('disableMemoizationForDebugging flag works as expected', async ({\n expect(output).toMatchSnapshot('disableMemoizationForDebugging-output.txt');\n });\n \n+test('error is displayed when source has syntax e...
2025-10-09T19:02:55
golang/go
bf1b0973db38346afae460e80d18020fa7de4e8c
252a8adbc08f5b8ae97d2a857bf12810da54a11c
cmd/compile/internal/typecheck: simplify tcSliceHeader types2 handles all constant-related bounds checks in user Go code now, so it's safe to remove all constants checking in tcSliceHeader function. Fixed #77919 Change-Id: Ibc137c84792d4898eb073cdeabac175684f73746 Reviewed-on: https://go-review.googlesource.com/c/go...
[ { "path": "src/cmd/compile/internal/typecheck/expr.go", "patch": "@@ -7,7 +7,6 @@ package typecheck\n import (\n \t\"fmt\"\n \t\"go/constant\"\n-\t\"go/token\"\n \t\"internal/types/errors\"\n \t\"strings\"\n \n@@ -826,18 +825,6 @@ func tcSliceHeader(n *ir.SliceHeaderExpr) ir.Node {\n \tn.Len = DefaultLit(Ex...
2026-03-03T16:10:05
electron/electron
15dc7170ef2e432e8f340ab7242dea2d5e932f74
59e434a27fe80bd9182a4067f05e7f620d28f735
ci: fix ai-pr label commenting (#49685)
[ { "path": ".github/workflows/pull-request-labeled.yml", "patch": "@@ -60,6 +60,7 @@ jobs:\n with:\n actions: 'create-comment'\n token: ${{ steps.generate-token.outputs.token }}\n+ issue-number: ${{ github.event.pull_request.number }}\n body: |\n <!-- ai-pr -->\...
2026-02-05T19:27:46
facebook/react
91e5c3daf11408262e1345cbbbbadd943859b748
4b3e662e4ce54eb54a8701c48a967cc84a389501
fix(devtools): remove duplicated "Display density" field in General settings (#34792) <!-- 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 s...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Settings/GeneralSettings.js", "patch": "@@ -104,18 +104,6 @@ export default function GeneralSettings(_: {}): React.Node {\n ) : null}\n </div>\n \n- <div className={styles.SettingWrapper}>\n- <div className={styles.RadioL...
2025-10-09T17:38:23
vercel/next.js
7640d0bd3c35575ddc8937be4552664a52135b7b
c44558be7ad89a6dab7c20bb2cd23218b49a90ad
[turbopack] hashing improvements to turbo-persistence (#90936) ## Summary Reduces CPU overhead in turbo-persistence SST reads through three optimizations: 1. **Switch from `twox-hash` to `xxhash-rust`** — `twox_hash::XxHash3_64::with_seed(0)` heap-allocates a 192-byte secret buffer on every call. `xxhash_rust::xxh3:...
[ { "path": "Cargo.lock", "patch": "@@ -4031,7 +4031,7 @@ version = \"0.11.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5\"\n dependencies = [\n- \"twox-hash 1.6.3\",\n+ \"twox-hash\",\n ]\n \n [[package]...
2026-03-11T00:01:43
nodejs/node
a27052f2e0471b154b9911bd554c2d537264aa3a
5e104c8c03c4b466acd333a32767d4bd1cf89608
Revert "inspector: fix compressed responses" This reverts commit 186c7a9c74eaeb5742792d00fc098ecf2e971ed9. PR-URL: https://github.com/nodejs/node/pull/61502 Fixes: https://github.com/nodejs/node/issues/61501 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Lu...
[ { "path": "lib/internal/inspector/network.js", "patch": "@@ -10,15 +10,8 @@ const {\n const dc = require('diagnostics_channel');\n const { now } = require('internal/perf/utils');\n const { MIMEType } = require('internal/mime');\n-const {\n- createGunzip,\n- createInflate,\n- createBrotliDecompress,\n- c...
2026-01-26T11:10:23
electron/electron
59e434a27fe80bd9182a4067f05e7f620d28f735
dec7f937ae20ac926e2c3ff51d5d01f99b5e3ea5
refactor: use ComPtr pattern for MSIX to avoid exception handling (#49645) * Revert "fix: fix Windows MSIX release build errors (#49613)" This reverts commit 4b5d5f9dd5bb7eadec299060fc73ba1178388feb. * refactor: use WRL ComPtr pattern for MSIX to avoid exception handling The MSIX auto-updater code was using C++/Win...
[ { "path": "BUILD.gn", "patch": "@@ -420,37 +420,6 @@ action(\"electron_generate_node_defines\") {\n args = [ rebase_path(target_gen_dir) ] + rebase_path(inputs)\n }\n \n-# MSIX updater needs to be in a separate source_set because it uses C++/WinRT\n-# headers that require exceptions to be enabled.\n-sourc...
2026-02-05T18:42:28
golang/go
252a8adbc08f5b8ae97d2a857bf12810da54a11c
e7a09d1ffb8745350cb9b5ba9c495b5e066e09ab
internal/runtime/maps/: devirtualize hashing for specialized maps This change improves performance of specialized maps and opens opportunity for further improvement by inlining hashing calls in the future (right now we can't inline functions from GOASM). MapAccessBenchmarks goos: linux goarch: amd64 pkg: runtime cpu:...
[ { "path": "src/internal/runtime/maps/runtime.go", "patch": "@@ -14,6 +14,18 @@ import (\n )\n \n // Functions below pushed from runtime.\n+//\n+//go:noescape\n+//go:linkname memhash32 runtime.memhash32\n+func memhash32(p unsafe.Pointer, h uintptr) uintptr\n+\n+//go:noescape\n+//go:linkname memhash64 runtime...
2026-02-24T12:16:35
facebook/react
4b3e662e4ce54eb54a8701c48a967cc84a389501
3e1b34dc51dfc3cbada2cdd0ead5acee6998f444
[compiler] Add VoidUseMemo rule to RecommendedLatest (#34783) Adds a new error category VoidUseMemo which is only enabled in the RecommendedLatest preset for now.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -536,7 +536,8 @@ function printErrorSummary(category: ErrorCategory, message: string): string {\n case ErrorCategory.StaticComponents:\n case ErrorCategory.Suppression:\n case ErrorCategory.Syntax:\n- ...
2025-10-08T19:55:13
facebook/react
848e0e3a4f12022d396ddbc2b52fd8fa7ac31fa9
5c15c1cd3442f28044217703b5625f98c40042ee
[eprh] Update plugin config to be compatible with flat and legacy (#34762) This has been incredibly frustrating as [ESLint's own docs](https://eslint.org/docs/latest/extend/plugins#backwards-compatibility-for-legacy-configs) are clearly wrong (see #34679). This PR uses [eslint-plugin-react's setup](https://github.com...
[ { "path": "fixtures/eslint-v9/eslint.config.ts", "patch": "@@ -2,6 +2,7 @@ import {defineConfig} from 'eslint/config';\n import reactHooks from 'eslint-plugin-react-hooks';\n \n export default defineConfig([\n+ reactHooks.configs.flat['recommended-latest'],\n {\n languageOptions: {\n ecmaVersio...
2025-10-07T20:23:56
electron/electron
50381a6d579b35b436266ba9520e18a954b3b575
41c7e9bb219987700db716d851b68a2226ecf9eb
refactor: don't log error just for unsigned code (#49654)
[ { "path": "shell/common/mac/codesign_util.cc", "patch": "@@ -106,7 +106,10 @@ bool ProcessSignatureIsSameWithCurrentApp(pid_t pid) {\n status = SecCodeCheckValidity(process_code.get(), kSecCSDefaultFlags,\n self_requirement.get());\n if (status != errSecSuccess && status ...
2026-02-05T06:26:17
golang/go
e7a09d1ffb8745350cb9b5ba9c495b5e066e09ab
50d988e4e037d9d41ac223a62706dfea47a100e4
cmd/compile: use tail calls for wrappers for embedded interfaces type I interface { foo() } type S struct { I } Because I is embedded in S, S needs a foo method. We generate a wrapper function to implement (*S).foo. It just loads the embedded field I out of S and calls foo on it. When the thing in S.I its...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1306,14 +1306,14 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \t\tr := v.Reg()\n \t\tgetgFromTLS(s, r)\n-\tcase ssa.OpAMD64CALLstatic, ssa.OpAMD64CALLtail:\n+\tcase ssa.OpAMD64CALLstatic, ssa.OpAMD64CALLtail, ssa.OpAMD64CALLt...
2026-03-05T00:07:30
facebook/react
5c15c1cd3442f28044217703b5625f98c40042ee
69b4cb8df4d3c612f927942098475c7907c70808
[ci] Dry run with debug mode (#34767) Adds `--debug` to our dry run command so we can see the npm dry run output
[ { "path": ".github/workflows/compiler_prereleases.yml", "patch": "@@ -62,7 +62,7 @@ jobs:\n name: Publish packages to npm (dry run)\n run: |\n cp ./scripts/release/ci-npmrc ~/.npmrc\n- scripts/release/publish.js --ci --versionName=${{ inputs.version_name }} --tag=${{ input...
2025-10-07T19:16:18
golang/go
50d988e4e037d9d41ac223a62706dfea47a100e4
bf84b002d64d0b150818268e520fee0172a5c462
runtime: when panicking, skip ahead to previous panic While looking up the stack for a defer to run, if we come across a panic frame we can skip ahead (up) to where the previous panic was looking for a defer to run. Switch from keeping LR (the caller's pc) to PC (the frame's PC). Seems easier to reason about. Fixes ...
[ { "path": "src/runtime/panic.go", "patch": "@@ -920,7 +920,7 @@ func (p *_panic) start(pc uintptr, sp unsafe.Pointer) {\n \t// caller instead, we avoid needing to unwind through an extra\n \t// frame. It also somewhat simplifies the terminating condition for\n \t// deferreturn.\n-\tp.lr, p.fp = pc, sp\n+\tp...
2026-01-12T23:05:24
electron/electron
9740c989da1ec4d7068bc26b3110a615894a45ad
4ea2d816b8e7296c58111054fe9e0ecff253b7eb
fix: default accelerator for role-based menu items (#49558) fix: apply default accelerator for role-based menu items Co-authored-by: Kimgun3383 <tygob5247@gmail.com>
[ { "path": "docs/api/menu-item.md", "patch": "@@ -107,7 +107,7 @@ A `string` (optional) indicating the item's role, if set. Can be `undo`, `redo`,\n \n #### `menuItem.accelerator`\n \n-An `Accelerator` (optional) indicating the item's accelerator, if set.\n+An `Accelerator | null` indicating the item's accel...
2026-02-04T21:45:29
golang/go
bf84b002d64d0b150818268e520fee0172a5c462
51a8f213cdedcf2a6368437c136897d6b09a442d
crypto/x509: add more test cases for name constraints. This version of the code passes the tests, however, Go 1.25 currently fails. See I747e51edc16c1111f6a114de33af35f618793c90 for a backport of the test cases to Go 1.25 and a fix for the issue discovered there. Found as part of https://issues.chromium.org/issues/4...
[ { "path": "src/crypto/x509/name_constraints_test.go", "patch": "@@ -1656,6 +1656,174 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\t\tsans: []string{\"dns:\"},\n \t\t},\n \t},\n+\n+\t{\n+\t\tname: \"subdomain excluded constraints preclude outer wildcard names\",\n+\t\troots: []constraintsSpec{\n...
2026-03-02T09:48:29
vercel/next.js
f1f83236d26b1e5e2a503d5aabf31778674e19fd
36698c94634949eda9eb7d870416097072d6b75c
[turbopack] Add support for fixed key blocks (#90844) ## What? Adds fixed-size key block types to turbo-persistence SST files. When all entries in a key block share the same key size and value type, the 4-byte-per-entry offset table is eliminated entirely. Entry positions become a direct arithmetic calculation: `head...
[ { "path": "turbopack/crates/turbo-persistence/README.md", "patch": "@@ -108,7 +108,7 @@ The hashes are sorted.\n \n `n` is `(block size + 1) / 10`\n \n-#### Key Block\n+#### Key Block (variable-size)\n \n - 1 byte block type (1: key block with hash, 2: key block without hash)\n - 3 bytes entry count\n@@ -15...
2026-03-10T22:22:09
facebook/react
a664f5f2ee225eab810fb1a1cc36de3a68bbf47c
1384ea8230641e3fc569a510b5f1c73f3f28302d
[compiler] Fix incorrect version name (#34764) Script was using the wrong version name. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/34764). * #34765 * __->__ #34764
[ { "path": "compiler/scripts/release/publish.js", "patch": "@@ -145,10 +145,15 @@ async function main() {\n files: {exclude: ['.DS_Store']},\n });\n const truncatedHash = hash.slice(0, 7);\n- let newVersion =\n- argv.tagVersion == null || argv.tagVersion === ''\n- ? `${argv.versi...
2025-10-07T18:32:51
nodejs/node
c1402c66449372e8e0d1e62d8d7487df52fd233c
8117cb03f49e72fc24174f33471669225e3bbaa9
process: do not truncate long strings in `--print` Fixes: https://github.com/nodejs/node/issues/61337 PR-URL: https://github.com/nodejs/node/pull/61497 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "lib/internal/process/execution.js", "patch": "@@ -455,8 +455,12 @@ function runScriptInContext(name, body, breakFirstLine, print, module, baseUrl,\n if (print) {\n const { log } = require('internal/console/global');\n \n- process.on('exit', () => {\n- log(result);\n+ const printR...
2026-01-25T21:41:07
rust-lang/rust
b0c4b6ef461ea4c7c75ac8f7c259247f24b4b5c7
e6b64a2f4c696b840f8a384ec28690eed6a5d267
fix(std): avoid AT_MINSIGSTKSZ on uclibc targets
[ { "path": "library/std/src/sys/pal/unix/stack_overflow.rs", "patch": "@@ -305,7 +305,7 @@ mod imp {\n }\n \n /// Modern kernels on modern hardware can have dynamic signal stack sizes.\n- #[cfg(any(target_os = \"linux\", target_os = \"android\"))]\n+ #[cfg(all(any(target_os = \"linux\", target_...
2026-04-02T21:32:49
golang/go
cbab448de1c562e417b179d29f99758f4680630b
2ebb15729599c71c4bb9ea83849315e214c81b78
crypto/x509: fix name constraint checking panic Apparently we allow empty dNSName SANs (e.g. a domain name of ""), which causes the excluded domain name wildcard checking to panic, because we assume names are always non-empty. RFC 5280 appears to say the empty string should not be accepted, although confusingly refers...
[ { "path": "src/crypto/x509/constraints.go", "patch": "@@ -375,7 +375,7 @@ func (dnc *dnsConstraints) query(s string) (string, bool) {\n \t\treturn constraint, true\n \t}\n \n-\tif !dnc.permitted && s[0] == '*' {\n+\tif !dnc.permitted && len(s) > 0 && s[0] == '*' {\n \t\ttrimmed := trimFirstLabel(s)\n \t\tif...
2026-02-11T22:49:13
golang/go
2ebb15729599c71c4bb9ea83849315e214c81b78
fb16297ae571a232e46a67e6e40027f1f82ef6ec
crypto/x509: fix full email constraint matching For full email addresses (local@domain), we stored a map between the case sensitive local portion to the case insensitive domain portion, and used that to check if a email SAN matched the constraint. This could be abused, because it was a map[string]string, meaning if an...
[ { "path": "src/crypto/x509/constraints.go", "patch": "@@ -58,11 +58,11 @@ import (\n // of nameConstraintsSet, to handle constraints which define full email\n // addresses (i.e. 'test@example.com'). For bare domain constraints, we use the\n // dnsConstraints type described above, querying the domain portion...
2026-02-11T23:16:38
electron/electron
6a47bb47315d68570db2767e91cb2d6ff0bc996f
ef11669b67c6b025207077c27b3beb04a72722a0
fix: use `temp` directory for singleton test and clean up at end (#49604) * fix: create directory for singleton test in `temp` instead of `home` * fix: remove directory for singleton test at test end * refactor: avoid extraneous declarations in singleton test * refactor: reintroduce `userDataFolder` declaration in ...
[ { "path": "spec/fixtures/api/singleton-userdata/main.js", "patch": "@@ -3,11 +3,17 @@ const { app } = require('electron');\n const fs = require('node:fs');\n const path = require('node:path');\n \n+const userDataFolder = path.join(app.getPath('temp'), 'electron-test-singleton-userdata');\n+\n // non-existen...
2026-02-04T19:43:36
facebook/react
3025aa39649ef5106c34cc7896a63d63b2edee91
a4eb2dfa6fec3da5a947eb84c99b059890bb5241
[Flight] Don't serialize toJSON in Debug path and omit wide arrays (#34759) There's a couple of issues with serializing Buffer in the debug renders. For one, the Node.js Buffer has a `toJSON` on it which turns the binary data into a JSON array which is very inefficient to serialize compared to the real buffer. For de...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -849,6 +849,49 @@ export function resolveRequest(): null | Request {\n return null;\n }\n \n+function isTypedArray(value: any): boolean {\n+ if (value instanceof ArrayBuffer) {\n+ return true;\n+ }\n+ if (value instanceof Int8A...
2025-10-07T13:59:34
vercel/next.js
ae9c9d6cd599877793eb90d49bac53102a68a9e0
e341790630d98cad731cc05c7e1f803e88097975
fix(css): rewrite MiniCssExtractPlugin insert function to ES5 to support legacy browsers (#90556) ## What? Rewrite the `insert` function passed to `MiniCssExtractPlugin` in `packages/next/src/build/webpack/config/blocks/css/index.ts` to use only ES5-compatible syntax. ## Why? The `insert` option of `mini-css-extrac...
[ { "path": "packages/next/src/build/webpack/config/blocks/css/index.ts", "patch": "@@ -612,14 +612,25 @@ export const css = curry(async function css(\n ignoreOrder: true,\n insert: function (linkTag: HTMLLinkElement) {\n if (typeof _N_E_STYLE_LOAD === 'function') {\n- ...
2026-03-10T19:52:24
nodejs/node
3fed9fbc0b8acd7d37f9079abe3df67d66aafa95
680ee6ee6626069418b7f63a07d152be4382e15c
src: throw RangeError on failed ArrayBuffer BackingStore allocation This also updates `ERR_MEMORY_ALLOCATION_FAILED` to be a RangeError, aligning with V8's OutOfMemory error type. PR-URL: https://github.com/nodejs/node/pull/61480 Refs: https://github.com/nodejs/node/blob/c755b0113ce0cb6d83baf2cf070ba381a5673db2/deps/...
[ { "path": "src/encoding_binding.cc", "patch": "@@ -17,6 +17,7 @@ namespace encoding_binding {\n using v8::ArrayBuffer;\n using v8::BackingStore;\n using v8::BackingStoreInitializationMode;\n+using v8::BackingStoreOnFailureMode;\n using v8::Context;\n using v8::FunctionCallbackInfo;\n using v8::HandleScope;\...
2026-01-25T15:18:45
facebook/react
a4eb2dfa6fec3da5a947eb84c99b059890bb5241
6a8c7fb6f1108577c97eeb5703018ece915dcdeb
Release Fragment refs to Canary (#34720) ## Overview This PR adds the `ref` prop to `<Fragment>` in `react@canary`. This means this API is ready for final feedback and prepared for a semver stable release. ## What this means Shipping Fragment refs to canary means they have gone through extensive testing in product...
[ { "path": "fixtures/dom/src/components/fixtures/fragment-refs/ScrollIntoViewCase.js", "patch": "@@ -55,11 +55,11 @@ export default function ScrollIntoViewCase() {\n const scrollContainerRef = useRef(null);\n \n const scrollVertical = () => {\n- fragmentRef.current.experimental_scrollIntoView(alignToT...
2025-10-07T04:24:24
electron/electron
431f77ca1c265a347ce3cc5376aed129bf4f0f89
51a9101c3de7794baad9c35cce57adecf9ea3ad3
fix: remove menu observer before destroying menu_controller_ (#49648) * fix: remove menu observer before destroying menu_controller_ * fix: resolves private inheritance conflict
[ { "path": "shell/browser/api/electron_api_menu.cc", "patch": "@@ -68,6 +68,10 @@ Menu::Menu(gin::Arguments* args)\n }\n \n Menu::~Menu() {\n+ RemoveModelObserver();\n+}\n+\n+void Menu::RemoveModelObserver() {\n if (model_) {\n model_->RemoveObserver(this);\n }", "additions": 4, "deletions":...
2026-02-04T15:11:00
nodejs/node
680ee6ee6626069418b7f63a07d152be4382e15c
b7bf7fef2659feb42fae468565cdb164149ee1bb
doc: remove `v` prefix for version references PR-URL: https://github.com/nodejs/node/pull/61488 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Luigi P...
[ { "path": "BUILDING.md", "patch": "@@ -741,7 +741,7 @@ Refs:\n [Visual Studio 2022 (17.13 or newer)](https://visualstudio.microsoft.com/downloads/)\n or the \"C++ build tools\" workload from the\n [Build Tools](https://aka.ms/vs/17/release/vs_buildtools.exe),\n- with the default optional components. ...
2026-01-25T09:38:06
golang/go
fb16297ae571a232e46a67e6e40027f1f82ef6ec
36d8b15842748194c4a2ce7e9cf46c65a958283c
html/template: properly escape URLs in meta content attributes The meta tag can include a content attribute that contains URLs, which we currently don't escape if they are inserted via a template action. This can plausibly lead to XSS vulnerabilities if untrusted data is inserted there, the http-equiv attribute is set...
[ { "path": "doc/godebug.md", "patch": "@@ -160,6 +160,13 @@ and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1.22][#go-122] section.\n \n+Go 1.27 added a new `htmlmetacontenturlescape` setting that controls whether\n+...
2026-01-09T19:12:01
vercel/next.js
1eab3361c7c60abd35fef742ee3c89affb3ca013
110ed228bbaaff3271c6ca116e60df24ccfae821
fix: Use a pnpm preinstall script to fix catch-22 in next binary creation (#91016) We've had a longstanding issue where you'd have to run `pnpm i` _twice_ on a fresh checkout because `pnpm` wouldn't set up binary symlinks until after the binary exists, but the binary wouldn't exist until after `pnpm build` was done: ...
[ { "path": ".github/workflows/build_reusable.yml", "patch": "@@ -300,16 +300,6 @@ jobs:\n - run: ANALYZE=1 pnpm build\n if: ${{ inputs.skipInstallBuild != 'yes' }}\n \n- # Some packages e.g. `devlow-bench` depend on `pnpm build` to generate\n- # their `dist` directory. The first run o...
2026-03-10T18:21:15
facebook/react
6a8c7fb6f1108577c97eeb5703018ece915dcdeb
b65e6fc58b8c9a35e2c2ea7d1952fc1499cef09b
Release `<ViewTransition />` to Canary (#34712) ## Overview This PR ships the View Transition APIs to `react@canary`: - [`<ViewTransition />`](https://react.dev/reference/react/ViewTransition) - [`addTransitionType`](https://react.dev/reference/react/addTransitionType) This means these APIs are ready for final feedb...
[ { "path": "fixtures/view-transition/src/components/App.js", "patch": "@@ -3,7 +3,7 @@ import React, {\n useLayoutEffect,\n useEffect,\n useState,\n- unstable_addTransitionType as addTransitionType,\n+ addTransitionType,\n } from 'react';\n \n import Chrome from './Chrome.js';", "additions": 1, ...
2025-10-07T04:23:34
golang/go
36d8b15842748194c4a2ce7e9cf46c65a958283c
4270a44ed749c581457eed30239ad79195ff39c9
net/url: reject IPv6 literal not at start of host This change rejects IPv6 literals that do not appear at the start of the host subcomponent of a URL. For example: http://example.com[::1] -> rejects http://[::1] -> accepts Thanks to Masaki Hara (https://github.com/qnighy) of Wantedly. Fixes #77578. F...
[ { "path": "src/net/url/url.go", "patch": "@@ -547,7 +547,9 @@ func parseAuthority(scheme, authority string) (user *Userinfo, host string, err\n // parseHost parses host as an authority without user\n // information. That is, as host[:port].\n func parseHost(scheme, host string) (string, error) {\n-\tif open...
2026-01-28T20:29:52
nodejs/node
146f2be146275772b9925dfa50918d5d2b83f9e4
f70020305c5416792e5517211b53e3d6d44fc282
node-api: fix node_api_create_object_with_properties name PR-URL: https://github.com/nodejs/node/pull/61319 Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "benchmark/napi/create_object_with_properties/binding.cc", "patch": "@@ -58,7 +58,7 @@ static napi_value CreateObjectWithPropertiesNew(napi_env env,\n \n for (uint32_t i = 0; i < params.count; i++) {\n napi_value obj;\n- napi_create_object_with_properties(\n+ node_api_create_object_wit...
2026-01-23T03:51:23
electron/electron
8fdb7549bb3009db3f1c42e1d167028500aba39e
c3428fa4133f66d0da336849a71667fb05fe64b8
fix: alt-space should route through 'system-context-menu' (#49619) fix: alt-space should route through system-context-menu
[ { "path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "patch": "@@ -150,6 +150,31 @@ bool ElectronDesktopWindowTreeHostWin::HandleMouseEvent(ui::MouseEvent* event) {\n return views::DesktopWindowTreeHostWin::HandleMouseEvent(event);\n }\n \n+bool ElectronDesktopWindowTreeHostWin::Hand...
2026-02-03T16:34:58
golang/go
460522ed1d987f05db04dec5c099887a07115337
b16360470c1eb574e8b7fa7a606810bf7cb6df7c
net/http: restore accidentally removed package doc Remove a blank line which accidentally crept in between the package doc comment and the package line. Fixes #77948 Change-Id: I6b513c1e9ea97d2a4b3c6f7b9b10092a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/751520 LUCI-TryBot-Result: Go LUCI <golang-...
[ { "path": "src/net/http/doc.go", "patch": "@@ -105,5 +105,4 @@ Alternatively, the following GODEBUG settings are currently supported:\n The \"omithttp2\" build tag may be used to disable the HTTP/2 implementation\n contained in the http package.\n */\n-\n package http", "additions": 0, "deletions": ...
2026-03-04T21:22:44
facebook/react
c78625842239f29ff130136fff2729fd4c7c2e91
1be3ce9996f05ceb74fd8c11f08a84a5e57098f3
[eprh] Fix config type not being exported correctly (#34746) Another attempt to fix #34745. I updated our fixture for eslint-v9 to include running tsc. I believe there were 2 issues: 1. `export * from './cjs/eslint-plugin-react-hooks'` in npm/index.d.ts was no longer correct as we updated index.ts to export default i...
[ { "path": "fixtures/eslint-v9/eslint.config.ts", "patch": "@@ -12,10 +12,7 @@ export default defineConfig([\n },\n },\n },\n- plugins: {\n- 'react-hooks': reactHooks,\n- },\n- extends: ['react-hooks/recommended-latest'],\n+ extends: [reactHooks.configs['recommended-latest'...
2025-10-06T04:53:21
nodejs/node
b935a3970bd141a272e829b54ecde0f990f07eb1
320b2d2b49bf39cbef2f26f59ec7339f8365093b
sea: add --build-sea to generate SEA directly with Node.js binary Instead of relying on a WASM build of postject to perform the injection, add LIEF as dependency and generate the SEA directly from core via a new CLI option --build-sea which takes the SEA config. This simplifies SEA generation for users and makes it ea...
[ { "path": ".github/CODEOWNERS", "patch": "@@ -152,13 +152,15 @@\n /test/parallel/test-runner-* @nodejs/test_runner\n \n # Single Executable Applications\n+/deps/LIEF @nodejs/single-executable\n /deps/postject @nodejs/single-executable\n /doc/api/single-executable-applications.md @nodejs/single-executable\n ...
2025-12-23T23:30:32
vercel/next.js
51797dbd3fb8ae99ea3c39971a38c1f768e0abc4
bfb8cc7ab3009241a540b0593142cc21dc50b18d
Trace upload: add git and environment info (#91124) This adds the following to uploaded trace data: - Git branch/ref name - Whether the trace was uploaded from a Vercel environment - Prefers Vercel git environment variable data over running git Test Plan: Ran a manual test app with EXPERIMENTAL_FLAGS_DEBUG=1, set th...
[ { "path": "packages/next/src/trace/trace-uploader.ts", "patch": "@@ -99,8 +99,10 @@ interface TraceEvent {\n interface TraceMetadata {\n anonymousId: string\n arch: string\n+ branch: string\n commit: string\n cpus: number\n+ isVercelEnvironment: boolean\n isTurboSession: boolean\n mode: string...
2026-03-10T17:13:15
facebook/react
bc2356176bca3e42e84ce8d196fdc525677cc36b
4fdf7cf249ecb205d20b65b5208d113ea664cb9a
[ci] Fix incorrect filtering logic for prereleases (#34725) The workflow was correctly publishing the package(s) specified in `only`, but due to incorrect logic it would also run the 'Publish all packages' step.
[ { "path": ".github/workflows/runtime_prereleases.yml", "patch": "@@ -93,7 +93,7 @@ jobs:\n --tags=${{ inputs.dist_tag }} \\\n --skipPackages=${{ inputs.skip_packages }} ${{ (inputs.dry && '') || '\\'}}\n ${{ inputs.dry && '--dry' || '' }}\n- - if: '${{ !(inputs.skip_...
2025-10-03T20:37:55
electron/electron
233caf84695d56b6ffad83461e2728fe7588cddb
86209f60eb3aedf8368fff0d415a17d2dcb7d0a6
fix(squirrel.mac): clean up old staged updates before downloading new update (#49365) fix: clean up old staged updates before downloading new update When checkForUpdates() is called while an update is already staged, Squirrel creates a new temporary directory for the download without cleaning up the old one. This can...
[ { "path": "patches/squirrel.mac/.patches", "patch": "@@ -9,3 +9,4 @@ refactor_use_non-deprecated_nskeyedarchiver_apis.patch\n chore_turn_off_launchapplicationaturl_deprecation_errors_in_squirrel.patch\n fix_crash_when_process_to_extract_zip_cannot_be_launched.patch\n use_uttype_class_instead_of_deprecated_u...
2026-02-03T16:04:06
golang/go
b16360470c1eb574e8b7fa7a606810bf7cb6df7c
50126a8e44f76134349edf5ba3cc94efabc61c80
cmd/compile: fix ICE when indexing zero-sized arrays of non-SSAable types Fixes #77868 Change-Id: I3348825e24a71595c514113497db365a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/749881 Reviewed-by: Keith Randall <khr@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gse...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -3555,9 +3555,9 @@ func (s *state) exprCheckPtr(n ir.Node, checkPtrOK bool) *ssa.Value {\n \t\t\t\t\t// use constants for the bounds check.\n \t\t\t\t\tz := s.constInt(types.Types[types.TINT], 0)\n \t\t\t\t\ts.boundsCheck(z, z, ssa.BoundsIndex...
2026-02-28T11:05:10
vercel/next.js
ae6406afdd6733bc57642a88cbaeef3e85442c44
2ecfbfc1cd4e1f7ba72dac4724efbf930ec93241
docs(turbopack): Copy over turbopack-trace-server docs (#91111) **Rendered:** https://github.com/vercel/next.js/blob/dd1cc6fba3cff5fbc38dac3ff4426b481bfcbcb5/contributing/turbopack/tracing.md This is the content from https://turbopack-rust-docs.vercel.sh/tracing_turbopack.html with some minor updates: - Use GitHub F...
[ { "path": "contributing.md", "patch": "@@ -25,3 +25,7 @@\n - [Adding a new feature](./contributing/core/adding-features.md)\n - [Developing Using Local App](./contributing/core/developing-using-local-app.md)\n <!-- - [Using the VS Code Debugger](./contributing/core/vscode-debugger.md) -->\n+\n+## Turbopack\...
2026-03-09T23:04:07
facebook/react
4fdf7cf249ecb205d20b65b5208d113ea664cb9a
614a945d9d1031fadcf211a632cb2d7fda495a4f
[ci] Fix runtime_prereleases (#34722) When using the "only" or "skip" option in the workflow, we were adding the `--skipTests` param, but that isn't an actual option: https://github.com/facebook/react/blob/1de32a5e75fe96ac3c1b728a117010e11673f6ed/scripts/release/publish-commands/parse-params.js
[ { "path": ".github/workflows/runtime_prereleases.yml", "patch": "@@ -82,7 +82,6 @@ jobs:\n run: |\n scripts/release/publish.js \\\n --ci \\\n- --skipTests \\\n --tags=${{ inputs.dist_tag }} \\\n --onlyPackages=${{ inputs.only_packages }} ${{ (...
2025-10-03T18:41:34
nodejs/node
20b62ff488af5fac547931ed73cf07cbff286ff9
34abee5b3bd3576fc8b01dd012a430e173adc08c
test: use fixture directories for sea tests Instead of copying and writing files on the fly for SEA tests, put the fixtures into a directory and copy them into tmpdir for testing. This allows easier reproduction and debugging when they do fail - we can just copy the entire fixture directory and test directly from ther...
[ { "path": "test/common/sea.js", "patch": "@@ -4,6 +4,9 @@ const common = require('../common');\n const fixtures = require('../common/fixtures');\n const tmpdir = require('../common/tmpdir');\n const { inspect } = require('util');\n+const fs = require('fs');\n+const path = require('path');\n+const assert = r...
2026-01-01T14:37:58
electron/electron
86209f60eb3aedf8368fff0d415a17d2dcb7d0a6
bdf2b674622fac64112f4ea7299120ab5a332dd0
fix: possible crash in FileSystem API (#49578) Refs https://chromium-review.googlesource.com/6880247 Fixes a crash that can arise in the File System Access API in the following scenario: 1. Create fileHandle1 at path1. 2. Call fileHandle1.remove() or user manually delete the file. 3. Create fileHandle2 at path2. 4. ...
[ { "path": "shell/browser/file_system_access/file_system_access_permission_context.cc", "patch": "@@ -400,31 +400,47 @@ class FileSystemAccessPermissionContext::PermissionGrantImpl\n }\n }\n \n+ // Updates the in-memory permission grant for the `new_path` in the `grants`\n+ // map using the same gran...
2026-02-03T14:15:54
golang/go
50126a8e44f76134349edf5ba3cc94efabc61c80
7aeb2f7e285006ad68789581dedf2b35ba444dbf
runtime, cmd/compile: use preemptible memclr for large pointer-free clears Large memory clearing operations (via clear() or large slice allocation) currently use non-preemptible assembly loops. This blocks the Garbage Collector from performing a Stop The World (STW) event, leading to significant tail latency or even i...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -1598,11 +1598,13 @@\n => (AndB (MemEq p q (Const64 <typ.Int64> [16]) mem)\n (MemEq (OffPtr <p.Type> p [16]) (OffPtr <q.Type> q [16]) (Const64 <typ.Int64> [c-16]) mem))\n \n-// Turn known-size calls to memclrNoHeapPointer...
2026-03-01T23:53:03
facebook/react
85c427d822baad6e654256b707b7d8755da7db26
02bd4458f77e60b5631ff2f0e30b05b8b3a56d6d
[compiler] Remove @babel/plugin-proposal-private-methods (#34715) redo of #34458 but fixing up prettier Co-authored-by: Arnaud Barré <arnaud.barre@carbometrix.com>
[ { "path": "compiler/packages/eslint-plugin-react-compiler/babel.config.js", "patch": "@@ -10,6 +10,5 @@ module.exports = {\n plugins: [\n ['@babel/plugin-transform-private-property-in-object', {loose: true}],\n ['@babel/plugin-transform-class-properties', {loose: true}],\n- ['@babel/plugin-tran...
2025-10-03T16:13:55
nodejs/node
34abee5b3bd3576fc8b01dd012a430e173adc08c
c755b0113ce0cb6d83baf2cf070ba381a5673db2
http: fix rawHeaders exceeding maxHeadersCount limit Fixes: https://github.com/nodejs/node/issues/61284 PR-URL: https://github.com/nodejs/node/pull/61285 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> Reviewed-By...
[ { "path": "lib/_http_common.js", "patch": "@@ -59,9 +59,11 @@ const MAX_HEADER_PAIRS = 2000;\n // called to process trailing HTTP headers.\n function parserOnHeaders(headers, url) {\n // Once we exceeded headers limit - stop collecting them\n- if (this.maxHeaderPairs <= 0 ||\n- this._headers.length ...
2026-01-22T20:37:43
vercel/next.js
4e2353edb2ee1b7b6ab96c3d844fed3713a7cc18
c0bf4b6f00044805f0ed29f6d7a57fc96b6b2fbc
fix: app-page URL normalization (#91121) ## Summary Fix an App Router request normalization gap where app-page route-module requests could keep internal RSC/segment-prefetch URLs in `req.url`. This could leak paths like: - `.../.segments/_tree.segment.rsc` - `.../__PAGE__.segment.rsc` into App Router render state ...
[ { "path": "packages/next/src/server/route-modules/app-page/module.ts", "patch": "@@ -32,6 +32,7 @@ import { RSCPathnameNormalizer } from '../../normalizers/request/rsc'\n import { SegmentPrefixRSCPathnameNormalizer } from '../../normalizers/request/segment-prefix-rsc'\n import type { UrlWithParsedQuery } fr...
2026-03-09T23:01:35
electron/electron
4413a0f642af2f8aab04e27939b74f78edba4056
3776731f4a7e9e5f3094133649fa8b4a0723b0b7
fix: wrong cause and removed flag in cookie change listener (#49103)
[ { "path": "docs/api/cookies.md", "patch": "@@ -51,7 +51,12 @@ Returns:\n * `event` Event\n * `cookie` [Cookie](structures/cookie.md) - The cookie that was changed.\n * `cause` string - The cause of the change with one of the following values:\n- * `explicit` - The cookie was changed directly by a consumer'...
2026-02-03T09:19:35
golang/go
7aeb2f7e285006ad68789581dedf2b35ba444dbf
44ec057a3e89482cf775f5eaaf03b0b5fcab1fa4
cmd/go: update go help entries to focus on modules Some of the go help entries, especially go help packages, primarily explained GOPATH mode behavior. While building legacy projects in GOPATH mode will continue to be supported by the go command, it is now a very niche use case, and the docs should focus on modules. Th...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -267,12 +267,14 @@\n // prints the disassembly for fmt and all its dependencies.\n //\n // For more about specifying packages, see 'go help packages'.\n-// For more about where packages and binaries are installed,\n-// run 'go help gopath'.\n+// For more about...
2025-04-07T20:35:52
golang/go
44ec057a3e89482cf775f5eaaf03b0b5fcab1fa4
f4afab14d0375d93115134f19fb90006dd664682
cmd/go: revert update default go directive in mod or work init This restores the previous behavior of setting go directive to the toolchain's version as per #77653. Fixes #77653 Change-Id: Ie9d2de025a75f39fd8d6d01776d0cf4e5da954f9 Reviewed-on: https://go-review.googlesource.com/c/go/+/749980 Reviewed-by: Dmitri Shur...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -29,7 +29,6 @@ import (\n \t\"cmd/go/internal/lockedfile\"\n \t\"cmd/go/internal/modfetch\"\n \t\"cmd/go/internal/search\"\n-\tigover \"internal/gover\"\n \n \t\"golang.org/x/mod/modfile\"\n \t\"golang.org/x/mod/module\"\n@@ -838,7 +837,7 @@ func...
2026-02-27T18:03:36
electron/electron
3776731f4a7e9e5f3094133649fa8b4a0723b0b7
db5606b4b357aa6489cd9d1239b12fdf60888afc
fix: menu state in macOS dock menus (#49574)
[ { "path": "shell/browser/mac/electron_application_delegate.mm", "patch": "@@ -109,7 +109,14 @@ - (void)applicationDidResignActive:(NSNotification*)notification {\n }\n \n - (NSMenu*)applicationDockMenu:(NSApplication*)sender {\n- return menu_controller_ ? menu_controller_.menu : nil;\n+ if (!menu_controll...
2026-02-02T22:01:34
facebook/react
0eebd37041a5712f841edd5fad558e0516e5af61
74dee8ef641c7a0a67db192f83c11ac0d9f279ff
[playground] Config panel quality fixes (#34611) Fixed two small issues with the config panel in the compiler playground: 1. Object descriptions were being confined in the config box and most of it would not be visible upon hover 2. Changed it so that "Applied Configs" would only display a valid set of configs, rather...
[ { "path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "patch": "@@ -6,7 +6,6 @@\n */\n \n import MonacoEditor, {loader, type Monaco} from '@monaco-editor/react';\n-import {PluginOptions} from 'babel-plugin-react-compiler';\n import type {editor} from 'monaco-editor';\n import * as monaco...
2025-10-03T14:52:36
vercel/next.js
014b9987faa629accb6150c917bc328358d299a0
6a73374215e86da6e847526cdca7418f4450a1a1
Turbopack: implement module.hot.accept(deps, cb) and module.hot.decline(deps) (#90443) ### What? Implements dependency-level HMR accept and decline for Turbopack, covering both ESM (`import.meta.turbopackHot`) and CJS (`module.hot`) modules. Previously Turbopack only supported self-accept (`module.hot.accept()` with...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -367,6 +367,9 @@ pub struct ProjectOptions {\n \n /// The version of Next.js that is running.\n pub next_version: RcStr,\n+\n+ /// Whether server-side HMR is enabled (--experimental-server-fast-refresh).\n+ pub server_hmr: bool,\n }\n \n...
2026-03-09T17:51:17
nodejs/node
e9b0849606ccaa607698ccb2e88f7245113968c3
931a292b9b19249137a29eb6a8eb84085be837fb
build,win: improve logs when ClangCL is missing PR-URL: https://github.com/nodejs/node/pull/61438 Fixes: https://github.com/nodejs/node/issues/61437 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: Chengz...
[ { "path": "vcbuild.bat", "patch": "@@ -246,7 +246,7 @@ call :getnodeversion || exit /b 1\n set NODE_MAJOR_VERSION=\n for /F \"tokens=1 delims=.\" %%i in (\"%NODE_VERSION%\") do set \"NODE_MAJOR_VERSION=%%i\"\n if %NODE_MAJOR_VERSION% GEQ 24 (\n- echo Using ClangCL because the Node.js version being compiled...
2026-01-22T18:48:58
golang/go
f4afab14d0375d93115134f19fb90006dd664682
76ebf6330787131e68390699da11c1dfcf742194
cmd/link: support Mach-O UNSIGNED relocations for dynamic imports on darwin When internally linking darwin binaries, the linker rejected Mach-O UNSIGNED (pointer) relocations targeting dynamic import symbols, producing errors like: unexpected reloc for dynamic symbol _swift_FORCE_LOAD_$_swiftIOKit These relocati...
[ { "path": "src/cmd/cgo/internal/test/cgo_darwin_test.go", "patch": "@@ -8,4 +8,5 @@ package cgotest\n \n import \"testing\"\n \n-func TestIssue76023(t *testing.T) { issue76023(t) }\n+func TestIssue76023(t *testing.T) { issue76023(t) }\n+func TestGlobalDataDynimport(t *testing.T) { unsignedRelocDyni...
2026-02-13T11:26:12
facebook/react
19f65ff179d377ff0c9284704dff2fce370745be
26b177bc5e1d287c60c50fc1e185b2fb398488a0
[eprh] Remove NoUnusedOptOutDirectives (#34703) This rule was a leftover from a while ago and doesn't actually lint anything useful. Specifically, you get a lint error if you try to opt out a component that isn't already bailing out. If there's a bailout the compiler already safely skips over it, so adding `'use no me...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/__tests__/NoUnusedDirectivesRule-test.ts", "patch": "@@ -1,58 +0,0 @@\n-/**\n- * Copyright (c) Meta Platforms, Inc. and affiliates.\n- *\n- * This source code is licensed under the MIT license found in the\n- * LICENSE file in the root directory of t...
2025-10-02T23:19:01
electron/electron
db5606b4b357aa6489cd9d1239b12fdf60888afc
1159de52e7f12145e47dd8a0bb34e4e53a58662c
fix: handle out of order recording errors in skia graphite (#49608)
[ { "path": "patches/chromium/.patches", "patch": "@@ -144,3 +144,4 @@ fix_linux_tray_id.patch\n expose_gtk_ui_platform_field.patch\n fix_os_crypt_async_cookie_encryption.patch\n patch_osr_control_screen_info.patch\n+graphite_handle_out_of_order_recording_errors.patch", "additions": 1, "deletions": 0,...
2026-02-02T13:20:19
vercel/next.js
6a73374215e86da6e847526cdca7418f4450a1a1
9c939729d1681adfe6b1d62670ceedd901f85b8b
Improve unsafe code safety documentation in turbo-tasks-backend (#90755) ### What? Improves safety documentation for all `unsafe` code in the `turbo-tasks-backend` crate (6 files, comment-only changes). ### Why? A comprehensive audit of all 14 files containing `unsafe` code in `turbo-tasks-backend` found **no sound...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/mod.rs", "patch": "@@ -144,7 +144,11 @@ where\n }\n let tx = self.backend.backing_storage.start_read_transaction();\n let tx = tx.map(|tx| {\n- // Safety: self is actually valid for 'a, s...
2026-03-09T14:41:47
golang/go
76ebf6330787131e68390699da11c1dfcf742194
c918cbd5561c14edc3caf04a007c4fabbbb896a1
syscall: make plan9 Errno implement the error interface The Errno type was added to plan9 in CL 750680 but without methods, so it didn't satisfy the error interface. Add Error, Temporary, and Timeout methods to match all other platforms and the Go 1 API contract (api/go1.txt's "pkg syscall, method (Errno) Error() stri...
[ { "path": "src/syscall/syscall_plan9.go", "patch": "@@ -14,6 +14,7 @@ package syscall\n import (\n \t\"errors\"\n \t\"internal/oserror\"\n+\t\"internal/strconv\"\n \t\"runtime\"\n \t\"unsafe\"\n )\n@@ -30,6 +31,10 @@ const bitSize16 = 2\n // without build-tagged files, using runtime.GOOS checks instead.\n t...
2026-03-03T18:05:17
nodejs/node
fa703276104faa049acc4fa0944bcf8679dc34b6
7698480bd2de02815fe1b0a901d3768485895d4a
lib: return undefined for localStorage without file Make localStorage return undefined and emit a warning when --localstorage-file is not provided. Mark the property as non-enumerable to avoid breaking {...globalThis}. Fixes: https://github.com/nodejs/node/issues/60303 PR-URL: https://github.com/nodejs/node/pull/6133...
[ { "path": "lib/internal/process/pre_execution.js", "patch": "@@ -404,8 +404,26 @@ function setupWebStorage() {\n \n // https://html.spec.whatwg.org/multipage/webstorage.html#webstorage\n exposeLazyInterfaces(globalThis, 'internal/webstorage', ['Storage']);\n+\n+ // localStorage is non-enumerable when -...
2026-01-22T16:35:38
facebook/react
26b177bc5e1d287c60c50fc1e185b2fb398488a0
056a586928fe1b6186d3693743ac7019ce39cb7b
[eprh] Fix `recommended` config for flat config compatibility (#34700) Previously, the `recommended` config used the legacy ESLint format (plugins as an array of strings). This causes errors when used with ESLint v9's `defineConfig()` helper. This was following [eslint's own docs](https://eslint.org/docs/latest/extend...
[ { "path": "fixtures/eslint-v6/.eslintrc.json", "patch": "@@ -1,14 +1,11 @@\n {\n \"root\": true,\n- \"extends\": [\"plugin:react-hooks/recommended-legacy\"],\n+ \"extends\": [\"plugin:react-hooks/recommended-latest-legacy\"],\n \"parserOptions\": {\n \"ecmaVersion\": 2020,\n \"sourceType\": \"...
2025-10-02T22:52:52
electron/electron
4b5d5f9dd5bb7eadec299060fc73ba1178388feb
0cbf3c29185105179a1c91fb11dd7590f3d2ba15
fix: fix Windows MSIX release build errors (#49613) * fix: fix MSIX release build * fix: add C++/WinRT headers * build: modify include paths * fix: compile msix as seperate source set * build: add additional needed deps for msix
[ { "path": "BUILD.gn", "patch": "@@ -420,6 +420,37 @@ action(\"electron_generate_node_defines\") {\n args = [ rebase_path(target_gen_dir) ] + rebase_path(inputs)\n }\n \n+# MSIX updater needs to be in a separate source_set because it uses C++/WinRT\n+# headers that require exceptions to be enabled.\n+sourc...
2026-02-02T06:27:42
facebook/react
056a586928fe1b6186d3693743ac7019ce39cb7b
5cc3d49f72a9e78cce61f7fbfc1b7455f313cebe
[fixtures] Update eslint fixture lockfiles (#34699) Updates the eslint fixture lockfiles. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/34699). * #34703 * #34700 * __->__ #34699 * #34675
[ { "path": "fixtures/eslint-v6/yarn.lock", "patch": "@@ -2,15 +2,7 @@\n # yarn lockfile v1\n \n \n-\"@ampproject/remapping@^2.2.0\":\n- version \"2.3.0\"\n- resolved \"https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4\"\n- integrity sha512-30...
2025-10-02T22:42:43
vercel/next.js
9c939729d1681adfe6b1d62670ceedd901f85b8b
5a226232621078e83a4d3a8123affb45334aa2ac
Fix preview tarball script to include @next/swc-linux-x64-gnu (#91099) ### What? Adds `@next/swc-linux-x64-gnu` to the preview tarball patching script (`scripts/patch-preview-tarball.mjs`): 1. Adds the package to the `PACKAGES_TO_PATCH` list so its tarball URL is fetched. 2. Adds the package as an explicit dependenc...
[ { "path": "scripts/patch-preview-tarball.mjs", "patch": "@@ -10,6 +10,7 @@ const PACKAGES_TO_PATCH = [\n '@next/mdx',\n '@next/env',\n '@next/bundle-analyzer',\n+ '@next/swc-linux-x64-gnu',\n ]\n \n // --- Argument parsing ---\n@@ -186,6 +187,12 @@ async function patchPackageJson(projectPath, tarball...
2026-03-09T13:32:12
nodejs/node
186c7a9c74eaeb5742792d00fc098ecf2e971ed9
363758c79917bb7f6cceced79b6fe49c51abb592
inspector: fix compressed responses PR-URL: https://github.com/nodejs/node/pull/61226 Fixes: https://github.com/nodejs/node/issues/61222 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
[ { "path": "lib/internal/inspector/network.js", "patch": "@@ -10,8 +10,15 @@ const {\n const dc = require('diagnostics_channel');\n const { now } = require('internal/perf/utils');\n const { MIMEType } = require('internal/mime');\n+const {\n+ createGunzip,\n+ createInflate,\n+ createBrotliDecompress,\n+ c...
2025-12-30T20:10:26
electron/electron
f272723a33dcf1449527c56c8205ef1c6d4aa0bb
331d1e16f5b20cb453741af46842448383663a60
feat: Allow `View.setBounds` to animate (#48812) * feat: allow View::SetBounds to animate * fix: support width/height animations * fix: jumping on subsequent animations * fix: segfault race condition * fix: remove layer background * fix: layer clips not being reset * refactor: use gfx tween gin converter * fix:...
[ { "path": "docs/api/view.md", "patch": "@@ -62,9 +62,17 @@ it becomes the topmost view.\n \n If the view passed as a parameter is not a child of this view, this method is a no-op.\n \n-#### `view.setBounds(bounds)`\n+#### `view.setBounds(bounds[, options])`\n \n * `bounds` [Rectangle](structures/rectangle.m...
2026-01-30T20:18:56
golang/go
c918cbd5561c14edc3caf04a007c4fabbbb896a1
30d873462fd42c7fc940fe96ca68dfe396f350c7
runtime: fix value of ENOSYS on mips from 38 to 89 Fixes #77730 Change-Id: I8b68b2d4353344e70f970d48a2d50c1a3bd7f273 Reviewed-on: https://go-review.googlesource.com/c/go/+/747664 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Rev...
[ { "path": "src/runtime/defs_linux_mips64x.go", "patch": "@@ -12,7 +12,7 @@ const (\n \t_EINTR = 0x4\n \t_EAGAIN = 0xb\n \t_ENOMEM = 0xc\n-\t_ENOSYS = 0x26\n+\t_ENOSYS = 0x59\n \n \t_PROT_NONE = 0x0\n \t_PROT_READ = 0x1", "additions": 1, "deletions": 1, "language": "Go" }, { "path": "s...
2026-02-22T00:47:45
facebook/react
df3562dc7f4ac7a5e60e76e8fec285890ef60639
b56907db515ea518b7c30015d2c5d5641df35942
Fix DevTools regression tests (#34696)
[ { "path": "packages/react-devtools-shared/src/__tests__/preprocessData-test.js", "patch": "@@ -850,6 +850,7 @@ describe('Timeline profiler', () => {\n `);\n });\n \n+ // @reactVersion >= 19.1\n // @reactVersion < 19.2\n it('should process a sample createRoot render sequence', ...
2025-10-02T19:52:50
vercel/next.js
5e4a54ea39a4433b066386f36cbf1c1c74d2ae7b
762bff650fc487a8aff0c99be3d18c6a5e12317c
docs(localFont): enhance details about using the localFont function (#88189) ### What? Enhance the documentation about how to use the `localFont` function. ### Why? The Next.js documentation about [local fonts](https://nextjs.org/docs/app/getting-started/fonts#local-fonts) has insufficient information about where to ...
[ { "path": "docs/01-app/01-getting-started/13-fonts.mdx", "patch": "@@ -305,7 +305,7 @@ export default function MyApp({ Component, pageProps }) {\n \n <AppOnly>\n \n-To use a local font, import your font from `next/font/local` and specify the [`src`](/docs/app/api-reference/components/font#src) of your local...
2026-03-09T12:20:31
nodejs/node
dc04bf6761e3860d9000f4b5bb3bcd73afc5f5a2
16188998e2f7ad8a5855477429e8da689c3f0dd9
buffer: make methods work on Uint8Array instances Removes the reliance on prototype bound methods internally so that Uint8Arrays can be set as the bound `this` value when calling the various Buffer methods. Introduces some additional tamper protection by removing internal reliance on writable properties. Fixes: https...
[ { "path": "doc/api/buffer.md", "patch": "@@ -415,6 +415,21 @@ function:\n * [`Buffer.from(arrayBuffer[, byteOffset[, length]])`][`Buffer.from(arrayBuf)`]\n * [`Buffer.from(string[, encoding])`][`Buffer.from(string)`]\n \n+### Buffer methods are callable with `Uint8Array` instances\n+\n+All methods on the Bu...
2026-01-21T14:51:10
electron/electron
6825a522e9a535f421e102b4fce8463518429fd6
e033c1007562eb3b79ef827a7e797848dfe93e10
fix: duplicate fullscreen macOS menu item (#49074)
[ { "path": "shell/browser/mac/electron_application_delegate.mm", "patch": "@@ -56,11 +56,6 @@ - (void)willPowerOff:(NSNotification*)notify {\n }\n \n - (void)applicationWillFinishLaunching:(NSNotification*)notify {\n- // Don't add the \"Enter Full Screen\" menu item automatically.\n- [[NSUserDefaults stand...
2026-01-30T18:23:43
golang/go
30d873462fd42c7fc940fe96ca68dfe396f350c7
0b9bcbc58c4cf127d5a42989d08cc0236faa71cc
image/jpeg: add support for non-standard chroma subsampling ratios Add "flex mode" decoding for JPEG images with non-standard YCbCr subsampling ratios that do not match the predefined YCbCrSubsampleRatio values. This includes cases where: 1. Cb and Cr components have different sampling factors 2. The Y component does ...
[ { "path": "src/image/jpeg/reader.go", "patch": "@@ -28,10 +28,12 @@ var errUnsupportedSubsamplingRatio = UnsupportedError(\"luma/chroma subsampling r\n \n // Component specification, specified in section B.2.2.\n type component struct {\n-\th int // Horizontal sampling factor.\n-\tv int // Vertical sa...
2026-01-22T07:04:46
facebook/react
70b52beca64aeac447a6cf57cfe1fda0691435c1
4a28227960202539f329338f62d33973e76b32d8
[compiler] `@enablePreserveExistingMemoizationGuarantees` on by default (#34689) This enables `@enablePreserveExistingMemoizationGuarantees` by default. As of the previous PR (#34503), this mode now enables the following behaviors: - Treating variables referenced within a `useMemo()` or `useCallback()` as "frozen" (i...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -210,7 +210,7 @@ export const EnvironmentConfigSchema = z.object({\n * that if a useEffect or useCallback references a function value, that function value will be\n * considered frozen, and in turn all of it...
2025-10-02T17:25:00
vercel/next.js
762bff650fc487a8aff0c99be3d18c6a5e12317c
1ead596c5189720ace061f4760a814dc2e76baaf
fix: run lerna on a branch (#91092) Trying to fix: `lerna ERR! ENOGIT Detached git HEAD, please checkout a branch to choose versions.` on `set-preview-version.js` [Slack thread](https://vercel.slack.com/archives/C02CDC2ALJH/p1773051154649349)
[ { "path": "scripts/set-preview-version.js", "patch": "@@ -31,6 +31,12 @@ async function main() {\n // 15.0.0 -> 15.0.0\n const [semverStableVersion] = lernaConfig.version.split('-')\n const version = `${semverStableVersion}-preview-${shortSha}-${dateString}`\n+ //\n+ // Lerna version requires a non-...
2026-03-09T12:09:47
nodejs/node
7d0417f997f2f9144e0ac49185679424435cd13c
fadb214d9574a4d77d9e2bccdbe8e7b86e53e52f
doc: clarify process.argv[1] behavior for -e/--eval Signed-off-by: Jeevankumar-S <jeevenkumar2003@email.com> PR-URL: https://github.com/nodejs/node/pull/61366 Fixes: https://github.com/nodejs/node/issues/61363 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/process.md", "patch": "@@ -834,8 +834,8 @@ added: v0.1.27\n The `process.argv` property returns an array containing the command-line\n arguments passed when the Node.js process was launched. The first element will\n be [`process.execPath`][]. See `process.argv0` if access to the original ...
2026-01-21T09:25:36