repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
vercel/next.js | 7e325d98a2773f1a41596f455516c164835728dc | 36357eba00b8dcc42c5eca8e6f2c39fbcab29f7d | Fix tags check for expired/stale (#84717)
Corrects the expired/stale checks in the tags manifest and updates test
case to capture this. | [
{
"path": "packages/next/src/server/lib/incremental-cache/tags-manifest.external.ts",
"patch": "@@ -12,9 +12,15 @@ export const tagsManifest = new Map<string, TagManifestEntry>()\n export const areTagsExpired = (tags: string[], timestamp: Timestamp) => {\n for (const tag of tags) {\n const entry = tag... | 2025-10-10T00:03:39 |
golang/go | b915e14490e1c3ac5a84c274bfab647e1cb105a7 | 06e791c0cdef1a0d35ed553875c51c85716b0f57 | cmd/compile: consolidate logic for rewriting fixed loads
Many CLs have worked with this bit of code, extending the cases more and
more for various fixed addresses and constants. But, I find that it's
getting duplicitive, and I don't find the current setup very clear that
something like isFixed32 _only_ works for a spe... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -2757,37 +2757,15 @@\n (RotateLeft(64|32|16|8) (RotateLeft(64|32|16|8) x c) d) && c.Type.Size() == 2 && d.Type.Size() == 2 => (RotateLeft(64|32|16|8) x (Add16 <c.Type> c d))\n (RotateLeft(64|32|16|8) (RotateLeft(64|32|16|8) x c) d) &&... | 2025-09-05T20:08:21 |
nodejs/node | fd453837ea3955a20ad8157482058e30ed781f15 | 34ded4df1f665e32606d2c3cf47979f71c37be82 | src: fix ThrowInvalidURL call in PathToFileURL
Replace `nullptr` with `std::nullopt` when calling `ThrowInvalidURL` in
`PathToFileURL`. This ensures the function receives the correct argument
type and aligns with the expected behavior.
PR-URL: https://github.com/nodejs/node/pull/57141
Reviewed-By: Yagiz Nizipli <yagi... | [
{
"path": "src/node_url.cc",
"patch": "@@ -161,7 +161,7 @@ void BindingData::PathToFileURL(const FunctionCallbackInfo<Value>& args) {\n ada::parse<ada::url_aggregator>(EncodePathChars(input_str, os), nullptr);\n \n if (!out) {\n- return ThrowInvalidURL(realm->env(), input.ToStringView(), nullptr)... | 2025-02-26T14:34:50 |
facebook/react | a8b465c6e0576b9ac490c2e2762c273db314dfcf | d878489431e2c6cf69982b51403f8e1f68f4e73d | fix[react-devtools]: restore original args when recording errors (#30091)
## Summary
When DevTools frontend and backend are connected, we patch console in 2
places:
- `patch()`, when renderer is attached to:
- listen to any errors / warnings emitted
- append component stack if requested by the user
- `patc... | [
{
"path": "packages/react-devtools-shared/src/backend/console.js",
"patch": "@@ -51,7 +51,7 @@ const STYLE_DIRECTIVE_REGEX = /^%c/;\n // method has been overridden by the patchForStrictMode function.\n // If it has we'll need to do some special formatting of the arguments\n // so the console color stays con... | 2024-06-26T13:17:09 |
rust-lang/rust | f5d3b158b927f3d0221cedeaf1722fde2f8f6d6c | d6eefce00d307fbc7d939671e390abb5beed24e6 | Don’t report missing fields in struct exprs with syntax errors.
This prevents spurious errors when a field is intended to be present
but a preceding syntax error caused it not to be parsed. For example,
StructName { foo: 1 bar: 2 }
will not successfully parse a field `bar`, and we will report the syntax
error bu... | [
{
"path": "compiler/rustc_hir_typeck/src/expr.rs",
"patch": "@@ -2202,7 +2202,16 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n };\n self.typeck_results.borrow_mut().fru_field_types_mut().insert(expr.hir_id, fru_tys);\n }\n- rustc_hir::StructTailExpr::None | ru... | 2026-03-01T02:11:11 |
vercel/next.js | 36357eba00b8dcc42c5eca8e6f2c39fbcab29f7d | e2713a423002420b3d12f6fa946205581d1151e3 | Fix typo on welcome page (#84715) | [
{
"path": "apps/docs/app/page.tsx",
"patch": "@@ -22,7 +22,7 @@ export default function Home() {\n href=\"https://vercel.com/templates?framework=next.js\"\n className=\"font-medium text-zinc-950 dark:text-zinc-50\"\n >\n- Template\n+ Template... | 2025-10-09T23:43:37 |
electron/electron | aa23198ad8ed023a09bf6162f0e268f4aa0aa524 | cfdcf48e1b2cccc9cebe64d84d159713b0832e86 | chore: remove more unused #include calls (#43000)
* chore: in shell/renderer/renderer_client_base.h, remove include media/base/key_systems_support_registration.h
last use removed in c670e38b (##41610)
* chore: iwyu electron/fuses.h
* chore: iwyu media/base/video_frame.h
* chore: iwyu base/functional/callba... | [
{
"path": "shell/app/electron_content_client.cc",
"patch": "@@ -13,13 +13,11 @@\n #include \"base/files/file_util.h\"\n #include \"base/strings/string_split.h\"\n #include \"content/public/common/content_constants.h\"\n-#include \"content/public/common/content_switches.h\"\n #include \"electron/buildflags/b... | 2024-07-25T09:25:45 |
facebook/react | d878489431e2c6cf69982b51403f8e1f68f4e73d | 4bfab0783204810cb51b9dda24464bb57777eb97 | [compiler][ez] PrintHIR prints optional flag for debugging
Adding the equivalent of [PrintReactiveFunction:OptionalExpression](https://github.com/facebook/react/blob/f5d2feb4f069a36140d5e605f5eebc52badcc214/compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PrintReactiveFunction.ts#L218) to `PrintHIR`.
... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts",
"patch": "@@ -194,7 +194,7 @@ export function printTerminal(terminal: Terminal): Array<string> | string {\n break;\n }\n case \"optional\": {\n- value = `[${terminal.id}] Optional test:bb${terminal.test} fallth... | 2024-06-25T20:06:21 |
golang/go | cf42b785b701e48260e1b4785e270fe81e2e1bb2 | 5e6296f3f8a5fd8c07a0602435eae681002e09ad | cmd/cgo: run recordTypes for each of the debugs at the end of Translate
Save the debug information in a slice and then process all of them at
the end of the loop.
For #75167
Change-Id: I6a6a6964dffa784b0aa776334562333ecf247023
Reviewed-on: https://go-review.googlesource.com/c/go/+/699019
LUCI-TryBot-Result: Go LUCI ... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -192,9 +192,7 @@ func (p *Package) Translate(f *File) {\n \t\tcref.Name.C = cname(cref.Name.Go)\n \t}\n \n-\tvar conv typeConv\n-\tconv.Init(p.PtrSize, p.IntSize)\n-\n+\tvar debugs []*debug // debug data from iterations of gccDebug\n \tft := fileTypedefs{typedefs... | 2025-08-25T21:16:05 |
nodejs/node | e03af77418f44b69ab55f1570781d8990d02f14f | 6a19fde949ad876d240fda0e638cf1b1ee2cab0d | src: improve error handling in buffer and dotenv
Replacing ToLocalChecked()
PR-URL: https://github.com/nodejs/node/pull/57189
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Robert Nagy <ronagy@icloud.com> | [
{
"path": "src/node_buffer.cc",
"patch": "@@ -567,9 +567,14 @@ void SlowCopy(const FunctionCallbackInfo<Value>& args) {\n ArrayBufferViewContents<char> source(args[0]);\n SPREAD_BUFFER_ARG(args[1].As<Object>(), target);\n \n- const auto target_start = args[2]->Uint32Value(env->context()).ToChecked();\n... | 2025-02-24T00:38:56 |
rust-lang/rust | 0bb020ace98e58ac2147a3fc43f8d9a610c39c24 | 1d113d2f3068f6cadf0fe799307d7a06d771d866 | Make `const_lit_matches_ty` check literal suffixes for exact type match | [
{
"path": "compiler/rustc_middle/src/ty/consts/lit.rs",
"patch": "@@ -1,4 +1,4 @@\n-use rustc_ast::LitKind;\n+use rustc_ast::{LitFloatType, LitIntType, LitKind};\n use rustc_hir;\n use rustc_macros::HashStable;\n \n@@ -44,10 +44,17 @@ pub fn const_lit_matches_ty<'tcx>(\n {\n true\n ... | 2026-02-22T10:45:25 |
facebook/react | 7d9861e70642719b120a5236ade5124912e42a92 | 9262761f1c25bfe52a4585419fad16dd01a07424 | [compiler][hir] Correctly remove non-existent terminal preds when pruning labels
Missed this initially in `pruneUnusedLabelsHIR`. It wasn't an active bug as `preds` wasn't referenced by later passes, until #30079
ghstack-source-id: 3e151b74c31554299e870f001c0ac3f72706318c
Pull Request resolved: https://github.com/fac... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -13,6 +13,7 @@ import {\n HIRFunction,\n ReactiveFunction,\n assertConsistentIdentifiers,\n+ assertTerminalPredsExist,\n assertTerminalSuccessorsExist,\n assertValidBlockNesting,\n assertValidMuta... | 2024-06-25T20:06:21 |
electron/electron | cfdcf48e1b2cccc9cebe64d84d159713b0832e86 | c2c079dc820d7edbac3f875ab4ef8b3444237253 | fix: desktopCapturer breaks BrowserWindow resizable on macOS (#43013)
* fix: desktopCapturer breaks BrowserWindow resizable on macOS
* test: oops fix showing | [
{
"path": "lib/browser/api/desktop-capturer.ts",
"patch": "@@ -1,3 +1,4 @@\n+import { BrowserWindow } from 'electron/main';\n const { createDesktopCapturer } = process._linkedBinding('electron_browser_desktop_capturer');\n \n const deepEqual = (a: ElectronInternal.GetSourcesOptions, b: ElectronInternal.GetS... | 2024-07-25T09:17:37 |
vercel/next.js | 5c8fdbe104b7e13bc653cb8b319782052d059bc1 | 8d475c5468b18cb3aad0de0a50632953d5243db1 | misc: allow beta to be triggered (#84713)

- update codemod script
- upgrade both release scripts, not sure which one is correct
<!-- Thanks for opening ... | [
{
"path": ".github/workflows/trigger_release.yml",
"patch": "@@ -6,13 +6,14 @@ on:\n workflow_dispatch:\n inputs:\n releaseType:\n- description: stable, canary, or release candidate?\n+ description: stable, canary, beta, or release candidate?\n required: true\n type... | 2025-10-09T23:28:52 |
golang/go | 5e6296f3f8a5fd8c07a0602435eae681002e09ad | ea00650784bc2909580c7decf729f668349aa939 | archive/tar: optimize nanosecond parsing in parsePAXTime
Modified parsePAXTime to use a byte array for nanosecond parsing, providing a more straightforward implementation with better performance when handling decimal fraction part.
Here are benchmark results:
goos: darwin
goarch: amd64
pkg: archive/tar
cpu: Intel(R) C... | [
{
"path": "src/archive/tar/strconv.go",
"patch": "@@ -213,15 +213,17 @@ func parsePAXTime(s string) (time.Time, error) {\n \t}\n \n \t// Parse the nanoseconds.\n-\tif strings.Trim(sn, \"0123456789\") != \"\" {\n-\t\treturn time.Time{}, ErrHeader\n-\t}\n-\tif len(sn) < maxNanoSecondDigits {\n-\t\tsn += strin... | 2025-09-08T16:19:34 |
nodejs/node | 6a19fde949ad876d240fda0e638cf1b1ee2cab0d | c05f4baf3246002abda5bc14efc6996261fa4c00 | src: improve error handling in module_wrap
Replacing ToLocalChecked()
PR-URL: https://github.com/nodejs/node/pull/57188
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -241,8 +241,10 @@ void ModuleWrap::New(const FunctionCallbackInfo<Value>& args) {\n uint32_t len = export_names_arr->Length();\n LocalVector<String> export_names(realm->isolate(), len);\n for (uint32_t i = 0; i < len; i++) {\n- Local<Valu... | 2025-02-23T23:27:19 |
rust-lang/rust | d0a33abd4d65f59e7affdc85ef19f33a05e08304 | 271951ba187953d39b1c66b062d83f558aa23856 | fixed VecDeque::splice() not filling the buffer correctly when resizing the buffer on start = end range | [
{
"path": "library/alloc/src/collections/vec_deque/splice.rs",
"patch": "@@ -138,8 +138,48 @@ impl<T, A: Allocator> Drain<'_, T, A> {\n /// self.deque must be valid.\n unsafe fn move_tail(&mut self, additional: usize) {\n let deque = unsafe { self.deque.as_mut() };\n- let tail_start =... | 2026-02-06T21:55:17 |
golang/go | ea00650784bc2909580c7decf729f668349aa939 | 4cc7cc74c3d8fe7aba458824b0fce6e72ceee048 | debug/pe: permit symbols with no name
They are reportedly generated by llvm-mingw clang21.
Fixes #75219
Change-Id: I7fa7e13039bc7eee826cc19826985ca0e357a9ff
Reviewed-on: https://go-review.googlesource.com/c/go/+/700137
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-... | [
{
"path": "src/debug/pe/symbol.go",
"patch": "@@ -98,7 +98,12 @@ func readCOFFSymbols(fh *FileHeader, r io.ReadSeeker) ([]COFFSymbol, error) {\n // isSymNameOffset checks symbol name if it is encoded as offset into string table.\n func isSymNameOffset(name [8]byte) (bool, uint32) {\n \tif name[0] == 0 && na... | 2025-09-01T16:18:08 |
electron/electron | 5669a40d5cc8207f8ede8244a28e5ccbf6666207 | 9fc760bc4cffca6d269d62b7300242efef3f1d4d | feat: add transparency checking to `nativeTheme` (#42862)
* feat: add transparency checking to nativeTheme
Refs https://chromium-review.googlesource.com/c/chromium/src/+/4684870
* chore: deprecate previous function
* chore: fix lint | [
{
"path": "docs/api/native-theme.md",
"patch": "@@ -72,3 +72,7 @@ or is being instructed to use an inverted color scheme.\n \n A `boolean` indicating whether Chromium is in forced colors mode, controlled by system accessibility settings.\n Currently, Windows high contrast is the only system setting that tri... | 2024-07-24T12:38:22 |
vercel/next.js | 363014645838b7b4e16f9d446032c52ce5434aff | e598a4f9763f3ccdaf23f4caf6aea205b84c5dcd | Add validation for missing default.js in parallel routes (#84702)
### What?
Adds build-time validation to require explicit `default.js` files for
all parallel route slots (except the implicit "children" slot). This
validation is implemented in both Webpack and Turbopack bundlers.
### Why?
Parallel routes without `d... | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -840,6 +840,83 @@ impl Issue for DuplicateParallelRouteIssue {\n }\n }\n \n+#[turbo_tasks::value]\n+struct MissingDefaultParallelRouteIssue {\n+ app_dir: FileSystemPath,\n+ app_page: AppPage,\n+ slot_name: RcStr,\n+}\n+\n+#[turbo_t... | 2025-10-09T21:20:52 |
facebook/react | 86d1a6f54aebb2854aab0033bb57865add9f440d | 4d11e1e88d6be1c244cb8ae76c377eaf195167ec | [compiler][rewrite] Patch logic for aligning scopes to non-value blocks
Our previous logic for aligning scopes to block scopes constructs a tree of block and scope nodes. We ensured that blocks always mapped to the same node as their fallthroughs. e.g.
```js
// source
a();
if (...) {
b();
}
c();
// HIR
bb0:
a()
if ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/AlignReactiveScopesToBlockScopesHIR.ts",
"patch": "@@ -22,8 +22,10 @@ import {\n mapTerminalSuccessors,\n terminalFallthrough,\n } from \"../HIR/visitors\";\n+import { retainWhere_Set } from \"../Utils/utils\";\n import { getPla... | 2024-06-25T20:03:58 |
nodejs/node | d62d7ca7b5cdd4e86d9adc4e619b1112fd0964c8 | f52a358217a5b3f23571c5659135f556df970764 | src: improve error handling in spawn_sync
Replacing more ToLocalChecked uses.
PR-URL: https://github.com/nodejs/node/pull/57185
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "src/spawn_sync.cc",
"patch": "@@ -22,6 +22,7 @@\n #include \"spawn_sync.h\"\n #include \"debug_utils-inl.h\"\n #include \"env-inl.h\"\n+#include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"node_internals.h\"\n #include \"string_bytes.h\"\n@@ -185,15 +186,17 @@ void Syn... | 2025-02-23T20:44:43 |
rust-lang/rust | fa94367a2ea010bf012eea6d09cbef48c610a963 | 6d483b6b7687ef83c0e0097bb4dab2d7f3c48477 | Remember whether a struct literal had syntax errors.
This adds a variant `NoneWithError` to AST and HIR representations of
the “rest” or “tail”, which is currently always treated identically to
the `None` variant. | [
{
"path": "clippy_lints/src/no_effect.rs",
"patch": "@@ -242,7 +242,7 @@ fn has_no_effect(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {\n !expr_ty_has_significant_drop(cx, expr)\n && fields.iter().all(|field| has_no_effect(cx, field.expr))\n && match &base {\n-... | 2026-03-01T01:25:41 |
facebook/react | 4d11e1e88d6be1c244cb8ae76c377eaf195167ec | 133ada72549b9aa01a0bc3df2b1c9bb341e861fd | [compiler][fixtures] test repros: codegen, alignScope, phis
ghstack-source-id: 04b1526c8567f8b7b59d198f022d10cf837e4c5b
Pull Request resolved: https://github.com/facebook/react/pull/29878
The AlignReactiveScope bug should be simplest to fix, but it's also caught by an invariant assertion. I think a fix could be eithe... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-array-concat-should-capture.expect.md",
"patch": "@@ -0,0 +1,72 @@\n+\n+## Input\n+\n+```javascript\n+import { mutate } from \"shared-runtime\";\n+\n+/**\n+ * Fixture showing why `concat` needs to capture both the c... | 2024-06-25T20:03:57 |
golang/go | ff45d5d53cd942cfeab6c47b8414502e6dce4870 | 861c90c907db1129dcd1540eecd3c66b6309db7a | encoding/json/internal/jsonflags: fix comment with wrong field name
Flags struct has field Values but in the comments use Value.
Fix it to correct name Values.
Change-Id: Ib47e62538599a788c69fda27a7e2a97b8cf73263
Reviewed-on: https://go-review.googlesource.com/c/go/+/701415
Reviewed-by: Joseph Tsai <joetsai@digital-s... | [
{
"path": "src/encoding/json/internal/jsonflags/flags.go",
"patch": "@@ -169,8 +169,8 @@ func (dst *Flags) Join(src Flags) {\n \t// Copy over all source presence bits over to the destination (using OR),\n \t// then invert the source presence bits to clear out source value (using AND-NOT),\n \t// then copy o... | 2025-09-06T14:51:37 |
vercel/next.js | 8041a382c94ca55440dc9bbf505d7272cb72bdfd | 5dcfec401a299498a1866f1973391381ba1cbf85 | [Breaking] Require `images.localPatterns` for query in Image src (#84406)
This PR modifies Image behavior to require `images.localPatterns.search`
value when used with search queries in the `src` property:
```jsx
// Error
<Image src="/api/user?id=1" width="50" height="50" />
```
```ts
// next.config.ts
export defau... | [
{
"path": "docs/01-app/03-api-reference/02-components/image.mdx",
"patch": "@@ -528,6 +528,8 @@ module.exports = {\n \n The example above will ensure the `src` property of `next/image` must start with `/assets/images/` and must not have a query string. Attempting to optimize any other path will respond with... | 2025-10-09T19:01:42 |
rust-lang/rust | d6eefce00d307fbc7d939671e390abb5beed24e6 | 53fffef2b96022b796b3d2c1491e5b1d7837b627 | Remember whether a struct literal had syntax errors.
This adds a variant `NoneWithError` to AST and HIR representations of
the “rest” or “tail”, which is currently always treated identically to
the `None` variant. | [
{
"path": "compiler/rustc_ast/src/ast.rs",
"patch": "@@ -1724,6 +1724,12 @@ pub enum StructRest {\n Rest(Span),\n /// No trailing `..` or expression.\n None,\n+ /// No trailing `..` or expression, and also, a parse error occurred inside the struct braces.\n+ ///\n+ /// This struct shoul... | 2026-03-01T01:25:41 |
nodejs/node | f52a358217a5b3f23571c5659135f556df970764 | c864dea910c41cd3e4766aa54c98fb1d813194ba | fs: fix rmSync error code
Return the correct error code, when a directory_not_empty error
occurred.
Fixes: https://github.com/nodejs/node/issues/57095
PR-URL: https://github.com/nodejs/node/pull/57103
Reviewed-By: Jason Zhang <xzha4350@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/node_file.cc",
"patch": "@@ -1705,7 +1705,8 @@ static void RmSync(const FunctionCallbackInfo<Value>& args) {\n return env->ThrowErrnoException(EPERM, \"rm\", message.c_str(), path_c_str);\n } else if (error == std::errc::directory_not_empty) {\n std::string message = \"Directory not... | 2025-02-25T21:13:03 |
facebook/react | 133ada72549b9aa01a0bc3df2b1c9bb341e861fd | 708d8f8c495e2456b91de96f3d20248693ee9ce7 | Read constructor name more carefully (#29954)
## Summary
Sometimes `constructor` happens to be the name of an unrelated property,
or we may be dealing with a `Proxy` that intercepts every read. Verify
the constructor is a function before using its name, and reset the name
anyway if it turns out not to be seriali... | [
{
"path": "packages/react-devtools-shared/src/hydration.js",
"patch": "@@ -84,7 +84,9 @@ function createDehydrated(\n preview_long: formatDataForPreview(data, true),\n preview_short: formatDataForPreview(data, false),\n name:\n- !data.constructor || data.constructor.name === 'Object'\n+ ... | 2024-06-25T18:30:28 |
golang/go | 832c1f76dc665f0e211eec12dd77c17fa2ceedd7 | 0b323350a5a4e996e8bd3312837a8e53735107c1 | [dev.simd] cmd/compile: enhance prove to deal with double-offset IsInBounds checks
For chunked iterations (useful for, but not exclusive to,
SIMD calculations) it is common to see the combination of
```
for ; i <= len(m)-4; i += 4 {
```
and
```
r0, r1, r2, r3 := m[i], m[i+1], m[i+2], m[i+3]
``
Prove did not handle th... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -2174,6 +2174,65 @@ func unsignedSubUnderflows(a, b uint64) bool {\n \treturn a < b\n }\n \n+// checkForChunkedIndexBounds looks for index expressions of the form\n+// A[i+delta] where delta < K and i <= len(A)-K. That is, this is a chunked\n+... | 2025-09-03T17:09:32 |
electron/electron | 3e22f992b064a07545a5d265a1a53a72a0cdbca2 | 364631ee0b4f8a6c705498a79044fceca939711e | chore: bump chromium to 128.0.6611.0 (main) (#42779)
* chore: bump chromium in DEPS to 128.0.6577.0
* chore: bump chromium in DEPS to 128.0.6579.0
* 5675706: Reland "Reland "Reland "Reland "Add toolchains without PartitionAlloc-Everywhere for dump_syms et al""""
https://chromium-review.googlesource.com/c/chro... | [
{
"path": ".github/actions/checkout/action.yml",
"patch": "@@ -87,7 +87,7 @@ runs:\n # Export it\n mkdir -p ../../patches\n git format-patch -1 --stdout --keep-subject --no-stat --full-index > ../../patches/update-patches.patch\n- if (node ./script/push-patch.js 2> /de... | 2024-07-23T15:59:44 |
vercel/next.js | 0b14eb2ed2e9b02ee70f5eff5d10e34b83da8f82 | 1111200bc949e09c44f14e3b51af987ecc2fa6b3 | Add note about $ACTION_ properties, remove reference to .entries() (#84459)
<!-- 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 maki... | [
{
"path": "docs/01-app/02-guides/forms.mdx",
"patch": "@@ -50,7 +50,7 @@ export default function Page() {\n }\n ```\n \n-> **Good to know:** When working with forms that have multiple fields, you can use the [`entries()`](https://developer.mozilla.org/en-US/docs/Web/API/FormData/entries) method with JavaScr... | 2025-10-09T17:29:50 |
nodejs/node | 6cb0690fccd6ed902f785edd1ae5b55855035998 | 9fd90d9df78510d657760eb575afa9985a6e8e30 | src: detect whether the string is one byte representation or not
References: nodejs#56090
PR-URL: https://github.com/nodejs/node/pull/56147
Fixes: https://github.com/nodejs/node/issues/56090
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "doc/api/v8.md",
"patch": "@@ -1304,6 +1304,45 @@ setTimeout(() => {\n }, 1000);\n ```\n \n+## `v8.isStringOneByteRepresentation(content)`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `content` {string}\n+* Returns: {boolean}\n+\n+V8 only supports `Latin-1/ISO-8859-1` and `UTF16` as the underlyi... | 2024-12-21T13:36:22 |
golang/go | 861c90c907db1129dcd1540eecd3c66b6309db7a | 57769b5532e96a8f6b705035a39ee056a22e04c3 | net/http: pool transport gzip readers
goos: linux
goarch: amd64
pkg: net/http
│ HEAD~1 │ HEAD │
│ sec/op │ sec/op vs base │
ClientGzip-8 621.0µ ± 2% 616.3µ ± 10% ~ (p=0.971 n=10)
│ HEAD~1 │ HEAD ... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -12,6 +12,7 @@ import (\n \t\"compress/gzip\"\n \t\"compress/zlib\"\n \t\"context\"\n+\tcrand \"crypto/rand\"\n \t\"crypto/tls\"\n \t\"crypto/x509\"\n \t\"encoding/json\"\n@@ -5281,8 +5282,8 @@ func benchmarkClientServerParallel(b *testing.B, parallelism ... | 2025-09-03T10:09:08 |
electron/electron | 8454f4e49ffee64f6a6f3568acee2b08f0ea9a90 | 60c4c9fec6742b2f1352c4ec3deabed4b53b990a | feat: emit an event when accessing restricted path in File System Access API (#42561)
* fix: show a dialog when accessing restricted path in File System Access API
* fix: allow overriding initial blocked paths
* docs: fix doc
* Update docs/api/session.md
Co-authored-by: Erick Zhao <erick@hotmail.ca>
* f... | [
{
"path": "docs/api/session.md",
"patch": "@@ -143,6 +143,71 @@ Returns:\n Emitted after an extension is loaded and all necessary browser state is\n initialized to support the start of the extension's background page.\n \n+#### Event: 'file-system-access-restricted'\n+\n+Returns:\n+\n+* `event` Event\n+* `d... | 2024-07-22T10:18:15 |
vercel/next.js | 396fed36a28dafd0ebdd326c743fe8bcb12f1853 | 954d40be142cd3dc6b1b52440c1f459893a91853 | Remove bailed out SSG routes from the list of SSG (#83861)
### Why?
When SSG, the pages can bail out when detected a dynamic usage. However,
the routes that bailed out were still marked as SSG, which can confuse
the users.
### How?
Remove the bailed-out routes from the SSG routes list. If there are no
more SSG rout... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -2811,6 +2811,8 @@ export default async function build(\n buildStage: 'static-generation',\n })\n \n+ const hasGSPAndRevalidateZero = new Set<string>()\n+\n // we need to trigger automatic exporting when we have\n // -... | 2025-10-09T15:46:04 |
nodejs/node | 85c0f7aef3da4a12bc1e8f9f9de6ce2d18f6d3de | e28700930d58fa1b8d0d50976ede57ee9432b60c | lib: fixup more incorrect ERR_INVALID_ARG_VALUE uses
PR-URL: https://github.com/nodejs/node/pull/57177
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi... | [
{
"path": "lib/internal/fs/recursive_watch.js",
"patch": "@@ -68,7 +68,7 @@ class FSWatcher extends EventEmitter {\n if (encoding != null) {\n // This is required since on macOS and Windows it throws ERR_INVALID_ARG_VALUE\n if (typeof encoding !== 'string') {\n- throw new ERR_INVALID_... | 2025-02-23T00:01:09 |
golang/go | 57769b5532e96a8f6b705035a39ee056a22e04c3 | a6144613d3b601be1db6aa2fdaa79c954fdfe02c | os: reject OpenDir of a non-directory file in Plan 9
Check that the path argument to OpenDir in Plan 9 is a directory,
and return error syscall.ENOTDIR if it is not.
Fixes #75196
Change-Id: I3bec6b6b40a38c21264b5d22ff3e7dfbf8c1c6d7
Reviewed-on: https://go-review.googlesource.com/c/go/+/700855
Reviewed-by: Damien Nei... | [
{
"path": "src/os/file_plan9.go",
"patch": "@@ -135,7 +135,20 @@ func openFileNolog(name string, flag int, perm FileMode) (*File, error) {\n }\n \n func openDirNolog(name string) (*File, error) {\n-\treturn openFileNolog(name, O_RDONLY, 0)\n+\tf, e := openFileNolog(name, O_RDONLY, 0)\n+\tif e != nil {\n+\t\... | 2025-09-04T10:42:56 |
vercel/next.js | ad90a67439eaab12e048e6def5e11db50a721866 | e2eee896592679fd4947735a0ae2ac4649bb89bf | [test] Assert on stable error codes (#84671)
Fixes
```
DevErrorOverlay › sends feedback when clicking not helpful button
expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 1
Array [
- "/__nextjs_error_feedback?errorCode=E794&wasHelpful=false",
+ "/__nextj... | [
{
"path": "test/development/error-overlay/app/known-client-error/page.tsx",
"patch": "@@ -1,23 +1,18 @@\n 'use client'\n \n-import Link from 'next/link'\n import React from 'react'\n \n export default function Page() {\n- const broken = (\n- <>\n- <Link href=\"/invalid\" as=\"mailto:john@example.co... | 2025-10-09T07:20:13 |
nodejs/node | e28700930d58fa1b8d0d50976ede57ee9432b60c | 22ac5976a837e4caab7c3c8f92b211fe2ba29076 | lib: fixup incorrect argument order in assertEncoding
PR-URL: https://github.com/nodejs/node/pull/57177
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luig... | [
{
"path": "lib/internal/fs/utils.js",
"patch": "@@ -153,7 +153,7 @@ function lazyLoadFs() {\n function assertEncoding(encoding) {\n if (encoding && !Buffer.isEncoding(encoding)) {\n const reason = 'is invalid encoding';\n- throw new ERR_INVALID_ARG_VALUE(encoding, 'encoding', reason);\n+ throw n... | 2025-02-22T23:07:27 |
electron/electron | 60c4c9fec6742b2f1352c4ec3deabed4b53b990a | 296a558c322567104cb2f47771855e7bf8eaf92b | chore: remove unused #includes (#42971)
* chore: iwyu buildflags.h
* chore: iwyu dictionary.h
* chore: iwyu arguments.h
* chore: iwyu values.h
* chore: iwyu compiler_specific.h
* chore: iwyu binder_map.h
* chore: iwyu <vector>
* chore: iwyu <set>
* chore: iwyu raw_ptr
* chore: iwyu gfx/canva... | [
{
"path": "shell/app/electron_content_client.cc",
"patch": "@@ -11,10 +11,7 @@\n \n #include \"base/command_line.h\"\n #include \"base/files/file_util.h\"\n-#include \"base/path_service.h\"\n #include \"base/strings/string_split.h\"\n-#include \"base/strings/string_util.h\"\n-#include \"base/strings/utf_str... | 2024-07-22T09:31:32 |
facebook/react | 8971381549a80d476b07639833e6b38eaaa75a40 | f5d2feb4f069a36140d5e605f5eebc52badcc214 | [compiler] Enable sourceMaps in tsconfig (#30064)
With this, we can set a `debugger` breakpoint and we'll break into the
source code when running tests with snap. Without this, we'd break into
the transpiled js code. | [
{
"path": "compiler/packages/snap/src/runner-watch.ts",
"patch": "@@ -27,7 +27,7 @@ export function watchSrc(\n const host = ts.createWatchCompilerHost(\n configPath,\n ts.convertCompilerOptionsFromJson(\n- { module: \"commonjs\", outDir: \"dist\" },\n+ { module: \"commonjs\", outDir: \"... | 2024-06-25T16:01:43 |
golang/go | d767064170aa3469404d25608d9ff9fa48962337 | 0b1eed09a34f5a1e0a5c237bc9771eb036b35319 | cmd/compile: mark abi.PtrType.Elem sym as used
CL 700336 let the compiler see into the abi.PtrType.Elem field,
but forgot the MarkTypeSymUsedInInterface to ensure that the symbol
is marked as referenced.
I am not sure how to write a test for this, but I noticed this when
working on further optimizations where I "fixe... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -2778,10 +2778,10 @@\n (Load <typ.Uintptr> (ITab (IMake (Convert (Addr {s} sb) _) _)) _) && isFixedSym(s, 0) => (Addr {fixedSym(b.Func, s, 0)} sb)\n \n // Loading constant values from abi.PtrType.Elem.\n-(Load <t> (OffPtr [off] ... | 2025-09-05T19:59:33 |
vercel/next.js | 6ec80654fd96adea8f63d8d705683ad35570228f | 30c64ba0e25985b26fc00cdfb1cfdd80dabfc1a3 | fix: strip _NEXTSEP_ from interpolated pathnames (#84430)
## What
Fixes an issue where internal route normalization markers (`_NEXTSEP_`)
were leaking into compiled URLs for interception routes with adjacent
dynamic parameters.
## Why
When Next.js normalizes route patterns like `/photos/(.):author/:id` for
path-to-... | [
{
"path": "packages/next/src/lib/route-pattern-normalizer.ts",
"patch": "@@ -14,7 +14,7 @@ import type { Token } from 'next/dist/compiled/path-to-regexp'\n * This unique marker is inserted between adjacent parameters and stripped out\n * during parameter extraction to avoid conflicts with real URL content... | 2025-10-09T03:39:35 |
facebook/react | f5d2feb4f069a36140d5e605f5eebc52badcc214 | 89580f209ce68ae9e266e309dfeb1625b434fb58 | [compiler] Fix assignment within for update expression
When converting value blocks from HIR to ReactiveFunction, we have to drop StoreLocal assignments that represent the assignment of the phi, since ReactiveFunction supports compound expressions. These StoreLocals are only present to represent the conditional assign... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/BuildReactiveFunction.ts",
"patch": "@@ -921,14 +921,26 @@ class Driver {\n });\n } else if (defaultBlock.instructions.length === 1) {\n const instr = defaultBlock.instructions[0]!;\n- let place: Place =... | 2024-06-24T17:11:14 |
nodejs/node | 992036ec32589f61ae94fd59885535a75507f2ed | 8c2df73db6ec419b4736cfa7c734a58a7f28f22e | doc: fix typo in Windows building instructions
PR-URL: https://github.com/nodejs/node/pull/57158
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> | [
{
"path": "BUILDING.md",
"patch": "@@ -728,7 +728,7 @@ easily. These files will install the following\n To install Node.js prerequisites from Powershell Terminal:\n \n ```powershell\n-winget configure .\\configurations\\configuration.dsc.yaml\n+winget configure .\\.configurations\\configuration.dsc.yaml\n `... | 2025-02-24T09:29:17 |
electron/electron | 5773a2dce6fbcad34dc4f94a9c41b100fcd3cbaf | bc345db351cc0c62cb5a6b70e9040d4f3e7d41da | fix: dangling raw_ptr NodeBindings::uv_env_ (#42933) | [
{
"path": "shell/browser/electron_browser_main_parts.cc",
"patch": "@@ -604,6 +604,7 @@ void ElectronBrowserMainParts::PostMainMessageLoopRun() {\n node_env_->set_trace_sync_io(false);\n js_env_->DestroyMicrotasksRunner();\n node::Stop(node_env_.get(), node::StopFlags::kDoNotTerminateIsolate);\n+ nod... | 2024-07-18T04:30:09 |
rust-lang/rust | af299893fdbf2bef1716705f7c458ea61eb4ddf0 | 99246f40931ce1d1d29517b61bd70dd9ed4fbe5d | Introduce --ci flag in tidy
* add --ci flag in tidy
This commit introduces --ci flag in tidy because currently bootstrap can't pass its ci env information to tidy. It also modifies how CiInfo initialize its ci_env variable. tidy codes which uses CiEnv::is_ci for checking ci are now using ci_env in CiInfo.
* address r... | [
{
"path": "src/bootstrap/src/core/build_steps/test.rs",
"patch": "@@ -1320,6 +1320,9 @@ impl Step for Tidy {\n if builder.config.cmd.bless() {\n cmd.arg(\"--bless\");\n }\n+ if builder.config.is_running_on_ci() {\n+ cmd.arg(\"--ci=true\");\n+ }\n ... | 2026-02-28T21:37:32 |
facebook/react | 7608516479fb85bc40aa73d8a31a0c93397ee6ff | 27e9476f0aae99adc67b10ee2b78e8ee7dc61421 | refactor[react-devtools/extensions]: dont debounce cleanup logic on navigation (#30027)
## Summary
There is a race condition in the way we poll if React is on the page and
when we actually clear this polling instance. When user navigates to a
different page, we will debounce a callback for 500ms, which will:
1. Cl... | [
{
"path": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -412,13 +412,19 @@ chrome.devtools.network.onNavigated.addListener(syncSavedPreferences);\n // into subscribing to the same events from Bridge and window multiple times\n // In this case, we will handle `operations` event twice o... | 2024-06-24T12:28:17 |
vercel/next.js | 30c64ba0e25985b26fc00cdfb1cfdd80dabfc1a3 | ec560204f97532bae5daa5ef9a907fe2062fc415 | Fix interception route rewrites for nested dynamic routes (#84413)
### What?
Fixes interception routes with dynamic parameters that were generating
rewrite rules in an incorrect format, preventing proper URL rewriting by
Vercel and Next.js.
### Why?
The failing test
`parallel-routes-and-interception-nested-dynamic-... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -865,5 +865,7 @@\n \"864\": \"Missing value for segment key: \\\"%s\\\" with dynamic param type: %s\",\n \"865\": \"`experimental.rdcForNavigations` is enabled, but `experimental.cacheComponents` is not.\",\n \"866\": \"Both \\\"%s\\\" and \\\"%s\\\"... | 2025-10-09T03:38:54 |
nodejs/node | 4466e0754010062344f32f7816e1b2f2944ecad9 | 4e1f0ccb4d309bf9a4374b894555d54d0317d578 | doc: fix web.libera.chat link in pull-requests.md
The old link wasn't prefilling the channel name for me,
and this is the format suggested in the docs:<https://libera.chat/guides/webchat#kiwiirc>
It works, too!
PR-URL: https://github.com/nodejs/node/pull/57076
Reviewed-By: Jordan Harband <ljharb@gmail.com>
Reviewed-... | [
{
"path": "doc/contributing/pull-requests.md",
"patch": "@@ -53,7 +53,7 @@ help, questions, and discussions.\n development of Node.js core specifically.\n \n Node.js also has an unofficial IRC channel:\n-[#Node.js](https://web.libera.chat/?channels=node.js).\n+[#Node.js](https://web.libera.chat/#node.js).\n... | 2025-02-23T19:32:19 |
electron/electron | bc345db351cc0c62cb5a6b70e9040d4f3e7d41da | ce45450c28ff34359c6e911671ce43f7c7e0f344 | fix: dangling raw_ptr<views::View> in api::View (#42929) | [
{
"path": "shell/browser/api/electron_api_view.cc",
"patch": "@@ -180,7 +180,7 @@ View::~View() {\n return;\n view_->RemoveObserver(this);\n if (delete_view_)\n- delete view_;\n+ view_.ClearAndDelete();\n }\n \n void View::ReorderChildView(gin::Handle<View> child, size_t index) {",
"additi... | 2024-07-18T02:31:48 |
facebook/react | 85215413cbfd5f28a4448b0d649b9198458e00e8 | 28c1336c9105c134cba04ed937efcbe391b5979b | [ci] Improve parallelism of yarn test
This PR adds parallelism similar to our existing circleci setup for
running yarn tests with the various test params. It does this by
sharding tests into `$SHARD_COUNT` number of groups, then spawning a job
for each of them and using jest's built in `--shard` option.
Effectively t... | [
{
"path": ".circleci/config.yml",
"patch": "@@ -281,7 +281,7 @@ jobs:\n at: .\n - setup_node_modules\n - run: ./scripts/circleci/download_devtools_regression_build.js << parameters.version >> --replaceBuild\n- - run: node ./scripts/jest/jest-cli.js --build --project devtools --rel... | 2024-06-22T16:33:37 |
nodejs/node | 4e1f0ccb4d309bf9a4374b894555d54d0317d578 | 7174ec9c760442c39961e0d9f1db648bd430ad9b | src: fix crash when lazy getter is invoked in a vm context
V8 should invoke native functions in their creation context,
preventing dynamic context by the caller. However, the lazy getter has
no JavaScript function representation and has no creation context. It
is not invoked in the original creation context. Fix the n... | [
{
"path": "src/node_errors.h",
"patch": "@@ -84,6 +84,7 @@ void OOMErrorHandler(const char* location, const v8::OOMDetails& details);\n V(ERR_INVALID_ARG_TYPE, TypeError) \\\n V(ERR_INVALID_FILE_URL_HOST, TypeError) \\\n V(... | 2025-02-23T14:40:33 |
vercel/next.js | 6cecc7546480c43fdab6a6bbbd14a0ed8372f40f | 8f6155f4a7b7a2e174c1c3d8a9aceef9ddf7f5df | Fix dynamic catchall parameter interpolation in parallel routes (#84279)
### Fixing a bug
- Tests added with comprehensive e2e test suite for parallel route
navigations
- Error handling improved with clearer error messages for missing
dynamic parameters
### What?
Fixes incorrect parameter interpolation where catcha... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -861,5 +861,6 @@\n \"860\": \"Client Max Body Size must be a valid number (bytes) or filesize format string (e.g., \\\"5mb\\\")\",\n \"861\": \"Client Max Body Size must be larger than 0 bytes\",\n \"862\": \"Request body exceeded %s\",\n- \"863\": ... | 2025-10-09T01:49:39 |
facebook/react | 454fb35065053d5572689af1a7c125a41849604a | 2caaa05c08c345f1edddc952cef3fa53c177d612 | [compiler] add fixture for optimization across scopes
Adds a fixture based on internal case where our current output is quite a bit more verbose than the original memoization. See the comment in the fixture for more about the heuristic we can apply.
ghstack-source-id: e637a3814077559a1a56724eafe2567efed0b8d7
Pull Req... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/reordering-across-blocks.expect.md",
"patch": "@@ -0,0 +1,109 @@\n+\n+## Input\n+\n+```javascript\n+import { Stringify } from \"shared-runtime\";\n+\n+function Component({ config }) {\n+ /**\n+ * The original memoiza... | 2024-06-21T23:48:00 |
electron/electron | 81bdba67ec1b69b049f2feb31cea1cfe50fb26bd | c210ae9b333a4f77f2021fbb13623210e6416794 | feat: Implement password delegate for NSS (#41205)
* feat: Implement password delegate for NSS (#41188)
Introduce an app event client-certificate-request-password. It allows
the user to display a UI to prompt for the password.
An alternative would have been to implement a class similar to
CryptoModulePasswordD... | [
{
"path": "docs/api/app.md",
"patch": "@@ -1489,6 +1489,38 @@ This method can only be called after app is ready.\n \n Returns `Promise<string>` - Resolves with the proxy information for `url` that will be used when attempting to make requests using [Net](net.md) in the [utility process](../glossary.md#utili... | 2024-07-17T13:48:03 |
vercel/next.js | 5bb25f9bf4a04d397326d928ba686603c9c609be | 112ef61103237b30d0a231ba26306172b45b867a | Fix flakey overlay feedback test (#84662)
x-ref:
https://github.com/vercel/next.js/actions/runs/18360376124/job/52302677520?pr=84500 | [
{
"path": "test/development/error-overlay/index.test.tsx",
"patch": "@@ -1,5 +1,5 @@\n import { nextTestSetup } from 'e2e-utils'\n-import { assertHasRedbox } from 'next-test-utils'\n+import { assertHasRedbox, retry } from 'next-test-utils'\n \n describe('DevErrorOverlay', () => {\n const { next } = nextTe... | 2025-10-08T23:31:17 |
facebook/react | 2caaa05c08c345f1edddc952cef3fa53c177d612 | 6aea169480286ef9c037c6efefaacecac0e5d7c0 | [compiler] Optimize instruction reordering
Note: due to a bad rebase i included #29883 here. Both were stamped so i'm not gonna bother splitting it back up aain.
This PR includes two changes:
* First, allow `LoadLocal` to be reordered if a) the load occurs after the last write to a variable and b) the LoadLocal lvalu... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Optimization/InstructionReordering.ts",
"patch": "@@ -13,16 +13,19 @@ import {\n HIRFunction,\n IdentifierId,\n Instruction,\n+ InstructionId,\n+ Place,\n isExpressionBlockKind,\n+ makeInstructionId,\n markInstructionIds,\n } from \".... | 2024-06-21T23:48:00 |
golang/go | 0b1eed09a34f5a1e0a5c237bc9771eb036b35319 | f5b20689e9a055223a6dbb6b63f53648ed02cd74 | vendor/golang.org/x/tools: update to a09a2fb
Notably, this includes unitchecker's -fix flag.
Also, fix one vet test that failed due to new diagnostic wording.
Change-Id: I87751083dcd9cc4b1d8dce7d54bb796c745436d0
Reviewed-on: https://go-review.googlesource.com/c/go/+/701195
Reviewed-by: Dmitri Shuralyov <dmitshur@gol... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.35.0\n \tgolang.org/x/telemetry v0.0.0-20250807160809-1a19826ec488\n \tgolang.org/x/term v0.34.0\n-\tgolang.org/x/tools v0.36.1-0.20250808220315-8866876b956f\n+\tgolang.org/x/tools v0.36.1-0.20250904192731-a09a2fba1c08... | 2025-09-04T19:29:52 |
electron/electron | 9023707b9bae3e02256c4303d1b2433a0036011d | 2875fab452961a6b293d4d300e1a4b9907191bf5 | fix: crash with creating OffScreenWebContentsView (#42920)
On the Mac platform, OffScreenWebContentsView uses Automatic Reference
Counting (ARC) to handle the lifecycle of offScreenView_. However, this
private member variable is not initialized and its value is undefined.
In some cases, it is initialized to a garba... | [
{
"path": "shell/browser/osr/osr_web_contents_view.h",
"patch": "@@ -109,7 +109,7 @@ class OffScreenWebContentsView : public content::WebContentsView,\n raw_ptr<content::WebContents> web_contents_ = nullptr;\n \n #if BUILDFLAG(IS_MAC)\n- RAW_PTR_EXCLUSION OffScreenView* offScreenView_;\n+ RAW_PTR_EXCLUS... | 2024-07-17T11:09:32 |
facebook/react | 0b724e9e9c6469983f73631edb2e6abcc9c1193b | 6fb39ec9e9b9aa0242d981c1b89473f02c6f945b | www: remove dynamic scheduler feature flag: enableProfiling (#29996)
I removed the wrong feature flag in #29995, this is the correct one to
match D58682445. | [
{
"path": "packages/scheduler/src/forks/SchedulerFeatureFlags.www-dynamic.js",
"patch": "@@ -11,8 +11,6 @@\n // Use __VARIANT__ to simulate a GK. The tests will be run twice: once\n // with the __VARIANT__ set to `true`, and once set to `false`.\n \n-export const enableProfiling = __VARIANT__;\n-\n export c... | 2024-06-21T13:51:46 |
vercel/next.js | 112ef61103237b30d0a231ba26306172b45b867a | 4f19d01c5269a9d5e3780041b149185e31c4563b | docs: add note clarifying project root in monorepo (#84628)
### What?
- Adding a small note to clarify the meaning of the phrase "project
root" in the documentation for next.config output, specifically in
regards to a monorepo setup
### Why?
- While doing some debugging related to a container that I cannot build
loca... | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/output.mdx",
"patch": "@@ -79,6 +79,9 @@ module.exports = {\n \n - There are some cases in which Next.js might fail to include required files, or might incorrectly include unused files. In those cases, you can leverage `outputFileTracingExc... | 2025-10-08T23:29:31 |
golang/go | 459b85ccaa30bbce4c22b2779672dfe402a2b2da | 87e72769fa74a2ef0bd81a3fd4febe75b8fc6731 | cmd/fix: remove all functionality except for buildtag
For #73605
Change-Id: I4b46b5eb72471c215f2cc208c1b0cdd1fbdbf81a
Reviewed-on: https://go-review.googlesource.com/c/go/+/695855
Reviewed-by: Michael Matloob <matloob@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Alan Donovan <adonovan@googl... | [
{
"path": "src/cmd/fix/cftype.go",
"patch": "@@ -6,9 +6,6 @@ package main\n \n import (\n \t\"go/ast\"\n-\t\"go/token\"\n-\t\"reflect\"\n-\t\"strings\"\n )\n \n func init() {\n@@ -18,130 +15,11 @@ func init() {\n var cftypeFix = fix{\n \tname: \"cftype\",\n \tdate: \"2017-09-27\",\n-\tf: cfty... | 2025-08-13T14:33:14 |
electron/electron | fd907bc0a3cdac25a10b99a77c4b19013ffc6a00 | c7709747d07c72bda1443c1a32a78eb577f91db9 | fix: `getUserMedia` needs macOS system permissions check (#42899)
fix: getUserMedia needs macOS system permissions check
Closes https://github.com/electron/electron/issues/42714
Closes https://github.com/electron/electron/issues/29861 | [
{
"path": "shell/browser/web_contents_permission_helper.cc",
"patch": "@@ -7,23 +7,29 @@\n #include <string_view>\n #include <utility>\n \n+#include \"components/content_settings/core/common/content_settings.h\"\n+#include \"components/webrtc/media_stream_devices_controller.h\"\n #include \"content/public/b... | 2024-07-17T09:30:05 |
facebook/react | 395e2fc6a0f6b90b4b7b1319a4029def73118518 | a5554190c1c44aa6ecef0cef46cd109e21b5c0bf | [chore] Fix TypeError in shouldSkipBundle During yarn build-for-devtools-dev and yarn build-for-devtools-prod Commands (#29906)
## Summary
Fix bundle type filtering logic to correctly handle array input in
argv.type and use some with includes for accurate filtering. This
addresses a TypeError encountered during ... | [
{
"path": "scripts/rollup/build.js",
"patch": "@@ -85,9 +85,11 @@ function parseRequestedNames(names, toCase) {\n return result;\n }\n \n+const argvType = Array.isArray(argv.type) ? argv.type : [argv.type];\n const requestedBundleTypes = argv.type\n- ? parseRequestedNames([argv.type], 'uppercase')\n+ ? ... | 2024-06-20T20:12:41 |
nodejs/node | ba8fbf34f46dab885cf4bf3602e784c063be2ef3 | 90ab559f4df36dbb0b2be0f55b18ad192289645e | test: simplify test-http2-client-promisify-connect-error
There is no need to try to create a TCP connection that fails due to a
missing listening server. Also, the port used for the connection might
be used by another process when the connection is made.
PR-URL: https://github.com/nodejs/node/pull/57144
Reviewed-By: ... | [
{
"path": "test/parallel/test-http2-client-promisify-connect-error.js",
"patch": "@@ -8,14 +8,15 @@ const assert = require('assert');\n const http2 = require('http2');\n const util = require('util');\n \n-const server = http2.createServer();\n+const connect = util.promisify(http2.connect);\n \n-server.liste... | 2025-02-22T09:25:11 |
vercel/next.js | 714a702068c5d5c95354b2b76159e57832b25799 | a8f55b92d50b64bc17f7ff935726cf979e80efde | [middleware]: add upper bound to cloneBodyStream (#84539)
<!-- 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 Contri... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -857,5 +857,8 @@\n \"856\": \"`lockfileTryAcquireSync` is not supported by the wasm bindings.\",\n \"857\": \"`lockfileUnlock` is not supported by the wasm bindings.\",\n \"858\": \"`lockfileUnlockSync` is not supported by the wasm bindings.\",\n- \... | 2025-10-08T22:47:10 |
golang/go | 9d0829963ccab19093c37f21cfc35d019addc78a | ddce0522bee36764c3b9529b8584c3d5b53c5dac | net/http: fix cookie value of "" being interpreted as empty string.
In issue #46443, we have established that double-quotes in cookie values
should be kept as part of the value, rather than being discarded.
However, we have missed the edge case of "" until now. This CL fixes
said edge case.
Fixes #75244
Change-Id: I... | [
{
"path": "src/net/http/cookie.go",
"patch": "@@ -459,9 +459,6 @@ func sanitizeCookieName(n string) string {\n // See https://golang.org/issue/7243 for the discussion.\n func sanitizeCookieValue(v string, quoted bool) string {\n \tv = sanitizeOrWarn(\"Cookie.Value\", validCookieValueByte, v)\n-\tif len(v) =... | 2025-09-03T18:25:59 |
electron/electron | 778d3098a0f0bfc00015d54263674318f4adf6b1 | cbd11bb60510360c05f678bcaab8425ae190f2f2 | feat: customize border radius of Views (#42320)
* feat: add View#setBorderRadius
test: initial setBorderRadius tests
fix: robustly set border radius
chore: add PAUSE_CAPTURE_TESTS for easier screencap dev
feat: add view border radius support
test: view border radius
refactor: cleanup view code
* m... | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -14,6 +14,8 @@ import(\"//third_party/widevine/cdm/widevine.gni\")\n static_library(\"chrome\") {\n visibility = [ \"//electron:electron_lib\" ]\n sources = [\n+ \"//ash/style/rounded_rect_cutout_path_builder.cc\",\n+ \"//ash/style/rounded_rect_cutou... | 2024-07-17T00:16:25 |
facebook/react | a5554190c1c44aa6ecef0cef46cd109e21b5c0bf | b15c8492ca227abff2b1c921dd06e54d421fc415 | fix[compiler playground]: Set source as the pre-change state in HIR diff (#29957)
<!--
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... | [
{
"path": "compiler/apps/playground/components/Editor/Output.tsx",
"patch": "@@ -104,7 +104,7 @@ async function tabify(source: string, compilerOutput: CompilerOutput) {\n passName,\n <TextTabContent\n output={text}\n- diff={lastPassOutput ?? null}\n+ diff={passName !== \"HI... | 2024-06-20T16:01:35 |
rust-lang/rust | a4c683f7dfdce6781cccd2830e67c6b179fd665f | c1b0b32fe9c150392345c9f9c35f6c056f5ffcd4 | fix: use compound assignment in binop_lhs_never_place_diverges test | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/tests/never_type.rs",
"patch": "@@ -826,8 +826,7 @@ fn binop_lhs_never_place_diverges() {\n fn foo() {\n unsafe {\n let p: *mut ! = 0 as _;\n- *p + 1;\n-// ^^ adjustments: NeverToAny\n+ *p += 1;\n }\n }\n \"#,",
"add... | 2026-02-28T18:04:13 |
nodejs/node | 90ab559f4df36dbb0b2be0f55b18ad192289645e | 9e6a62f211273300ab31a2b26e37312156741ba5 | typings: fix `ImportModuleDynamicallyCallback` return type
PR-URL: https://github.com/nodejs/node/pull/57160
Refs: https://github.com/nodejs/node/pull/56919/files#r1955336054
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: James M Snell ... | [
{
"path": "lib/internal/modules/esm/loader.js",
"patch": "@@ -323,7 +323,7 @@ class ModuleLoader {\n * @param {string} source Source code. TODO(joyeecheung): pass the raw buffer.\n * @param {string} isMain Whether this module is a main module.\n * @param {CJSModule|undefined} parent Parent module, ... | 2025-02-21T17:06:34 |
vercel/next.js | 5080edb7dc2ea24cd37adf97fb8de03b9e7b0fdb | 22c5a06d8d312d29c4f7705abe4569d52f809af3 | [docs] fix missing-data-scroll-behavior doc (#84651)
Fixes the code snippets for this doc. | [
{
"path": "errors/missing-data-scroll-behavior.mdx",
"patch": "@@ -12,30 +12,28 @@ Next.js automatically attempts to detect the smooth scrolling configuration to e\n \n Add `data-scroll-behavior=\"smooth\"` to your `<html>` element if you want to disable smooth scrolling when routing via Next.js.\n \n-```ht... | 2025-10-08T20:37:53 |
golang/go | 00b8474e47a1f0381170734604a7ce8123d7146d | e36c5aead681d8264f1fac725f2a15c1ca2b895a | cmd/trace: don't filter events for profile by whether they have stack
Right now the profile-from-trace code blindly discards events that don't
have a stack, but this means it can discard 'end' events for goroutine
time ranges that don't have stacks, like when a goroutine exits a
syscall. This means we drop stack sampl... | [
{
"path": "src/cmd/trace/pprof.go",
"patch": "@@ -153,10 +153,6 @@ func makeComputePprofFunc(state trace.GoState, trackReason func(string) bool) co\n \t\t\tif ev.Kind() != trace.EventStateTransition {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\tstack := ev.Stack()\n-\t\t\tif stack == trace.NoStack {\n-\t\t\t\tcont... | 2025-08-07T18:53:00 |
facebook/react | b15c8492ca227abff2b1c921dd06e54d421fc415 | 6b4646cbd0fd20a7c37f5dfcb0f12193259a6289 | fix[react-devtools/extensions]: propagate globals from env (#29963)
Somehow missed this while working on
https://github.com/facebook/react/pull/29869.
With these changes, manual inspection of the
`react_devtools_backend_compact.js` doesn't have any occurences of
`__IS_FIREFOX__` flag. | [
{
"path": "packages/react-devtools-extensions/webpack.backend.js",
"patch": "@@ -74,6 +74,9 @@ module.exports = {\n 'process.env.IS_CHROME': IS_CHROME,\n 'process.env.IS_FIREFOX': IS_FIREFOX,\n 'process.env.IS_EDGE': IS_EDGE,\n+ __IS_CHROME__: IS_CHROME,\n+ __IS_FIREFOX__: IS_FIR... | 2024-06-20T08:29:05 |
electron/electron | cbd11bb60510360c05f678bcaab8425ae190f2f2 | 81351dd1a9f60010b1a7db2209a1578ebe6a57b0 | fix: `BrowserWindow.setBackgroundColor` should work with transparency (#42824)
fix: BrowserWindow.setBackgroundColor should work with transparency | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3729,14 +3729,17 @@ void WebContents::SetBackgroundColor(std::optional<SkColor> maybe_color) {\n type_ == Type::kBrowserView\n ? SK_ColorTRANSPA... | 2024-07-16T18:11:49 |
rust-lang/rust | 5a18412c93a32811b135ed4a6ac8fdc2df33226b | ba1567989ee7774a1fb53aa680a8e4e8daa0f519 | Remove `TranslationError` | [
{
"path": "compiler/rustc_errors/src/error.rs",
"patch": "@@ -1,139 +0,0 @@\n-use std::borrow::Cow;\n-use std::error::Error;\n-use std::fmt;\n-\n-use rustc_error_messages::fluent_bundle::resolver::errors::{ReferenceKind, ResolverError};\n-use rustc_error_messages::{FluentArgs, FluentError};\n-\n-#[derive(De... | 2026-02-28T17:34:17 |
vercel/next.js | 8be4e433405da68ec6ed46147c46c69d5c6e3297 | 69e3e629b6ea5ec67b6dca0a47bd4e7ba6eb70d4 | [turbopack] No op the webpack bundle analyzer under turbopack (#84614)
This never worked with turbopack, but with the recent default flip using this now breaks the build since it complains about configuring webpack in a turbopack build.
So print a warning and no-op the analyzer. This isn't ideal but it is more actio... | [
{
"path": "packages/next-bundle-analyzer/index.js",
"patch": "@@ -4,6 +4,13 @@ module.exports =\n if (!enabled) {\n return nextConfig\n }\n+ if (process.env.TURBOPACK) {\n+ console.warn(\n+ 'The Next Bundle Analyzer is not compatible with Turbopack builds yet, no report will be ... | 2025-10-08T19:32:50 |
nodejs/node | 8fc919d3cb29a9a4664260bafe8b213efa810271 | 772c609eb49420aa67aa594dc9bef3b6abbda0f0 | test: improve error output of test-http2-client-promisify-connect-error
PR-URL: https://github.com/nodejs/node/pull/57135
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/parallel/test-http2-client-promisify-connect-error.js",
"patch": "@@ -12,13 +12,10 @@ const server = http2.createServer();\n \n server.listen(0, common.mustCall(() => {\n const port = server.address().port;\n- server.close(() => {\n+ server.close(common.mustCall(() => {\n const conne... | 2025-02-21T11:39:44 |
golang/go | e36c5aead681d8264f1fac725f2a15c1ca2b895a | 150fae714eb2bcf0a5fb216ac0e5c7fd76f37e02 | log/slog: add multiple handlers support for logger
Fixes #65954
Change-Id: Ib01c6f47126ce290108b20c07479c82ef17c427c
GitHub-Last-Rev: 34a36ea4bf099b2ad30f35e639155853ff73ef46
GitHub-Pull-Request: golang/go#74840
Reviewed-on: https://go-review.googlesource.com/c/go/+/692237
LUCI-TryBot-Result: Go LUCI <golang-scoped@l... | [
{
"path": "api/next/65954.txt",
"patch": "@@ -0,0 +1,6 @@\n+pkg log/slog, func NewMultiHandler(...Handler) *MultiHandler #65954\n+pkg log/slog, method (*MultiHandler) Enabled(context.Context, Level) bool #65954\n+pkg log/slog, method (*MultiHandler) Handle(context.Context, Record) error #65954\n+pkg log/slo... | 2025-08-27T14:27:31 |
facebook/react | 6b4646cbd0fd20a7c37f5dfcb0f12193259a6289 | e684ca66abf785548b05f2185579cd12b50b2910 | Export captureOwnerStacks() only in DEV "react" builds (#29923)
Only with the enableOwnerStacks flag (which is not on in www).
This is a new DEV-only API to be able to implement what we do for
console.error in user space.
This API does not actually include the current stack that you'd get from
`new Error().sta... | [
{
"path": "packages/react-reconciler/src/ReactCurrentFiber.js",
"patch": "@@ -44,7 +44,7 @@ export function getCurrentParentStackInDev(): string {\n return '';\n }\n \n-function getCurrentFiberStackInDev(stack: Error): string {\n+function getCurrentFiberStackInDev(stack: null | Error): string {\n if (__... | 2024-06-19T18:19:48 |
electron/electron | 81351dd1a9f60010b1a7db2209a1578ebe6a57b0 | f575e5258619f05c8fcc0f3ffa0f5afdc68b406d | build: fix clang format location helper (again) (#42911) | [
{
"path": "script/lib/util.py",
"patch": "@@ -194,6 +194,9 @@ def get_buildtools_executable(name):\n chromium_platform = 'linux64'\n else:\n raise Exception(f\"Unsupported platform: {sys.platform}\")\n+ \n+ if name == 'clang-format':\n+ chromium_platform += '-format'\n \n path = os.path.joi... | 2024-07-16T15:21:18 |
rust-lang/rust | 900bfa15eba65dd5597e5b51892e5e4f2bd21eab | 180e4a7155c019e50a5c375ba9c33e71b1dd644d | refactor(mgca): Change `DefKind::Const` and `DefKind::AssocConst` to have a `is_type_const` flag
* refactor: add `is_type_const` flag to `DefKind::Const` and `AssocConst`
* refactor(cleanup) remove the `rhs_is_type_const` query
* style: fix formatting
* refactor: refactor stuff in librustdoc for new Const and AssocCon... | [
{
"path": "clippy_lints/src/loops/needless_range_loop.rs",
"patch": "@@ -308,7 +308,7 @@ impl<'tcx> VarVisitor<'_, 'tcx> {\n }\n return false; // no need to walk further *on the variable*\n },\n- Res::Def(DefKind::Static { .. } | DefKind... | 2026-02-28T17:27:46 |
vercel/next.js | ab99f9a29b81a0bfda4f2779e0557b6726aae6db | c98f18212df22f7fcacb7cecd4f7e23c1501977b | [breaking]: enable clientSegmentCache by default (#84643)
This enables `experimental.clientSegmentCache` by default and the
additional CI resources associated with testing it independently.
There were a few remaining test failures that are individually disabled
with `TODO(client-segment-cache)` markers. We can fix fo... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -1000,73 +1000,6 @@ jobs:\n stepName: 'test-experimental-prod-${{ matrix.group }}'\n secrets: inherit\n \n- test-client-segment-cache-integration:\n- name: test clientSegmentCache integration\n- needs: ['optimize-ci', 'changes',... | 2025-10-08T17:46:06 |
nodejs/node | 8d10bc7b09efa49e17df17afabfd75462c231058 | d601c7d1048931156999d809407ab1036a7077fd | module: improve error message from asynchronicity in require(esm)
- Improve the error message that shows up when there is a race
from doing require(esm) and import(esm) at the same time.
- Improve error message of ERR_REQUIRE_ASYNC_MODULE by showing
parent and target file names, if available.
Drive-by: split the ... | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -1656,9 +1656,18 @@ E('ERR_QUIC_ENDPOINT_CLOSED', 'QUIC endpoint closed: %s (%d)', Error);\n E('ERR_QUIC_OPEN_STREAM_FAILED', 'Failed to open QUIC stream', Error);\n E('ERR_QUIC_TRANSPORT_ERROR', 'A QUIC transport error occurred. %d [%s]', Error);\n E('ERR_QU... | 2025-02-17T18:44:50 |
golang/go | b8cc907425c4b851d2b941cf689cf8177ea8a153 | 8c27a808905b0611b0a7b7bbff08819206be3b86 | cmd/internal/obj/loong64: fix the usage of offset in the instructions [X]VLDREPL.{B/H/W/D}
The previously defined usage of offset was ambiguous and not easy to understand.
For example, to fetch 4 bytes of data from the address base+8 and
broadcast it to each word element of vector register V5, the assembly
implementat... | [
{
"path": "src/cmd/asm/internal/asm/testdata/loong64enc1.s",
"patch": "@@ -538,13 +538,29 @@ lable2:\n \n \t// Load data from memory and broadcast to each element of a vector register: VMOVQ offset(Rj), <Vd>.<T>\n \tVMOVQ\t\t(R4), V0.B16\t// 80008030\n-\tVMOVQ\t\t1(R4), V1.H8\t// 81044030\n-\tVMOVQ\t\t2(... | 2025-08-29T08:20:16 |
facebook/react | 1434af3d228e216366bd4b7dd324c6408087b3df | ddcecbbebf6af3fa32a323c0591dad1f63587aeb | React DevTools 5.2.0 -> 5.3.0 (#29918)
Full list of changes:
* chore[react-devtools]: improve console arguments formatting before
passing it to original console ([hoxyq](https://github.com/hoxyq) in
[#29873](https://github.com/facebook/react/pull/29873))
* chore[react-devtools]: unify console patching and defaul... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.2.0\",\n+ \"version\": \"5.3.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\... | 2024-06-18T11:12:27 |
electron/electron | f173a0637ad32bb34d32009f24d5493b38daf681 | ae1a684d10f0ca32ff0ebbed1706a05d1acce3b5 | chore: fix `npm run lint` not working on Windows (#42281)
* fix: fixed the `npm run lint` not working on Windows.
* chore: more fixes for lint on Windows
* chore: revert change to patch linting
---------
Co-authored-by: David Sanders <dsanders11@ucsbalum.com> | [
{
"path": ".gitattributes",
"patch": "@@ -22,6 +22,7 @@ patches/**/.patches merge=union\n *.md text eol=lf\n *.mm text eol=lf\n *.mojom text eol=lf\n+*.patches text eol=lf\n *.proto text eol=lf\n *.py text eol=lf\n *.ps1 text eol=lf",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
... | 2024-07-15T16:08:33 |
rust-lang/rust | efc150e5b3de648871a9ce88b2ca0acf38b066fd | eeb94be79adc9df7a09ad0b2421f16e60e6d932c | refactor(mgca): Change `DefKind::Const` and `DefKind::AssocConst` to have a `is_type_const` flag
* refactor: add `is_type_const` flag to `DefKind::Const` and `AssocConst`
* refactor(cleanup) remove the `rhs_is_type_const` query
* style: fix formatting
* refactor: refactor stuff in librustdoc for new Const and AssocCon... | [
{
"path": "compiler/rustc_ast_lowering/src/path.rs",
"patch": "@@ -112,7 +112,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {\n }\n // `a::b::Trait(Args)::TraitItem`\n Res::Def(DefKind::AssocFn, _)\n- | Res::Def(D... | 2026-02-28T17:27:46 |
vercel/next.js | 2c43e517735f000b5adcb4becea44f81fc0419f6 | bf8cadd865c88a4c8222d749491c93816de97506 | [Segment Cache] Fix tests related to optimistic loading state reuse (#84498)
When navigating to a route that reads from search params, and there's no
matching route prefetch in the cache, we use a trick where we
optimistically assume that a route will not be rewritten or redirected
based on the search string. So, if w... | [
{
"path": "packages/next/src/client/components/segment-cache-impl/cache-key.ts",
"patch": "@@ -21,6 +21,8 @@ export function createCacheKey(\n originalHref: string,\n nextUrl: string | null\n ): RouteCacheKey {\n+ // TODO: We should remove the hash from the href and track that separately.\n+ // There'... | 2025-10-08T16:34:20 |
facebook/react | dbc5f36fe985258040976056889d8d27b9f67b8d | 92219ff9b80d0884cfc9c4123e7dcbd54ec0221d | [compiler] Support method-call version of macro functions
Adds fixtures for `macro.namespace(...)` style invocations which we use internally in some cases instead of just `macro(...)`. I tried every example i could think of that could possibly break it (including basing one off of another fixture where we hit an invar... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -254,7 +254,7 @@ function* runWithEnvironment(\n memoizeFbtOperandsInSameScope(hir);\n yield log({\n kind: \"hir\",\n- name: \"MemoizeFbtOperandsInSameScope\",\n+ name: \"MemoizeFbtAndMacroOperan... | 2024-06-14T15:44:40 |
nodejs/node | 867a754acd672a5d5a191d07d03a2a79a72459c9 | 03fdde505e633381a82aa5b8b8d6fe331fa75bb6 | doc: fix 'introduced_in' version in typescript module
PR-URL: https://github.com/nodejs/node/pull/57109
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/typescript.md",
"patch": "@@ -10,7 +10,7 @@ changes:\n description: Added `--experimental-transform-types` flag.\n -->\n \n-<!--introduced_in=v23.6.0-->\n+<!--introduced_in=v22.6.0-->\n \n > Stability: 1.1 - Active development\n ",
"additions": 1,
"deletions": 1,
"language... | 2025-02-20T03:40:16 |
golang/go | b7c20413c5b78b7dfc7f7de52f333a8ca85cd55b | df290384864c0b3cbb557ef11fc95a29d52f6aca | runtime: remove obsolete osArchInit function
The osArchInit function was introduced as a workaround for a Linux kernel bug
that corrupted vector registers on x86 CPUs during signal delivery.
The bug was introduced in Linux 5.2 and fixed in 5.3.15, 5.4.2, and all 5.5 and later kernels.
The fix was also back-ported by m... | [
{
"path": "src/runtime/os_freebsd_riscv64.go",
"patch": "@@ -1,7 +0,0 @@\n-// Copyright 2022 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-package runtime\n-\n-func osArchInit() {}",
"additions": 0,
... | 2025-09-03T14:15:06 |
electron/electron | ae1a684d10f0ca32ff0ebbed1706a05d1acce3b5 | 1e1dc22e167a9b7313aaa914fb400a19edbbeb7f | fix: iteration issues in hid `RevokeEphemeralDevicePermission` (#42851)
fix: iteration issues in hid RevokeEphemeralDevicePermission | [
{
"path": "shell/browser/hid/hid_chooser_context.cc",
"patch": "@@ -12,6 +12,7 @@\n \n #include \"base/command_line.h\"\n #include \"base/containers/contains.h\"\n+#include \"base/containers/map_util.h\"\n #include \"base/strings/string_util.h\"\n #include \"base/strings/stringprintf.h\"\n #include \"base/s... | 2024-07-15T14:41:38 |
facebook/react | 92219ff9b80d0884cfc9c4123e7dcbd54ec0221d | d7bb6039de6d8fa7c89b00626418c110872cc2e7 | chore[react-devtools/backend]: remove consoleManagedByDevToolsDuringStrictMode (#29856)
## Summary
Removes the usage of `consoleManagedByDevToolsDuringStrictMode` flag
from React DevTools backend, this is the only place in RDT where this
flag was used. The only remaining part is
[`ReactFiberDevToolsHook`](https:... | [
{
"path": "packages/react-devtools-shared/src/backend/console.js",
"patch": "@@ -22,7 +22,6 @@ import {\n getStackByFiberInDevAndProd,\n supportsNativeConsoleTasks,\n } from './DevToolsFiberComponentStack';\n-import {consoleManagedByDevToolsDuringStrictMode} from 'react-devtools-feature-flags';\n import... | 2024-06-17T15:13:04 |
vercel/next.js | a7d3aecafedc920221a885b8ab00f35f6de5e91c | e0f676b698a02ffa06ab8b41aff717fed3a69f23 | Turbopack: avoid race condition when updating cells (#84598)
### What?
The update cell operation has a race condition. There is a time between changing the value and invalidating the dependent tasks. That sounds fine as tasks are eventually invalidated. But it's not due to recomputing tasks.
Tasks are considered... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -831,7 +831,6 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n return Ok(Err(self.listen_to_cell(&mut task, task_id, reader, cell).0));\n }\n let is_cancelled = matches!(in_progress, Some(In... | 2025-10-08T13:11:27 |
nodejs/node | 15fec136e892ab0c2f25d2146c875705dfaf3800 | 1dc882d6a09481a1981ba7f1c566096a428eda02 | cli: allow --cpu-prof* in NODE_OPTIONS
Fixes: https://github.com/nodejs/node/issues/56944
PR-URL: https://github.com/nodejs/node/pull/57018
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -3176,6 +3176,10 @@ one is included in the list below.\n * `--allow-wasi`\n * `--allow-worker`\n * `--conditions`, `-C`\n+* `--cpu-prof-dir`\n+* `--cpu-prof-interval`\n+* `--cpu-prof-name`\n+* `--cpu-prof`\n * `--diagnostic-dir`\n * `--disable-proto`\n * `--disable-s... | 2025-02-20T10:11:01 |
golang/go | df290384864c0b3cbb557ef11fc95a29d52f6aca | 4373754bc990fc13b27ae823f977bc6328cc331e | cmd/compile/internal/ssa: load constant values from abi.PtrType.Elem
This CL makes the generated code for reflect.TypeFor as simple as an
intrinsic function.
Fixes #75203
Change-Id: I7bb48787101f07e77ab5c583292e834c28a028d6
Reviewed-on: https://go-review.googlesource.com/c/go/+/700336
LUCI-TryBot-Result: Go LUCI <go... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -2767,6 +2767,22 @@\n (Load <typ.Uintptr> (OffPtr [off] (ITab (IMake (Addr {s} sb) _))) _) && isFixedSym(s, off) => (Addr {fixedSym(b.Func, s, off)} sb)\n (Load <typ.Uintptr> (OffPtr [off] (ITab (IMake (Convert (Addr {s} ... | 2025-09-01T10:31:29 |
rust-lang/rust | aa53530f2720f92a442290706539d8275ffd4f72 | 70bf845cb2b07be5111d7992223ce98aaa1fd6cb | fix: Fix wrong confiditon in `Visibility::min` | [
{
"path": "src/tools/rust-analyzer/crates/hir-def/src/visibility.rs",
"patch": "@@ -234,7 +234,7 @@ impl Visibility {\n if mod_.krate(db) == krate { Some(Visibility::Module(mod_, exp)) } else { None }\n }\n (Visibility::Module(mod_a, expl_a), Visibility::Module(mod_b,... | 2026-02-28T17:00:32 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.