repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
9b994bf80ecc6188faf527a057f93119d522384e
e6f3782c74565400ad31f7af73772b7c84850c4c
Turbopack: rename reverse topological to postorder topological, fix async referenced modules (#76429) ### What? * move iter_neighbors into shared file, rename to iter_neighbors_rev * fix async referenced modules by filtering by chunking type * rename reverse topological to postorder topological
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1678,7 +1678,7 @@ async fn any_output_changed(\n .await\n .completed()?\n .into_inner()\n- .into_reverse_topological()\n+ .into_postorder_topological()\n .map(|m| async move {\n let asset_path...
2025-02-24T14:40:41
electron/electron
9b99bdb5704f5b53cead578c30090d47fa18f189
057b15f7bb2f6af98a4c9406841fc65c55c20b08
docs: fix image links in `performance.md` (#29592) * docs: fix image links in performance.md Fixes https://github.com/electron/electron/issues/29580 Signed-off-by: Darshan Sen <raisinten@gmail.com> * Apply suggestions from code review Co-authored-by: David Sanders <dsanders11@ucsbalum.com> Co-authored-b...
[ { "path": "docs/tutorial/performance.md", "patch": "@@ -120,9 +120,9 @@ file in the directory you executed it in. Both files can be analyzed using\n the Chrome Developer Tools, using the `Performance` and `Memory` tabs\n respectively.\n \n-![performance-cpu-prof]\n+![Performance CPU Profile][performance-cpu...
2021-06-10T17:44:04
nodejs/node
040865c6489efcd7ea43314046b6b9b1dc9e4603
bef394282031ba202d71f25bb061bcdce0fc5a9b
test_runner: fix todo and only in spec reporter PR-URL: https://github.com/nodejs/node/pull/48929 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": "lib/internal/test_runner/reporter/spec.js", "patch": "@@ -64,17 +64,24 @@ class SpecReporter extends Transform {\n ), `\\n${indent} `);\n return `\\n${indent} ${message}\\n`;\n }\n- #formatTestReport(type, data, prefix = '', indent = '', hasChildren = false, skippedSubtest = false)...
2023-07-26T11:30:33
facebook/react
ceee524a8f45b97c5fa9861aec3f36161495d2e1
aa8f2bdbce0aa8d5128461190f7ea40f891cb78e
Remove unnecessary clearContainer call (#22979) This was added when we added error recovery for hydration errors. However, when the fix up pass happens later on, it'll still call clearContainer in the commit phase. So this call is unnecessary.
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.new.js", "patch": "@@ -86,7 +86,6 @@ import {\n cancelTimeout,\n noTimeout,\n afterActiveInstanceBlur,\n- clearContainer,\n getCurrentEventPriority,\n supportsMicrotasks,\n errorHydratingContainer,\n@@ -885,7 +884,6 @@ function recover...
2021-12-17T17:40:39
vercel/next.js
5d1ecedf6650f40ce5d18cbc6296fff5c9213f53
0f47638fff8142c9b6b2b837e8106498cb8c0426
Turbopack: fix graph chunk groups (#76383) ### What? * Fix pages graph entrypoints * Fix chunk_group_info computation for merged * Fix client_shared_entries in graph * chunk_group_info: continue walking across graphs
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -813,13 +813,14 @@ impl AppProject {\n &self,\n endpoint: Vc<AppEndpoint>,\n rsc_entry: ResolvedVc<Box<dyn Module>>,\n- extra_entries: Vc<EvaluatableAssets>,\n+ client_shared_entries: Vc<EvaluatableAssets>,\n ...
2025-02-24T08:16:16
electron/electron
63cc82d91d55419354ec93fc7c0870461a8cca7a
73266f8f3df8c7933793be33bd04bec82ca30398
fix: ensure custom traffic lights float to top (#29595) * fix: ensure custom traffic lights float to top * chore: split into separate function
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -154,6 +154,9 @@ class NativeWindowMac : public NativeWindow,\n void NotifyWindowWillEnterFullScreen();\n void NotifyWindowWillLeaveFullScreen();\n \n+ // Ensure the buttons view are always floated on the top.\n+ void ReorderButtonsView();\n+...
2021-06-10T12:52:23
golang/go
a5708231ac8ae2a6f8806d2da502608d48bb3d84
dfae83c9db334477ba3f3ab9df4f174e7f778e55
crypto/internal/boring: disable LFS64 interfaces Comment out the definition in the libcrypto I/O code which enables the LFS64 interfaces. We don't use any of the I/O bits and pieces, and it's outside of the FIPS module, and it fixes some breakage in certain scenarios. Change-Id: Ie6597813726f94e23780b77d907cc1b9ccef3...
[ { "path": "src/crypto/internal/boring/build-boring.sh", "patch": "@@ -30,6 +30,15 @@ export CGO_ENABLED=0\n # Go toolchain / clang toolchain combinations.\n perl -p -i -e 's/defined.*ELF.*defined.*GNUC.*/$0 \\&\\& !defined(GOBORING)/' boringssl/crypto/mem.c\n \n+# We build all of libcrypto, which includes a...
2024-08-31T04:11:09
rust-lang/rust
f091a8acad5c52378be2f1b6f29cc2d21ff7bf5f
854f1f8db1dfe427dc348eb6567e081d23d8e6eb
Fix complete semicolon in array expression Example --- ```rust fn foo() {} fn bar() { let _ = [fo$0]; } ``` **Before this PR** ```rust fn foo() {} fn bar() { let _ = [foo();$0]; } ``` **After this PR** ```rust fn foo() {} fn bar() { let _ = [foo()$0]; } ```
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/context.rs", "patch": "@@ -821,7 +821,10 @@ impl<'db> CompletionContext<'db> {\n CompleteSemicolon::DoNotComplete\n } else if let Some(term_node) =\n sema.token_ancestors_with_macros(token.clone()).find(|node| {\n- ...
2026-01-04T12:54:19
nodejs/node
bef394282031ba202d71f25bb061bcdce0fc5a9b
d7ed3a4abc658a55538f3d6314c636e60e6d7978
test_runner: unwrap error message in TAP reporter The TAP reporter unwraps errors that come from user code. It was not properly unwrapping the error message when the failure originated from a test hook. This lead to difficult to debug errors when TAP output was used. This commit updates the TAP reporter to properly un...
[ { "path": "lib/internal/test_runner/reporter/tap.js", "patch": "@@ -171,7 +171,7 @@ function jsToYaml(indent, name, value, seen) {\n }\n \n if (isErrorObj) {\n- const { kTestCodeFailure, kUnwrapErrors } = lazyLoadTest();\n+ const { kUnwrapErrors } = lazyLoadTest();\n const {\n cause,\n ...
2023-07-29T18:36:55
facebook/react
aa8f2bdbce0aa8d5128461190f7ea40f891cb78e
e59233aa854fbeabe4698b40ef95da8e4c69ed6c
Refactored DevTools test shell for e2e (#22968) Fixes a regression in the e2e target and makes things easier (hopefully) going forward when adding new e2e tests.
[ { "path": "packages/react-devtools-inline/__tests__/__e2e__/inspecting-props.test.js", "patch": "@@ -8,9 +8,11 @@ test.describe('Testing Todo-List App', () => {\n let page, frameElementHandle, frame;\n test.beforeAll(async ({browser}) => {\n page = await browser.newPage();\n- await page.goto('htt...
2021-12-15T16:42:59
electron/electron
73266f8f3df8c7933793be33bd04bec82ca30398
5f2e25b0b2b596947d0453c6d77af639840f5bbf
fix: ensure fuse order is read in a stable way (#29599)
[ { "path": "build/fuses/build.py", "patch": "@@ -1,5 +1,6 @@\n #!/usr/bin/env python3\n \n+from collections import OrderedDict\n import json\n import os\n import sys\n@@ -50,7 +51,7 @@\n \"\"\"\n \n with open(os.path.join(dir_path, \"fuses.json5\"), 'r') as f:\n- fuse_defaults = json.loads(''.join(line for ...
2021-06-09T15:30:02
vercel/next.js
0f47638fff8142c9b6b2b837e8106498cb8c0426
7361dc46bb08f1b23657312dab3d4b0bb709078d
fix(turbopack): Fix pure span check in advanced tree shaking (#76406)
[ { "path": "turbopack/crates/turbopack-ecmascript/src/tree_shake/graph.rs", "patch": "@@ -10,7 +10,7 @@ use petgraph::{\n };\n use rustc_hash::{FxHashMap, FxHashSet};\n use swc_core::{\n- common::{comments::Comments, util::take::Take, Spanned, SyntaxContext, DUMMY_SP},\n+ common::{comments::Comments, u...
2025-02-24T08:07:39
golang/go
cd9a300afc0be43f7ad1891a18ed9b690f7f97ab
21ac23a96f204dfb558a8d3071380c1d105a93ba
all: fix printf(var) mistakes detected by latest printf checker These will cause build failures once we vendor x/tools. In once case I renamed a function err to errf to indicate that it is printf-like. Updates golang/go#68796 Change-Id: I04d57b34ee5362f530554b7e8b817f70a9088d12 Reviewed-on: https://go-review.google...
[ { "path": "src/cmd/api/main_test.go", "patch": "@@ -1019,7 +1019,7 @@ func (w *Walker) emitType(obj *types.TypeName) {\n \n func (w *Walker) emitStructType(name string, typ *types.Struct) {\n \ttypeStruct := fmt.Sprintf(\"type %s struct\", name)\n-\tw.emitf(typeStruct)\n+\tw.emitf(\"%s\", typeStruct)\n \tde...
2024-09-04T17:14:17
nodejs/node
d7ed3a4abc658a55538f3d6314c636e60e6d7978
f458e5b5734572a00318591620e2008f64274177
url: fix `isURL` detection by checking `path` Fixes: https://github.com/nodejs/node/issues/48921 PR-URL: https://github.com/nodejs/node/pull/48928 Fixes: https://github.com/getsentry/sentry-javascript/issues/8552 Fixes: https://github.com/request/request/issues/3458 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Revie...
[ { "path": "lib/internal/url.js", "patch": "@@ -753,13 +753,13 @@ ObjectDefineProperties(URLSearchParams.prototype, {\n * We use `href` and `protocol` as they are the only properties that are\n * easy to retrieve and calculate due to the lazy nature of the getters.\n *\n- * We check for auth attribute to ...
2023-07-26T03:59:25
facebook/react
575791925697c7e23966e6934b577e69aef736f3
a049aa015563c2e50f44214c28d186c0bae09ba6
DevTools: Correctly log errors reported from the store (#22950)
[ { "path": "packages/react-devtools-shared/src/devtools/views/ErrorBoundary/ErrorBoundary.js", "patch": "@@ -74,12 +74,7 @@ export default class ErrorBoundary extends Component<Props, State> {\n }\n \n componentDidCatch(error: any, {componentStack}: any) {\n- logEvent({\n- event_name: 'error',\n-...
2021-12-13T17:02:14
electron/electron
fa0323a3db48338bf7cf3047927e4073bc9388c4
c252deb8786466765a70a44b9d288c74b5579050
fix: Revert "fix: don't propagate GDK_BACKEND to subprocs (#28898)" (#29610) This reverts commit 7b169c2884d4926e4b83d52bf6a0752a6bb8fdd0.
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -155,7 +155,6 @@ std::u16string MediaStringProvider(media::MessageId id) {\n }\n \n #if defined(OS_LINUX)\n-\n void OverrideLinuxAppDataPath() {\n base::FilePath path;\n if (base::PathService::Get(DIR_APP_DATA, &path))\n@@ -376,24 +3...
2021-06-09T15:28:52
nodejs/node
42b5711d0b91184fdfcb8f29391819267308cbdd
8f0f17e1e3b6c4e58ce748e06343c5304062c491
test: fix `es-module/test-esm-initialization` PR-URL: https://github.com/nodejs/node/pull/48880 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/es-module/test-esm-initialization.mjs", "patch": "@@ -8,22 +8,23 @@ import { describe, it } from 'node:test';\n describe('ESM: ensure initialization happens only once', { concurrency: true }, () => {\n it(async () => {\n const { code, stderr, stdout } = await spawnPromisified(execPath,...
2023-07-29T09:51:10
vercel/next.js
3d065cf58e7b4e24387f1daeff2cf22ab121fa02
b84bd5221b3bfc37c95e2537f1a2a42483da1f0e
Add test to assert on current build output tree view (#76342) This allows us to better track fixes and changes to the build output tree view. To avoid flakiness, and needing to update the snapshots frequently, I've stubbed to file sizes and omitted the chunks from the snapshotted output. Because those details affec...
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -402,12 +402,22 @@ export async function printTreeView(\n gzipSize?: boolean\n }\n ) {\n- const getPrettySize = (_size: number): string => {\n- const size = prettyBytes(_size)\n- return white(bold(size))\n+ const getPrettySize = (\n+ ...
2025-02-23T20:37:46
electron/electron
396ea4b29ca8bada379f77faf2a53f8999ccf898
c9ccd136a8170199d3f7c64b9adc745e119cffbb
fix: select-bluetooth-device on Windows (#29591)
[ { "path": "shell/browser/lib/bluetooth_chooser.cc", "patch": "@@ -60,6 +60,7 @@ void BluetoothChooser::SetAdapterPresence(AdapterPresence presence) {\n event_handler_.Run(content::BluetoothChooserEvent::CANCELLED, \"\");\n break;\n case AdapterPresence::POWERED_ON:\n+ rescan_ = true;\n ...
2021-06-09T14:48:18
facebook/react
a049aa015563c2e50f44214c28d186c0bae09ba6
3b3daf5573efe801fa3dc659020625b4023d3a9f
[DevTools] Log errors occurring or reported to the frontend (#22948)
[ { "path": "packages/react-devtools-shared/src/Logger.js", "patch": "@@ -13,6 +13,12 @@ export type LogEvent =\n | {|\n +event_name: 'loaded-dev-tools',\n |}\n+ | {|\n+ +event_name: 'error',\n+ +error_message: string | null,\n+ +error_stack: string | null,\n+ +error_component...
2021-12-13T16:38:45
nodejs/node
761f5681c84421acb1bc757c52efb3c5ccfba4b3
b907815fbc3f758429e3050e304f9076b6dd38a4
doc: fix second parameter name of `events.addAbortListener` Second parameter name is described as `listener`(not resource) in below line. PR-URL: https://github.com/nodejs/node/pull/48922 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr...
[ { "path": "doc/api/events.md", "patch": "@@ -1803,7 +1803,7 @@ const emitter = new EventEmitter();\n setMaxListeners(5, target, emitter);\n ```\n \n-## `events.addAbortListener(signal, resource)`\n+## `events.addAbortListener(signal, listener)`\n \n <!-- YAML\n added: v20.5.0", "additions": 1, "dele...
2023-07-27T15:10:48
golang/go
21ac23a96f204dfb558a8d3071380c1d105a93ba
79fd633632cdbaf9ca38f7559e5abb5c07fbbd9d
unique: don't retain uncloned input as key Currently the unique package tries to clone strings that get stored in its internal map to avoid retaining large strings. However, this falls over entirely due to the fact that the original string is *still* stored in the map as a key. Whoops. Fix this by storing the cloned ...
[ { "path": "src/unique/handle.go", "patch": "@@ -50,21 +50,22 @@ func Make[T comparable](value T) Handle[T] {\n \t\ttoInsert *T // Keep this around to keep it alive.\n \t\ttoInsertWeak weak.Pointer[T]\n \t)\n-\tnewValue := func() weak.Pointer[T] {\n+\tnewValue := func() (T, weak.Pointer[T]) {\n \t\tif to...
2024-09-04T16:46:33
vercel/next.js
025657cf9090ffca24bc29b05d9316746291c29e
0d4076ed33b8b849ef729453198831d25cbfaf22
[dev-overlay]: hiding devtools shouldn't hide errors (#76399) Currently when you select "Hide Dev Tools", if an error comes in you won't see the error indicator anymore. This follows the same treatment as when the indicator is disabled in next config, which is to only show you errors, and not the regular indicator/po...
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -36,24 +36,23 @@ export function DevToolsIndicator({\n // Technically this prop isn't needed, but useful for testing.\n position?: DevToolsIndicatorPosition\n ...
2025-02-23T17:30:00
facebook/react
24dd07bd269590ee5024b7f0f1906887d256ea86
72e48b8e16cab83e22b5cf24ac73499a48aba23c
Add custom element property support behind a flag (#22184) * custom element props * custom element events * use function type for on* * tests, htmlFor * className * fix ReactDOMComponent-test * started on adding feature flag * added feature flag to all feature flag files * everything passes ...
[ { "path": "packages/react-dom/src/__tests__/DOMPropertyOperations-test.js", "patch": "@@ -155,6 +155,355 @@ describe('DOMPropertyOperations', () => {\n // Regression test for https://github.com/facebook/react/issues/6119\n expect(container.firstChild.hasAttribute('value')).toBe(false);\n });...
2021-12-08T15:11:42
electron/electron
7b169c2884d4926e4b83d52bf6a0752a6bb8fdd0
b27c5b94f740d7d719a8987bc0deebfa09f61261
fix: don't propagate GDK_BACKEND to subprocs (#28898)
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -155,6 +155,7 @@ std::u16string MediaStringProvider(media::MessageId id) {\n }\n \n #if defined(OS_LINUX)\n+\n void OverrideLinuxAppDataPath() {\n base::FilePath path;\n if (base::PathService::Get(DIR_APP_DATA, &path))\n@@ -375,8 +37...
2021-06-08T14:10:27
nodejs/node
b907815fbc3f758429e3050e304f9076b6dd38a4
0da3f61a19c05508e437144a3a1dc5959a41d5d1
lib,permission: drop repl autocomplete when pm enabled PR-URL: https://github.com/nodejs/node/pull/48920 Fixes: https://github.com/nodejs/node/issues/48884 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "lib/internal/util/inspector.js", "patch": "@@ -12,6 +12,7 @@ const {\n } = primordials;\n \n const { validatePort } = require('internal/validators');\n+const permission = require('internal/process/permission');\n \n const kMinPort = 1024;\n const kMaxPort = 65535;\n@@ -47,6 +48,10 @@ let session;...
2023-07-27T12:31:20
golang/go
79fd633632cdbaf9ca38f7559e5abb5c07fbbd9d
1b4cf43e422031f94b55822447625772efd37ea8
internal/weak: shade pointer in weak-to-strong conversion There's a bug in the weak-to-strong conversion in that creating the *only* strong pointer to some weakly-held object during the mark phase may result in that object not being properly marked. The exact mechanism for this is that the new strong pointer will alw...
[ { "path": "src/internal/weak/pointer_test.go", "patch": "@@ -5,9 +5,12 @@\n package weak_test\n \n import (\n+\t\"context\"\n \t\"internal/weak\"\n \t\"runtime\"\n+\t\"sync\"\n \t\"testing\"\n+\t\"time\"\n )\n \n type T struct {\n@@ -128,3 +131,82 @@ func TestPointerFinalizer(t *testing.T) {\n \t\tt.Errorf(...
2024-09-04T03:08:26
facebook/react
72e48b8e16cab83e22b5cf24ac73499a48aba23c
e39b2c8998a458a772b9284d0fb9f6a5ccdda914
Fix: Don't skip writing updated package.json Another fix to previous commit. The special case for use-sync-external-store still needs to write out the updated package.json, because we also use that branch to update the version field.
[ { "path": "scripts/rollup/build-all-release-channels.js", "patch": "@@ -250,14 +250,14 @@ function updatePackageVersions(\n // we don't override to the latest version. We should figure out some\n // better way to handle this.\n // TODO: Remove this special case.\n- con...
2021-12-08T07:55:46
vercel/next.js
05f4b8773cf8874fb4611add2f6f409a5304614e
49c26c7b4b05c988def6806473c9b524d33b8dbd
[test] Use new Redbox matchers in pages/ error-recovery test (#76348)
[ { "path": "test/development/acceptance/__snapshots__/error-recovery.test.ts.snap", "patch": "@@ -1,25 +0,0 @@\n-// Jest Snapshot v1, https://goo.gl/fbAQLP\n-\n-exports[`ReactRefreshLogBox default syntax > runtime error 1`] = `\n-\"index.js (5:9) @ eval\n-\n- 3 | setInterval(() => {\n- 4 | i++\n-> 5 | ...
2025-02-23T08:05:02
electron/electron
330b7849a3b6faf559f904a77dfe92b77c910277
556c91a989ec93b2f29acb544217e0ff55106e8c
docs: fix typo (#29553) * Typo fix * Update main.js
[ { "path": "docs/fiddles/features/macos-dark-mode/main.js", "patch": "@@ -22,7 +22,7 @@ function createWindow () {\n })\n \n ipcMain.handle('dark-mode:system', () => {\n- nativeTheme.themeSouce = 'system'\n+ nativeTheme.themeSource = 'system'\n })\n }\n ", "additions": 1, "deletions": 1, ...
2021-06-08T02:45:45
facebook/react
e39b2c8998a458a772b9284d0fb9f6a5ccdda914
ec78b135fb0b6184bc42e11b15e4b492764ed0f3
Fix peer deps for use-sync-external-store Merged last PR too quickly
[ { "path": "scripts/rollup/build-all-release-channels.js", "patch": "@@ -98,6 +98,14 @@ function buildForChannel(channel, nodeTotal, nodeIndex) {\n \n function processStable(buildDir) {\n if (fs.existsSync(buildDir + '/node_modules')) {\n+ // Identical to `oss-stable` but with real, semver versions. Thi...
2021-12-08T07:44:12
vercel/next.js
49c26c7b4b05c988def6806473c9b524d33b8dbd
801e06ff4591922e045e029a0f54095d99832cd0
[dev-overlay] fix: bottom stack count (#76375) ### Why? The error overlay's bottom stack count was wrong. ### Before https://github.com/user-attachments/assets/24f09416-38a9-4b47-8a59-269e9855f851 ### After https://github.com/user-attachments/assets/9f0dff66-e40c-4e68-afda-d149d1b8d895 Closes NDX-827 --------...
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/error-overlay-bottom-stack/index.tsx", "patch": "@@ -1,40 +1,31 @@\n export function ErrorOverlayBottomStack({\n- count,\n+ errorCount,\n activeIdx,\n }: {\n- count: number\n+ errorCount: number\n activeIdx: number...
2025-02-23T03:28:26
golang/go
1b4cf43e422031f94b55822447625772efd37ea8
a4eba85fada2a312fc7df20e6f1e215eda8e6a4d
runtime: size maps.Clone destination bucket array safely In rare situations, like during same-sized grows, the source map for maps.Clone may be overloaded (has more than 6.5 entries per bucket). This causes the runtime to allocate a larger bucket array for the destination map than for the source map. The maps.Clone co...
[ { "path": "src/runtime/map_noswiss.go", "patch": "@@ -1213,6 +1213,11 @@ func (h *hmap) sameSizeGrow() bool {\n \treturn h.flags&sameSizeGrow != 0\n }\n \n+//go:linkname sameSizeGrowForIssue69110Test\n+func sameSizeGrowForIssue69110Test(h *hmap) bool {\n+\treturn h.sameSizeGrow()\n+}\n+\n // noldbuckets cal...
2024-08-29T22:08:33
electron/electron
a4decffe9a92793c16921aaf1fd561a0d2abb23b
5665738ceb5aa58588d1dad77159d90a1b8ced71
fix: improper wrapping of fs.promises.readFile (#29528)
[ { "path": "lib/asar/fs-wrapper.ts", "patch": "@@ -489,63 +489,83 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n }\n };\n \n- const { readFile } = fs;\n- fs.readFile = function (pathArgument: string, options: any, callback: any) {\n+ function fsReadFileAsar (pathArgument: string, ...
2021-06-07T19:19:39
facebook/react
4729ff6d1f191902897927ff4ecd3d1f390177fa
71d16750c528ad902e73e2ecb9fc05a40314bb3f
Implement identifierPrefix option for useId (#22855) When an `identifierPrefix` option is given, React will add it to the beginning of ids generated by `useId`. The main use case is to avoid conflicts when there are multiple React roots on a single page. The server API already supported an `identifierPrefix` o...
[ { "path": "packages/react-art/src/ReactART.js", "patch": "@@ -66,7 +66,15 @@ class Surface extends React.Component {\n \n this._surface = Mode.Surface(+width, +height, this._tagRef);\n \n- this._mountNode = createContainer(this._surface, LegacyRoot, false, null);\n+ this._mountNode = createContain...
2021-12-03T01:49:43
golang/go
700920bbb73b39af4794854e79b76dc9b66b19ca
794b0a07483fdae7125f325d34fbea6b40a67885
go/printer: do not panic on *ast.ParenExpr in combinesWithName Fixes #69206 Change-Id: I1b5a664c22d5739e2c6748d562591f57345b536e GitHub-Last-Rev: 1798e2c65b3c2c0c1ef674b000dce2636c834783 GitHub-Pull-Request: golang/go#69208 Reviewed-on: https://go-review.googlesource.com/c/go/+/610115 Reviewed-by: Robert Griesemer <g...
[ { "path": "src/go/printer/nodes.go", "patch": "@@ -411,9 +411,7 @@ func combinesWithName(x ast.Expr) bool {\n \tcase *ast.BinaryExpr:\n \t\treturn combinesWithName(x.X) && !isTypeElem(x.Y)\n \tcase *ast.ParenExpr:\n-\t\t// name(x) combines but we are making sure at\n-\t\t// the call site that x is never par...
2024-09-02T12:37:51
vercel/next.js
801e06ff4591922e045e029a0f54095d99832cd0
8624a4c1687e9b7bf71c48f0ecab9ff6e468d157
Turbopack: accept ChunkGroup in chunking context (#76242) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contri...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -53,13 +53,15 @@ use turbopack::{\n use turbopack_core::{\n asset::AssetContent,\n chunk::{\n- availability_info::AvailabilityInfo, ChunkGroupType, ChunkableModules, ChunkingContext,\n- ChunkingContextExt, EvaluatableAsset, Evaluatab...
2025-02-23T01:01:01
electron/electron
070f25db5482964f53c9aefa953ec658797083c3
c5b0ba0c01f43dc6160fe3dd7074d12da41aade7
fix: make intermediates work with 'select-client-certificate' (#29552)
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -536,10 +536,16 @@ void OnClientCertificateSelected(\n if (!certs.empty()) {\n scoped_refptr<net::X509Certificate> cert(certs[0].get());\n for (auto& identity : *identities) {\n- if (cert->EqualsExcludingChain(identity->certifica...
2021-06-07T13:40:43
rust-lang/rust
f4112ee9b655027dc9526c529f074e6f15fe044a
ee12ffe79f97db4ac5e4e763dd9bd99e94863230
Fix commit according to PR review Changed so cargo specifies the binary collector, removing the need to link to its local binary. Clarified that the SHAs should be from the rustc-repo, but the command should be ran in the rustc-perf repo.
[ { "path": "src/doc/rustc-dev-guide/src/profiling/with_rustc_perf.md", "patch": "@@ -34,15 +34,16 @@ To start, in the `rustc-perf` repo, build the collector, which runs the Rust com\n ```\n cargo build --release -p collector\n ```\n-After this the collector can be located in `.\\target\\release\\collector`, ...
2025-12-28T15:56:17
facebook/react
cbc484b5ae8cb683aef5ee61fac468679e9bb2aa
4e6eec69be632c0c0177c5b1c8a70397d92ee181
Update attribute-behavior fixture (#22522) * Fix missing key warning * Add build instructions * Update interpretation now that React 17 is latest stable and 18 is next * Ignore ReactDOM.render deprecation warning * Ensure a server implementation with `renderToString` is used * Update AttributeTableSnaps...
[ { "path": "fixtures/attribute-behavior/.gitignore", "patch": "@@ -10,7 +10,7 @@\n /build\n /public/react.development.js\n /public/react-dom.development.js\n-/public/react-dom-server.browser.development.js\n+/public/react-dom-server-legacy.browser.development.js\n \n # misc\n .DS_Store", "additions": 1, ...
2021-11-25T01:37:09
nodejs/node
bcaf198900cfe5898be4949eecf19f1d66101e57
faefe560efbbefb5a58f7198305f417fbba4a007
test: reorder test files fixtures for better understanding PR-URL: https://github.com/nodejs/node/pull/48787 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "test/parallel/test-runner-cli.js", "patch": "@@ -22,7 +22,7 @@ const testFixtures = fixtures.path('test-runner');\n // Default behavior. node_modules is ignored. Files that don't match the\n // pattern are ignored except in test/ directories.\n const args = ['--test'];\n- const child = spa...
2023-07-26T17:16:31
golang/go
794b0a07483fdae7125f325d34fbea6b40a67885
6450a988a7ed81e8637c106abb7fbe318011dda8
encoding/xml: allow ]]> in attribute values This is permitted by the XML specification. Fixes #68387 Change-Id: Ic4ab5520a08a5a997f1c3d13c6d5f80c0521e45c GitHub-Last-Rev: 6d2ac307bbd0ba7d50830ad8b879c00cc3a7242b GitHub-Pull-Request: golang/go#69197 Reviewed-on: https://go-review.googlesource.com/c/go/+/610056 Auto-S...
[ { "path": "src/encoding/xml/xml.go", "patch": "@@ -1004,8 +1004,9 @@ Input:\n \t\t}\n \n \t\t// <![CDATA[ section ends with ]]>.\n-\t\t// It is an error for ]]> to appear in ordinary text.\n-\t\tif b0 == ']' && b1 == ']' && b == '>' {\n+\t\t// It is an error for ]]> to appear in ordinary text,\n+\t\t// but ...
2024-09-03T01:33:29
vercel/next.js
ad4977a757b50c333378d334f06abb36eb639569
23ecc88a228cc23af67d45668cdbe753c26c0455
Update error-recovery test snapshots for alternative bundler (#76299) Passes an additional 4 tests for Rspack. Rspack error messages included trailing whitespace when written to the DOM, so these are stripped out.
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -382,6 +382,7 @@ jobs:\n with:\n afterBuild: node scripts/test-new-tests.mjs --flake-detection --mode dev --group ${{ matrix.group }}\n stepName: 'test-new-tests-dev-${{matrix.group}}'\n+ timeout_minutes: 60 # Increase the d...
2025-02-22T22:42:11
electron/electron
fc10b53f9511dfdc406fbe334328971440de24b6
dd98fa3cd332e72f39dff0ee8b950fd81a997e09
docs: Update notifications (renderer) docs (#29267) * remove version information from html * change format for readability * clarify which console the message should appear in * minor changes to renderer.md * update UI on click instead of developer console * remove node-integration and fix md * updat...
[ { "path": "docs/fiddles/features/notifications/renderer/index.html", "patch": "@@ -7,11 +7,9 @@\n </head>\n <body>\n <h1>Hello World!</h1>\n- <p>\n- We are using node <script>document.write(process.versions.node)</script>,\n- Chrome <script>document.write(process.versions.chrome)</scrip...
2021-06-07T04:02:20
rust-lang/rust
7c02e3c6ebfaa9d70d7a358dfe3209d110b2c618
e25ee6bac4a6a2867fee2d78103b178939759430
Fix ambig-unambig-ty-and-consts link
[ { "path": "compiler/rustc_hir/src/hir.rs", "patch": "@@ -440,7 +440,7 @@ impl<'hir> ConstItemRhs<'hir> {\n /// versus const args that are literals or have arbitrary computations (e.g., `{ 1 + 3 }`).\n ///\n /// For an explanation of the `Unambig` generic parameter see the dev-guide:\n-/// <https://rustc-dev...
2026-01-04T08:44:15
facebook/react
4e6eec69be632c0c0177c5b1c8a70397d92ee181
c1220ebdde506de91c8b9693b5cb67ac710c8c89
fix: document can be `null`, not just `undefined` (#22695)
[ { "path": "packages/shared/invokeGuardedCallbackImpl.js", "patch": "@@ -81,7 +81,7 @@ if (__DEV__) {\n // when we call document.createEvent(). However this can cause confusing\n // errors: https://github.com/facebook/create-react-app/issues/3482\n // So we preemptively throw with a better ...
2021-11-24T20:51:15
nodejs/node
857774029c872e15c7985786629d772c38a93533
1eae568a7675157f136b0609452e3754384f1c52
doc: add new reporter events to custom reporter examples Fixes: https://github.com/nodejs/node/issues/48894 PR-URL: https://github.com/nodejs/node/pull/48903 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/test.md", "patch": "@@ -666,6 +666,15 @@ const customReporter = new Transform({\n writableObjectMode: true,\n transform(event, encoding, callback) {\n switch (event.type) {\n+ case 'test:dequeue':\n+ callback(null, `test ${event.data.name} dequeued`);\n+ break;\...
2023-07-26T13:15:24
golang/go
1b5ae45181ef5274045b9b93ae0603ebb34fa811
af86efbe6d44a16236e390752e49b7ea295bb963
os/user: User.GroupIds shouldn't error on users with no groups On Windows, the User.GroupIds currently errors out if the user has no groups. This is incorrect, as the user may not be a member of any groups as demonstrated by the new TestGroupIdsTestUser test. Cq-Include-Trybots: luci.golang.try:gotip-windows-amd64-lo...
[ { "path": "src/os/user/lookup_windows.go", "patch": "@@ -151,17 +151,13 @@ func listGroupsForUsernameAndDomain(username, domain string) ([]string, error) {\n \t// NetUserGetLocalGroups() would return a list of LocalGroupUserInfo0\n \t// elements which hold the names of local groups where the user participat...
2024-08-19T13:14:23
rust-lang/rust
52d65b8a626ae074f45e19c8d8cfe41a5f5e444b
f57b9e6f565a1847e83a63f3e90faa3870536c1f
library: clarify panic conditions in `Iterator::last` Now `Iterator::last`'s docs specify that it might panic only if the iterator is infinite, rather than if it has more than `usize::MAX` elements.
[ { "path": "library/core/src/iter/traits/iterator.rs", "patch": "@@ -238,8 +238,7 @@ pub trait Iterator {\n ///\n /// # Panics\n ///\n- /// This function might panic if the iterator has more than [`usize::MAX`]\n- /// elements.\n+ /// This function might panic if the iterator is infinite...
2026-01-04T02:53:26
vercel/next.js
23ecc88a228cc23af67d45668cdbe753c26c0455
9ad17858d26f0d0e66670b1450bb171521b6eb8c
[dev-overlay] fix: fallback to local machine's Geist Font if applicable (#76377)
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/styles/base.tsx", "patch": "@@ -39,10 +39,11 @@ export function Base() {\n --color-accents-2: #222222;\n --color-accents-3: #404040;\n \n- --font-stack-monospace: '__nextjs-Geist Mono', 'SFMono-Regular',\n- ...
2025-02-22T16:09:28
facebook/react
bddbfb86d858e50695f9f4c3e6f52c663a050069
b831aec48f2d54913b836d2288b62b7eee9fbca1
Revert "Fix Node package.json ./ exports deprecation warning (#22783)" (#22792) This reverts commit 8edeb787b001f1b989c812aad6ac04f9d67a41dc.
[ { "path": "packages/react/package.json", "patch": "@@ -32,7 +32,7 @@\n \"./build-info.json\": \"./build-info.json\",\n \"./jsx-runtime\": \"./jsx-runtime.js\",\n \"./jsx-dev-runtime\": \"./jsx-dev-runtime.js\",\n- \"./*\": \"./*\"\n+ \"./\": \"./\"\n },\n \"repository\": {\n \"type...
2021-11-19T15:04:13
electron/electron
fa2db00e55a9c285491ae9b91ad13b57ed950adf
1c0e8a65c45a13ef1a53f2724e4f3d6136ac7e4d
chore: bump chromium to 93.0.4532.2 (main) (#29527) * chore: bump chromium in DEPS to 93.0.4531.0 * chore: update patches * Remove IPC::Listener from WebContentsObserver https://chromium-review.googlesource.com/c/chromium/src/+/2910240 * serial: Move serial policy from profile to local state https://chr...
[ { "path": "DEPS", "patch": "@@ -14,7 +14,7 @@ gclient_gn_args = [\n \n vars = {\n 'chromium_version':\n- '93.0.4530.0',\n+ '93.0.4532.2',\n 'node_version':\n 'v14.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patches/chromiu...
2021-06-05T02:03:31
nodejs/node
1eae568a7675157f136b0609452e3754384f1c52
6bef80a50b5308c681ff214fc1a38217c40390e5
fs: mention `URL` in NUL character error message PR-URL: https://github.com/nodejs/node/pull/48828 Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/internal/fs/utils.js", "patch": "@@ -376,7 +376,7 @@ const nullCheck = hideStackFrames((path, propName, throwError = true) => {\n const err = new ERR_INVALID_ARG_VALUE(\n propName,\n path,\n- 'must be a string or Uint8Array without null bytes',\n+ 'must be a string, Uint8Array...
2023-07-18T15:24:44
golang/go
af86efbe6d44a16236e390752e49b7ea295bb963
a00195d304e6858406c6c9c961d253eeb8cb0aec
os: treat Getwd result of ENOMEM the same as ENAMETOOLONG We can see ENOMEM on FreeBSD. Also don't fail the test if we get an EPERM error when reading all the way up the tree; on Android we get that, perhaps because the root directory is unreadable. Also accept an EFAULT from a stat of a long name on Dragonfly, whic...
[ { "path": "src/os/error_errno.go", "patch": "@@ -10,5 +10,8 @@ import \"syscall\"\n \n type syscallErrorType = syscall.Errno\n \n-const errENOSYS = syscall.ENOSYS\n-const errERANGE = syscall.ERANGE\n+const (\n+\terrENOSYS = syscall.ENOSYS\n+\terrERANGE = syscall.ERANGE\n+\terrENOMEM = syscall.ENOMEM\n+)", ...
2024-09-03T22:13:01
vercel/next.js
9ad17858d26f0d0e66670b1450bb171521b6eb8c
7727ddc7f78b820dfe60650b5da7a8528f3d39d4
[dev-overlay] use css var for `<a>` tag focus ring (#76374) ### Why? When clicking the dialog and tabbing, the `<a>` tag inside the Terminal component was focusable but was missing an outline. ### How? To have a unified outline for the focused `<a>` tag, use the css var `--focus-ring`. This gives a unified style an...
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/container/build-error.stories.tsx", "patch": "@@ -24,7 +24,9 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor i\n 4 | }\n 5 |\n \n-Expected identError: Failed to resolve import \"./missing-module\"`,\n+E...
2025-02-22T14:25:38
electron/electron
b1d1ac65247053731cb26cbda9862c6d7c1d0a4b
00693bab30c6fa95f6e152889ee55bf1e2b1ada7
fix: change ASAR archive cache to per-process to fix leak (#29293) * fix: change ASAR archive cache to per-process to fix leak (#29292) * chore: address code review comments * chore: tighten up thread-safety * chore: better address code review comments * chore: more code review changes
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -43,7 +43,6 @@\n #include \"shell/browser/ui/devtools_manager_delegate.h\"\n #include \"shell/common/api/electron_bindings.h\"\n #include \"shell/common/application_info.h\"\n-#include \"shell/common/asar/asar_util.h\"\n #include \"shell...
2021-06-04T01:49:08
golang/go
57f4cf20996cf8b90b8f814c93db5dc18aaad99e
8eefc3b8f0dde0c89110817af3eccf44c79aeef0
os: treat Getwd result of EINVAL/ERANGE the same as ENAMETOOLONG At least Darwin and OpenBSD seem to return EINVAL if the resulting name would be too long. Solaris seems to return ERANGE. Fixes #69233 Fixes #69234 Change-Id: I9b51d41461e9576c633bf2fc0e96ca3e4d986255 Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/os/error_errno.go", "patch": "@@ -11,3 +11,4 @@ import \"syscall\"\n type syscallErrorType = syscall.Errno\n \n const errENOSYS = syscall.ENOSYS\n+const errERANGE = syscall.ERANGE", "additions": 1, "deletions": 0, "language": "Go" }, { "path": "src/os/error_plan9.go", ...
2024-09-03T18:28:42
nodejs/node
6cd678965fed3f3e30efe267742c38f14c71151c
d2465369243bc4313d9840b62c2393c4f179ffbb
sea: add support for V8 bytecode-only caching Refs: https://github.com/nodejs/single-executable/issues/73 Signed-off-by: Darshan Sen <raisinten@gmail.com> PR-URL: https://github.com/nodejs/node/pull/48191 Fixes: https://github.com/nodejs/single-executable/issues/73 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Review...
[ { "path": "doc/api/single-executable-applications.md", "patch": "@@ -10,6 +10,9 @@ changes:\n - version: REPLACEME\n pr-url: https://github.com/nodejs/node/pull/46824\n description: Added support for \"useSnapshot\".\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/48191\...
2023-07-26T10:10:35
vercel/next.js
2225e589372db8355012100fca5cc935ad290eb6
9b0edbb7336c666ed4b96bc5447f5bc156d88023
[dev-overlay] minify css (#76370) ### Why? Our internal comments in the css literal templates, are being shipped to the client along with the dev overlay, which is a bad practice. https://github.com/vercel/next.js/blob/7f5a1d39e8a94b0b424ef9538be9dd2802e6ccb6/packages/next/src/client/components/react-dev-overlay/ui...
[ { "path": ".vscode/extensions.json", "patch": "@@ -23,9 +23,6 @@\n \"ms-vscode.vscode-js-profile-flame\",\n \n // MDX Authoring\n- \"unifiedjs.vscode-mdx\",\n-\n- // CSS Authoring (mainly Dev Overlay)\n- \"styled-components.vscode-styled-components\"\n+ \"unifiedjs.vscode-mdx\"\n ]\n }...
2025-02-22T14:24:55
golang/go
6fa224a80965a32228f9bc13cfe667af500d0a9d
f26c29723f372284ff7dc0dbf30bae5561a3e618
testing: use testenv.Executable Note that this changes some nuances of how the tests work: - some tests had a fallback to using os.Args[0], which is removed; - some tests skipped (rather than failed) the test upon getting an error from os.Executable. I think these changes are not practically relevant. Change-Id...
[ { "path": "src/testing/flag_test.go", "patch": "@@ -28,11 +28,7 @@ func TestFlag(t *testing.T) {\n \t\tflag := flag\n \t\tt.Run(flag, func(t *testing.T) {\n \t\t\tt.Parallel()\n-\t\t\texe, err := os.Executable()\n-\t\t\tif err != nil {\n-\t\t\t\texe = os.Args[0]\n-\t\t\t}\n-\t\t\tcmd := exec.Command(exe, \"...
2024-08-30T02:06:57
nodejs/node
71165e111a8606ad37784d992b8d3cee4fbf0156
36c72c8b2fb03414e02ffd8402c05129647ce123
doc: change duration to duration_ms on test documentation PR-URL: https://github.com/nodejs/node/pull/48892 Fixes: https://github.com/nodejs/node/issues/48887 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Review...
[ { "path": "doc/api/test.md", "patch": "@@ -2014,7 +2014,7 @@ Emitted when a test is enqueued for execution.\n \n * `data` {Object}\n * `details` {Object} Additional execution metadata.\n- * `duration` {number} The duration of the test in milliseconds.\n+ * `duration_ms` {number} The duration of the ...
2023-07-25T13:34:16
vercel/next.js
940c192530a44f10786831828c5982cd6222c89d
7f5a1d39e8a94b0b424ef9538be9dd2802e6ccb6
[dev-overlay] fix: restore the missing Cursor editor case in dev-overlay (#76371) ### What? Restore the missing Cursor editor case in dev-overlay code that was accidentally dropped during code migration. ### Why? The Cursor editor support (for the "Open in Editor" feature when clicking error line numbers) that was p...
[ { "path": "packages/next/src/client/components/react-dev-overlay/utils/launch-editor.ts", "patch": "@@ -181,6 +181,7 @@ function getArgumentsForLineNumber(\n }\n case 'code':\n case 'Code':\n+ case 'Cursor':\n case 'code-insiders':\n case 'Code - Insiders':\n case 'vscodium':", ...
2025-02-22T09:00:31
electron/electron
8532e1239ec929e31b764ffcd314c8db3e09a19f
8d0ed05c99a992cfb241329906e7fb20a001d228
chore: bump chromium to 93.0.4530.0 (master) (#29256) * chore: bump chromium in DEPS to 92.0.4512.6 * 2887336: [CaptureHandle][#2] Propagate CaptureHandleConfig in browser process https://chromium-review.googlesource.com/c/chromium/src/+/2887336 * refactor: base::Optional -> absl::optional * chore: fixup p...
[ { "path": "DEPS", "patch": "@@ -14,7 +14,7 @@ gclient_gn_args = [\n \n vars = {\n 'chromium_version':\n- '92.0.4511.0',\n+ '93.0.4530.0',\n 'node_version':\n 'v14.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "build/args/all....
2021-06-03T08:05:04
facebook/react
b32b67706f1214b730e4203981e5aefe04d473e5
8edeb787b001f1b989c812aad6ac04f9d67a41dc
Migrate from CLIEngine to the new ESLint class. (#22756) * Migrate from CLIEngine to the new ESLint class. * fix output property
[ { "path": "scripts/eslint/index.js", "patch": "@@ -8,16 +8,16 @@\n 'use strict';\n \n const minimatch = require('minimatch');\n-const CLIEngine = require('eslint').CLIEngine;\n+const {ESLint} = require('eslint');\n const listChangedFiles = require('../shared/listChangedFiles');\n \n const allPaths = ['**/*....
2021-11-18T21:12:18
rust-lang/rust
65c10702bdbbaa733858fa890a41d1f5892ab0de
a47f4dfd7f496ed51a383c540497899f9e3f91b4
Fix typo in pattern usefulness documentation Line 171 introduced `pt_1, .., pt_n` and `qt` as variable names, but line 172 incorrectly used `tp_1, .., tp_n, tq`. This commit fixes the inconsistency to use the correct variable names throughout.
[ { "path": "compiler/rustc_pattern_analysis/src/usefulness.rs", "patch": "@@ -169,7 +169,7 @@\n //! on pattern-tuples.\n //!\n //! Let `pt_1, .., pt_n` and `qt` be length-m tuples of patterns for the same type `(T_1, .., T_m)`.\n-//! We compute `usefulness(tp_1, .., tp_n, tq)` as follows:\n+//! We compute `u...
2026-01-03T17:11:01
golang/go
7303a283c4e8aa734463ec85d90dd0732b826c71
e23ebec90d93f934d4426b861d83799637fe3e45
testing: skip TestChdir/relative when on Windows when GOROOT and TMPDIR are on different drives Fixes #69159 Change-Id: I0bbcf7075bdcf7a277a5053bcb543563a3074784 GitHub-Last-Rev: 86052a9ce32a871d6ad62f772f22852b2c6139a6 GitHub-Pull-Request: golang/go#69160 Reviewed-on: https://go-review.googlesource.com/c/go/+/609304...
[ { "path": "src/testing/testing_test.go", "patch": "@@ -300,7 +300,9 @@ func TestChdir(t *testing.T) {\n \t}\n \trel, err := filepath.Rel(oldDir, tmp)\n \tif err != nil {\n-\t\tt.Fatal(err)\n+\t\t// If GOROOT is on C: volume and tmp is on the D: volume, there\n+\t\t// is no relative path between them, so ski...
2024-09-01T00:55:35
nodejs/node
a0f3ed8ac40e7af441250ad8c2db0ed20b394adc
ad0603edc6516e98b4692914a6e8a3c36da4f223
test_runner: fix global before not called when no global test exists PR-URL: https://github.com/nodejs/node/pull/48877 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -828,6 +828,10 @@ class Suite extends Test {\n return;\n }\n \n+ if (this.parent.hooks.before.length > 0) {\n+ await this.parent.runHook('before', this.parent.getRunArgs());\n+ }\n+\n await this.runHook('before',...
2023-07-24T11:38:23
vercel/next.js
922f0e927b3f65a30da25a6c3b55442ae4645e4e
5b420d2b1cb02575a1f56626706fc71b6ca19152
[dev-overlay] do not attach hydration info to non hydration errors (#76349)
[ { "path": "packages/next/src/client/components/errors/attach-hydration-error-state.ts", "patch": "@@ -9,12 +9,18 @@ import {\n } from './hydration-error-info'\n \n export function attachHydrationErrorState(error: Error) {\n- const reactHydrationDiffSegments = getReactHydrationDiffSegments(\n- error.mess...
2025-02-21T23:57:38
electron/electron
d6d9a6a039c83a3dce09b21977345af00354c0fd
8040cb788fe8244cae62ffe90ed6094a86460e59
build: Improve squirrel.mac BUILD.gn xcrun_action error (#29448) Right now, if executing `xcrun` fails, then the error message prints the second argument to the `xcrun.py` script, which is the first argument to the tool that `xcrun` is executing, making the whole error message quite confusing. Consider the follo...
[ { "path": "patches/squirrel.mac/build_add_gn_config.patch", "patch": "@@ -508,7 +508,7 @@ index 0000000000000000000000000000000000000000..bdfaf95f3eca65b3e0831db1b66f651d\n +}\n diff --git a/build/xcrun.py b/build/xcrun.py\n new file mode 100644\n-index 0000000000000000000000000000000000000000..20d0cdb51cc9...
2021-06-03T05:54:16
facebook/react
8edeb787b001f1b989c812aad6ac04f9d67a41dc
fdc1d617a44cb9015c3bac3a6341b5af3311faf6
Fix Node package.json ./ exports deprecation warning (#22783)
[ { "path": "packages/react/package.json", "patch": "@@ -32,7 +32,7 @@\n \"./build-info.json\": \"./build-info.json\",\n \"./jsx-runtime\": \"./jsx-runtime.js\",\n \"./jsx-dev-runtime\": \"./jsx-dev-runtime.js\",\n- \"./\": \"./\"\n+ \"./*\": \"./*\"\n },\n \"repository\": {\n \"type...
2021-11-18T21:11:30
golang/go
bc7e378b3487aa96d8685db3dd6e244f752f60bf
0fe6347732bdb9918e3af4e0c4b52f7f0c162894
os: Getwd: fallback to slow method on ENAMETOOLONG As of CL 257637, all currently supported platforms have syscall.Getwd implemented, so the code which deduces wd by traversing up to root directory is never used and thus can be removed. Or, as it was suggested by Ian Lance Taylor in CL 607436 review comments, it can ...
[ { "path": "src/os/error_errno.go", "patch": "@@ -9,3 +9,5 @@ package os\n import \"syscall\"\n \n type syscallErrorType = syscall.Errno\n+\n+const errENOSYS = syscall.ENOSYS", "additions": 2, "deletions": 0, "language": "Go" }, { "path": "src/os/error_plan9.go", "patch": "@@ -7,3 +7,...
2024-08-27T06:04:40
vercel/next.js
d5cefb260671508391b0508b9187a79cb5b8a766
6b2aec16d7a852f093ec11da0a8324e363e68853
[test] Use new Redbox matchers in pages/ hydration-error test (#76350)
[ { "path": "test/development/acceptance/hydration-error.test.ts", "patch": "@@ -8,7 +8,7 @@ const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n // https://github.com/facebook/react/blob/main/packages/react-dom/src/__tests__/ReactDOMHydrationDiff-test.js used as a reference\n \n describe(...
2025-02-21T23:01:27
nodejs/node
44b8a061dffbe293fd1d195fed29b30f0b1f27b0
ab834ff861ea99b712e450c6283fcbb742d9fb0b
test_runner: fix async callback in describe not awaited PR-URL: https://github.com/nodejs/node/pull/48856 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -13,6 +13,7 @@ const {\n ObjectSeal,\n PromisePrototypeThen,\n PromiseResolve,\n+ SafePromisePrototypeFinally,\n ReflectApply,\n RegExpPrototypeExec,\n SafeMap,\n@@ -789,17 +790,23 @@ class Suite extends Test {\n const { ctx, args...
2023-07-23T10:22:35
facebook/react
fdc1d617a44cb9015c3bac3a6341b5af3311faf6
f320ef88f51fbdc5aba38bdf07108678a84f7339
Flag for client render fallback behavior on hydration mismatch (#22787) * Add flag for new client-render fallback behavior on hydration mismatch * gate test * gate tests too * fix test gating
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -1680,31 +1680,38 @@ describe('ReactDOMFizzServer', () => {\n \n // @gate experimental\n it('calls getServerSnapshot instead of getSnapshot', async () => {\n+ const ref = React.createRef();\n+\n function getServ...
2021-11-18T13:16:09
electron/electron
d8d6e2ebc0245d9a7c1fd1cae64419163645cfa9
8ce63a9f185f181b68bc484fc85d3a101bdce24e
build: update support.md on stable version bumps (#29381) * build: update support.md on stable version bumps * build: update supported on major stable & nightly bumps * test: updateSupported tests * chore: fix syntax * chore: use fspromise in version-bumper script/spec
[ { "path": "script/release/version-bumper.js", "patch": "@@ -1,17 +1,17 @@\n #!/usr/bin/env node\n \n const { GitProcess } = require('dugite');\n-const fs = require('fs');\n+const { promises: fs } = require('fs');\n const semver = require('semver');\n const path = require('path');\n-const { promisify } = req...
2021-06-02T19:53:23
golang/go
0fe6347732bdb9918e3af4e0c4b52f7f0c162894
3da6c94d5ed62bf0c7fe682dcf46a1e53b72c2d9
encoding/json: add embedded structs to the UnmarshalTypeError's Field Including embedded struct inforamtion in error message. Fixes #68941 Change-Id: I6a6f7d506104839a9a7cf1a2c3003272f5534a79 GitHub-Last-Rev: 717f680acafd3f6509c0495f9092e028be502750 GitHub-Pull-Request: golang/go#68966 Reviewed-on: https://go-review...
[ { "path": "doc/next/6-stdlib/99-minor/encoding/json/68941.md", "patch": "@@ -0,0 +1 @@\n+[UnmarshalTypeError.Field] now includes embedded structs to provide more detailed error messages.", "additions": 1, "deletions": 0, "language": "Markdown" }, { "path": "src/encoding/json/decode.go", ...
2024-08-27T14:35:59
facebook/react
f320ef88f51fbdc5aba38bdf07108678a84f7339
aa19d569b22ae447be18e768c97600656c080993
fix(typo): Esacpe -> Escape (#22780)
[ { "path": "packages/react-interactions/events/src/dom/create-event-handle/Focus.js", "patch": "@@ -69,7 +69,7 @@ function isValidKey(nativeEvent: KeyboardEvent): boolean {\n \n function isTextInput(nativeEvent: KeyboardEvent): boolean {\n const {key, target} = nativeEvent;\n- if (key === 'Tab' || key ===...
2021-11-16T21:43:25
vercel/next.js
7dccec013e9cdec022a3c67c4f6b724be5ed519f
69333f5140bc9aaec2f113807461c9b4e7d67766
[global-error] fallback to default error when user one fails (#76339)
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -41,8 +41,8 @@ import {\n } from '../../shared/lib/hooks-client-context.shared-runtime'\n import { useReducer, useUnwrapState } from './use-reducer'\n import {\n+ default as DefaultGlobalError,\n ErrorBoundary,\n- type ErrorCom...
2025-02-21T21:02:58
nodejs/node
841b29c49f9f96750f846a385862fd6bc821b1db
9c5e272daee12e7c2c422d117a78090f1183dd93
src: use ARES_SUCCESS instead of 0 Since error messages are also using defined values, it is more clear to use the defined value even when the operation succeeds. PR-URL: https://github.com/nodejs/node/pull/48834 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By...
[ { "path": "src/cares_wrap.cc", "patch": "@@ -1052,7 +1052,7 @@ int AnyTraits::Parse(\n return status;\n \n wrap->CallOnComplete(ret);\n- return 0;\n+ return ARES_SUCCESS;\n }\n \n int ATraits::Parse(\n@@ -1086,7 +1086,7 @@ int ATraits::Parse(\n Local<Array> ttls = AddrTTLToArray<ares_addrttl>(env,...
2023-07-23T10:11:17
rust-lang/rust
aec6b9b7bf541d386e5ef21a49f4ecfee17769ed
d1afde24db515ee04690a8137187f55a564ed478
Refactor libc pipe tests to use utility functions for error handling and data operations
[ { "path": "src/tools/miri/tests/pass-dep/libc/libc-pipe.rs", "patch": "@@ -5,6 +5,7 @@ use std::thread;\n \n #[path = \"../../utils/libc.rs\"]\n mod libc_utils;\n+use libc_utils::*;\n \n fn main() {\n test_pipe();\n@@ -25,69 +26,46 @@ fn main() {\n \n fn test_pipe() {\n let mut fds = [-1, -1];\n- ...
2025-12-17T20:56:28
electron/electron
97fde6dc9c9f26ac16b99700ede86832fa9a870f
3cfe5c6a21c3dbc91b39b44523f57f011dc9ccd0
build: fix macOS build (#29484)
[ { "path": "shell/browser/api/electron_api_app_mac.mm", "patch": "@@ -7,6 +7,8 @@\n #include \"base/path_service.h\"\n #include \"shell/browser/api/electron_api_app.h\"\n #include \"shell/common/electron_paths.h\"\n+#include \"shell/common/node_includes.h\"\n+#include \"shell/common/process_util.h\"\n \n #im...
2021-06-02T10:42:07
facebook/react
4ff5f5719b348d9d8db14aaa49a48532defb4ab7
ee8f146a61e628ba8da5bff414b0b1142b167426
Move unstable_scheduleHydration to ReactDOMHydrationRoot (#22455) * move unstable_scheduleHydration to ReactDOMHydrationRoot * move definition of schedule hydration * fix test? * prototype * fix test * remove gating because unstable_scheduleHydration is no longer gated through index.stable.js because it...
[ { "path": "packages/react-dom/index.classic.fb.js", "patch": "@@ -34,6 +34,5 @@ export {\n unstable_isNewReconciler,\n unstable_renderSubtreeIntoContainer,\n unstable_runWithPriority, // DO NOT USE: Temporarily exposed to migrate off of Scheduler.runWithPriority.\n- unstable_scheduleHydration,\n ve...
2021-11-15T22:15:01
golang/go
acce4558a0168e625e9c70f20018dad6225adc0e
d555358bf8b4d06c8f54d1c00d15a37c6ccb30f4
os: update the linux minimal version and fix a typo for zero-copy Change-Id: Ia6a2768be0e044112831c278d88ff31ba3caa9f9 Reviewed-on: https://go-review.googlesource.com/c/go/+/609298 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c...
[ { "path": "src/os/zero_copy_freebsd.go", "patch": "@@ -16,7 +16,7 @@ func (f *File) writeTo(w io.Writer) (written int64, handled bool, err error) {\n }\n \n func (f *File) readFrom(r io.Reader) (written int64, handled bool, err error) {\n-\t// copy_file_range(2) doesn't supports destinations opened with\n+\...
2024-08-29T04:58:35
vercel/next.js
ceced4f0a58804ee2a47ec9348dab1989fcc5a21
b45a3f511cf4b1a506954cd0185c4ddbc3ab54b0
Revert null check in mountLinkInstance (#76289) This null check was added as an incidental change in #75981 but I'm not convinced it's actually necessary. Even if it is, it needs to be fixed in the caller, because it means the type is incorrect. I have a suspicion that it was added before the fix to `useMergedRef` la...
[ { "path": "packages/next/src/client/app-dir/link.tsx", "patch": "@@ -245,9 +245,6 @@ function mountLinkInstance(\n router: AppRouterInstance,\n kind: PrefetchKind.AUTO | PrefetchKind.FULL\n ) {\n- // element can be falsy which can break WeakMap and observing\n- if (!element) return\n-\n let prefetch...
2025-02-21T19:14:07
nodejs/node
6c08b1fc026b5369086457a81e733938c14c0f45
9dd574c9e232515aa894795b8a2522f53024b6f7
test_runner: fix test_runner `test:fail` event type PR-URL: https://github.com/nodejs/node/pull/48854 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "doc/api/test.md", "patch": "@@ -2015,7 +2015,8 @@ Emitted when a test is enqueued for execution.\n * `data` {Object}\n * `details` {Object} Additional execution metadata.\n * `duration` {number} The duration of the test in milliseconds.\n- * `error` {Error} The error thrown by the test.\...
2023-07-22T16:02:40
electron/electron
3cfe5c6a21c3dbc91b39b44523f57f011dc9ccd0
31190d4c6d162044c380166372b1294bbe221fe7
fix: keep shifted character in menu accelerator (#29202) * fix: correctly handle shifted char in accelerator * test: use actual accelerator of NSMenuItem * chore: simplify KeyboardCodeFromStr * chore: GetAcceleratorTextAt is testing only
[ { "path": "patches/chromium/accelerator.patch", "patch": "@@ -1,16 +1,16 @@\n From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n From: Cheng Zhao <zcbenz@gmail.com>\n Date: Thu, 4 Oct 2018 14:57:02 -0700\n-Subject: accelerator.patch\n+Subject: fix: improve shortcut text of Accelerator\...
2021-06-02T07:32:48
facebook/react
489b4bdcca00ddc808276a230f334c575bce9c84
d4144e6e54276362b05f4319bb38939aff37bdaa
Fixed typos (#22763) * Fixed typos * Update ReactFiberWorkLoop.new.js * Update ReactFiberWorkLoop.old.js
[ { "path": "scripts/jest/matchers/toThrow.js", "patch": "@@ -4,7 +4,7 @@\n // Older versions use e.g. \"Cannot read property 'world' of undefined\"\n // Newer versions use e.g. \"Cannot read properties of undefined (reading 'world')\"\n // This file overrides the built-in toThrow() matches to handle both cas...
2021-11-15T17:31:35
golang/go
3d4daa38a763260e07f4745110f2b5fcbec25126
a9e6a96ac092cc5191d759488ee761e9a403ab8f
net: enable multipath TCP by default for listeners A previous change [1] was introduced to enable MPTCP by default for both the clients and servers, based on the discussions [2] in golang#56539, where MPTCP would be an opt-in for a release or two, and then would become an opt-out. This change was not accepted at the ...
[ { "path": "doc/godebug.md", "patch": "@@ -157,6 +157,17 @@ no-op. This behavior is controlled by the `randseednop` setting.\n For Go 1.24 it defaults to `randseednop=1`.\n Using `randseednop=0` reverts to the pre-Go 1.24 behavior.\n \n+Go 1.24 added new values for the `multipathtcp` setting.\n+The possible ...
2024-08-28T17:45:58
nodejs/node
44027fbca89bb43d48f0c787a03271e8d4201986
3f4c127f92654aa5b8e4b18f7e89cb4d80be113c
deps: V8: cherry-pick 93275031284c Original commit message: [cppgc] expose wrapper descriptor on CppHeap This makes it possible for embedders to: 1. Avoid creating wrapper objects that happen to have a layout that leads V8 to consider the object cppgc-managed while it's not. Refs: https://gi...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.13',\n+ 'v8_embedder_string': '-node.14',\n \n ##### V8 defaults for Node.js #####\n...
2023-06-26T17:40:22
facebook/react
d4144e6e54276362b05f4319bb38939aff37bdaa
200415c91c724e408c055445e8b99ac0f0c52dc4
fix : grammatical typo for test description (#22764) * fix : grammatical typo for test description * fix linting issues
[ { "path": "packages/react-reconciler/src/__tests__/ReactHooksWithNoopRenderer-test.js", "patch": "@@ -1184,7 +1184,7 @@ describe('ReactHooksWithNoopRenderer', () => {\n ]);\n });\n \n- // This update is exists to test an internal implementation detail:\n+ // This update exists to tes...
2021-11-15T16:44:48
rust-lang/rust
e04b950e1231b33d7dc951494b66f4315192bc81
019d0164da67a6b5bdc2309ec514ce32774086ec
change test_name placeholder to executable_arg fix replacing target on lib target kind
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/config.rs", "patch": "@@ -909,18 +909,18 @@ config_data! {\n /// Override the command used for bench runnables.\n /// The first element of the array should be the program to execute (for example, `cargo`).\n ///\n- //...
2026-01-03T05:07:57
vercel/next.js
7085190f17809be41c497ca5f4bf78bf82b8ce33
7c8e2b4e50449ce2d2c83de0b5638c61b7de2362
[dev-overlay] restructure dev-overlay project (#76291) - Moved source files from `_experimental/` to `ui/`. - Moved `dev-indicators` sources out of `internal/`. - Renamed files and variables to have explicit `app-`, `App`, `pages-` or `Pages` prefixes for better distinguish. - Updated snapshots that were caused by t...
[ { "path": "packages/next/.storybook/main.ts", "patch": "@@ -10,11 +10,7 @@ function getAbsolutePath(value: string): any {\n return dirname(require.resolve(join(value, 'package.json')))\n }\n const config: StorybookConfig = {\n- stories: [\n- // Could to '../src/**/*.stories.@(ts|tsx)', but not sure ho...
2025-02-21T16:45:09
golang/go
a9e6a96ac092cc5191d759488ee761e9a403ab8f
fc9f02c7aec81bcfcc95434d2529e0bb0bc03d66
context: document that WithValue returns a derived context Also replace "copy of parent" with "derived context" in doc comments. Fixes #68923 Change-Id: I319c1594f390e35b32b4e58ee979927bb84bfdf9 Reviewed-on: https://go-review.googlesource.com/c/go/+/606555 Reviewed-by: Sameer Ajmani <sameer@golang.org> Reviewed-by: ...
[ { "path": "src/context/context.go", "patch": "@@ -226,9 +226,10 @@ func TODO() Context {\n // After the first call, subsequent calls to a CancelFunc do nothing.\n type CancelFunc func()\n \n-// WithCancel returns a copy of parent with a new Done channel. The returned\n-// context's Done channel is closed wh...
2024-08-18T00:53:19
nodejs/node
4a2e9bacab13859e9440685888ca4f94fe320eda
399dd8e6c470336c043a8273edc83227cb3f3f37
deps: V8: cherry-pick 9f4b7699f68e Original commit message: Fix mistake in the skip branch of test/mjsunit/regress-1320641.js It was doing a `string.test(regex)` which was wrong. It's supposed to be `regex.test(string)`. It wasn't caught in the CI because the skip path is not normally taken in the V8...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.12',\n+ 'v8_embedder_string': '-node.13',\n \n ##### V8 defaults for Node.js #####\n...
2023-07-19T17:07:07
facebook/react
200415c91c724e408c055445e8b99ac0f0c52dc4
0b329511b9aaff7e27990fc16354db8ea0a16de8
fix typos (#22288)
[ { "path": "packages/react-devtools-inline/README.md", "patch": "@@ -66,7 +66,7 @@ const DevTools = initialize(contentWindow);\n \n ### Supporting named hooks\n \n-DevTools can display hook \"names\" for an inspected component, although determining the \"names\" requires loading the source (and source-maps),...
2021-11-15T15:59:35
golang/go
239666cd7343d46c40a5b929c8bec8b532dbe83f
894ead51c5fe1c2a0c6b0bca473177c2b5f0f137
os: dup pidfd if caller sets PidFD manually Fixes #68984 Change-Id: I16d25777cb38a337cd4204a8147eaf866c3df9e1 Reviewed-on: https://go-review.googlesource.com/c/go/+/607695 Reviewed-by: Kirill Kolyshkin <kolyshkin@gmail.com> Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-...
[ { "path": "src/os/exec_posix.go", "patch": "@@ -35,10 +35,11 @@ func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err e\n \t\t}\n \t}\n \n+\tattrSys, shouldDupPidfd := ensurePidfd(attr.Sys)\n \tsysattr := &syscall.ProcAttr{\n \t\tDir: attr.Dir,\n \t\tEnv: attr.Env,\n-\t\tSys: ensure...
2024-08-22T08:22:53
nodejs/node
b0cc131e8f9bb44edfa96133f7be4477023eaf62
ce73e887a34aa619f36056739326d7a7da6bfd2f
test: delete test-net-bytes-per-incoming-chunk-overhead The test's assumptions about RSS are no longer valid, at least with Fedora 38. Closes: https://github.com/nodejs/node/issues/48490 PR-URL: https://github.com/nodejs/node/pull/48811 Fixes: https://github.com/nodejs/node/issues/48490 Reviewed-By: Luigi Pinca <luig...
[ { "path": "test/pummel/test-net-bytes-per-incoming-chunk-overhead.js", "patch": "@@ -1,50 +0,0 @@\n-// Flags: --expose-gc\n-'use strict';\n-\n-const common = require('../common');\n-\n-if (process.config.variables.asan) {\n- common.skip('ASAN messes with memory measurements');\n-}\n-\n-if (common.isPi) {\n...
2023-07-20T13:20:44
facebook/react
0b329511b9aaff7e27990fc16354db8ea0a16de8
e6f60d2adda7d4ebf6631eb8166572c3706d52a3
chore: fix comment typo (#22657)
[ { "path": "packages/react-reconciler/src/__tests__/ReactCache-test.js", "patch": "@@ -1132,7 +1132,7 @@ describe('ReactCache', () => {\n \n // Unmount children: the first text cache instance is created only after the root\n // commits, so both fresh cache instances are released by their cache bounda...
2021-11-15T15:58:30
electron/electron
3b755495113dd88bd2d8bc6c89e2c861acc353e7
dee4c4b9088163b0e6d06a960730874e2c65208b
fix: inspector context menu throwing an error (#29436)
[ { "path": "lib/browser/devtools.ts", "patch": "@@ -54,7 +54,7 @@ const isChromeDevTools = function (pageURL: string) {\n };\n \n const assertChromeDevTools = function (contents: Electron.WebContents, api: string) {\n- const pageURL = contents._getURL();\n+ const pageURL = contents.getURL();\n if (!isChr...
2021-06-02T03:39:48
golang/go
894ead51c5fe1c2a0c6b0bca473177c2b5f0f137
88dee90d6a296d7ed479505b6dc862a54f026c1c
doc: fix wording of GODEBUG history item from CL 606055 Change-Id: Ia53d4a58810948d83a3e87e08239602da1bad815 Reviewed-on: https://go-review.googlesource.com/c/go/+/609935 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submi...
[ { "path": "doc/godebug.md", "patch": "@@ -153,7 +153,7 @@ and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n ### Go 1.24\n \n Go 1.24 changed the global [`math/rand.Seed`](/pkg/math/rand/#Seed) to be a\n-no-op. This setting is controlled by the `randseednop` setting.\n+no-op. This beh...
2024-08-30T20:24:40