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 |
|---|---|---|---|---|---|
facebook/react | 9d48779b362ef773da50fef95af6998b560c75c0 | bb88ce95a87934a655ef842af776c164391131ac | Fixed broken feature flag import for DT inline package (#21237) | [
{
"path": "packages/react-devtools-inline/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-inline\",\n- \"version\": \"4.11.0\",\n+ \"version\": \"4.11.1\",\n \"description\": \"Embed react-devtools within a website\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j... | 2021-04-11T18:59:52 |
nodejs/node | 32e478d7c37a0296b2bf616ee2e39e81e4c8d694 | c6279690be54e89cc4e5e0d6782a6973d8019232 | doc: fix typos
PR-URL: https://github.com/nodejs/node/pull/47685
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Debadree Chatterjee <debadree333@gmail.com>
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -269,7 +269,7 @@ the path specified by `--snapshot-blob`.\n ```console\n $ echo \"globalThis.foo = 'I am from the snapshot'\" > snapshot.js\n \n-# Run snapshot.js to intialize the application and snapshot the\n+# Run snapshot.js to initialize the application and snap... | 2023-04-23T13:34:08 |
golang/go | 72e2220b50db5179ddca2226a64bf1d3aa94f49a | e9a306e004fb6e9c6ca6045151be0ca8bddd242b | encoding/json: clarify the map's key type for Unmarshal
While here, also fix doc link for encoding.TextMarshaler.
Fixes #67495
Change-Id: Ia2a674c5c35b5a849ce8f5eef3d34d165b3195b6
Reviewed-on: https://go-review.googlesource.com/c/go/+/593335
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi... | [
{
"path": "src/encoding/json/decode.go",
"patch": "@@ -73,8 +73,7 @@ import (\n // use. If the map is nil, Unmarshal allocates a new map. Otherwise Unmarshal\n // reuses the existing map, keeping existing entries. Unmarshal then stores\n // key-value pairs from the JSON object into the map. The map's key ty... | 2024-06-18T15:43:21 |
rust-lang/rust | 01b39655df52597ddf31c0e243d3bfbdbf3a0be0 | d30647b7f2085dd073f756aca40cf965b060921a | fix: `needless_bool_assign` wrongly unmangled macros | [
{
"path": "clippy_lints/src/needless_bool.rs",
"patch": "@@ -1,5 +1,5 @@\n use clippy_utils::diagnostics::{span_lint, span_lint_and_sugg};\n-use clippy_utils::source::snippet_with_applicability;\n+use clippy_utils::source::snippet_with_context;\n use clippy_utils::sugg::Sugg;\n use clippy_utils::{\n Spa... | 2025-12-23T23:53:17 |
facebook/react | bb88ce95a87934a655ef842af776c164391131ac | 343710c9230d643ec442acef4634e380c1f0bce9 | Bugfix: Don't rely on `finishedLanes` for passive effects (#21233)
I recently started using `pendingPassiveEffectsLanes` to check if there were any pending
passive effects (530027a). `pendingPassiveEffectsLanes` is the value of
`root.finishedLanes` at the beginning of the commit phase. When there
are pending passiv... | [
{
"path": "packages/react-reconciler/src/ReactFiberWorkLoop.new.js",
"patch": "@@ -2131,7 +2131,12 @@ function commitRootImpl(root, renderPriorityLevel) {\n \n export function flushPassiveEffects(): boolean {\n // Returns whether passive effects were flushed.\n- if (pendingPassiveEffectsLanes !== NoLanes... | 2021-04-11T09:09:41 |
vercel/next.js | bc9131a3ac0aadafac5ed193a0f1ff35416232b7 | c297cbd06146599ad21213cc5fcf07f525488801 | Turbopack: Move build to separate file (#75390)
## What?
Mirrors the handling for webpack by using `NextBuildContext` for all
needed information.
This will allow for moving the turbopack build to a child process for
memory cleanup once the compiler finishes.
This PR is intended to only move the code, will c... | [
{
"path": "packages/next/src/build/build-context.ts",
"patch": "@@ -53,6 +53,7 @@ export const NextBuildContext: Partial<{\n pluginState: Record<string, any>\n // core fields\n dir: string\n+ distDir: string\n buildId: string\n encryptionKey: string\n config: NextConfigComplete\n@@ -68,6 +69,7 ... | 2025-01-29T10:19:50 |
electron/electron | 34772292f78370e47162bfd6f3eba8fa9b8cbad7 | e4fc47f55701e53de6a16c31900aa48594315d73 | fix: increase stack size on windows (#27376) | [
{
"path": "BUILD.gn",
"patch": "@@ -1154,6 +1154,19 @@ if (is_mac) {\n ldflags += [ \"/guard:cf,nolongjmp\" ]\n }\n \n+ if (current_cpu == \"x86\") {\n+ # Set the initial stack size to 0.5MiB, instead of the 1.5MiB needed by\n+ # Chrome's main thread. This saves significant ... | 2021-01-20T08:50:05 |
golang/go | 6fea4094242fe4e7be8bd7ec0b55df9f6df3f025 | d67839f58af518bfa32e27962059291362186e1c | text/template/parse: fix handling of assignment/declaration in PipeNode.String
The String method for Pipes assumed all variables were declared. Easy fix:
check the IsAssign bit.
Fixes #65382
Change-Id: I58f2760c1a8bb2821c3538645d893f58fd76ae73
Reviewed-on: https://go-review.googlesource.com/c/go/+/592695
Run-TryBot:... | [
{
"path": "src/text/template/parse/node.go",
"patch": "@@ -217,7 +217,11 @@ func (p *PipeNode) writeTo(sb *strings.Builder) {\n \t\t\t}\n \t\t\tv.writeTo(sb)\n \t\t}\n-\t\tsb.WriteString(\" := \")\n+\t\tif p.IsAssign {\n+\t\t\tsb.WriteString(\" = \")\n+\t\t} else {\n+\t\t\tsb.WriteString(\" := \")\n+\t\t}\n... | 2024-06-13T23:48:09 |
rust-lang/rust | d30647b7f2085dd073f756aca40cf965b060921a | ffbdb578b0e6e9d4657abbd3d6454bde4bed1869 | fix: `manual_ilog2` wrongly unmangled macros | [
{
"path": "clippy_lints/src/manual_ilog2.rs",
"patch": "@@ -1,7 +1,7 @@\n use clippy_config::Conf;\n use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::msrvs::{self, Msrv};\n-use clippy_utils::source::snippet_with_applicability;\n+use clippy_utils::source::snippet_with_context;\n use cli... | 2025-12-23T23:13:13 |
vercel/next.js | c297cbd06146599ad21213cc5fcf07f525488801 | 427358105dcb7a9729030d8f56b9023589c68d5e | Fixed `null is not an object (evaluating 't.parallelRoutes.get')` (#75360)
### Related issues
1. Fixes #69272
2. Fixes #69270
3. Fixes #67730
4. Relates to
https://github.com/vercel/next.js/issues/55462#issuecomment-1896098700
5. Resolves https://github.com/vercel/next.js/discussions/67729
6. Relates to https... | [
{
"path": "packages/next/src/client/components/router-reducer/create-initial-router-state.ts",
"patch": "@@ -38,7 +38,6 @@ export function createInitialRouterState({\n seedData: initialSeedData,\n head: initialHead,\n } = normalizedFlightData\n- const isServer = !location\n // For the SSR rende... | 2025-01-29T01:16:12 |
electron/electron | c3091c3a7074b2eef03a14dc4b44b7b05a9248ac | 5e7e0a4c7ef326e34930d5cb1218e7abd985aa35 | fix: make SetWindowButtonVisibility work for customButtonsOnHover (#27073) | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -1598,8 +1598,6 @@ Changes window icon.\n \n Sets whether the window traffic light buttons should be visible.\n \n-This cannot be called when `titleBarStyle` is set to `customButtonsOnHover`.\n-\n #### `win.setAutoHideMenuBar(hide)`\n \n * `hide` Boolean"... | 2021-01-19T10:12:09 |
golang/go | 201129414ffc72ce05c170ef2a4627768e890f24 | 20b79fd5775c39061d949569743912ad5e58b0e7 | sync/atomic: correct result names for Or methods
A few of the new Or methods of the atomic types use "new" as the name
for the result value, but it actually returns the old value. Fix this
by renaming the result values to "old".
Updates #61395.
Change-Id: Ib08db9964f5dfe91929f216d50ff0c9cc891ee49
Reviewed-on: https:... | [
{
"path": "src/sync/atomic/type.go",
"patch": "@@ -156,7 +156,7 @@ func (x *Uint32) And(mask uint32) (old uint32) { return AndUint32(&x.v, mask) }\n \n // Or atomically performs a bitwise OR operation on x using the bitmask\n // provided as mask and returns the old value.\n-func (x *Uint32) Or(mask uint32) ... | 2024-06-19T02:12:35 |
rust-lang/rust | ffbdb578b0e6e9d4657abbd3d6454bde4bed1869 | bc943aa8ea5aad5690eef4594ad50da949c181fb | fix: `manual_ignore_case_cmp` wrongly unmangled macros | [
{
"path": "clippy_lints/src/manual_ignore_case_cmp.rs",
"patch": "@@ -1,7 +1,7 @@\n use crate::manual_ignore_case_cmp::MatchType::{Literal, ToAscii};\n use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::res::MaybeDef;\n-use clippy_utils::source::snippet_with_applicability;\n+use clippy_u... | 2025-12-23T23:08:32 |
facebook/react | 933880b4544a83ce54c8a47f348effe725a58843 | b0407b55ff59c60530c85a1ed14b55950d94cb9a | Make time-slicing opt-in (#21072)
* Add enableSyncDefaultUpdates feature flag
* Add enableSyncDefaultUpdates implementation
* Fix tests
* Switch feature flag to true by default
* Finish concurrent render whenever for non-sync lanes
* Also return DefaultLane with eventLane
* Gate interruption test
... | [
{
"path": "packages/create-subscription/src/__tests__/createSubscription-test.js",
"patch": "@@ -268,6 +268,7 @@ describe('createSubscription', () => {\n expect(Scheduler).toFlushAndYield(['b-1']);\n });\n \n+ // @gate experimental || !enableSyncDefaultUpdates\n it('should ignore values emitted by ... | 2021-04-09T23:50:09 |
rust-lang/rust | bc943aa8ea5aad5690eef4594ad50da949c181fb | b946ba1ad3f0f9e532bb987b5758db762b644c4b | fix: `checked_conversions` wrongly unmangled macros | [
{
"path": "clippy_lints/src/checked_conversions.rs",
"patch": "@@ -1,7 +1,7 @@\n use clippy_config::Conf;\n use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::msrvs::{self, Msrv};\n-use clippy_utils::source::snippet_with_applicability;\n+use clippy_utils::source::snippet_with_context;\n ... | 2025-12-23T22:55:19 |
vercel/next.js | 6ff13369bb18045657d0f84ddc86b540340603a1 | 3c445595c64b5e71a9c0e50a6161a0695c92f5ed | fix: add parser metadata for eslint 9 cache (#74791)
When using `eslint-config-next` on eslint 9.x with a flat config (as per
next.js
[docs](https://nextjs.org/docs/app/api-reference/config/eslint#specifying-a-root-directory-within-a-monorepo))
and with the `--cache` flag - eslint would fail:
```
> ./node_modules/.bi... | [
{
"path": "packages/eslint-config-next/parser.js",
"patch": "@@ -2,8 +2,13 @@ const {\n parse,\n parseForESLint,\n } = require('next/dist/compiled/babel/eslint-parser')\n+const { version } = require('./package.json')\n \n module.exports = {\n parse,\n parseForESLint,\n+ meta: {\n+ name: 'eslint-... | 2025-01-28T22:06:01 |
electron/electron | 5e7e0a4c7ef326e34930d5cb1218e7abd985aa35 | 43341103394b63521cb0b4b5ab568d3ebd31c70e | fix: improve redirect behavior in protocol module (#26297)
* fix: improve redirect behavior in protocol module
* Add test for redirection
Co-authored-by: Cheng Zhao <zcbenz@gmail.com> | [
{
"path": "shell/browser/net/electron_url_loader_factory.cc",
"patch": "@@ -17,6 +17,7 @@\n #include \"mojo/public/cpp/system/string_data_source.h\"\n #include \"net/base/filename_util.h\"\n #include \"net/http/http_status_code.h\"\n+#include \"net/url_request/redirect_util.h\"\n #include \"services/network... | 2021-01-19T10:06:14 |
golang/go | 9d33956503c0d96c0c5666d374173f7ac9756d98 | 477ad7dd5151a2cb54fb68aa84ccbe9bb96ffbee | internal/godebugs: fix old value for httpservecontentkeepheaders
The pre-Go 1.23 behavior is httpservecontentkeepheaders=1.
For #66343
Change-Id: If6f92853b38522f19a8908ff11ac49b12f3dc3e0
Reviewed-on: https://go-review.googlesource.com/c/go/+/593775
Reviewed-by: David Chase <drchase@google.com>
Auto-Submit: Damien N... | [
{
"path": "src/internal/godebugs/table.go",
"patch": "@@ -36,7 +36,7 @@ var All = []Info{\n \t{Name: \"http2server\", Package: \"net/http\"},\n \t{Name: \"httplaxcontentlength\", Package: \"net/http\", Changed: 22, Old: \"1\"},\n \t{Name: \"httpmuxgo121\", Package: \"net/http\", Changed: 22, Old: \"1\"},\n-... | 2024-06-20T17:23:42 |
facebook/react | b0407b55ff59c60530c85a1ed14b55950d94cb9a | 39713716aa09c025bb4c3c8c0c9d7979946250c7 | Support more empty types (#21225)
Undefined errors as a direct return value.
This changes semantics for "true" and functions to mirror the client. | [
{
"path": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -56,7 +56,13 @@ import {\n processChildContext,\n emptyContextObject,\n } from './ReactFizzContext';\n-import {REACT_ELEMENT_TYPE, REACT_SUSPENSE_TYPE} from 'shared/ReactSymbols';\n+import {\n+ getIteratorFn,\n+ REACT_ELEMENT_TYPE,... | 2021-04-09T23:23:37 |
nodejs/node | dbf71e509c72ec8c58e521e17ad671020d1cfbd0 | 53e3c0ebf8dd4fdba9e08fd3618bd021080a66fd | doc: fix capitalization of ASan
PR-URL: https://github.com/nodejs/node/pull/47676
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Filip Skokan <panva.ip@gmail.com> | [
{
"path": "BUILDING.md",
"patch": "@@ -29,7 +29,7 @@ file a new issue.\n * [Running Coverage](#running-coverage)\n * [Building the documentation](#building-the-documentation)\n * [Building a debug build](#building-a-debug-build)\n- * [Building an ASAN build](#building-an-asan-build)\n+ * [... | 2023-04-23T08:21:51 |
facebook/react | 6ea749170b6d59b8dfb8bbbb8d05d986099e7830 | b38ac13f946ad305ead05a6a83511549db27322e | Fix typo in comment (#21214) | [
{
"path": "packages/react-reconciler/src/ReactFiberCompleteWork.new.js",
"patch": "@@ -992,7 +992,7 @@ function completeWork(\n // Don't count time spent in a timed out Suspense subtree as part of the base duration.\n const primaryChildFragment = workInProgress.child;\n ... | 2021-04-09T03:20:01 |
electron/electron | 43341103394b63521cb0b4b5ab568d3ebd31c70e | d7b02e123afbf4a1c929b766165bf5e1e84a1607 | fix: prevent crash when keyboard event immediately precedes calling BrowserWindow.close() (#27315)
* fix: prevent crash when destroyed widget receives keyboard event
Activating a key to close a window will cause a silent crash. Handling the keyboard
event will lead to a nullptr dereferenced in Chromium code if the... | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -1417,6 +1417,10 @@ void NativeWindowViews::OnWidgetDestroying(views::Widget* widget) {\n #endif\n }\n \n+void NativeWindowViews::OnWidgetDestroyed(views::Widget* changed_widget) {\n+ widget_destroyed_ = true;\n+}\n+\n void NativeWindowViews::D... | 2021-01-19T02:37:21 |
vercel/next.js | b679a610efc55630d3fdd20c8ca69a74dbc67f9c | 20a90c55da8f34a829bd783da99c82d28d6da159 | fix: handle optional catchalls correctly (#75377)
Previously when there was an optional catch-all present where it wasn't
provided it could not get read directly from the query parameters (as it
was done in PPR resumes) and instead it was inferring the default
parameters.
<!-- Thanks for opening a PR! Your contributi... | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -1237,16 +1237,13 @@ export default abstract class Server<\n typeof routeMatchesHeader === 'string' &&\n routeMatchesHeader &&\n isDynamicRoute(matchedPath) &&\n- !paramsResult.hasValidPa... | 2025-01-28T19:59:43 |
golang/go | 477ad7dd5151a2cb54fb68aa84ccbe9bb96ffbee | 4f77a83589baa5a3038cc6e35615084dc7e5f0c1 | cmd/compile: support generic alias type
Type parameters on aliases are now allowed after #46477 accepted.
Updates #46477
Fixes #68054
Change-Id: Ic2e3b6f960a898163f47666e3a6bfe43b8cc22e2
Reviewed-on: https://go-review.googlesource.com/c/go/+/593715
Reviewed-by: Robert Griesemer <gri@google.com>
Reviewed-by: Matthew ... | [
{
"path": "src/cmd/compile/internal/noder/writer.go",
"patch": "@@ -543,7 +543,7 @@ func (pw *pkgWriter) typIdx(typ types2.Type, dict *writerDict) typeInfo {\n \n \tcase *types2.Alias:\n \t\tw.Code(pkgbits.TypeNamed)\n-\t\tw.namedType(typ.Obj(), nil)\n+\t\tw.namedType(splitAlias(typ))\n \n \tcase *types2.Ty... | 2024-06-20T15:58:24 |
nodejs/node | a6748ec3424340cd5c88ca057045ddfacc84b1dd | 511d40cecd8dd8aa15c288f8037f398fe7186ae0 | doc: fix typos in SECURITY.md
PR-URL: https://github.com/nodejs/node/pull/47677
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "SECURITY.md",
"patch": "@@ -126,7 +126,7 @@ lead to a loss of confidentiality, integrity, or availability.\n See <https://nodejs.org/api/modules.html#all-together>.\n \n Any unexpected behavior from the data manipulation from Node.js Internal\n-functions may be considered a vulnerability if th... | 2023-04-23T06:00:17 |
rust-lang/rust | df2833d5d34aafcd6adc3a91ca297795a0b830ac | d0f86f653284a4c44aec677f33014c40899764cf | Fix typo in a URL | [
{
"path": "src/tools/rust-analyzer/docs/book/src/contributing/architecture.md",
"patch": "@@ -10,7 +10,7 @@ See also these implementation-related blog posts:\n \n * <https://rust-analyzer.github.io/blog/2019/11/13/find-usages.html>\n * <https://rust-analyzer.github.io/blog/2020/07/20/three-architectures-for... | 2025-12-23T20:20:11 |
facebook/react | b943aeba88237265523ec8cdaf40d24a171681fc | d389c54d179f8228d11b058141be4ddd02608abe | Fix: Passive effect updates are never sync (#21215)
I screwed this up in #21082. Got confused by the < versus > thing again.
The helper functions are annoying, too, because I always forget the
intended order of the arguments. But they're still helpful because when
we refactor the type we only have the change the ... | [
{
"path": "packages/react-reconciler/src/ReactEventPriorities.new.js",
"patch": "@@ -53,6 +53,13 @@ export function higherEventPriority(\n return a !== 0 && a < b ? a : b;\n }\n \n+export function lowerEventPriority(\n+ a: EventPriority,\n+ b: EventPriority,\n+): EventPriority {\n+ return a === 0 || a ... | 2021-04-09T01:45:35 |
electron/electron | d7b02e123afbf4a1c929b766165bf5e1e84a1607 | b27fa567bcc8df6f175d7c1b5071658426dc894e | chore: duplicate symbols for mojom interfaces in component build (#27186)
* fix duplicate symbols in component build
* fix: duplicate symbols for mojom interfaces in component build | [
{
"path": "shell/common/api/BUILD.gn",
"patch": "@@ -10,6 +10,11 @@ mojom(\"mojo\") {\n \"//ui/gfx/geometry/mojom\",\n ]\n \n+ # Needed for component build or we'll get duplicate symbols for many mojom\n+ # interfaces aready included in blink_common.dll\n+ overridden_deps = [ \"//third_party/blink/... | 2021-01-19T02:31:44 |
vercel/next.js | 20a90c55da8f34a829bd783da99c82d28d6da159 | 0383d0be3eac068a1e259380de5ab886d043fd21 | [dev-overlay] fix: do not open error overlay when click indicator (#75404)
### Why?
As we added back the "open/dismiss issues" label next to the indicator at https://github.com/vercel/next.js/pull/74975, no need to open error overlay when clicked the indicator.
### Before
https://github.com/user-attachments/a... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/errors/dev-tools-indicator/dev-tools-indicator.tsx",
"patch": "@@ -157,15 +157,14 @@ function DevToolsPopover({\n }\n }\n \n- function onIssuesClick() {\n+ function openErrorOverlay() {\n if (issue... | 2025-01-28T19:39:54 |
golang/go | 4f77a83589baa5a3038cc6e35615084dc7e5f0c1 | 879ace143490dba75a8499c7f4cea43926423c0f | internal/syscall/unix: fix UTIME_OMIT for dragonfly
CL 219638 added UTIME_OMIT values for various systems. The value for
DragonFly BSD appears to be incorrect.
The correct value is -2 (see references below), while -1 is used for
UTIME_NOW. As a result, timestamp is changed to the current time instead
of not touching.... | [
{
"path": "src/internal/syscall/unix/at_sysnum_dragonfly.go",
"patch": "@@ -6,15 +6,15 @@ package unix\n \n import \"syscall\"\n \n-const unlinkatTrap uintptr = syscall.SYS_UNLINKAT\n-const openatTrap uintptr = syscall.SYS_OPENAT\n-const fstatatTrap uintptr = syscall.SYS_FSTATAT\n-\n const (\n+\tunlinkatTra... | 2024-05-30T21:31:40 |
nodejs/node | 511d40cecd8dd8aa15c288f8037f398fe7186ae0 | 0c5f253339618e95da01d89cd7f036bfa1e8b33c | doc,fs: update description of fs.stat() method
PR-URL: https://github.com/nodejs/node/pull/47654
Fixes: https://github.com/nodejs/node/issues/47633
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-B... | [
{
"path": "doc/api/fs.md",
"patch": "@@ -4126,6 +4126,9 @@ Asynchronous stat(2). The callback gets two arguments `(err, stats)` where\n \n In case of an error, the `err.code` will be one of [Common System Errors][].\n \n+[`fs.stat()`][] follows symbolic links. Use [`fs.lstat()`][] to look at the\n+links the... | 2023-04-23T05:52:00 |
rust-lang/rust | d6a2a52883d5b47cb7232466a3e1911a1d46680e | 184e06223f3ada29d140d1e2559142ead18cfff2 | return error on combination of bidirectional message and json framing | [
{
"path": "src/tools/rust-analyzer/crates/proc-macro-api/src/bidirectional_protocol.rs",
"patch": "@@ -22,7 +22,7 @@ use crate::{\n },\n },\n process::ProcMacroServerProcess,\n- transport::codec::{json::JsonProtocol, postcard::PostcardProtocol},\n+ transport::codec::postcard::PostcardP... | 2025-12-23T17:00:00 |
facebook/react | 1214b302e11b06f5fd11f2af20c20b2f26386827 | 1a02d2792e470d28dfbd0ea0723ca439856ba197 | test: Fix "couldn't locate all inline snapshots" (#21205) | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -136,7 +136,7 @@ describe('InspectedElement', () => {\n return inspectedElement;\n }\n \n- it('should inspect the currently selected element', async done => {\n+ it('should inspect the currently selected ... | 2021-04-08T15:18:13 |
electron/electron | 63ca8782106e141d9fdfc7ab0516cc05c80e7c36 | 40e80af9a936eb0176d26adccdbfab6315efb350 | chore: use markdownlint to lint the docs (#26792)
* chore: use markdownlint to lint the docs
* chore: fix markdown lints
Co-authored-by: Cheng Zhao <zcbenz@gmail.com> | [
{
"path": ".markdownlint.autofix.json",
"patch": "@@ -0,0 +1,6 @@\n+{\n+ \"default\": false,\n+ \"no-trailing-spaces\": {\n+ \"br_spaces\": 0\n+ }\n+}",
"additions": 6,
"deletions": 0,
"language": "JSON"
},
{
"path": ".markdownlint.json",
"patch": "@@ -0,0 +1,26 @@\n+{\r\n+ \"... | 2021-01-14T08:31:26 |
vercel/next.js | 0383d0be3eac068a1e259380de5ab886d043fd21 | 2950dae1e0001466d678b36bfff51a323d569fd9 | [DevOverlay] Display Correct Number of Errors on Indicator (#75395)
### Why?
The indicator has displayed only the number of Runtime errors.
### How?
If there is a build error or a missing HTML tag error, display the length of the errors as they need to be resolved before the runtime errors.
### Before
!... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/app/react-dev-overlay.tsx",
"patch": "@@ -22,7 +22,10 @@ export default function ReactDevOverlay({\n children: React.ReactNode\n }) {\n const [isErrorOverlayOpen, setIsErrorOverlayOpen] = useState(false)\n- const { readyErro... | 2025-01-28T18:58:25 |
golang/go | 879ace143490dba75a8499c7f4cea43926423c0f | 2b12bbcb4561a6f45e8036e71c8440b7bca50de6 | net/http: keep Content-Encoding in Error, add GODEBUG for ServeContent
This reverts the changes to Error from CL 571995, and adds a
GODEBUG controlling the changes to ServeContent/ServeFile/ServeFS.
The change to remove the Content-Encoding header when serving an error
breaks middleware which sets Content-Encoding: g... | [
{
"path": "doc/godebug.md",
"patch": "@@ -200,6 +200,15 @@ This behavior is controlled by the `x509keypairleaf` setting. For Go 1.23, it\n defaults to `x509keypairleaf=1`. Previous versions default to\n `x509keypairleaf=0`.\n \n+Go 1.23 changed\n+[`net/http.ServeContent`](/pkg/net/http#ServeContent),\n+[`ne... | 2024-06-17T19:30:19 |
nodejs/node | 595b2b3fd2616d0eb62f9b1646a1477314911759 | 86a8335a0604cae534ceb4a832070c4a351f3fde | lib: disallow file-backed blob cloning
Disallow cloning of file-backed Blobs. If necessary, we can enable
this later but for now we disable it. The reason is because the
underlying FdEntry ends up bound to the Environment/Realm under
which is was created and transfering across worker threads ends up
failing.
Fixes: h... | [
{
"path": "lib/internal/blob.js",
"patch": "@@ -56,6 +56,7 @@ const {\n ERR_INVALID_ARG_TYPE,\n ERR_INVALID_ARG_VALUE,\n ERR_INVALID_THIS,\n+ ERR_INVALID_STATE,\n ERR_BUFFER_TOO_LARGE,\n },\n } = require('internal/errors');\n@@ -74,6 +75,7 @@ const { queueMicrotask } = require('internal... | 2023-04-15T18:21:16 |
rust-lang/rust | c252af5cbbe576acf5ffefa44687c8cf27a5c294 | f4bb7d1de119964e63a7090c1e143cdab13143fa | Fix audit workflow | [
{
"path": ".github/workflows/audit.yml",
"patch": "@@ -12,7 +12,7 @@ jobs:\n steps:\n - uses: actions/checkout@v4\n - run: |\n- sed -i 's/components.*/components = []/' rust-toolchain\n+ sed -i 's/components.*/components = []/' rust-toolchain.toml\n - uses: rustsec/au... | 2025-12-23T15:30:38 |
facebook/react | 7c1ba2b57d37df165da0f19c65ccc174866b5af7 | 316aa368654427270a53543cd3f4952746374596 | Proposed new Suspense layout effect semantics (#21079)
This commit contains a proposed change to layout effect semantics within Suspense subtrees: If a component mounts within a Suspense boundary and is later hidden (because of something else suspending) React will cleanup that component’s layout effects (including Re... | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.new.js",
"patch": "@@ -66,6 +66,7 @@ import {\n DidCapture,\n Update,\n Ref,\n+ RefStatic,\n ChildDeletion,\n ForceUpdateForLegacySuspense,\n StaticMask,\n@@ -83,6 +84,7 @@ import {\n enableScopeAPI,\n enableCache,\n enableLazyC... | 2021-04-06T13:21:02 |
vercel/next.js | 2950dae1e0001466d678b36bfff51a323d569fd9 | 29abd6ad12241408a040c6925d75fda701d228f2 | [DevOverlay] fix: shadow host element affects parent's display (#70676)
### Why?
Although the style applied to the shadow host is isolated, the element
that attached the shadow host (i.e. `nextjs-portal`) is still affected
by the parent's style (e.g. `body`). This may occur style conflicts like
`display: flex`, with ... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/styles/base.tsx",
"patch": "@@ -8,6 +8,15 @@ export function Base() {\n @import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;900&family=Geist+Mono:wght@400;900&display=swap');\n \n :host {... | 2025-01-28T18:22:45 |
electron/electron | 40e80af9a936eb0176d26adccdbfab6315efb350 | dd17250a80fe3e14d11ed4fa55f5ffa8427ce6a3 | fix: crash in renderer process with non-context-aware modules (#27296) | [
{
"path": "patches/node/chore_prevent_warn_non_context-aware_native_modules_being_loaded.patch",
"patch": "@@ -79,7 +79,7 @@ index f89365a1aa7ffacbb423e01a68f484992751f76f..38d17f4e18aa38fde2c2f59a9816c8fb\n // This stores whether the --abort-on-uncaught-exception flag was passed\n // to Node.\n diff ... | 2021-01-14T05:06:43 |
rust-lang/rust | 423a8dc4090a47589a61e30a139731eb500892db | 4516daccb36711f2d4536561762ed49281c2a0e8 | tests/debuginfo/macro-stepping.rs: Add revisions `default-mir-passes`, `no-SingleUseConsts-mir-pass`
To prevent the test from regressing both with and without
`SingleUseConsts` MIR pass. | [
{
"path": "tests/debuginfo/macro-stepping.rs",
"patch": "@@ -14,8 +14,10 @@\n #[macro_use]\n extern crate macro_stepping; // exports new_scope!()\n \n-//@ compile-flags:-g -Zmir-enable-passes=-SingleUseConsts\n-// SingleUseConsts shouldn't need to be disabled, see #128945\n+//@ compile-flags: -g\n+// FIXME(... | 2025-12-20T10:49:04 |
nodejs/node | f14d2e5a0c33996ecbcff1a61a60d787380345c0 | eb176457a197444f34c6ba5919e4fadca51e75b9 | loader: use default loader as cascaded loader in the in loader worker
Use the default loader as the cascaded loader in the loader worker.
Otherwise we spawn loader workers in the loader workers indefinitely.
PR-URL: https://github.com/nodejs/node/pull/47620
Fixes: https://github.com/nodejs/node/issues/47566
Reviewed-... | [
{
"path": "lib/internal/main/worker_thread.js",
"patch": "@@ -133,7 +133,10 @@ port.on('message', (message) => {\n if (manifestSrc) {\n require('internal/process/policy').setup(manifestSrc, manifestURL);\n }\n- setupUserModules();\n+ const isLoaderWorker =\n+ doEval === 'internal' &... | 2023-04-21T12:27:54 |
facebook/react | 316aa368654427270a53543cd3f4952746374596 | a817840ea7d3818c0590cccb9159b13220f4fdb4 | [Scheduler] Fix de-opt caused by out-of-bounds access (#21147)
Scheduler's heap implementation sometimes accesses indices that are out
of bounds (larger than the size of the array). This causes a VM de-opt.
This change fixes the de-opt by always checking the index before
accessing the array. In exchange, we can r... | [
{
"path": "packages/scheduler/src/SchedulerMinHeap.js",
"patch": "@@ -20,30 +20,28 @@ export function push(heap: Heap, node: Node): void {\n }\n \n export function peek(heap: Heap): Node | null {\n- const first = heap[0];\n- return first === undefined ? null : first;\n+ return heap.length === 0 ? null : ... | 2021-04-06T04:05:02 |
rust-lang/rust | 4516daccb36711f2d4536561762ed49281c2a0e8 | f186dadb0dee2a1065743e76bf0be99dd4046926 | compiletest: Support revisions in debuginfo (read: debugger) tests | [
{
"path": "src/tools/compiletest/src/runtest/debugger.rs",
"patch": "@@ -17,10 +17,16 @@ pub(super) struct DebuggerCommands {\n check_lines: Vec<(LineNumber, String)>,\n /// Source file name\n file: Utf8PathBuf,\n+ /// The revision being tested, if any\n+ revision: Option<String>,\n }\n \n... | 2025-12-20T10:41:05 |
electron/electron | ceda33dd5ed633d47cbe30b003aa356c327e7c0c | 9deae1c3c43bc366303c708f91d18afdb3209a77 | chore: surface webcontents load error more readily (#22824) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -118,6 +118,7 @@\n #include \"shell/common/mouse_util.h\"\n #include \"shell/common/node_includes.h\"\n #include \"shell/common/options_switches.h\"\n+#include \"shell/common/process_util.h\"\n #include \"shell/common/v8_value_serializ... | 2021-01-13T09:01:51 |
vercel/next.js | 29abd6ad12241408a040c6925d75fda701d228f2 | 31c047d082477558af292fb784896a2aafbbb637 | UI polish: dev overlay feedback button (#75400)
Right align feedback button when there is no `footerMessage`.
Before:

After:
![CleanShot 2025-01-28 ... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/errors/error-overlay-footer/error-feedback/error-feedback.tsx",
"patch": "@@ -5,8 +5,9 @@ import { noop as css } from '../../../../helpers/noop-template'\n \n interface ErrorFeedbackProps {\n errorCode: stri... | 2025-01-28T18:07:58 |
golang/go | cef0a2ecfbd8dfe48434e28fc8b6f584a0212637 | 2ade9856f17668b9d06d05e17e8f15701f8ac771 | all: update vendored golang.org/x/tools
Pull in CL 593297:
f2d2ebe4 go/analysis/passes/buildtag: retire Go 1.15 support
Along with other changes that have landed into x/tools.
This fixes a vet failure reported on longtest builders.
For #66092.
Change-Id: I549cc3f8e2c2033fe961bf014ff8cc1998021538
Cq-Include-Trybot... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.21.0\n \tgolang.org/x/telemetry v0.0.0-20240612191826-8cad58b3fcbb\n \tgolang.org/x/term v0.20.0\n-\tgolang.org/x/tools v0.21.1-0.20240604144337-208808308b70\n+\tgolang.org/x/tools v0.22.1-0.20240618181713-f2d2ebe43e72... | 2024-06-18T18:21:13 |
nodejs/node | eb176457a197444f34c6ba5919e4fadca51e75b9 | 472ffdef73f636cefa0e7015e07499637c34bd43 | doc: update error code of buffer
According to use of `validateNumber`, error code is changed
from ERR_INVALID_ARG_VALUE to ERR_OUT_OF_RANGE.
Refs: https://github.com/nodejs/node/pull/45796
PR-URL: https://github.com/nodejs/node/pull/47617
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jas... | [
{
"path": "doc/api/buffer.md",
"patch": "@@ -644,6 +644,10 @@ It can be constructed in a variety of ways.\n <!-- YAML\n added: v5.10.0\n changes:\n+ - version: v20.0.0\n+ pr-url: https://github.com/nodejs/node/pull/45796\n+ description: Throw ERR_INVALID_ARG_TYPE or ERR_OUT_OF_RANGE instead of\n+ ... | 2023-04-21T10:05:08 |
facebook/react | a817840ea7d3818c0590cccb9159b13220f4fdb4 | b4f119cdf1defe2437e00022f670c6ef818cd43f | DevTools: useModalDismissSignal bugfix (#21173)
* DevTools: useModalDismissSignal bugfix
Make useModalDismissSignal's manually added click/keyboard events more robust to sync flushed passive effects. (Don't let the same click event that shows a modal dialog also dismiss it.)
* Replaced event.timeStamp check with... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/hooks.js",
"patch": "@@ -207,14 +207,13 @@ export function useModalDismissSignal(\n return () => {};\n }\n \n- const handleDocumentKeyDown = ({key}: any) => {\n- if (key === 'Escape') {\n+ const handleDocumentKeyDown = (event:... | 2021-04-05T15:09:43 |
rust-lang/rust | f186dadb0dee2a1065743e76bf0be99dd4046926 | 0bd13c38df9a9a922bd8ec98ba7a8bc7e111860e | compiletest: Use `DirectiveLine` also for debuginfo (read: debugger) tests
This not only reduces code duplication already, it also gives us
revision parsing for free which we need in an upcoming commit. | [
{
"path": "src/tools/compiletest/src/directives.rs",
"patch": "@@ -15,7 +15,7 @@ use crate::directives::directive_names::{\n };\n pub(crate) use crate::directives::file::FileDirectives;\n use crate::directives::handlers::DIRECTIVE_HANDLERS_MAP;\n-use crate::directives::line::{DirectiveLine, line_directive};... | 2025-12-20T10:22:16 |
electron/electron | 61004723ac618360d34e0111b5a3cf41d32f7d70 | adf0a7354369a1d0387b66ed547b59cfbee185d8 | build: fixup feature request template (#27288) | [
{
"path": ".github/ISSUE_TEMPLATE/feature_request.yml",
"patch": "@@ -3,7 +3,7 @@ about: Suggest an idea for Electron\n title: \"[Feature Request]: \"\n labels: \"enhancement ✨\"\n inputs:\n- - type: textarea\n+- type: textarea\n attributes:\n label: Preflight Checklist\n description: Please ensu... | 2021-01-13T01:01:19 |
vercel/next.js | 31c047d082477558af292fb784896a2aafbbb637 | 274ce806b696db7e25cef0f526d3d7d7adc93d00 | feat: slow module detection for webpack (#75368)
## Problem
During development, certain modules can take an unexpectedly long time
to compile, significantly impacting build performance. Currently,
developers have no visibility into which modules are causing these
slowdowns, making it difficult to optimize their codeba... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -626,5 +626,9 @@\n \"625\": \"Server Actions are not supported with static export.\\\\nRead more: https://nextjs.org/docs/app/building-your-application/deploying/static-exports#unsupported-features\",\n \"626\": \"Intercepting routes are not supported ... | 2025-01-28T15:56:33 |
golang/go | 2ade9856f17668b9d06d05e17e8f15701f8ac771 | 4cf2b02548e7c85d57b35a23c7fda96b44f2cbfc | doc/next: add release notes for telemetry and the godebug directive
For #65614
Change-Id: I6274bdaba970cfb085af500fdaf8ed078202bfdc
Reviewed-on: https://go-review.googlesource.com/c/go/+/591380
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Russ Cox <rsc@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur... | [
{
"path": "doc/next/3-tools.md",
"patch": "@@ -1,5 +1,31 @@\n ## Tools {#tools}\n \n+### Telemetry\n+\n+<!-- go.dev/issue/58894, go.dev/issue/67111 -->\n+Starting in Go 1.23, the Go toolchain can collect usage and breakage\n+statistics that help the Go team understand how the Go toolchain is\n+used and how ... | 2024-06-07T22:13:06 |
nodejs/node | 472ffdef73f636cefa0e7015e07499637c34bd43 | f536bb04cebc98646266f4d30be3d9eba69add8d | tools: fix updating root certificates
When searching for the latest certdata.txt, check that the file
exists on the remote server.
PR-URL: https://github.com/nodejs/node/pull/47607
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "tools/dep_updaters/update-root-certs.mjs",
"patch": "@@ -22,6 +22,12 @@ const formatDate = (d) => {\n return iso.substring(0, iso.indexOf('T'));\n };\n \n+const getCertdataURL = (version) => {\n+ const tag = `NSS_${version.replaceAll('.', '_')}_RTM`;\n+ const certdataURL = `https://hg.mozilla... | 2023-04-21T02:14:00 |
facebook/react | b9e4c10e99940ceaff77e1f6f4cb0c747e91acff | 0e96bdd4eefa0771fe1e7747bb79fd3c0e612b9c | [Fizz] Implement all the DOM attributes and special cases (#21153)
* Implement DOM format config structure
* Styles
* Input warnings
* Textarea special cases
* Select special cases
* Option special cases
We read the currently selected value from the FormatContext.
* Warning for non-lower case HTML... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -428,7 +428,7 @@ describe('ReactDOMFizzServer', () => {\n }\n \n function AsyncCol({className}) {\n- return <col className={readText(className)}>{[]}</col>;\n+ return <col className={readText(className)} ... | 2021-04-01T00:39:38 |
rust-lang/rust | 7a3097f18d704f46572166daedf20c25a237a4c5 | 8845b97107e022232f92dde05f755eb757c7df7d | Fix tools | [
{
"path": "clippy_lints/src/utils/author.rs",
"patch": "@@ -319,6 +319,7 @@ impl<'a, 'tcx> PrintVisitor<'a, 'tcx> {\n chain!(self, \"let ConstArgKind::Anon({anon_const}) = {const_arg}.kind\");\n self.body(field!(anon_const.body));\n },\n+ ConstArgKind::... | 2025-11-19T23:28:50 |
vercel/next.js | 4cc2c5a5be95a1fd84ff61ca64888ad280f8a324 | f98faf5a3f815dd471b1c3371441092a07aa46f8 | [DevOverlay] Remove unused props from `errors.tsx` and its story (#75392)
### Why?
While decoupling the error overlay with the indicator at
https://github.com/vercel/next.js/pull/74999, we lifted up calculating
the `readyErrors` to the parent component. Therefore, passing the
`errors` value to the `error.tsx` compone... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/errors/error-overlay/error-overlay.tsx",
"patch": "@@ -39,7 +39,7 @@ export function ErrorOverlay({\n }\n \n // No Runtime Errors.\n- if (!state.errors.length) {\n+ if (!readyErrors.length) {\n retur... | 2025-01-28T11:42:18 |
golang/go | e44fa1c1a9139ad457d8fa84a68afa3f40e7732a | b691da9f788f27eb3d5035f3dbdc15c107d71ef9 | cmd/go: fix go list -u -m all with too new retractions dependency
Previously, go would not report retractions of dependencies that have a
newer version of Go. With this change, we will still display retractions despite a version difference when go list -u -m is used.
Fixes: #66403
Cq-Include-Trybots: luci.golang.try... | [
{
"path": "src/cmd/go/internal/modload/modfile.go",
"patch": "@@ -190,7 +190,7 @@ func CheckRetractions(ctx context.Context, m module.Version) (err error) {\n \t\treturn err\n \t}\n \tsummary, err := rawGoModSummary(rm)\n-\tif err != nil {\n+\tif err != nil && !errors.Is(err, gover.ErrTooNew) {\n \t\treturn... | 2024-05-20T20:43:39 |
electron/electron | 01b7ceac176e192df403475874d4c952d49a4b9c | 442f106bb4b2690d2b18c84cf1947f77df69b2da | docs: coordinate system of badly named method getCursorScreenPoint (#27156)
* Document coordinate system of badly named method getCursorScreenPoint
[Electron inherits this confusing name from Chromium](https://github.com/chromium/chromium/blob/99314be8152e688bafbbf9a615536bdbb289ea87/ui/display/win/screen_win.cc#L6... | [
{
"path": "docs/api/screen.md",
"patch": "@@ -92,6 +92,8 @@ Returns [`Point`](structures/point.md)\n \n The current absolute position of the mouse pointer.\n \n+**Note:** The return value is a DIP point, not a screen physical point.\n+\n ### `screen.getPrimaryDisplay()`\n \n Returns [`Display`](structures/d... | 2021-01-11T03:19:48 |
facebook/react | 516b76b9ae177ecc38cc64ba33ddfc7cfe5f5a99 | 0853aab74dc8285401e62d1e490551ba3c96fd64 | [Fast Refresh] Support callthrough HOCs (#21104)
* [Fast Refresh] Support callthrough HOCs
* Add a newly failing testing to demonstrate the flaw
This shows why my initial approach doesn't make sense.
* Attach signatures at every nesting level
* Sign nested memo/forwardRef too
* Add an IIFE test
This ... | [
{
"path": "packages/react-refresh/src/ReactFreshBabelPlugin.js",
"patch": "@@ -333,6 +333,38 @@ export default function(babel, opts = {}) {\n return args;\n }\n \n+ function findHOCCallPathsAbove(path) {\n+ const calls = [];\n+ while (true) {\n+ if (!path) {\n+ return calls;\n+ ... | 2021-03-30T15:08:50 |
nodejs/node | 7b39e8099a43f896a6c4ab7f4e8f766cf2a60688 | 6675505686310771b8016805a381945826aad887 | fs: add recursive option to readdir and opendir
Adds a naive, linear recursive algorithm for the following methods:
readdir, readdirSync, opendir, opendirSync, and the promise based
equivalents.
Fixes: https://github.com/nodejs/node/issues/34992
PR-URL: https://github.com/nodejs/node/pull/41439
Refs: https://github.c... | [
{
"path": "doc/api/fs.md",
"patch": "@@ -1220,6 +1220,9 @@ a colon, Node.js will open a file system stream, as described by\n <!-- YAML\n added: v12.12.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/41439\n+ description: Added `recursive` option.\n - version:\n ... | 2023-04-20T17:50:27 |
rust-lang/rust | 50ef284125101fbacd8ed16e86a084e6b6083304 | 1acfdbb3cd12854736df4ce7bd76aaa14f465f8f | Fix tools | [
{
"path": "src/intrinsics/simd.rs",
"patch": "@@ -130,7 +130,7 @@ pub(super) fn codegen_simd_intrinsic_call<'tcx>(\n return;\n }\n \n- let idx = generic_args[2].expect_const().to_value().valtree.unwrap_branch();\n+ let idx = generic_args[2].expect_const().to... | 2025-11-19T23:28:50 |
electron/electron | 442f106bb4b2690d2b18c84cf1947f77df69b2da | e74b4258033ff1f9267f4ad964cdcf621696502d | build: fix installing of code-signing identity on macOS (#27221) | [
{
"path": "script/codesign/codesign.cnf",
"patch": "@@ -1,7 +1,7 @@\n [req]\n default_bits = 4096\n encrypt_key = no\n-default_md = 512\n+default_md = sha512\n distinguished_name = req_distinguished_name\n prompt = no\n ",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2021-01-11T01:49:15 |
vercel/next.js | e85b4270433650b0b26d62bbbd883eb7a5afbdfc | 57dc9f686588971400cb821eee1452add40ca9eb | fix(create-next-app): use web standard error check for URL (#71473)
This patch updates the error check for example URLs in `create-next-app`
to use TypeError instead of
`error.code`.
`error.code` is a non-standard property present in Node.js, even for Web
APIs like URL.
This fixes `create-next-app -e hello-wo... | [
{
"path": "packages/create-next-app/create-app.ts",
"patch": "@@ -66,8 +66,9 @@ export async function createApp({\n try {\n repoUrl = new URL(example)\n } catch (error: unknown) {\n- const err = error as Error & { code: string | undefined }\n- if (err.code !== 'ERR_INVALID_URL') {\n+... | 2025-01-27T22:31:26 |
facebook/react | 0853aab74dc8285401e62d1e490551ba3c96fd64 | d1294c9d404de748b49dd6543144367f90a5e6b0 | Log all errors to console.error by default (#21130) | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -156,10 +156,15 @@ describe('ReactFlight', () => {\n return <div ref={ref} />;\n }\n \n- const event = ReactNoopFlightServer.render(<EventHandlerProp />);\n- const fn = ReactNoopFlightServer.render(<FunctionPro... | 2021-03-30T02:39:55 |
golang/go | 144c96fac3ed1a5d4329238af1b98d3c09a6c438 | 22cf1e7f7eefb6c53249ea4f92e37197b0c8ce02 | cmd/go: set GoVersion for files on the command line with vet
For: #65612
Fixes: #66092
For now, we will align the behavior such that vet and the compiler agree
that gover.Local() will be used for command-line-files.
We expect to change this to set the goversion as the containing module's go
version.
Change-Id: If7f... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -1180,6 +1180,7 @@ func buildVetConfig(a *Action, srcfiles []string) {\n \t\tPackageFile: make(map[string]string),\n \t\tStandard: make(map[string]bool),\n \t}\n+\tvcfg.GoVersion = \"go\" + gover.Local()\n \tif a.Package.Module != nil {\n \t\tv... | 2024-06-17T19:19:56 |
rust-lang/rust | 79fd535473f9a2025ee5d09ce9465969da90ae33 | 484480412e7779d364a4d28be0f4ca6c50d9492b | Fix tools | [
{
"path": "compiler/rustc_codegen_cranelift/src/intrinsics/simd.rs",
"patch": "@@ -130,7 +130,7 @@ pub(super) fn codegen_simd_intrinsic_call<'tcx>(\n return;\n }\n \n- let idx = generic_args[2].expect_const().to_value().valtree.unwrap_branch();\n+ let idx = ... | 2025-11-19T23:28:50 |
nodejs/node | 1fe41a8c57cf88b48254d300489f61eb4f12160e | de5787c87c557e02523b3e6104445c6427a44f25 | tools: update PR label config
- Update paths to the new ones.
- Remove paths that no longer exist.
- Capitalize comments and quote labels mentioned within.
- Fix syntax error in regex.
- Add missing JavaScript subsystems.
PR-URL: https://github.com/nodejs/node/pull/47593
Reviewed-By: Rich Trott <rtrott@gmail.com>
Rev... | [
{
"path": ".github/label-pr-config.yml",
"patch": "@@ -2,12 +2,12 @@\n ## earlier entries override later entries\n subSystemLabels:\n # src subsystems\n- /^src\\/async-wrap/: c++, async_wrap\n+ /^src\\/async_wrap/: c++, async_wrap\n /^src\\/(?:base64|node_buffer|string_)/: c++, buffer\n /^src\\/care... | 2023-04-20T16:04:31 |
electron/electron | e74b4258033ff1f9267f4ad964cdcf621696502d | 36f4ee87df6b57859ac30ac7128e538ebc50a229 | fix: set presentationModeEnabled value for PDF viewer (#27223) | [
{
"path": "shell/browser/extensions/api/resources_private/resources_private_api.cc",
"patch": "@@ -63,14 +63,17 @@ void AddStringsForPdf(base::DictionaryValue* dict) {\n \n void AddAdditionalDataForPdf(base::DictionaryValue* dict) {\n #if BUILDFLAG(ENABLE_PDF)\n+ dict->SetKey(\"pdfFormSaveEnabled\",\n+ ... | 2021-01-11T01:48:39 |
facebook/react | d1294c9d404de748b49dd6543144367f90a5e6b0 | e40f0b260303441710d762a83afc8c41aefe1daa | [Flight] Add global onError handler (#21129)
* Add onError option to Flight Server
The callback is called any time an error is generated in a server component.
This allows it to be logged on a server if needed. It'll still be rethrown
on the client so it can be logged there too but in case it never reaches
the... | [
{
"path": "packages/react-noop-renderer/src/ReactNoopFlightServer.js",
"patch": "@@ -54,13 +54,18 @@ const ReactNoopFlightServer = ReactFlightServer({\n },\n });\n \n-function render(model: ReactModel): Destination {\n+type Options = {\n+ onError?: (error: mixed) => void,\n+};\n+\n+function render(model:... | 2021-03-30T02:36:16 |
vercel/next.js | 57dc9f686588971400cb821eee1452add40ca9eb | aa5805375d47ce65647fc03ebd3a69c0380b70d6 | docs: fixed typo to auth.ts (#75345)
renamed auth.tsx to auth.ts in signup function. | [
{
"path": "docs/01-app/03-building-your-application/09-authentication/index.mdx",
"patch": "@@ -87,7 +87,7 @@ export function SignupForm() {\n }\n ```\n \n-```tsx filename=\"app/actions/auth.tsx\" switcher\n+```tsx filename=\"app/actions/auth.ts\" switcher\n export async function signup(formData: FormData) ... | 2025-01-27T22:05:13 |
golang/go | 22cf1e7f7eefb6c53249ea4f92e37197b0c8ce02 | 8f5c6904b616fd97dde4a0ba2f5c71114e588afd | go/doc: added the predeclared identifiers clear, min, max
Fixes: #68028
Change-Id: Ib341b9f57b001cccc5dc9e822b7feaabcdb77e63
GitHub-Last-Rev: 8dd3467016088ab2a8797f14065d2e6104eb0505
GitHub-Pull-Request: golang/go#68029
Reviewed-on: https://go-review.googlesource.com/c/go/+/593015
Reviewed-by: Ian Lance Taylor <iant@... | [
{
"path": "src/go/doc/reader.go",
"patch": "@@ -958,13 +958,16 @@ var predeclaredTypes = map[string]bool{\n var predeclaredFuncs = map[string]bool{\n \t\"append\": true,\n \t\"cap\": true,\n+\t\"clear\": true,\n \t\"close\": true,\n \t\"complex\": true,\n \t\"copy\": true,\n \t\"delete\": true,... | 2024-06-17T16:30:16 |
nodejs/node | 12094bcb97819b2eef1000dd5cb793d6b064680d | b68cedd4d85157914944b1672310c6023dc8635d | fs: add support for mode flag to specify the copy behavior
`fs.copyFile()` supports copy-on-write operation
if the underlying platform supports it by passing a mode flag.
This behavior was added in
https://github.com/nodejs/node/commit/a16d88d9e9a6581e463082549823189aba25ca76.
This patch adds `mode` flag to `fs.cp()`... | [
{
"path": "doc/api/fs.md",
"patch": "@@ -966,6 +966,10 @@ try {\n <!-- YAML\n added: v16.7.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/47084\n+ description: Accept an additional `mode` option to specify\n+ the copy behavior as the `mode` argumen... | 2023-04-20T06:28:18 |
electron/electron | 9aef11aa233685f7b73dd8ffe16f99af98c0f785 | 00d4baa0e2c9e3ec818dded3633d59f7fe93be70 | fix: broken PDF viewer (#27209) | [
{
"path": "electron_paks.gni",
"patch": "@@ -91,8 +91,10 @@ template(\"electron_extra_paks\") {\n }\n \n # New paks should be added here by default.\n- sources +=\n- [ \"$root_gen_dir/content/browser/devtools/devtools_resources.pak\" ]\n+ sources += [\n+ \"$root_gen_dir/content/bro... | 2021-01-08T06:17:28 |
golang/go | 8f5c6904b616fd97dde4a0ba2f5c71114e588afd | fe36ce669c1a452d2b0e81108a7e07674b50692a | syscall: selectively update zerrors_* on openbsd/386, openbsd/arm and openbsd/amd64
The EBADMSG, ENOTRECOVERABLE, EOWNERDEAD and EPROTO Errno are missing
on openbsd/386, openbsd/arm and openbsd/amd64. These are the earliest
OpenBSD ports and they did not exist in the system headers when the
relevant zerror_* file was ... | [
{
"path": "api/except.txt",
"patch": "@@ -598,3 +598,7 @@ pkg syscall (freebsd-arm64-cgo), const SYS_MKNODAT = 498\n pkg syscall (freebsd-arm64-cgo), const SYS_STAT = 188\n pkg syscall (freebsd-arm64-cgo), const SYS_STAT ideal-int\n pkg syscall (freebsd-arm64-cgo), const SYS_STATFS = 396\n+pkg syscall (open... | 2024-06-14T16:00:29 |
vercel/next.js | aa5805375d47ce65647fc03ebd3a69c0380b70d6 | 3973900e870f9b06b9a72f86b040e1bde337b67a | Turbopack: CLI / perf improvements (#75373)
## What?
Some improvements to closer match other bundlers in the CLI.
- CLI: Add `--no-sourcemap` to cli
- CLI: Update browserslist query to match dev
- CLI: Add `forget(turbotasks)` to drop memory at end of build
- CLI: Remove styled-jsx, emotion, styled-components transf... | [
{
"path": "Cargo.lock",
"patch": "@@ -4534,7 +4534,7 @@ dependencies = [\n \"either\",\n \"fxhash\",\n \"hex\",\n- \"indexmap 2.5.0\",\n+ \"indexmap 2.7.1\",\n \"indoc\",\n \"lazy_static\",\n \"modularize_imports\",\n@@ -9470,6 +9470,7 @@ dependencies = [\n \"regex\",\n \"serde\",\n \"tokio\",\n+ \... | 2025-01-27T21:57:43 |
rust-lang/rust | 3fdc6da2aad13909f02754d32db85ac69ca86102 | dfef2e96fe0216e243f458b8fe04a8b82a07065a | adding proper error handling for offload | [
{
"path": "compiler/rustc_codegen_llvm/messages.ftl",
"patch": "@@ -19,7 +19,12 @@ codegen_llvm_lto_bitcode_from_rlib = failed to get bitcode from object file for\n codegen_llvm_mismatch_data_layout =\n data-layout for target `{$rustc_target}`, `{$rustc_layout}`, differs from LLVM target's `{$llvm_targe... | 2025-12-09T15:51:04 |
nodejs/node | 9a7b9710e21f352fe002ff2b8b872b383054c770 | 4956271c93fa65be227e7f12648a86edf66c2c18 | doc: improve fs permissions description
Fix a small grammatical mistake and improve the surrounding wording.
PR-URL: https://github.com/nodejs/node/pull/47596
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Filip Skokan <panva.ip@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -154,8 +154,9 @@ the [Permission Model][].\n \n The valid arguments for the `--allow-fs-read` flag are:\n \n-* `*` - To allow the `FileSystemRead` operations.\n-* Paths delimited by comma (,) to manage `FileSystemRead` (reading) operations.\n+* `*` - To allow all `Fi... | 2023-04-19T17:40:46 |
facebook/react | 1102224bbbfd587ec6088620c66f048d10856c59 | dbe98a5aae79efce4de3eea95171d1ef70537fdb | Fix: flushSync changes priority inside effect (#21122)
When called from inside an effect, flushSync cannot synchronously flush
its updates because React is already working. So we fire a warning.
However, we should still change the priority of the updates to sync so
that they flush at the end of the current task.
... | [
{
"path": "packages/react-reconciler/src/ReactFiberWorkLoop.new.js",
"patch": "@@ -1166,16 +1166,6 @@ export function unbatchedUpdates<A, R>(fn: (a: A) => R, a: A): R {\n \n export function flushSync<A, R>(fn: A => R, a: A): R {\n const prevExecutionContext = executionContext;\n- if ((prevExecutionContex... | 2021-03-28T23:50:30 |
electron/electron | c29923ae8af6be73a8481a27b08ade55184cdfaa | 85a9abf3774c82e3e8df5623f72bdc67efc8d794 | ci: fix broken homebrew cache (#27224)
remove brew cache completely
Revert "remove brew cache completely"
This reverts commit ec4636cc249c2ef762cf7c00955acfa473745aa1.
Revert "ci: fix broken homebrew cache"
This reverts commit ed0415532ba6c69160a4ed48f111487fc22d2240.
this should work | [
{
"path": ".circleci/config.yml",
"patch": "@@ -316,15 +316,17 @@ step-setup-goma-for-build: &step-setup-goma-for-build\n step-restore-brew-cache: &step-restore-brew-cache\n restore_cache:\n paths:\n- - /usr/local/Homebrew\n+ - /usr/local/Cellar/gnu-tar\n+ - /usr/local/bin/gtar\n ke... | 2021-01-07T20:09:46 |
rust-lang/rust | ac448c987d2ed4b8ef50bb2f5422c093c1e161a5 | 0ac9e59d8f958a7b05071db9b15a0746ebe91b08 | Fix ICE in normalization during closure capture analysis | [
{
"path": "compiler/rustc_middle/src/ty/util.rs",
"patch": "@@ -1394,8 +1394,10 @@ impl<'tcx> Ty<'tcx> {\n \n // This doesn't depend on regions, so try to minimize distinct\n // query keys used.\n- let erased = tcx.normalize_erasing_regions(typing_env, query_ty... | 2025-12-09T09:36:58 |
vercel/next.js | 6cbaddf09e3dc5c854900cbede1fe1932f63b08a | a016ea3e9c13a8b433e5417964c5a8547046ab18 | Configure correct app dir when building `/_error` fallback in dev (#75354) | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -304,13 +304,13 @@ export default async function getBaseWebpackConfig(\n dev?: boolean\n entrypoints: webpack.EntryObject\n isDevFallback?: boolean\n- pagesDir?: string\n+ pagesDir: string | undefined\n reactProduction... | 2025-01-27T13:17:06 |
golang/go | fe36ce669c1a452d2b0e81108a7e07674b50692a | f27a40ce5fbb2574b81cf05c61c6630e0dfcaf4a | iter: add doc comment from proposal
Add the doc comment from the proposal, lightly edited.
The edits are to drop mention of value-error Seq2 usage
and to adjust for the bool result changes.
Fixes #61897.
Change-Id: Iaffbaa301064b2f8739956d602ca5fa23c89a269
Reviewed-on: https://go-review.googlesource.com/c/go/+/59109... | [
{
"path": "src/iter/iter.go",
"patch": "@@ -2,8 +2,186 @@\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 iter provides basic definitions and operations\n-// related to iteration in Go.\n+/*\n+Package iter provides basic definitions... | 2024-06-07T12:35:32 |
facebook/react | 556644e2372bf275a498006fc17dff14d324d6be | 8b741437b12a3faad1b742274af8fcc456e71958 | Fix plurals (#21106) | [
{
"path": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -62,7 +62,7 @@ type SuspenseBoundary = {\n pendingTasks: number, // when it reaches zero we can show this boundary's content\n completedSegments: Array<Segment>, // completed but not yet flushed segments.\n byteSize: number, // use... | 2021-03-26T02:21:41 |
nodejs/node | 2ec4ef7c24a0b1c63ac54a9a042790eee4a01040 | 9b6f7f0deddd86a84b909ee08c56a84613996466 | test_runner: execute before hook on test
Execute the before hook for Test as well, and execute it on root before
executing any tests.
Fixes: https://github.com/nodejs/node/issues/47518
PR-URL: https://github.com/nodejs/node/pull/47586
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Moshe Atlow <mo... | [
{
"path": "doc/api/test.md",
"patch": "@@ -1498,12 +1498,36 @@ Emitted when a test starts.\n added:\n - v18.0.0\n - v16.17.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/47586\n+ description: The `before` function was added to TestContext.\n -->\n \n An instan... | 2023-04-18T20:59:49 |
rust-lang/rust | d0e14f1885eb13ae9ea453817575428f0731b456 | b91ed30be3f59bbdb5a52404bc79670e1c44ae0c | fix: Fix flycheck generations not being synced for multiple workspaces
The diagnostics collection globally tracks the generation for all loaded workspaces as its shared between them, yet the flycheck actors track their own separate generations per workspace.
This mismatch could cause flycheck to not work correctly whe... | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs",
"patch": "@@ -147,13 +147,13 @@ pub(crate) struct FlycheckHandle {\n sender: Sender<StateChange>,\n _thread: stdx::thread::JoinHandle,\n id: usize,\n- generation: AtomicUsize,\n+ generation: Arc<AtomicUsize>,\n }\n \... | 2025-12-23T12:11:53 |
electron/electron | cc650ae4eeaef09b25f750ba8171f768fd50050c | 0be44304319b683e5f974f6e263a0cd13f23ad22 | build: fix missing dependency resulting in a random build failure (#26757)
* build: fix missing dependency resulting in a random build failure
* Update chromium_src/BUILD.gn
Co-authored-by: Jeremy Rose <nornagon@nornagon.net>
* sort deps
Co-authored-by: Jeremy Rose <nornagon@nornagon.net>
Co-authored-by: ... | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -76,13 +76,15 @@ static_library(\"chrome\") {\n }\n \n public_deps = [\n+ \"//chrome/browser:dev_ui_browser_resources\",\n \"//chrome/common\",\n \"//chrome/common:version_header\",\n \"//components/keyed_service/content\",\n \"//compone... | 2021-01-07T06:40:10 |
facebook/react | 05ec0d7646b463dcbd64f3a2575f4bb992f7e423 | 03ede83d2ea1878e5cb82c3c17844621989caf66 | Entangled expired lanes with SyncLane (#21083)
Makes the implementation simpler. Expiration is now a special case of
entanglement.
Also fixes an issue where expired lanes weren't batched with normal
sync updates. (See deleted TODO comment in test.) | [
{
"path": "packages/react-reconciler/src/ReactFiberLane.new.js",
"patch": "@@ -286,42 +286,34 @@ export function getNextLanes(root: FiberRoot, wipLanes: Lanes): Lanes {\n let nextLanes = NoLanes;\n let nextLanePriority = NoLanePriority;\n \n- const expiredLanes = root.expiredLanes;\n const suspendedL... | 2021-03-25T16:24:49 |
golang/go | f27a40ce5fbb2574b81cf05c61c6630e0dfcaf4a | a85b8810c49515c469d265c399febfa48442a983 | cmd/compile: give the closure generated for rangefunc bodies a name.
The generated name has the form "#yield%d" for %d = 1, 2, 3, ...
This may help the debugger connect execution within a rangefunc
loop's body to the frame containing the rest of the source code.
(It may not actually be necessary; we need to confirm wi... | [
{
"path": "src/cmd/compile/internal/rangefunc/rewrite.go",
"patch": "@@ -566,11 +566,11 @@ type rewriter struct {\n \trewritten map[*syntax.ForStmt]syntax.Stmt\n \n \t// Declared variables in generated code for outermost loop.\n-\tdeclStmt *syntax.DeclStmt\n-\tnextVar types2.Object\n-\tretVars ... | 2024-06-12T15:13:26 |
vercel/next.js | 04c3f0b29cbf21381202da98085b937b25689afe | 47a0cd2d6f177c01ed22cf6055bbaa313c7a73e4 | Update bundler for pre-bundling runtime (#75294)
This improves the build script quite a bit and makes dev editing much
faster. Also fixed excludes causing webpack/babel compiled packages to
be bundled into the runtime un-necessarily reducing from `10MB` ->
`1.2MB`.
Before: `Finished next_bundle in 9.67s`
Afte... | [
{
"path": ".eslintrc.json",
"patch": "@@ -162,7 +162,7 @@\n \"files\": [\"packages/**\"],\n \"excludedFiles\": [\n \"packages/next/taskfile*.js\",\n- \"packages/next/next-runtime.webpack-config.js\"\n+ \"packages/next/next_runtime.config.js\"\n ],\n \"rules\": {... | 2025-01-24T22:19:18 |
electron/electron | 3286b5fa464e989a48e9bba3cb8e36ab489e370a | 6307b52dc5070cb589b11e6edbce3a1270d7bcd6 | fix: handle BrowserView reparenting (#27000) | [
{
"path": "shell/browser/api/electron_api_base_window.cc",
"patch": "@@ -755,6 +755,14 @@ void BaseWindow::AddBrowserView(v8::Local<v8::Value> value) {\n auto get_that_view = browser_views_.find(browser_view->ID());\n if (get_that_view == browser_views_.end()) {\n if (browser_view->web_content... | 2021-01-05T00:34:22 |
nodejs/node | 9b6f7f0deddd86a84b909ee08c56a84613996466 | bc445fa3a2d487d7df7ad83645d6ae90db1022d7 | doc: remove markdown link from heading
This is the only instance of such a link and it is rendered
incorrectly in the TOC.
PR-URL: https://github.com/nodejs/node/pull/47585
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoin... | [
{
"path": "doc/api/permissions.md",
"patch": "@@ -388,7 +388,7 @@ The following example, would allow access to `fs` for all `data:` resources:\n }\n ```\n \n-##### Example: [import maps][] emulation\n+##### Example: import maps emulation\n \n Given an import map:\n \n@@ -425,7 +425,7 @@ Given an import map:... | 2023-04-18T19:55:53 |
facebook/react | 435cff9866d38d137aafe6396c776437710a8481 | 25bfa287f6c49950d8ea16f542716835683442d6 | [Fizz] Expose callbacks in options for when various stages of the content is done (#21056)
* Report errors to a global handler
This allows you to log errors or set things like status codes.
* Add complete callback
* onReadyToStream callback
This is typically not needed because if you want to stream when th... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -336,7 +336,6 @@ describe('ReactDOMFizzServer', () => {\n writable.write(chunk, encoding, next);\n };\n \n- writable.write('<div id=\"container-A\">');\n await act(async () => {\n const {startWriting... | 2021-03-23T18:39:38 |
golang/go | a85b8810c49515c469d265c399febfa48442a983 | 7196db9e66529cb3e81cbc401557358047543c2f | cmd/go: fix problems with coverage percentage reporting w/ -coverpkg
This patch resolves a set of problems with "percent covered" metrics
reported when the "-coverpkg" is in effect; these bugs were introduced
in Go 1.22 with the rollout of CL 495452 and related changes.
Specifically, for runs with multiple packages se... | [
{
"path": "src/cmd/go/internal/load/test.go",
"patch": "@@ -683,6 +683,22 @@ func (t *testFuncs) Covered() string {\n \treturn \" in \" + strings.Join(t.Cover.Paths, \", \")\n }\n \n+func (t *testFuncs) CoverSelectedPackages() string {\n+\tif t.Cover == nil || t.Cover.Paths == nil {\n+\t\treturn `[]string{\... | 2024-06-12T14:41:32 |
vercel/next.js | 1ab88376ff150706a25647446f17283fbe1942b0 | 75ab6b04205413fc1a28446f279ab7ce99b5bf45 | fix(turbo-tasks): Implement `is_transient` on `OperationVc` (#75291)
A function returning an `OperationVc` can call a transient function or have a transient argument.
IMO, `TaskInput` should not have default method implementations to avoid potential footguns like this. | [
{
"path": "turbopack/crates/turbo-tasks/src/vc/operation.rs",
"patch": "@@ -175,7 +175,16 @@ where\n }\n }\n \n-impl<T> TaskInput for OperationVc<T> where T: ?Sized + Send + Sync {}\n+// NOTE: This uses the default implementation of `is_resolved` which returns `true` because we don't\n+// want `Operatio... | 2025-01-24T19:54:45 |
electron/electron | 6307b52dc5070cb589b11e6edbce3a1270d7bcd6 | 3455136e9dec4a693b59f8c42cf00baad412c6d2 | fix: default offset when no drag regions (#27147) | [
{
"path": "shell/browser/native_browser_view_mac.mm",
"patch": "@@ -294,11 +294,14 @@ - (void)drawRect:(NSRect)aRect {\n draggable_regions_ = mojo::Clone(regions);\n \n std::vector<gfx::Rect> drag_exclude_rects;\n- if (regions.empty()) {\n- drag_exclude_rects.emplace_back(0, 0, webViewWidth, webVi... | 2021-01-04T22:01:32 |
nodejs/node | bc445fa3a2d487d7df7ad83645d6ae90db1022d7 | 8920dc18016ee84418e06b3f7e2cb90032d3774e | doc: fix history ordering of `WASI` constructor
PR-URL: https://github.com/nodejs/node/pull/47611
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "doc/api/wasi.md",
"patch": "@@ -118,12 +118,12 @@ added:\n - v13.3.0\n - v12.16.0\n changes:\n- - version: v20.0.0\n- pr-url: https://github.com/nodejs/node/pull/47391\n- description: The version option is now required and has no default value.\n - version: REPLACEME\n pr-url: https://g... | 2023-04-18T16:48:23 |
facebook/react | a5c3baeecda9468ae7b6d4d32a541026c15bc6de | 6c3202b1e1a4382b91de4fdc3b9bc9ed7a77619b | Fix a broken link | [
{
"path": "scripts/release/README.md",
"patch": "@@ -8,7 +8,7 @@ Before proceeding, consider your motivation:\n \n - **\"I want to share experimental features with collaborators.\"** After your code lands in GitHub (behind an experimental feature flag), it will be automatically published via CI within the n... | 2021-03-22T21:04:13 |
vercel/next.js | 7b8fc7582f44a64d022945f999157bdcef4a4ae2 | 8ee79b82c8fa9d4fd61990acebe89c19f7a43d45 | Fix `use server` diagnostics for type exports (#74256)
### What?
NextJS should not throw `The "use server" file can only export async
functions.` for type exports.
### Why?
Because type exports are just a compile time abstraction. | [
{
"path": "packages/next/src/server/typescript/rules/server-boundary.ts",
"patch": "@@ -64,8 +64,11 @@ const serverBoundary = {\n const diagnostics: tsModule.Diagnostic[] = []\n \n const exportClause = node.exportClause\n- if (exportClause && ts.isNamedExports(exportClause)) {\n+ if (!node.isT... | 2025-01-24T18:27:43 |
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.