repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
5e8a7316658c2f300a375041b6e0a606fec4c5f2
a799fa51896b63339f75f9a354c2d70fa8815ac2
README: fix CC BY license name Change-Id: Idf3c4427426e3cb74c7749762f2b4f621cf82dba GitHub-Last-Rev: 86f51a5d504fdb596145a41e305bea1171776daa GitHub-Pull-Request: golang/go#68518 Reviewed-on: https://go-review.googlesource.com/c/go/+/599515 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Dmitri Shuralyov ...
[ { "path": "README.md", "patch": "@@ -4,7 +4,7 @@ Go is an open source programming language that makes it easy to build simple,\n reliable, and efficient software.\n \n ![Gopher image](https://golang.org/doc/gopher/fiveyears.jpg)\n-*Gopher image by [Renee French][rf], licensed under [Creative Commons 4.0 Att...
2024-07-20T01:18:47
nodejs/node
38d261ae66022a9a412f39a631f2ba8ce7650ee6
4b4a0c4d54ba1037d4b016e75b50dc2e560cfd8b
deps: V8: cherry-pick 5f025d1ca2ca Original commit message: [wasm] Fix deadlock in async wrapper compilation If compilation is cancelled while wrapper compilation is running, the tasks spawned for the {AsyncCompileJSToWasmWrapperJob} will return immediately, but {GetMaxConcurrency} will still return ...
[ { "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.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "...
2023-04-18T16:05:58
electron/electron
2e13ce58c001f06814828786a2a638f3bc79e825
4456c50b35d887b8e1735e62110edb744d331095
docs: fix header level of some events in app.md (#27860)
[ { "path": "docs/api/app.md", "patch": "@@ -391,7 +391,7 @@ which contains more information about why the render process disappeared. It\n isn't always because it crashed. The `killed` boolean can be replaced by\n checking `reason === 'killed'` when you switch to that event.\n \n-#### Event: 'render-process...
2021-02-24T09:04:41
facebook/react
86715efa23c02dd156e61a4476f28045bb5f4654
a8a4742f1c54493df00da648a3f9d26e3db9c8b5
Resolve the true entry point during tests (#21505) * Resolve the entry point for tests the same way builds do This way the source tests, test the same entry point configuration. * Gate test selectors on www These are currently only exposed in www builds * Gate createEventHandle / useFocus on www These a...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFiberAsync-test.js", "patch": "@@ -286,7 +286,7 @@ describe('ReactDOMFiberAsync', () => {\n expect(ops).toEqual(['BC', 'ABCD']);\n });\n \n- // @gate experimental\n+ // @gate experimental || www\n it('flushControlled flushes updates bef...
2021-06-03T01:03:29
vercel/next.js
e8b41f6e508a90dc960add2c033f968741cba805
74981996243aa8c09906822bfcb0cae02018f6df
Add regression test for previously hanging compilation with Turbopack (#75507) When adding or removing a `"use cache"` directive to a function or module, Turbopack was not able to finish the compilation and hung. This is now fixed, and we're adding the test to prevent regression.
[ { "path": "test/development/app-dir/use-cache-hmr/use-cache-hmr.test.ts", "patch": "@@ -101,4 +101,29 @@ describe('use-cache-hmr', () => {\n })\n )\n })\n+\n+ it('should successfully finish compilation when \"use cache\" directive is added/removed', async () => {\n+ await next.browser('/')...
2025-02-05T14:26:29
golang/go
a799fa51896b63339f75f9a354c2d70fa8815ac2
f0de94ff127db9b53f3f5877088d28afe1a85692
slices: explicitly document nil and empty slice equality Fixes #68472 Change-Id: I21282621d679d9e2b032256b338c0b5ff107c8f4 Reviewed-on: https://go-review.googlesource.com/c/go/+/599816 Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Dmitri Shuralyov <dmitsh...
[ { "path": "src/slices/slices.go", "patch": "@@ -15,6 +15,7 @@ import (\n // elements equal. If the lengths are different, Equal returns false.\n // Otherwise, the elements are compared in increasing index order, and the\n // comparison stops at the first unequal pair.\n+// Empty and nil slices are considere...
2024-07-19T22:34:02
rust-lang/rust
7898df42b99224d7e706ec4d28891f0e8ad6c9e9
6a884ad1b502fe48307d363858510702429fc735
Improve missing core error for tier 3 targets Tier 3 targets can't be installed via rustup, so don't recommend that. Additionally, do recommend build-std on stable because it's the recommended way to use these targets, people should switch to nightly.
[ { "path": "compiler/rustc_metadata/src/errors.rs", "patch": "@@ -466,6 +466,7 @@ pub struct CannotFindCrate {\n pub profiler_runtime: Symbol,\n pub locator_triple: TargetTuple,\n pub is_ui_testing: bool,\n+ pub is_tier_3: bool,\n }\n \n impl<G: EmissionGuarantee> Diagnostic<'_, G> for CannotF...
2025-12-27T12:17:28
facebook/react
8f6163cbed64d1eff23b91159d6eef34a2ee9c27
28625c6f45423e6edc5ca0e2932281769c0d431e
Fix Fizz exported types (#21596)
[ { "path": "packages/react-dom/src/server/ReactDOMFizzServerBrowser.js", "patch": "@@ -21,15 +21,15 @@ import {\n createRootFormatContext,\n } from './ReactDOMServerFormatConfig';\n \n-type Options = {\n+type Options = {|\n identifierPrefix?: string,\n namespaceURI?: string,\n progressiveChunkSize?: ...
2021-06-01T17:02:04
electron/electron
b181dae146f554018d7eef1c48dcda24c2c19e3c
1b87cd6941862852bbbec7b668872865032991f1
fix: isFullScreen typo (#27823) * fix isFullScreen typo * Update lib/browser/api/base-window.ts Co-authored-by: John Kleinschmidt <jkleinsc@github.com> Co-authored-by: Tony Wu <tonywoo@fb.com> Co-authored-by: John Kleinschmidt <jkleinsc@github.com>
[ { "path": "lib/browser/api/base-window.ts", "patch": "@@ -43,7 +43,7 @@ Object.defineProperty(BaseWindow.prototype, 'kiosk', {\n });\n \n Object.defineProperty(BaseWindow.prototype, 'documentEdited', {\n- get: function () { return this.isFullscreen(); },\n+ get: function () { return this.isDocumentEdited(...
2021-02-22T20:33:46
nodejs/node
4b4a0c4d54ba1037d4b016e75b50dc2e560cfd8b
0736d0b3f520acbd32701899056966a25db1924b
deps: V8: cherry-pick a8a11a87cb72 Original commit message: [wasm] Simplify CompileJSToWasmWrapperJob This CL merges some of AsyncCompileJSToWasmWrapperJob and CompileJSToWasmWrapperJob into a common base class. Both jobs now loop on a vector with an atomic index. Bug: chromium:1423615 Chang...
[ { "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.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "...
2023-04-18T16:05:46
golang/go
f0de94ff127db9b53f3f5877088d28afe1a85692
3959d54c0bd5c92fe0a5e33fedb0595723efc23b
cmd/compile: don't inline runtime functions in -d=checkptr build Runtime functions, e.g. internal/abi.NoEscape, should not be instrumented with checkptr. But if they are inlined into a checkptr-enabled function, they will be instrumented, and may result in a check failure. Let the compiler not inline runtime function...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -1007,6 +1007,15 @@ func canInlineCallExpr(callerfn *ir.Func, n *ir.CallExpr, callee *ir.Func, bigCa\n \t\treturn false, 0, false\n \t}\n \n+\tif base.Debug.Checkptr != 0 && types.IsRuntimePkg(callee.Sym().Pkg) {\n+\t\t// We don't intrument ru...
2024-07-18T18:51:34
vercel/next.js
74981996243aa8c09906822bfcb0cae02018f6df
b6f8743ecdd49b6c394c9689a963f8e074bd618a
test: fix eslint plugin test (#75687)
[ { "path": "test/production/eslint-plugin-deps/index.test.ts", "patch": "@@ -82,6 +82,44 @@ describe('eslint plugin deps', () => {\n { \"allowComparingNullableBooleansToTrue\": false }\n ]\n }\n+}\n+ `,\n+ 'tsconfig.json': `{\n+ \"compilerOptions\": {\n+ \"target\": \"ES2017\",\...
2025-02-05T14:12:32
facebook/react
d75105fa92cfc77f41bcd56bf9eb127a132e44cb
3c2341416ab3631dffe7a6e525e3cd683c5fa82a
DevTools: Format error message (#21580) To support GitHub API fuzzy issue search
[ { "path": "packages/react-devtools-shared/src/inspectedElementCache.js", "patch": "@@ -110,7 +110,7 @@ export function inspectElement(\n if (rendererID == null) {\n const rejectedRecord = ((newRecord: any): RejectedRecord);\n rejectedRecord.status = Rejected;\n- rejectedRecord.value = `...
2021-05-27T19:44:14
electron/electron
1b87cd6941862852bbbec7b668872865032991f1
912c9c22545e3ed9020da8cb0088f230136c262e
Update feature_request.yml (#27825) This will fix the Feature Request template. More details: https://gh-community.github.io/issue-template-feedback/changes
[ { "path": ".github/ISSUE_TEMPLATE/feature_request.yml", "patch": "@@ -2,33 +2,38 @@ name: Feature Request\n about: Suggest an idea for Electron\n title: \"[Feature Request]: \"\n labels: \"enhancement ✨\"\n-inputs:\n+body:\n - type: textarea\n attributes:\n label: Preflight Checklist\n description...
2021-02-22T15:58:41
nodejs/node
33231b0e890804ab6985b81d18b57c417fd1ba1b
a6ad5d89e0cb2058115fadaa5d052f834dd5ea36
doc: mark global object as legacy PR-URL: https://github.com/nodejs/node/pull/47819 Fixes: https://github.com/nodejs/node/issues/47784 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collin...
[ { "path": "doc/api/globals.md", "patch": "@@ -509,6 +509,8 @@ added: v0.1.27\n \n <!-- type=global -->\n \n+> Stability: 3 - Legacy. Use [`globalThis`][] instead.\n+\n * {Object} The global namespace object.\n \n In browsers, the top-level scope is the global scope. This means that\n@@ -1028,6 +1030,7 @@ A ...
2023-05-09T17:48:04
rust-lang/rust
ee9db304214c6705b7ba2106e50b3eada99ee24c
106e88e0baaa87dfd56c533ca795f484e849e501
fix late night markdown
[ { "path": "library/std/src/os/unix/net/stream.rs", "patch": "@@ -63,7 +63,7 @@ use crate::time::Duration;\n /// On platforms that support it, we pass the close-on-exec flag to atomically create the socket and\n /// set it as CLOEXEC. On Linux, this was added in 2.6.27. See [`socket(2)`] for more information...
2025-12-27T09:59:21
vercel/next.js
5cd0cce23a61e6289a2cd58d0d10f969ca420e71
c4731a2e722fc59312c90c6a72e1c7ae88e66976
Turbopack: disambiguate `TaskInput::resolve` (#75661) Disambiguate `TaskInput::resolve` from `Vc::resolve` and `ResolvedVc::resolve`. Turns out there was only a single instance where `resolve()` turned out to be the wrong function anyway...
[ { "path": "turbopack/crates/turbo-tasks-macros/src/derive/task_input_macro.rs", "patch": "@@ -112,7 +112,7 @@ pub fn derive_task_input(input: TokenStream) -> TokenStream {\n quote! {\n {\n #(\n- let #fields = turbo_tasks:...
2025-02-05T13:17:00
facebook/react
5151466bab761cd6124d630a8a77d10b1cecbdc9
0d493dcda96fc86242cf9a05a44130978a56fbdd
Updated DevTools bug Workflow Workflow now auto-assigns issues needing more information to the person who reported them
[ { "path": ".github/workflows/devtools_check_repro.yml", "patch": "@@ -45,12 +45,20 @@ jobs:\n debug(`found URL \"${url}\"`);\n debug(`found repro steps \"${reproSteps}\"`);\n \n- function formatComment(comment) {\n- return comment\n+ async function ...
2021-05-27T13:49:44
golang/go
3959d54c0bd5c92fe0a5e33fedb0595723efc23b
70491a81113e7003e314451f3e3cf134c4d41dd7
runtime: mark lockWithRankMayAcquire as nosplit The function is called in nosplit context already. Fixes #68525 Change-Id: I8b9e324335b7c605d5a20cacdd58df09b7a7cf52 Reviewed-on: https://go-review.googlesource.com/c/go/+/599675 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Michael Knyszek <mknyszek@googl...
[ { "path": "src/runtime/lockrank_off.go", "patch": "@@ -42,6 +42,9 @@ func releaseLockRankAndM(rank lockRank) {\n \treleasem(getg().m)\n }\n \n+// This function may be called in nosplit context and thus must be nosplit.\n+//\n+//go:nosplit\n func lockWithRankMayAcquire(l *mutex, rank lockRank) {\n }\n ", ...
2024-07-19T17:55:15
rust-lang/rust
e80997d02c072b698b6e90acce2bb75a133657da
9ab53d6d9e51cdaa1e0b5eaa5fcef6fca328da91
Fix grammar in "Use of AI tools" section
[ { "path": "src/tools/rust-analyzer/CONTRIBUTING.md", "patch": "@@ -38,6 +38,6 @@ considered accepted feel free to just drop a comment and ask!\n \n AI tool use is not discouraged on the rust-analyzer codebase, as long as it meets our quality standards.\n We kindly ask you to disclose usage of AI tools in yo...
2025-12-27T09:58:14
nodejs/node
ad7a9a1c79c46b1fb3007dd42be16b01c9b94e63
b2f6eedb65cb9252879a7843ce43f3e3c5ff8da4
doc: ntfs junction points must link to directories Fixes: https://github.com/nodejs/node/issues/40184 PR-URL: https://github.com/nodejs/node/pull/47907 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Debadree Chatterjee <debadree333@gmail.com> Reviewed-By: ...
[ { "path": "doc/api/fs.md", "patch": "@@ -1596,7 +1596,8 @@ The `type` argument is only used on Windows platforms and can be one of `'dir'`,\n autodetect `target` type and use `'file'` or `'dir'`. If the `target` does not\n exist, `'file'` will be used. Windows junction points require the destination\n path ...
2023-05-09T09:21:42
electron/electron
912c9c22545e3ed9020da8cb0088f230136c262e
e5540febc2a95032c66d35f185f421ba544e3f43
fix: cap sendInputEvent text length at n-1 (#27827)
[ { "path": "shell/common/gin_converters/blink_converter.cc", "patch": "@@ -209,9 +209,9 @@ bool Converter<blink::WebKeyboardEvent>::FromV8(v8::Isolate* isolate,\n size_t text_length_cap = blink::WebKeyboardEvent::kTextLengthCap;\n base::string16 text16 = base::UTF8ToUTF16(str);\n \n- memset(out->t...
2021-02-22T15:38:59
vercel/next.js
1bdc679b2012fc3c0d03cbe0a594ae9020973fcd
cde0f93aa79337e2e0d54fb83974c809e1c80e28
Turbopack: uncell RequireContextValue (#75683) This might make a difference if the `RequireContextMap` is huge and used across many files More importantly, this seems to solve this failure in the testing backend on https://github.com/vercel/next.js/pull/75440: ``` called 'Result::unwrap()' on an 'Err' value: ...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/mod.rs", "patch": "@@ -26,7 +26,7 @@ use swc_core::{\n },\n };\n use turbo_rcstr::RcStr;\n-use turbo_tasks::{FxIndexMap, FxIndexSet, ResolvedVc, Vc};\n+use turbo_tasks::{FxIndexMap, FxIndexSet, Vc};\n use turbopack_core::compile_time_info::{\...
2025-02-05T12:46:11
facebook/react
0d493dcda96fc86242cf9a05a44130978a56fbdd
bb1c8215569f59b70276e8939bd8a59aa7f28f53
Removed _debugID field from Fiber - Issue #21558 (#21570) * Removed _debugID field from Fiber * Update ReactFunctionComponent-test.js Co-authored-by: Brian Vaughn <brian.david.vaughn@gmail.com>
[ { "path": "packages/react-dom/src/__tests__/ReactFunctionComponent-test.js", "patch": "@@ -284,10 +284,8 @@ describe('ReactFunctionComponent', () => {\n }).toErrorDev('Warning: Function components cannot be given refs.');\n // Should be deduped (same internal instance, no additional warnings)\n ...
2021-05-26T20:53:18
rust-lang/rust
06a6a008957afac4dcac9fd31ea523a5e3ea7fc1
22fbbd430681b7bc4e3098766f040b37080ffb47
Minor fixup
[ { "path": "src/tools/rust-analyzer/crates/ide-db/src/syntax_helpers/node_ext.rs", "patch": "@@ -1,6 +1,7 @@\n //! Various helper functions to work with SyntaxNodes.\n use std::ops::ControlFlow;\n \n+use either::Either;\n use itertools::Itertools;\n use parser::T;\n use span::Edition;\n@@ -546,7 +547,11 @@ p...
2025-12-27T09:04:12
golang/go
70491a81113e7003e314451f3e3cf134c4d41dd7
7321aa91c6c7f4c7faa59819a2013971712eba84
maps: document handling of non-reflexive keys Fixes #63312 Change-Id: I7861bddcd4c6dc208b4449b923eb2785a122aadf Reviewed-on: https://go-review.googlesource.com/c/go/+/553157 Reviewed-by: Keith Randall <khr@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-b...
[ { "path": "src/maps/maps.go", "patch": "@@ -3,6 +3,9 @@\n // license that can be found in the LICENSE file.\n \n // Package maps defines various functions useful with maps of any type.\n+//\n+// This package does not have any special handling for non-reflexive keys\n+// (keys k where k != k), such as floati...
2023-12-29T20:20:03
nodejs/node
0b3fcfcf351fba9f29234976eeec4afb09ae2cc0
7fe4745ca151f6ab959d2a41444b1e51451c468d
quic: fix typo in endpoint.h PR-URL: https://github.com/nodejs/node/pull/47911 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
[ { "path": "src/quic/endpoint.h", "patch": "@@ -453,7 +453,7 @@ class Endpoint final : public AsyncWrap, public Packet::Listener {\n // maps for this rather than one to avoid creating a whole bunch of\n // BaseObjectPtr references. The primary map (sessions_) just maps\n // the original CID to the Sess...
2023-05-08T09:47:28
electron/electron
a0141f8d6c0ee0b2802a80dd75bf1ac13b219988
1e4f67c19750db33a2877c5e8d94ba31ebf4f2e8
fix: pass IsScreen via parameter instead of sync IPC method (#27774)
[ { "path": "patches/chromium/feat_enable_offscreen_rendering_with_viz_compositor.patch", "patch": "@@ -8,25 +8,21 @@ rendering with the viz compositor by way of a custom HostDisplayClient\n and LayeredWindowUpdater.\n \n diff --git a/components/viz/host/host_display_client.cc b/components/viz/host/host_displ...
2021-02-19T23:28:48
vercel/next.js
cde0f93aa79337e2e0d54fb83974c809e1c80e28
bcee095a9497a3c8ecf6a9a4a54ec29385f52154
Turbopack: don't watch output FS (#75680) AFAICT, Next.js doesn't do this either and this seems to solve this error ``` thread '<unnamed>' panicked at turbopack/crates/turbo-tasks-backend/src/backend/mod.rs:949:13: Dependency tracking is disabled so invalidation is not allowed thread 'tokio-runtime-worker' panicked a...
[ { "path": "turbopack/crates/turbopack-cli/src/util.rs", "patch": "@@ -67,6 +67,5 @@ pub async fn project_fs(project_dir: RcStr) -> Result<Vc<Box<dyn FileSystem>>> {\n #[turbo_tasks::function]\n pub async fn output_fs(project_dir: RcStr) -> Result<Vc<Box<dyn FileSystem>>> {\n let disk_fs = DiskFileSystem...
2025-02-05T10:58:33
facebook/react
bb1c8215569f59b70276e8939bd8a59aa7f28f53
7841d0695ae4bde9848cf8953baf34d312d0cced
Fixed localhost URL check Noticed that it missed 21568 because of a leading "/"
[ { "path": ".github/workflows/devtools_check_repro.yml", "patch": "@@ -178,7 +178,7 @@ jobs:\n Issues without repros are automatically closed but we will re-open if you update with repro info.\n `.trim();\n \n- if (url.includes(\"/localhost\")) {\n+ if (url.inc...
2021-05-26T14:43:51
rust-lang/rust
f2b640accb0f4364ef3e189b34af03ebabe8dea7
c7aa99f36ccad2c127edec5be493cab0b152f436
map error from cmd.spawn in npm::install If the tool (yarn) does not exists, spawn() raise an error, but the error message is just like a `No such file or directory`. So it is hard to understand which application/file/directory has a problem. This commit maps the error to expose the problem is around yarn.
[ { "path": "src/build_helper/src/npm.rs", "patch": "@@ -22,7 +22,16 @@ pub fn install(src_root_path: &Path, out_dir: &Path, yarn: &Path) -> Result<Path\n cmd.arg(\"--frozen\");\n \n cmd.current_dir(out_dir);\n- let exit_status = cmd.spawn()?.wait()?;\n+ let exit_status = cmd\n+ .spawn()\...
2025-12-27T09:08:00
golang/go
7321aa91c6c7f4c7faa59819a2013971712eba84
420037b16de64f1117bd47a4f3448990fb137fd0
cmd: vendor golang.org/x/telemetry@0b706e1 Update x/telemetry to fix problems caused by the file rotation timer. Commands run: go get golang.org/x/telemetry@0b706e1 go mod tidy go mod vendor Fixes golang/go#68497 Change-Id: I29861ec89dfaaf260eb051eb23ab9251903b5ea8 Reviewed-on: https://go-review.googlesource....
[ { "path": "src/cmd/go.mod", "patch": "@@ -9,7 +9,7 @@ require (\n \tgolang.org/x/mod v0.19.0\n \tgolang.org/x/sync v0.7.0\n \tgolang.org/x/sys v0.22.0\n-\tgolang.org/x/telemetry v0.0.0-20240712210958-268b4a8ec2d7\n+\tgolang.org/x/telemetry v0.0.0-20240717194752-0b706e19b701\n \tgolang.org/x/term v0.20.0\n \...
2024-07-17T20:18:06
electron/electron
1e4f67c19750db33a2877c5e8d94ba31ebf4f2e8
84aba24a2a669cadd8124bdb4f2073ca5438d631
fix: gather crash data for unexpected helper path (#27804)
[ { "path": "shell/browser/electron_browser_client.cc", "patch": "@@ -13,6 +13,7 @@\n \n #include \"base/base_switches.h\"\n #include \"base/command_line.h\"\n+#include \"base/debug/crash_logging.h\"\n #include \"base/environment.h\"\n #include \"base/files/file_util.h\"\n #include \"base/json/json_reader.h\"...
2021-02-19T23:08:49
nodejs/node
7fe4745ca151f6ab959d2a41444b1e51451c468d
2dc4290662d57e378f9b8902b426940a5200be1a
module: refactor to use `normalizeRequirableId` in the CJS module loader `BuiltinModule.normalizeRequirableId()` was introduced in https://github.com/nodejs/node/pull/47779 to fix a bug in the require function of SEAs and Snapshots, so that built-in modules with the `node:` scheme could be required correctly. This cha...
[ { "path": "lib/internal/bootstrap/realm.js", "patch": "@@ -287,17 +287,16 @@ class BuiltinModule {\n }\n \n static normalizeRequirableId(id) {\n- let normalizedId = id;\n if (StringPrototypeStartsWith(id, 'node:')) {\n- normalizedId = StringPrototypeSlice(id, 5);\n- }\n-\n- if (!Builti...
2023-05-08T08:17:13
facebook/react
a731a51696239a69a6cd89cdd34f23ce2fc39099
51ebccc37482f84e41417ef2917b0e4e44cc7465
Add GitHub action to check for bug repro (#21542)
[ { "path": ".github/workflows/devtools_check_repro.yml", "patch": "@@ -0,0 +1,209 @@\n+name: DevTools Check for bug repro\n+on:\n+ issues:\n+ types: [opened, edited]\n+ issue_comment:\n+ types: [created, edited]\n+\n+jobs:\n+ check-repro:\n+ runs-on: ubuntu-latest\n+ steps:\n+ - uses: act...
2021-05-21T19:48:12
vercel/next.js
dbe74ccd21b0abae5dc7e1d73b09d852e8e75d09
a50782c7d2d5491528baa1485b6136b60fe45b55
Unflake `cookies/headers/draftMode in "use cache"` test (#75675) [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%40test.name%3A%22use-cache%20should%20error%20when%2...
[ { "path": "test/e2e/app-dir/use-cache/use-cache.test.ts", "patch": "@@ -101,17 +101,21 @@ describe('use-cache', () => {\n \n it('should error when cookies/headers/draftMode is used inside \"use cache\"', async () => {\n const browser = await next.browser('/errors')\n- expect(await browser.waitForEl...
2025-02-05T10:19:00
golang/go
420037b16de64f1117bd47a4f3448990fb137fd0
87abb4afb63918d3e5ee5d7ebd196386fa22e368
os: don't try to signal PID -1 on Unix This restores behavior that we lost in CL 588675. Fixes #68496 Change-Id: I1740986bed647835986d54109071b7a6b37413d5 Reviewed-on: https://go-review.googlesource.com/c/go/+/599015 Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-projec...
[ { "path": "src/os/exec_unix.go", "patch": "@@ -103,6 +103,9 @@ func (p *Process) signal(sig Signal) error {\n }\n \n func (p *Process) pidSignal(s syscall.Signal) error {\n+\tif p.Pid == pidReleased {\n+\t\treturn errors.New(\"os: process already released\")\n+\t}\n \tif p.Pid == pidUnset {\n \t\treturn err...
2024-07-17T16:23:09
facebook/react
e0bffeeb013f982cd3fd372452efb4f235af0072
549aaacbb0978e6570a4a85d9ba998fa091ec79b
Update devtools_bug_report.yml
[ { "path": ".github/ISSUE_TEMPLATE/devtools_bug_report.yml", "patch": "@@ -7,7 +7,9 @@ body:\n attributes:\n label: Website or app\n description: |\n- Which website or app were you using when the bug happened? This should be a public URL, GitHub repo, or Code Sandbox app so the React team can ...
2021-05-20T18:52:08
nodejs/node
2dc4290662d57e378f9b8902b426940a5200be1a
c15bafdaf4ea4831e31696b9e829c31f3b3e02df
child_process: use signal.reason in child process abort Fixes: https://github.com/nodejs/node/issues/47814 PR-URL: https://github.com/nodejs/node/pull/47817 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
[ { "path": "lib/child_process.js", "patch": "@@ -712,12 +712,12 @@ function normalizeSpawnArguments(file, args, options) {\n };\n }\n \n-function abortChildProcess(child, killSignal) {\n+function abortChildProcess(child, killSignal, reason) {\n if (!child)\n return;\n try {\n if (child.kill(kil...
2023-05-08T08:17:03
electron/electron
b12e47b798b329ed86fcaea1a07734ec5b8b8275
599f398ddc4d960c6d338fae4309e2a522803061
fix: don't create last saved path if none exists (#27745)
[ { "path": "shell/browser/electron_download_manager_delegate.cc", "patch": "@@ -37,15 +37,27 @@ base::FilePath CreateDownloadPath(const GURL& url,\n const std::string& content_disposition,\n const std::string& suggested_filename,\n ...
2021-02-18T23:27:29
rust-lang/rust
d42f7ea7cadb636c9b0a0f63c709910382e637a7
722e3102a22c529bade40c61f63bb3d88845360a
fixup debugger files wrt to `MaybeDangling` - fixup `BTreeMap` gdb provider - fixup `ManuallyDrop` natvis thingy Now that `MaybeUninit` contains `ManuallyDrop` which contains `MaybeDangling` (tbc this is the addition), we need to unwrap one more layer.
[ { "path": "src/etc/gdb_providers.py", "patch": "@@ -298,20 +298,20 @@ def cast_to_internal(node):\n \n for i in xrange(0, length + 1):\n if height > 0:\n- child_ptr = edges[i][\"value\"][\"value\"]\n+ child_ptr = edges[i][\"value\"][\"value\"][ZERO_FIELD]\n ...
2025-12-07T17:04:13
vercel/next.js
d70cac3eb4dee1d1361629d1b4c765365f184e26
0783eb807d31017bed40249a27bbf7fbb96dbe4b
[Error Overlay] Comprehensive refinement (#75471) This PR adds a lot of polish to the experimental Error Overlay: https://github.com/user-attachments/assets/2540b966-c61d-43eb-b816-5ef25f3ecb11 ### Motion - Stacked layers transition smoothly when switching between errors - Height transition for the dialog pa...
[ { "path": "packages/next/.storybook/preview.ts", "patch": "@@ -13,7 +13,7 @@ const preview: Preview = {\n },\n backgrounds: {\n values: [\n- { name: 'backdrop', value: 'rgb(44, 44, 46);' },\n+ { name: 'backdrop', value: 'rgba(250, 250, 250, 0.80)' },\n { name: 'background...
2025-02-05T04:37:38
facebook/react
549aaacbb0978e6570a4a85d9ba998fa091ec79b
132b72d7b668cbdabb06a44bd62979b212fc8b6d
Update devtools_bug_report.yml
[ { "path": ".github/ISSUE_TEMPLATE/devtools_bug_report.yml", "patch": "@@ -7,7 +7,7 @@ body:\n attributes:\n label: Website or app\n description: |\n- Which website or app were you using when the bug happened?\n+ Which website or app were you using when the bug happened? This should be a ...
2021-05-20T18:51:35
nodejs/node
c15bafdaf4ea4831e31696b9e829c31f3b3e02df
9398ff1dea564807378f485deae2eecaf5fde993
net: only defer _final call when connecting Fixes: https://github.com/nodejs/node/issues/47322 PR-URL: https://github.com/nodejs/node/pull/47385 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com>
[ { "path": "lib/net.js", "patch": "@@ -508,7 +508,7 @@ Socket.prototype._unrefTimer = function _unrefTimer() {\n // sent out to the other side.\n Socket.prototype._final = function(cb) {\n // If still connecting - defer handling `_final` until 'connect' will happen\n- if (this.pending) {\n+ if (this.conn...
2023-05-08T07:47:48
golang/go
87abb4afb63918d3e5ee5d7ebd196386fa22e368
8c88f0c7365dc329506073e035f9609c36fe7020
runtime: avoid multiple records with identical stacks from MutexProfile When using frame pointer unwinding, we defer frame skipping and inline expansion for call stacks until profile reporting time. We can end up with records which have different stacks if no frames are skipped, but identical stacks once skipping is t...
[ { "path": "src/runtime/mprof.go", "patch": "@@ -9,6 +9,7 @@ package runtime\n \n import (\n \t\"internal/abi\"\n+\t\"internal/goarch\"\n \t\"internal/profilerecord\"\n \t\"internal/runtime/atomic\"\n \t\"runtime/internal/sys\"\n@@ -542,36 +543,80 @@ func saveblockevent(cycles, rate int64, skip int, which bu...
2024-07-16T11:15:22
electron/electron
599f398ddc4d960c6d338fae4309e2a522803061
cc1239b3118ac3d7757a31a0b8f9eedd7c63aa32
fix: enableBlinkFeatures warning in webviews (#27753)
[ { "path": "lib/renderer/security-warnings.ts", "patch": "@@ -225,7 +225,7 @@ const warnAboutExperimentalFeatures = function (webPreferences?: Electron.WebPre\n const warnAboutEnableBlinkFeatures = function (webPreferences?: Electron.WebPreferences) {\n if (!webPreferences ||\n !Object.prototype.hasOwn...
2021-02-18T19:11:35
vercel/next.js
06eb067a02ba16ea897f727734c09cbfacf01c60
fbe971c12cb28647fad76639e2c08777ec937a17
feat: added support for prefetch segments when deployed (#75202) Designed to enable the client prefetch segments feature when deployed on Vercel, this adds additional fields and data to the manifests to allow the CLI to create the rewrite rules needed to serve the prefetch segments. The fallback routes also now emit t...
[ { "path": "packages/next/errors.json", "patch": "@@ -630,5 +630,6 @@\n \"629\": \"Invariant (SlowModuleDetectionPlugin): Unable to find the start time for a module build. This is a Next.js internal bug.\",\n \"630\": \"Invariant (SlowModuleDetectionPlugin): Module is recorded after the report is generat...
2025-02-04T21:44:11
facebook/react
b8bbb6a13d0d0fc93bd1bf51bd66d626aad84672
ebcec3cc20417528ffe80f0b11701af42b399939
Fix edge-case Fast Refresh bug that caused Fibers with warnings/errors to be untracked prematurely (#21536) Refactor error/warning count tracking to avoid pre-allocating an ID for Fibers that aren't yet mounted. Instead, we store a temporary reference to the Fiber itself and later check to see if it successfully mount...
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -1946,15 +1946,11 @@ describe('InspectedElement', () => {\n });\n \n describe('inline errors and warnings', () => {\n- // Some actions require the Fiber id.\n- // In those instances you might want to ma...
2021-05-20T15:24:08
golang/go
fc51e5023ec99fee405ae61ee4ab2c8c9bc66f24
90c6558b6acef5a9b9fb8f3c35cff58423c8b00e
math/big: fix comment typo in natdiv.go Comment in line 395: [x₀ < S, so S - x₀ < 0; drop it] Should be: [x₀ < S, so S - x₀ > 0; drop it] The proof is based on S - x₀ > 0, thus it's a typo of comment. Fixes #68466 Change-Id: I68bb7cb909ba2bfe02a8873f74b57edc6679b72a GitHub-Last-Rev: 40a2fc80cf22e97e0f535454a9b87b31...
[ { "path": "src/math/big/natdiv.go", "patch": "@@ -392,7 +392,7 @@ Proof that q ≤ q̂:\n \t ≥ (1/y)·((x₁ - y₁ + 1)·S - x) [above: q̂·y₁ ≥ x₁ - y₁ + 1]\n \t = (1/y)·(x₁·S - y₁·S + S - x) [distribute S]\n \t = (1/y)·(S - x₀ - y₁·S) [-x = -x₁·S - x₀]\n-\t > -y₁·S / y ...
2024-07-17T12:06:34
nodejs/node
4040a904dedfae8e1a60cc29ed78aab7945d272f
41fb40c7ff8cf7480f07ab107c4d26f93c4b4c85
deps: V8: cherry-pick 1b471b796022 Original commit message: [riscv] Using s8 as backtrack_stackpointer reg and optimize BranchShortHelper 1. Fix incorrect backtrack_stackpointer reg. 2. Optimize BranchShortHelper when comparing zero immediate. 3. This is a workaround CL fix v8:13836 Bug: v8:1383...
[ { "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.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "...
2023-05-07T11:46:02
rust-lang/rust
7f550f6f37aece6fbf5a8c31beb13d38996f56d7
d3f16d2f35d8d4b25bb15a85ae869eee70ffb4cd
Fix "copy code" button
[ { "path": "src/librustdoc/html/static/js/main.js", "patch": "@@ -2163,7 +2163,15 @@ function preLoadCss(cssUrl) {\n // Should never happen, but the world is a dark and dangerous place.\n return;\n }\n- copyContentToClipboard(codeElem.textContent);\n+ let content...
2025-12-26T15:23:40
electron/electron
64eb02b671794d02dc2ed89bd67d721e587bbab9
b0a6eb6a53b8364e502801a8673064b9e764ddd1
fix: restore window event redispatching on mac (#27701)
[ { "path": "shell/browser/api/electron_api_web_contents_mac.mm", "patch": "@@ -6,6 +6,7 @@\n #include \"shell/browser/api/electron_api_web_contents.h\"\n #include \"shell/browser/ui/cocoa/event_dispatching_window.h\"\n #include \"shell/browser/web_contents_preferences.h\"\n+#include \"ui/base/cocoa/command_d...
2021-02-18T01:31:53
vercel/next.js
fbe971c12cb28647fad76639e2c08777ec937a17
477eaf0e7d96660c2cb3d86d4cb15f67d3239919
polish hydration errors (#75632)
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/code-frame/code-frame.tsx", "patch": "@@ -111,14 +111,16 @@ export const CODE_FRAME_STYLES = css`\n font-family: var(--font-stack-monospace);\n font-size: 12px;\n line-height: 16px;\n+ margin: v...
2025-02-04T20:50:45
facebook/react
ebcec3cc20417528ffe80f0b11701af42b399939
99995c1063d1a9d3bfbcdf41078cb1e685218d99
Add key to inspected-element error boundary (#21535) This way changing the selected element also recreates/resets the boundary automatically.
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementErrorBoundary.js", "patch": "@@ -8,7 +8,9 @@\n */\n \n import * as React from 'react';\n+import {useContext} from 'react';\n import ErrorBoundary from '../ErrorBoundary';\n+import {TreeStateContext} from './TreeContext'...
2021-05-19T21:38:12
golang/go
90c6558b6acef5a9b9fb8f3c35cff58423c8b00e
355711821eea51c6456a31ab61d0dc2e9db034f7
internal/bytealg: extend memchr result correctly on wasm The mem address should be regarded as uint32. Fixes #65571 Change-Id: Icee38d11f2d93eeca7d50b2e133159e321daeb90 GitHub-Last-Rev: c2568b104369bcf5c4d42c6281d235a52bb9675f GitHub-Pull-Request: golang/go#68400 Reviewed-on: https://go-review.googlesource.com/c/go/...
[ { "path": "src/bytes/bytes_js_wasm_test.go", "patch": "@@ -0,0 +1,21 @@\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+//go:build js && wasm\n+\n+package bytes_test\n+\n+import (\n+\t\"...
2024-07-17T05:34:55
nodejs/node
71eda57ba3bd8ef31fc23ec783a4a45de29ab751
ecf1427df3b17dc77541c7def32dc7f672fa64d3
crypto: fix webcrypto private/secret import with empty usages Refs: #47864 PR-URL: https://github.com/nodejs/node/pull/47877 Refs: https://github.com/nodejs/node/issues/47864 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/crypto/webcrypto.js", "patch": "@@ -605,52 +605,67 @@ async function importKey(\n });\n \n algorithm = normalizeAlgorithm(algorithm, 'importKey');\n+ let result;\n switch (algorithm.name) {\n case 'RSASSA-PKCS1-v1_5':\n // Fall through\n case 'RSA-PSS':\n /...
2023-05-07T10:54:28
electron/electron
b0a6eb6a53b8364e502801a8673064b9e764ddd1
c99c4117c8fb0cc1903cef66a63d0779a401bf08
fix: add support for title change with window history navigation (#27724)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1704,6 +1704,15 @@ void WebContents::DidFinishNavigation(\n frame_process_id, frame_routing_id);\n }\n }\n+ content::NavigationEntry* entry = navigation_handle->GetNavigationEntry();\n+\n+ // This check is needed du...
2021-02-17T18:23:45
facebook/react
99995c1063d1a9d3bfbcdf41078cb1e685218d99
3f8f4675d499ebf8f20cf02ee34aa16045a648b6
Improve error boundary in inspected elements panel (#21531) Show more info about the error as well as the option to report it to GitHub.
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementErrorBoundary.css", "patch": "@@ -1,21 +1,3 @@\n-.Error {\n- justify-content: center;\n- align-items: center;\n- display: flex;\n- flex-direction: column;\n- height: 100%;\n- font-size: var(--font-size-sans-lar...
2021-05-19T17:27:56
vercel/next.js
0cff3757b7da101ccf8f8a13f07168c7486f4fa9
c84be735f5db348931bcca71109b7f9596c28d2f
[Turbopack] correctly apply defines (#75643) ### What? Defines like `process.env.NODE_ENV` were not correctly applied to turbopack-cli. This fixes it.
[ { "path": "turbopack/crates/turbopack-cli/src/contexts.rs", "patch": "@@ -20,6 +20,7 @@ use turbopack_core::{\n condition::ContextCondition,\n context::AssetContext,\n environment::{BrowserEnvironment, Environment, ExecutionEnvironment},\n+ free_var_references,\n resolve::options::{Import...
2025-02-04T19:40:51
golang/go
355711821eea51c6456a31ab61d0dc2e9db034f7
f2bcab5fb3436144c750e48934b4829111d407d6
cmd/internal/cov: close counter data files eagerly When reading the counter data files from a given pod, close the underlying *os.File immediately after each one is read, as opposed to using a deferred close in the loop (which will close them all at the end of the function). Doing things this way avoids running into "...
[ { "path": "src/cmd/internal/cov/readcovdata.go", "patch": "@@ -204,15 +204,12 @@ func (r *CovDataReader) visitPod(p pods.Pod) error {\n \t}\n \tr.vis.VisitMetaDataFile(p.MetaFile, mfr)\n \n-\t// Read counter data files.\n-\tfor k, cdf := range p.CounterDataFiles {\n+\tprocessCounterDataFile := func(cdf stri...
2024-07-16T19:13:47
nodejs/node
ecf1427df3b17dc77541c7def32dc7f672fa64d3
b7c82a3480a0c3699ab97a5d8b4c0588709a38ff
test: fix webcrypto wrap unwrap tests Refs: #47864 PR-URL: https://github.com/nodejs/node/pull/47876 Refs: https://github.com/nodejs/node/issues/47864 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/parallel/test-webcrypto-wrap-unwrap.js", "patch": "@@ -275,7 +275,7 @@ async function testWrap(wrappingKey, unwrappingKey, key, wrap, format) {\n assert.deepStrictEqual(exported, exportedAgain);\n }\n \n-async function testWrapping(name, keys) {\n+function testWrapping(name, keys) {\n co...
2023-05-07T10:54:20
electron/electron
7a7a27d9bcbb106957ece6c4caa05f468021c61b
642d6fca910ed30ce086d76aac0dc17ee093aa3b
fix: check WebContents before emitting render-process-gone event (#27730)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1407,7 +1407,13 @@ void WebContents::RenderViewDeleted(content::RenderViewHost* render_view_host) {\n }\n \n void WebContents::RenderProcessGone(base::TerminationStatus status) {\n+ auto weak_this = GetWeakPtr();\n Emit(\"crashed\"...
2021-02-17T12:19:17
facebook/react
d6604ac0318f2ee139492d8dce64d6427e921658
b15bf2b2f1effb6f760effac9f48c5901622f27b
Account for another DevTools + Fast Refresh edge case (#21523) DevTools now 'untrack' Fibers (cleans up the ID-to-Fiber mapping) after a slight delay in order to support a Fast Refresh edge case: 1. Component type is updated and Fast Refresh schedules an update+remount. 2. flushPendingErrorsAndWarningsAfterDelay() r...
[ { "path": "packages/react-devtools-shared/src/__tests__/FastRefreshDevToolsIntegration-test.js", "patch": "@@ -188,13 +188,13 @@ describe('Fast Refresh', () => {\n });\n \n it('should not break when there are warnings in between patching', () => {\n- withErrorsOrWarningsIgnored(['Expected warning dur...
2021-05-19T02:44:29
vercel/next.js
47bece4e8bc4c3a0e7f9b554c24755db21f350dc
65a68b62ad65781659a2c325cf56067307239874
[Turbopack] fix dependencies on own task (#75658) ### What? fixes a case where tasks where hanging or recomputed when they read they own cells
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -595,6 +595,11 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n return;\n }\n if let Some(reader) = reader {\n+ if reader == task_id {\n+ // We ...
2025-02-04T16:24:25
golang/go
451a284d801275a83ab017c8e00b1e0119fd1c0c
b4a92f56ffe66bb0ad3fca735b3509b04a04339f
strings,bytes,regexp: use lists in Split* docstrings This looks better than the default of using a code block. While at it, fix punctuation. Change-Id: I86abca4da1e9999b7e9043e615ad0988d35a5a46 Reviewed-on: https://go-review.googlesource.com/c/go/+/597656 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Ian...
[ { "path": "src/bytes/bytes.go", "patch": "@@ -355,10 +355,9 @@ func genSplit(s, sep []byte, sepSave, n int) [][]byte {\n // the subslices between those separators.\n // If sep is empty, SplitN splits after each UTF-8 sequence.\n // The count determines the number of subslices to return:\n-//\n-//\tn > 0: at...
2024-07-11T01:46:37
nodejs/node
9f39a9d2cbab6864e897ff471bdd2eefababdaa2
39973c649874acbd9e2499f96b1146da877416a4
doc: improve `permission.has` description This fixes the function description and adds missing available scopes. Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/47875 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Re...
[ { "path": "doc/api/permissions.md", "patch": "@@ -494,7 +494,7 @@ When enabling the Permission Model through the [`--experimental-permission`][]\n flag a new property `permission` is added to the `process` object.\n This property contains one function:\n \n-##### `permission.has(scope ,parameters)`\n+##### ...
2023-05-07T10:08:21
facebook/react
b15bf2b2f1effb6f760effac9f48c5901622f27b
343776fc9071f9e8c8a1dee0166c033bf381f04d
DevTools bugfix for useState() with hasOwnProperty key (#21524)
[ { "path": "packages/react-devtools-shared/src/__tests__/profilerStore-test.js", "patch": "@@ -135,4 +135,36 @@ describe('ProfilerStore', () => {\n });\n }).toThrow('Cannot modify filter preferences while profiling');\n });\n+\n+ it('should not throw if state contains a property hasOwnProperty '...
2021-05-18T20:43:33
electron/electron
642d6fca910ed30ce086d76aac0dc17ee093aa3b
980b32fce72b95cac6a061737e1fea02bdc974fd
fix: libuv hang when nodeIntegrationInSubframes enabled (#27582)
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -531,6 +531,18 @@ void NodeBindings::LoadEnvironment(node::Environment* env) {\n }\n \n void NodeBindings::PrepareMessageLoop() {\n+#if !defined(OS_WIN)\n+ int handle = uv_backend_fd(uv_loop_);\n+#else\n+ HANDLE handle = uv_loop_->iocp;\n+#endif\n+\n...
2021-02-17T03:42:28
vercel/next.js
65a68b62ad65781659a2c325cf56067307239874
dd676ccbdd15884432105f9259be27993cd2eb66
DX: Reduce devtools clutter by batching stack frame requests (#75557) ## What? Minimizes unnecessary network requests in the development overlay by batching stack frame resolutions. ## Why? Instead of sending individual HTTP requests for each stack frame, this change consolidates them into a single POST request. ...
[ { "path": "packages/next/src/client/components/react-dev-overlay/internal/helpers/stack-frame.ts", "patch": "@@ -1,5 +1,9 @@\n import type { StackFrame } from 'next/dist/compiled/stacktrace-parser'\n-import type { OriginalStackFrameResponse } from '../../server/shared'\n+import type {\n+ OriginalStackFrame...
2025-02-04T15:40:54
rust-lang/rust
09f57eb96f8a7652eebae41a870e7af0f3fd65e6
8da80d36a3b8fe4c0cc737b1e9494ce33a091f01
Update hir.rs: fix typo, conform to max_width
[ { "path": "compiler/rustc_hir/src/hir.rs", "patch": "@@ -150,10 +150,13 @@ impl From<Ident> for LifetimeSyntax {\n /// `LifetimeSource::OutlivesBound` or `LifetimeSource::PreciseCapturing`\n /// — there's no way to \"elide\" these lifetimes.\n #[derive(Debug, Copy, Clone, HashStable_Generic)]\n-// Raise the...
2025-12-26T17:05:59
facebook/react
63927e08438e8a52b41840bd583a07b3ceb2956e
1e3383a41154cb32d8d6b78b2451ee4dabfcb973
Fixed another Symbol concatenation issue with DevTools format() util (#21521)
[ { "path": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -11,6 +11,7 @@ import {\n getDisplayName,\n getDisplayNameForReactElement,\n } from 'react-devtools-shared/src/utils';\n+import {format} from 'react-devtools-shared/src/backend/utils';\n import {\n REACT_SUSPENSE_LIST...
2021-05-18T15:46:04
golang/go
3bfbfa821fbf4835d6be2e3bfda4ccac397c74fa
d5479e197d8a9eb98c30d7ec6ddc3fcbde459ebe
encoding/json: document compact json output in Encoder.Encode Using the same wording as Compact. Fixes #67943 Change-Id: I578874f3e917bba1634dd988895e622a5ac78c74 Reviewed-on: https://go-review.googlesource.com/c/go/+/597976 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Au...
[ { "path": "src/encoding/json/stream.go", "patch": "@@ -194,6 +194,7 @@ func NewEncoder(w io.Writer) *Encoder {\n }\n \n // Encode writes the JSON encoding of v to the stream,\n+// with insignificant space characters elided,\n // followed by a newline character.\n //\n // See the documentation for [Marshal] ...
2024-07-12T19:03:08
nodejs/node
39973c649874acbd9e2499f96b1146da877416a4
6fb10cad308ad7e0d9a8a78f91d41165eb830065
src: clarify the parameter name in `Permission::Apply` This fixes confusing parameter names. They are references to set allow-permission. Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/47874 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Debadree C...
[ { "path": "src/permission/child_process_permission.cc", "patch": "@@ -9,7 +9,7 @@ namespace permission {\n \n // Currently, ChildProcess manage a single state\n // Once denied, it's always denied\n-void ChildProcessPermission::Apply(const std::string& deny,\n+void ChildProcessPermission::Apply(const std::st...
2023-05-07T09:58:25
vercel/next.js
dd676ccbdd15884432105f9259be27993cd2eb66
c6e369429caf990f7fa9c24d2574986356778fae
Remove github runner specific step (#75655) Removes this step as it fails on self-hosted runners. <!-- 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 th...
[ { "path": ".github/workflows/setup-nextjs-build.yml", "patch": "@@ -53,10 +53,6 @@ jobs:\n - name: Print Next.js release version to checkout\n run: echo \"Checking out Next.js ${{ env.NEXTJS_VERSION }}\"\n \n- # https://github.com/actions/virtual-environments/issues/1187\n- - name: t...
2025-02-04T14:15:28
electron/electron
980b32fce72b95cac6a061737e1fea02bdc974fd
399216580de88e48f29c56b633b1a380d5ea2203
test: fix and undisable parallel/node-crypto (#27689)
[ { "path": "patches/node/.patches", "patch": "@@ -17,7 +17,6 @@ refactor_allow_embedder_overriding_of_internal_fs_calls.patch\n chore_prevent_warn_non_context-aware_native_modules_being_loaded.patch\n chore_read_nobrowserglobals_from_global_not_process.patch\n build_bring_back_node_with_ltcg_configuration.pa...
2021-02-16T23:19:49
facebook/react
1e3383a41154cb32d8d6b78b2451ee4dabfcb973
7bef382bf92e380f2b94e825cf35b8af58f8a2ec
DevTools: Reload all roots after Fast Refresh force remount (#21516) Works around the corrupted Store state by detecting a broken Fast Refresh remount and forcefully dropping the root and re-mounting the entire tree. This prevents Fibers from getting duplicated in the Store (and in the Components tree). The benefit of...
[ { "path": "packages/react-devtools-shared/src/__tests__/FastRefreshDevToolsIntegration-test.js", "patch": "@@ -0,0 +1,260 @@\n+/**\n+ * Copyright (c) Facebook, Inc. and its affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this s...
2021-05-18T15:42:08
golang/go
d5479e197d8a9eb98c30d7ec6ddc3fcbde459ebe
5c7f5413866b4b84654705ab49251b48b2b05ed4
net: document ParseIP always returns IPv6 addresses Fixes #65131 Change-Id: I050c6459a8e0a6c99425759d3131cf775b05aac9 Reviewed-on: https://go-review.googlesource.com/c/go/+/598076 Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c...
[ { "path": "src/net/ip.go", "patch": "@@ -491,7 +491,8 @@ func (n *IPNet) String() string {\n // The string s can be in IPv4 dotted decimal (\"192.0.2.1\"), IPv6\n // (\"2001:db8::68\"), or IPv4-mapped IPv6 (\"::ffff:192.0.2.1\") form.\n // If s is not a valid textual representation of an IP address,\n-// Pa...
2024-07-12T20:03:38
rust-lang/rust
90e80f5b81976be03d46264a1b77625b55ae8c22
2e854a9344154564259de51385e9ec9506c0f3b7
Document relative and absolute paths handling in `--remap-path-prefix`
[ { "path": "src/doc/rustc/src/remap-source-paths.md", "patch": "@@ -17,6 +17,20 @@ The replacement is purely textual, with no consideration of the current system's\n \n When multiple remappings are given and several of them match, the **last** matching one is applied.\n \n+### Relative paths\n+\n+Some build ...
2025-12-26T15:38:46
nodejs/node
281ef804c84f1a617823b60d209ae269c7a4a691
41b1e54db276f0fc3591eaece6f83b6b03923bc4
doc: fix params names PR-URL: https://github.com/nodejs/node/pull/47853 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Harshitha K P <harshitha014@gmail.com>
[ { "path": "doc/api/assert.md", "patch": "@@ -455,9 +455,9 @@ added:\n \n * `fn` {Function} a tracked function to reset.\n \n-reset calls of the call tracker.\n-if a tracked function is passed as an argument, the calls will be reset for it.\n-if no arguments are passed, all tracked functions will be reset\n+...
2023-05-06T19:41:58
vercel/next.js
c70bf4277b54d2abba7c02713f7f3ed2bb2198ab
b3907454d4bb5f27df1d54342098d29959a6f5c1
Run build-nextjs for Turbopack test runs on metal machines instead of GitHub hosted runner (#75654) ## What? All the test runs that happen after this workflow runs are running on our self hosted runners but the initial setup is running on GitHub's runner, this causes an environment mismatch that seems to be causi...
[ { "path": ".github/workflows/setup-nextjs-build.yml", "patch": "@@ -16,7 +16,11 @@ on:\n jobs:\n build_nextjs:\n name: Build Next.js for the turbopack integration test\n- runs-on: ubuntu-latest-16-core-oss\n+ runs-on:\n+ - 'self-hosted'\n+ - 'linux'\n+ - 'x64'\n+ - 'metal'\n ...
2025-02-04T13:23:20
electron/electron
399216580de88e48f29c56b633b1a380d5ea2203
0bc782dfe5dbcdaf5974cdd30e986b7ef418345a
test: fix flaky did-change-theme-color test (#27739) * test: move did-change-theme-color test to main * test: enable did-change-theme-color test for WOA
[ { "path": "spec-main/api-web-contents-spec.ts", "patch": "@@ -1383,8 +1383,7 @@ describe('webContents module', () => {\n }\n });\n \n- // TODO (jkleinsc) - reenable this test on WOA once https://github.com/electron/electron/issues/26045 is resolved\n- ifdescribe(process.platform !== 'win32' || proce...
2021-02-16T22:21:40
facebook/react
7bef382bf92e380f2b94e825cf35b8af58f8a2ec
316943091ed36b2807b70b765283c7647dd9ffda
Errors thrown by Store can be dismissed in boundary (#21520)
[ { "path": "packages/react-devtools-shared/src/devtools/views/ErrorBoundary/ErrorBoundary.js", "patch": "@@ -21,13 +21,15 @@ type Props = {|\n \n type State = {|\n callStack: string | null,\n+ canDismiss: boolean,\n componentStack: string | null,\n errorMessage: string | null,\n hasError: boolean,\n...
2021-05-18T14:36:31
golang/go
5c7f5413866b4b84654705ab49251b48b2b05ed4
6b97448132736ab24902d0c9016f31f4d1d681b4
archive/zip: document handling of duplicate names in Writer.Create Fixes #66810 Change-Id: I6a7848dce245ae14941d61d2f78abaf0dc5c1247 Reviewed-on: https://go-review.googlesource.com/c/go/+/597978 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz...
[ { "path": "src/archive/zip/writer.go", "patch": "@@ -213,7 +213,8 @@ func (w *Writer) Close() error {\n // The name must be a relative path: it must not start with a drive\n // letter (e.g. C:) or leading slash, and only forward slashes are\n // allowed. To create a directory instead of a file, add a traili...
2024-07-12T19:51:45
rust-lang/rust
86405fb507bef835470b0c678de80bc35d7ea514
d501df0d1f0eb7ec54090b6f35cec8ecba513e79
Fix ICE by rejecting const blocks in patterns during AST lowering This fixes the ICE reported by rejecting `const` blocks in pattern position during AST lowering. Previously, `ExprKind::ConstBlock` could reach HIR as `PatExprKind::ConstBlock`, allowing invalid patterns to be type-checked and triggering an ICE. This p...
[ { "path": "clippy_lints/src/utils/author.rs", "patch": "@@ -723,7 +723,6 @@ impl<'a, 'tcx> PrintVisitor<'a, 'tcx> {\n kind!(\"Lit {{ ref {lit}, {negated} }}\");\n self.lit(lit);\n },\n- PatExprKind::ConstBlock(_) => kind!(\"ConstBlock(_)\"),\n ...
2025-12-05T04:02:17
vercel/next.js
b145593e05aeec85b249b40c46ab32bcfaf61273
b0706c31ed8d45887078c9e4c9070d3260175cbb
Fix console replaying and `React.cache` usage in `"use cache"` functions (#75520) Console logs in server components are replayed in the browser. For example, when you run `console.log('foo')`, the log will be replayed in the browser as `[Server] foo`. When the component is inside of a `"use cache"` scope, it's replaye...
[ { "path": "packages/next/src/server/use-cache/use-cache-wrapper.ts", "patch": "@@ -60,7 +60,7 @@ function generateCacheEntry(\n outerWorkUnitStore: WorkUnitStore | undefined,\n clientReferenceManifest: DeepReadonly<ClientReferenceManifestForRsc>,\n encodedArguments: FormData | string,\n- fn: any,\n+ ...
2025-02-04T10:44:26
electron/electron
0bc782dfe5dbcdaf5974cdd30e986b7ef418345a
a0d7cfdb9f100d1269c26c42edfb8beba15399ae
fix: disable unload metrics to fix CI failure (#27731) * patch * Use render-process-gone instead of crashed * update patches Co-authored-by: Electron Bot <electron@github.com>
[ { "path": "patches/chromium/.patches", "patch": "@@ -106,3 +106,4 @@ don_t_use_potentially_null_getwebframe_-_view_when_get_blink.patch\n web_contents.patch\n add_trustedauthclient_to_urlloaderfactory.patch\n fix_route_mouse_event_navigations_through_the_web_contents_delegate.patch\n+disable_unload_metrics....
2021-02-16T15:11:07
golang/go
8b48290895d362417124bcc18f0e6b6476ddc99e
959b3fd4265d7e4efb18af454cd18799ed70b8fe
cmd/compile: fix recursive generic interface instantiation When shapifying recursive instantiated types, the compiler ends up leaving the type as-is if it already has been a shape type. However, if both of type arguments are interfaces, and one of them is a recursive one, it ends up being shaped as-is, while the other...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -903,6 +903,11 @@ func shapify(targ *types.Type, basic bool) *types.Type {\n \t\t\tbase.Fatalf(\"%v is missing its underlying type\", targ)\n \t\t}\n \t}\n+\t// For fully instantiated shape interface type, use it as-is. Otherwise, the instan...
2024-01-31T07:47:40
facebook/react
e0f89aa056de95afc4c23909fce3d91fefb7dec7
1a2d7925035531e5767ff31ff8d0d581b5f94d49
Clean up Scheduler forks (#20915) * Clean up Scheduler forks * Un-shadow variables * Use timer globals directly, add a test for overrides * Remove more window references * Don't crash for undefined globals + tests * Update lint config globals * Fix test by using async act * Add test fixture * D...
[ { "path": ".codesandbox/ci.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"packages\": [\"packages/react\", \"packages/react-dom\", \"packages/scheduler\"],\n- \"buildCommand\": \"build --type=NODE react/index,react-dom/index,react-dom/server,react-dom/test-utils,scheduler/index,scheduler/unstable_no_dom,react/...
2021-05-17T20:53:58
rust-lang/rust
a9442b4a2ab42d9456eef32990791297942fa780
29e035e1728488dce5a03daa527ab1091d1cda47
Fix ICE by rejecting const blocks in patterns during AST lowering This fixes the ICE reported by rejecting `const` blocks in pattern position during AST lowering. Previously, `ExprKind::ConstBlock` could reach HIR as `PatExprKind::ConstBlock`, allowing invalid patterns to be type-checked and triggering an ICE. This p...
[ { "path": "compiler/rustc_ast_lowering/messages.ftl", "patch": "@@ -6,6 +6,7 @@ ast_lowering_abi_specified_multiple_times =\n ast_lowering_arbitrary_expression_in_pattern =\n arbitrary expressions aren't allowed in patterns\n .pattern_from_macro_note = the `expr` fragment specifier forces the metava...
2025-12-05T04:02:17
vercel/next.js
b0706c31ed8d45887078c9e4c9070d3260175cbb
879e279766ea90c1cf10458f0c4e3bcf43156bcc
Disable `rewrite-headers` tests that are dependent on Vercel site config (#75647) The two scenarios that test rewrite headers for vercel.com are dependent on how the Vercel site has currently configured its rewrites, and thus are prone to be flaky. Until we've figured out what Next.js logic this is supposed to test, a...
[ { "path": "test/e2e/app-dir/rewrite-headers/rewrite-headers.test.ts", "patch": "@@ -308,31 +308,34 @@ const cases: {\n 'x-nextjs-rewritten-query': null,\n },\n },\n- {\n- name: 'middleware rewrite external RSC',\n- pathname: '/hello/vercel',\n- headers: {\n- RSC: '1',\n- },\n- ...
2025-02-04T10:14:49
electron/electron
6f546be197bccfb37cf4415853f98890b1db80b7
47792d2ecb7b52085556eb7581128bd1973a8c7a
ci: ignore errors deleting user app directories on WOA testing (#27709)
[ { "path": "azure-pipelines-woa.yml", "patch": "@@ -93,6 +93,6 @@ steps:\n condition: always()\n \n - powershell: |\n- Remove-Item -path $env:APPDATA/Electron* -Recurse\n+ Remove-Item -path $env:APPDATA/Electron* -Recurse -Force -ErrorAction Ignore\n displayName: 'Delete user app data directories'\...
2021-02-15T00:44:32
facebook/react
1a2d7925035531e5767ff31ff8d0d581b5f94d49
9cf1069ffc5f3835506e314ef8c2e80bbfa8bdca
Tweaked DevTools error template title to match issue form template
[ { "path": "packages/react-devtools-shared/src/devtools/views/ErrorBoundary/ReportNewIssue.js", "patch": "@@ -40,7 +40,7 @@ export default function ReportNewIssue({\n const gitHubAPISearch =\n errorMessage !== null ? searchGitHubIssuesURL(errorMessage) : '(none)';\n \n- const title = `[DevTools Error]...
2021-05-14T14:19:58
golang/go
959b3fd4265d7e4efb18af454cd18799ed70b8fe
6948b4df8c5ec9f249960ea60dba6349d1975c0e
flag: add FlagSet example Add an example for using FlagSet. Fixes #36307 Change-Id: I0bf5805bd836a4f2e9632aafe22dc3eeb1164dcd GitHub-Last-Rev: 79e53040cbc2658a71385b644107f8ea54132c99 GitHub-Pull-Request: golang/go#64443 Reviewed-on: https://go-review.googlesource.com/c/go/+/545736 Auto-Submit: Ian Lance Taylor <ian...
[ { "path": "src/flag/example_flagset_test.go", "patch": "@@ -0,0 +1,57 @@\n+// Copyright 2023 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 flag_test\n+\n+import (\n+\t\"flag\"\n+\t\"fmt\"\n+\t\"ti...
2023-12-06T13:33:02
vercel/next.js
1dfca629264a8e32784eee0d706a6eaa12843751
fd27e588bd968bc3e792b74ae40c36e327dee68c
Clean-up: remove unused errorMessage param in stack frames (#75554)
[ { "path": "packages/next/src/client/components/react-dev-overlay/internal/helpers/get-error-by-type.ts", "patch": "@@ -31,8 +31,7 @@ export async function getErrorByType(\n frames: await getOriginalStackFrames(\n event.frames,\n getErrorSource(event.reason),\n- isAppDir,...
2025-02-04T03:19:20
electron/electron
4ce9dd3a79e063d652b02bef4639ba4e009dfbf4
4ba5381e8da055dcebffb2a41d35f4e66e98f9ba
fix: ECDH.setPrivateKey correctly sets the key (#27688)
[ { "path": "patches/node/.patches", "patch": "@@ -32,3 +32,4 @@ fix_add_safeforterminationscopes_for_sigint_interruptions.patch\n remove_makeexternal_case_for_uncached_internal_strings.patch\n fix_remove_outdated_--experimental-wasm-bigint_flag.patch\n darwin_libuv_use_posix_spawn.patch\n+fix_parallel_test-c...
2021-02-11T21:49:41
facebook/react
9cf1069ffc5f3835506e314ef8c2e80bbfa8bdca
5890e0e692d1c39eddde0110bd0d123409f31dd3
DevTools: Fixed version range NPM syntax
[ { "path": "packages/react-devtools-shared/src/bridge.js", "patch": "@@ -50,8 +50,8 @@ export const BRIDGE_PROTOCOL: Array<BridgeProtocol> = [\n // so the safest guess to downgrade the frontend would be to version 4.10.\n {\n version: 0,\n- minNpmVersion: '<4.11.0',\n- maxNpmVersion: '<4.11.0',...
2021-05-14T14:14:34
golang/go
6948b4df8c5ec9f249960ea60dba6349d1975c0e
8f1ec59bdb2d095b9caf31f6f3fd3e167b14ef0a
Revert "runtime: avoid multiple records with identical stacks from MutexProfile" This reverts CL 595966. Reason for revert: This CL contains a bug. See the comment in https://go-review.googlesource.com/c/go/+/595966/8#message-57f4c1f9570b5fe912e06f4ae3b52817962533c0 Change-Id: I48030907ded173ae20a8965bf1b41a713dd060...
[ { "path": "src/runtime/mprof.go", "patch": "@@ -9,7 +9,6 @@ package runtime\n \n import (\n \t\"internal/abi\"\n-\t\"internal/goarch\"\n \t\"internal/profilerecord\"\n \t\"internal/runtime/atomic\"\n \t\"runtime/internal/sys\"\n@@ -543,80 +542,36 @@ func saveblockevent(cycles, rate int64, skip int, which bu...
2024-07-15T19:49:44
nodejs/node
03db04924f2cd3c6c1dcb333ab99864786ff1eb6
c542d3a1d30d3e6c22b27f9bde55656923874818
test: fix output tests when path includes node version PR-URL: https://github.com/nodejs/node/pull/47843 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": "test/parallel/test-node-output-console.mjs", "patch": "@@ -3,17 +3,14 @@ import * as fixtures from '../common/fixtures.mjs';\n import * as snapshot from '../common/assertSnapshot.js';\n import { describe, it } from 'node:test';\n \n-function replaceNodeVersion(str) {\n- return str.replaceAll(pro...
2023-05-05T17:10:31
vercel/next.js
87f114f641e5bd9ab0a192b4ab6352f49d1af246
6ced3a2eddcccb520b67e47860a44d1355b7fa18
fix: preserve custom Vary headers (#75536) ## What? Changes the handling of Vary headers in Next.js to preserve custom headers while properly appending required Next.js internal headers using `appendHeader` instead of `setHeader`. ## Why? To ensure custom Vary headers set by users are not overwritten when Next...
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -1904,12 +1904,12 @@ export default abstract class Server<\n if (isAppPath && this.pathCouldBeIntercepted(resolvedPathname)) {\n // Interception route responses can vary based on the `Next-URL` header.\n // We use the Vary hea...
2025-02-04T01:17:41
electron/electron
4ba5381e8da055dcebffb2a41d35f4e66e98f9ba
59b3397ea501990a007fa95f1cdd043b53ccac5b
Revert "ci: ignore errors deleting user app directories on WOA testing" This reverts commit 59b3397ea501990a007fa95f1cdd043b53ccac5b.
[ { "path": "azure-pipelines-woa.yml", "patch": "@@ -93,6 +93,6 @@ steps:\n condition: always()\n \n - powershell: |\n- Remove-Item -path $env:APPDATA/Electron* -Recurse -Force -ErrorAction Ignore\n+ Remove-Item -path $env:APPDATA/Electron* -Recurse\n displayName: 'Delete user app data directories'\...
2021-02-11T17:11:22