repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
vercel/next.js | 45c48f2944a049770659f47e4abdaef04d36b797 | c6e23a6bb3947486e0df44fb661cb9ea2dc243cd | Turbopack: improve fuzz testing to handle more cases (#81204)
### What?
* Improve fuzz testing to test tasks becoming active and inactive.
* Improve the verify_aggregation_graph feature to panic to allow running
it during fuzz testing | [
{
"path": "turbopack/crates/turbo-tasks-backend/fuzz/src/graph.rs",
"patch": "@@ -1,12 +1,24 @@\n+use std::sync::Arc;\n+\n use anyhow::Result;\n use arbitrary::Arbitrary;\n use once_cell::sync::Lazy;\n use serde::{Deserialize, Serialize};\n-use turbo_tasks::{self, NonLocalValue, TurboTasks, Vc, trace::Trace... | 2025-07-10T06:15:40 |
electron/electron | 16cd486356ec2883b36095da3e147788b71fddd5 | f07b040cb998a6126979cec9d562acbac5a23c4c | fix: `MediaDevices` missing `DisplayMediaInformation` (#38390)
fix: MediaDevices missing DisplayMediaInformation | [
{
"path": "shell/browser/electron_browser_context.cc",
"patch": "@@ -56,6 +56,7 @@\n #include \"shell/common/gin_helper/error_thrower.h\"\n #include \"shell/common/options_switches.h\"\n #include \"shell/common/thread_restrictions.h\"\n+#include \"third_party/blink/public/mojom/media/capture_handle_config.m... | 2023-05-24T15:17:08 |
facebook/react | 08a39539fc6922cdb9e2405029127a1911b1b809 | ca16c26356221a4b52185d7425d77675f0307250 | [Flight][Reply] Close Response after creating root chunk (#27634)
creating the root after closing the response can lead to a promise that
never rejects. This is not intended use of the decodeReply API but if
pathalogical cases where you pass a raw FormData into this fucntion with
no zero chunk it can hang forever. ... | [
{
"path": "packages/react-server-dom-esm/src/ReactFlightDOMServerNode.js",
"patch": "@@ -162,8 +162,9 @@ function decodeReply<T>(\n body = form;\n }\n const response = createResponse(moduleBasePath, '', body);\n+ const root = getRoot<T>(response);\n close(response);\n- return getRoot(response);\... | 2023-11-01T01:31:10 |
nodejs/node | 3660ad5c9234c6db7df2f7d75cb6712730338d78 | 54119757a39a9f51cc58a936d74f001177b247d7 | 2024-08-06, Version 22.6.0 (Current)
Notable changes:
deps:
* (SEMVER-MINOR) V8: backport 7857eb34db42 (Stephen Belanger) https://github.com/nodejs/node/pull/53997
http:
* (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) https://github.com/nodejs/node/pull/54054
inspector:
* (SEMV... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -38,7 +38,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.1\">22.5.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.6.0\">22.6.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.1\">2... | 2024-07-30T13:11:29 |
golang/go | e0dba45c620866bb16cd0db2c51732f03a9b27f3 | ba7b8ca336123017e43a2ab3310fd4a82122ef9d | runtime: size field for gQueue and gList
Before CL, all instances of gQueue and gList stored the size of
structures in a separate variable. The size changed manually and passed
as a separate argument to different functions. This CL added an
additional field to gQueue and gList structures to store the size. Also,
the c... | [
{
"path": "src/runtime/mgc.go",
"patch": "@@ -1512,9 +1512,9 @@ func gcBgMarkWorker(ready chan struct{}) {\n \t\t\t\t\t// everything out of the run\n \t\t\t\t\t// queue so it can run\n \t\t\t\t\t// somewhere else.\n-\t\t\t\t\tif drainQ, n := runqdrain(pp); n > 0 {\n+\t\t\t\t\tif drainQ := runqdrain(pp); !dr... | 2025-04-07T14:08:19 |
electron/electron | b6c80ba6461ace7dd458d11cd61d5f63776a034a | 30e992dec4ca1c7b33c2bda1b4353072a9621aa7 | fix: `dangling_raw_ptr` warning in `electron_api_web_contents` (#38403)
fix: dangling_raw_ptr warning in electron_api_web_contents | [
{
"path": "shell/browser/api/electron_api_web_contents.h",
"patch": "@@ -773,9 +773,6 @@ class WebContents : public ExclusiveAccessContext,\n // Whether the guest view has been attached.\n bool attached_ = false;\n \n- // The zoom controller for this webContents.\n- raw_ptr<WebContentsZoomController> ... | 2023-05-24T01:52:07 |
vercel/next.js | 2f43b359dfc0f3afb6fbab03867d3f8a2fa4ea66 | 1781abd7d4a7e48e1fbd1b121d79ae26f8935645 | fix(turbopack-tests): Ignore or clean up empty snapshot test directories, fix non-nextest execution testing (#81479)
This PR fixes two bugs I ran into while trying to add a test case.
## Empty Snapshot Tests With No Input
Git tracks files, not directories, so it doesn't track or delete empty directories. This can le... | [
{
"path": "turbopack/crates/turbopack-tests/tests/execution.rs",
"patch": "@@ -5,7 +5,7 @@\n \n mod util;\n \n-use std::path::PathBuf;\n+use std::{env, path::PathBuf, sync::Once};\n \n use anyhow::{Context, Result};\n use dunce::canonicalize;\n@@ -170,7 +170,8 @@ fn get_messages(js_results: JsResult) -> Vec... | 2025-07-10T05:05:52 |
facebook/react | ca16c26356221a4b52185d7425d77675f0307250 | 0c6348758f89be250070560972e736171201f82d | validateDOMNesting: Allow hr as child of select (#27632)
fix #27572
---------
Co-authored-by: Sophie Alpert <git@sophiebits.com> | [
{
"path": "packages/react-dom-bindings/src/client/validateDOMNesting.js",
"patch": "@@ -244,7 +244,12 @@ function isTagValidWithParent(tag: string, parentTag: ?string): boolean {\n switch (parentTag) {\n // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inselect\n case 'select':\n... | 2023-10-31T21:43:16 |
nodejs/node | c852e222cb4c9bba4f81d290d3ccfc671b525938 | 5bfebfec88090476064d367b9185fe4a249d6a76 | path: fix relative on Windows
PR-URL: https://github.com/nodejs/node/pull/53991
Fixes: https://github.com/nodejs/node/issues/27534
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "benchmark/path/relative-win32.js",
"patch": "@@ -9,6 +9,7 @@ const bench = common.createBenchmark(main, {\n ['C:\\\\foo\\\\bar\\\\baz', 'C:\\\\foo\\\\bar\\\\baz'].join('|'),\n ['C:\\\\foo\\\\BAR\\\\BAZ', 'C:\\\\foo\\\\bar\\\\baz'].join('|'),\n ['C:\\\\foo\\\\bar\\\\baz\\\\quux', 'C:\\... | 2024-08-06T09:40:23 |
golang/go | 80bff42fdd0380c09f4df35c4baacb9cfdae5aae | 0c0d2572414d4d32feca74d902a761ff25457af9 | errors: optimize errors.Join for single unwrappable errors
Change-Id: I10bbb782ca7234cda8c82353f2255eec5be588c9
GitHub-Last-Rev: e5ad8fdb802e56bb36c41b4982ed27c1e0809af8
GitHub-Pull-Request: golang/go#70770
Reviewed-on: https://go-review.googlesource.com/c/go/+/635115
Auto-Submit: Sean Liao <sean@liao.dev>
Reviewed-by... | [
{
"path": "src/errors/join.go",
"patch": "@@ -26,6 +26,18 @@ func Join(errs ...error) error {\n \tif n == 0 {\n \t\treturn nil\n \t}\n+\tif n == 1 {\n+\t\tfor _, err := range errs {\n+\t\t\tif err != nil {\n+\t\t\t\tif _, ok := err.(interface {\n+\t\t\t\t\tUnwrap() []error\n+\t\t\t\t}); ok {\n+\t\t\t\t\tret... | 2024-12-11T09:55:27 |
vercel/next.js | 1781abd7d4a7e48e1fbd1b121d79ae26f8935645 | b49ed9087df94b7b8f3b4bd6fd80731feb3db9bd | fix(packages/next-bundle-analyzer): file extension of webpack bundle analyzer report (#81372)
### Issue
When `analyzerMode` is selected as `json`, the bundle analyzer still
emits a `.html` file.
### Fix
Added a check for `analyzerMode` === `json` to determine file extension.
---------
Co-authored-by: graphite-app... | [
{
"path": "packages/next-bundle-analyzer/index.js",
"patch": "@@ -5,6 +5,8 @@ module.exports =\n return nextConfig\n }\n \n+ const extension = analyzerMode === 'json' ? '.json' : '.html'\n+\n return Object.assign({}, nextConfig, {\n webpack(config, options) {\n const { BundleA... | 2025-07-10T04:37:39 |
rust-lang/rust | d3ec6a351a027a71bdfbd36429288c1357ccdbea | c69e1a04db484db8974904e6f8eb1e8df21a39ba | fix: add continue | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/region_errors.rs",
"patch": "@@ -872,6 +872,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n for alias_ty in alias_tys {\n if alias_ty.span.desugaring_kind().is_some() {\n // Skip `async` desugari... | 2026-02-08T03:40:56 |
facebook/react | 0965fbcab3616523086d05c1069492cc171cbb80 | 3e09c27b880e1fecdb1eca5db510ecce37ea6be2 | Update utils-test.js desciption (#27624)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please make s... | [
{
"path": "packages/react-devtools-shared/src/__tests__/utils-test.js",
"patch": "@@ -283,12 +283,12 @@ describe('utils', () => {\n expect(isPlainObject(new (class C {})())).toBe(false);\n });\n \n- it('should retun false for objects, which have not only Object in its prototype chain', () => {\... | 2023-10-30T11:40:18 |
nodejs/node | 5bfebfec88090476064d367b9185fe4a249d6a76 | 24ed890663e494c3f5b29ed3533f37aba4393f67 | test_runner: make mock_loader not confuse CJS and ESM resolution
PR-URL: https://github.com/nodejs/node/pull/53846
Fixes: https://github.com/nodejs/node/issues/53807
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "lib/test/mock_loader.js",
"patch": "@@ -23,6 +23,8 @@ let debug = require('internal/util/debuglog').debuglog('test_runner', (fn) => {\n debug = fn;\n });\n const { createRequire, isBuiltin } = require('module');\n+const { defaultGetFormatWithoutErrors } = require('internal/modules/esm/get_forma... | 2024-08-06T09:24:24 |
rust-lang/rust | 7c5ea7ffd648cb1170510a7b50b0294a30891ffd | 8c5605e130081cbff57f505c56466538039346b1 | Fix bound var resolution for trait aliases
Handle DefKind::TraitAlias in resolve_bound_vars so that associated
item constraints and return type notation work through trait aliases. | [
{
"path": "compiler/rustc_hir_analysis/src/collect/resolve_bound_vars.rs",
"patch": "@@ -1695,7 +1695,8 @@ impl<'a, 'tcx> BoundVarContext<'a, 'tcx> {\n | DefKind::Union\n | DefKind::Enum\n | DefKind::TyAlias\n- | DefKind::Trait,\n+ ... | 2026-02-07T17:57:53 |
facebook/react | 3e09c27b880e1fecdb1eca5db510ecce37ea6be2 | 8039e6d0b93b642a4bd1ee7dbe108d2153fd2981 | [Float][Fiber] Fixes incorrect boolean logic around loading states for stylesheets (#27610)
the loading states of stylesheets found in the DOM during preinit should
be assumed to be loaded | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2337,7 +2337,7 @@ function preinitStyle(\n getStylesheetSelectorFromKey(key),\n );\n if (instance) {\n- state.loading = Loaded & Inserted;\n+ state.loading = Loaded | Inserted;\n } else {\n ... | 2023-10-27T15:50:40 |
golang/go | f414dfe4f5049c2c8998b4e6b90dee7fca0c225b | 13b7c7d8d21765886697c952ffbb7fb853a2bf9a | os,internal/poll: support I/O on overlapped files not added to the poller
This fixes the support for I/O on overlapped files that are not added to
the poller. Note that CL 661795 already added support for that, but it
really only worked for pipes, not for plain files.
Additionally, this CL also makes this kind of I/O... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -68,7 +68,7 @@ var InitWSA = sync.OnceFunc(func() {\n // operation contains superset of data necessary to perform all async IO.\n type operation struct {\n \t// Used by IOCP interface, it must be first field\n-\t// of the struct, as our code rely on ... | 2025-04-10T14:03:46 |
vercel/next.js | 639c731600746c9be4543c9662b540e7d5ef0fb0 | 4e51eb2140119bf29d953f30aadec578abf72076 | Update image.mdx (#81454)
fix: Input image name and output image name is different and causes
confusion.
---------
Co-authored-by: Joseph <joseph.chamochumbi@vercel.com> | [
{
"path": "docs/01-app/03-api-reference/02-components/image.mdx",
"patch": "@@ -412,10 +412,10 @@ When providing the `src` prop to the `<Image>` component, both the `srcset` and\n ```html filename=\"output.html\"\n <img\n srcset=\"\n- /_next/image?url=%2Fme.jpg&w=640&q=75 1x,\n- /_next/image?url=%2F... | 2025-07-09T18:41:14 |
electron/electron | 30e992dec4ca1c7b33c2bda1b4353072a9621aa7 | e7b8bb4766da58fa693ec3e82c0af9b0a3406c9d | chore: bump chromium to 115.0.5786.0 (main) (#38301)
* chore: bump chromium in DEPS to 115.0.5772.0
* chore: update disable_color_correct_rendering.patch
no manual changes; patch succeeded with fuzz 2.
* chore: update chromium/build_libc_as_static_library.patch
no manual changes; patch succeeded with fuzz ... | [
{
"path": "BUILD.gn",
"patch": "@@ -555,6 +555,7 @@ source_set(\"electron_lib\") {\n }\n \n frameworks = [\n+ \"AuthenticationServices.framework\",\n \"AVFoundation.framework\",\n \"Carbon.framework\",\n \"LocalAuthentication.framework\",",
"additions": 1,
"deletions":... | 2023-05-23T19:58:58 |
nodejs/node | 24ed890663e494c3f5b29ed3533f37aba4393f67 | 1f69085db557d92edece566b5c8d7984bf473af0 | doc: fix sea assets example
PR-URL: https://github.com/nodejs/node/pull/54192
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/single-executable-applications.md",
"patch": "@@ -219,7 +219,7 @@ executable, users can retrieve the assets using the [`sea.getAsset()`][] and\n The single-executable application can access the assets as follows:\n \n ```cjs\n-const { getAsset } = require('node:sea');\n+const { getAsset, ... | 2024-08-06T08:24:23 |
facebook/react | 8039e6d0b93b642a4bd1ee7dbe108d2153fd2981 | 54ea4469716ec060fba475bb38e7b6d509586e1b | Bump lodash from 4.17.4 to 4.17.21 in /fixtures/attribute-behavior (#27592)
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some
time.
Note: if you make any changes to this PR yourself, they will take
precedence over the... | [
{
"path": "fixtures/attribute-behavior/yarn.lock",
"patch": "@@ -3948,8 +3948,8 @@ lodash.uniq@^4.5.0:\n resolved \"https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773\"\n \n \"lodash@>=3.5 <5\", lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4... | 2023-10-26T13:48:28 |
golang/go | 47ab9cbd82b8b1af4b0636ed72173735725678a6 | 21acfdc4ef18fcf2e5e6114fe800fec0a10e493c | cmd: fix DWARF gen bug with packages that use assembly
When the compiler builds a Go package with DWARF 5 generation enabled,
it emits relocations into various generated DWARF symbols (ex:
SDWARFFCN) that use the R_DWTXTADDR_* flavor of relocations. The
specific size of this relocation is selected based on the total n... | [
{
"path": "src/cmd/asm/main.go",
"patch": "@@ -49,6 +49,7 @@ func main() {\n \tctxt.Debugpcln = flags.DebugFlags.PCTab\n \tctxt.IsAsm = true\n \tctxt.Pkgpath = *flags.Importpath\n+\tctxt.DwTextCount = objabi.DummyDwarfFunctionCountForAssembler()\n \tswitch *flags.Spectre {\n \tdefault:\n \t\tlog.Printf(\"un... | 2025-04-05T22:59:59 |
vercel/next.js | 8f014afff307d22e1d2b2c844b3ed940e645c6db | 747ef2babe269885621d552fe980f7f6838aea6b | Consolidate dynamic IO errors test suites into a single fixture (#81451)
Previously, we had separate fixtures for each test case because it's
complicated to assert on build errors when multiple pages have errors.
This meant that running those tests, and especially updating their
snapshots, took forever because each te... | [
{
"path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.platform-dynamic.test.ts",
"patch": "@@ -1,172 +0,0 @@\n-import { isNextDev, nextTestSetup } from 'e2e-utils'\n-import { assertNoErrorToast } from 'next-test-utils'\n-import { getPrerenderOutput } from './utils'\n-\n-describe.each(\n- isNextDe... | 2025-07-09T18:09:38 |
nodejs/node | 1f69085db557d92edece566b5c8d7984bf473af0 | 2b41c237c03e8223f4189c0159456024704ca573 | test: set test-structuredclone-jstransferable non-flaky
Fixes: https://github.com/nodejs/node/issues/50260
PR-URL: https://github.com/nodejs/node/pull/54115
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "test/pummel/pummel.status",
"patch": "@@ -9,8 +9,6 @@ prefix pummel\n [$system==win32]\n # https://github.com/nodejs/node/issues/40728\n test-fs-watch-non-recursive: PASS,FLAKY\n-# https://github.com/nodejs/node/issues/50260\n-test-structuredclone-jstransferable: PASS,FLAKY\n \n [$system==macos]\... | 2024-08-06T08:24:15 |
rust-lang/rust | 236dac8d0e41ae9d4e31908c9a0a3fdf2789f5f6 | 15e0ce9d69340dc83fd8a37ba2c1596354bea6bc | fix: remove unnecessary trailing commas in format strings
This PR makes the new comma-removing lint PR less noisy, allowing it focus only on the new functionality | [
{
"path": "clippy_dev/src/new_lint.rs",
"patch": "@@ -167,9 +167,9 @@ fn add_lint(lint: &LintData<'_>, enable_msrv: bool) -> io::Result<()> {\n let camel_name = to_camel_case(lint.name);\n \n let new_lint = if enable_msrv {\n- format!(\"Box::new(move |{ctor_arg}| Box::new({module_name}::{came... | 2026-02-07T19:02:33 |
electron/electron | 395abf56204ab8feabb0e3616cf6c9f2516d9188 | 508d7c13536d4dfb04e47d2dc0e1fd93cb483fdc | fix: linker error missing `uv__strtok` (#38382)
fix: linker error missing uv__strtok
This symbol is referenced inside what seems to be dead code
in `uv__search_path` in third_party/electron_node/deps/uv/src/unix/core.c
When compiling in LTO mode, the reference is removed,
but not during a non-LTO build. | [
{
"path": "patches/node/build_add_gn_build_files.patch",
"patch": "@@ -1012,10 +1012,10 @@ index 0000000000000000000000000000000000000000..bfbd4e656db1a6c73048443f96f1d576\n +}\n diff --git a/deps/uv/BUILD.gn b/deps/uv/BUILD.gn\n new file mode 100644\n-index 0000000000000000000000000000000000000000..d6bed57... | 2023-05-22T11:00:45 |
facebook/react | 54ea4469716ec060fba475bb38e7b6d509586e1b | 97b1e01824df999bfc7c0c78d6a35dae56909ea2 | Bump lodash from 4.17.4 to 4.17.21 in /fixtures/packaging/systemjs-builder/prod (#27593)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.4 to 4.17.21.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/lodash/lodash/commit/f299b52f39486275a9e6483b60a410e06520c538"><code>f299b52</... | [
{
"path": "fixtures/packaging/systemjs-builder/prod/yarn.lock",
"patch": "@@ -399,8 +399,8 @@ lazy-cache@^1.0.3:\n resolved \"https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e\"\n \n lodash@^4.17.4:\n- version \"4.17.4\"\n- resolved \"https://registr... | 2023-10-26T13:48:05 |
golang/go | f9670787122a732fb7d81cf64856ab6c50904e17 | 3968a5bca4fc0cdb4e2bb9fd6169deafdafc420d | os: fix TestRootChtimes on illumos
TestRootChtimes currently fails on illumos [1] because the times
returned by os.Stat have only microsecond precision on that builder.
Truncate them to make the test pass again.
[1] https://build.golang.org/log/9780af24c3b3073dae1d827b2b9f9e3a48912c30
Change-Id: I8cf895d0b60c854c27c... | [
{
"path": "src/os/root_test.go",
"patch": "@@ -457,6 +457,9 @@ func TestRootChtimes(t *testing.T) {\n \t\t\t\tcase \"js\", \"plan9\":\n \t\t\t\t\ttimes.atime = times.atime.Truncate(1 * time.Second)\n \t\t\t\t\ttimes.mtime = times.mtime.Truncate(1 * time.Second)\n+\t\t\t\tcase \"illumos\":\n+\t\t\t\t\ttimes.... | 2025-04-11T12:11:37 |
vercel/next.js | af6fc0ab691a724007583a9f3fb4c320da96d1a7 | 6560ec279aaca9734df0f430800489319e1684b2 | Turbopack: handle all side effects and improve pattern (#81455)
Avoid the `let _ = task().resolve().await?` pattern.
Instead use the `task().as_side_effect().await?` pattern.
This is much better, because the compiler will yell at you if you miss
out the `as_side_effect()` or the `await?` due to `must_use`. In the old... | [
{
"path": "crates/napi/src/next_api/project.rs",
"patch": "@@ -947,10 +947,10 @@ pub async fn all_entrypoints_write_to_disk_operation(\n project: ResolvedVc<ProjectContainer>,\n app_dir_only: bool,\n ) -> Result<Vc<Entrypoints>> {\n- let _ = project\n+ project\n .project()\n .e... | 2025-07-09T15:20:34 |
facebook/react | 97b1e01824df999bfc7c0c78d6a35dae56909ea2 | de49d83f30508bc6394e543cd36f58a968ffc3d6 | Bump lodash from 4.17.15 to 4.17.21 in /fixtures/art (#27588)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to
4.17.21.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/lodash/lodash/commit/f299b52f39486275a9e6483b60a410e06520c538"><code>f299b52</code></a>
Bump to v4.17.... | [
{
"path": "fixtures/art/yarn.lock",
"patch": "@@ -1890,15 +1890,10 @@ locate-path@^3.0.0:\n p-locate \"^3.0.0\"\n path-exists \"^3.0.0\"\n \n-lodash@^4.17.13:\n- version \"4.17.15\"\n- resolved \"https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548\"\n-... | 2023-10-26T13:47:51 |
nodejs/node | accf2acdfb1798e13fb93c3f1667b79da92c39a3 | 5f52c8ae5437e4cc0a396813f7c576e6f65115ef | build: support `lint-js-fix` in `vcbuild.bat`
PR-URL: https://github.com/nodejs/node/pull/53695
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
Reviewed-By: James M Snell <jasnell@... | [
{
"path": "vcbuild.bat",
"patch": "@@ -41,6 +41,7 @@ set msi=\n set upload=\n set licensertf=\n set lint_js=\n+set lint_js_fix=\n set lint_cpp=\n set lint_md=\n set lint_md_build=\n@@ -115,6 +116,7 @@ if /i \"%1\"==\"test-v8-benchmarks\" set test_v8_benchmarks=1&set custom_v8_test=1&g\n if /i \"%1\"==\"test... | 2024-08-06T05:57:35 |
electron/electron | e138f5f915653966c3ec5779c9e4952cc08401bb | a22635bd9f664be51083947781844ce066ff5599 | docs: fix typing of message box type value (#38336)
* docs: fix typing of dialog type value
* test: add smoke tests
* test: update test | [
{
"path": "docs/api/dialog.md",
"patch": "@@ -223,10 +223,10 @@ expanding and collapsing the dialog.\n * `browserWindow` [BrowserWindow](browser-window.md) (optional)\n * `options` Object\n * `message` string - Content of the message box.\n- * `type` string (optional) - Can be `\"none\"`, `\"info\"`, `\"... | 2023-05-17T17:33:30 |
golang/go | 4dffdd797b69d9423b4a492e2d832e1023326b1b | 037112464b4439571b45536de9ebe4bc9e10ecb7 | math/big: replace addMulVVW with addMulVVWW
addMulVVW is an unnecessarily special case.
All other assembly routines taking []Word (V as in vector) arguments
take separate source and destination. For example:
addVV: z = x+y
mulAddVWW: z = x*m+a
addMulVVW uses the z parameter as both destination and source:
addMul... | [
{
"path": "src/math/big/arith.go",
"patch": "@@ -194,10 +194,11 @@ func mulAddVWW_g(z, x []Word, y, r Word) (c Word) {\n \treturn\n }\n \n-func addMulVVW_g(z, x []Word, y Word) (c Word) {\n+func addMulVVWW_g(z, x, y []Word, m, a Word) (c Word) {\n+\tc = a\n \t// The comment near the top of this file discuss... | 2025-04-05T18:29:00 |
rust-lang/rust | 57650eeb9dd4d4af3cf265c360864716b2badc4f | 06cafcbe08b1b0d4235685abd5f817ae1979cefa | fix: don't suggest replacing `env!("CARGO_BIN_NAME")` with itself | [
{
"path": "compiler/rustc_builtin_macros/src/env.rs",
"patch": "@@ -140,18 +140,21 @@ pub(crate) fn expand_env<'cx>(\n unreachable!(\"`expr_to_string` ensures this is a string lit\")\n };\n \n+ let var = var.as_str();\n let guar = match err {\n ... | 2026-02-07T16:24:16 |
vercel/next.js | 6560ec279aaca9734df0f430800489319e1684b2 | 8b390602489f12d7ad597939fb8851ef357c7b7c | Turbopack: fix unused export removal with mixed reexport and locals (#81422)
We had this reference which caused all locals to be used:
```
node_modules/@react-spring/core/dist/react-spring-core.esm.js [app-client] (ecmascript) <module evaluation>
->
node_modules/@react-spring/core/dist/react-spring-core.esm.js [ap... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/references/esm/base.rs",
"patch": "@@ -559,8 +559,12 @@ impl EsmAssetReference {\n ));\n }\n \n- if merged_index.is_some() && this.export_name == Some(ModulePart::Evaluation) {\n- ... | 2025-07-09T15:06:53 |
facebook/react | de49d83f30508bc6394e543cd36f58a968ffc3d6 | a82ff4c98506a71402bc8ff7c0f815a8dc3b58be | Bump lodash from 4.17.4 to 4.17.21 in /fixtures/expiration (#27591)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.4 to 4.17.21.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/lodash/lodash/commit/f299b52f39486275a9e6483b60a410e06520c538"><code>f299b52</code></a>
Bump to v4... | [
{
"path": "fixtures/expiration/yarn.lock",
"patch": "@@ -3943,8 +3943,8 @@ lodash.uniq@^4.5.0:\n resolved \"https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773\"\n \n \"lodash@>=3.5 <5\", lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.2, lodash@^4.17.3, ... | 2023-10-26T13:43:55 |
nodejs/node | a5200da1d0e97012ee0f5750c810ed4c7005ffbb | 926503b66910d9ec895c33c7fd94361fd78dea72 | doc: move `onread` option from `socket.connect()` to `new net.socket()`
Fixes: https://github.com/nodejs/node/issues/53792
PR-URL: https://github.com/nodejs/node/pull/54194
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tim Perry <pimterry@gmail.com> | [
{
"path": "doc/api/net.md",
"patch": "@@ -667,6 +667,19 @@ changes:\n `false`.\n * `fd` {number} If specified, wrap around an existing socket with\n the given file descriptor, otherwise a new socket will be created.\n+ * `onread` {Object} If specified, incoming data is stored in a single `buffer`... | 2024-08-05T23:36:20 |
electron/electron | 32d8f84cad9ece93520d6d1764c9b45403284760 | ad077125618bb3dc93dd2a660bf6c6956204bae5 | fix: `getNormalBounds()` for transparent windows on Windows (#38218) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -787,6 +787,10 @@ gfx::Size NativeWindowViews::GetContentSize() {\n }\n \n gfx::Rect NativeWindowViews::GetNormalBounds() {\n+#if BUILDFLAG(IS_WIN)\n+ if (IsMaximized() && transparent())\n+ return restore_bounds_;\n+#endif\n return widget(... | 2023-05-17T11:11:43 |
rust-lang/rust | 85ca098f55cade17d59dd625d2e9af724a73a33b | 8c5605e130081cbff57f505c56466538039346b1 | rustc_parse: improve the error diagnostic for "missing let"
Signed-off-by: Usman Akinyemi <usmanakinyemi202@gmail.com> | [
{
"path": "compiler/rustc_parse/src/errors.rs",
"patch": "@@ -573,6 +573,24 @@ pub(crate) struct ExpectedExpressionFoundLet {\n pub comparison: Option<MaybeComparison>,\n }\n \n+#[derive(Diagnostic)]\n+#[diag(\"let-chain with missing `let`\")]\n+pub(crate) struct LetChainMissingLet {\n+ #[primary_spa... | 2026-02-01T17:04:22 |
golang/go | 835e36fc7f631f74233edfd4ab43b6b56833db86 | 2c35900fe4256d6de132cbee6f5a15b29013aac9 | cmd/go: add subdirectory support to go-import meta tag
This CL adds ability to specify a subdirectory in the go-import meta tag.
A go-import meta tag now will support:
<meta name="go-import" content="root-path vcs repo-url subdir">
Fixes: #34055
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-win... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2952,6 +2952,11 @@\n //\n //\t<meta name=\"go-import\" content=\"import-prefix vcs repo-root\">\n //\n+// Starting in Go 1.25, an optional subdirectory will be recognized by the\n+// go command:\n+//\n+//\t<meta name=\"go-import\" content=\"import-prefix vcs ... | 2024-10-29T14:22:11 |
facebook/react | a82ff4c98506a71402bc8ff7c0f815a8dc3b58be | 8c8ee9ee618eace9199b7c80f4cd2d6f20ecfb73 | Bump lodash from 4.17.15 to 4.17.21 (#27587)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to
4.17.21.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/lodash/lodash/commit/f299b52f39486275a9e6483b60a410e06520c538"><code>f299b52</code></a>
Bump to v4.17.21</li>
<li><a
... | [
{
"path": "yarn.lock",
"patch": "@@ -6906,7 +6906,6 @@ eslint-plugin-no-unsanitized@3.1.2:\n \n \"eslint-plugin-react-internal@link:./scripts/eslint-rules\":\n version \"0.0.0\"\n- uid \"\"\n \n eslint-plugin-react@^6.7.1:\n version \"6.10.3\"\n@@ -10768,17 +10767,7 @@ lodash.union@^4.6.0:\n resolved... | 2023-10-26T13:43:31 |
vercel/next.js | 8b390602489f12d7ad597939fb8851ef357c7b7c | 6c112f67f2162cdfcf19b306e8e591adfdd2a38a | Turbopack: fix duplicate externals modules (#81306)
Don't attatch the resolve request's affecting sources to the external module itself. This list wasn't part of the module ident and would lead to duplicate modules. | [
{
"path": "turbopack/crates/turbopack-core/src/resolve/mod.rs",
"patch": "@@ -76,7 +76,6 @@ pub enum ModuleResolveResultItem {\n /// uri, path, reference, etc.\n name: RcStr,\n ty: ExternalType,\n- traced: Option<ResolvedVc<ModuleResolveResult>>,\n },\n /// A module co... | 2025-07-09T14:04:42 |
nodejs/node | c6aeddf140eb4ff2373049a835d371710e016867 | 981b5e3279e10e8cf01f5032452c45b5ba42acbc | sea: don't set code cache flags when snapshot is used
When both useCodeCache and useSnapshot are set, we generate the
snapshot and skip the generation of the code cache since the
snapshot already includes the code cache. But we previously still
persist the code cache setting in the flags that got serialized
into the S... | [
{
"path": "src/node_sea.cc",
"patch": "@@ -355,7 +355,14 @@ std::optional<SeaConfig> ParseSingleExecutableConfig(\n return std::nullopt;\n }\n if (use_code_cache.value()) {\n- result.flags |= SeaFlags::kUseCodeCache;\n+ if (use_snapshot.value()) {\n+ // TODO(joyeecheung): code cache in sn... | 2024-08-05T16:48:12 |
electron/electron | ad077125618bb3dc93dd2a660bf6c6956204bae5 | 9902e01d2c32e2959341c59ed9113d456997bcb0 | fix: `win.isMaximized()` for transparent windows on Windows (#38234) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -656,7 +656,7 @@ bool NativeWindowViews::IsMaximized() {\n return true;\n } else {\n #if BUILDFLAG(IS_WIN)\n- if (transparent()) {\n+ if (transparent() && !IsMinimized()) {\n // Compare the size of the window with the size of t... | 2023-05-17T08:17:08 |
golang/go | 9aad012a6e02d45b37757faeec20cc6923610baf | d60a684c87104ed7836403eab74eb2be1e4a97cb | net: reenable sendfile on Windows
Windows sendfile optimization is skipped since CL 472475, which started
passing an os.fileWithoutWriteTo instead of an os.File to sendfile,
and that function was only implemented for os.File.
This CL fixes the issue by asserting against an interface rather than
a concrete type.
Some... | [
{
"path": "src/internal/poll/sendfile_windows.go",
"patch": "@@ -10,78 +10,80 @@ import (\n )\n \n // SendFile wraps the TransmitFile call.\n-func SendFile(fd *FD, src syscall.Handle, n int64) (written int64, err error) {\n+func SendFile(fd *FD, src syscall.Handle, size int64) (written int64, err error, han... | 2025-04-09T09:15:38 |
facebook/react | a9985529f1aa55477f0feafe2398d36707cf6108 | 51ffd3564f97b58737df395d30628a27fa71a39d | [Fizz] Do not reinsert stylesheets after initial insert (#27586)
The loading state tracking for suspensey CSS is too complicated. Prior
to this change it had a state it could enter into where a stylesheet was
already in the DOM but the loading state did not know it was inserted
causing a later transition to try to ... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2337,7 +2337,7 @@ function preinitStyle(\n getStylesheetSelectorFromKey(key),\n );\n if (instance) {\n- state.loading = Loaded;\n+ state.loading = Loaded & Inserted;\n } else {\n // Con... | 2023-10-25T18:51:01 |
nodejs/node | 3616ace637e11776f3e49391da748195fcda7f72 | fafc845089d9d9481978667a2a55684ab7d780fb | inspector: provide detailed info to fix DevTools frontend errors
PR-URL: https://github.com/nodejs/node/pull/54156
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "lib/internal/inspector_network_tracking.js",
"patch": "@@ -1,7 +1,10 @@\n 'use strict';\n \n const {\n+ ArrayIsArray,\n DateNow,\n+ ObjectEntries,\n+ String,\n } = primordials;\n \n let dc;\n@@ -10,6 +13,25 @@ let Network;\n let requestId = 0;\n const getNextRequestId = () => `node-network-e... | 2024-08-05T12:30:45 |
electron/electron | e83197669cacf21f1061ca180c70739e4eda685f | 9bd9d312f8d59d3a80defba4aeb760e2c3e7e10c | fix: unify `BrowserWindow.isVisible()` logic cross-platform (#38242) | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -667,7 +667,7 @@ Hides the window.\n \n #### `win.isVisible()`\n \n-Returns `boolean` - Whether the window is visible to the user.\n+Returns `boolean` - Whether the window is visible to the user in the foreground of the app.\n \n #### `win.isModal()`\n ",... | 2023-05-16T09:46:45 |
vercel/next.js | 4d3a02d86f7163cc6a7a7b3a6366c11e12d6c78d | 11cbba8bd5967ce605ce351956fca4d50b0ead99 | Allow server functions to be used as client component props in `'use cache'` (#81431)
When passing server actions or nested `'use cache'` functions inside of
cached components as props to client components, we need to make sure
that those are registered as server references, even when restoring the
parent component fr... | [
{
"path": "crates/next-custom-transforms/src/transforms/server_actions.rs",
"patch": "@@ -352,12 +352,6 @@ impl<C: Comments> ServerActions<C> {\n id\n }\n \n- fn gen_ref_ident(&mut self) -> Atom {\n- let id: Atom = format!(\"$$RSC_SERVER_REF_{0}\", self.reference_index).into();\n- ... | 2025-07-09T13:41:15 |
golang/go | d60a684c87104ed7836403eab74eb2be1e4a97cb | 7a82b6a9e1ad6ace91e53011744ffefdbf5843bc | cmd/internal/obj/wasm: use i64 for large return addr
Use i64 to avoid overflow when getting PC_F from the return addr.
Fixes #73246
Change-Id: I5683dccf7eada4b8536edf53e2e83116a2f6d943
GitHub-Last-Rev: 267d9a1a031868430d0af530de14229ee1ae8609
GitHub-Pull-Request: golang/go#73277
Reviewed-on: https://go-review.google... | [
{
"path": "src/cmd/internal/obj/wasm/wasmobj.go",
"patch": "@@ -1006,9 +1006,10 @@ func genWasmExportWrapper(s *obj.LSym, appendp func(p *obj.Prog, as obj.As, args\n \t// In the unwinding case, we call wasm_pc_f_loop_export to handle stack switch and rewinding,\n \t// until a normal return (non-unwinding) b... | 2025-04-09T12:17:21 |
facebook/react | 8610533ed1a38539412114a99a0390747e828235 | d5c3fb87e6861dfe1bfdcb9353f71275172a3816 | Infer reactive control dependencies
Updates `InferReactivePlaces` to infer control dependencies. We build on the
formal definition of control dependencies, which is that statement S2 is
control-dependent on statement S1 if S1 is in the post-dominance-frontier of S2.
Intuitively, if S1 decides whether S2 is reached... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/Dominator.ts",
"patch": "@@ -98,7 +98,14 @@ export class Dominator<T> {\n }\n \n debug(): string {\n- return prettyFormat(this.#nodes);\n+ const dominators = new Map();\n+ for (const [key, value] of this.#nodes) {\n+ dominators... | 2023-11-02T00:13:03 |
nodejs/node | fafc845089d9d9481978667a2a55684ab7d780fb | a8166880f18a116e22a39296a68fcf9600fe741a | stream: make checking pendingcb on WritableStream backward compatible
PR-URL: https://github.com/nodejs/node/pull/54142
Fixes: https://github.com/nodejs/node/issues/54131
Refs: https://github.com/nodejs/node/issues/54131
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Robert Nagy <ronagy@icloud.com... | [
{
"path": "lib/internal/streams/end-of-stream.js",
"patch": "@@ -214,7 +214,7 @@ function eos(stream, options, callback) {\n !readable &&\n (!willEmitClose || isReadable(stream)) &&\n (writableFinished || isWritable(stream) === false) &&\n- (wState == null || wState.pendingcb === 0)\n+ (wS... | 2024-08-05T12:30:29 |
vercel/next.js | b77eb3e127986b47cab9eced2253f00de12a5a14 | 25781670de462dec915af465da6d623aefbf8397 | Turbopack: fix hanging problem due to stale tasks (#81413)
### What?
When tasks become dirty they eventually need to be scheduled again when needed. To do that we maintain "activeness" of tasks. And we also maintain "dirtyness" of subgraphs, to allow for strongly consistency of a subgraph. But all that is a bit mor... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs",
"patch": "@@ -1224,22 +1224,18 @@ impl AggregationUpdateQueue {\n ctx.schedule(task_id);\n }\n }\n- let aggregation_number = get_aggregation_number(&task);\n- if is... | 2025-07-09T06:19:21 |
electron/electron | 9bd9d312f8d59d3a80defba4aeb760e2c3e7e10c | 042663e19058cebc83428a5a354b863d2bb10e31 | fix: enable `BrowserWindow.id` access post-destruction (#38241)
fix: enable BrowserWindow id access post-destruction | [
{
"path": "lib/browser/api/browser-window.ts",
"patch": "@@ -12,6 +12,14 @@ BrowserWindow.prototype._init = function (this: BWT) {\n // Avoid recursive require.\n const { app } = require('electron');\n \n+ // Set ID at constructon time so it's accessible after\n+ // underlying window destruction.\n+ ... | 2023-05-16T07:29:00 |
golang/go | cac276f81a5ff11ae3c9027c45d14469f2b7fb70 | 7007dfcd0c32c1be83c921b0859dd48464c7c5aa | internal/poll: fix race in Close
There is a potential race between a concurrent call to FD.initIO, which
calls FD.pd.init, and a call to FD.Close, which calls FD.pd.evict.
This is solved by calling FD.initIO in FD.Close, as that will block
until the concurrent FD.initIO has completed. Note that FD.initIO is
no-op if ... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -336,6 +336,10 @@ func (fd *FD) initIO() error {\n \t\treturn nil\n \t}\n \tfd.initIOOnce.Do(func() {\n+\t\tif fd.closing() {\n+\t\t\t// Closing, nothing to do.\n+\t\t\treturn\n+\t\t}\n \t\t// The runtime poller will ignore I/O completion\n \t\t// no... | 2025-04-08T13:31:02 |
rust-lang/rust | 57650eeb9dd4d4af3cf265c360864716b2badc4f | 06cafcbe08b1b0d4235685abd5f817ae1979cefa | fix: don't suggest replacing `env!("CARGO_BIN_NAME")` with itself | [
{
"path": "compiler/rustc_builtin_macros/src/env.rs",
"patch": "@@ -140,18 +140,21 @@ pub(crate) fn expand_env<'cx>(\n unreachable!(\"`expr_to_string` ensures this is a string lit\")\n };\n \n+ let var = var.as_str();\n let guar = match err {\n ... | 2026-02-07T16:24:16 |
nodejs/node | a8166880f18a116e22a39296a68fcf9600fe741a | b3013e120ac5389a8a0705371232db9bbd9010bd | watch: reload changes in contents of --env-file
Make sure we watch and reload on env file changes.
Ignore env file in parent process, so child process can reload
current vars when we recreate it.
Fixes: https://github.com/nodejs/node/issues/54001
PR-URL: https://github.com/nodejs/node/pull/54109
Reviewed-By: Yagiz N... | [
{
"path": "lib/internal/main/watch_mode.js",
"patch": "@@ -33,6 +33,7 @@ markBootstrapComplete();\n // TODO(MoLow): Make kill signal configurable\n const kKillSignal = 'SIGTERM';\n const kShouldFilterModules = getOptionValue('--watch-path').length === 0;\n+const kEnvFile = getOptionValue('--env-file');\n co... | 2024-08-05T10:41:33 |
vercel/next.js | 37ab1aac4983f85d8bd94c6cb1a2f4ef9d6b7678 | 203adbd5d054609812d1f3666184875dcca13f3a | update: add nebrelbug to labeler.json (#81437) | [
{
"path": ".github/labeler.json",
"patch": "@@ -59,6 +59,7 @@\n { \"type\": \"user\", \"pattern\": \"ijjk\" },\n { \"type\": \"user\", \"pattern\": \"lazarv\" },\n { \"type\": \"user\", \"pattern\": \"lubieowoce\" },\n+ { \"type\": \"user\", \"pattern\": \"nebrelbug\" },\n { \"t... | 2025-07-09T02:04:49 |
electron/electron | 042663e19058cebc83428a5a354b863d2bb10e31 | e19500fa03bf08af1466dac5dbca39f1b4281d9c | fix: `isMaximized` after minimize/fullscreen on macOS (#38291)
fix: isMaximized after isMinimized on macOS | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -562,6 +562,11 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n }\n \n bool NativeWindowMac::IsMaximized() {\n+ // It's possible for [window_ isZoomed] to be true\n+ // when the window is minimized or fullscreened.\n+ if (IsMinimized(... | 2023-05-16T07:26:41 |
golang/go | ecc06f0db79193a4fe16138148c7eb26d9af96f1 | 0909bcd9e4acb01089d588d608d669d69710e50a | cmd/compile: fix the test for ABI specification so it works right w/ generics
Change-Id: I09ef615bfe69a30fa8f7eef5f0a8ff94a244c920
Reviewed-on: https://go-review.googlesource.com/c/go/+/663776
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-sc... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -317,7 +317,7 @@ func buildssa(fn *ir.Func, worker int, isPgoHot bool) *ssa.Func {\n \t// optionally allows an ABI suffix specification in the GOSSAHASH, e.g. \"(*Reader).Reset<0>\" etc\n \tif strings.Contains(ssaDump, name) { // in all the ca... | 2025-04-08T01:38:01 |
rust-lang/rust | 85ca098f55cade17d59dd625d2e9af724a73a33b | 8c5605e130081cbff57f505c56466538039346b1 | rustc_parse: improve the error diagnostic for "missing let"
Signed-off-by: Usman Akinyemi <usmanakinyemi202@gmail.com> | [
{
"path": "compiler/rustc_parse/src/errors.rs",
"patch": "@@ -573,6 +573,24 @@ pub(crate) struct ExpectedExpressionFoundLet {\n pub comparison: Option<MaybeComparison>,\n }\n \n+#[derive(Diagnostic)]\n+#[diag(\"let-chain with missing `let`\")]\n+pub(crate) struct LetChainMissingLet {\n+ #[primary_spa... | 2026-02-01T17:04:22 |
nodejs/node | e6ee6e2901c380513bd0d03857146c187d31bab2 | a3cd290f24113a21971a5d29a8e52c56c89f9fd3 | lib: fix typos in comments within internal/streams
fixed typos in comments within the internal/streams directory.
PR-URL: https://github.com/nodejs/node/pull/54093
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.co... | [
{
"path": "lib/internal/streams/readable.js",
"patch": "@@ -258,7 +258,7 @@ ObjectDefineProperties(ReadableState.prototype, {\n \n \n function ReadableState(options, stream, isDuplex) {\n- // Bit map field to store ReadableState more effciently with 1 bit per field\n+ // Bit map field to store ReadableSta... | 2024-08-05T01:58:40 |
electron/electron | eeb1e7d499130717dbb76610e4800fb638e5605d | 0149ae72e638e1d386194d23d81bcdd64d9966c4 | chore: fix lint:js-in-markdown script (#38260) | [
{
"path": "docs/api/app.md",
"patch": "@@ -1346,7 +1346,7 @@ app.setLoginItemSettings({\n path: updateExe,\n args: [\n '--processStart', `\"${exeName}\"`,\n- '--process-start-args', `\"--hidden\"`\n+ '--process-start-args', '\"--hidden\"'\n ]\n })\n ```",
"additions": 1,
"deletions":... | 2023-05-15T07:58:35 |
facebook/react | e2836eec5be07acf5a0cf7af3a230f2526d26031 | 3e812df89cee2686bcb1086038fcb2e609802dd4 | [bugfix] do not hoist computed memberpaths in lambdas | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -3530,6 +3530,14 @@ function lowerAssignment(\n }\n }\n \n+function isValidDependency(path: NodePath<t.MemberExpression>): boolean {\n+ const parent: NodePath<t.Node> = path.parentPath;\n+ return (\n+ !path.node... | 2023-10-30T16:56:50 |
golang/go | 0909bcd9e4acb01089d588d608d669d69710e50a | 53badd4836f88c45e686c60712ac3c9d6364e505 | syscall: remove unused windows function
It's causing the dependency test to fail.
Fixes #73274
Change-Id: I7d80ea4872e360c16ac3b77acf15fa2660d117b3
Reviewed-on: https://go-review.googlesource.com/c/go/+/663975
Auto-Submit: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account... | [
{
"path": "src/syscall/zsyscall_windows.go",
"patch": "@@ -948,15 +948,6 @@ func LocalFree(hmem Handle) (handle Handle, err error) {\n \treturn\n }\n \n-func localFree(hmem Handle) (handle Handle, err error) {\n-\tr0, _, e1 := Syscall(procLocalFree.Addr(), 1, uintptr(hmem), 0, 0)\n-\thandle = Handle(r0)\n-\... | 2025-04-08T22:16:50 |
nodejs/node | 76d10a10fb2f995aebb6df2470b02a9160bbeceb | ea5e77b1a5572c640a0407c1f2b6c60238752219 | doc: add documentation for blob.bytes() method
PR-URL: https://github.com/nodejs/node/pull/54114
Fixes: https://github.com/nodejs/node/issues/54105
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> | [
{
"path": "doc/api/buffer.md",
"patch": "@@ -513,6 +513,23 @@ added:\n Returns a promise that fulfills with an {ArrayBuffer} containing a copy of\n the `Blob` data.\n \n+#### `blob.bytes()`\n+\n+<!-- YAML\n+added:\n+ - v22.3.0\n+ - v20.16.0\n+-->\n+\n+The `blob.bytes()` method returns the byte of the `Blo... | 2024-07-30T05:27:28 |
rust-lang/rust | 1ec5101f20cfffb67557692a5ec647133e2bcd19 | 7c9ae5b0213393660abe57add8d4b34c90c3430f | Bump the libm MSRV to 1.67
This gets us:
* `saturating_sub_unsigned`
* `<int>::ilog2`
* Correct lexing of float literals with the `f16` or `f128` suffix
Link: https://github.com/rust-lang/compiler-builtins/issues/1017 | [
{
"path": "library/compiler-builtins/libm/Cargo.toml",
"patch": "@@ -13,7 +13,7 @@ keywords = [\"libm\", \"math\"]\n repository = \"https://github.com/rust-lang/compiler-builtins\"\n license = \"MIT\"\n edition = \"2021\"\n-rust-version = \"1.63\"\n+rust-version = \"1.67\"\n \n [dev-dependencies]\n # FIXME(... | 2026-02-07T13:06:05 |
facebook/react | 3e812df89cee2686bcb1086038fcb2e609802dd4 | f648e4ce85dd3b1a8ecc4120a0629a4b75859480 | [repro] Test case for more variable naming collision bugs
---
bug repro from @JacksonGL
(we currently bailout for references to `useMemoCache`, but not other variables
that may collide with codegenned ones).
```
% yarn sprout --filter
yarn run v1.22.19
$ node ../sprout/dist/main.js --filter
FAIL todo ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/todo-rename-source-variables.expect.md",
"patch": "@@ -0,0 +1,57 @@\n+\n+## Input\n+\n+```javascript\n+import { identity } from \"shared-runtime\";\n+\n+const $ = \"module_$\";\n+const t0 = \"module_t0\";\n+const c_0 = \"... | 2023-10-30T16:01:24 |
golang/go | 53badd4836f88c45e686c60712ac3c9d6364e505 | ec4a9fb3211e1b7bd4035af7d70f17a21cd26508 | net/http: push roundTrip panic higher in the stack
If Transport is a non-nil interface pointing to a nil implementer,
then a panic inside of roundTrip further obsfucates the issue.
Change-Id: I47664b8e6185c5f56b5e529f49022484b5ea1d94
Reviewed-on: https://go-review.googlesource.com/c/go/+/661897
LUCI-TryBot-Result: Go... | [
{
"path": "src/net/http/roundtrip.go",
"patch": "@@ -27,5 +27,8 @@ func badRoundTrip(*Transport, *Request) (*Response, error)\n // Like the RoundTripper interface, the error types returned\n // by RoundTrip are unspecified.\n func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n+\tif t == nil {... | 2025-04-01T21:04:29 |
electron/electron | 95cd84f14032c7640ef69e221d007562f115cfef | 894e056e6ba44dbc05b3dbcb62ed47677c646937 | build: fix octokit resolution with patch-package (#38250) | [
{
"path": "package.json",
"patch": "@@ -57,6 +57,7 @@\n \"lint-staged\": \"^10.2.11\",\n \"minimist\": \"^1.2.6\",\n \"null-loader\": \"^4.0.0\",\n+ \"patch-package\": \"^7.0.0\",\n \"pre-flight\": \"^1.1.0\",\n \"process\": \"^0.11.10\",\n \"remark-cli\": \"^10.0.0\",\n@@ -101,9 ... | 2023-05-11T03:52:59 |
facebook/react | 51baf5807e6d99d27dd1b233225402330cc0375c | 419310cd15673d1c3d4112cbedf85ea08c1c1e61 | [test/react] Fix github workflow
The flattening broke the shell script because the directory structure changed.
Instead of depending on a flaky shell script, this PR encodes the commands as
part of the github workflow. | [
{
"path": "compiler/.github/workflows/react.yml",
"patch": "@@ -17,6 +17,10 @@ jobs:\n cache-dependency-path: yarn.lock\n - run: yarn install --frozen-lockfile\n - run: yarn workspace babel-plugin-react-forget run build\n+ - run: yarn link\n+ working-directory: packages/bab... | 2023-10-25T11:36:55 |
nodejs/node | bd42e4c6a73f61f7ee47e4426d86708fd80c6c4f | d172da8d0197a71d473ee879eacd1061b316bdf2 | test: fix typo in test
PR-URL: https://github.com/nodejs/node/pull/54137
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Harshitha K P <harshitha014@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> | [
{
"path": "test/async-hooks/verify-graph.js",
"patch": "@@ -125,9 +125,9 @@ module.exports.printGraph = function printGraph(hooks) {\n const uidtoid = {};\n const activities = pruneTickObjects(hooks.activities);\n const graph = [];\n- activities.forEach(procesNode);\n+ activities.forEach(processNode... | 2024-08-04T07:03:24 |
vercel/next.js | a546b131ed5bf8c1d50f79dea0a93c8c6e5b58a0 | 94f8aecf2622d778b097780eec0992104f709528 | fix: referencing unavailable __dirname (#81436)
Patch missing __dirname usage for storybook css injection | [
{
"path": "packages/next/.storybook/main.ts",
"patch": "@@ -1,5 +1,7 @@\n import type { StorybookConfig } from '@storybook/react-webpack5'\n import { join, dirname, resolve } from 'path'\n+import { fileURLToPath } from 'url'\n+\n /**\n * This function is used to resolve the absolute path of a package.\n *... | 2025-07-09T00:49:13 |
golang/go | ec4a9fb3211e1b7bd4035af7d70f17a21cd26508 | 3acd4402195aadc581aa68977154ac3b3403f8af | context: don't return a nil Cause for a canceled custom context
Avoid a case where Cause(ctx) could return nil for a canceled context,
when ctx is a custom context implementation and descends from a
cancellable-but-not-canceled first-party Context.
Fixes #73258
Change-Id: Idbd81ccddea82ecabece4373d718baae6ca4b58e
Re... | [
{
"path": "src/context/context.go",
"patch": "@@ -288,11 +288,17 @@ func withCancel(parent Context) *cancelCtx {\n func Cause(c Context) error {\n \tif cc, ok := c.Value(&cancelCtxKey).(*cancelCtx); ok {\n \t\tcc.mu.Lock()\n-\t\tdefer cc.mu.Unlock()\n-\t\treturn cc.cause\n+\t\tcause := cc.cause\n+\t\tcc.mu.... | 2025-04-08T20:39:08 |
facebook/react | c72673bd8f1a6a47f8b403f5600959c6d92b1582 | ad1fe50546f112e5efae55ab2957007dee29d86c | [fixtures] Run prettier after babel-plugin
This moves prettier formatting into fixture-test-utils instead, so we can remove
the dependency on prettier in the babel plugin. I want to do this because I
don't want to include prettier in the rolledup artifact when we build the babel
plugin. | [
{
"path": "compiler/packages/fixture-test-utils/package.json",
"patch": "@@ -11,6 +11,7 @@\n \"dependencies\": {\n \"@parcel/watcher\": \"^2.1.0\",\n \"chalk\": \"4\",\n+ \"prettier\": \"2.8.8\",\n \"readline\": \"^1.3.0\",\n \"typescript\": \"^5.1.0\",\n \"yargs\": \"^17.7.1\"\n@@ ... | 2023-10-27T18:07:55 |
nodejs/node | 5d6c76adee0407252b0785f4b08697e8dd6aea4e | acbd0be0da92cd5abe73a5c136e2d3c6537edc23 | module: fix strip-types interaction with detect-module
PR-URL: https://github.com/nodejs/node/pull/54164
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Revie... | [
{
"path": "lib/internal/modules/esm/get_format.js",
"patch": "@@ -164,7 +164,8 @@ function getFileProtocolModuleFormat(url, context = { __proto__: null }, ignoreE\n const { tsParse } = require('internal/modules/helpers');\n const parsedSource = tsParse(source);\n const detectedFormat... | 2024-08-03T17:15:11 |
electron/electron | 894e056e6ba44dbc05b3dbcb62ed47677c646937 | 2806feede2cf5264b0187dddfdd7fc6cca915fbf | chore: bump chromium to 115.0.5760.0 (main) (#38033)
* chore: bump chromium in DEPS to 114.0.5721.0
* chore: update patches
* chore: bump chromium in DEPS to 114.0.5723.0
* chore: update patches
* chore: bump chromium in DEPS to 114.0.5725.0
* chore: update patches
* chore: bump chromium in DEPS to 1... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -52,9 +52,14 @@ executors:\n size:\n description: \"macOS executor size\"\n type: enum\n- enum: [\"macos.x86.medium.gen2\", \"large\"]\n+ enum: [\"macos.x86.medium.gen2\"]\n+ version:\n+ description: \"xcode ... | 2023-05-10T14:47:48 |
golang/go | 559b5d814f63bbeee626778c41ab4ee4fd48030a | 3a4f077710b96ee72fcd4214280a41a7c355205b | go/types, types2: fix failing error message test for s390x
Fixes #73206.
Change-Id: If27ce5fe7aa71415b6e2d525c78b1f04b88a308b
Reviewed-on: https://go-review.googlesource.com/c/go/+/663635
TryBot-Result: Gopher Robot <gobot@golang.org>
TryBot-Bypass: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Robert Griesemer... | [
{
"path": "src/internal/types/testdata/fixedbugs/issue70549.go",
"patch": "@@ -7,9 +7,9 @@ package p\n import \"math\"\n \n var (\n-\t_ = math.Sin\n-\t_ = math.SIn /* ERROR \"undefined: math.SIn (but have Sin)\" */\n-\t_ = math.sin /* ERROR \"name sin not exported by package math\" */\n-\t_ = math.Foo /* ER... | 2025-04-07T21:28:47 |
vercel/next.js | 94f8aecf2622d778b097780eec0992104f709528 | 697fc32efb3c2cc8a76c94d607d63eafa2ad2784 | feat: forward browser errors/logs to terminal (#80909)
Closes NEXT-4534
This PR introduces the ability for next.js to forward logs, errors, and
unhandled rejections from the browser to the terminal the dev server is
running in (behind an experimental flag)
# Explanation
The 2 main components of this pr are the clie... | [
{
"path": "packages/next/package.json",
"patch": "@@ -309,6 +309,7 @@\n \"react-refresh\": \"0.12.0\",\n \"recast\": \"0.23.11\",\n \"regenerator-runtime\": \"0.13.4\",\n+ \"safe-stable-stringify\": \"2.5.0\",\n \"sass-loader\": \"15.0.0\",\n \"schema-utils2\": \"npm:schema-utils@2.7.... | 2025-07-08T23:40:01 |
facebook/react | b8e47d988eb3ba547c102c0b12c351250ed955e0 | 05fbd1aab036ecbd14469d6376024439bc931f68 | Bugfix: useFormState queues actions in wrong order (#27570)
I neglected to update the "last" pointer of the action queue. Since the
queue is circular, rather than dropping the update, the effect was to
add the update to the front of the queue instead of the back. I didn't
notice earlier because in my demos/tests, t... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMForm-test.js",
"patch": "@@ -90,7 +90,7 @@ describe('ReactDOMForm', () => {\n const thenable = record.value;\n record.status = 'resolved';\n record.value = text;\n- thenable.pings.forEach(t => t());\n+ thenable.pings.forEach(t =... | 2023-10-23T21:52:15 |
rust-lang/rust | 6af91c56d199851abfebbbab4745f34f229649f1 | cee9cc6113b1c5ae3f47a87b73f546099d4b4296 | Move tests from tests/crashes to tests/ui now that they don't ICE | [
{
"path": "tests/crashes/137190-2.rs",
"patch": "@@ -1,18 +0,0 @@\n-//@ known-bug: #137190\n-trait Supertrait<T> {\n- fn method(&self) {}\n-}\n-\n-trait Trait<P>: Supertrait<()> {}\n-\n-impl<P> Trait<P> for () {}\n-\n-const fn upcast<P>(x: &dyn Trait<P>) -> &dyn Supertrait<()> {\n- x\n-}\n-\n-const fn... | 2026-02-07T11:42:59 |
nodejs/node | 358ff748ea52707bddde13787c18623d00c4175b | 492032f34c1bf264eae01dc5cdfc77c8032b8552 | lib,permission: support Buffer to permission.has
PR-URL: https://github.com/nodejs/node/pull/54104
Fixes: https://github.com/nodejs/node/issues/54100
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "lib/fs.js",
"patch": "@@ -1546,7 +1546,8 @@ function lstat(path, options = { bigint: false }, callback) {\n callback = makeStatsCallback(callback);\n path = getValidatedPath(path);\n if (permission.isEnabled() && !permission.has('fs.read', path)) {\n- callback(new ERR_ACCESS_DENIED('Acce... | 2024-08-03T16:46:57 |
electron/electron | 2806feede2cf5264b0187dddfdd7fc6cca915fbf | 13e309e1fb2491af7c4bfd6bc6e786dbeb8dfc4b | docs: fix `devtools-open-url` ts definition (#38231)
docs: fix devtools-open-url ts definition | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -601,6 +601,7 @@ window.\n \n Returns:\n \n+* `event` Event\n * `url` string - URL of the link that was clicked or selected.\n \n Emitted when a link is clicked in DevTools or 'Open in new tab' is selected for a link in its context menu.",
"additions": ... | 2023-05-10T09:25:50 |
golang/go | 3a4f077710b96ee72fcd4214280a41a7c355205b | 58b6891108fa75f5856750e13dff3fa980987f07 | syscall: fix dangling pointers in Windows' process attributes
Windows' _PROC_THREAD_ATTRIBUTE_LIST can contain pointers to memory
owned by Go, but the GC is not aware of this. This can lead to the
memory being freed while the _PROC_THREAD_ATTRIBUTE_LIST is still in
use.
This CL uses the same approach as in x/sys/wind... | [
{
"path": "src/syscall/exec_windows.go",
"patch": "@@ -332,20 +332,20 @@ func StartProcess(argv0 string, argv []string, attr *ProcAttr) (pid int, handle\n \t\t\tdefer DuplicateHandle(parentProcess, fd[i], 0, nil, 0, false, DUPLICATE_CLOSE_SOURCE)\n \t\t}\n \t}\n-\tsi := new(_STARTUPINFOEXW)\n-\tsi.ProcThrea... | 2025-04-08T09:19:57 |
rust-lang/rust | cee9cc6113b1c5ae3f47a87b73f546099d4b4296 | 06cafcbe08b1b0d4235685abd5f817ae1979cefa | Fix an ICE in the vtable iteration for a trait reference in const eval when a supertrait not implemented
compiler/rustc_trait_selection/src/traits/vtable.rs@`vtable_entries`:
The impossible predicates check in `vtable_entries` used
`instantiate_own` which only includes the method's own where-clauses,
not the parent tr... | [
{
"path": "compiler/rustc_trait_selection/src/traits/vtable.rs",
"patch": "@@ -12,7 +12,7 @@ use rustc_span::DUMMY_SP;\n use smallvec::{SmallVec, smallvec};\n use tracing::debug;\n \n-use crate::traits::{impossible_predicates, is_vtable_safe_method};\n+use crate::traits::is_vtable_safe_method;\n \n #[derive... | 2026-02-07T11:37:00 |
facebook/react | 6db7f4209e6f32ebde298a0b7451710dd6aa3e19 | 90172d12e8f06936ade78ed916397c16a2bec4f8 | Bugfix: useDeferredValue loop during popstate transition (#27559)
During a popstate event, we attempt to render updates synchronously even
if they are transitions, to preserve scroll position if possible. We do
this by entangling the transition lane with the Sync lane.
However, if rendering the transition spawns ... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -583,8 +583,29 @@ export function getCurrentEventPriority(): EventPriority {\n return getEventPriority(currentEvent.type);\n }\n \n+let currentPopstateTransitionEvent: Event | null = null;\n export function shouldAttem... | 2023-10-21T16:11:25 |
vercel/next.js | 2503c19dd068a99c82ec02691b22c323a884614f | d9a774117cfef44c173c961c5e1699734eb7f62a | [segment explorer] capture defined boundaries (#81232)
Capture defined boundaries (not-found / error / loading) and used to filter which one is available for boundary triggers
The trie will now hold all the defined boundaries, but what's different from the existing rendered boundaries is:
Here's the difference o... | [
{
"path": "packages/next/src/client/components/layout-router.tsx",
"patch": "@@ -507,6 +507,7 @@ export default function OuterLayoutRouter({\n forbidden,\n unauthorized,\n gracefullyDegrade,\n+ segmentViewBoundaries,\n }: {\n parallelRouterKey: string\n error: ErrorComponent | undefined\n@@ -519,... | 2025-07-08T20:13:03 |
nodejs/node | 13ca021da3a00362c90ac85e0c93fcbf967187eb | 1e3a3470a5d6b0f4137507fd7a66008a7020bf2d | doc: fix worker threadId/destination typo
PR-URL: https://github.com/nodejs/node/pull/53933
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> | [
{
"path": "doc/api/worker_threads.md",
"patch": "@@ -260,7 +260,7 @@ added: v22.5.0\n \n > Stability: 1.1 - Active development\n \n-* `destination` {number} The target thread ID. If the thread ID is invalid, a\n+* `threadId` {number} The target thread ID. If the thread ID is invalid, a\n [`ERR_WORKER_MESS... | 2024-08-02T10:45:49 |
golang/go | 58b6891108fa75f5856750e13dff3fa980987f07 | 38a2a3c7ce156e01f8980cb97912b7067709aaa3 | go/ast: don't MergeLine in SortImports when last import on the same line as RParen
Fixes #69183
Change-Id: I8b78dadaa8ba91e74ea2bfc21abd6abe72b7e38b
GitHub-Last-Rev: 1a41f9e8e3bef9926993813568902d1a77c991c1
GitHub-Pull-Request: golang/go#69187
Reviewed-on: https://go-review.googlesource.com/c/go/+/610035
Reviewed-by:... | [
{
"path": "src/go/ast/import.go",
"patch": "@@ -33,11 +33,11 @@ func SortImports(fset *token.FileSet, f *File) {\n \t\tfor j, s := range d.Specs {\n \t\t\tif j > i && lineAt(fset, s.Pos()) > 1+lineAt(fset, d.Specs[j-1].End()) {\n \t\t\t\t// j begins a new run. End this one.\n-\t\t\t\tspecs = append(specs, s... | 2025-04-08T06:43:33 |
electron/electron | 13e309e1fb2491af7c4bfd6bc6e786dbeb8dfc4b | f432245456e92fe0191ae0b9275fdee60dd45452 | fix: only exit fullscreen conditionally with `setKiosk` (#38219)
fix: only exit fullscreen conditionally with setKiosk | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -234,6 +234,7 @@ class NativeWindowMac : public NativeWindow,\n // The views::View that fills the client area.\n std::unique_ptr<RootViewMac> root_view_;\n \n+ bool fullscreen_before_kiosk_ = false;\n bool is_kiosk_ = false;\n bool zoom_to... | 2023-05-09T16:28:37 |
facebook/react | b049c14bb37965940aeeaa622d484981a2cf25a3 | f8cee28f1d7c8da8522974dd3e61b7fc0815c85d | Repro of hoisting bug
Adds a test case reproducing an issue with hoisting. This seems like a case
where hoisting was incorrectly applied as this example doesn't require it | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-hoisting-nested-block-statements.expect.md",
"patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+function hoisting(cond) {\n+ if (cond) {\n+ const x = 1;\n+ foo(x);\n+ }\n+\n+ const x = 2;\n+ ... | 2023-10-20T10:34:41 |
vercel/next.js | bdb87a1851bbf62778f422002aca45fbb0e9566e | b81f9892b3f5216e8c40a413f840f6ce8e00f1f4 | chore: update rspack to 1.4.5 (#81216)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### Improvi... | [
{
"path": "package.json",
"patch": "@@ -116,7 +116,7 @@\n \"@next/third-parties\": \"workspace:*\",\n \"@opentelemetry/api\": \"1.4.1\",\n \"@picocss/pico\": \"1.5.10\",\n- \"@rspack/core\": \"1.3.12\",\n+ \"@rspack/core\": \"1.4.5\",\n \"@rspack/plugin-react-refresh\": \"1.2.0\",\n ... | 2025-07-08T17:57:38 |
nodejs/node | 1fd170a7fc9275ba6e5ce77b0b1a51eda91a083b | 7941b4b3330cd38e11180280cd8714d0d0906930 | stream: throw TypeError when criteria fulfilled in getIterator
PR-URL: https://github.com/nodejs/node/pull/53825
Fixes: https://github.com/nodejs/node/issues/53819
Refs: https://github.com/nodejs/node/issues/53819
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.co... | [
{
"path": "lib/internal/webstreams/util.js",
"patch": "@@ -18,6 +18,7 @@ const {\n \n const {\n codes: {\n+ ERR_ARG_NOT_ITERABLE,\n ERR_INVALID_ARG_VALUE,\n ERR_INVALID_STATE,\n ERR_OPERATION_FAILED,\n@@ -235,6 +236,11 @@ function getIterator(obj, kind = 'sync', method) {\n method = o... | 2024-08-01T02:00:47 |
golang/go | 14b15a2beaed423ba6b6c97fa5983bd57999038e | af278bfb1f07b9f8f84d325a84b3891a3ab0dbf1 | internal/runtime/maps: pass proper func PC to race.WritePC/race.ReadPC
Fixes #73191
Change-Id: I0f8a5a19faa745943a98476c7caf4c97ccdce184
Reviewed-on: https://go-review.googlesource.com/c/go/+/663175
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <m... | [
{
"path": "src/internal/runtime/maps/runtime_fast32_swiss.go",
"patch": "@@ -17,7 +17,7 @@ import (\n func runtime_mapaccess1_fast32(typ *abi.SwissMapType, m *Map, key uint32) unsafe.Pointer {\n \tif race.Enabled && m != nil {\n \t\tcallerpc := sys.GetCallerPC()\n-\t\tpc := abi.FuncPCABIInternal(runtime_map... | 2025-04-05T17:29:49 |
electron/electron | f432245456e92fe0191ae0b9275fdee60dd45452 | 0212c264cab7a2b8dc2141f429df64396c410ffa | fix: handle `AXManualAccessibility` attribute cross-protocol (#38142)
* fix: handle AXManualAccessibility attribute cross-protocol
* Update shell/browser/mac/electron_application.mm
Co-authored-by: Robo <hop2deep@gmail.com>
---------
Co-authored-by: Robo <hop2deep@gmail.com> | [
{
"path": "shell/browser/mac/electron_application.mm",
"patch": "@@ -175,6 +175,33 @@ - (void)handleURLEvent:(NSAppleEventDescriptor*)event\n electron::Browser::Get()->OpenURL(base::SysNSStringToUTF8(url));\n }\n \n+// Returns the list of accessibility attributes that this object supports.\n+- (NSArray*)a... | 2023-05-09T09:13:14 |
rust-lang/rust | 3ee0286396e9cfacd3c0cb1ce7417b6a7a8e6308 | 9aebf045fb16941e2273aaba2a6d44231dad84e1 | internal: Remove `Edition::CURRENT_FIXME` | [
{
"path": "src/tools/rust-analyzer/Cargo.toml",
"patch": "@@ -192,8 +192,6 @@ unused_lifetimes = \"warn\"\n unreachable_pub = \"warn\"\n \n [workspace.lints.clippy]\n-# FIXME Remove the tidy test once the lint table is stable\n-\n ## lint groups\n complexity = { level = \"warn\", priority = -1 }\n correctne... | 2026-01-18T12:35:42 |
facebook/react | f8cee28f1d7c8da8522974dd3e61b7fc0815c85d | 84da8994bd55f4a908fe0ca8446d1bb4d09adee2 | Retain minimal variable declarations in DCE
Currently DCE can remove variable declarations that are unused, ie where all
control-flow paths to usage of the variable are overwritten by a reassignment.
We then have to reconstruct the original variable declaration at the appropriate
block scope during LeaveSSA, which... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -3204,11 +3204,19 @@ function lowerAssignment(\n }\n }\n case \"ArrayPattern\": {\n- // TODO\n const lvalue = lvaluePath as NodePath<t.ArrayPattern>;\n const elements = lvalue.get(\"eleme... | 2023-10-19T21:08:15 |
vercel/next.js | 71c87179a8494ba42a11b66579149f6bdf52c457 | bab62242883150c5267fae8a2c42535374c11911 | refactor(turbopack/napi): Add a NextTurbopackContext type, rename VcArc to DetachedVc (#80881)
- Introduce `NextTurbopackContext` for use later in https://github.com/vercel/next.js/pull/81272 . In this PR, it's just a thin single-field wrapper, but we add callbacks to it in the next PR.
- Wrap all the places we pass a... | [
{
"path": "crates/napi/src/next_api/endpoint.rs",
"patch": "@@ -15,7 +15,7 @@ use turbo_tasks::{Completion, Effects, OperationVc, ReadRef, Vc};\n use turbopack_core::{diagnostics::PlainDiagnostic, error::PrettyPrintError, issue::PlainIssue};\n \n use super::utils::{\n- NapiDiagnostic, NapiIssue, RootTask... | 2025-07-08T17:12:18 |
nodejs/node | 49a9ba43cf913ee7484236be0e406129304f5cf0 | f2126744525114557a817982aae9582124abe5d0 | doc: expand troubleshooting section
Update the troubleshooting section with regards to
memory requirements and potential errors. This error
specifically happened to me on an Ubuntu host with
2GB of RAM which wasn't enough and g++ error'ed
during Node.js compilation step.
PR-URL: https://github.com/nodejs/node/pull/53... | [
{
"path": "BUILDING.md",
"patch": "@@ -593,6 +593,11 @@ rebuild may take a lot more time than previous builds. Additionally,\n ran `./configure` with non-default options (such as `--debug`), you will need\n to run it again before invoking `make -j4`.\n \n+If you received the error `nodejs g++ fatal error co... | 2024-07-31T09:42:02 |
electron/electron | 0212c264cab7a2b8dc2141f429df64396c410ffa | 9ccf2275d2e021c44f51cc3719679e927fee10fa | build: fix CRLF endings in messages.json (#38212) | [
{
"path": "spec/fixtures/extensions/chrome-i18n/_locales/en/messages.json",
"patch": "@@ -1,6 +1,6 @@\n-{\r\n- \"extName\": {\r\n- \"message\": \"chrome-i18n\",\r\n- \"description\": \"Extension name.\"\r\n- }\r\n-}\r\n+{\n+ \"extName\": {\n+ \"message\": \"chrome-i18n\",\n+ \"description\": ... | 2023-05-08T18:51:24 |
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.