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 |
|---|---|---|---|---|---|
electron/electron | 96ff8d7bd7d7183234f18cd3bef633f82dfbfe03 | e26901aba46c8136689e0349b7ec88a3384dd3bb | build: decode error output as utf8 (#30093) | [
{
"path": "build/npm-run.py",
"patch": "@@ -16,5 +16,5 @@\n subprocess.check_output(args, stderr=subprocess.STDOUT)\n except subprocess.CalledProcessError as e:\n error_msg = \"NPM script '{}' failed with code '{}':\\n\".format(sys.argv[2], e.returncode)\n- print(error_msg + e.output.decode('asci... | 2021-07-12T22:22:26 |
vercel/next.js | d1681f2200eade70f645a0e994e4dc7ec0b3126f | d75dbd32ba1be024e7992ac0825494bb7e2b787e | Revert "Run nightly bundler integration tests also with React 18" (#76640)
Reverts vercel/next.js#76606
Causes the nightly jobs to fail with:
```
Error: Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run
```
because w... | [
{
"path": ".github/workflows/integration_tests_reusable.yml",
"patch": "@@ -86,16 +86,13 @@ jobs:\n fail-fast: false\n matrix:\n group: ${{ fromJSON(needs.generate-matrices.outputs.e2e) }}\n- # Empty value uses default\n- react: ['', '18.3.1']\n uses: ./.github/workflow... | 2025-02-27T23:15:00 |
nodejs/node | ee1f609a9e1b1c69a21a55bb77598f663fc07fb1 | e74d1b8db9966191555f115b9f865f3e5c22d6a0 | test: handle EUNATCH
When IPv6 is disabled IBM i returns EUNATCH (errno 42)
instead of EADDRNOTAVAIL.
libuv 1.46.0 adds EUNATCH errno
We can now use error.code to refer to EUNATCH
in node versions that use libuv 1.46.0.
PR-URL: https://github.com/nodejs/node/pull/48050
Refs: https://github.com/nodejs/node/issues/48... | [
{
"path": "test/parallel/test-net-autoselectfamily-commandline-option.js",
"patch": "@@ -87,6 +87,8 @@ function createDnsServer(ipv6Addr, ipv4Addr, cb) {\n assert.strictEqual(error.message, `connect ECONNREFUSED ::1:${port}`);\n } else if (error.code === 'EAFNOSUPPORT') {\n asser... | 2023-05-17T20:11:28 |
electron/electron | e26901aba46c8136689e0349b7ec88a3384dd3bb | 0cb5631b0b5de09878bb0d9f6cb36d146b23b7a9 | fix: crash when invoking login callback synchronously (#30068) | [
{
"path": "shell/browser/login_handler.cc",
"patch": "@@ -66,11 +66,15 @@ void LoginHandler::EmitEvent(\n details.Set(\"firstAuthAttempt\", first_auth_attempt);\n details.Set(\"responseHeaders\", response_headers.get());\n \n+ auto weak_this = weak_factory_.GetWeakPtr();\n bool default_prevented =\n ... | 2021-07-12T19:33:41 |
facebook/react | 2e0d86d22192ff0b13b71b4ad68fea46bf523ef6 | dbe9e732af1f12757a55adb12a8279d7db898b60 | Allow updating dehydrated root at lower priority without forcing client render (#24082)
* Pass children to hydration root constructor
I already made this change for the concurrent root API in #23309. This
does the same thing for the legacy API.
Doesn't change any behavior, but I will use this in the next steps.... | [
{
"path": "packages/react-art/src/ReactART.js",
"patch": "@@ -69,7 +69,6 @@ class Surface extends React.Component {\n this._mountNode = createContainer(\n this._surface,\n LegacyRoot,\n- false,\n null,\n false,\n false,",
"additions": 0,
"deletions": 1,
"la... | 2022-03-20T20:18:51 |
vercel/next.js | c929afc88d689c39bfe379cc1c768105f6928249 | a0cd5d9a0acf32e6f5fc29a252a5cfe07b188dcb | Don’t use native built-ins for additional bundler (#76577)
This opts us out of using the native built-in plugins for Rspack for now.
The existing swc plugin we use for webpack does additional work beyond just swc transformation, including validating RSC components to make sure they don’t use React APIs unavailable in... | [
{
"path": ".github/workflows/rspack-nextjs-build-integration-tests.yml",
"patch": "@@ -14,11 +14,7 @@ jobs:\n name: rspack-production\n test_type: production\n run_before_test: |\n- export NEXT_RSPACK=1 \\\n- NEXT_TEST_USE_RSPACK=1 \\\n- BUILTIN_FLIGHT_CLIENT_ENTRY... | 2025-02-27T20:57:51 |
golang/go | bc047b62b2ec0c6eae3437a26410039c82365f60 | a92c80eb40e72385257fc714143e0278e110aa1a | crypto/internal/nistec: fix p256Select (PPC64) and p256SelectAffine (PPC64/s390x)
They are constant time, but some constants were incorrect. This
resulting in reading beyond the tables.
I've added linux specific tests which verify these functions are not
reading beyond the limits of their table.
Thank you Sun Yimin,... | [
{
"path": "src/crypto/internal/nistec/p256_asm_ppc64le.s",
"patch": "@@ -291,7 +291,7 @@ TEXT ·p256Select(SB), NOSPLIT, $0-24\n \tVSPLTB $7, SEL1, IDX // splat byte\n \tVSPLTISB $1, ONE // VREPIB $1, ONE\n \tVSPLTISB $1, SEL2 // VREPIB $1, SEL2\n-\tMOVD $17, COUNT\n+\tMOVD $16,... | 2024-08-27T19:44:16 |
nodejs/node | e74d1b8db9966191555f115b9f865f3e5c22d6a0 | bca14f85183f059a9b470de2c6d682674a88a1f6 | doc: fix typo in `stream.finished` documentation
PR-URL: https://github.com/nodejs/node/pull/49271
Refs: https://nodejs.org/api/stream.html#streamfinishedstream-options
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Qingyu Deng <i@ayase-lab.com> | [
{
"path": "doc/api/stream.md",
"patch": "@@ -278,7 +278,7 @@ run().catch(console.error);\n rs.resume(); // Drain the stream.\n ```\n \n-The `finished` API provides [callback version][stream-finished]:\n+The `finished` API also provides a [callback version][stream-finished].\n \n ### Object mode\n ",
"ad... | 2023-08-23T09:17:31 |
facebook/react | dbe9e732af1f12757a55adb12a8279d7db898b60 | 645ec5d6fce7926e1d23105a93621147ec3d7f17 | Avoid conditions where control flow is sufficient (#24126)
This also fixes a type error since resetTextContent can only be called
on Instances. | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.new.js",
"patch": "@@ -1567,44 +1567,36 @@ function commitPlacement(finishedWork: Fiber): void {\n const parentFiber = getHostParentFiber(finishedWork);\n \n // Note: these two variables *must* always be updated together.\n- let parent;\n- ... | 2022-03-18T20:51:40 |
electron/electron | 0cb5631b0b5de09878bb0d9f6cb36d146b23b7a9 | 36079b822a0a96d44ce9211046fc86e21c5a3cc2 | fix: return RGBA values from getSystemColor (#30055) | [
{
"path": "shell/browser/api/electron_api_system_preferences_mac.mm",
"patch": "@@ -406,7 +406,7 @@ AVMediaType ParseMediaType(const std::string& media_type) {\n return \"\";\n }\n \n- return ToRGBHex(skia::NSSystemColorToSkColor(sysColor));\n+ return ToRGBAHex(skia::NSSystemColorToSkColor(sysColor)... | 2021-07-12T18:08:10 |
vercel/next.js | 7135484dac8650dfff6535df7cc3c44de0ab125f | ede5cf85548f9c5989d76fc694801f74ed41abf3 | chore(cna): fix theme extend for tailwind v4 (#76583)
## Why?
We are not extending the tailwind theme for `--color-background` and `--color-foreground`.
(Before)
https://github.com/user-attachments/assets/d336dab3-a00f-46cb-9587-055a6c5272fa
(After)
https://github.com/user-attachments/assets/123e829d-... | [
{
"path": "packages/create-next-app/templates/app-tw/js/app/globals.css",
"patch": "@@ -1,15 +1,17 @@\n @import \"tailwindcss\";\n \n-@theme {\n- --font-sans: var(--font-geist-sans);\n- --font-mono: var(--font-geist-mono);\n-}\n-\n :root {\n --background: #ffffff;\n --foreground: #171717;\n }\n \n+@th... | 2025-02-27T20:35:08 |
rust-lang/rust | 0db25dbd9dfef774e4dcc2a00e37674b5bac87de | 9565b28598976f62305ea3fb9a877b2628bb1c14 | fix: `map_unwrap_or` suggests wrongly for empty slice | [
{
"path": "clippy_lints/src/derivable_impls.rs",
"patch": "@@ -105,7 +105,7 @@ fn check_struct<'tcx>(\n if let TyKind::Path(QPath::Resolved(_, p)) = self_ty.kind\n && let Some(PathSegment { args, .. }) = p.segments.last()\n {\n- let args = args.map(|a| a.args).unwrap_or(&[]);\n+ ... | 2025-09-24T00:53:48 |
facebook/react | 645ec5d6fce7926e1d23105a93621147ec3d7f17 | 1c44437355e21f2992344fdef9ab1c1c5a7f8c2b | fix inspecting an element in a nested renderer bug (#24116)
Fixes this issue, where inspecting components in nested renderers results in an error. The reason for this is because we have different fiberToIDMap instances for each renderer, and owners of a component could be in different renderers.
This fix moves the ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -2734,6 +2734,62 @@ describe('InspectedElement', () => {\n });\n });\n \n+ it('inspecting nested renderers should not throw', async () => {\n+ // Ignoring react art warnings\n+ spyOn(console, 'error'... | 2022-03-17T19:40:03 |
nodejs/node | bca14f85183f059a9b470de2c6d682674a88a1f6 | 0d080a269e7db99229cccb7f20e8dc3c1b40fb61 | worker: protect against user mutating well-known prototypes
PR-URL: https://github.com/nodejs/node/pull/49270
Fixes: https://github.com/nodejs/node/issues/49259
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com... | [
{
"path": "lib/internal/worker/io.js",
"patch": "@@ -22,6 +22,7 @@ const {\n const {\n kEmptyObject,\n kEnumerableProperty,\n+ setOwnProperty,\n } = require('internal/util');\n \n const {\n@@ -302,15 +303,15 @@ function setupPortReferencing(port, eventEmitter, eventName) {\n if (name === eventName)... | 2023-08-23T09:06:51 |
electron/electron | c806184bfee8200f49b8ac2ed26c4c35d356a7b1 | 21f6937728a7092ae7e4089296d0eb69fd865e5c | chore: fix flaky fullscreen inheritance test (#30081) | [
{
"path": "spec-main/api-browser-window-spec.ts",
"patch": "@@ -4211,8 +4211,10 @@ describe('BrowserWindow module', () => {\n await enterFullScreen;\n expect(w.isFullScreen()).to.be.true('isFullScreen');\n await delay();\n- const w2 = new BrowserWindow();\n- await delay... | 2021-07-12T06:19:30 |
vercel/next.js | ede5cf85548f9c5989d76fc694801f74ed41abf3 | b80301d30816dd93143d95b8843c81763ac3b1f9 | Fix test after CI switched to pnpm 10 (#76615) | [
{
"path": "test/e2e/app-dir/turbopack-reports/turbopack-reports.test.ts",
"patch": "@@ -6,6 +6,11 @@ describe('turbopack-reports', () => {\n dependencies: {\n sqlite3: '5.1.7',\n },\n+ packageJson: {\n+ pnpm: {\n+ onlyBuiltDependencies: ['sqlite3'],\n+ },\n+ },\n })\n ... | 2025-02-27T19:47:44 |
golang/go | a92c80eb40e72385257fc714143e0278e110aa1a | c9ad32bd9f670a64292de17d09f9ec8294a60f39 | net,net/netip: implement the encoding.(Binary|Text)Appender
Implement the encoding.TextAppender interface for "net.IP".
Implement the encoding.(Binary|Text)Appender interfaces for
"netip.Addr", "netip.AddrPort" and "netip.Prefix".
"net.IP.MarshalText" also gets some performance improvements:
... | [
{
"path": "api/next/62384.txt",
"patch": "@@ -15,3 +15,10 @@ pkg math/rand/v2, method (*ChaCha8) AppendBinary([]uint8) ([]uint8, error) #6238\n pkg math/rand/v2, method (*PCG) AppendBinary([]uint8) ([]uint8, error) #62384\n pkg crypto/x509, method (OID) AppendBinary([]uint8) ([]uint8, error) #62384\n pkg cr... | 2024-09-20T06:38:58 |
facebook/react | 1c44437355e21f2992344fdef9ab1c1c5a7f8c2b | b075f974229f5eee820e97e87c2c73056c12c0b7 | Fix createRoot container signature (#24110)
The internal Container type represents the types of containers that React
can support in its internals that deal with containers.
This didn't include DocumentFragment which we support specifically for
rendering into shadow roots.
However, not all types makes sense to... | [
{
"path": "packages/react-dom/client.js",
"patch": "@@ -9,7 +9,6 @@\n \n 'use strict';\n \n-import type {Container} from './src/client/ReactDOMHostConfig';\n import type {ReactNodeList} from 'shared/ReactTypes';\n import type {\n RootType,\n@@ -24,7 +23,7 @@ import {\n } from './';\n \n export function cr... | 2022-03-17T00:06:00 |
nodejs/node | 64a5c01b99e97854ae933d2210555ba6ee54db14 | ecde9d9640e9b590a153c78b7dacc2739337f2a8 | test: add spawnSyncAndExit() and spawnSyncAndExitWithoutError()
Replaces expectSyncExit() and expectSyncExitWithoutError(). Since
we usually just check the child process right after its spawned,
these shorthands also takes care of the spawning. This makes the
tests more concise.
PR-URL: https://github.com/nodejs/node... | [
{
"path": "test/common/README.md",
"patch": "@@ -40,17 +40,16 @@ The `benchmark` module is used by tests to run benchmarks.\n \n The `child_process` module is used by tests that launch child processes.\n \n-### `expectSyncExit(child, options)`\n+### `spawnSyncAndExit(command[, args][, spawnOptions], expecta... | 2023-08-18T16:54:19 |
electron/electron | ccfde6c9d44e64621e2c3a92e5113c1d26e61d67 | 98f617e856ac153f3d6ebc0e7421376adcd8c6fa | fix: window ordering on mac (#29857) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1682,8 +1682,6 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n }\n \n void NativeWindowMac::SetActive(bool is_key) {\n- if (is_key)\n- widget()->Activate();\n is_active_ = is_key;\n }\n ",
"additions": 0,
"deletions": 2,
... | 2021-07-09T20:38:25 |
vercel/next.js | 8cf8b98f2fb2deb2ac6949c0d91a96b89a7fe5e3 | c220f26f966c5a1b418d52c29d79d3c5ea74f50f | fix: Add popular embedding libraries to serverExternalPackages (#76574) | [
{
"path": "docs/01-app/04-api-reference/05-config/01-next-config-js/serverExternalPackages.mdx",
"patch": "@@ -23,6 +23,7 @@ Next.js includes a [short list of popular packages](https://github.com/vercel/ne\n - `@aws-sdk/s3-presigned-post`\n - `@blockfrost/blockfrost-js`\n - `@highlight-run/node`\n+- `@huggi... | 2025-02-27T16:21:26 |
golang/go | c9ad32bd9f670a64292de17d09f9ec8294a60f39 | 7d114b5b71a03aa90fc560878acf19cc7251d216 | encoding/asn1: unmarshal bool values correctly dealing with the ANY type
Fixes #68241
Change-Id: I1ee81aa50c2f39f535ad27309e855f19acb2f2ea
Reviewed-on: https://go-review.googlesource.com/c/go/+/595796
Auto-Submit: Roland Shoemaker <roland@golang.org>
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: G... | [
{
"path": "src/encoding/asn1/asn1.go",
"patch": "@@ -702,6 +702,8 @@ func parseField(v reflect.Value, bytes []byte, initOffset int, params fieldParam\n \t\tif !t.isCompound && t.class == ClassUniversal {\n \t\t\tinnerBytes := bytes[offset : offset+t.length]\n \t\t\tswitch t.tag {\n+\t\t\tcase TagBoolean:\n+... | 2024-06-29T18:46:12 |
facebook/react | b075f974229f5eee820e97e87c2c73056c12c0b7 | 8fce116998ea525194e02075d1b89ddafc8d698f | Fix dispatch config type for skipBubbling (#24109) | [
{
"path": "packages/react-native-renderer/src/ReactNativeTypes.js",
"patch": "@@ -73,7 +73,7 @@ export type ViewConfig = $ReadOnly<{\n phasedRegistrationNames: $ReadOnly<{\n captured: string,\n bubbled: string,\n- skipBubble?: ?boolean,\n+ skipBubbling?: ?boolean,\n ... | 2022-03-16T19:05:57 |
nodejs/node | 7b7a68b1fed5c96907a4211c7372758d87baebc8 | c021b27221dbf65ea23a570d9df91bfdac4b3196 | bootstrap: build code cache from deserialized isolate
V8 now requires the code cache to be compiled with a finalized
read-only space, so we need to serialize the snapshot to get
a finalized read-only space first, then deserialize it to compile
the code cache.
PR-URL: https://github.com/nodejs/node/pull/49099
Refs: ht... | [
{
"path": "src/node_snapshotable.cc",
"patch": "@@ -911,7 +911,7 @@ void SnapshotBuilder::InitializeIsolateParams(const SnapshotData* data,\n const_cast<v8::StartupData*>(&(data->v8_snapshot_blob_data));\n }\n \n-ExitCode SnapshotBuilder::Generate(\n+ExitCode BuildSnapshotWithoutCodeCache(\n Snaps... | 2023-08-18T11:17:13 |
electron/electron | b7164428ec83f5f26dec89cce20bbb1d915cf87e | 0824fc57f767a33ccbb7dae4caf71eed7a1a53e9 | docs: modernize protocol-handler docs (#29380)
* docs: modernize protocol-handler docs
* docs: iadd contextIsolation
* docs: add guide for launch-app-from-URL-in-other-app
* docs: address comments
* chore: fix brackets
* chore: add escaped brackets | [
{
"path": "docs/fiddles/system/protocol-handler/launch-app-from-URL-in-another-app/index.html",
"patch": "@@ -1,92 +1,81 @@\n <!DOCTYPE html>\n <html>\n- <head>\n- <meta charset=\"UTF-8\">\n- <title>Hello World!</title>\n- </head>\n+\n+<head>\n+ <meta charset=\"UTF-8\">\n+ <!-- https://developer.m... | 2021-07-08T18:42:28 |
vercel/next.js | f81ba18cbfe9399fd93cd40e4b7e3116b1df8fd4 | 69116fdc34e28cf0f2473f7df638d4a3b6aa78f3 | Run nightly bundler integration tests also with React 18 (#76606)
While #76544 doesn't hurt, this is the more important fix to ensure that
tests that were previously marked as `failed` are only promoted to
`passed` if they also pass when the test is run with React 18. | [
{
"path": ".github/workflows/integration_tests_reusable.yml",
"patch": "@@ -86,13 +86,16 @@ jobs:\n fail-fast: false\n matrix:\n group: ${{ fromJSON(needs.generate-matrices.outputs.e2e) }}\n+ # Empty value uses default\n+ react: ['', '18.3.1']\n uses: ./.github/workflow... | 2025-02-27T15:51:30 |
golang/go | 7d114b5b71a03aa90fc560878acf19cc7251d216 | 530fbb283c911d97238cc5cacecc6b409ee7df88 | text/template/parse: use correct line number in error after comment
Fixes #69526
Change-Id: I42467ddec02e91f24bce87185bf8d7f16f8811b0
GitHub-Last-Rev: 039a5b6884aa65f34cecbfcd127861a703a048da
GitHub-Pull-Request: golang/go#69532
Reviewed-on: https://go-review.googlesource.com/c/go/+/614375
Auto-Submit: Ian Lance Tayl... | [
{
"path": "src/text/template/parse/lex.go",
"patch": "@@ -352,6 +352,7 @@ func lexComment(l *lexer) stateFn {\n \tif !delim {\n \t\treturn l.errorf(\"comment ends before closing delimiter\")\n \t}\n+\tl.line += strings.Count(l.input[l.start:l.pos], \"\\n\")\n \ti := l.thisItem(itemComment)\n \tif trimSpace ... | 2024-09-22T08:05:02 |
facebook/react | ba5dc6ccde775e742643ac7da16ff5d4b29cc09c | 0412f0c1a46ef60032b70c43d55ec010f908855f | Add authorization header to artifacts request (#24106)
* Add authorization header to artifacts request
CircleCI's artifacts API was updated; it now errors unless you're
logged in. This affects any of our workflows that download
build artifacts.
To fix, I added an authorization header to the request.
* Updat... | [
{
"path": ".circleci/config.yml",
"patch": "@@ -127,22 +127,19 @@ jobs:\n environment: *environment\n steps:\n - checkout\n- - run: yarn workspaces info | head -n -1 > workspace_info.txt\n- - *restore_node_modules\n - run:\n name: Download artifacts for base revision\... | 2022-03-16T03:10:23 |
rust-lang/rust | dc64aef1ed2ea86e42fe83f10e00c2f362dec114 | 978d75e373a3942424ff873cb2024678b6954492 | fix: Properly lower `SelfOnly` predicates | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs",
"patch": "@@ -77,6 +77,7 @@ pub struct ImplTraits {\n #[derive(PartialEq, Eq, Debug, Hash)]\n pub struct ImplTrait {\n pub(crate) predicates: StoredClauses,\n+ pub(crate) assoc_ty_bounds_start: u32,\n }\n \n pub type ImplTraitIdx = Idx<I... | 2026-01-04T10:10:10 |
nodejs/node | c4bbf0a094500e5cbad71d89554af24a9d84f131 | 413c16e49069974ac6fcd6a47b05ec97e1218540 | doc: fix wording in napi_async_init
Refs: https://github.com/nodejs/node/pull/32930
PR-URL: https://github.com/nodejs/node/pull/49180
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -5633,7 +5633,7 @@ problems like loss of async context when using the `AsyncLocalStorage` API.\n \n In order to retain ABI compatibility with previous versions, passing `NULL`\n for `async_resource` does not result in an error. However, this is not\n-recommended as... | 2023-08-17T19:05:44 |
electron/electron | 13bf2fd7ecf48cff31e5a1ceb903e4bc4667d1a1 | cd031a77dd55fa05c539f75adfe7e8b6844ac355 | build: fix building with enable_plugins = false (#30040) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -46,7 +46,6 @@\n #include \"content/public/browser/navigation_details.h\"\n #include \"content/public/browser/navigation_entry.h\"\n #include \"content/public/browser/navigation_handle.h\"\n-#include \"content/public/browser/plugin_ser... | 2021-07-08T07:18:11 |
facebook/react | 63b86e19955a3f68c3e6e4928f4e5b24fd8a8342 | 43eb28339a0dc645c27b36f06200da63d57c292f | Disable unsupported Bridge protocol version dialog and add workaround for old protocol operations format (#24093)
Rationale: The only case where the unsupported dialog really matters is React Naive. That's the case where the frontend and backend versions are most likely to mismatch. In React Native, the backend is lik... | [
{
"path": "packages/react-devtools-core/src/standalone.js",
"patch": "@@ -11,7 +11,7 @@ import {createElement} from 'react';\n import {\n // $FlowFixMe Flow does not yet know about flushSync()\n flushSync,\n-} from 'react-dom/client';\n+} from 'react-dom';\n import {createRoot} from 'react-dom/client';\... | 2022-03-15T17:48:26 |
golang/go | 530fbb283c911d97238cc5cacecc6b409ee7df88 | dfd0f0d8eb7ffe77e8b61e21dc59ba28a5a098df | fmt: fix incorrect doc comment
I noticed that the comment incorrectly stated 'WriteString implemented WriteString', it should be 'implemented io.StringWriter' instead.
Change-Id: I844a8c805e5f0c32b5aea68c4bba6982f6fcc8a7
GitHub-Last-Rev: a0d93b6e9d3c2a508d1f3c0ce23e98274ec421fb
GitHub-Pull-Request: golang/go#69546
Re... | [
{
"path": "src/fmt/print.go",
"patch": "@@ -201,14 +201,14 @@ func (p *pp) Flag(b int) bool {\n \treturn false\n }\n \n-// Implement Write so we can call [Fprintf] on a pp (through [State]), for\n+// Write implements [io.Writer] so we can call [Fprintf] on a pp (through [State]), for\n // recursive use in c... | 2024-09-21T03:02:47 |
vercel/next.js | 1c60a25c0978a6b5f3a30286d7f00f493bdf2f45 | 71cb06d07cf5f9463422f1b9a52d60792a0b942e | [test] Use new Redbox matchers in app/ error-recovery (#76552) | [
{
"path": "test/development/acceptance-app/error-recovery.test.ts",
"patch": "@@ -1,20 +1,19 @@\n /* eslint-env jest */\n import { createSandbox } from 'development-sandbox'\n import { FileRef, nextTestSetup } from 'e2e-utils'\n-import { check, describeVariants as describe } from 'next-test-utils'\n+import ... | 2025-02-27T15:44:46 |
rust-lang/rust | 8c129e4219c21a0aafd2c8446ab57f0d76154ec7 | 108436c6f98acc83b2a281465bc96ed505bbcb95 | fix: `mutex_atomic` wrongly unmangled macros | [
{
"path": "clippy_lints/src/mutex_atomic.rs",
"patch": "@@ -143,7 +143,7 @@ fn check_expr<'tcx>(cx: &LateContext<'tcx>, expr: &Expr<'tcx>, ty_ascription: &T\n && new.ident.name == sym::new\n {\n let mut applicability = Applicability::MaybeIncorrect;\n- ... | 2026-01-05T17:50:50 |
nodejs/node | 413c16e49069974ac6fcd6a47b05ec97e1218540 | 3c6a1c6af4cb1d24ca926642707a298af8724fc9 | src,permission: add multiple allow-fs-* flags
Support for a single comma separates list for allow-fs-* flags is
removed. Instead now multiple flags can be passed to allow multiple
paths.
Fixes: https://github.com/nodejs/security-wg/issues/1039
PR-URL: https://github.com/nodejs/node/pull/49047
Reviewed-By: Rafael Gonz... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -145,6 +145,10 @@ Error: Access to this API has been restricted\n \n <!-- YAML\n added: v20.0.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/49047\n+ description: Paths delimited by comma (`,`) are no longer allowed.\n -->\... | 2023-08-17T18:39:04 |
facebook/react | 2bf7c02f0ecddff385f8acb9c797e65884f1a3b3 | 061ac27bc9c30e758301d9db823677a0803938c8 | Don't hide console error|warn in inspectedElement-test (#24086) | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -459,7 +459,7 @@ describe('InspectedElement', () => {\n const prevInspectedElement = inspectedElement;\n \n // This test causes an intermediate error to be logged but we can ignore it.\n- console.error... | 2022-03-14T13:17:37 |
rust-lang/rust | 108436c6f98acc83b2a281465bc96ed505bbcb95 | 209e4d7d853950574dab187d360d71a479ce2402 | fix: `iter_kv_map` wrongly unmangled macros | [
{
"path": "clippy_lints/src/methods/iter_kv_map.rs",
"patch": "@@ -2,7 +2,7 @@ use super::ITER_KV_MAP;\n use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::msrvs::{self, Msrv};\n use clippy_utils::res::MaybeDef;\n-use clippy_utils::source::snippet_with_applicability;\n+use clippy_utils::... | 2026-01-04T20:57:16 |
golang/go | 0081f17f146140f5c02344bed16c530472fcdb0f | 7678fe1e58e35084fd30ca11401f935bb94f0046 | archive/{zip,tar}: fix Writer.AddFS to include empty directories
This change modifies the `(*Writer).AddFS` implementation in both `archive/zip`
and `archive/tar` to always write a directory header. This fixes a bug where
any empty directories in the fs were omitted when a zip or tar archive was
created from `AddFS` m... | [
{
"path": "doc/next/6-stdlib/99-minor/archive/66831.md",
"patch": "@@ -0,0 +1,2 @@\n+The `(*Writer).AddFS` implementations in both `archive/zip` and `archive/tar`\n+now write a directory header for an empty directory.",
"additions": 2,
"deletions": 0,
"language": "Markdown"
},
{
"path": ... | 2024-04-12T08:18:29 |
electron/electron | 2585e6d5fa5e185d52d51217970c1cde26cf36b3 | 71697344706f39ad12ad20c21f1c3cb86f8e5228 | chore: bump chromium to 93.0.4566.0 (main) (#29980)
* chore: bump chromium in DEPS to 93.0.4562.0
* chore: update patches
* [base] Made Value::Take{Dict,List}() rvalue ref-qualified.
https://chromium-review.googlesource.com/c/chromium/src/+/2988105
* Revert "Reland "Roll src/buildtools/third_party/libc++/t... | [
{
"path": "BUILD.gn",
"patch": "@@ -1404,8 +1404,7 @@ dist_zip(\"hunspell_dictionaries_zip\") {\n }\n \n copy(\"libcxx_headers\") {\n- sources = libcxx_headers + libcxx_licenses +\n- [ \"//buildtools/third_party/libc++/__config_site\" ]\n+ sources = libcxx_headers + libcxx_licenses\n outputs ... | 2021-07-06T12:17:13 |
vercel/next.js | a606ff7e279d95d1e84af226288a793ba6923c19 | fdb76531758a7c95905a124f329064ed866c571b | Fix `octokit.rest.issues.addLabels` call (#76601)
Follow-up for #76544.
[Failed worflow
run](https://github.com/vercel/next.js/actions/runs/13560755436/job/37903278074)
The PR number was incorrectly retrieved from the
`octokit.rest.pulls.create` response. | [
{
"path": "scripts/automated-update-workflow.js",
"patch": "@@ -69,7 +69,7 @@ async function main() {\n await octokit.rest.issues.addLabels({\n owner,\n repo,\n- issue_number: pullRequest.number,\n+ issue_number: pullRequest.data.number,\n labels: ['run-react-18-tests'],\n })\n ",
... | 2025-02-27T14:42:41 |
nodejs/node | a5567c227949fef1d1be3c0300517da851b40a4f | fe219e043827f5885d9c764a95324ded14ea94bf | test_runner: expose spec reporter as newable function
Fixes: https://github.com/nodejs/node/issues/48112
Ref: https://github.com/nodejs/node/pull/48208
PR-URL: https://github.com/nodejs/node/pull/49184
Refs: https://github.com/nodejs/node/pull/48208
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: M... | [
{
"path": "lib/test/reporters.js",
"patch": "@@ -1,6 +1,6 @@\n 'use strict';\n \n-const { ObjectDefineProperties } = primordials;\n+const { ObjectDefineProperties, ReflectConstruct } = primordials;\n \n let dot;\n let spec;\n@@ -21,9 +21,9 @@ ObjectDefineProperties(module.exports, {\n __proto__: null,\n... | 2023-08-17T18:21:14 |
facebook/react | 061ac27bc9c30e758301d9db823677a0803938c8 | 796724086a8a64100abf8bbc848a07daeb37777d | Fix use of hydrateRoot in DevTools test (#24084)
I noticed while working on a different PR that this test was not
using hydrateRoot correctly. You're meant to pass the initial children
as the second argument. | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -2099,7 +2099,7 @@ describe('InspectedElement', () => {\n await utils.actAsync(() => {\n const container = document.createElement('div');\n container.innerHTML = '<div></div>';\n- ReactDOMCli... | 2022-03-13T00:21:58 |
rust-lang/rust | 209e4d7d853950574dab187d360d71a479ce2402 | 8ccfc833a03dec7f84a01abc54b8e8a7d24bd09b | fix: `question_mark` wrongly unmangled macros | [
{
"path": "clippy_lints/src/question_mark.rs",
"patch": "@@ -5,7 +5,7 @@ use clippy_config::types::MatchLintBehaviour;\n use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::msrvs::{self, Msrv};\n use clippy_utils::res::{MaybeDef, MaybeQPath, MaybeResPath};\n-use clippy_utils::source::snip... | 2026-01-03T02:40:38 |
golang/go | 7ba074fe43a3c1e9a35cd579520d7184d3a20d36 | c71b5ff76a1b1d79b53e268b83fb721e0af4614b | reflect: remove calling mapiterkey, mapiterelem
It makes use of the hiter structure which matches runtime.hiter's.
This change mainly improves the performance of Next method of MapIter.
goos: darwin
goarch: arm64
pkg: reflect
cpu: Apple M2
│ ./old.txt │ ./new.txt │
... | [
{
"path": "src/reflect/map_noswiss.go",
"patch": "@@ -223,7 +223,7 @@ func (v Value) MapKeys() []Value {\n \ta := make([]Value, mlen)\n \tvar i int\n \tfor i = 0; i < len(a); i++ {\n-\t\tkey := mapiterkey(&it)\n+\t\tkey := it.key\n \t\tif key == nil {\n \t\t\t// Someone deleted an entry from the map since w... | 2024-09-12T14:52:56 |
electron/electron | 71697344706f39ad12ad20c21f1c3cb86f8e5228 | f3517b66351415c20a981defa1132735f6b1d05f | fix: download the arm64 version of Electron when running node under rosetta (#29953) | [
{
"path": "npm/install.js",
"patch": "@@ -2,6 +2,7 @@\n \n const { version } = require('./package');\n \n+const childProcess = require('child_process');\n const fs = require('fs');\n const os = require('os');\n const path = require('path');\n@@ -18,14 +19,30 @@ if (isInstalled()) {\n process.exit(0);\n }\... | 2021-07-06T01:40:26 |
vercel/next.js | fdb76531758a7c95905a124f329064ed866c571b | e35ab35930a837561e3604baaaeff6bc26b49863 | Unflake `parallel-routes-revalidation` test (#76600)
[flakiness
metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20env%3Aci%20%40git.repository.id%3Agithub.com%2Fvercel%2Fnext.js%20%40test.service%3Anextjs%20%40test.status%3Afail%20%28-%40git.branch%3A%2A%3F%2A%20OR%20%40git.branch%3Acanary%29%20... | [
{
"path": "test/e2e/app-dir/parallel-routes-revalidation/parallel-routes-revalidation.test.ts",
"patch": "@@ -176,6 +176,7 @@ describe('parallel-routes-revalidation', () => {\n \n // reload the page, which will cause the router to no longer have cache nodes\n await browser.refresh()\n+ await brow... | 2025-02-27T14:16:32 |
nodejs/node | 4c3db74a3994079f9b7b79032a3da96a98b217a0 | 769823e57c90fc15e1854ae0d91a1b9a8d2a0c52 | doc: add rluvaton to collaborators
PR-URL: https://github.com/nodejs/node/pull/49215
Fixes: https://github.com/nodejs/node/issues/49049
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "README.md",
"patch": "@@ -433,6 +433,8 @@ For information about the governance of the Node.js project, see\n **Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)\n * [RaisinTen](https://github.com/RaisinTen) -\n **Darshan Sen** <<raisinten@gmail.com>> (he/him)\n+* [rluvaton](https://github... | 2023-08-17T14:31:59 |
facebook/react | 02b65fd8c5dbc6bfe2c976841f2f70a593ac9129 | 83b941a519f0528f3c7938f2bc6094a8de60c21e | Allow updates at lower pri without forcing client render
Currently, if a root is updated before the shell has finished hydrating
(for example, due to a top-level navigation), we immediately revert to
client rendering. This is rare because the root is expected is finish
quickly, but not exceedingly rare because the roo... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzShellHydration-test.js",
"patch": "@@ -9,6 +9,7 @@\n \n let JSDOM;\n let React;\n+let startTransition;\n let ReactDOMClient;\n let Scheduler;\n let clientAct;\n@@ -33,6 +34,8 @@ describe('ReactDOMFizzShellHydration', () => {\n ReactDOMFizzServer = ... | 2022-03-12T00:48:36 |
rust-lang/rust | 8ccfc833a03dec7f84a01abc54b8e8a7d24bd09b | 908860ed106e1540741bf7d2cbd5877bc62ef3ea | fix: `for_kv_map` wrongly unmangled macros | [
{
"path": "clippy_lints/src/loops/for_kv_map.rs",
"patch": "@@ -1,16 +1,22 @@\n use super::FOR_KV_MAP;\n use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::res::MaybeDef;\n-use clippy_utils::source::snippet;\n+use clippy_utils::source::{snippet_with_applicability, walk_span_to_context};\... | 2026-01-03T01:59:18 |
electron/electron | f3517b66351415c20a981defa1132735f6b1d05f | 6c251da2011d8f27d843f46d177db31701d7c104 | docs: match css filename in dark-mode.md (#29936)
* Update dark-mode.md
Fix the unmatched css file name
* Update docs/tutorial/dark-mode.md
Co-authored-by: Jeremy Rose <nornagon@nornagon.net>
Co-authored-by: Jeremy Rose <nornagon@nornagon.net> | [
{
"path": "docs/tutorial/dark-mode.md",
"patch": "@@ -80,9 +80,9 @@ Starting with the `index.html` file:\n </html>\n ```\n \n-And the `style.css` file:\n+And the `styles.css` file:\n \n-```css title='style.css'\n+```css title='styles.css'\n @media (prefers-color-scheme: dark) {\n body { background: #333; ... | 2021-07-06T01:37:41 |
golang/go | c71b5ff76a1b1d79b53e268b83fb721e0af4614b | e190638f204366bb509b77931aa58543b6300910 | cmd/go: print toolchain switching with GODEBUG=toolchaintrace
This CL introduces the ability to print information about the toolchain switch used in the
go command, controlled by the `toolchaintrace` setting. This setting defaults to `toolchaintrace=0`,
meaning no information is printed. Setting it to `toolchaintrace=... | [
{
"path": "src/cmd/go/internal/toolchain/exec.go",
"patch": "@@ -8,6 +8,7 @@ package toolchain\n \n import (\n \t\"cmd/go/internal/base\"\n+\t\"fmt\"\n \t\"internal/godebug\"\n \t\"os\"\n \t\"os/exec\"\n@@ -26,6 +27,13 @@ func execGoToolchain(gotoolchain, dir, exe string) {\n \t} else {\n \t\tos.Setenv(\"GO... | 2024-09-03T14:51:01 |
vercel/next.js | e35ab35930a837561e3604baaaeff6bc26b49863 | bf1dfbba6458d4495de9fc10001c2cef5de44076 | Turbopack: prevent panic in swc issue emitter (#76595) | [
{
"path": "turbopack/crates/turbopack-core/src/issue/analyze.rs",
"patch": "@@ -23,15 +23,15 @@ pub struct AnalyzeIssue {\n impl AnalyzeIssue {\n #[turbo_tasks::function]\n pub fn new(\n- severity: ResolvedVc<IssueSeverity>,\n+ severity: IssueSeverity,\n source_ident: ResolvedV... | 2025-02-27T13:39:28 |
facebook/react | 82762bea55d56afda2dcd00a565941be3798e0ac | 4a87fb52115ca26b2251bdcc94deeff841b66e52 | React DevTools 4.23.0 -> 4.24.0 (#24066)
* Revert "React DevTools 4.23.0 -> 4.24.0 (#23400)"
This reverts commit f6c130f6145dbae5436625560f520957b5e27859.
* React DevTools 4.23.0 -> 4.24.0
* Added additional, pending bugfixes to CHANGELOG
* Updated DevTools build and release script to fix header format | [
{
"path": "packages/react-devtools/CHANGELOG.md",
"patch": "@@ -5,13 +5,15 @@\n ---\n \n ### 4.24.0\n-March 2, 2022\n+March 10, 2022\n \n #### Feature\n * Show DevTools backend and frontend versions in UI ([bvaughn](https://github.com/bvaughn) in [#23399](https://github.com/facebook/react/pull/23399))\n * T... | 2022-03-10T18:37:01 |
rust-lang/rust | 908860ed106e1540741bf7d2cbd5877bc62ef3ea | 9d08eb487bdac4927386bbfaaba71ef6bfd73ff1 | fix: `match_ok_err` wrongly unmangled macros | [
{
"path": "clippy_lints/src/matches/manual_ok_err.rs",
"patch": "@@ -135,7 +135,7 @@ fn apply_lint(cx: &LateContext<'_>, expr: &Expr<'_>, scrutinee: &Expr<'_>, is_ok\n } else {\n Applicability::MachineApplicable\n };\n- let scrut = Sugg::hir_with_applicability(cx, scrutinee, \"..\", &mut ... | 2026-01-02T23:20:24 |
nodejs/node | 6bb400f8ec0d276b09441abaedb6cd859f593ccf | b4a2be457c17f32493801cbbec64942c0e70a068 | lib: add api to detect whether source-maps are enabled
Add `process.sourceMapsEnabled` to detect
whether source-maps are enabled.
Fixes: https://github.com/nodejs/node/issues/46304
PR-URL: https://github.com/nodejs/node/pull/46391
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "doc/api/process.md",
"patch": "@@ -3517,6 +3517,19 @@ throw an error.\n Using this function is mutually exclusive with using the deprecated\n [`domain`][] built-in module.\n \n+## `process.sourceMapsEnabled`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1 - Experimental\n+\n+* {boolea... | 2023-08-17T08:42:12 |
electron/electron | 25a77761f669a7548e218e30f61cdba2f7e9e367 | af991123f1cc0e9fe8fd88e42e847c475110176e | fix: build error caused by extra ] (#30015) | [
{
"path": "shell/browser/notifications/mac/cocoa_notification.mm",
"patch": "@@ -33,7 +33,7 @@\n NSString* identifier =\n [NSString stringWithFormat:@\"%@:notification:%@\",\n [[NSBundle mainBundle] bundleIdentifier],\n- [[NSUUID UUID]... | 2021-07-05T08:34:39 |
vercel/next.js | 9d1c6fddf0ea94707b34a35a7d08389f0777d28c | c53ac3e1d3771dfe9896211ba8c8051c1c1e7e77 | Turbopack: Ensure server actions sourcemaps tests pass (#76157)
## What?
Follow-up to #76129. Fixes the sourcemap, ensures the mappings are not
carried over when compiling for the client. For the server these
mappings are preserved.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure yo... | [
{
"path": "crates/next-core/src/next_client/transforms.rs",
"patch": "@@ -73,13 +73,17 @@ pub async fn get_next_client_transforms_rules(\n }\n ClientContextType::App { .. } => {\n is_app_dir = true;\n- rules.push(get_server_actions_transform_rule(\n- Act... | 2025-02-27T09:59:12 |
golang/go | db40d1a4c434e319e70af87ef1024a211a9e5a98 | 889178d5b67b0e2687e1c04c5ea9c2774b0d466a | cmd/compile: fix wrong esacpe analysis for rangefunc
CL 584596 "-range<N>" suffix to the name of closure generated for a
rangefunc loop body. However, this breaks the condition that escape
analysis uses for checking whether a closure contains within function,
which is "F.funcN" for outer function "F" and closure "func... | [
{
"path": "src/cmd/compile/internal/escape/solve.go",
"patch": "@@ -318,9 +318,9 @@ func containsClosure(f, c *ir.Func) bool {\n \t\treturn false\n \t}\n \n-\t// Closures within function Foo are named like \"Foo.funcN...\"\n+\t// Closures within function Foo are named like \"Foo.funcN...\" or \"Foo-rangeN\"... | 2024-09-18T15:39:05 |
facebook/react | 4a87fb52115ca26b2251bdcc94deeff841b66e52 | 48a8574a68066be0385bd90c4a24e3e620eafb92 | Better handle undefined Error stacks in DevTools error boundary (#24065) | [
{
"path": "packages/react-devtools-shared/src/devtools/views/ErrorBoundary/ErrorBoundary.js",
"patch": "@@ -49,16 +49,16 @@ export default class ErrorBoundary extends Component<Props, State> {\n const errorMessage =\n typeof error === 'object' &&\n error !== null &&\n- error.hasOwnPrope... | 2022-03-10T18:36:47 |
rust-lang/rust | 9d08eb487bdac4927386bbfaaba71ef6bfd73ff1 | 0cfbe56d0497f2210314c4101adff6bc74ea97f7 | fix: `match_bool` wrongly unmangled macros | [
{
"path": "clippy_lints/src/matches/match_bool.rs",
"patch": "@@ -25,8 +25,9 @@ pub(crate) fn check(cx: &LateContext<'_>, scrutinee: &Expr<'_>, arms: &[Arm<'_>]\n \"`match` on a boolean expression\",\n move |diag| {\n let mut app = Applicability::MachineApplicable;\n+... | 2026-01-02T23:13:18 |
nodejs/node | c9b1d6c84b4fa23f203280c7de1a341876d72a8b | e2d666d269f0caff202885c4f41e6e441a80835e | deps: update simdutf to 3.2.17
PR-URL: https://github.com/nodejs/node/pull/49019
Fixes: https://github.com/nodejs/node/issues/48995
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkey... | [
{
"path": "deps/simdutf/simdutf.cpp",
"patch": "@@ -1,8 +1,8 @@\n-/* auto-generated on 2023-06-05 08:58:28 -0400. Do not edit! */\n-// dofile: invoked with prepath=/Users/lemire/CVS/github/simdutf/src, filename=simdutf.cpp\n+/* auto-generated on 2023-08-11 13:30:54 -0400. Do not edit! */\n+// dofile: invoke... | 2023-08-04T17:54:47 |
electron/electron | af991123f1cc0e9fe8fd88e42e847c475110176e | 20c1f504ae7babfd5e3374d649605c6ffa2e7b3f | fix: self.module.paths not working in web workers (#29955)
* fix: global.module.paths in workers
* spec: add a regression test | [
{
"path": "lib/worker/init.ts",
"patch": "@@ -12,6 +12,9 @@ require('../common/reset-search-paths');\n // Import common settings.\n require('@electron/internal/common/init');\n \n+// Process command line arguments.\n+const { hasSwitch, getSwitchValue } = process._linkedBinding('electron_common_command_line'... | 2021-07-04T23:48:46 |
rust-lang/rust | 0cfbe56d0497f2210314c4101adff6bc74ea97f7 | 02e4f853efb393887dea4f481352e107e8d07998 | fix: `match_as_ref` wrongly unmangled macros | [
{
"path": "clippy_lints/src/matches/match_as_ref.rs",
"patch": "@@ -46,6 +46,7 @@ pub(crate) fn check(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>], expr:\n let cast = if input_ty == output_ty { \"\" } else { \".map(|x| x as _)\" };\n \n let mut applicability = Applicability::Machine... | 2026-01-02T23:07:31 |
golang/go | 889178d5b67b0e2687e1c04c5ea9c2774b0d466a | 6cce1911b77dad1afd3cf6dd34699d933f060978 | cmd/internal/obj/s390x: fix m6 field encoding for VSTRC instruction on s390x
M6 field for all extended mnemonics of VSTRC set to zero
This fixes VSTRC codegen to emit correctly and added testcases for all
the extended mnemonics.
Fixes #69216
Change-Id: I2a1b7fb61d6bd6444286eab56a506225c90b75e7
Reviewed-on: https://... | [
{
"path": "src/cmd/asm/internal/asm/testdata/s390x.s",
"patch": "@@ -520,7 +520,20 @@ TEXT main·foo(SB),DUPOK|NOSPLIT,$16-0 // TEXT main.foo(SB), DUPOK|NOSPLIT, $16-\n \tVSUMQF\tV4, V5, V6 // e76450002067\n \tVSUMQG\tV19, V20, V21 // e75340003e67\n \tVSUMB\tV7, V8, V9 // ... | 2024-09-11T04:53:00 |
facebook/react | 48a8574a68066be0385bd90c4a24e3e620eafb92 | 72a933d2892dac9e5327678b6bd37af8d589bb22 | Fixed edge case bug in Profiler (#24031) | [
{
"path": "packages/react-devtools-shared/src/__tests__/__snapshots__/profilingCache-test.js.snap",
"patch": "@@ -2960,6 +2960,94 @@ Object {\n }\n `;\n \n+exports[`ProfilingCache should collect data for each root (including ones added or mounted after profiling started): Data for root Parent 3`] = `\n+Obje... | 2022-03-10T18:35:52 |
vercel/next.js | c53ac3e1d3771dfe9896211ba8c8051c1c1e7e77 | be051841a6a136d926d7ecee551f9831c48ea033 | build: Update `swc_core` to `v16.0.0` (#76414)
### What?
Update `swc_core` to `v16.0.0`. This is a Wasm-breaking change, and changelog is at https://github.com/swc-project/swc/compare/swc_core%40v14.0.1...swc_core%40v16.0.0
### Why?
To apply various fixes. | [
{
"path": "Cargo.lock",
"patch": "@@ -750,9 +750,9 @@ dependencies = [\n \n [[package]]\n name = \"binding_macros\"\n-version = \"14.0.0\"\n+version = \"16.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"293d12b8b4ba1b04834ec96daeb8425dd828f4b82d01eb46defb4f7999abc5... | 2025-02-27T09:17:33 |
nodejs/node | e2d666d269f0caff202885c4f41e6e441a80835e | a49bc4bcdaf31ee03b769410e65b874bae67c55b | tools: fix github reporter appended multiple times
PR-URL: https://github.com/nodejs/node/pull/49199
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "tools/test.py",
"patch": "@@ -317,8 +317,7 @@ def HasRun(self, output):\n \n class ActionsAnnotationProgressIndicator(DotsProgressIndicator):\n def AboutToRun(self, case):\n- if not hasattr(case, 'additional_flags'):\n- case.additional_flags = []\n+ case.additional_flags = case.addit... | 2023-08-16T18:22:45 |
rust-lang/rust | 02e4f853efb393887dea4f481352e107e8d07998 | 2617622015f7294eead28ad6793ba04a3c16a643 | fix: `unnecessary_fold` wrongly unmangled macros | [
{
"path": "clippy_lints/src/methods/unnecessary_fold.rs",
"patch": "@@ -1,6 +1,6 @@\n use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::res::{MaybeDef, MaybeQPath, MaybeResPath, MaybeTypeckRes};\n-use clippy_utils::source::snippet_with_applicability;\n+use clippy_utils::source::snippet_... | 2026-01-02T22:58:07 |
facebook/react | a59f53a603306777fc6f949d84ce85f09bba4e4c | d5f1b067c8bbb826b823d0354a28ba31078b70c0 | Fizz: Prevent UnhandledPromiseRejection if shell errors (#24043) | [
{
"path": "packages/react-dom/src/server/ReactDOMFizzServerBrowser.js",
"patch": "@@ -67,6 +67,10 @@ function renderToReadableStream(\n resolve(stream);\n }\n function onShellError(error: mixed) {\n+ // If the shell errors the caller of `renderToReadableStream` won't have access to `allRe... | 2022-03-08T14:13:47 |
electron/electron | 18d0ed815528d544345eb56ee67c92ba00b7ed30 | 0403494a6bf082fa208310baf9a2e0ef9bef18b2 | fix: do not leak NSUUID (#29990) | [
{
"path": "shell/browser/notifications/mac/cocoa_notification.mm",
"patch": "@@ -33,7 +33,7 @@\n NSString* identifier =\n [NSString stringWithFormat:@\"%@:notification:%@\",\n [[NSBundle mainBundle] bundleIdentifier],\n- [[[NSUUID allo... | 2021-07-04T23:45:00 |
golang/go | 6cce1911b77dad1afd3cf6dd34699d933f060978 | 3dc146da7f31883fddc4bd227dd373398b08667e | cmd/cgo: use strings.CutPrefix
Change-Id: Ie3f35183e88d544559743394c34b55483fdf59aa
Reviewed-on: https://go-review.googlesource.com/c/go/+/613775
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Tobias Klauser <tobias... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -59,17 +59,17 @@ func cname(s string) string {\n \t\treturn t\n \t}\n \n-\tif strings.HasPrefix(s, \"struct_\") {\n-\t\treturn \"struct \" + s[len(\"struct_\"):]\n+\tif t, ok := strings.CutPrefix(s, \"struct_\"); ok {\n+\t\treturn \"struct \" + t\n \t}\n-\tif str... | 2024-09-17T07:57:01 |
vercel/next.js | be051841a6a136d926d7ecee551f9831c48ea033 | 6647a7706f688a3b95e74be32071432d1a5b98b2 | docs: Node.js runtime support for Middleware (#76556)
This PR adds docs for the experimental node.js runtime middleware
feature.
<!-- 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 t... | [
{
"path": "docs/01-app/03-building-your-application/01-routing/14-middleware.mdx",
"patch": "@@ -603,12 +603,51 @@ expect(getRewrittenUrl(response)).toEqual('https://other-domain.com/docs')\n \n ## Runtime\n \n-Middleware currently only supports APIs compatible with the [Edge runtime](/docs/app/building-you... | 2025-02-27T01:30:46 |
nodejs/node | a3f12e4a7e6310dce8fc0484dd2fa5cdddce86cb | 034c80126ef1c06645b273d979ff8e8db7800e48 | test: use expectSyncExit{WithErrors} in snapshot tests
..and replace the similar code added for logging.
PR-URL: https://github.com/nodejs/node/pull/49020
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/parallel/test-snapshot-api.js",
"patch": "@@ -7,6 +7,7 @@ const assert = require('assert');\n const { spawnSync } = require('child_process');\n const tmpdir = require('../common/tmpdir');\n const fixtures = require('../common/fixtures');\n+const { expectSyncExitWithoutError } = require('../c... | 2023-08-04T17:58:32 |
rust-lang/rust | 2617622015f7294eead28ad6793ba04a3c16a643 | 15fc6cfd1ca770891a10ea1eb2ddf2fe05bc2428 | fix: `redundant_pattern_matching` wrongly unmangled macros | [
{
"path": "clippy_lints/src/matches/redundant_pattern_match.rs",
"patch": "@@ -267,13 +267,14 @@ pub(super) fn check_match<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>, op\n if let Ok(arms) = arms.try_into() // TODO: use `slice::as_array` once stabilized\n && let Some((good_method, maybe_g... | 2026-01-02T22:41:03 |
facebook/react | d5f1b067c8bbb826b823d0354a28ba31078b70c0 | 6edd55a3ffda9267cdbf3237ba0e44b5d62b6552 | [ServerContext] Flight support for ServerContext (#23244)
* Flight side of server context
* 1 more test
* rm unused function
* flow+prettier
* flow again =)
* duplicate ReactServerContext across packages
* store default value when lazily initializing server context
* .
* better comment
* der... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -26,6 +26,8 @@ import {\n \n import {REACT_LAZY_TYPE, REACT_ELEMENT_TYPE} from 'shared/ReactSymbols';\n \n+import {getOrCreateServerContext} from 'shared/ReactServerContextRegistry';\n+\n export type JSONValue =\n | number\n | null... | 2022-03-08T12:55:32 |
electron/electron | 6eff9231b84707b9939103019789b48ac396b307 | 95a9ff952c231eca2f04e7f444b2e1818b4f65a0 | fix: webview should maximize on requestFullscreen (#29952) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -89,6 +89,7 @@ export_gin_v8platform_pageallocator_for_usage_outside_of_the_gin.patch\n fix_export_zlib_symbols.patch\n don_t_use_potentially_null_getwebframe_-_view_when_get_blink.patch\n web_contents.patch\n+webview_fullscreen.patch\n disable_unload_metr... | 2021-07-02T00:56:29 |
golang/go | 3dc146da7f31883fddc4bd227dd373398b08667e | d682a9dfbe14d86c0d4c5b7841bfd2509cdd478f | go/types, types2: better error message when type argument cannot use operator
Fixes #63524
Change-Id: Id33936b9bcfb6a7333c6d084247044bba2f29219
Reviewed-on: https://go-review.googlesource.com/c/go/+/613756
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Robert Gr... | [
{
"path": "src/cmd/compile/internal/types2/expr.go",
"patch": "@@ -574,7 +574,7 @@ Error:\n \t\t\tif !isTypeParam(x.typ) {\n \t\t\t\terrOp = y\n \t\t\t}\n-\t\t\tcause = check.sprintf(\"type parameter %s is not comparable with %s\", errOp.typ, op)\n+\t\t\tcause = check.sprintf(\"type parameter %s cannot use ... | 2024-09-17T03:59:49 |
vercel/next.js | 5d8aedcfdef9da814f190442c126dee569e900bb | 83610c6a847970e04b34b207fc4725e181907b88 | fix(rustdoc): Fix rustdoc warnings, block on rustdoc failures in CI (#76448)
When we break rustdoc, it causes warnings on every PR, e.g:

...so we shoul... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -164,7 +164,7 @@ jobs:\n stepName: 'rust-check'\n secrets: inherit\n \n- rust-doc-check:\n+ rustdoc-check:\n name: rustdoc check\n needs: ['changes', 'build-next']\n if: ${{ needs.changes.outputs.docs-only == 'false' }}\n... | 2025-02-27T00:03:16 |
rust-lang/rust | 15fc6cfd1ca770891a10ea1eb2ddf2fe05bc2428 | ac505cc2cb98e625844f7c49b00c58dd90193d7c | fix: `string_from_utf8_as_bytes` wrongly unmangled macros | [
{
"path": "clippy_lints/src/strings.rs",
"patch": "@@ -273,14 +273,15 @@ impl<'tcx> LateLintPass<'tcx> for StringLitAsBytes {\n let string_expression = &expressions[0].0;\n \n let snippet_app = snippet_with_applicability(cx, string_expression.span, \"..\", &mut applicability);\n+ ... | 2026-01-02T05:20:23 |
nodejs/node | 034c80126ef1c06645b273d979ff8e8db7800e48 | 6391b3b95d88db12f5f9b8be10417c63d7fe9b63 | test: add expectSyncExitWithoutError() and expectSyncExit() utils
These can be used to check the state and the output of a child
process launched with `spawnSync()`. They log additional information
about the child process when the check fails to facilitate debugging
test failures.
PR-URL: https://github.com/nodejs/no... | [
{
"path": "test/common/README.md",
"patch": "@@ -6,6 +6,7 @@ This directory contains modules used to test the Node.js implementation.\n \n * [ArrayStream module](#arraystream-module)\n * [Benchmark module](#benchmark-module)\n+* [Child process module](#child-process-module)\n * [Common module API](#common-m... | 2023-08-04T17:54:59 |
facebook/react | 14c2be8dac2d5482fda8a0906a31d239df8551fc | cb1e7b1c6ccd989d54b376ee4ae9da72a34f96e5 | Rename Node SSR Callbacks to onShellReady/onAllReady and Other Fixes (#24030)
* I forgot to call onFatalError
I can't figure out how to write a test for this because it only happens
when there is a bug in React itself which would then be fixed if we found
it.
We're also covered by the protection of ReadableStr... | [
{
"path": "fixtures/ssr/server/render.js",
"patch": "@@ -22,13 +22,13 @@ export default function render(url, res) {\n let didError = false;\n const {pipe, abort} = renderToPipeableStream(<App assets={assets} />, {\n bootstrapScripts: [assets['main.js']],\n- onCompleteShell() {\n+ onShellReady(... | 2022-03-04T19:38:46 |
electron/electron | 1f8a46c9c6d6ec4e597e4ae4abe0b1e898bc78b9 | 0fe2836151db67b77fb049fe0888fcc88c7266ef | feat: enable window controls overlay on macOS (#29253)
* feat: enable windows control overlay on macOS
* address review feedback
* chore: address review feedback
* Address review feedback
* update doc per review
* only enable WCO when titleBarStyle is overlay
* Revert "only enable WCO when titleBarSt... | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -392,6 +392,10 @@ It creates a new `BrowserWindow` with native properties as set by the `options`.\n contain the layout of the document—without requiring scrolling. Enabling\n this will cause the `preferred-size-changed` event to be emitted on... | 2021-07-01T19:25:40 |
golang/go | ae8708f7441b24dac126122c5365327d29fa0012 | 2927aa10ab1a184f02f7b7eb3c4a490906238e7a | os/user: fix Current().GroupIds() for AD joined users on Windows
This CL special-case User.GroupIds to get the group IDs from the user's
token when the user is the current user.
This approach is more efficient than calling NetUserGetLocalGroups.
It is also more reliable for users joined to an Active Directory domain,... | [
{
"path": "src/internal/syscall/windows/security_windows.go",
"patch": "@@ -175,3 +175,38 @@ func GetUserName(format uint32) (string, error) {\n \t\t}\n \t}\n }\n+\n+// getTokenInfo retrieves a specified type of information about an access token.\n+func getTokenInfo(t syscall.Token, class uint32, initSize i... | 2024-09-06T13:51:44 |
rust-lang/rust | ac505cc2cb98e625844f7c49b00c58dd90193d7c | 8aed185e7d308eb01e4ff00e4a562e5c33aaabc3 | fix: `str_to_string` wrongly unmangled macros | [
{
"path": "clippy_lints/src/strings.rs",
"patch": "@@ -1,6 +1,6 @@\n use clippy_utils::diagnostics::{span_lint, span_lint_and_sugg, span_lint_and_then};\n use clippy_utils::res::{MaybeDef, MaybeQPath};\n-use clippy_utils::source::{snippet, snippet_with_applicability};\n+use clippy_utils::source::{snippet, s... | 2025-12-20T18:53:58 |
vercel/next.js | 2c578889f0f60ab59435be0871497d9aef1698ea | c919f09a1cc27b265573444fc09c179bc9376da6 | [dev-overlay]: allow disabled state to be dismissable (#76572)
When you disable the dev indicator, either with `devIndicators: false`
or clicking the hide button, we still show a minimized version so you
can open up the error overlay.
That version should also be dismissible within the current browser
session.
https... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/dev-tools-indicator/next-logo.tsx",
"patch": "@@ -77,6 +77,7 @@ export const NextLogo = forwardRef(function NextLogo(\n shouldSkip: (count) => count === 0,\n animationDuration: SHORT_DURATION_MS,\n })\n+ const [... | 2025-02-26T22:00:38 |
facebook/react | cb1e7b1c6ccd989d54b376ee4ae9da72a34f96e5 | 5662857616f7d645d3f7f5d4709c5bc36c660fcf | Move onCompleteAll to .allReady Promise (#24025)
* Move onCompleteAll to .allReady Promise
The onCompleteAll callback can sometimes resolve before the promise that
returns the stream which is tough to coordinate. A more idiomatic API
for a one shot event is a Promise.
That way the way you render for SEO or SSG... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServerBrowser-test.js",
"patch": "@@ -105,12 +105,10 @@ describe('ReactDOMFizzServer', () => {\n <Wait />\n </Suspense>\n </div>,\n- {\n- onCompleteAll() {\n- isComplete = true;\n- },\n- },\n ... | 2022-03-03T17:46:12 |
nodejs/node | 3d5e7cd8f049f1d2bd041974fbde87f71cbbbf31 | b3eb05baa0ef934cf200703dc8ffefe513e62e71 | report: fix recent coverity warning
Fix warning about dereferencing null env
Signed-off-by: Michael Dawson <mdawson@devrus.com>
PR-URL: https://github.com/nodejs/node/pull/48954
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/node_report.cc",
"patch": "@@ -857,9 +857,13 @@ std::string TriggerNodeReport(Isolate* isolate,\n // Determine the required report filename. In order of priority:\n // 1) supplied on API 2) configured on startup 3) default generated\n if (!name.empty()) {\n- THROW_IF_INSUFFICIENT_P... | 2023-07-28T20:14:33 |
electron/electron | 98809d8d64a9eddcd9f170ae830dceb0e7e27b13 | 372ecf32e6c5ec4a549657f76dc71b3a423b8278 | fix: honor user-defined Downloads directory (#29938) | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -1017,12 +1017,10 @@ ElectronBrowserClient::GetPlatformNotificationService(\n }\n \n base::FilePath ElectronBrowserClient::GetDefaultDownloadDirectory() {\n- // ~/Downloads\n- base::FilePath path;\n- if (base::PathService::Get(base::DIR_H... | 2021-06-30T20:54:02 |
golang/go | 2927aa10ab1a184f02f7b7eb3c4a490906238e7a | aa06c9405451e1ca611ab94e279bb27bb9786cfe | unique: handle zero-size types
Fixes #69458
Change-Id: Ic7fda7f556522780b2819138dfc1277137398692
Reviewed-on: https://go-review.googlesource.com/c/go/+/613397
Reviewed-by: Carlos Amedee <carlos@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Cuong Man... | [
{
"path": "src/unique/handle.go",
"patch": "@@ -10,9 +10,11 @@ import (\n \t\"internal/weak\"\n \t\"runtime\"\n \t\"sync\"\n-\t_ \"unsafe\"\n+\t\"unsafe\"\n )\n \n+var zero uintptr\n+\n // Handle is a globally unique identity for some value of type T.\n //\n // Two handles compare equal exactly if the two v... | 2024-09-16T16:58:40 |
rust-lang/rust | ebd0151c81a39b358c6e6e17caf9458b0a4f78b4 | 84c84421cc5cd8a416f58c77face28e79f6fac96 | Fix the connect_error test on FreeBSD 15+
On FreeBSD 15, the error code returned in this situation changed. It's
now ENETUNREACH. I think that error code is reasonable, and it's
documented for connect(2), so we should expect that it might be
returned. | [
{
"path": "library/std/src/net/tcp/tests.rs",
"patch": "@@ -37,7 +37,8 @@ fn connect_error() {\n e.kind() == ErrorKind::ConnectionRefused\n || e.kind() == ErrorKind::InvalidInput\n || e.kind() == ErrorKind::AddrInUse\n- || e.kind() == ErrorKind::Add... | 2026-01-07T17:42:00 |
vercel/next.js | c919f09a1cc27b265573444fc09c179bc9376da6 | 991c32ae4f3f6eee5980a1d3d71249e0d06b8fe3 | examples: fix supabase example for v15 (#76567) | [
{
"path": "examples/with-supabase/components/tutorial/fetch-data-steps.tsx",
"patch": "@@ -16,7 +16,7 @@ values\n const server = `import { createClient } from '@/utils/supabase/server'\n \n export default async function Page() {\n- const supabase = createClient()\n+ const supabase = await createClient()\n... | 2025-02-26T21:50:00 |
facebook/react | 5662857616f7d645d3f7f5d4709c5bc36c660fcf | 05c283c3c31184d68c6a54dfd6a044790b89a08a | [Fizz] Export debug function for FB (#24024)
* export debug function for FB
* silence flow | [
{
"path": "packages/react-server-dom-relay/src/ReactDOMServerFB.js",
"patch": "@@ -92,4 +92,17 @@ function hasFinished(stream: Stream): boolean {\n return stream.destination.done;\n }\n \n-export {renderToStream, renderNextChunk, hasFinished, abortStream};\n+function debug(stream: Stream): any {\n+ // co... | 2022-03-03T17:02:37 |
nodejs/node | b3eb05baa0ef934cf200703dc8ffefe513e62e71 | 89dd09310ea20c21cb087f9be3ef432d5f2a2758 | build: fix typo `libray` -> `library` (configure.py)
Signed-off-by: Michal Biesek <michalbiesek@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/49106
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: ... | [
{
"path": "configure.py",
"patch": "@@ -457,7 +457,7 @@\n static_optgroup.add_argument('--static-zoslib-gyp',\n action='store',\n dest='static_zoslib_gyp',\n- help='path to zoslib.gyp file for includes and to link to static zoslib libray')\n+ help='path to zoslib.gyp file for includes and to l... | 2023-08-15T18:40:33 |
electron/electron | 372ecf32e6c5ec4a549657f76dc71b3a423b8278 | a8b3c22518ae6f55ce398d9c7604f1fa9eb30dc5 | fix: potential crash on macOS app exit (#29941) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -415,7 +415,7 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n // Use an NSEvent monitor to listen for the wheel event.\n BOOL __block began = NO;\n wheel_event_monitor_ = [NSEvent\n- addLocalMonitorForEventsMatchingMask:NSScr... | 2021-06-30T18:12:17 |
golang/go | f117d1c9b5951ab2456c1e512ac0423fcf3d7ada | 8343980c703fbc959f04ddd80ebdc55804545695 | test: add test for issue 24755
Fixes #24755
Change-Id: I00b276c5c2acb227d42a069d1af6027e4b499d31
Reviewed-on: https://go-review.googlesource.com/c/go/+/613115
Auto-Submit: Keith Randall <khr@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randal... | [
{
"path": "test/fixedbugs/issue24755.go",
"patch": "@@ -0,0 +1,19 @@\n+// errorcheck\n+\n+// Copyright 2024 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package p\n+\n+type I interface {\n+\tF()\n+}\n+\n... | 2024-09-13T15:30:30 |
facebook/react | 05c283c3c31184d68c6a54dfd6a044790b89a08a | 08644348b62bbfe979570b7174ff493da9bc70e9 | Fabric HostComponent as EventEmitter: support add/removeEventListener (unstable only) (#23386)
* Implement addEventListener and removeEventListener on Fabric HostComponent
* add files
* re-add CustomEvent
* fix flow
* Need to get CustomEvent from an import since it won't exist on the global scope by defaul... | [
{
"path": "packages/react-native-renderer/src/ReactFabricEventEmitter.js",
"patch": "@@ -18,12 +18,12 @@ import {batchedUpdates} from './legacy-events/ReactGenericBatching';\n import accumulateInto from './legacy-events/accumulateInto';\n \n import {plugins} from './legacy-events/EventPluginRegistry';\n-imp... | 2022-03-02T20:00:08 |
vercel/next.js | 8dd0b56fb6dac1b31cc5c94df2ec73b8f260309e | c505a4ca214c116e4ad4c03e61e83390f5499aed | docs(errors): update suppressHydrationWarning section (#76521)
## Why?
We should clarify that React will **not** attempt to patch mismatched text content when using `suppressHydrationWarning`.
- Related: https://github.com/reactjs/react.dev/pull/7651
- x-ref: https://github.com/vercel/next.js/discussions/75890 | [
{
"path": "errors/react-hydration-error.mdx",
"patch": "@@ -75,6 +75,11 @@ Sometimes content will inevitably differ between the server and client, such as\n <time datetime=\"2016-10-25\" suppressHydrationWarning />\n ```\n \n+> **Good to know:**\n+>\n+> - This only works one level deep, and is intended to b... | 2025-02-26T20:11:59 |
nodejs/node | 115f801ae44b64bfcb4f4aa70de92eb6cdfac652 | 1aeb48c975d95cb6a6c3997670d154b120d6dcbf | test: fix assertion message in test_async.c
PR-URL: https://github.com/nodejs/node/pull/49146
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/node-api/test_async/test_async.c",
"patch": "@@ -65,7 +65,7 @@ static napi_value Test(napi_env env, napi_callback_info info) {\n void* data;\n NODE_API_CALL(env,\n napi_get_cb_info(env, info, &argc, argv, &_this, &data));\n- NODE_API_ASSERT(env, argc >= 3, \"Not enough arguments, ex... | 2023-08-15T11:55:34 |
rust-lang/rust | 43e1604defa289b21cacf5f8e3c7d1ae741ecdca | d9617c8d9a55773a96b61ba3a4acb107d65615c1 | rustc book: fix grammar | [
{
"path": "src/doc/rustc/src/remap-source-paths.md",
"patch": "@@ -41,7 +41,7 @@ This example replaces all occurrences of `/home/user/project` in emitted paths w\n \n ## Caveats and Limitations\n \n-### Linkers generated paths\n+### Paths generated by linkers\n \n On some platforms like `x86_64-pc-windows-m... | 2026-01-07T12:51:18 |
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.