repo stringclasses 11
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 59.2k | files listlengths 1 300 | timestamp timestamp[s]date 2016-04-11 04:39:55 2026-04-09 07:34:40 |
|---|---|---|---|---|---|
golang/go | d8269ab0d59212fed0f5975f7083f6bbbfc00ec4 | c6d64f85565e6a934110c4928ca95fea0045ebaa | cmd/link, cmd/internal/obj: fix a remote call failure issue
When a function call exceeds the immediate value range of the instruction,
a trampoline is required to assist in the jump. Trampoline is only omitted
when plt is needed; otherwise, a check is required.
Change-Id: I7fe2e08d75f6f574475837b560e650bbd4215858
Rev... | [
{
"path": "src/cmd/internal/obj/loong64/asm.go",
"patch": "@@ -2437,6 +2437,9 @@ func (c *ctxt0) asmout(p *obj.Prog, o *Optab, out []uint32) {\n \t\tv := int32(0)\n \t\tif p.To.Target() != nil {\n \t\t\tv = int32(p.To.Target().Pc-p.Pc) >> 2\n+\t\t\tif v < -1<<25 || v >= 1<<25 {\n+\t\t\t\tc.ctxt.Diag(\"branc... | 2025-11-24T09:28:42 |
electron/electron | 8ecd731e96ad47078733437e38ecb8ddc6c689ab | 75cf8ea96d6a81525c9e1b097e2bcba488a1f83b | fix: webview crash on focus (#46979) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -145,3 +145,4 @@ fix_enable_wrap_iter_in_string_view_and_array.patch\n fix_linter_error.patch\n chore_grandfather_in_electron_views_and_delegates.patch\n refactor_patch_electron_permissiontypes_into_blink.patch\n+make_focus_methods_in_webcontentsviewchildf... | 2025-05-09T15:56:22 |
facebook/react | 997c7bc930304142b3af37bcb21599181124aeb4 | b94603b95504130aec72f61e02d7b66d48f33653 | [DevTools] Get source location from structured callsites in prepareStackTrace (#33143)
When we get the source location for "View source for this element" we
should be using the enclosing function of the callsite of the child. So
that we don't just point to some random line within the component.
This is similar to the... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -50,6 +50,7 @@ import {\n gt,\n gte,\n parseSourceFromComponentStack,\n+ parseSourceFromOwnerStack,\n serializeToString,\n } from 'react-devtools-shared/src/backend/utils';\n import {\n@@ -5805,15 +5806,13 @@ exp... | 2025-05-13T16:39:10 |
vercel/next.js | d23af53268d062ff70b7c12322750b85ed3a76ba | c986bcccf166a89861bbaecd69823baf3e8a2b40 | Turbopack: Use a real file entrypoint for Workers (and SharedWorkers) (#88602)
# What
Closes https://github.com/vercel/next.js/issues/84782
Closes https://github.com/vercel/next.js/issues/74842
Closes https://github.com/vercel/next.js/issues/82520
Closes PACK-3723
Replace blob URLs for web workers with re... | [
{
"path": "test/e2e/app-dir/worker/app/shared-worker.ts",
"patch": "@@ -0,0 +1,8 @@\n+// SharedWorkers use onconnect to handle incoming connections\n+let count = 0\n+self.addEventListener('connect', function (e: MessageEvent) {\n+ const port = e.ports[0]\n+ import('./worker-dep').then((mod) => {\n+ por... | 2026-01-21T17:08:54 |
golang/go | c6d64f85565e6a934110c4928ca95fea0045ebaa | c048a9a11f21e879a76e328b7a92f3a47f298b37 | cmd/internal/obj/loong64: remove the incorrect unsigned instructions
The loong64 ISA does not support the 32-bit unsigned arithmetic
instructions ADDU, SUBU and MULU.
Change-Id: Ifa67de9c59aa12d08844189ed23e6daad0cc11ea
Reviewed-on: https://go-review.googlesource.com/c/go/+/722760
Reviewed-by: abner chenc <chenguoqi@... | [
{
"path": "src/cmd/asm/internal/asm/testdata/loong64enc1.s",
"patch": "@@ -199,8 +199,6 @@ lable2:\n \tMOVHU\tR4, 1(R5)\t\t// a4044029\n \tMOVHU\ty+8(FP), R4\t\t// 6440402a\n \tMOVHU\t1(R5), R4\t\t// a404402a\n-\tMULU\tR4, R5\t \t\t// a5101c00\n-\tMULU\tR4, R5, R6\t\t// a6101c00\n \tMULH\tR4, R5\t \t\t/... | 2025-11-21T09:22:05 |
nodejs/node | 6722642e3d009a4d57f00357978f7879af82d403 | 65858596abb8010ba7403c153112fc8de9d916f0 | sea: implement execArgvExtension
This implements the execArgvExtension configuration field for SEA,
which takes one of three string values to specify whether and how
execution arguments can be extended for the SEA at run time:
* `"none"`: No extension is allowed. Only the arguments specified
in `execArgv` will be u... | [
{
"path": "doc/api/single-executable-applications.md",
"patch": "@@ -180,6 +180,7 @@ The configuration currently reads the following top-level fields:\n \"useSnapshot\": false, // Default: false\n \"useCodeCache\": true, // Default: false\n \"execArgv\": [\"--no-warnings\", \"--max-old-space-size=409... | 2025-08-25T11:35:56 |
electron/electron | 75cf8ea96d6a81525c9e1b097e2bcba488a1f83b | 376634c75a5cae443c664f7369480a589427aa81 | fix: restore previous Windows screenshotting (#47020)
Fixes https://github.com/electron/electron/issues/45990
We previously made a change in https://github.com/electron/electron/pull/45868
to fix content protection being lost on hide and re-show. However, this
cause a breaking change where protected windows were made... | [
{
"path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc",
"patch": "@@ -126,6 +126,16 @@ bool ElectronDesktopWindowTreeHostWin::HandleMouseEvent(ui::MouseEvent* event) {\n return views::DesktopWindowTreeHostWin::HandleMouseEvent(event);\n }\n \n+void ElectronDesktopWindowTreeHostWin::Hand... | 2025-05-09T14:38:27 |
facebook/react | 2bcf06b69254cad6f7e702bf7d65c4f30478668c | 5d04d73274a884ed53106677d56dd837ae668c45 | [ReactFlightWebpackPlugin] Add support for .mjs file extension (#33028)
## Summary
Our builds generate files with a `.mjs` file extension. These are
currently filtered out by `ReactFlightWebpackPlugin` so I am updating it
to support this file extension.
This fixes https://github.com/facebook/react/issues/33155
## Ho... | [
{
"path": "packages/react-server-dom-webpack/src/ReactFlightWebpackPlugin.js",
"patch": "@@ -277,8 +277,14 @@ export default class ReactFlightWebpackPlugin {\n chunkGroup.chunks.forEach(function (c) {\n // eslint-disable-next-line no-for-of-loops/no-for-of-loops\n for... | 2025-05-13T01:16:15 |
vercel/next.js | c986bcccf166a89861bbaecd69823baf3e8a2b40 | 3fe7d63f857302d15e753a7a02753eff3fb1f91c | fix: preserve cache behavior for PPR fallback shells with root params (#88556)
When generating PPR fallback shells, a cache miss during warmup was
being treated as a dynamic hole, so the warmup render never filled new
cache entries. This caused root‑param fallback shells (e.g.
`/en/blog/[slug]`) to suspend even though... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -979,5 +979,6 @@\n \"978\": \"Next.js has blocked a javascript: URL as a security precaution.\",\n \"979\": \"invariant: expected %s bytes of postponed state but only received %s bytes\",\n \"980\": \"Failed to load client middleware manifest\",\n- ... | 2026-01-21T16:45:07 |
golang/go | ff2fd6327ecb343d96074dff3ccee359b5f1d629 | 3531ac23d4aac6bdd914f14f65ee5fdc5e6e98fa | go/types, types2: remove setDefType and most def plumbing
CL 722161 replaced the setDefType mechanism with boundaries on composite
literals, removing the need to pass the def argument in all but 1 case.
The exception is interface types, which use def to populate the receiver
type for better error messages.
Change-Id... | [
{
"path": "src/cmd/compile/internal/types2/call.go",
"patch": "@@ -669,7 +669,7 @@ var cgoPrefixes = [...]string{\n \t\"_Cmacro_\", // function to evaluate the expanded expression\n }\n \n-func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName, wantType bool) {\n+func (check *Check... | 2025-11-24T19:34:39 |
electron/electron | 376634c75a5cae443c664f7369480a589427aa81 | 8e8d3a4f3e1fed290f279c5a844593db0417cd1f | feat: add support for `--experimental-network-inspection` (#46690)
* feat: add support for `--experimental-network-inspection`
* docs: fix minor formatting issues
visible on both GH[1] and the docs site[2]
[1] https://github.com/electron/electron/blob/main/docs/api/command-line-switches.md#nodejs-flags
[2] https://... | [
{
"path": "docs/api/command-line-switches.md",
"patch": "@@ -254,7 +254,7 @@ Electron supports some of the [CLI flags][node-cli] supported by Node.js.\n \n **Note:** Passing unsupported command line switches to Electron when it is not running in `ELECTRON_RUN_AS_NODE` will have no effect.\n \n-### `--inspec... | 2025-05-09T13:44:14 |
nodejs/node | 323f19c18fea06b9234a0c945394447b077fe565 | 15ede933c319a8cbd7723488862c570ea0424d1c | doc: clarify experimental platform vulnerability policy
Adds a new section to the threat model specifying that security
vulnerabilities affecting only experimental platforms will not be
accepted as valid security issues and will be treated as normal bugs.
This clarifies that experimental OS/hardware combinations do n... | [
{
"path": "SECURITY.md",
"patch": "@@ -102,6 +102,22 @@ vulnerability in the context of the Node.js threat model. In other\n words, it cannot assume that a trusted element (such as the operating\n system) has been compromised.\n \n+### Experimental platforms\n+\n+Node.js maintains a tier-based support syste... | 2025-08-25T10:35:13 |
facebook/react | 5d04d73274a884ed53106677d56dd837ae668c45 | 3820740a7fbfc3b27a5127b43bdad44382ff3ce0 | Add eager alternate.stateNode cleanup (#33161)
This is a fix for a problem where React retains shadow nodes longer than
it needs to. The behaviour is shown in React Native test:
https://github.com/facebook/react-native/blob/main/packages/react-native/src/private/__tests__/utilities/__tests__/ShadowNodeReferenceCounter... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -59,6 +59,7 @@ import {\n enableComponentPerformanceTrack,\n enableViewTransition,\n enableFragmentRefs,\n+ enableEagerAlternateStateNodeCleanup,\n } from 'shared/ReactFeatureFlags';\n import {\n FunctionComponent,\n@@ ... | 2025-05-12T16:39:20 |
vercel/next.js | a3500c3227de0bda8e34c2a347047e88a524d9da | bed512a381250493a2e2e0f9185c69960c713fd9 | [test] Fix deploy test of `cache-components.server-action.test.ts` (#88854)
When deployed, the sentinels where showing `at runtime` instead of `at
buildtime`. There are two reasons for this:
1. The page sentinel was accidentally rendered in a client component,
which causes a hydration mismatch, and the value toggling... | [
{
"path": "test/e2e/app-dir/cache-components/app/server-action-inline/form.tsx",
"patch": "@@ -1,7 +1,6 @@\n 'use client'\n \n import { ReactNode, useActionState } from 'react'\n-import { getSentinelValue } from '../getSentinelValue'\n \n export function Form({ action }: { action: () => Promise<ReactNode> }... | 2026-01-21T16:18:44 |
golang/go | 3531ac23d4aac6bdd914f14f65ee5fdc5e6e98fa | 2b8dbb35b0d6a5601ae9b6f1d1de106774251214 | go/types, types2: replace setDefType with pending type check
Given a type definition of the form:
type T RHS
The setDefType function would set T.fromRHS as soon as we knew its
top-level type. For instance, in:
type S struct { ... }
S.fromRHS is set to a struct type before type-checking anything inside
the stru... | [
{
"path": "src/cmd/compile/internal/types2/expr.go",
"patch": "@@ -993,6 +993,13 @@ func (check *Checker) rawExpr(T *target, x *operand, e syntax.Expr, hint Type, a\n \t\tcheck.nonGeneric(T, x)\n \t}\n \n+\t// Here, x is a value, meaning it has a type. If that type is pending, then we have\n+\t// a cycle. A... | 2025-11-24T22:04:49 |
electron/electron | 8e8d3a4f3e1fed290f279c5a844593db0417cd1f | 2cbd968da5f20609f43db440ce9de3b0c947e026 | fix: use-after-move of bus connection in xdg portal detection (#47008) | [
{
"path": "shell/browser/ui/file_dialog_linux_portal.cc",
"patch": "@@ -86,8 +86,9 @@ void CheckPortalAvailabilityOnBusThread() {\n << (g_portal_available ? \"yes\" : \"no\");\n flag->Set();\n bus->ShutdownAndBlock();\n+ bus.reset();\n },\n- ... | 2025-05-09T09:32:08 |
nodejs/node | 62c62056ca8b987a2b11fe71a18ab1deb0f4611a | f86b652bc8beec4aea778bfc621781264dfb6c6a | benchmark: calibrate length of util.diff
500 + 1000 already cover the curve. 2000 doesn’t add
new qualitative insight — it just extends the same curve
further down (another ~3–4× slowdown).
According to https://github.com/nodejs/performance/issues/186
this benchmark takes one minute to conclude a single run.
This sho... | [
{
"path": "benchmark/util/diff.js",
"patch": "@@ -5,7 +5,7 @@ const common = require('../common');\n \n const bench = common.createBenchmark(main, {\n n: [1e3],\n- length: [1e3, 2e3],\n+ length: [500, 1000],\n scenario: ['identical', 'small-diff', 'medium-diff', 'large-diff'],\n });\n ",
"addition... | 2025-08-24T20:57:38 |
facebook/react | 3820740a7fbfc3b27a5127b43bdad44382ff3ce0 | 5069e18060e00d7c07b2b04ebc8a3fa21e2d810a | [compiler][entrypoint] Fix edgecases for noEmit and opt-outs (#33148)
Title
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33148).
* #33149
* __->__ #33148 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Imports.ts",
"patch": "@@ -59,6 +59,7 @@ type ProgramContextOptions = {\n opts: PluginOptions;\n filename: string | null;\n code: string | null;\n+ hasModuleScopeOptOut: boolean;\n };\n export class ProgramContext {\n /**\n@@ -... | 2025-05-09T17:37:49 |
vercel/next.js | 71f9bda3cda291eba9aece9ead1708d3c9de349b | d5d760540d2ff2630d5275a30577e51cac8f2620 | [ci] Fix Rspack/Turbopack test manifest generation (#88845)
The recent change to always run all tests without aborting on failure
(#88435) inadvertently broke manifest generation. Previously, test
output was emitted for all tests when `NEXT_TEST_CONTINUE_ON_ERROR` was
set, but that variable was removed. Now test outpu... | [
{
"path": ".github/workflows/integration_tests_reusable.yml",
"patch": "@@ -94,6 +94,7 @@ jobs:\n export NEXT_TEST_MODE=${{\n inputs.test_type == 'development' && 'dev' || 'start'\n }}\n+ export NEXT_TEST_EMIT_ALL_OUTPUT=1\n \n ${{ inputs.run_before_test }}\n \n@@ -1... | 2026-01-21T15:11:58 |
nodejs/node | f86b652bc8beec4aea778bfc621781264dfb6c6a | 8692e601cc8a6f392449c70ee3a77082aad26e79 | src: enforce assumptions in FIXED_ONE_BYTE_STRING
These functions are both meant to be used with a null-terminated and
thus non-empty sequence of `char`s. However, there is nothing stopping
call sites from passing zero-length sequences, which would certainly not
be null-terminated and also would cause an underflow in ... | [
{
"path": "src/util.h",
"patch": "@@ -346,17 +346,19 @@ inline v8::Local<v8::String> OneByteString(v8::Isolate* isolate,\n std::string_view str);\n \n // Used to be a macro, hence the uppercase name.\n-template <int N>\n-inline v8::Local<v8::String> FIXED_ONE_BYTE_... | 2025-08-24T11:07:37 |
electron/electron | a8695d4387b128729ed8a80984cf10f543c37df3 | 924a8da940ec0acefeb6d43e74f5669a8704d159 | chore: bump chromium to 138.0.7166.0 (main) (#46975)
* chore: bump chromium in DEPS to 138.0.7165.0
* 6492127: Add new less invasive context menu mode for mobile interesttarget
https://chromium-review.googlesource.com/c/chromium/src/+/6492127
* chore: fixup patch indices
---------
Co-authored-by: electron-roller[... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7164.0',\n+ '138.0.7165.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1
},
{
"path": "patches/chromium/add_didinstallco... | 2025-05-07T17:04:15 |
golang/go | 2b8dbb35b0d6a5601ae9b6f1d1de106774251214 | 21ebed0ac0a3f733811bea2355ed85d3b1bf6fbd | crypto,testing/cryptotest: ignore random io.Reader params, add SetGlobalRandom
First, we centralize all random bytes generation through drbg.Read. The
rest of the FIPS 140-3 module can't use external functions anyway, so
drbg.Read needs to have all the logic.
Then, make sure that the crypto/... tree uses drbg.Read (o... | [
{
"path": "api/next/70942.txt",
"patch": "@@ -0,0 +1 @@\n+pkg testing/cryptotest, func SetGlobalRandom(*testing.T, uint64) #70942",
"additions": 1,
"deletions": 0
},
{
"path": "doc/godebug.md",
"patch": "@@ -178,6 +178,11 @@ includes these key/value pairs in the goroutine status header o... | 2025-09-15T16:58:04 |
vercel/next.js | d5d760540d2ff2630d5275a30577e51cac8f2620 | 1bdb2e20052281c614a8bfef08a6ebb66a546129 | Fix deployment test due to data-dpl-id attribute (#88846) | [
{
"path": "test/e2e/favicon-short-circuit/favicon-short-circuit.test.ts",
"patch": "@@ -28,9 +28,9 @@ describe('favicon-short-circuit', () => {\n expect(res.status).toBe(404)\n expect(res.headers.get('content-type')).toBe('text/html; charset=utf-8')\n \n- // Expect we got the right body.\n+... | 2026-01-21T11:29:36 |
facebook/react | 38ef6550a88f7744f5dcd4a3de7af6f13a540be5 | b629a865fb18b899d251bf5c3c5ca2580d222720 | [compiler][playground][tests] Standardize more pragmas (#33146)
(Almost) all pragmas are now one of the following:
- `@...TestOnly`: custom pragma for test fixtures
- `@<configName>` | `@<configName>:true`: enables with either true or a
default enabled value
- `@<configName>:<json value>` | [
{
"path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/compilationMode-all-output.txt",
"patch": "@@ -1,5 +1,5 @@\n import { c as _c } from \"react/compiler-runtime\"; // \n- @compilationMode(all)\n+ @compilationMode:\"all\"\n function nonReactFn() {\n const $ = _c(1);\... | 2025-05-08T15:26:53 |
nodejs/node | 52f616d42f9bbc83cc29d0fbdbeea9d5f26e0f85 | 589ef79bf8949d1839cf31dce66e20ccb69c82f0 | test_runner: do not error when getting `fullName` of root context
PR-URL: https://github.com/nodejs/node/pull/59377
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -1533,6 +1533,8 @@ class Suite extends Test {\n }\n \n function getFullName(test) {\n+ if (test === test.root) return test.name;\n+\n let fullName = test.name;\n \n for (let t = test.parent; t !== t.root; t = t.parent) {",
"additions": 2,
... | 2025-08-23T19:40:58 |
electron/electron | c16ea8d54edc58f9ccd1ab9875a1c49ccc81e8e2 | b7ae16271643d08aecfc48c1604c677bf62029c3 | fix: printing when no `mediaSize` specified (#46937)
fix: printing when no mediaSize specified | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3133,11 +3133,21 @@ void WebContents::Print(gin::Arguments* args) {\n options.Get(\"duplexMode\", &duplex_mode);\n settings.Set(printing::kSettingDuplexMode, static_cast<int>(duplex_mode));\n \n- // We've already done necessary p... | 2025-05-07T00:12:25 |
rust-lang/rust | 801eafd7418b732e6df24366c6f576b648f77025 | 3f08f6759a6583666cf5075e7b0ffafc20f19a50 | Suggest `if let PAT == expr` on `let PAT = expr else` with non-structural type const
```
error: constant of non-structural type `partial_eq::S` in a pattern
--> $DIR/suggest_equality_comparison_instead_of_pattern_matching.rs:22:18
|
LL | struct S;
| -------- `partial_eq::S` must be annotated with `#[de... | [
{
"path": "compiler/rustc_mir_build/src/errors.rs",
"patch": "@@ -1144,6 +1144,24 @@ pub(crate) enum SuggestEq<'tcx> {\n ty: Ty<'tcx>,\n manual_partialeq_impl: bool,\n },\n+ #[multipart_suggestion(\n+ \"{$manual_partialeq_impl ->\n+ [false] if `{$ty}` manually implem... | 2026-03-17T18:17:48 |
facebook/react | fbe7bc21b9aa00afa230132b3f7eee6d2b5c94a7 | 9518f1185621aecb99fd72385cdb137c6e8bd8fe | [compiler][be] repro edge cases for noEmit and module opt-outs (#33144)
see test fixtures
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33144).
* #33146
* #33145
* __->__ #33144 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/repro-bailout-nopanic-shouldnt-outline.expect.md",
"patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+// @panicThreshold(none)\n+'use no memo';\n+\n+function Foo() {\n+ return <button onClick={() => alert('h... | 2025-05-08T15:18:16 |
vercel/next.js | ca37db9d6d07d2757e69f4588c52eb23e065a9fe | d3de9bce9bd9e4d03673e3b13ec1dc690bf63a0c | Fix `revalidatePath` with params and trailing slash when deployed (#88623) | [
{
"path": "packages/next/errors.json",
"patch": "@@ -978,5 +978,6 @@\n \"977\": \"maxPostponedStateSize must be a valid number (bytes) or filesize format string (e.g., \\\"5mb\\\")\",\n \"978\": \"Next.js has blocked a javascript: URL as a security precaution.\",\n \"979\": \"invariant: expected %s by... | 2026-01-21T07:22:00 |
nodejs/node | fb07edc82faa6b2bd70d55bf5bf242c75cc112f2 | 6fd67ec6e3ccbdfcfa0300b9b742040a0607a4bc | test: use mustSucceed in test-repl-tab-complete-import
Refactor test/parallel/test-repl-tab-complete-import.js to use
mustSucceed in places where no error is expected in the callback. This
clarifies the intent of the tests and improves assertion accuracy.
Refs: https://github.com/nodejs/node/pull/59204
PR-URL: https:... | [
{
"path": "test/parallel/test-repl-tab-complete-import.js",
"patch": "@@ -32,8 +32,7 @@ const testMe = repl.start({\n testMe._domain.on('error', assert.ifError);\n \n // Tab complete provides built in libs for import()\n-testMe.complete('import(\\'', common.mustCall((error, data) => {\n- assert.strictEqual... | 2025-08-23T09:28:02 |
electron/electron | c4ac192aa464f938f443c74f09ba25fa9dff0aeb | 8308ac29c83cce45ad70b5143a8bd170cd1f8553 | chore: bump chromium to 138.0.7164.0 (main) (#46948)
* chore: bump chromium in DEPS to 138.0.7164.0
* 6508870: Add missing PermissionType mapping and remove default case.
https://chromium-review.googlesource.com/c/chromium/src/+/6508870
* chore: fixup patch indices
---------
Co-authored-by: electron-roller[bot] <... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7160.0',\n+ '138.0.7164.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1
},
{
"path": "patches/chromium/allow_disabling_... | 2025-05-06T18:01:37 |
rust-lang/rust | 3f08f6759a6583666cf5075e7b0ffafc20f19a50 | ec15ca96ff2a5b733ab142ecc3744daed751c440 | Suggest using equality comparison instead of pattern matching on non-strutural constant in pattern
```
error: constant of non-structural type `partial_eq::S` in a pattern
--> $DIR/suggest_equality_comparison_instead_of_pattern_matching.rs:16:18
|
LL | struct S;
| -------- `partial_eq::S` must be annota... | [
{
"path": "compiler/rustc_mir_build/src/errors.rs",
"patch": "@@ -1053,17 +1053,97 @@ pub(crate) struct TypeNotStructural<'tcx> {\n #[primary_span]\n #[label(\"constant of non-structural type\")]\n pub(crate) span: Span,\n- #[label(\"`{$ty}` must be annotated with `#[derive(PartialEq)]` to be... | 2026-03-17T17:54:01 |
nodejs/node | 7178e9141ae83a28e5742c38594a1068314a88bf | 3b4f9b26b1e4f05257949627b478f9223611961d | crypto: fix subtle.getPublicKey error for secret type key inputs
PR-URL: https://github.com/nodejs/node/pull/59558
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de> | [
{
"path": "lib/internal/crypto/webcrypto.js",
"patch": "@@ -1090,7 +1090,8 @@ async function getPublicKey(key, keyUsages) {\n });\n \n if (key[kKeyType] !== 'private')\n- throw lazyDOMException('key must be a private key', 'InvalidAccessError');\n+ throw lazyDOMException('key must be a private key... | 2025-08-22T15:56:56 |
electron/electron | 206544cbc0e8b98de056eb6aeff65bd97a6b67d4 | a5ec3f7476353336b61ab7d7561beca0ebfdfc64 | fix: crash on macOS dialog after `window-all-closed` (#46927)
fix: crash on dialog after window-all-closed | [
{
"path": "shell/browser/ui/cocoa/electron_ns_window.mm",
"patch": "@@ -218,7 +218,7 @@ - (void)rotateWithEvent:(NSEvent*)event {\n }\n \n - (NSRect)contentRectForFrameRect:(NSRect)frameRect {\n- if (shell_->has_frame())\n+ if (shell_ && shell_->has_frame())\n return [super contentRectForFrameRect:fra... | 2025-05-06T12:47:50 |
nodejs/node | 3b4f9b26b1e4f05257949627b478f9223611961d | 3c1521cfa00c1ddfff344cbf4225ac5132d36023 | module: allow overriding linked requests for a ModuleWrap
This allows overriding linked requests for a `ModuleWrap`. The
`statusOverride` in `vm.SourceTextModule` could call `moduleWrap.link`
a second time when `statusOverride` of `linking` is set to undefined.
Overriding of linked requests should be no harm but bett... | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -604,23 +604,13 @@ void ModuleWrap::GetModuleRequests(const FunctionCallbackInfo<Value>& args) {\n \n // moduleWrap.link(moduleWraps)\n void ModuleWrap::Link(const FunctionCallbackInfo<Value>& args) {\n- Realm* realm = Realm::GetCurrent(args);\n Isolate* isola... | 2025-08-22T12:57:07 |
electron/electron | a5ec3f7476353336b61ab7d7561beca0ebfdfc64 | be399f2feed6223d035411b25eb5144800b81fb3 | fix: allowed dialog file types with one filter (#46900) | [
{
"path": "shell/browser/ui/file_dialog_mac.mm",
"patch": "@@ -131,10 +131,6 @@ void SetAllowedFileTypes(NSSavePanel* dialog, const Filters& filters) {\n [file_types_list addObject:content_types_set];\n }\n \n- // Don't add file format picker.\n- if ([file_types_list count] <= 1)\n- return;\n-\n ... | 2025-05-06T08:31:00 |
golang/go | a3fb92a7100f3f2824d483ee0cbcf1264584b3e4 | 0c747b7aa757da0a0a0ac7b2b5834dca84c7c019 | runtime/secret: implement new secret package
Implement secret.Do.
- When secret.Do returns:
- Clear stack that is used by the argument function.
- Clear all the registers that might contain secrets.
- On stack growth in secret mode, clear the old stack.
- When objects are allocated in secret mode, mark them and t... | [
{
"path": "doc/next/6-stdlib/1-secret.md",
"patch": "@@ -0,0 +1,20 @@\n+### New secret package\n+\n+<!-- https://go.dev/issue/21865 --->\n+\n+The new [secret](/pkg/runtime/secret) package is available as an experiment.\n+It provides a facility for securely erasing temporaries used in\n+code that manipulates... | 2025-09-25T16:26:03 |
nodejs/node | a73a9a028b3cf05e74fbc42a884ac40ac56c6590 | d30090b427af22d6244f59d6e24260fdcf036727 | doc: fix typos in `environment_variables.md`
PR-URL: https://github.com/nodejs/node/pull/59536
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/environment_variables.md",
"patch": "@@ -96,10 +96,10 @@ For example:\n MY_VAR_B = ' my variable b '\n ```\n \n-will be treaded identically to:\n+will be treated identically to:\n \n ```text\n-MY_VAR_A = my variable\n+MY_VAR_A = my variable a\n MY_VAR_B = ' my variable b ... | 2025-08-21T14:55:34 |
vercel/next.js | 6138452203337a72d79decbe26d7be0bd36233f4 | d2ea7d32061c59cff57704cda4502ac794e71910 | [test]: add ability to run test-deploy with pre-existing deployment (#88829)
When digging into failing deployment tests, I often will re-run the test
itself without wanting to change anything about Next.js or the test
application, especially when I suspect a logic bug in the test itself or
need to figure out what's ca... | [
{
"path": "contributing/core/testing.md",
"patch": "@@ -92,6 +92,8 @@ these can be leveraged by prefixing the `pnpm test` command.\n it can be used when not using `pnpm test-dev` or `pnpm test-start` directly.\n Valid test modes can be seen here:\n https://github.com/vercel/next.js/blob/aa664868c102dd... | 2026-01-20T22:40:49 |
golang/go | 0c747b7aa757da0a0a0ac7b2b5834dca84c7c019 | 0f6397384b583a18bae90421a71b6abad39a437f | go/build/constraint: use strings.Builder instead of for { str+=str }
(This works around a bug in the stringsbuilder modernizer.)
For #76476
Change-Id: I1cb8715fd79c0363cb9c159686eaeb3482c93228
Reviewed-on: https://go-review.googlesource.com/c/go/+/724721
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
TryBot-Byp... | [
{
"path": "src/go/build/constraint/expr.go",
"patch": "@@ -515,18 +515,18 @@ func PlusBuildLines(x Expr) ([]string, error) {\n \t// Prepare the +build lines.\n \tvar lines []string\n \tfor _, or := range split {\n-\t\tline := \"// +build\"\n+\t\tvar line strings.Builder\n+\t\tline.WriteString(\"// +build\")... | 2025-11-26T22:53:04 |
electron/electron | b90de7d07ec7db942ce400be0a7142145b2dab3a | 946030050608acad808adf4d3c5712f5c154ac15 | chore: bump chromium to 138.0.7160.0 (main) (#46915)
* chore: bump chromium in DEPS to 138.0.7158.0
* chore: bump chromium in DEPS to 138.0.7160.0
* 6509206: Move Keychain UI suppression code into apple_keychain.cc
https://chromium-review.googlesource.com/c/chromium/src/+/6509206
* 6489036: Fix DesktopDataControls... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7156.0',\n+ '138.0.7160.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1
},
{
"path": "patches/chromium/build_add_electr... | 2025-05-05T17:58:40 |
nodejs/node | d30090b427af22d6244f59d6e24260fdcf036727 | 9d744b5b63cae4e377041432c2e19ce384703ef2 | crypto: return cached copies from CryptoKey algorithm and usages getters
Fixes: https://github.com/nodejs/node/issues/59534
PR-URL: https://github.com/nodejs/node/pull/59538
Fixes: https://github.com/nodejs/node/issues/59535
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
R... | [
{
"path": "lib/internal/crypto/keys.js",
"patch": "@@ -1,6 +1,7 @@\n 'use strict';\n \n const {\n+ ArrayFrom,\n ArrayPrototypeSlice,\n ObjectDefineProperties,\n ObjectDefineProperty,\n@@ -81,6 +82,8 @@ const kAlgorithm = Symbol('kAlgorithm');\n const kExtractable = Symbol('kExtractable');\n const kKe... | 2025-08-19T12:02:53 |
facebook/react | 4a702865dd0c5849c1b454091560c3ef26121611 | 0ff1d13b8055c801d8b9b6779958c09fd0dc63e0 | [Flight] Encode enclosing line/column numbers and use it to align the fake function (#33136)
Stacked on #33135.
This encodes the line/column of the enclosing function as part of the
stack traces. When that information is available.
I adjusted the fake function code generation so that the beginning of
the arrow funct... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -2226,6 +2226,8 @@ function createFakeFunction<T>(\n sourceMap: null | string,\n line: number,\n col: number,\n+ enclosingLine: number,\n+ enclosingCol: number,\n environmentName: string,\n ): FakeFunction<T> {\n // This cr... | 2025-05-07T16:34:55 |
vercel/next.js | 03a1815a533c849cccf25836a45e5e52dbe18467 | eb14325ed44c70671ac4d36c2fe2cb9cef67ca34 | Inject `<html data-dpl-id>` and don't inline it into JS anymore (#88761)
We don't inline `process.env.NEXT_DEPLOYMENT_ID` anymore into browser chunks, and instead read it from `<html data-dpl-id` attribute at runtime.
Closes PACK-6538
- [x] ~~Causes a hydration error at the moment.~~ Solved by removing the attribute... | [
{
"path": "packages/next/src/build/define-env.ts",
"patch": "@@ -177,12 +177,10 @@ export function getDefineEnv({\n : isClient\n ? isTurbopack\n ? {\n+ // This is set at runtime by packages/next/src/client/register-deployment-id-global.ts\n 'process.env.NEX... | 2026-01-20T16:13:43 |
golang/go | 0f6397384b583a18bae90421a71b6abad39a437f | 992ad55e3dcea4bd017d618d759cb9cd3529f288 | go/types: relax NewSignatureType for append(slice, str...)
CL 688815 contained a partial fix for the reported bug, but
NewSignatureType continued to panic. This change relaxes it
to permit construction of the type "func([]byte, B) []byte"
where "type B []byte". We must do so because a client
may instantiate the type "... | [
{
"path": "src/cmd/compile/internal/types2/signature.go",
"patch": "@@ -28,17 +28,28 @@ type Signature struct {\n \trecv *Var // nil if not a method\n \tparams *Tuple // (incoming) parameters from left to right; or nil\n \tresults *Tuple // (outgoing) results from left to ri... | 2025-07-21T18:35:08 |
nodejs/node | 9d744b5b63cae4e377041432c2e19ce384703ef2 | 7a47cbf4c52bec8cedf3933010747136c7468d5e | crypto: use CryptoKey internal slots in Web Cryptography
PR-URL: https://github.com/nodejs/node/pull/59538
Fixes: https://github.com/nodejs/node/issues/59535
Fixes: https://github.com/nodejs/node/issues/59534
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Rafa... | [
{
"path": "lib/internal/crypto/aes.js",
"patch": "@@ -47,6 +47,7 @@ const {\n InternalCryptoKey,\n SecretKeyObject,\n createSecretKey,\n+ kAlgorithm,\n } = require('internal/crypto/keys');\n \n const {\n@@ -108,7 +109,7 @@ function asyncAesCtrCipher(mode, key, data, algorithm) {\n mode,\n key... | 2025-08-19T12:02:15 |
facebook/react | 53c9f81049b4440a02b5ed3edb128516821c0279 | e5a8de81e57181692d33ce916dfd6aa23638ec92 | [DevTools] Use Popover API for TraceUpdates highlighting (#32614)
## Summary
When using React DevTools to highlight component updates, the highlights
would sometimes appear behind elements that use the browser's
[top-layer](https://developer.mozilla.org/en-US/docs/Glossary/Top_layer)
(such as `<dialog>` elements or c... | [
{
"path": "packages/react-devtools-extensions/chrome/manifest.json",
"patch": "@@ -4,7 +4,7 @@\n \"description\": \"Adds React debugging tools to the Chrome Developer Tools.\",\n \"version\": \"6.1.1\",\n \"version_name\": \"6.1.1\",\n- \"minimum_chrome_version\": \"102\",\n+ \"minimum_chrome_versio... | 2025-05-07T14:48:17 |
vercel/next.js | eb14325ed44c70671ac4d36c2fe2cb9cef67ca34 | 689f6fe38eb9bd62fc8471c03af436680a3d0567 | Turbopack: remove deployment id suffix from client reference manifest chunks (#88741)
Closes PACK-6539
When `experimental.runtimeServerDeploymentId` is enabled, read the `process.env.NEXT_DEPLOYMENT_ID` and append to the chunks when evaluating the `client-reference-manifest.js`
Originally, I tried to do it after the... | [
{
"path": "crates/next-core/src/next_config.rs",
"patch": "@@ -968,6 +968,8 @@ pub struct ExperimentalConfig {\n cache_components: Option<bool>,\n use_cache: Option<bool>,\n root_params: Option<bool>,\n+ runtime_server_deployment_id: Option<bool>,\n+\n // ---\n // UNSUPPORTED\n //... | 2026-01-20T15:11:24 |
golang/go | 992ad55e3dcea4bd017d618d759cb9cd3529f288 | 3fd9cb1895d37682096cde4229e45bea1428dfbe | crypto/tls: support crypto.MessageSigner private keys
Fixes #75656
Change-Id: I6bc71c80973765ef995d17b1450ea2026a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/724820
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Nicholas Husin <husin@google.com>
Reviewed-by: Roland Shoemaker <roland@... | [
{
"path": "doc/next/6-stdlib/99-minor/crypto/tls/75656.md",
"patch": "@@ -0,0 +1,2 @@\n+If [Certificate.PrivateKey] implements [crypto.MessageSigner], its SignMessage\n+method is used instead of Sign in TLS 1.2 and later.",
"additions": 2,
"deletions": 0
},
{
"path": "src/crypto/tls/auth.go"... | 2025-11-26T20:11:35 |
electron/electron | cb445b3bbd5b7638e7b6ff9f16f668171d94c3a7 | 91626a8eacc65aadcd4ba3e1f06994137712cbd1 | chore: bump node to v22.15.0 (main) (#46742)
* chore: bump node in DEPS to v22.15.0
* inspector: fix GN build
https://github.com/nodejs/node/pull/56798
* test: search cctest files
https://github.com/nodejs/node/pull/56791
* crypto: fix missing OPENSSL_NO_ENGINE guard
https://github.com/nodejs/node/pull/57012
* ... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '138.0.7156.0',\n 'node_version':\n- 'v22.14.0',\n+ 'v22.15.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1
},
{
"p... | 2025-05-05T08:23:17 |
nodejs/node | 7a47cbf4c52bec8cedf3933010747136c7468d5e | b6b7f39d3adce215ac47a14c55131850b18eafed | crypto: normalize RsaHashedKeyParams publicExponent
Fixes: https://github.com/nodejs/node/issues/59535
PR-URL: https://github.com/nodejs/node/pull/59538
Fixes: https://github.com/nodejs/node/issues/59534
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Rafael Go... | [
{
"path": "lib/internal/crypto/util.js",
"patch": "@@ -397,7 +397,9 @@ const kSupportedAlgorithms = createSupportedAlgorithms(kAlgorithmDefinitions);\n \n const simpleAlgorithmDictionaries = {\n AeadParams: { iv: 'BufferSource', additionalData: 'BufferSource' },\n- RsaHashedKeyGenParams: { hash: 'HashAlg... | 2025-08-19T11:59:57 |
vercel/next.js | e5926d3d1efa24563c819f7473e6425e2cb5547e | f1908dad17e915c544fdad1d88cb8794f05034f7 | Fix buildManifest.js deployment tests (#88806)
When `NEXT_DEPLOYMENT_ID` is set (and thus skew protection is enabled), then these pages router manifests are actually on a different path (so that the output paths doesn't change with the build id anymore)
Fixup for https://github.com/vercel/next.js/pull/88641 | [
{
"path": "test/e2e/invalid-static-asset-404-app/invalid-static-asset-404-app-asset-prefix.test.ts",
"patch": "@@ -1,17 +1,17 @@\n import { nextTestSetup } from 'e2e-utils'\n \n describe('invalid-static-asset-404-app-asset-prefix', () => {\n- const { next, isNextDev } = nextTestSetup({\n+ const { next, is... | 2026-01-20T14:00:17 |
golang/go | 3fd9cb1895d37682096cde4229e45bea1428dfbe | 3353c100bb97954edc11c1bc07fd07db9d4bc567 | cmd/compile: fix bloop get name logic
This CL change getNameFrom impl to pattern match addressible patterns.
Change-Id: If1faa22a3a012d501e911d8468a5702b348abf16
Reviewed-on: https://go-review.googlesource.com/c/go/+/724180
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Revi... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -42,40 +42,42 @@ import (\n \t\"cmd/compile/internal/reflectdata\"\n \t\"cmd/compile/internal/typecheck\"\n \t\"cmd/compile/internal/types\"\n-\t\"fmt\"\n+\t\"cmd/internal/src\"\n )\n \n // getNameFromNode tries to iteratively peel down the n... | 2025-11-25T01:37:13 |
facebook/react | 587cb8f8967866139bbfdbae3f519cb37e68a054 | 79586c7eb626c6b9362c308a54c9ee5b66e640e5 | [Fiber] Replay onChange Events if input/textarea/select has changed before hydration (#33129)
This fixes a long standing issue that controlled inputs gets out of sync
with the browser state if it's changed before we hydrate.
This resolves the issue by replaying the change events (click, input and
change) if the value... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -49,7 +49,6 @@ import {\n } from './ReactDOMTextarea';\n import {setSrcObject} from './ReactDOMSrcObject';\n import {validateTextNesting} from './validateDOMNesting';\n-import {track} from './inputValueTracking';\n import ... | 2025-05-06T04:10:05 |
electron/electron | 91626a8eacc65aadcd4ba3e1f06994137712cbd1 | 5390728cb79059bd53483f16cc5389287c48e85c | fix: xdg portal version detection for file dialogs on linux (#46905)
* chore: use dbus thread for portal version detection
* Update shell/browser/ui/file_dialog_linux_portal.cc
Co-authored-by: Robo <hop2deep@gmail.com>
---------
Co-authored-by: Charles Kerr <charles@charleskerr.com> | [
{
"path": "filenames.gni",
"patch": "@@ -35,6 +35,7 @@ filenames = {\n \"shell/browser/relauncher_linux.cc\",\n \"shell/browser/ui/electron_desktop_window_tree_host_linux.cc\",\n \"shell/browser/ui/file_dialog_linux.cc\",\n+ \"shell/browser/ui/file_dialog_linux_portal.cc\",\n \"shell/brow... | 2025-05-05T07:57:20 |
vercel/next.js | b58b1dc901a2deed30e6861e0675352c92dd925e | a77fd58c963ee134522b5818c8c3587013e1f66a | Use rewritten pathname for implicit cache tags (#88732)
When a page is accessed via a rewrite, use the destination path (not the source path) when computing implicit tags. This ensures that calling `revalidatePath('/dest')` correctly invalidates cache entries for pages rewritten to that destination.
Fixes `'use cac... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -2017,9 +2017,22 @@ async function renderToHTMLOrFlightImpl(\n \n const isPossibleActionRequest = getIsPossibleServerAction(req)\n \n+ // For implicit tags, we need to use the rewritten pathname (if a rewrite\n+ // occurred) ra... | 2026-01-19T20:50:37 |
facebook/react | c129c2424b662a371865a0145c562a1cf934b023 | 0c1575cee8a78dd097edcafc307522ad000e372c | [compiler][repro] Nested fbt test fixture (#32779)
Ideally we should detect and bail out on this case to avoid babel build
failures. | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/error.todo-fbt-param-nested-fbt.expect.md",
"patch": "@@ -0,0 +1,56 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from 'fbt';\n+import {Stringify} from 'shared-runtime';\n+\n+/**\n+ * MemoizeFbtAndMacroOperands n... | 2025-05-05T15:52:45 |
golang/go | 3353c100bb97954edc11c1bc07fd07db9d4bc567 | 301d9f9b52b9b5dbc57151f680a64d1bf85e6d43 | cmd/go: remove experiment checks for compile -c
There's a comment that we should test that compile -c is compatible with
the fieldtrack and preemptibleloops experiments and then remove the
check disabling -c when those experiments are enabled.
I tested this and the tests pass with fieldtrack (with the exception of on... | [
{
"path": "src/cmd/go/internal/work/build.go",
"patch": "@@ -238,8 +238,6 @@ See also: go install, go get, go clean.\n \t`,\n }\n \n-const concurrentGCBackendCompilationEnabledByDefault = true\n-\n func init() {\n \t// break init cycle\n \tCmdBuild.Run = runBuild",
"additions": 0,
"deletions": 2
}... | 2025-11-26T15:30:34 |
electron/electron | 074b9344b5c79aecc93f74efbb8dc0e773426983 | 3faddd5ae2ae03be8ba037c77989630576bb8167 | fix: prevent log files being written to current directory on Windows (#44413)
* fix: prevent log files being written to current directory on Windows
* Update shell/common/logging.cc
Co-authored-by: Robo <hop2deep@gmail.com>
* chore: add test
* chore: update includes
Refs https://chromium-review.googlesource.com/c... | [
{
"path": "shell/common/api/electron_api_testing.cc",
"patch": "@@ -2,8 +2,10 @@\n // Use of this source code is governed by the MIT license that can be\n // found in the LICENSE file.\n \n+#include \"base/command_line.h\"\n #include \"base/dcheck_is_on.h\"\n #include \"base/logging.h\"\n+#include \"content... | 2025-05-02T21:27:29 |
vercel/next.js | 97532172c065ca2b49dd79d1fa44c3a0b864065b | e1685de205016c209be30980ac402c43f7cc5f58 | [test] Deflake `test/development/app-dir/hydration-error-count/hydration-error-count.test.ts` (#88749) | [
{
"path": "test/development/app-dir/hydration-error-count/hydration-error-count.test.ts",
"patch": "@@ -334,11 +334,11 @@ describe('hydration-error-count', () => {\n it('should display runtime error separately from hydration errors', async () => {\n const browser = await next.browser('/hydration-with-... | 2026-01-19T18:09:07 |
facebook/react | 0c1575cee8a78dd097edcafc307522ad000e372c | 52ea641449570bbc32eb90fb1a76740249b6bcf5 | [compiler][bugfix] Bail out when a memo block declares hoisted fns (#32765)
Note that bailing out adds false positives for hoisted functions whose
only references are within other functions. For example, this rewrite
would be safe.
```js
// source program
function foo() {
return bar();
}
function bar() {
... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PruneHoistedContexts.ts",
"patch": "@@ -5,10 +5,13 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+import {CompilerError} from '..';\n import {\n convertHoistedLValueKind,\n IdentifierId,\n+ Instructi... | 2025-05-05T15:45:58 |
golang/go | 86bbea0cfa72041fb4315eb22099b0bc83caa314 | e2cae9ecdf944a1cc5d8803ff8932180858b8ce6 | crypto/fips140: add WithoutEnforcement
WithoutEnforcement lets programs running under GODEBUG=fips140=only
selectively opt out of strict enforcement. This is especially helpful
for non-critical uses of cryptography routines like SHA-1 for content
addressable storage backends (E.g. git).
Fixes #74630
Change-Id: Iabba... | [
{
"path": "api/next/74630.txt",
"patch": "@@ -0,0 +1,2 @@\n+pkg crypto/fips140, func Enforced() bool #74630\n+pkg crypto/fips140, func WithoutEnforcement(func()) #74630",
"additions": 2,
"deletions": 0
},
{
"path": "doc/next/6-stdlib/99-minor/crypto/fips140/74630.md",
"patch": "@@ -0,0 +... | 2025-11-24T13:08:10 |
vercel/next.js | e1685de205016c209be30980ac402c43f7cc5f58 | a0e2d59cf476981d18adcafa912d014664cd879a | Fix `Build Commands` section in AGENTS.md (#88757)
The commands must have been hallucinated. | [
{
"path": "AGENTS.md",
"patch": "@@ -98,14 +98,14 @@ gt submit --no-edit\n ## Build Commands\n \n ```bash\n-# Build the Next.js package (dev server only - faster)\n-pnpm --filter=next build:dev-server\n+# Build the Next.js package\n+pnpm --filter=next build\n \n # Build everything\n pnpm build\n \n # Run sp... | 2026-01-19T18:05:35 |
facebook/react | 0db8db178c1521f979535bdba32bf9db9f47ca05 | 8570116bd1ba872537132de42b997ec56c726659 | [compiler] Validate against mutable functions being frozen
This revisits a validation I built a while ago, trying to make it more strict this time to ensure that it's high-signal.
We detect function expressions which are *known* mutable — they definitely can modify a variable defined outside of the function expressio... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -103,6 +103,7 @@ import {transformFire} from '../Transform';\n import {validateNoImpureFunctionsInRender} from '../Validation/ValidateNoImpureFunctionsInRender';\n import {CompilerError} from '..';\n import {v... | 2025-05-03T00:15:32 |
nodejs/node | 499a5c345165f0d4a94b98d08f1ace7268781564 | a43f984761103acdfd6c3fd82ec62ce7e60bdbfb | test: fix `test-setproctitle` status when `ps` is not available
PR-URL: https://github.com/nodejs/node/pull/59523
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "test/parallel/test-setproctitle.js",
"patch": "@@ -4,7 +4,7 @@ const common = require('../common');\n const { isMainThread } = require('worker_threads');\n \n // FIXME add sunos support\n-if (common.isSunOS || common.isIBMi) {\n+if (common.isSunOS || common.isIBMi || common.isWindows) {\n commo... | 2025-08-20T18:24:04 |
golang/go | e2cae9ecdf944a1cc5d8803ff8932180858b8ce6 | 623ef2813579c9b52ba4a0335722df4d93566b74 | crypto/x509: add ExtKeyUsage.OID method
And OIDFromASN1OID for converting between asn1.ObjectIdentifier and OID.
Fixes #75325
Change-Id: I3b84dce54346d88aab731ffe30d0fef07b014f04
Reviewed-on: https://go-review.googlesource.com/c/go/+/724761
Reviewed-by: Neal Patel <nealpatel@google.com>
Auto-Submit: Roland Shoemaker... | [
{
"path": "api/next/75325.txt",
"patch": "@@ -0,0 +1,2 @@\n+pkg crypto/x509, func OIDFromASN1OID(asn1.ObjectIdentifier) (OID, error) #75325\n+pkg crypto/x509, method (ExtKeyUsage) OID() OID #75325",
"additions": 2,
"deletions": 0
},
{
"path": "doc/next/6-stdlib/99-minor/crypto/x509/75325.md"... | 2025-11-26T17:21:13 |
vercel/next.js | a0e2d59cf476981d18adcafa912d014664cd879a | 4379e65e5fdb0dc5e218be2b4711c5ff85b5cb3e | [test] Deflake `test/development/app-dir/browser-log-forwarding/fixtures/verbose-level/verbose-level.test.ts` (#88754) | [
{
"path": "test/development/app-dir/browser-log-forwarding/fixtures/verbose-level/verbose-level.test.ts",
"patch": "@@ -15,6 +15,7 @@ describe('browser-log-forwarding verbose level', () => {\n expect(output).toContain('browser error:')\n expect(output).toContain('browser warn:')\n expect(o... | 2026-01-19T17:26:33 |
facebook/react | 8570116bd1ba872537132de42b997ec56c726659 | 4f1d2ddf95906e9a3436552c524410e9d39f48ca | [compiler] Fix for uncalled functions that are known-mutable
If a function captures a mutable value but never gets called, we don't infer a mutable range for that function. This means that we also don't alias the function with its mutable captures.
This case is tricky, because we don't generally know for sure what is... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InerAliasForUncalledFunctions.ts",
"patch": "@@ -0,0 +1,134 @@\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 director... | 2025-05-03T00:15:32 |
nodejs/node | 7535aa1f72ac0e8e8ae94e9c9d873be7ae0bc711 | db70ceb49f90a66008026ccec261f088d0576013 | esm: link modules synchronously when no async loader hooks are used
When no async loader hooks are registered, perform the linking as
synchronously as possible to reduce the chance of races from the
the shared module loading cache.
PR-URL: https://github.com/nodejs/node/pull/59519
Fixes: https://github.com/nodejs/nod... | [
{
"path": "lib/internal/modules/esm/loader.js",
"patch": "@@ -65,6 +65,8 @@ let debug = require('internal/util/debuglog').debuglog('esm', (fn) => {\n debug = fn;\n });\n \n+const { isPromise } = require('internal/util/types');\n+\n /**\n * @typedef {import('./hooks.js').HooksProxy} HooksProxy\n * @typed... | 2025-08-18T14:08:59 |
golang/go | efe9ad501d94743d87e500a7ba0b1732a89e9afd | ac3369242d3a6d6219fdf1d592effc5e51ddfeb8 | go/types, types2: improve printing of []*operand lists (debugging support)
Special-case an sprintf argument of []*operand type, similar to what
we do for other lists. As a result a list of operands is printed as
[a, b, c] rather than [a b c] (default formatting for slices).
(We could factor out this code into a gener... | [
{
"path": "src/cmd/compile/internal/types2/format.go",
"patch": "@@ -23,6 +23,17 @@ func sprintf(qf Qualifier, tpSubscripts bool, format string, args ...any) string\n \t\t\tpanic(\"got operand instead of *operand\")\n \t\tcase *operand:\n \t\t\targ = operandString(a, qf)\n+\t\tcase []*operand:\n+\t\t\tvar b... | 2025-11-26T00:26:25 |
facebook/react | 73d7e816b7746c700ab843964aaf11c17351fac1 | ac2cae524576b8091a6d78d9ab05627053949df1 | [compiler] ValidatePreservedManualMemoization reports detailed errors
This pass didn't previously report the precise difference btw inferred/manual dependencies unless a debug flag was set. But the error message is really good (nice job mofeiz): the only catch is that in theory the inferred dep could be a temporary th... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts",
"patch": "@@ -141,14 +141,14 @@ function getCompareDependencyResultDescription(\n ): string {\n switch (result) {\n case CompareDependencyResult.Ok:\n- return 'dependencies equal';\n+ ... | 2025-05-03T00:09:34 |
nodejs/node | db70ceb49f90a66008026ccec261f088d0576013 | f8d68d30ae0bc7ba72e65518c511283b3a259afd | esm: show race error message for inner module job race
The race can not only happen when the ESM is loaded by
the CommonJS loader, but can also happen to inner
module jobs in the dependency graph.
PR-URL: https://github.com/nodejs/node/pull/59519
Fixes: https://github.com/nodejs/node/issues/59366
Refs: https://github... | [
{
"path": "lib/internal/modules/esm/loader.js",
"patch": "@@ -471,6 +471,10 @@ class ModuleLoader {\n const resolvedImportAttributes = resolveResult.importAttributes ?? importAttributes;\n let job = this.loadCache.get(url, resolvedImportAttributes.type);\n if (job !== undefined) {\n+ // TOD... | 2025-08-18T14:06:02 |
vercel/next.js | c6dd32c25b38303c9b29f52d4d8eef711db1e650 | d56ed7bbca98107d76293a69293770cdc80f98e3 | Turbopack: Add `--debug-build-paths` support to filter routes (#88655)
Add support for the `--debug-build-paths` flag in Turbopack builds. Previously this flag only affected which routes were prerendered (statically generated), but the bundler still compiled all routes.
Now routes are filtered early in `Project::en... | [
{
"path": ".config/eslintignore.mjs",
"patch": "@@ -48,6 +48,7 @@ export default globalIgnores([\n 'examples/with-typescript-graphql/lib/gql/',\n 'test/development/basic/hmr/components/parse-error.js',\n 'test/development/mcp-server/fixtures/default-template/app/build-error/page.tsx',\n+ 'test/produc... | 2026-01-19T16:17:38 |
electron/electron | 2b07e6450c80a7a3a11f3f40dadd4ebe2361442b | 63114e2b8ead2c20fadfd1c8ea6f32e7607e6044 | chore: bump chromium to 138.0.7154.0 (main) (#46872)
* chore: bump chromium in DEPS to 138.0.7152.0
* chore: update patches
* chore: bump chromium in DEPS to 138.0.7154.0
* chore: update patches
* ozone/wayland: Fix bookmark dropdown right click context menu
https://chromium-review.googlesource.com/c/chromium/src... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '137.0.7151.0',\n+ '138.0.7154.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1
},
{
"path": "filenames.libcxx.gni",
"patch... | 2025-05-02T04:53:40 |
golang/go | fb5156a0981c2b89a118695138194e1af162ac8e | b194f5d24a71e34f147c90e4351d80ac75be55de | testing: fix bloop doc
This CL deletes the compiler detail part from bloop documentation.
Change-Id: I73933707a593d4958e2300416d15e7213f001c3a
Reviewed-on: https://go-review.googlesource.com/c/go/+/724800
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: David Chas... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -483,14 +483,12 @@ func (b *B) loopSlowPath() bool {\n // the timer so cleanup code is not measured.\n //\n // Within the body of a \"for b.Loop() { ... }\" loop, arguments to and\n-// results from function calls and assignment receivers within the loop are... | 2025-11-26T19:15:51 |
facebook/react | ac2cae524576b8091a6d78d9ab05627053949df1 | 66de8e5a9975a4b53734ebed8a1c1f07892426a8 | [compiler] Fix for string attribute values with emoji
If a JSX attribute value is a string that contains unicode or other characters that need special escaping, we wrap the attribute value in an expression container. However, our unicode to detect this only handled the basic unicode character plane, not the "astral" p... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -2327,9 +2327,12 @@ function codegenInstructionValue(\n * u0080 to u009F: C1 control codes\n * u00A0 to uFFFF: All non-basic Latin characters\n * https://en.wikipedia.org/wiki/List_of_Uni... | 2025-05-03T00:07:50 |
nodejs/node | 3e5885b3cb55d423ee5d0d47115536fea3454806 | bdcab711b8048af2c4dcd4a2c33d506ce1621c6a | doc: clarify maxRSS unit in `process.resourceUsage()`
PR-URL: https://github.com/nodejs/node/pull/59511
Fixes: https://github.com/nodejs/node/issues/59508
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/process.md",
"patch": "@@ -3642,7 +3642,7 @@ added: v12.6.0\n * `systemCPUTime` {integer} maps to `ru_stime` computed in microseconds.\n It is the same value as [`process.cpuUsage().system`][process.cpuUsage].\n * `maxRSS` {integer} maps to `ru_maxrss` which is the maximum residen... | 2025-08-20T05:36:07 |
vercel/next.js | a6f714cbc9cf6f4538cc61385d81a3f1cb90c82e | 38f4304c2255b3c6443796a052fc3ed0f8cb3aa4 | [Devtool Indicator] Fix cross alignment (#88664)
<img width="4106" height="3504" alt="image"
src="https://github.com/user-attachments/assets/102ddcd6-84c3-4cf7-be99-977473399570"
/>
Co-authored-by: Jiwon Choi <devjiwonchoi@gmail.com> | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-indicator/next-logo.tsx",
"patch": "@@ -237,10 +237,6 @@ export function NextLogo({\n &:has([data-issues-collapse]) {\n padding-right: calc(var(--padding-left) / 2);\n }\n-\n- [data-cr... | 2026-01-19T13:36:00 |
electron/electron | 63114e2b8ead2c20fadfd1c8ea6f32e7607e6044 | df4564dc39c5c874915ed6f441658f721bb06fff | fix: revert macOS content protection logic refactor (#46886)
Revert "refactor: use upstream content protection logic on macOS (#46813)"
This reverts commit 34adb976b632157379de34cc1a71bdf6cc089714. | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -26,7 +26,6 @@\n #include \"shell/common/options_switches.h\"\n #include \"ui/base/hit_test.h\"\n #include \"ui/compositor/compositor.h\"\n-#include \"ui/views/widget/native_widget_private.h\"\n #include \"ui/views/widget/widget.h\"\n \n #if !BUILDFLA... | 2025-05-01T20:49:55 |
golang/go | 437d2362ce8ad3e10631aaf90cb4d8c8126d1bac | 71f8f031b27502e057c569fef8cd4f2cb9187504 | os,internal/poll: don't call IsNonblock for consoles and Stdin
windows.IsNonblock can block for synchronous handles that have an
outstanding I/O operation. Console handles are always synchronous, so
we should not call IsNonblock for them. Stdin is often a pipe, and
almost always a synchronous handle, so we should not ... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -451,6 +451,10 @@ func (fd *FD) Init(net string, pollable bool) error {\n \tfd.isFile = fd.kind != kindNet\n \tfd.isBlocking = !pollable\n \n+\tif !pollable {\n+\t\treturn nil\n+\t}\n+\n \t// It is safe to add overlapped handles that also perform I/O... | 2025-11-26T09:25:16 |
facebook/react | 26ecc98a0014700524e78d938e3654c73213cf3b | f0ca53d1337780ccfd49c132170d378c789cb463 | [mcp] Prompt improvements for smarter tool composition (#33108)
Our runtime results are still bogus, but so far this tweak let's the llm
use the tools a little more intelligently.
example:
---
```js
import React from 'react';
function App() {
const [count, setCount] = React.useState(0);
const [data, setData] = ... | [
{
"path": "compiler/packages/react-mcp-server/src/index.ts",
"patch": "@@ -29,7 +29,7 @@ const server = new McpServer({\n \n server.tool(\n 'query-react-dev-docs',\n- 'This tool lets you search for official docs from react.dev. This always has the most up to date information on React. You can look for do... | 2025-05-02T21:50:39 |
nodejs/node | ef58be6f0cbe3d00273cfbdab8e8555617673f34 | 3755e8b1446589dae8ad2cdead7806f721b979f9 | doc: add missing Zstd strategy constants
PR-URL: https://github.com/nodejs/node/pull/59312
Fixes: https://github.com/nodejs/node/issues/59290
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "doc/api/zlib.md",
"patch": "@@ -750,6 +750,34 @@ The most important options are:\n * `ZSTD_c_compressionLevel`\n * Set compression parameters according to pre-defined cLevel table. Default\n level is ZSTD\\_CLEVEL\\_DEFAULT==3.\n+* `ZSTD_c_strategy`\n+ * Select the compression strategy.\n+... | 2025-08-19T18:38:44 |
vercel/next.js | b46d599b0fe6bae102f98dac49cfeec0f1102eb6 | dc5939158af99146e9992619b347336a193442c0 | Add negation pattern support to `--debug-build-paths` (#88654)
Patterns prefixed with `!` now exclude matching files from the `next build --debug-build-paths` option.
Using only negation patterns will build everything except the excluded paths.
Examples:
- `--debug-build-paths 'app/**,!app/[lang]/**'` - build a... | [
{
"path": "packages/next/src/bin/next.ts",
"patch": "@@ -183,7 +183,7 @@ program\n )\n .option(\n '--debug-build-paths <patterns>',\n- 'Comma-separated glob patterns or explicit paths for selective builds. Examples: \"app/*\", \"app/page.tsx\", \"app/**/page.tsx\"'\n+ 'Comma-separated glob pat... | 2026-01-19T12:29:54 |
electron/electron | 2734088d201199a5ede57463715729f517d394fc | 4641bc961998f412a8c3ea450457f0a97d344785 | fix: fix and enable `accessibilitySupportEnabled` tests (#46825)
* test: do not skip visibleOnAllWorkspaces tests on Windows
That feature is supported on Linux, so move the test from the
"window states (excluding Linux)" section into the
"window states" section.
* fix: nested it() calls in visibleOnAllWorkspaces spe... | [
{
"path": "spec/api-app-spec.ts",
"patch": "@@ -979,22 +979,22 @@ describe('app module', () => {\n });\n \n ifdescribe(process.platform !== 'linux')('accessibilitySupportEnabled property', () => {\n- it('with properties', () => {\n- it('can set accessibility support enabled', () => {\n- e... | 2025-04-29T04:52:26 |
rust-lang/rust | 11810b8dd9d5ea1dad36eb5f6c77fa5d95871a81 | 3645249d79dfb136b5d8de3ce153d19d6698d92d | fix inference variables leaking into HIR const lowering logic | [
{
"path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs",
"patch": "@@ -2874,6 +2874,12 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {\n span: Span,\n ) -> Const<'tcx> {\n let tcx = self.tcx();\n+\n+ if ty.has_infer() {\n+ let e = self.dcx().span_err(span, \"infe... | 2026-03-08T05:49:21 |
golang/go | eb63ef9d6676dc0edb112cd297820306a327017a | 06412288cfd31ab365fe8ee6368742dffa759803 | runtime: panic if cleanup function closes over cleanup pointer
This would catch problems like https://go.dev/cl/696295.
Benchmark effect with this CL plus CL 697535:
goos: linux
goarch: amd64
pkg: runtime
cpu: 12th Gen Intel(R) Core(TM) i7-1260P
│ /tmp/foo.1 │ /tmp/foo.2 ... | [
{
"path": "src/runtime/mcleanup.go",
"patch": "@@ -71,7 +71,14 @@ import (\n // mentions it. To ensure a cleanup does not get called prematurely,\n // pass the object to the [KeepAlive] function after the last point\n // where the object must remain reachable.\n+//\n+//go:nocheckptr\n func AddCleanup[T, S a... | 2025-08-22T20:47:42 |
facebook/react | e39b380a21aa4ef48d5880aa2c800ec5b1b044bd | 9de0304ad72bc3f8a77d2d84efa530b8051d1c15 | [mcp] Fix unresolved imports (#33105)
We need to explicitly import the modules so they'll be inlined correctly
into the bundle. | [
{
"path": "compiler/packages/react-mcp-server/src/tools/runtimePerf.ts",
"patch": "@@ -1,5 +1,11 @@\n import * as babel from '@babel/core';\n import puppeteer from 'puppeteer';\n+// @ts-ignore\n+import * as babelPresetTypescript from '@babel/preset-typescript';\n+// @ts-ignore\n+import * as babelPresetEnv f... | 2025-05-02T20:54:17 |
nodejs/node | 7c9fbc15bc13aeec1682e191673843e4c41951b1 | 897358962024b6cfe820c865696d303b2888df58 | assert,util: fail promise comparison in deep equal checks
It is impossible to look into the content of a promise and its
state. This aligns the comparison with WeakMaps and WeakSets.
Only reference equal promises will pass the check in the future.
Fixes https://github.com/nodejs/node/issues/55198
PR-URL: https://git... | [
{
"path": "doc/api/assert.md",
"patch": "@@ -278,6 +278,10 @@ An alias of [`assert.ok()`][].\n <!-- YAML\n added: v0.1.21\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/59448\n+ description: Promises are not considered equal anymore if they are not of\n+ ... | 2025-08-19T10:22:35 |
electron/electron | 4641bc961998f412a8c3ea450457f0a97d344785 | 3f3c297c7a399597a5f22d14fe7ce03d97e7b10a | fix: fullscreen fillet / recovery is incorrect (#46641)
* fix: fullscreen fillet / recovery is incorrect
Signed-off-by: ZOY\zoy-l <zoy-l@outlook.com>
* fix: maintain frameless consistency on windows 11
* fix: maintain frameless consistency on windows 11
* chore: modify the comments
---------
Signed-off-by: ZOY\z... | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -375,14 +375,17 @@ NativeWindowViews::NativeWindowViews(const gin_helper::Dictionary& options,\n frame_style |= WS_MINIMIZEBOX;\n if (maximizable_)\n frame_style |= WS_MAXIMIZEBOX;\n+\n // We should not show a frame for trans... | 2025-04-28T20:54:08 |
rust-lang/rust | d81da4d691cf9f794a7cb6d29415f1e058357f9d | ccd16408934e3d590192a1e310f75647ca8437ed | Fix missing kernel-address from error message list | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/codegen_attrs.rs",
"patch": "@@ -671,6 +671,7 @@ impl<S: Stage> SingleAttributeParser<S> for SanitizeParser {\n item.path().span(),\n &[\n sym::address,\n+ ... | 2026-03-16T15:06:56 |
golang/go | 06412288cfd31ab365fe8ee6368742dffa759803 | 03f499ec4602500939a1ed3c540cbd5183c20ce9 | runtime: panic on AddCleanup with self pointer
For #75066
Change-Id: Ifd555586fb448e7510fed16372648bdd7ec0ab4a
Reviewed-on: https://go-review.googlesource.com/c/go/+/697535
Reviewed-by: Cherry Mui <cherryyz@google.com>
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
... | [
{
"path": "src/runtime/mcleanup.go",
"patch": "@@ -84,7 +84,8 @@ func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n \n \t// Check that arg is not equal to ptr.\n \targType := abi.TypeOf(arg)\n-\tif kind := argType.Kind(); kind == abi.Pointer || kind == abi.UnsafePointer {\n+\tkind := argT... | 2025-08-20T00:00:29 |
vercel/next.js | 1bbba2a079b19a017069baffc0aca3e5421c3f7e | 633e274965b78dff11c59702794823dbf92f689a | Revert "[turbopack] Add bundling support for worker_threads" (#88725)
Reverts vercel/next.js#87746
because of this build error:
```
> Build error occurred
Error: Turbopack build failed with 1 errors:
./node_modules/.pnpm/thread-stream@3.1.0/node_modules/thread-stream/index.js
non-evaluatable module
Worker thread modu... | [
{
"path": ".rustfmt.toml",
"patch": "@@ -1,4 +1,3 @@\n-edition = \"2024\"\n max_width = 100\n \n comment_width = 100",
"additions": 0,
"deletions": 1
},
{
"path": "crates/next-api/src/middleware.rs",
"patch": "@@ -14,7 +14,10 @@ use turbo_tasks::{Completion, ResolvedVc, Vc};\n use turbo_... | 2026-01-19T09:48:34 |
nodejs/node | 897358962024b6cfe820c865696d303b2888df58 | ee9c8cf0cbb77341c56b12efdc871401bd3212d2 | util: fix error's namespaced node_modules highlighting using inspect
When inspecting errors, node_modules are highlighted with an
underscore. So far namespaced modules only highlighted the namespace
but not the rest of the module name. This is fixed by matching the
full name.
As drive-by it improves the performance sl... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -250,7 +250,6 @@ const keyStrRegExp = /^[a-zA-Z_][a-zA-Z_0-9]*$/;\n const numberRegExp = /^(0|[1-9][0-9]*)$/;\n \n const coreModuleRegExp = /^ {4}at (?:[^/\\\\(]+ \\(|)node:(.+):\\d+:\\d+\\)?$/;\n-const nodeModulesRegExp = /[/\\\\]node_modules[/\\\\](.+... | 2025-08-19T10:22:25 |
facebook/react | e5f0315efa60a76332b32f21e495e36b26bdd36e | f739642745577a8e4dcb9753836ac3589b9c590a | [mcp] Fix package.json (#33101)
Since we use esbuild we need to correctly move dependencies that are
required at runtime into `dependencies` and other packages that are only
used in development in to `devDependencies`. This ensures the correct
packages are included in the build.
---
[//]: # (BEGIN SAPLING FOOTER)
Stac... | [
{
"path": "compiler/packages/react-mcp-server/package.json",
"patch": "@@ -15,25 +15,22 @@\n \"dependencies\": {\n \"@babel/core\": \"^7.26.0\",\n \"@babel/parser\": \"^7.26\",\n- \"@babel/plugin-syntax-typescript\": \"^7.25.9\",\n+ \"@babel/preset-env\": \"^7.26.9\",\n+ \"@babel/preset-r... | 2025-05-02T17:56:01 |
golang/go | 07b10e97d6552e16534aae51f140771a601ef385 | e96094402d55b6a104b642ce2adc76d3753843d9 | cmd/go/internal/modcmd: inject modfetch.Fetcher_ into DownloadModule
This commit continues the injection of the global Fetcher_ variable into
the various function calls that make use of it. The purpose is to
prepare for the eventual removal of the global Fetcher_ variable and
eliminate global state within the modfetc... | [
{
"path": "src/cmd/go/internal/modcmd/download.go",
"patch": "@@ -366,25 +366,25 @@ func runDownload(ctx context.Context, cmd *base.Command, args []string) {\n // leaving the results (including any error) in m itself.\n func DownloadModule(ctx context.Context, m *ModuleJSON) error {\n \tvar err error\n-\t_,... | 2025-11-24T21:53:11 |
electron/electron | 3f3c297c7a399597a5f22d14fe7ce03d97e7b10a | 062d3a616881309bbfb20556106980482685e905 | fix: enable some tests that were accidentally disabled (#46816)
* test: add platform test on visibleOnAllWorkspaces tests
visibleOnAllWorkspaces is not supported on Windows
* test: do not skip visibleOnAllWorkspaces tests on Windows
That feature is supported on Linux, so move the test from the
"window states (exclu... | [
{
"path": "docs/api/base-window.md",
"patch": "@@ -398,7 +398,7 @@ A `View` property for the content view of the window.\n \n A `string` (optional) property that is equal to the `tabbingIdentifier` passed to the `BrowserWindow` constructor or `undefined` if none was set.\n \n-#### `win.autoHideMenuBar`\n+##... | 2025-04-28T17:32:57 |
vercel/next.js | e05510ab3bf91c02c7381e2c471363561ffa1198 | 6cc7273f342c6ea1408a84e78a476a6ed1b194e3 | Fix `--debug-build-paths` bracket escaping for glob patterns (#88660)
Always escape Next.js dynamic route brackets (e.g., `[slug]`) in `--debug-build-paths` patterns instead of checking filesystem existence.
The previous approach failed when glob wildcards like `**` preceded bracket expressions (e.g., `app/**/[slug... | [
{
"path": "packages/next/src/lib/resolve-build-paths.ts",
"patch": "@@ -13,31 +13,16 @@ interface ResolvedBuildPaths {\n }\n \n /**\n- * Escapes bracket expressions that correspond to existing directories.\n- * This allows Next.js dynamic routes like [slug] to work with glob patterns.\n+ * Escapes Next.js d... | 2026-01-17T18:40:16 |
nodejs/node | 3f51cb622922e71feafacadad9ea93389c3cfd23 | 64355ae97e9df16d6f6e70be922752b7e274498a | util: add some additional error classes to `wellKnownPrototypes`
PR-URL: https://github.com/nodejs/node/pull/59456
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -1,6 +1,8 @@\n 'use strict';\n \n const {\n+ AggregateError,\n+ AggregateErrorPrototype,\n Array,\n ArrayBuffer,\n ArrayBufferPrototype,\n@@ -74,6 +76,8 @@ const {\n ObjectSetPrototypeOf,\n Promise,\n PromisePrototype,\n+ RangeError,\n+ ... | 2025-08-19T09:00:24 |
facebook/react | 0ed6ceb9f6c19f28c504cf46193cef40166a61f6 | ee7fee8f8875052afde53c5bfc8aedad43ff9d8e | [Fizz] Add "Queued" Status to SSR:ed Suspense Boundaries (#33087)
Stacked on #33076.
This fixes a bug where we used the "complete" status but the
DOMContentLoaded event. This checks for not "loading" instead.
We also add a new status where the boundary has been marked as complete
by the server but has not yet flushe... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -238,14 +238,15 @@ const ACTIVITY_END_DATA = '/&';\n const SUSPENSE_START_DATA = '$';\n const SUSPENSE_END_DATA = '/$';\n const SUSPENSE_PENDING_START_DATA = '$?';\n+const SUSPENSE_QUEUED_START_DATA = '$~';\n const SUSPE... | 2025-05-01T20:11:54 |
golang/go | 272df5f6ba94018dac2b7d384e92115b795fe241 | 1768cb40b838a36f9bdcbe5381f2e086483f22f5 | crypto/internal/fips140/aes/gcm: add more GCM nonce modes
First, this adds a GCM mode for QUIC, and a generic TLS 1.3/QUIC-like
XOR'd counter mode. QUIC constructs nonces exactly like TLS 1.3, but the
counter does not reset to zero on a key update, so the mask must be
provided explicitly (or we will panic well before ... | [
{
"path": "src/crypto/cipher/gcm_fips140v2.0_test.go",
"patch": "@@ -0,0 +1,91 @@\n+// Copyright 2025 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+//go:build !fips140v1.0\n+\n+package cipher_test\n+\n+im... | 2025-11-24T12:35:15 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.