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 |
|---|---|---|---|---|---|
golang/go | 6853d89477e0886c7c96b08e7efaf74abedfcf71 | e45c125a3c343767b3bb68f3512d8cffbf7691b9 | syscall: keep write access when O_TRUNC is used on Windows
CL 618836 introduces a regression where O_APPEND and O_TRUNC could
not be used together on Windows.
This CL fixes the issue by keeping the write access when O_TRUNC is used
, which is required when overwriting data (as per the file
access rights docs: https:/... | [
{
"path": "src/syscall/syscall_windows.go",
"patch": "@@ -362,8 +362,12 @@ func Open(name string, flag int, perm uint32) (fd Handle, err error) {\n \t\taccess |= GENERIC_WRITE\n \t}\n \tif flag&O_APPEND != 0 {\n-\t\taccess &^= GENERIC_WRITE\n \t\taccess |= FILE_APPEND_DATA\n+\t\t// Remove GENERIC_WRITE acce... | 2024-10-16T14:18:45 |
facebook/react | 060505e9dce2f3d5d9d67c2a9415b94e5b0ca291 | 47944142f57d8c1c7b79eaf6522de38e76137ca5 | Fix misapplying prod error opt-out (#24688)
The eslint-disable-next-line opt out for prod error minification was not properly working. In the build a replacable error was output even though it was not failing the build. This change refactors the code to avoid the erroneous behavior but a fix for the lint may be better | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.new.js",
"patch": "@@ -2593,14 +2593,17 @@ function updateDehydratedSuspenseComponent(\n ({digest} = getSuspenseInstanceFallbackErrorDetails(suspenseInstance));\n }\n \n- const error = message\n- ? // eslint-disable-next-... | 2022-06-08T16:49:31 |
vercel/next.js | b4d7093f715cdc9a48ca44c63ae54f18aeb8269e | 0aa0ef676d3d74ee249957607eeddffb4258d04d | unify allowed origin detection handling (#77053)
This unifies the CSRF origin detection to mirror what we do for server
action origins, which supports things like wildcard matches (below the
domain level)
Fixes #76999 | [
{
"path": "docs/01-app/04-api-reference/05-config/01-next-config-js/allowedDevOrigins.mdx",
"patch": "@@ -11,7 +11,7 @@ To configure a Next.js application to allow requests from origins other than the\n \n ```js filename=\"next.config.js\"\n module.exports = {\n- allowedDevOrigins: ['local-origin.dev'],\n+... | 2025-03-12T22:50:16 |
rust-lang/rust | 998a5ac623d9879cfba667d6220a8f7d228845e8 | d87c468b4265021656909a576f4e2df1b5e4b13e | Remove code made redundant by method resolution rewrite
Its job is now done elsewhere, and it's also wrong (not accounting for autoderef) | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/expr.rs",
"patch": "@@ -1704,7 +1704,7 @@ impl<'db> InferenceContext<'_, 'db> {\n });\n match resolved {\n Ok((func, _is_visible)) => {\n- self.check_method_call(tgt_expr, &[... | 2026-01-09T13:55:45 |
electron/electron | c1075debf3049135894ad3d7a43022329180350c | 88ff3a6a9ac7e72d9460c5a27f332ec1089b3740 | chore: bump node to v16.8.0 (main) (#30714)
* chore: bump node in DEPS to v16.8.0
* build: add option to hide console window
https://github.com/nodejs/node/pull/39712
* chore: fixup patch indices
* stream: duplexify
https://github.com/nodejs/node/pull/39519
Co-authored-by: electron-roller[bot] <84116... | [
{
"path": "DEPS",
"patch": "@@ -17,7 +17,7 @@ vars = {\n 'chromium_version':\n '95.0.4612.5',\n 'node_version':\n- 'v16.7.0',\n+ 'v16.8.0',\n 'nan_version':\n # The following commit hash of NAN is v2.14.2 with *only* changes to the\n # test suite. This should be updated to a specific... | 2021-08-31T14:36:04 |
nodejs/node | bd614f3ce7c893ba32d8c5e0b37747d2fc4132c3 | 72540290a141c230a5a12d0563faa789e3657558 | doc: fix `DEP0176` number
PR-URL: https://github.com/nodejs/node/pull/49858
Refs: https://github.com/nodejs/node/pull/49683
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -3414,7 +3414,7 @@ Type: Documentation-only\n The [`util.toUSVString()`][] API is deprecated. Please use\n [`String.prototype.toWellFormed`][] instead.\n \n-### DEP0175: `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK`\n+### DEP0176: `fs.F_OK`, `fs.R_OK`, `fs.W_OK... | 2023-09-25T15:00:22 |
golang/go | ef3e1dae2f151ddca4ba50ed8b9a98381d7e9158 | 2b664d586c217b8111bfeeb26c82244199ebc150 | cmd/compile: optimize loong64 with register indexed load/store
goos: linux
goarch: loong64
pkg: test/bench/go1
cpu: Loongson-3A6000 @ 2500.00MHz
| bench.old | bench.new |
| sec/op | sec/op vs base |
BinaryTree17 ... | [
{
"path": "src/cmd/compile/internal/loong64/ssa.go",
"patch": "@@ -334,6 +334,46 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \t\tp.To.Type = obj.TYPE_REG\n \t\tp.To.Reg = v.Reg()\n+\tcase ssa.OpLOONG64MOVBloadidx,\n+\t\tssa.OpLOONG64MOVBUloadidx,\n+\t\tssa.OpLOONG64MOVHloadidx,\n+\t\tssa.... | 2024-09-26T06:17:17 |
facebook/react | b345523528f6b346c3a6de2145d5df6b2e23ca75 | 79f54c16dc3d5298e6037df75db2beb3552896e9 | [Fizz] Support abort reasons (#24680)
* [Fizz] Support abort reasons
Fizz supports aborting the render but does not currently accept a reason. The various render functions that use Fizz have some automatic and some user-controlled abort semantics that can be useful to communicate with the running program and users ... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -1106,7 +1106,13 @@ describe('ReactDOMFizzServer', () => {\n expect(Scheduler).toFlushAndYield([]);\n expectErrors(\n errors,\n- [['This Suspense boundary was aborted by the server.', expectedDigest]],\n... | 2022-06-08T05:36:09 |
vercel/next.js | d4cdaa175699528c4eb78bc6a608aff0906f87f2 | 11fe20c7ebacee8a0d1379d3f4347975cda1c480 | fix(CI): Correctly call test/update-bundler-manifest.js script (#77000)
https://vercel.slack.com/archives/C03EWR7LGEN/p1741730241830569
> seems the manifest updating action is broken
Tested by manually triggering jobs on this branch:
- Turbopack Job: https://github.com/vercel/next.js/actions/runs/13799253102
- Rspa... | [
{
"path": ".github/workflows/rspack-update-tests-manifest.yml",
"patch": "@@ -45,7 +45,7 @@ jobs:\n # We don't currently have any CI running on every PR, so it's quite\n # possible for us to regress on tests. We need to skip the\n # only-promote-to-passing merge logic.\n- ... | 2025-03-12T18:45:24 |
electron/electron | 8007d018749cd1038c755d86335e4fd89cd8f2ef | c2da4ec2bc44eacc96037b83725d44aeedcdc702 | feat: add support for the U2F Web API (#30438)
* feat: add support for the U2F Web API
* chore: fix lint
* chore: fix tests
* build: disable src caching
* Revert "build: disable src caching"
This reverts commit c4c8a60fc435a10788475ec171399a55ac2dd674.
* chore: update per feedback
* chore: consist... | [
{
"path": "electron_resources.grd",
"patch": "@@ -19,6 +19,7 @@\n <includes>\n <include name=\"IDR_CONTENT_SHELL_DEVTOOLS_DISCOVERY_PAGE\" file=\"${target_gen_dir}/shell_devtools_discovery_page.html\" use_base_dir=\"false\" type=\"BINDATA\" />\n <include name=\"IDR_PDF_MANIFEST\" file=\"../c... | 2021-08-30T18:22:46 |
golang/go | 2b664d586c217b8111bfeeb26c82244199ebc150 | f15195a063cf353b71d7f2a6da860f8f65221183 | time: correct time.AppendText's error message
"time.AppendText" returns error messages that start with the prefix
"time.MarshalText: " which seems confusion.
Now correct the message prefix to "time.AppendText: " and add a test
to prevent regression.
Change-Id: I5742c9c3ed802eb79c65d459910deae4f3652ffd
GitHub-Last-Re... | [
{
"path": "src/time/time.go",
"patch": "@@ -1584,24 +1584,28 @@ func (t *Time) UnmarshalJSON(data []byte) error {\n \treturn err\n }\n \n+func (t Time) appendTo(b []byte, errPrefix string) ([]byte, error) {\n+\tb, err := t.appendStrictRFC3339(b)\n+\tif err != nil {\n+\t\treturn nil, errors.New(errPrefix + e... | 2024-10-16T21:00:17 |
facebook/react | 79f54c16dc3d5298e6037df75db2beb3552896e9 | 7e8a020a4aa8a24e5f0c0ce06b25e485d2888f57 | Bugfix: Revealing a hidden update (#24685)
* Add `isHidden` to OffscreenInstance
We need to be able to read whether an offscreen tree is hidden from
an imperative event. We can store this on its OffscreenInstance.
We were already scheduling a commit effect whenever the visibility
changes, in order to toggle th... | [
{
"path": "packages/react-reconciler/src/ReactFiber.new.js",
"patch": "@@ -715,7 +715,9 @@ export function createFiberFromOffscreen(\n const fiber = createFiber(OffscreenComponent, pendingProps, key, mode);\n fiber.elementType = REACT_OFFSCREEN_TYPE;\n fiber.lanes = lanes;\n- const primaryChildInstan... | 2022-06-08T00:04:02 |
vercel/next.js | b91c7cecab114b98b5430bf296de6de2dedf9cb9 | 8941f8a135934aab74797f8639958b38a27f2839 | docs: add Pinterest Rich Pins metadata example (#77025)
In 75831c08e83abd120be3968ec32ee0e2a2c4d33d I added support for the
Pinterest rich pin meta tag, this change adds it to the
[generateMetadata](https://nextjs.org/docs/app/api-reference/functions/generate-metadata)
documentation.
- [x] Ran `pnpm prettier-fix` bef... | [
{
"path": "docs/01-app/04-api-reference/04-functions/generate-metadata.mdx",
"patch": "@@ -991,6 +991,22 @@ export const metadata = {\n <meta property=\"fb:admins\" content=\"87654321\" />\n ```\n \n+### `pinterest`\n+\n+You can enable or disable [Pinterest Rich Pins](https://developers.pinterest.com/docs/w... | 2025-03-12T12:11:30 |
nodejs/node | 77597d3aeaa83d03145f8d8e1db13f3508d75a9c | 448996cf95792a8db0c7a41e736e8aa03c440af6 | node-api: enable uncaught exceptions policy by default
This enables the option `--force-node-api-uncaught-exceptions-policy`
for a specific Node-API addon when it is compiled with
`NAPI_EXPERIMENTAL` (and this would be the default behavior when
`NAPI_VERSION` 10 releases). This would not break existing Node-API
addons... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -6249,6 +6249,13 @@ napi_create_threadsafe_function(napi_env env,\n [`napi_threadsafe_function_call_js`][] provides more details.\n * `[out] result`: The asynchronous thread-safe JavaScript function.\n \n+**Change History:**\n+\n+* Experimental (`NAPI_EXPERIMENTA... | 2023-09-25T04:23:58 |
electron/electron | aa9da78edb6200988b104914e09995115ee132ee | 352ac21413bc5e9842ef8eb7ed5e433ff8112628 | fix: remove ipc wrapper for nativeImage.createThumbnailFromPath (#30728) | [
{
"path": "lib/browser/rpc-server.ts",
"patch": "@@ -1,6 +1,6 @@\n import { app } from 'electron/main';\n import type { WebContents } from 'electron/main';\n-import { clipboard, nativeImage } from 'electron/common';\n+import { clipboard } from 'electron/common';\n import * as fs from 'fs';\n import { ipcMai... | 2021-08-27T21:21:36 |
facebook/react | bcbeb52bf36c6f5ecdad46a48e87cf4354c5a64f | 4f29ba1cc52061e439cede3813e100557b23a15c | [Fizz] Disallow complex children in <title> elements (#24679)
* [Fizz] Disallow complex children in <title> elements
<title> Elements in the DOM can only have Text content. In Fizz if more than one text node is emitted an HTML comment node is used as a text separator. Unfortunately because of the content restrictio... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -4425,4 +4425,195 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n });\n+\n+ describe('title children', () => {\n+ function prepareJSDOMForTitle() {\n+ // Test Environment\n+ const jsdom = n... | 2022-06-07T07:33:36 |
golang/go | c41b8cf1a39c972f461afe32da4fe43198eb2767 | 24cb743d1faa6c8f612faa3c17ac9de5cc385832 | strconv: display format options as list
Fixes #69890
Change-Id: I1da4eb76c008679a687f4faa4294fe32b5fc7f42
Reviewed-on: https://go-review.googlesource.com/c/go/+/620236
Auto-Submit: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by:... | [
{
"path": "src/strconv/ftoa.go",
"patch": "@@ -28,14 +28,14 @@ var float64info = floatInfo{52, 11, -1023}\n // value of bitSize bits (32 for float32, 64 for float64).\n //\n // The format fmt is one of\n-// 'b' (-ddddp±ddd, a binary exponent),\n-// 'e' (-d.dddde±dd, a decimal exponent),\n-// 'E' (-d.ddddE±d... | 2024-10-15T23:51:22 |
vercel/next.js | 8941f8a135934aab74797f8639958b38a27f2839 | 768183c5ddbaa94c1f6004816a1fae282fa0ab04 | [metadata] re-insert icons to head for streamed metadata (#76915)
### What
Re-insert the metadata icons under body tag into head tag to ensure they
can be proper displayed.
### Why
* For chromium based browsers (Chrome, Edge, etc.) and Safari, icons
need to stay under `<head>` to be picked up by the browser. Firefo... | [
{
"path": "packages/next/src/lib/metadata/generate/icons.tsx",
"patch": "@@ -1,7 +1,6 @@\n import type { ResolvedMetadata } from '../types/metadata-interface'\n import type { Icon, IconDescriptor } from '../types/metadata-types'\n \n-import React from 'react'\n import { MetaFilter } from './meta'\n \n funct... | 2025-03-12T11:18:32 |
nodejs/node | 5d6aa854d6dd051ac5eec6f1b9c8799ccb622a19 | c9e72e34abec1eb29fcaae3bf56fb4db76b532ec | fs: fix file descriptor validator
PR-URL: https://github.com/nodejs/node/pull/49752
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/fs.js",
"patch": "@@ -131,7 +131,7 @@ const {\n CHAR_BACKWARD_SLASH,\n } = require('internal/constants');\n const {\n- isUint32,\n+ isInt32,\n parseFileMode,\n validateBoolean,\n validateBuffer,\n@@ -201,7 +201,7 @@ function makeStatsCallback(cb) {\n };\n }\n \n-const isFd = isUin... | 2023-09-24T21:00:38 |
electron/electron | 00d65eb9ac44798ed4b7e9ed019f5ebde49b4df5 | a9983c1d06ec48377c1f6a52ab11056a17eaaace | fix: titlebar and buttons state under simple fullscreen (#30671) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1006,6 +1006,13 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n window.level = NSPopUpMenuWindowLevel;\n }\n \n+ // Always hide the titlebar in simple fullscreen mode.\n+ //\n+ // Note that we must remove the NSWindo... | 2021-08-25T23:29:34 |
facebook/react | 4f29ba1cc52061e439cede3813e100557b23a15c | 254b49e5897b4e493c88ecec5c80abeacda90526 | support errorInfo in onRecoverableError (#24591)
* extend onRecoverableError API to support errorInfo
errorInfo has been used in Error Boundaries wiht componentDidCatch for a while now. To date this metadata only contained a componentStack. onRecoverableError only receives an error (type mixed) argument and thus pr... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -90,46 +90,28 @@ describe('ReactDOMFizzServer', () => {\n });\n \n function expectErrors(errorsArr, toBeDevArr, toBeProdArr) {\n- const mappedErrows = errorsArr.map(error => {\n- if (error.componentStack) {\n- ... | 2022-06-06T21:23:32 |
golang/go | 24cb743d1faa6c8f612faa3c17ac9de5cc385832 | 70f4717e96cf9d8ca8a5f439d7d6487ec822ce49 | crypto/tls: include close notify in client tls test recordings
This commit fixes the issue where tls testdata recordings made with the
newer version of the prerecorded tls conversation test harness, doesn't
end up capturing the final close notify message. The fix simply ensures
that the tls.Client closes before the re... | [
{
"path": "src/crypto/tls/handshake_client_test.go",
"patch": "@@ -433,7 +433,7 @@ func (test *clientTest) run(t *testing.T, write bool) {\n \t}\n \n \tif write {\n-\t\tclientConn.Close()\n+\t\tclient.Close()\n \t\tpath := test.dataPath()\n \t\tout, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUN... | 2024-10-11T16:53:56 |
vercel/next.js | 3e5e6dbac05ed116dd671baf209de30f970d43a3 | 823484a7acbc8a24e4f3e378bbcc4764823f31e7 | Turbopack: Implement deploymentId (#76904)
Builds on #76814
Closes PACK-4071 (implementing config.deploymentId)
This uses the new `__turbopack_load_by_url__` to load chunks through
client references in react-dom-turbopack.
After this lands I'm going to send a PR to react-dom-turbopack to switch
the original source ... | [
{
"path": "Cargo.lock",
"patch": "@@ -4482,12 +4482,14 @@ dependencies = [\n \"futures\",\n \"indexmap 2.7.1\",\n \"indoc\",\n+ \"itertools 0.10.5\",\n \"lazy-regex\",\n \"lazy_static\",\n \"mime_guess\",\n \"modularize_imports\",\n \"next-custom-transforms\",\n \"once_cell\",\n+ \"percent-encoding... | 2025-03-11T21:55:11 |
nodejs/node | c9e72e34abec1eb29fcaae3bf56fb4db76b532ec | e2245dd39d9658a6d5ca787b4dd1f483e930b9c3 | test_runner: accept `testOnly` in `run`
PR-URL: https://github.com/nodejs/node/pull/49753
Fixes: https://github.com/nodejs/node/issues/49733
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Raz Luvaton <rluvaton@gmail.com> | [
{
"path": "doc/api/test.md",
"patch": "@@ -887,6 +887,8 @@ changes:\n number. If a nullish value is provided, each process gets its own port,\n incremented from the primary's `process.debugPort`.\n **Default:** `undefined`.\n+ * `only`: {boolean} If truthy, the test context will only run tests ... | 2023-09-24T10:46:13 |
facebook/react | 254b49e5897b4e493c88ecec5c80abeacda90526 | 1cd90d2ccc791f3ed25d93ceb7137746185f6e34 | Add snapshot testing on e2e test failure (#24672)
We have a currently unreproducible flaky e2e test. This PR captures snapshots on e2e test failures so we can better debug flaky e2e tests that don't fail locally. | [
{
"path": ".circleci/config.yml",
"patch": "@@ -291,6 +291,8 @@ jobs:\n - run:\n name: Cleanup build regression folder\n command: rm -r ./build-regression\n+ - store_artifacts:\n+ path: ./tmp/screenshots\n \n yarn_lint_build:\n docker: *docker",
"additions":... | 2022-06-06T17:36:58 |
electron/electron | 32194f0f71222d5e0de81fc99641c47a7ce98236 | e43a25724cdab6728bafa4b97c8341a3558eea0a | fix: crash when using TouchBarScrubber arrow button (#30661) | [
{
"path": "docs/api/touch-bar-scrubber.md",
"patch": "@@ -15,7 +15,7 @@ _This class is not exported from the `'electron'` module. It is only available a\n * `highlightedIndex` Integer - The index of the item the user touched.\n * `selectedStyle` String (optional) - Selected item style. Can be `backgro... | 2021-08-24T16:28:57 |
golang/go | 70f4717e96cf9d8ca8a5f439d7d6487ec822ce49 | cbdb3545ad7d15204ef15daf124393aefb7b2c3d | os: use relative paths in a test dir in TestOpenError
Refactor TestOpenError to use relative paths in test cases,
in preparation for extending it to test os.Root.
Use a test temporary directory instead of system directory
with presumed-known contents.
Move the testcase type and case definitions inline with the test.... | [
{
"path": "src/os/os_test.go",
"patch": "@@ -1777,35 +1777,36 @@ func TestSeekError(t *testing.T) {\n \t}\n }\n \n-type openErrorTest struct {\n-\tpath string\n-\tmode int\n-\terror error\n-}\n+func TestOpenError(t *testing.T) {\n+\tt.Parallel()\n+\n+\tdir := t.TempDir()\n+\tif err := WriteFile(filepath.J... | 2024-10-14T22:30:13 |
vercel/next.js | ad0d49fe28f44fa405642f91edeba68538ca666c | eb53f795530605c7d4dcb09a8bd33cd18b19edf0 | fix(next/image): use `100% 100%` for placeholder image background-size when object-fit `fill` is used instead of cover (#67482)
### What?
- Fixes #67478
### Why?
- When an objectFit property that cannot be used for backgroundSize is
applied, I experienced an issue where the placeholder's size behaved
unexpectedly.
... | [
{
"path": "packages/next/src/shared/lib/get-img-props.ts",
"patch": "@@ -7,7 +7,7 @@ import type {\n ImageLoaderPropsWithConfig,\n } from './image-config'\n \n-import type { JSX } from 'react'\n+import type { CSSProperties, JSX } from 'react'\n \n export interface StaticImageData {\n src: string\n@@ -80... | 2025-03-11T04:21:37 |
rust-lang/rust | e52695c3fca6f9b973c98103407d83d1c963cbdf | d87c468b4265021656909a576f4e2df1b5e4b13e | internal: Include private definitions in generated rustdoc
rust-analyzer has handy prebuilt `cargo doc` output at
https://rust-lang.github.io/rust-analyzer/ide/
However, it doesn't include private definitions, which makes it less
useful when trying to learn unfamiliar parts of the codebase.
Instead, pass `--document... | [
{
"path": "src/tools/rust-analyzer/.github/workflows/rustdoc.yaml",
"patch": "@@ -24,7 +24,7 @@ jobs:\n run: rustup update --no-self-update stable\n \n - name: Build Documentation\n- run: cargo doc --all --no-deps\n+ run: cargo doc --all --no-deps --document-private-items\n \n - name... | 2026-01-09T11:58:16 |
nodejs/node | da7962fd4dfcf83d0d671b0c295623740ed1981f | c0b4208fb9918523210ea23b577b8426fc85e434 | lib: fix `internalBinding` typings
PR-URL: https://github.com/nodejs/node/pull/49742
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "lib/internal/bootstrap/realm.js",
"patch": "@@ -174,9 +174,9 @@ const experimentalModuleList = new SafeSet();\n };\n }\n \n-// Set up internalBinding() in the closure.\n /**\n- * @type {InternalBinding}\n+ * Set up internalBinding() in the closure.\n+ * @type {import('typings/globals').internal... | 2023-09-23T10:48:34 |
facebook/react | 1cd90d2ccc791f3ed25d93ceb7137746185f6e34 | 4ddd8b455ce1dac02c56a18790d5068a7714c1a0 | Refactor of interleaved ("concurrent") update queue (#24663)
* Always push updates to interleaved queue first
Interleaves updates (updates that are scheduled while another render
is already is progress) go into a special queue that isn't applied until
the end of the current render. They are transferred to the "re... | [
{
"path": "packages/react-noop-renderer/src/createReactNoop.js",
"patch": "@@ -18,7 +18,7 @@ import type {\n Fiber,\n TransitionTracingCallbacks,\n } from 'react-reconciler/src/ReactInternalTypes';\n-import type {UpdateQueue} from 'react-reconciler/src/ReactUpdateQueue';\n+import type {UpdateQueue} from... | 2022-06-06T16:15:59 |
rust-lang/rust | e80fbd4bca604211f810fc207f33089730a3e9e1 | d87c468b4265021656909a576f4e2df1b5e4b13e | Fix lifetimes len diagnostics for fn pointers | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs",
"patch": "@@ -27,8 +27,8 @@ use hir_def::{\n resolver::{HasResolver, LifetimeNs, Resolver, TypeNs, ValueNs},\n signatures::{FunctionSignature, TraitFlags, TypeAliasFlags},\n type_ref::{\n- ConstRef, LifetimeRefId, PathId, Tra... | 2026-01-09T11:47:13 |
vercel/next.js | 13670aea5e88d4054d37d1b8828de8a0219c394a | dfd18f97adff9ba946419526094d37ede55b37ab | Turbopack panics: create discussions with pre-filled errors (#76850)
This:
- Prompts users to report turbopack internal errors as new GitHub
discussions instead of issues
- Encodes the error message and debug information into the discussion
title and body respectively
- Since these encoded urls can be lengthy, it uses... | [
{
"path": "Cargo.lock",
"patch": "@@ -4586,7 +4586,9 @@ dependencies = [\n \"rustc-hash 2.1.0\",\n \"serde\",\n \"serde_json\",\n+ \"supports-hyperlinks\",\n \"swc_core\",\n+ \"terminal_hyperlink\",\n \"tokio\",\n \"tracing\",\n \"tracing-chrome\",\n@@ -6959,6 +6961,12 @@ version = \"2.5.0\"\n source... | 2025-03-10T23:22:10 |
golang/go | cbdb3545ad7d15204ef15daf124393aefb7b2c3d | 5c1a68aedd09ba9992ca0b1c6d0a00d8e1ce8f8f | timer: fix Stop link in Timer.Reset doc comment
Change-Id: I0fccb18b2d5d3f7c86f026c988f90734546f7be0
GitHub-Last-Rev: a72cfe970e74dd3a9fffec9604ae58126514542c
GitHub-Pull-Request: golang/go#69856
Reviewed-on: https://go-review.googlesource.com/c/go/+/619056
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou... | [
{
"path": "src/time/sleep.go",
"patch": "@@ -165,8 +165,8 @@ func NewTimer(d Duration) *Timer {\n // to receive a time value corresponding to the previous timer settings;\n // if the program has not received from t.C already and the timer is\n // running, Reset is guaranteed to return true.\n-// Before Go 1... | 2024-10-14T20:30:20 |
electron/electron | 5513e66982d920594c491fd3eae4c0d33625c19f | 10c4931477b133832c5e8335eab09fba26030282 | chore: bump chromium to 95.0.4612.5 (main) (#30503)
* chore: bump chromium in DEPS to 94.0.4604.0
* build: 3-way merge of chromium patches
* chore: bump chromium in DEPS to 94.0.4605.0
* build: 3-way merge of chromium patches
* 3076040: Reland Remove delete_children RemoveAllChildViews arg
Ref: https://... | [
{
"path": "BUILD.gn",
"patch": "@@ -1149,6 +1149,7 @@ if (is_mac) {\n ]\n \n data = []\n+ data_deps = []\n \n data += [ \"$root_out_dir/resources.pak\" ]\n data += [ \"$root_out_dir/chrome_100_percent.pak\" ]\n@@ -1167,6 +1168,10 @@ if (is_mac) {\n public_deps = [ \"//tools/v8_conte... | 2021-08-24T00:52:17 |
nodejs/node | c0b4208fb9918523210ea23b577b8426fc85e434 | 914ad2f518a37d77ee54359cf650dd46e24d6958 | test: refactor test-readline-async-iterators into a benchmark
PR-URL: https://github.com/nodejs/node/pull/49237
Fixes: https://github.com/nodejs/node/issues/49224
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "benchmark/readline/readline-iterable.js",
"patch": "@@ -5,6 +5,7 @@ const { Readable } = require('stream');\n \n const bench = common.createBenchmark(main, {\n n: [1e1, 1e2, 1e3, 1e4, 1e5, 1e6],\n+ type: ['old', 'new'],\n });\n \n const loremIpsum = `Lorem ipsum dolor sit amet, consectetur adi... | 2023-09-23T08:17:14 |
facebook/react | 4ddd8b455ce1dac02c56a18790d5068a7714c1a0 | 652dcf6550f3586377e910cf41b4846eff374210 | Track revs that intentionally fork the reconciler (#24671)
* Track revs that intentionaly fork the reconciler
When we fork the the "old" and "new" reconciler implementations, it can
be difficult to keep track of which commits introduced the delta
in behavior. This makes bisecting difficult if one of the changes
... | [
{
"path": ".circleci/config.yml",
"patch": "@@ -425,11 +425,24 @@ jobs:\n - checkout\n - run: yarn workspaces info | head -n -1 > workspace_info.txt\n - *restore_node_modules\n+ - run:\n+ name: Fetch revisions that contain an intentional fork\n+ # This will fetch eac... | 2022-06-06T15:53:11 |
golang/go | 5c1a68aedd09ba9992ca0b1c6d0a00d8e1ce8f8f | 89f29a772a519cbf352513b55356291a94e15ada | internal/syscall/windows: fix handle leak in Mkdirat
Mkdirat does not close the handle returned by CreateFile, but it should.
Mkdirat has been introduced in this developer cycle, so it is not
necessary to backport this fix to any release branch.
Change-Id: Icddac5ccdc6a142a5be5392a39aba2ae7cc9c69a
Reviewed-on: https... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -164,5 +164,6 @@ func Mkdirat(dirfd syscall.Handle, name string, mode uint32) error {\n \tif err != nil {\n \t\treturn ntCreateFileError(err, 0)\n \t}\n+\tsyscall.CloseHandle(h)\n \treturn nil\n }",
"additions": 1,
"deletions": 0,
... | 2024-10-14T19:32:40 |
vercel/next.js | dfd18f97adff9ba946419526094d37ede55b37ab | 0ce9e53ef4826e7e8650adc14b2b4432c743acae | Telemetry: include alternate bundler state in key events (#76886)
This includes `isRspack` in the following telemetry events, determining
it with the presence of `process.env.NEXT_RSPACK`:
- `NEXT_CLI_SESSION_STARTED`
- `NEXT_CLI_SESSION_STOPPED`
- `NEXT_BUILD_OPTIMIZED`
Test Plan: Verify these are included with `NE... | [
{
"path": "packages/next/src/telemetry/events/build.ts",
"patch": "@@ -103,6 +103,7 @@ type EventBuildOptimized = {\n rewritesWithHasCount: number\n redirectsWithHasCount: number\n middlewareCount: number\n+ isRspack: boolean\n totalAppPagesCount?: number\n staticAppPagesCount?: number\n server... | 2025-03-10T23:21:56 |
facebook/react | 652dcf6550f3586377e910cf41b4846eff374210 | dfd6f96f7699adc005a1b0a011b7c8e7261345ce | Fix CI: Persist build artifacts to workspace
The download_build job needs to persist its artifacts to the workspace
so downstream jobs can access them.
Persist the same directories as the normal build job. | [
{
"path": ".circleci/config.yml",
"patch": "@@ -138,6 +138,10 @@ jobs:\n git fetch origin main\n cd ./scripts/release && yarn && cd ../../\n scripts/release/download-experimental-build.js --commit=<< parameters.revision >> --allowBrokenCI\n+ - persist_to_worksp... | 2022-06-06T15:33:22 |
nodejs/node | 914ad2f518a37d77ee54359cf650dd46e24d6958 | 645b788bea836a2121fd49b935ae204dee36a9c0 | deps: remove pthread-fixes.c from uv.gyp
The file was removed in the latest libuv upgrade. Remove it from the
build recipe as well.
Fixes: https://github.com/nodejs/node/issues/49739
PR-URL: https://github.com/nodejs/node/pull/49744
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Debadree Chatterjee <deba... | [
{
"path": "deps/uv/uv.gyp",
"patch": "@@ -136,7 +136,6 @@\n 'uv_sources_android': [\n 'src/unix/linux.c',\n 'src/unix/procfs-exepath.c',\n- 'src/unix/pthread-fixes.c',\n 'src/unix/random-getentropy.c',\n 'src/unix/random-getrandom.c',\n 'src/unix/random-sysctl-linux.c'... | 2023-09-23T07:56:24 |
vercel/next.js | 23681508ca34b66a6ef55965c5eac57de20eb67f | 91d94b1c1464c16e15cb646b800354264f09f002 | fix(turbo-persistence): Update qfilter to 0.2.3 to fix CapacityExceeded panic (#76921)
User report: https://vercel.slack.com/archives/C046HAU4H7F/p1741216793060779
Appears to be fixed by: https://github.com/arthurprs/qfilter/pull/8
```
Panic: panicked at turbopack/crates/turbo-persistence/src/static_sorted_file_build... | [
{
"path": "Cargo.lock",
"patch": "@@ -5554,9 +5554,9 @@ dependencies = [\n \n [[package]]\n name = \"qfilter\"\n-version = \"0.2.1\"\n+version = \"0.2.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"5b36883275f761fe4c69f0ba982d18b36208b72d647ad9d468afcad70fb08a4e\"\n+... | 2025-03-10T08:17:31 |
golang/go | db8c208cbd5e20c80c1587b0d9d4166d8238089d | b521ebb55a9b26c8824b219376c7f91f7cda6ec2 | cmd/cgo,cmd/go: preallocate slices if they have known fixed capacities
This allows for more efficient use of memory.
Change-Id: I16f399a25c23b804e55289ca055fa83ea9862f16
GitHub-Last-Rev: 19bb96a7cf4d27c085cfdb074905c4bf34eb660d
GitHub-Pull-Request: golang/go#69841
Reviewed-on: https://go-review.googlesource.com/c/go/... | [
{
"path": "src/cmd/cgo/ast.go",
"patch": "@@ -181,7 +181,7 @@ func (f *File) ParseGo(abspath string, src []byte) {\n // Like ast.CommentGroup's Text method but preserves\n // leading blank lines, so that line numbers line up.\n func commentText(g *ast.CommentGroup) string {\n-\tvar pieces []string\n+\tpiece... | 2024-10-11T03:22:00 |
electron/electron | fb990ba1eb5628820557f5d375fb3b5d827970e9 | 517b174c3cb38799e709b3bca1efd099e2031536 | chore: bump node to v16.7.0 (main) (#30350)
* chore: bump node in DEPS to v16.6.0
* chore: bump node in DEPS to v16.6.1
* crypto: fix generateKeyPair with encoding 'jwk'
https://github.com/nodejs/node/pull/39319
* build: add library_files to gyp variables
https://github.com/nodejs/node/pull/39293
* d... | [
{
"path": "DEPS",
"patch": "@@ -17,7 +17,7 @@ vars = {\n 'chromium_version':\n '94.0.4590.2',\n 'node_version':\n- 'v16.5.0',\n+ 'v16.7.0',\n 'nan_version':\n # The following commit hash of NAN is v2.14.2 with *only* changes to the\n # test suite. This should be updated to a specific... | 2021-08-20T17:25:50 |
facebook/react | dfd6f96f7699adc005a1b0a011b7c8e7261345ce | a621cb099dafb8bd77370ed4f4d832f049642183 | Fix CI: Remove copypasta from sizebot download job
This was copy pasted from the similar job that exists to download
base artifacts for sizebot. | [
{
"path": ".circleci/config.yml",
"patch": "@@ -138,10 +138,6 @@ jobs:\n git fetch origin main\n cd ./scripts/release && yarn && cd ../../\n scripts/release/download-experimental-build.js --commit=<< parameters.revision >> --allowBrokenCI\n- - persist_to_worksp... | 2022-06-06T15:29:37 |
nodejs/node | 017998971bffd8cb35f384de3a6da40290aafd61 | e329a11515c40e890920fc81f735edd4725b882e | test: deflake test-vm-contextified-script-leak
Similar to the test-vm-source-text-module-leak fix, use a snapshot
to force a thorough GC in order to prevent false positives.
PR-URL: https://github.com/nodejs/node/pull/49710
Refs: https://github.com/nodejs/reliability/issues/669
Reviewed-By: Franziska Hinkelmann <fran... | [
{
"path": "test/es-module/test-vm-contextified-script-leak.js",
"patch": "@@ -13,4 +13,4 @@ async function createContextifyScript() {\n async importModuleDynamically() {},\n });\n }\n-checkIfCollectable(createContextifyScript, 2048);\n+checkIfCollectable(createContextifyScript, 2048, 512);",
"addi... | 2023-09-23T03:46:22 |
golang/go | 1c6288f7e1005a1217859c20e4892a9f2cfd8091 | fa7343aca326aad061ab877c1a4cebb96c4355c1 | cmd/go: add file names for cyclic import error
The PR is to add more details for the error, so that it would be easier to troubleshoot the cyclic imports error.
The change for the error looks like the following:
package cyclic-import-example
imports cyclic-import-example/packageA from /Users/personal/cyclic-... | [
{
"path": "src/cmd/go/internal/list/list.go",
"patch": "@@ -967,7 +967,7 @@ func collectDepsErrors(p *load.Package) {\n \t\t\treturn false\n \t\t}\n \t\tpathi, pathj := stki[len(stki)-1], stkj[len(stkj)-1]\n-\t\treturn pathi < pathj\n+\t\treturn pathi.Pkg < pathj.Pkg\n \t})\n }\n ",
"additions": 1,
... | 2024-10-11T03:58:57 |
electron/electron | c83de755c1fc83abd7a4832da86b4020f3dd6aa3 | aab5ea5f9d14f8282b52e4b59bc3fec77649ee89 | Revert "fix: DCHECK on reload when forcefullyCrashRenderer() is called (#30544)" (#30646)
This reverts commit 90b5ba3bed497044339f57586ef4acdbd5b0f8ce. | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -951,9 +951,9 @@ void ElectronBrowserClient::RenderProcessReady(\n void ElectronBrowserClient::RenderProcessExited(\n content::RenderProcessHost* host,\n const content::ChildProcessTerminationInfo& info) {\n- if (delegate_)\n+ if (... | 2021-08-19T19:07:48 |
vercel/next.js | 91d94b1c1464c16e15cb646b800354264f09f002 | 38cf78e31efd81cd0fe64c9b3dfaf5290ba60012 | fix(turbopack): Fix the span of a magic comment (#76939)
### What?
Fix the span of the turbopack tree shaking magic comment.
### Why?
Previously it was printed on strange position.
### How?
Closes NAR-91
Closes PACK-4087 | [
{
"path": "crates/next-custom-transforms/src/transforms/server_actions.rs",
"patch": "@@ -438,19 +438,15 @@ impl<C: Comments> ServerActions<C> {\n .push((action_name.clone(), action_id.clone()));\n \n let register_action_expr = bind_args_to_ref_expr(\n- annotate_ident_as_serve... | 2025-03-10T08:10:00 |
facebook/react | a621cb099dafb8bd77370ed4f4d832f049642183 | a97a0810eae4428dd55dc1fa1b94ee1f9c18715b | Fix CI: Download to build instead of base-build (#24677)
Fixes a mistake in #24676. The get_base_build job downloads artifacts to
`base-build` instead of `build`, so that sizebot can compare the two
directories. For most other jobs, though, we want it to produce the
same output as the normal build job. | [
{
"path": ".circleci/config.yml",
"patch": "@@ -122,7 +122,28 @@ jobs:\n paths:\n - build\n \n- get_base_build:\n+ download_build:\n+ docker: *docker\n+ environment: *environment\n+ parameters:\n+ revision:\n+ type: string\n+ steps:\n+ - checkout\n+ ... | 2022-06-06T14:38:02 |
nodejs/node | 8b45c5d26a829bcd3280401dbc1874bcd1302289 | c2cd74453e7d2794ad81cab63e68371e08bad04f | src: improve error message when ICU data cannot be initialized
Previously when we fail to initialize ICU data, the error message is
```
could not initialize ICU (check NODE_ICU_DATA or --icu-data-dir
parameters)
```
This patch updates it to something similar to:
```
U_FILE_ACCESS_ERROR: Could not initialize ICU. Ch... | [
{
"path": "src/node.cc",
"patch": "@@ -916,9 +916,14 @@ static ExitCode InitializeNodeWithArgsInternal(\n \n // Initialize ICU.\n // If icu_data_dir is empty here, it will load the 'minimal' data.\n- if (!i18n::InitializeICUDirectory(per_process::cli_options->icu_data_dir)) {\n- errors->push... | 2023-09-15T12:55:17 |
golang/go | fa7343aca326aad061ab877c1a4cebb96c4355c1 | 1041c2cf019188954a4c2621f44270505968c291 | runtime: reduce syscall.SyscallX stack usage
syscall.SyscallX consumes a lot of stack space, which is a problem
because they are nosplit functions. They used to use less stack space,
but CL 563315, that landed in Go 1.23, increased the stack usage by a
lot.
This CL reduces the stack usage back to the previous level.
... | [
{
"path": "src/runtime/syscall_windows.go",
"patch": "@@ -454,43 +454,37 @@ func syscall_getprocaddress(handle uintptr, procname *byte) (outhandle, err uint\n //go:linkname syscall_Syscall syscall.Syscall\n //go:nosplit\n func syscall_Syscall(fn, nargs, a1, a2, a3 uintptr) (r1, r2, err uintptr) {\n-\targs :... | 2024-10-08T16:10:17 |
electron/electron | cb7c16cb2d53b20248411db5f7e77d6c1e4180b3 | 11de995d381c3dc58cc6736f4fe0f7cd4ff42ae9 | fix: WebFrameMain mojo pipe not reset (#30629) | [
{
"path": "shell/browser/api/electron_api_web_frame_main.cc",
"patch": "@@ -102,6 +102,7 @@ void WebFrameMain::UpdateRenderFrameHost(content::RenderFrameHost* rfh) {\n // Should only be called when swapping frames.\n DCHECK(render_frame_);\n render_frame_ = rfh;\n+ renderer_api_.reset();\n }\n \n boo... | 2021-08-19T06:10:11 |
vercel/next.js | 1fc525cb441c26c4633025f086c1098bff8532f6 | 372d02d588d055dbba388f08de7a7dd37e44a7f4 | docs: fix create-next-app cli title (#76908) | [
{
"path": "docs/02-pages/03-api-reference/05-cli/create-next-app.mdx",
"patch": "@@ -1,5 +1,5 @@\n ---\n-title: CLI\n+title: create-next-app CLI\n description: Create Next.js apps using one command with the create-next-app CLI.\n source: app/api-reference/cli/create-next-app\n ---",
"additions": 1,
... | 2025-03-09T19:41:10 |
facebook/react | 7a5b8227c7d67aefe62f015cf0e961e28075d897 | d300cebde2a63e742ccb8b6aa7b0f61db1ae29b4 | Allow aritfacts download even if CI is broken (#24666)
* Allow aritfacts download even if CI is broken
Adds an option to the download script to disable the CI check and
continue downloading the artifacts even if CI is broken.
I often rely on this to debug broken build artifacts. I was thinking
the sizebot shou... | [
{
"path": ".circleci/config.yml",
"patch": "@@ -134,7 +134,7 @@ jobs:\n command: |\n git fetch origin main\n cd ./scripts/release && yarn && cd ../../\n- scripts/release/download-experimental-build.js --commit=$(git merge-base HEAD origin/main)\n+ ... | 2022-06-03T01:55:35 |
nodejs/node | 23a3410f9fecf2c8652eef4f92b4072edf307137 | 9718a9465c9f857e0fd4c6d998f94aa8b9d1f38d | lib: allow byob reader for 'blob.stream()'
Fixes: https://github.com/nodejs/node/issues/47993
PR-URL: https://github.com/nodejs/node/pull/49713
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "lib/internal/blob.js",
"patch": "@@ -320,6 +320,7 @@ class Blob {\n \n const reader = this[kHandle].getReader();\n return new lazyReadableStream({\n+ type: 'bytes',\n start(c) {\n // There really should only be one read at a time so using an\n // array here is p... | 2023-09-22T06:16:46 |
golang/go | 1041c2cf019188954a4c2621f44270505968c291 | d20a4c2403edf07f05eb024e3af568782303ce97 | cmd/go: make sure the linker for shared doesn't include tempdir path
This is similar to CL 478196 and CL 477296,
but this is for -buildmode=shared.
When using "go install -buildmode=shared std",
because the gold linker is used by default on Linux arm64,
it will cause temporary paths to be included in libstd.so.
Base... | [
{
"path": "src/cmd/go/internal/work/gc.go",
"patch": "@@ -714,7 +714,21 @@ func (gcToolchain) ldShared(b *Builder, root *Action, toplevelactions []*Action,\n \t\t}\n \t\tldflags = append(ldflags, d.Package.ImportPath+\"=\"+d.Target)\n \t}\n-\treturn b.Shell(root).run(\".\", targetPath, nil, cfg.BuildToolexe... | 2024-09-26T16:42:21 |
electron/electron | 11de995d381c3dc58cc6736f4fe0f7cd4ff42ae9 | ea889b423db66f1899a9cd79f25d423cc5d87ebe | docs: typo in launch-app-from-url-in-another-app.md (#30566)
* Typo in launch-app-from-url-in-another-app.md
Code snippet for the info.plist example had html formatting. Removed.
* Fix paddings
Co-authored-by: Cheng Zhao <github@zcbenz.com> | [
{
"path": "docs/tutorial/launch-app-from-url-in-another-app.md",
"patch": "@@ -127,31 +127,25 @@ can add the flag `--extend-info` with a path to the `plist` you've created. The\n ### Plist\n \n ```XML\n- <p>\n- <h5>macOS plist</h5>\n- <pre><code>\n- <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n- ... | 2021-08-19T01:38:30 |
facebook/react | b1858b110d2888034355ee6dd9c0b581feabbed3 | dd4950c90e65a6c53870fd61d2aea67bce7d6713 | [DevTools] devtools-test-shell Regression App fixes (#24644)
Made a couple of fixes to the `devtools-test-shell`
* test selectors aren't available in > React v18.0 either, so we'll need to mock the test selector functions there as well
* `react-dom/client` should map to `react-dom/client` and not `react-dom` | [
{
"path": "packages/react-devtools-shell/src/e2e-regression/app.js",
"patch": "@@ -22,4 +22,10 @@ function mountTestApp() {\n mountTestApp();\n \n // ReactDOM Test Selector APIs used by Playwright e2e tests\n-window.parent.REACT_DOM_APP = ReactDOM;\n+// If they don't exist, we mock them\n+window.parent.REAC... | 2022-05-31T23:13:41 |
nodejs/node | 9718a9465c9f857e0fd4c6d998f94aa8b9d1f38d | 853f57239c5baa06c55a40ab8993258e16c6f1d6 | meta: fix linter error
PR-URL: https://github.com/nodejs/node/pull/49755
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "doc/contributing/strategic-initiatives.md",
"patch": "@@ -6,17 +6,17 @@ agenda to ensure they are active and have the support they need.\n \n ## Current initiatives\n \n-| Initiative | Champion | Links |\n-| ----------... | 2023-09-21T23:53:49 |
golang/go | 9cc737d482582cca5ba44b2320fb4e48edee9cd6 | a9abbac4c86eb685661f2909d3f5ae59ab507773 | syscall: fix Open param names
syscall.Open param names are confusing, mainly because what should be
named flag is named mode and what should be named mode is named perm.
The name perm is used as synonym for mode in other places, so keep
it as is. Rename mode to flag to match the real meaning of the
parameter. Also, r... | [
{
"path": "src/syscall/syscall_windows.go",
"patch": "@@ -341,33 +341,33 @@ func makeInheritSa() *SecurityAttributes {\n \treturn &sa\n }\n \n-func Open(path string, mode int, perm uint32) (fd Handle, err error) {\n-\tif len(path) == 0 {\n+func Open(name string, flag int, perm uint32) (fd Handle, err error)... | 2024-10-10T09:09:13 |
facebook/react | dd4950c90e65a6c53870fd61d2aea67bce7d6713 | 26a5b3c7f781e93b5bcf4e5a7a6f13233409475d | [Flight] Implement useId hook (#24172)
* Implements useId hook for Flight server.
The approach for ids for Flight is different from Fizz/Client where there is a need for determinancy. Flight rendered elements will not be rendered on the client and as such the ids generated in a request only need to be unique. Howev... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -512,6 +512,99 @@ describe('ReactFlight', () => {\n );\n });\n \n+ describe('Hooks', () => {\n+ function DivWithId({children}) {\n+ const id = React.useId();\n+ return <div prop={id}>{children}</div>;\n+ ... | 2022-05-31T21:53:32 |
electron/electron | cbeae20438be8baf03ce0e32a73563a80aeccb37 | 8699124397bfb4e5799384d7c0008d3b20e0ef95 | fix: change gin_wrappable to scoped crash key (#30578) | [
{
"path": "patches/chromium/add_gin_wrappable_crash_key.patch",
"patch": "@@ -15,28 +15,32 @@ This patch should not be upstreamed, and can be removed in Electron 15 and\n beyond once we identify the cause of the crash.\n \n diff --git a/gin/wrappable.cc b/gin/wrappable.cc\n-index fe07eb94a8e679859bba6d76ff0... | 2021-08-18T20:51:40 |
nodejs/node | 853f57239c5baa06c55a40ab8993258e16c6f1d6 | 85172c322f5b99cc2150fcc15eacb9d9cb4215cf | test: migrate message error tests from Python to JS
Migrate the remaining error tests in the `test/message` folder
from Python to JS.
Fixes: https://github.com/nodejs/node/issues/47707
PR-URL: https://github.com/nodejs/node/pull/49721
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi Atlow <chemi@atlow.... | [
{
"path": "test/fixtures/errors/core_line_numbers.js",
"patch": "@@ -1,5 +1,5 @@\n 'use strict';\n-require('../common');\n+require('../../common');\n Error.stackTraceLimit = 3;\n \n const punycode = require('punycode');",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
},
{
"pat... | 2023-09-21T22:14:34 |
facebook/react | 26a5b3c7f781e93b5bcf4e5a7a6f13233409475d | 25837acfee5f5305d49fe19649e010dbf4f887a2 | Explicitly set `highWaterMark` to 0 for `ReadableStream` (#24641)
* Explicitly set highWaterMark to 0 for ReadableStreams
This is because not all streaming implementations respect the
default behavior of settings highWaterMark to 0 for byte streams.
Being explicit guarantees the intended behavior across runtimes.... | [
{
"path": "packages/react-dom/src/server/ReactDOMFizzServerBrowser.js",
"patch": "@@ -53,15 +53,19 @@ function renderToReadableStream(\n });\n \n function onShellReady() {\n- const stream: ReactDOMServerReadableStream = (new ReadableStream({\n- type: 'bytes',\n- pull(controller) {... | 2022-05-31T20:20:36 |
golang/go | 39fbc4c29a95510a1c62b6b57723aef496cdfbbc | 0a1c6e3076c4e7dd74b74c594e953e498c272ba1 | syscall,os: move flags validation from os.OpenFile to syscall.Open
syscall.Open is the functions that maps Unix/Go flags into Windows
concepts. Part of the flag validation logic was still implemented
in os.OpenFile, move it to syscall.Open for consistency.
A nice side effect is that we don't have to translate the fil... | [
{
"path": "src/os/file_windows.go",
"patch": "@@ -103,20 +103,9 @@ func openFileNolog(name string, flag int, perm FileMode) (*File, error) {\n \t\treturn nil, &PathError{Op: \"open\", Path: name, Err: syscall.ENOENT}\n \t}\n \tpath := fixLongPath(name)\n-\tr, e := syscall.Open(path, flag|syscall.O_CLOEXEC, ... | 2024-10-10T09:01:16 |
electron/electron | ec13a0b0e61d6c4efc3232821a733e7f438c6f1c | e92d92d7eb585bb235077b733ec6c49f83d7a976 | fix: documentEdited with non-default titlebarStyle (#30565) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1117,6 +1117,8 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n \n void NativeWindowMac::SetDocumentEdited(bool edited) {\n [window_ setDocumentEdited:edited];\n+ if (buttons_proxy_)\n+ [buttons_proxy_ redraw];\n }\n \n bool Nativ... | 2021-08-18T19:09:57 |
vercel/next.js | cfb4ac515c6586acc00dccc9a6ed71998a29b8a9 | 56a6c86480693627632558452a76a90bc8d7413f | fix: prevent incorrect searchParams being applied on certain navs (#76914)
When the router returns an aliased prefetch for URLs to the same path
but with different search params, there's the possibility that we
trigger an MPA-style navigation if the path doesn't contain a valid
flight payload (eg: a route handler, a `... | [
{
"path": "packages/next/src/client/components/router-reducer/aliased-prefetch-navigations.ts",
"patch": "@@ -25,7 +25,7 @@ import type { Mutable, ReadonlyReducerState } from './router-reducer-types'\n */\n export function handleAliasedPrefetchEntry(\n state: ReadonlyReducerState,\n- flightData: Normali... | 2025-03-07T22:46:54 |
facebook/react | be1fd48e96a617f3758d179ebfb0386a382af942 | 0b545551e6dea328797e64eed6a9677bf4051eae | [DevTools] mock requestAnimationFrame with setTimeout as a temporary fix for #24626 (#24633)
* mock requestAnimationFrame as a temp workaround for #24626
* give name to constant variable | [
{
"path": "packages/react-devtools-extensions/src/main.js",
"patch": "@@ -30,6 +30,23 @@ const LOCAL_STORAGE_SUPPORTS_PROFILING_KEY =\n const isChrome = getBrowserName() === 'Chrome';\n const isEdge = getBrowserName() === 'Edge';\n \n+// since Chromium v102, requestAnimationFrame no longer fires in devtools... | 2022-05-31T19:32:21 |
nodejs/node | a4c7f81241c74eafc07e5537d56b7ed299cd9441 | 2e4e1e1a76931d78e2a93362610c62d1368d748b | test_runner: catch reporter errors
PR-URL: https://github.com/nodejs/node/pull/49646
Fixes: https://github.com/nodejs/node/issues/48937
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "lib/internal/test_runner/harness.js",
"patch": "@@ -21,12 +21,15 @@ const { kEmptyObject } = require('internal/util');\n const { kCancelledByParent, Test, Suite } = require('internal/test_runner/test');\n const {\n parseCommandLine,\n+ reporterScope,\n setupTestReporters,\n } = require('inte... | 2023-09-21T06:17:23 |
golang/go | 7634f0755c98f25228e3904ed760089c3b199c5d | 93166e29d3c6d9fc7e7ee352b1b6f5ca31425a4f | os: handle umask comparing execute mode in verifyCopyFS
Fixes #69788
Change-Id: I43cc4c0dc3c8aa2474cba26c84714d00828de08e
Reviewed-on: https://go-review.googlesource.com/c/go/+/619176
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Ian Lance Taylor <iant@goo... | [
{
"path": "src/os/os_test.go",
"patch": "@@ -3383,6 +3383,7 @@ func verifyCopyFS(t *testing.T, originFS, copiedFS fs.FS) error {\n \tif err != nil {\n \t\treturn fmt.Errorf(\"stat file %q failed: %v\", f.Name(), err)\n \t}\n+\twantFileRWMode := wantFileRWStat.Mode()\n \n \treturn fs.WalkDir(originFS, \".\",... | 2024-10-09T21:32:21 |
electron/electron | dd16d68e968c0499e6a4375bfbf81240219abd0f | 90b5ba3bed497044339f57586ef4acdbd5b0f8ce | fix: cross-origin navigation disposing WebFrameMain instances (#30076) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1384,14 +1384,56 @@ void WebContents::HandleNewRenderFrame(\n if (rwh_impl)\n rwh_impl->disable_hidden_ = !background_throttling_;\n \n- WebFrameMain::RenderFrameCreated(render_frame_host);\n+ auto* web_frame = WebFrameMain::F... | 2021-08-18T18:23:41 |
vercel/next.js | 56a6c86480693627632558452a76a90bc8d7413f | f70760719aa5b73b760e27035c617a242a091ac3 | Turbopack: ensure default layout is provided in default not-found entrypoint (#76912)
When Turbopack creates the default not-found entry, it does so without
providing a default root layout in case one is missing. This works ok in
Webpack since the `default-layout` is correctly added in
[next-app-loader](https://github... | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -1245,6 +1245,43 @@ async fn directory_tree_to_entrypoints_internal_untraced(\n );\n }\n \n+ let mut modules = directory_tree.modules.clone();\n+\n+ // fill in the default modules for the not-found entrypoint\n... | 2025-03-07T21:27:17 |
rust-lang/rust | 697e9e2aacecaa6a610ab310b9af54a732903d21 | 7c3cc4f3ef6d936a11f19857984b06baa1a04d10 | Further Clippy fixes for Tup/Literal ConstArgKind | [
{
"path": "clippy_utils/src/consts.rs",
"patch": "@@ -1142,6 +1142,7 @@ pub fn const_item_rhs_to_expr<'tcx>(tcx: TyCtxt<'tcx>, ct_rhs: ConstItemRhs<'tcx\n ConstArgKind::Anon(anon) => Some(tcx.hir_body(anon.body).value),\n ConstArgKind::Struct(..)\n | ConstArgKind::Tup(..)... | 2026-01-09T10:59:23 |
facebook/react | aec575914a0fd76c9db8998ea62c3ee975de70d7 | a2766387efe68b318b23d8c35c70b850d1e6a250 | [Fizz] Send errors down to client (#24551)
* use return from onError
* export getSuspenseInstanceFallbackError
* stringToChunk
* return string from onError in downstream type signatures
* 1 more type
* support encoding errors in html stream and escape user input
This commit adds another way to get er... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -89,6 +89,48 @@ describe('ReactDOMFizzServer', () => {\n });\n });\n \n+ function expectErrors(errorsArr, toBeDevArr, toBeProdArr) {\n+ const mappedErrows = errorsArr.map(error => {\n+ if (error.componentSta... | 2022-05-30T06:07:10 |
nodejs/node | 571ecbf9927ca7b53c5381ea386afef0954edb00 | b7d836e2c7f5725884d75c8a8564fada3d0dd69b | fs: improve error performance of `opendirSync`
PR-URL: https://github.com/nodejs/node/pull/49705
Refs: https://github.com/nodejs/performance/issues/106
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "benchmark/fs/bench-opendirSync.js",
"patch": "@@ -0,0 +1,43 @@\n+'use strict';\n+\n+const common = require('../common');\n+const fs = require('fs');\n+const path = require('path');\n+const tmpdir = require('../../test/common/tmpdir');\n+tmpdir.refresh();\n+\n+const testFiles = fs.readdirSync('tes... | 2023-09-21T17:04:13 |
golang/go | 5428570af7f668c840569a596cb1c23644f408cf | 935bf1395c47088d3455722452b28f18084f1450 | cmd/compile: use call block instead of entry block for tail call expansion
The expand-calls pass assumed that tail calls were always done in the
entry block. That used to be true, but with tail calls in wrappers
(enabled by CL 578235) and libfuzzer instrumentation, that is no
longer the case. Libfuzzer instrumentation... | [
{
"path": "src/cmd/compile/internal/ssa/expand_calls.go",
"patch": "@@ -286,7 +286,7 @@ func (x *expandState) rewriteCallArgs(v *Value, firstArg int) {\n \tif v.Op == OpTailLECall {\n \t\t// For tail call, we unwind the frame before the call so we'll use the caller's\n \t\t// SP.\n-\t\tsp = x.f.Entry.NewVal... | 2024-10-09T16:36:41 |
electron/electron | 90b5ba3bed497044339f57586ef4acdbd5b0f8ce | 29749f3dc614beaabdf3c91eaa8e4313f0439426 | fix: DCHECK on reload when forcefullyCrashRenderer() is called (#30544) | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -951,9 +951,9 @@ void ElectronBrowserClient::RenderProcessReady(\n void ElectronBrowserClient::RenderProcessExited(\n content::RenderProcessHost* host,\n const content::ChildProcessTerminationInfo& info) {\n- if (delegate_) {\n+ if... | 2021-08-18T18:23:06 |
rust-lang/rust | 330358a197e1a6df060a19ccb3b69f29006ba395 | d28379895b67641408adad95dc69d1e45f1a8a1b | Further Clippy fixes for Tup/Literal ConstArgKind | [
{
"path": "src/tools/clippy/clippy_utils/src/consts.rs",
"patch": "@@ -1142,6 +1142,7 @@ pub fn const_item_rhs_to_expr<'tcx>(tcx: TyCtxt<'tcx>, ct_rhs: ConstItemRhs<'tcx\n ConstArgKind::Anon(anon) => Some(tcx.hir_body(anon.body).value),\n ConstArgKind::Struct(..)\n | Cons... | 2026-01-09T10:59:23 |
vercel/next.js | f70760719aa5b73b760e27035c617a242a091ac3 | 4518bc91641a0fd938664b781e12ae7c145f3396 | fix(turbopack): Use vergen-gitcl instead of shadow-rs (or vergen-git2) for napi and next-api crates to fix stale git lock files (#76889)
This does not depend on libgit2 which apparently breaks our builds on
some platforms. Instead it uses the git CLI using my PR:
https://github.com/rustyhorde/vergen/pull/406
Original... | [
{
"path": "Cargo.lock",
"patch": "@@ -868,7 +868,7 @@ dependencies = [\n \"nom\",\n \"serde\",\n \"serde_json\",\n- \"thiserror\",\n+ \"thiserror 1.0.69\",\n ]\n \n [[package]]\n@@ -1018,7 +1018,21 @@ dependencies = [\n \"semver 1.0.23\",\n \"serde\",\n \"serde_json\",\n- \"thiserror\",\n+ \"thiserror... | 2025-03-07T21:24:35 |
facebook/react | f7860538a6e48e61be34f4ba1dfb3f2713820742 | 1bed20731fa2789c46d7bff89cd44c3ea9d51abf | Fix typo in useSyncExternalStore main entry point error (#24631) | [
{
"path": "packages/use-sync-external-store/src/useSyncExternalStore.js",
"patch": "@@ -22,7 +22,7 @@ if (__DEV__) {\n 'it only works with React 18+.' +\n '\\n\\n' +\n 'If you wish to support React 16 and 17, import from ' +\n- \"'use-sync-external-store/shim' instead. It will fall ba... | 2022-05-27T21:16:51 |
nodejs/node | f7414a8b8eadd9c7cfb237b38ebecfd9784595f0 | 485882632b7312904c5216f4dd1e26433126ac7c | repl: don't accumulate excess indentation in .load
When using .load the REPL would accumulate indentation with each line
including the indentation from all previous lines. Now it keeps the
indentation at the correct level.
Fixes: https://github.com/nodejs/node/issues/47673
PR-URL: https://github.com/nodejs/node/pull/... | [
{
"path": "lib/repl.js",
"patch": "@@ -204,6 +204,7 @@ const domainSet = new SafeWeakSet();\n \n const kBufferedCommandSymbol = Symbol('bufferedCommand');\n const kContextId = Symbol('contextId');\n+const kLoadingSymbol = Symbol('loading');\n \n let addedNewListener = false;\n \n@@ -882,7 +883,7 @@ function... | 2023-09-21T13:37:41 |
golang/go | 935bf1395c47088d3455722452b28f18084f1450 | 18131ec8dc0db3992509f08649ae34063f00823a | cmd/go: place GOROOT/bin at the beginning of PATH in 'go run'
This causes programs that use 'go' as a subprocess to use the same go
command as the parent 'go run' command.
Fixes #68005
Change-Id: I937cef474bf038a925bb74fc73e5f377b03e27b7
GitHub-Last-Rev: 9986537cadb0921763cc1496a63e3806b4aac1ac
GitHub-Pull-Request: ... | [
{
"path": "src/cmd/go/internal/base/base.go",
"patch": "@@ -14,6 +14,7 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"reflect\"\n+\t\"slices\"\n \t\"strings\"\n \t\"sync\"\n \n@@ -211,7 +212,9 @@ func RunStdin(cmdline []string) {\n \tcmd.Stdin = os.Stdin\n \tcmd.Stdout = os.Stdout\n \tcmd.Stderr = os.Stderr\n... | 2024-06-27T23:59:38 |
rust-lang/rust | 025ac8f512f8c90e4ba02d69e98851e7a4bdb999 | 3fda0e426ca17b0baa0d6e765a0d23f487350573 | The aarch64-unknown-none target requires NEON, so the docs were wrong. | [
{
"path": "src/doc/rustc/src/platform-support/aarch64-unknown-none.md",
"patch": "@@ -29,14 +29,15 @@ You may prefer the `-softfloat` target when writing a kernel or interfacing with\n pre-compiled binaries that use the soft-float ABI.\n \n When using the hardfloat targets, the minimum floating-point featur... | 2026-01-09T08:37:01 |
electron/electron | b62bbfda4e5997aa7ada345e8e32120face43ff7 | db8644ee7a7e6e80802508a13ee06c6f20ee1a1c | fix: ensure web_contents() is alive before grabbing view (#30571) | [
{
"path": "shell/browser/api/electron_api_browser_window_views.cc",
"patch": "@@ -17,7 +17,7 @@ void BrowserWindow::UpdateDraggableRegions(\n if (window_->has_frame())\n return;\n \n- if (&draggable_regions_ != ®ions) {\n+ if (&draggable_regions_ != ®ions && web_contents()) {\n auto* view ... | 2021-08-17T21:00:49 |
facebook/react | 1328ff70cd69f02e48ec5505a1f93501b2bcaef4 | 05c34dea91eced40d08cd72432087c1e26a4f59c | [DevTools] Regression-proof e2e Tests (#24620)
This PR:
* Increases test retry count to 2 so that flaky tests have more of a chance to pass
* Ideally most e2e tests will run for all React versions (and ensure DevTools elegantly fails if React doesn't support its features). However, some features aren't supported i... | [
{
"path": "packages/react-devtools-inline/__tests__/__e2e__/components.test.js",
"patch": "@@ -2,18 +2,20 @@\n \n 'use strict';\n \n+const {runOnlyForReactRange} = require('./utils');\n const listAppUtils = require('./list-app-utils');\n const devToolsUtils = require('./devtools-utils');\n const {test, expe... | 2022-05-26T00:53:44 |
vercel/next.js | 7d62789c36b8bcd8fd55fb2c476da8921282c6c0 | 24c480e33bea4565630be1860a5ba71d08981b28 | Turbopack: fix `__dirname` (#76902)
`__dirname` was always `undefined` due to a typo.
This was a regression from https://github.com/vercel/next.js/pull/75358, the PR restores the behavior of 15.1.7
Closes #76497
Closes PACK-4060 | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/chunk/item.rs",
"patch": "@@ -90,7 +90,7 @@ impl EcmascriptChunkItemContent {\n let mut args = vec![\n \"g: global\",\n // HACK\n- \"d: __dirname\",\n+ \"__dirname\",\n ];\n if self.opt... | 2025-03-07T14:24:12 |
nodejs/node | b64f620a19850e54adc78c967dd5c3649ba98c40 | fd1406320d2ea43acead15af798655933a068a94 | doc: fix history comments
PR-URL: https://github.com/nodejs/node/pull/49701
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -773,19 +773,17 @@ STDERR/STDOUT, and the data's length is longer than the `maxBuffer` option.\n \n ### `ERR_CLOSED_MESSAGE_PORT`\n \n-<!--\n-added:\n- - v16.2.0\n- - v14.17.1\n+<!-- YAML\n+added: v10.5.0\n changes:\n- - version: 11.12.0\n- pr-url: https://g... | 2023-09-20T12:40:54 |
rust-lang/rust | 7791bc22133cce1693b364f76e99416b50f4d348 | 52b3ac476c78224a1d35d3857d24413fdfb89138 | mark ICE regression test as fixed | [
{
"path": "tests/ui/eii/duplicate/eii_conflict_with_macro.rs",
"patch": "@@ -1,4 +1,5 @@\n //@ compile-flags: --crate-type rlib\n+//@ build-pass\n #![feature(extern_item_impls)]\n \n macro_rules! foo_impl { () => {} }",
"additions": 1,
"deletions": 0,
"language": "Rust"
},
{
"path": "tes... | 2026-01-08T17:44:56 |
electron/electron | db8644ee7a7e6e80802508a13ee06c6f20ee1a1c | 04aafcc5efd2cf35b54891a77b5813f8a08e754e | fix: media key globalShortcuts on macOS (#30552) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -105,3 +105,4 @@ add_gin_wrappable_crash_key.patch\n logging_win32_only_create_a_console_if_logging_to_stderr.patch\n disable_use_lld_for_macos.patch\n fix_fix_the_build_on_windows_on_arm.patch\n+fix_media_key_usage_with_globalshortcuts.patch",
"additi... | 2021-08-17T17:44:17 |
facebook/react | 05c34dea91eced40d08cd72432087c1e26a4f59c | b2763d3eaa4a56ce9c973945783aba7cac63478f | [Test] Outer boundary should not report errors from an inner boundary (#24618)
* Test to assert that hydration errors of an inner suspended boundary are not retained by an unsuspended outer boundary
* lints | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -3531,4 +3531,50 @@ describe('ReactDOMFizzServer', () => {\n console.error = originalConsoleError;\n }\n });\n+\n+ // @gate experimental\n+ it('#24578 Hydration errors caused by a suspending component should ... | 2022-05-25T21:10:50 |
vercel/next.js | 24c480e33bea4565630be1860a5ba71d08981b28 | 8ea354cd9993648cf61572d46b45246c38ffe28d | [dev-overlay] Increase padding if no `x` button present (#76898)
Fixes lack of padding on the right if there is no `x` close button

After the changes:
 {\n return_items.push(Box::new(generate_default_impl(\n+ ecx,\n &func,\n impl_unsafe,\n macro_name,\n@@ -185,6 +186,7 @@ fn filt... | 2026-01-08T17:43:16 |
nodejs/node | 20b996dcf12d011a88c5779d4829cf1f24f7f3b9 | cdad3d8fe5f468aec6549fd59db73a3bfe063e3c | esm: fix return type of `import.meta.resolve`
PR-URL: https://github.com/nodejs/node/pull/49698
Fixes: https://github.com/nodejs/node/issues/49695
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Guy Bedford <guybedford@gmail.com> | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -1450,7 +1450,7 @@ E('ERR_MISSING_ARGS',\n E('ERR_MISSING_OPTION', '%s is required', TypeError);\n E('ERR_MODULE_NOT_FOUND', function(path, base, exactUrl) {\n if (exactUrl) {\n- lazyInternalUtil().setOwnProperty(this, 'url', exactUrl);\n+ lazyInterna... | 2023-09-20T10:09:15 |
electron/electron | a9a90fa1b689b8831136423bc104968aa3b6621e | 7cdd132d1858aaae0d927b95c363b97f0c4e5cec | fix: {exit|enter}-html-fullscreen emitted after esc in webview (#30537) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1239,39 +1239,36 @@ void WebContents::OnEnterFullscreenModeForTab(\n content::RenderFrameHost* requesting_frame,\n const blink::mojom::FullscreenOptions& options,\n bool allowed) {\n- if (!allowed)\n- return;\n- if (!... | 2021-08-17T07:03:45 |
facebook/react | 2c68776abe2100bbf749ac4451b90e66f8290f2f | a2505792ed17fd4d7ddc69561053c3ac90899491 | fix scripts folder text (#24609) | [
{
"path": "scripts/circleci/download_devtools_regression_build.js",
"patch": "@@ -75,7 +75,7 @@ async function downloadRegressionBuild() {\n // For React versions earlier than 18.0.0, we explicitly scheduler v0.20.1, which\n // is the first version that has unstable_mock, which DevTools tests need, but ... | 2022-05-25T13:56:35 |
vercel/next.js | 66c42c47740c5998f735358ee3981cb10b88cd94 | 10a2c9377133215aef118e68b9a12a1def1a103b | build: Fix warning (#76890)
### What?
Fix warning like
<img width="909" alt="image"
src="https://github.com/user-attachments/assets/f29a7a65-d032-4f95-ba39-480302ff566a"
/>
### Why?
I made a mistake in https://github.com/vercel/next.js/pull/76144 | [
{
"path": "Cargo.toml",
"patch": "@@ -51,9 +51,6 @@ opt-level = 3\n [profile.release.package.lightningcss]\n opt-level = \"s\"\n \n-[profile.release.package.std]\n-opt-level = 3\n-\n [profile.release.package.lightningcss-napi]\n opt-level = \"s\"\n ",
"additions": 0,
"deletions": 3,
"language": ... | 2025-03-07T04:15:55 |
rust-lang/rust | 5ddda0c37bae5d6867d04ed5be5dae5729df7bd5 | e3cff18370d167b3e03eec8d31bf2f38709b7fc1 | fix up diagnostics referring to the right items | [
{
"path": "compiler/rustc_ast/src/ast.rs",
"patch": "@@ -2117,10 +2117,9 @@ pub struct MacroDef {\n \n #[derive(Clone, Encodable, Decodable, Debug, HashStable_Generic, Walkable)]\n pub struct EiiExternTarget {\n- /// path to the extern item we're targetting\n+ /// path to the extern item we're targeti... | 2026-01-08T15:43:24 |
nodejs/node | f72784b7e3e8d62b85b60852d44c198d905677f7 | cd97e28860d109e1576e05b4b79692aa013a4e6e | doc: fix print results in `events`
PR-URL: https://github.com/nodejs/node/pull/49548
Refs: https://github.com/nodejs/node/issues/49537
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "doc/api/events.md",
"patch": "@@ -105,7 +105,7 @@ class MyEmitter extends EventEmitter {}\n const myEmitter = new MyEmitter();\n myEmitter.on('event', (a, b) => {\n console.log(a, b, this);\n- // Prints: a b {}\n+ // Prints: a b undefined\n });\n myEmitter.emit('event', 'a', 'b');\n ```",
... | 2023-09-19T17:31:09 |
facebook/react | 1e98682dd383ca07f2819dc8987bd46cdb5fa028 | 210fee474d7152b08171c2953678b607f8baad3e | [DevTools] Fix moduleNameMapper Order in DevTools Config #24602)
We need the regression config moduleNameMapper to come before the current moduleNameMapper so when it tries to map "/^react-dom\/([^/]+)$/ it doesn't get confused. The reason is because order in which the mappings are defined matters. Patterns are check... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js",
"patch": "@@ -734,7 +734,7 @@ describe('ProfilingCache', () => {\n }\n });\n \n- // @reactVersion >= 16.9\n+ // @reactVersion >= 18.0\n it('should calculate durations based on actual children (not filtered children)',... | 2022-05-23T21:18:17 |
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.