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
rust-lang/rust
e12e19d98c1206f44dbf1ade6debf53f15f9ad66
99edcadfd5f6f6e8da34b1ba62774b53f5ca3863
fix double_parens FP on macro repetition patterns
[ { "path": "clippy_lints/src/double_parens.rs", "patch": "@@ -114,6 +114,8 @@ fn check_source(cx: &EarlyContext<'_>, inner: &Expr) -> bool {\n && inner.starts_with('(')\n && inner.ends_with(')')\n && outer_after_inner.trim_start().starts_with(')')\n+ // Don't lint macro repetit...
2025-12-26T02:44:09
golang/go
8f1ec59bdb2d095b9caf31f6f3fd3e167b14ef0a
5d36bc18d56fa5d7ad10b675dd82892ed3100332
strings: re-introduce noescape wrapper CL 573955 added internal/abi:NoEscape function, and use it in strings builder copyCheck code. However, internal/abi is a runtime package, which can not be built with -d=checkptr flag yet. This causes incorrect inlining decision, since NoEscape must not be inlined when -d=checkpt...
[ { "path": "src/strings/builder.go", "patch": "@@ -23,14 +23,26 @@ type Builder struct {\n \tbuf []byte\n }\n \n+// This is just a wrapper around abi.NoEscape.\n+//\n+// This wrapper is necessary because internal/abi is a runtime package,\n+// so it can not be built with -d=checkptr, causing incorrect inlini...
2024-07-15T16:20:52
nodejs/node
259ea3ed59a655ed0263746365c4538ec9c561a5
64549731b6cfe3729cb42896ab1f8229b62ff968
http2: improve nghttp2 error callback The http2 implementation uses the deprecated function nghttp2_session_callbacks_set_error_callback, which does not supply an error code but only an error message. This so far forced node's error callback to rely on the error message in order to distinguish between different errors...
[ { "path": "src/node_http2.cc", "patch": "@@ -437,8 +437,7 @@ Http2Session::Callbacks::Callbacks(bool kHasGetPaddingCallback) {\n callbacks_, OnFrameNotSent);\n nghttp2_session_callbacks_set_on_invalid_header_callback2(\n callbacks_, OnInvalidHeader);\n- nghttp2_session_callbacks_set_error_callbac...
2023-05-05T14:03:39
rust-lang/rust
ec9174248dbcd6bbce4512b6455c99aa714e3c1c
99edcadfd5f6f6e8da34b1ba62774b53f5ca3863
Fix `multiple_inherent_impl` false negatives for generic impl blocks
[ { "path": "clippy_lints/src/inherent_impl.rs", "patch": "@@ -101,7 +101,21 @@ impl<'tcx> LateLintPass<'tcx> for MultipleInherentImpl {\n InherentImplLintScope::Crate => Criterion::Crate,\n };\n let is_test = is_cfg_test(cx.tcx, hir_id) || is_in_cfg_test(cx...
2025-12-22T02:20:08
electron/electron
59b3397ea501990a007fa95f1cdd043b53ccac5b
3250ef551c837d30c87d98e496f973b19647af1a
ci: ignore errors deleting user app directories on WOA testing
[ { "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-11T17:07:54
vercel/next.js
1ef4dfa2bb63542496970790f34faf38eaa0dc66
5de97804c9a5be4d1f6c8f0ced1de74b7b7e5d73
fix corepack check in build_reusable workflow (#75629) Fixes the order of this check Validated run: https://github.com/vercel/next.js/actions/runs/13124372480/job/36617509828
[ { "path": ".github/workflows/build_reusable.yml", "patch": "@@ -136,7 +136,7 @@ jobs:\n - run: fnm default ${{ inputs.nodeVersion || env.NODE_LTS_VERSION }}\n - run: node -v\n - name: Prepare corepack\n- if: ${{ contains('ubuntu-latest', fromJson(inputs.runs_on_labels)) }}\n+ ...
2025-02-04T00:19:09
golang/go
5d36bc18d56fa5d7ad10b675dd82892ed3100332
071b8d51c1a70fa6b12f0bed2e93370e193333fd
net/http: document io.Seeker requirement for fs.FS arguments Using the same wording as http.FS, even though it's not strictly required if a content type can be determined by file extension. Fixes #66877 Updates #44553 Change-Id: I7b70c10909bdd289a57d1998a565262b8aaf2dd2 Reviewed-on: https://go-review.googlesource.co...
[ { "path": "src/net/http/filetransport.go", "patch": "@@ -35,7 +35,7 @@ func NewFileTransport(fs FileSystem) RoundTripper {\n // NewFileTransportFS returns a new [RoundTripper], serving the provided\n // file system fsys. The returned RoundTripper ignores the URL host in its\n // incoming requests, as well a...
2024-07-12T19:42:50
nodejs/node
64549731b6cfe3729cb42896ab1f8229b62ff968
3c82d48cc0a440d91dd2c813201d9a4ecc7a2e62
src: throw DataCloneError on transfering untransferable objects The HTML StructuredSerializeWithTransfer algorithm defines that when an untransferable object is in the transfer list, a DataCloneError is thrown. An array buffer that is already transferred is also considered as untransferable. PR-URL: https://github.co...
[ { "path": "doc/api/worker_threads.md", "patch": "@@ -130,8 +130,11 @@ added:\n - v12.19.0\n -->\n \n+* `object` {any} Any arbitrary JavaScript value.\n+\n Mark an object as not transferable. If `object` occurs in the transfer list of\n-a [`port.postMessage()`][] call, it is ignored.\n+a [`port.postMessage...
2023-05-05T11:22:42
rust-lang/rust
a6b005a0c82c223c1f6c8e6d2d11f1f1a211a703
fabece9e9491d0a3c3655dba488881968b7c5f7a
fix `Expr::can_have_side_effects` for repeat and binary expressions
[ { "path": "compiler/rustc_hir/src/hir.rs", "patch": "@@ -2618,6 +2618,12 @@ impl Expr<'_> {\n // them being used only for its side-effects.\n base.can_have_side_effects()\n }\n+ ExprKind::Binary(_, lhs, rhs) => {\n+ // This isn't exactly ...
2025-12-26T01:12:18
vercel/next.js
4787e5c47ccb78920646560ee96d4b78ddafdad8
365077b895fe353583f71ee7b7ea5c00c2baf84f
fix(turbopack-ecmascript): Make expand_star_exports more deterministic (#75383) <!-- 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 ...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/references/esm/export.rs", "patch": "@@ -1,10 +1,7 @@\n-use std::{\n- borrow::Cow,\n- collections::{BTreeMap, HashSet},\n- ops::ControlFlow,\n-};\n+use std::{borrow::Cow, collections::BTreeMap, ops::ControlFlow};\n \n use anyhow::Result;\n+use ru...
2025-02-04T00:13:31
electron/electron
3250ef551c837d30c87d98e496f973b19647af1a
6681f8f5077ffeaf3adeb0fbe0313ff3c7412f27
feat: support registering MV3 extension service workers (#27562) * feat: support registering MV3 extension service workers * feat: load chrome extension APIs in worker context * feat: add more ContentRendererClient service worker overrides * fix: lint error * refactor: emit object for 'registration-complet...
[ { "path": "docs/api/service-workers.md", "patch": "@@ -45,6 +45,16 @@ Returns:\n \n Emitted when a service worker logs something to the console.\n \n+#### Event: 'registration-completed'\n+\n+Returns:\n+\n+* `event` Event\n+* `details` Object - Information about the registered service worker\n+ * `scope` S...
2021-02-11T15:58:03
facebook/react
46491dce96e6a151706f51494edfd3cb7f09ed7f
b770f750054f85874bc6d483cc1dc01b4f6f5595
[Bugfix] Prevent already-committed setState callback from firing again during a rebase (#21498) * Failing test: Class callback fired multiple times Happens during a rebase (low priority update followed by high priority update). The high priority callback gets fired twice. * Prevent setState callback firing duri...
[ { "path": "packages/react-reconciler/src/ReactUpdateQueue.new.js", "patch": "@@ -580,7 +580,12 @@ export function processUpdateQueue<State>(\n instance,\n );\n const callback = update.callback;\n- if (callback !== null) {\n+ if (\n+ callback !== null &&\n+ ...
2021-05-12T17:40:17
rust-lang/rust
28d62f083376f956f28b6b3910446a2f171959b8
b460a1d5e2b6124596f37b49647d7da1aa21f8aa
Don't take rustc-literal-escaper from sysroot This resulted in the following error for me: error[E0464]: multiple candidates for `rlib` dependency `rustc_literal_escaper` found --> clippy_dev/src/lib.rs:25:1 | 25 | extern crate rustc_literal_escaper; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ...
[ { "path": "clippy_dev/Cargo.toml", "patch": "@@ -10,6 +10,7 @@ clap = { version = \"4.4\", features = [\"derive\"] }\n indoc = \"1.0\"\n itertools = \"0.12\"\n opener = \"0.7\"\n+rustc-literal-escaper = \"0.0.5\"\n walkdir = \"2.3\"\n \n [package.metadata.rust-analyzer]", "additions": 1, "deletions"...
2025-12-25T19:51:01
nodejs/node
d55b84ba34ff891976bb7535f92b6136a694fe64
af9b48a2f17b11b66a8b81beeaba3c408b863795
module: block requiring `test/reporters` without scheme PR-URL: https://github.com/nodejs/node/pull/47831 Fixes: https://github.com/nodejs/node/issues/47828 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Yagi...
[ { "path": "lib/internal/bootstrap/realm.js", "patch": "@@ -132,6 +132,7 @@ const legacyWrapperList = new SafeSet([\n // Modules that can only be imported via the node: scheme.\n const schemelessBlockList = new SafeSet([\n 'test',\n+ 'test/reporters',\n ]);\n // Modules that will only be enabled at run ti...
2023-05-05T07:59:25
golang/go
071b8d51c1a70fa6b12f0bed2e93370e193333fd
4e77872d16340595d76b905fe24369b76cfd1b5f
cmd: vendor golang.org/x/telemetry@268b4a8ec2d7 Commands run, from cmd: go get golang.org/x/telemetry@268b4a8ec2d7 go mod tidy go mod vendor Commands run, from std (to keep versions consistent): go get golang.org/x/sys@v0.22.0 go mod tidy go mod vendor Fixes #67617 Change-Id: I65e759c9b03443619a2a7acbeb...
[ { "path": "src/cmd/go.mod", "patch": "@@ -6,10 +6,10 @@ require (\n \tgithub.com/google/pprof v0.0.0-20240528025155-186aa0362fba\n \tgolang.org/x/arch v0.8.0\n \tgolang.org/x/build v0.0.0-20240603162849-5dfbda438323\n-\tgolang.org/x/mod v0.18.0\n+\tgolang.org/x/mod v0.19.0\n \tgolang.org/x/sync v0.7.0\n-\tg...
2024-07-12T22:03:43
facebook/react
3890fb52fe3ca3c71f0422329248c36731ef9cbc
57768ef90bdb0110c7b9266185a8f6446934b331
Update devtools_bug_report.yml
[ { "path": ".github/ISSUE_TEMPLATE/devtools_bug_report.yml", "patch": "@@ -1,5 +1,5 @@\n name: \"⚛️ 🛠 DevTools bug report\"\n-description: \"Report a problem with React DevTools\"\n+description: \"Report a problem with React DevTools. Please provide enough information that we can reproduce the problem.\"\n ...
2021-05-08T14:46:02
vercel/next.js
17b8a94930adbfa4e8f412153b9d5e143b552e67
2943e7a5e427413cbf1bc70294f21bbbc5a43232
fix: dev overlay style to add wrap + adjust bg width (#75485) | **Before** | **After** | |-----------|---------| | ![Before 1](https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/rKSEEwxbNzdFs9t0yyxN/954e63c1-f4f5-424f-9765-5353c0474bbd.png) | ![After 1](https://graphite-user-uploaded-assets-prod.s3.amazonaws....
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/code-frame/code-frame.tsx", "patch": "@@ -113,6 +113,10 @@ export const CODE_FRAME_STYLES = css`\n line-height: 16px;\n }\n \n+ [data-nextjs-codeframe] pre {\n+ white-space: pre-wrap;\n+ }\n+\n .c...
2025-02-03T23:13:41
electron/electron
9063e84b7cb52943b70ac326feee16eb82c2e155
87064e5b5e19b9165beff5483a1953e07245d66b
fix: crash in crypto.createDiffieHellman (#27674)
[ { "path": "patches/node/fix_comment_out_incompatible_crypto_modules.patch", "patch": "@@ -9,42 +9,46 @@ with what's exposed through BoringSSL. I plan to upstream parts of this or\n otherwise introduce shims to reduce friction.\n \n diff --git a/src/node_crypto.cc b/src/node_crypto.cc\n-index 91cb94d8dbe9db0...
2021-02-10T22:10:40
rust-lang/rust
b2f19eac2f139d35d9398ba2e90c2c424e84792b
e7d44143a12a526488e4f0c0d7ea8e62a4fe9354
rustdoc: fix duplicate Re-exports sections When a module contains both `pub extern crate` and `pub use` items, they were being rendered under two separate "Re-exports" section headers instead of one. This happened because the code iterated over each ItemType separately and rendered a section header for each, even thou...
[ { "path": "src/librustdoc/html/render/print_item.rs", "patch": "@@ -398,18 +398,34 @@ fn item_module(cx: &Context<'_>, item: &clean::Item, items: &[clean::Item]) -> i\n let mut types = not_stripped_items.keys().copied().collect::<Vec<_>>();\n types.sort_unstable_by(|a, b| reorder(*a).cmp(&re...
2025-12-25T04:41:40
nodejs/node
af9b48a2f17b11b66a8b81beeaba3c408b863795
d2d5789daaf4da49e89cf371ec0ca5094db3d945
src: fix creating an ArrayBuffer from a Blob created with `openAsBlob` Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/47691 Fixes: https://github.com/nodejs/node/issues/47683 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/dataqueue/queue.cc", "patch": "@@ -817,7 +817,7 @@ class FdEntry final : public EntryImpl {\n uint64_t new_start = start_ + start;\n uint64_t new_end = end_;\n if (end.has_value()) {\n- new_end = std::min(end.value() + start, new_end);\n+ new_end = std::min(end.value(), ...
2023-04-24T05:01:43
facebook/react
57768ef90bdb0110c7b9266185a8f6446934b331
e468072e17e3c2e70fa6eca46a074ff3f948c38a
Update devtools_bug_report.yml Tweaked label to include emoji characters.
[ { "path": ".github/ISSUE_TEMPLATE/devtools_bug_report.yml", "patch": "@@ -1,4 +1,4 @@\n-name: \"DevTools bug report\"\n+name: \"⚛️ 🛠 DevTools bug report\"\n description: \"Report a problem with React DevTools\"\n title: \"[DevTools Bug]: \"\n labels: [\"Component: Developer Tools\", \"Type: Bug\", \"Status...
2021-05-07T13:10:50
golang/go
4e77872d16340595d76b905fe24369b76cfd1b5f
8bc32ab6b11a4428f8f0d0eec8db02d520ce422f
go/types: fix assertion failure when range over int is not permitted Fixes an assertion failure in Checker.rangeStmt that range over int only has a key type and no value type. When allowVersion failed, rangeKeyVal returns Typ[Invalid] for the value instead of nil. When Config.Error != nil, rangeStmt proceeded. The che...
[ { "path": "src/cmd/compile/internal/types2/issues_test.go", "patch": "@@ -1092,3 +1092,32 @@ func _() {\n \tconf := Config{GoVersion: \"go1.17\"}\n \tmustTypecheck(src, &conf, nil)\n }\n+\n+func TestIssue68334(t *testing.T) {\n+\tconst src = `\n+package p\n+\n+func f(x int) {\n+\tfor i, j := range x {\n+\t\...
2024-07-09T21:01:56
vercel/next.js
f412666120e24b924c6f2b54d04915a8fa1aa8c9
5d7713f833d6fea6e599d49ea7d7c14307e64570
[DevOverlay] cleanup hydration error UI (#75499)
[ { "path": "packages/next/src/client/components/is-hydration-error.ts", "patch": "@@ -3,7 +3,7 @@ import isError from '../../lib/is-error'\n const hydrationErrorRegex =\n /hydration failed|while hydrating|content does not match|did not match|HTML didn't match/i\n \n-const reactUnifiedMismatchWarning = `Hyd...
2025-02-03T22:11:18
electron/electron
87064e5b5e19b9165beff5483a1953e07245d66b
68d9adb38870a6ea4f8796ba7d4d9bea2db7b7a0
fix: set WebContents background color ubiquitously #27592 (#27593) Move it from LoadURL to RenderViewCreated which is present in all window creation cases and is called early enough to be relevant from user prespective and after RenderWidgetHostView is already present.
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1361,6 +1361,19 @@ void WebContents::BeforeUnloadFired(bool proceed,\n void WebContents::RenderViewCreated(content::RenderViewHost* render_view_host) {\n if (!background_throttling_)\n render_view_host->SetSchedulerThrottling(fa...
2021-02-10T20:03:48
facebook/react
6005a6ab2b097a7d17cbcd747469fd617165461c
85b543c6b477def6366e3442d2eb432f6510cdfa
Update devtools_bug_report.yml
[ { "path": ".github/ISSUE_TEMPLATE/devtools_bug_report.yml", "patch": "@@ -70,9 +70,10 @@ body:\n description: |\n Please do not edit this field.\n render: text\n-- type: input\n+- type: textarea\n id: automated_github_query_string\n attributes:\n label: GitHub query string (automated)\...
2021-05-07T12:48:34
nodejs/node
2de10f5149c0fc25278bfb6c64f33e967ccd1741
c868aad15a49d4ea20a06e47eb9cdafc0c218fb4
sea: add option to disable the experimental SEA warning Refs: https://github.com/nodejs/single-executable/discussions/60 Signed-off-by: Darshan Sen <raisinten@gmail.com> PR-URL: https://github.com/nodejs/node/pull/47588 Fixes: https://github.com/nodejs/node/issues/47741 Reviewed-By: Michael Dawson <midawson@redhat.com...
[ { "path": ".github/CODEOWNERS", "patch": "@@ -150,6 +150,7 @@\n /src/node_sea* @nodejs/single-executable\n /test/fixtures/postject-copy @nodejs/single-executable\n /test/parallel/test-single-executable-* @nodejs/single-executable\n+/test/sequential/test-single-executable-* @nodejs/single-executable\n /tools...
2023-05-04T15:27:54
golang/go
b31e9a63a4d7ed98b89719ee54b752920782ae15
a71bb570d064f6d0c1cf59cef4b7a044be7a39d3
unsafe: say "functions like syscall.Syscall", not only Syscall Fixes #68301 Change-Id: I9d7f623370705ab2ad4c49489b5a89162467f22a Reviewed-on: https://go-review.googlesource.com/c/go/+/596936 Commit-Queue: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea...
[ { "path": "src/unsafe/unsafe.go", "patch": "@@ -110,7 +110,7 @@ type IntegerType int\n //\tu := unsafe.Pointer(nil)\n //\tp := unsafe.Pointer(uintptr(u) + offset)\n //\n-// (4) Conversion of a Pointer to a uintptr when calling [syscall.Syscall].\n+// (4) Conversion of a Pointer to a uintptr when calling fun...
2024-07-06T21:09:26
electron/electron
5f5afaae27356793e2c01ee494b261fb19463a87
706d9ede9b39e8eda64df7906d181409561d68f3
feat: add `win.setTopBrowserView()` so that BrowserViews can be raised (#27007) * feat: Raise a browser view via `BrowserWindow.setTopBrowserView()`. This is similar to removing and re-adding a browser view, but avoids a visible flicker as the browser view is not removed from the window when using `setTopBrowserVie...
[ { "path": "docs/api/browser-window.md", "patch": "@@ -1786,6 +1786,13 @@ Replacement API for setBrowserView supporting work with multi browser views.\n \n * `browserView` [BrowserView](browser-view.md)\n \n+#### `win.setTopBrowserView(browserView)` _Experimental_\n+\n+* `browserView` [BrowserView](browser-v...
2021-02-10T07:23:35
vercel/next.js
7320fd56204c9a65f90ba695cd351627715ea010
d6e718391ba95bd19439ae6a13e20285949664ec
Fix corepack keys in deploy e2e tests (#75622)
[ { "path": ".github/workflows/build_reusable.yml", "patch": "@@ -135,6 +135,10 @@ jobs:\n - run: fnm use --install-if-missing ${{ inputs.nodeVersion || env.NODE_LTS_VERSION }}\n - run: fnm default ${{ inputs.nodeVersion || env.NODE_LTS_VERSION }}\n - run: node -v\n+ - name: Prepare cor...
2025-02-03T20:41:49
facebook/react
85b543c6b477def6366e3442d2eb432f6510cdfa
1bb8987cc98e09af20a1f9d549433eb9960f669d
Added new GitHub issue form for React DevTools bug reports (#21450) Added a new bug report template built with GitHub issue forms: https://gh-community.github.io/issue-template-feedback/structured/ And updated DevTools bug report link to send information formatted for this new template.
[ { "path": ".github/ISSUE_TEMPLATE/devtools_bug_report.yml", "patch": "@@ -0,0 +1,78 @@\n+name: \"DevTools bug report\"\n+description: \"Report a problem with React DevTools\"\n+title: \"[DevTools Bug]: \"\n+labels: [\"Component: Developer Tools\", \"Type: Bug\", \"Status: Unconfirmed\"]\n+body:\n+- type: in...
2021-05-07T12:46:58
nodejs/node
c868aad15a49d4ea20a06e47eb9cdafc0c218fb4
b7def8ef5bfc5b098c0426ecbdc4fead5bdbb29c
sea: allow requiring core modules with the "node:" prefix Previously, the `require()` function exposed to the embedded SEA code was calling the internal `require()` function if the module name belonged to the list of public core modules but the internal `require()` function does not support loading modules with the "n...
[ { "path": "lib/internal/bootstrap/realm.js", "patch": "@@ -285,6 +285,20 @@ class BuiltinModule {\n return canBeRequiredByUsersWithoutSchemeList.has(id);\n }\n \n+ static normalizeRequirableId(id) {\n+ let normalizedId = id;\n+ if (StringPrototypeStartsWith(id, 'node:')) {\n+ normalizedId ...
2023-05-04T14:32:35
golang/go
08a6e080cae0277f0c5458da84c7e3ca4d8f8199
dfaaa91f0537f806a02ff2dd71b79844cd16cc4e
database/sql/driver: fix name in comment DefaultValueConverter => DefaultParameterConverter Change-Id: I0e726cfdbf21a5e00928899d1fd9144f89dcb805 Reviewed-on: https://go-review.googlesource.com/c/go/+/555235 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account...
[ { "path": "src/database/sql/driver/driver.go", "patch": "@@ -415,7 +415,7 @@ type NamedValueChecker interface {\n type ColumnConverter interface {\n \t// ColumnConverter returns a ValueConverter for the provided\n \t// column index. If the type of a specific column isn't known\n-\t// or shouldn't be handled...
2024-01-10T20:23:25
electron/electron
1bbfa934f071985e929e80acff9214edc647b935
bc7c290601649876aab1cff79983349aed129aab
fix: early GC of WebFrameMain instances (#27648)
[ { "path": "shell/browser/api/electron_api_web_frame_main.cc", "patch": "@@ -57,6 +57,9 @@ WebFrameMain::~WebFrameMain() {\n }\n \n void WebFrameMain::MarkRenderFrameDisposed() {\n+ if (render_frame_disposed_)\n+ return;\n+ Unpin();\n g_render_frame_map.Get().erase(render_frame_);\n render_frame_dis...
2021-02-08T19:30:18
vercel/next.js
d6e718391ba95bd19439ae6a13e20285949664ec
f1846809cdf6b91771c819f8b34824df2f54b521
[use-cache] Exclude warmup render when dynamicIO is off (#75527) when using use-cache standalone we don't need the dev warmup render becuase it is for addressing environment names of Prerender in DIO mode. This fixes a bug where rejected promises from cookies appeared in server logs when use cache was enabled witho...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -681,8 +681,6 @@ async function warmupDevRender(\n const prerenderController = new AbortController()\n const cacheSignal = new CacheSignal()\n \n- // TODO(useCache): Should this be a PrerenderStorePPR if dynamicIO is not\n- /...
2025-02-03T20:14:02
facebook/react
1bb8987cc98e09af20a1f9d549433eb9960f669d
bd070eb2c489a1f758e4a55b193820af7346fa15
Renamed function in error log issue #21446 (#21449)
[ { "path": "packages/shared/getComponentNameFromType.js", "patch": "@@ -53,7 +53,7 @@ export default function getComponentNameFromType(type: mixed): string | null {\n if (__DEV__) {\n if (typeof (type: any).tag === 'number') {\n console.error(\n- 'Received an unexpected object in getCompon...
2021-05-07T01:03:21
nodejs/node
b7def8ef5bfc5b098c0426ecbdc4fead5bdbb29c
3bca5c2eb8cfa779c5899351750c57306644f0c2
path: indicate index of wrong resolve() parameter PR-URL: https://github.com/nodejs/node/pull/47660 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
[ { "path": "lib/path.js", "patch": "@@ -168,7 +168,7 @@ const win32 = {\n let path;\n if (i >= 0) {\n path = args[i];\n- validateString(path, 'path');\n+ validateString(path, `paths[${i}]`);\n \n // Skip empty entries\n if (path.length === 0) {\n@@ -1098,8 +1...
2023-05-04T14:03:20
golang/go
dfaaa91f0537f806a02ff2dd71b79844cd16cc4e
5881d857c573874bde9417e97df3267f19c7ecb6
os: clarify that IsNotExist, IsExist, IsPermission and IsTimeout work with nil errors Referring to these functions' parameter as "*the* error" could be taken to imply that a non-nil error from elsewhere is expected; referring to it as "its argument" avoids that ambiguity. Fixes #31065 Change-Id: I117892dd53fff6f92d1...
[ { "path": "src/os/error.go", "patch": "@@ -71,7 +71,7 @@ func NewSyscallError(syscall string, err error) error {\n \treturn &SyscallError{syscall, err}\n }\n \n-// IsExist returns a boolean indicating whether the error is known to report\n+// IsExist returns a boolean indicating whether its argument is know...
2019-03-28T20:35:28
electron/electron
fa09183ed1326238a51e0e7f6370d466276dfc7b
f69c11105ff2a0f7b8778602de5eae4f83736c9b
fix: BrowserView rendering flicker (#27585)
[ { "path": "package.json", "patch": "@@ -135,7 +135,7 @@\n ],\n \"docs/api/**/*.md\": [\n \"ts-node script/gen-filenames.ts\",\n- \"markdownlint --config .markdownlint.auotfix.json --fix\",\n+ \"markdownlint --config .markdownlint.autofix.json --fix\",\n \"git add filenames.auto...
2021-02-08T17:14:46
vercel/next.js
6449898e3431a5ee6485e68d82343ca51916368e
10325798e9a9a11d67aeda68a529a3b45586f76e
perf(turbo-rcstr): Fix the fast codepath for RcStr::into_owned() (#75504) If we uniquely own the only reference to an `RcStr`, `into_owned` should just unwrap the `Arc` and return the inner value instead of cloning it. It seems this optimization was accidentally broken at some point. `Arc::try_unwrap(arc.clone())` is...
[ { "path": "Cargo.lock", "patch": "@@ -9072,6 +9072,7 @@ version = \"0.1.0\"\n name = \"turbo-rcstr\"\n version = \"0.1.0\"\n dependencies = [\n+ \"criterion\",\n \"new_debug_unreachable\",\n \"serde\",\n \"triomphe 0.1.12\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { ...
2025-02-03T19:47:53
nodejs/node
3bca5c2eb8cfa779c5899351750c57306644f0c2
2ad5ea6194658ad0f559e96e6699615c600a7b22
worker: use snapshot in workers spawned by workers Previously we didn't pass the snapshot data down to the isolate data of workers so workers spawned by workers won't use the snapshot. Fixes it by passing the snapshot data down. PR-URL: https://github.com/nodejs/node/pull/47731 Reviewed-By: Yagiz Nizipli <yagiz@nizip...
[ { "path": "src/node_worker.cc", "patch": "@@ -179,10 +179,12 @@ class WorkerThreadData {\n isolate->SetStackLimit(w->stack_base_);\n \n HandleScope handle_scope(isolate);\n- isolate_data_.reset(CreateIsolateData(isolate,\n- &loop_,\n- ...
2023-05-04T12:54:25
facebook/react
12751d29914a75f335ce058bfe4e4a57e1304e33
8ea11306ad473b26a2c899ef7a893d25413f3510
fix: version in nvmrc (#21430)
[ { "path": ".nvmrc", "patch": "@@ -1 +1 @@\n-v12.16.2\n+v12.17.0", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2021-05-05T16:39:06
golang/go
b3040679ad0eccaaadb825ed8c0704086ecc23eb
70e453b4361b80a85e6ebb37e4d43ec02db9a50a
math: remove riscv64 assembly implementations of rounding Fixes #68322 This reverts commit ad377e906a8ee6f27545d83de280206dacec1e58. Change-Id: Ifa4811e2c679d789cc830dbff5e50301410e24d0 Reviewed-on: https://go-review.googlesource.com/c/go/+/596516 Reviewed-by: Than McIntosh <thanm@google.com> Reviewed-by: Keith Rand...
[ { "path": "src/math/floor_asm.go", "patch": "@@ -2,7 +2,7 @@\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 386 || amd64 || arm64 || ppc64 || ppc64le || riscv64 || s390x || wasm\n+//go:build 386 || amd64 || arm64 || ppc64 || ppc64l...
2024-07-06T02:48:04
electron/electron
f69c11105ff2a0f7b8778602de5eae4f83736c9b
0dcc623ab70e1301aa948f5911c1165e16a9ba73
perf: patch libuv to use posix_spawn on macOS (#27026) * perf: patch libuv to use posix_spawn on macOS patch libuv to fix a performance regression in macOS >= 11 Spawning child processes in an Electron application with a hardened runtime has become slow in macOS Big Sur. This patch is a squashed version of htt...
[ { "path": "patches/node/.patches", "patch": "@@ -31,3 +31,4 @@ allow_preventing_preparestacktracecallback.patch\n 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+darwi...
2021-02-08T15:25:04
vercel/next.js
bab37ffd11970613b5c87cbc111ac3b7ea6ef8cb
7c3705ded192e776e4a4e239c547216c64304139
Bring back rust bindings path (#75620) Ensures swc/turbopack don't fail to load in CI. <!-- 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)...
[ { "path": ".github/workflows/rspack-nextjs-build-integration-tests.yml", "patch": "@@ -28,6 +28,7 @@ env:\n NEXT_TELEMETRY_DISABLED: 1\n TEST_CONCURRENCY: 6\n NEXT_JUNIT_TEST_REPORT: 'true'\n+ __INTERNAL_CUSTOM_TURBOPACK_BINDINGS: ${{ github.workspace }}/packages/next-swc/native/next-swc.linux-x64-gn...
2025-02-03T18:16:00
nodejs/node
0214edbe6e740c9d76a5faf964a37d7add5cbd4e
c24a61b3f6815b9d12b491ac869335feff86a24b
doc: add ovflowd to collaborators PR-URL: https://github.com/nodejs/node/pull/47844 Fixes: https://github.com/nodejs/node/issues/47672 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "README.md", "patch": "@@ -411,6 +411,8 @@ For information about the governance of the Node.js project, see\n **Brian White** <<mscdex@mscdex.net>>\n * [MylesBorins](https://github.com/MylesBorins) -\n **Myles Borins** <<myles.borins@gmail.com>> (he/him)\n+* [ovflowd](https://github.com/ovflow...
2023-05-03T17:21:36
facebook/react
67ebdf88bfebb728f48d9842c479b4fac545a43d
e9a4a44aae675e1b164cf2ae509e438c324d424a
Fix DevTools bug with Suspense+LegacyHidden component (#21432)
[ { "path": "packages/react-devtools-shared/src/backend/agent.js", "patch": "@@ -676,7 +676,10 @@ export default class Agent extends EventEmitter<{|\n \n onHookOperations = (operations: Array<number>) => {\n if (__DEBUG__) {\n- debug('onHookOperations', operations);\n+ debug(\n+ 'onHook...
2021-05-05T02:28:17
golang/go
70e453b4361b80a85e6ebb37e4d43ec02db9a50a
183a40db6def2780478053b3cd14f3f5c355d999
context: handle nil values for valueCtx.String() Fixes #68356 Change-Id: I57dc089a99f545e29a6759a8db5e28fabb6d1a61 Reviewed-on: https://go-review.googlesource.com/c/go/+/597415 Commit-Queue: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Re...
[ { "path": "src/context/context.go", "patch": "@@ -739,6 +739,8 @@ func stringify(v any) string {\n \t\treturn s.String()\n \tcase string:\n \t\treturn s\n+\tcase nil:\n+\t\treturn \"<nil>\"\n \t}\n \treturn reflectlite.TypeOf(v).String()\n }", "additions": 2, "deletions": 0, "language": "Go" }...
2024-07-09T19:24:34
electron/electron
b88f5850662c36496260eb12f761bf59c0f32635
e87803919bdd88bfa9de343342cf9a107c6305a5
chore: fix typo in electron_api_base_window.cc (#27644) reseting -> resetting
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -857,7 +857,7 @@ bool BaseWindow::GetWindowButtonVisibility() const {\n }\n \n void BaseWindow::SetTrafficLightPosition(const gfx::Point& position) {\n- // For backward compatibility we treat (0, 0) as reseting to default.\n+ // For b...
2021-02-08T01:18:08
vercel/next.js
7c3705ded192e776e4a4e239c547216c64304139
7a0eb3c26fbab5439cb148079ba30ab9e032b4f6
fix: incoming requests should use plural (#75582) ### What Fixes the mismatch between docs and the feature code, aligning with docs and other properties in logging option.
[ { "path": "packages/next/src/server/config-schema.ts", "patch": "@@ -565,7 +565,7 @@ export const configSchema: zod.ZodType<NextConfig> = z.lazy(() =>\n hmrRefreshes: z.boolean().optional(),\n })\n .optional(),\n- incomingRequest: z\n+ incomingRequests...
2025-02-03T17:31:41
rust-lang/rust
fc6df9cec751da81c2b76b9a7f2647a93800a246
63001d79ef56084c3f9c0c5933237116170927c1
fix: typos and grammar errors in README files - fix `FIMXE`/`FXIME` typos → `FIXME` - fix grammar: `these terminology are` → `this terminology is` - fix apostrophe: `it's data` → `its data` - remove duplicate word: `less less` → `less`
[ { "path": "src/tools/rust-installer/README.md", "patch": "@@ -49,7 +49,7 @@ To combine installers.\n \n # Future work\n \n-* Make install.sh not have to be customized, pull it's data from a\n+* Make install.sh not have to be customized, pull its data from a\n config file.\n * Be more resilient to installa...
2025-12-25T10:24:20
nodejs/node
f82606a72753412f3849dea1f29f37ba3f7312a9
e57fa94d925c2033cd091f8dfe537dc21ccfb34b
bootstrap: log isolate data info in mksnapshot debug logs PR-URL: https://github.com/nodejs/node/pull/47768 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
[ { "path": "src/node_snapshotable.cc", "patch": "@@ -1115,10 +1115,10 @@ static const int v8_snapshot_blob_size = )\"\n // -- v8_snapshot_blob_data begins --\n { v8_snapshot_blob_data, v8_snapshot_blob_size },\n // -- v8_snapshot_blob_data ends --\n- // -- isolate_data_indices begins --\n+ // -- isol...
2023-04-28T16:09:36
facebook/react
e9a4a44aae675e1b164cf2ae509e438c324d424a
d1542de3a607024421e13db01a42d8ba5930c389
Add back root override for strict mode (#21428) * Add back root override for strict mode * Switch flag to boolean * Fix flow
[ { "path": "packages/react-dom/src/__tests__/ReactTestUtilsAct-test.js", "patch": "@@ -102,6 +102,20 @@ describe('ReactTestUtils.act()', () => {\n root.render(<App />);\n Scheduler.unstable_flushAll();\n });\n+\n+ // @gate experimental\n+ it('warns in concurrent mode if root is strict',...
2021-05-04T19:42:48
golang/go
183a40db6def2780478053b3cd14f3f5c355d999
e89e880eacb1aceaa14733f44c38e6748d5ffa9c
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-02T16:53:36
rust-lang/rust
053597f464e2c35b6549b0ced021a06894724295
acfd264f4df23b15cf27a15a85f76ed61977b48a
add several older crashtests
[ { "path": "tests/crashes/114880.rs", "patch": "@@ -0,0 +1,7 @@\n+//@ known-bug: #114880\n+//@ proc-macro: aux114880.rs\n+//@ ignore-backends: gcc\n+\n+aux114880::expand!();\n+\n+fn main() {}", "additions": 7, "deletions": 0, "language": "Rust" }, { "path": "tests/crashes/119940.rs", ...
2025-12-25T12:27:17
electron/electron
e87803919bdd88bfa9de343342cf9a107c6305a5
b6a91ef5dfec14c6a92d62f2c516f1ac967e9522
fix: memory leak in BrowserWindow (#27621)
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -231,14 +231,6 @@ int ElectronBrowserMainParts::GetExitCode() {\n return exit_code_ != nullptr ? *exit_code_ : 0;\n }\n \n-void ElectronBrowserMainParts::RegisterDestructionCallback(\n- base::OnceClosure callback) {\n- // The destr...
2021-02-05T21:20:20
vercel/next.js
8db22f7568f2cb28de6309745f27438cd85bfdf2
348ee2a3bd550c6a3d9e451364bd2e8389cf5469
Ensure junit-report is uploaded (#75615) Ensures the subsequent steps don't fail on a missing file. <!-- 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 ...
[ { "path": ".github/workflows/build_reusable.yml", "patch": "@@ -247,6 +247,7 @@ jobs:\n path: |\n test/test-junit-report\n test/turbopack-test-junit-report\n+ test/rspack-test-junit-report\n if-no-files-found: ignore\n \n # upload playwright snaps...
2025-02-03T15:29:48
facebook/react
d19257b8fabd883d1db91811d81e10651d059e71
442eb21e0e6541460157782d18edea1383ed62fd
DevTools Store emits errors before throwing (#21426) The Store should never throw an Error without also emitting an event. Otherwise Store errors will be invisible to users, but the downstream errors they cause will be reported as bugs. (For example, github.com/facebook/react/issues/21402) Emitting an error event a...
[ { "path": "packages/react-devtools-shared/src/devtools/store.js", "patch": "@@ -78,6 +78,7 @@ export type Capabilities = {|\n export default class Store extends EventEmitter<{|\n collapseNodesByDefault: [],\n componentFilters: [],\n+ error: [Error],\n mutated: [[Array<number>, Map<number, number>]],\...
2021-05-04T14:46:26
nodejs/node
e623e1a419f37617047832a17e8ca74700bff57f
b0ca77032aa9314542c496fd6a6d109c7b4b29b3
test: fix WPT state when process exits but workers are still running PR-URL: https://github.com/nodejs/node/pull/47826 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "test/common/wpt.js", "patch": "@@ -678,11 +678,8 @@ class WPTRunner {\n }\n \n process.on('exit', () => {\n- if (this.inProgress.size > 0) {\n- for (const id of this.inProgress) {\n- const spec = this.specs.get(id);\n- this.fail(spec, { name: 'Unknown' }, kIn...
2023-05-03T08:58:26
rust-lang/rust
430468fdbfb5d3972aafe9bcd196b5a7fc484159
1ed00f39c22428dce3f6162cc1e803b82b6b76e5
Fix tuple struct pat expected type Example --- ```rust struct Foo(Option<i32>); fn foo(x: Foo) -> Foo { match x { Foo($0) => () } } ``` **Before this PR** ```rust ty: Foo, name: ? ``` **After this PR** ```rust ty: Option<i32>, name: ? ```
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/context/analysis.rs", "patch": "@@ -761,6 +761,16 @@ fn expected_type_and_name<'db>(\n let ty = sema.type_of_pat(&ast::Pat::from(it)).map(TypeInfo::original);\n (ty, None)\n },\n+ ...
2025-12-25T07:06:45
golang/go
6d89b38ed86e0bfa0ddaba08dc4071e6bb300eea
5565462a866af6d882d1f367ae5611260ad07b79
unsafe: clarify when String bytes can be modified They can be modified when the string returned by String no longer exists. Fixes #68300 Change-Id: I526a068151f7aad1ab6827504b51a84e7399cafe Reviewed-on: https://go-review.googlesource.com/c/go/+/596955 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Keith Ra...
[ { "path": "src/unsafe/unsafe.go", "patch": "@@ -260,7 +260,7 @@ func SliceData(slice []ArbitraryType) *ArbitraryType\n // a run-time panic occurs.\n //\n // Since Go strings are immutable, the bytes passed to String\n-// must not be modified afterwards.\n+// must not be modified as long as the returned stri...
2024-07-06T21:42:16
electron/electron
b6a91ef5dfec14c6a92d62f2c516f1ac967e9522
d06bb7c97b0f1db9ffdbdf82e0ec138b376fc560
fix: clean up base::LinkedList in context_bridge::ObjectCache (#27630) base::LinkedList does not delete its members on destruction. We need to manually ensure the linkedlist is empty when the ObjectCache is destroyed. Fixes #27039 Notes: Fixed memory leak when sending non-primitives over the context bridge
[ { "path": "shell/renderer/api/context_bridge/object_cache.cc", "patch": "@@ -21,7 +21,15 @@ ObjectCachePairNode::ObjectCachePairNode(ObjectCachePair&& pair) {\n ObjectCachePairNode::~ObjectCachePairNode() = default;\n \n ObjectCache::ObjectCache() {}\n-ObjectCache::~ObjectCache() = default;\n+ObjectCache::~...
2021-02-05T20:39:05
vercel/next.js
309092f997214719aeba0f0355d3f7131638e088
d8ba60d3a697757115e7c4b19876b500b6ad55c3
[DevOverlay] fix total error count (#75500) `readyErrors` seems to be the value that we're using to actually display the errors in the overlay, while `state.errors` seems to often contain duplicates. This causes a drift in the number of errors reported in the overlay vs the indicator. We should use the same source ...
[ { "path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/container/runtime-error/use-error-hook.ts", "patch": "@@ -110,6 +110,6 @@ export function useErrorHook({\n ? rootLayoutMissingTags.length\n : !!buildError\n ? 1\n- : errors.length,\n+ : ...
2025-02-03T15:20:17
facebook/react
b522638b994abfea16b981efdf88e11d1078c982
4ca62cac45c288878d2532e5056981d177f9fdac
Add GitHub API query to bug report template (#21421) This may help debug why sometimes the GitHub API search seems to not find a match when it should.
[ { "path": "packages/react-devtools-shared/src/devtools/views/ErrorBoundary/ReportNewIssue.js", "patch": "@@ -9,6 +9,7 @@\n \n import * as React from 'react';\n import Icon from '../Icon';\n+import {searchGitHubIssuesURL} from './githubAPI';\n import styles from './shared.css';\n \n function encodeURIWrapper...
2021-05-04T04:09:11
nodejs/node
46c3f4da05e2b5ddbc9100ca170c479575edf013
d2156f1bf0130d85ed39886f13c042f801640f55
http: remove internal error in assignSocket Change ServerResponse.assignSocket to not throw an internal error, but an error with its own code. Signed-off-by: Matteo Collina <hello@matteocollina.com> PR-URL: https://github.com/nodejs/node/pull/47723 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: ...
[ { "path": "doc/api/errors.md", "patch": "@@ -1438,6 +1438,12 @@ Status code was outside the regular status code range (100-999).\n \n The client has not sent the entire request within the allowed time.\n \n+<a id=\"ERR_HTTP_SOCKET_ASSIGNED\"></a>\n+\n+### `ERR_HTTP_SOCKET_ASSIGNED`\n+\n+The given [`ServerRe...
2023-05-02T20:02:17
golang/go
d0146bd85bb6870aa43a498b06ccb473af55cbe3
ad77cefeb2f5b3f1cef4383e974195ffc8610236
os/exec: only use cachedLookExtensions if Cmd.Path is unmodified Caching the invocation of lookExtensions on an absolute path in Command and reusing the cached result in Start is only viable if Cmd.Path isn't set to a different value after Command returns. For #66586. Fixes #68314. Change-Id: I57007850aca2011b113441...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -334,8 +334,10 @@ type Cmd struct {\n \tlookPathErr error\n \n \t// cachedLookExtensions caches the result of calling lookExtensions.\n+\t// It is set when Command is called with an absolute path, letting it do\n+\t// the work of resolving the extension, so Star...
2024-07-04T22:07:45
electron/electron
d06bb7c97b0f1db9ffdbdf82e0ec138b376fc560
c175d41ae823d389c6b7f3acc5d7f23c4e05b3fa
fix: do not run display check on "closed" windows in tray (#27615) * fix: only run display check on restored wndow if minimized * fix: don't run display check on hidden, non-minimized windows
[ { "path": "shell/browser/native_window_views_win.cc", "patch": "@@ -231,6 +231,7 @@ bool NativeWindowViews::PreHandleMSG(UINT message,\n // of the window during the restore operation, this way chromium can\n // use the proper display to calculate the scale factor to use.\n if (!last_normal...
2021-02-05T20:11:26
vercel/next.js
d8ba60d3a697757115e7c4b19876b500b6ad55c3
59d0b46fe8462773590b7891cff4ee4edce30007
Fix rustflags in *-musl builds (#75614)
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -231,7 +231,7 @@ jobs:\n rustup show &&\n rustup target add x86_64-unknown-linux-musl &&\n npm i -g \"@napi-rs/cli@${NAPI_CLI_VERSION}\" &&\n- export RUSTFLAGS=\"--cfg tokio_unstable -Zsha...
2025-02-03T15:16:09
facebook/react
4ca62cac45c288878d2532e5056981d177f9fdac
15fb8c3045064e13e81706a36bf0e4e419803c97
Improve DevTools bug template text (#21413)
[ { "path": "packages/react-devtools-shared/src/devtools/views/ErrorBoundary/ReportNewIssue.js", "patch": "@@ -11,6 +11,10 @@ import * as React from 'react';\n import Icon from '../Icon';\n import styles from './shared.css';\n \n+function encodeURIWrapper(string: string): string {\n+ return encodeURI(string)...
2021-05-03T20:57:17
rust-lang/rust
41fe03affae87f3c372b6f8ccd250df8396f24f6
68adc1910bb5ce00cbeab933042e9f89a37549fc
xous: fix calling of rust_main_thread_not_inlined This function was incorrectly called run_main_thread_not_inlined when invoked. Signed-off-by: Sean Cross <sean@xobs.io>
[ { "path": "library/std/src/sys/thread/xous.rs", "patch": "@@ -87,7 +87,7 @@ impl Thread {\n // dealloc calls from being reordered to after the TLS has been destroyed.\n // See https://github.com/rust-lang/rust/pull/144465#pullrequestreview-3289729950\n // for more context...
2025-12-01T13:59:50
nodejs/node
ab434d23271349d12a7422fcb37845772f190507
32778b8d0e1dc5464878728ab55fef16c9f77fb5
meta: fix dependabot commit message PR-URL: https://github.com/nodejs/node/pull/47810 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniess...
[ { "path": ".github/dependabot.yml", "patch": "@@ -6,4 +6,6 @@ updates:\n directory: /\n schedule:\n interval: monthly\n+ commit-message:\n+ prefix: meta\n open-pull-requests-limit: 10", "additions": 2, "deletions": 0, "language": "YAML" } ]
2023-05-02T11:52:52
golang/go
be152920b90dd0fd73e2b2d6ffea294e09fc36be
82c14346d89ec0eeca114f9ca0e88516b2cda454
cmd/compile: fix ICE when compiling global a, b = f() CL 327651 rewrites a, b = f() to use temporaries when types are not identical. That would leave OAS2 node appears in body of init function for global variables initialization. The staticinit pass is not updated to handle OAS2 node, causing ICE when compiling global...
[ { "path": "src/cmd/compile/internal/staticinit/sched.go", "patch": "@@ -107,6 +107,20 @@ func (s *Schedule) tryStaticInit(n ir.Node) bool {\n \tcase ir.OAS:\n \t\tn := n.(*ir.AssignStmt)\n \t\tlhs, rhs = []ir.Node{n.X}, n.Y\n+\tcase ir.OAS2:\n+\t\t// Usually OAS2 has been rewritten to separate OASes by type...
2024-07-02T10:17:39
electron/electron
c175d41ae823d389c6b7f3acc5d7f23c4e05b3fa
d5bcf742be9c672502ba1f339318320c51a9a0ef
fix: remove windowName set as title for native window.open() (#27481)
[ { "path": "docs/breaking-changes.md", "patch": "@@ -14,6 +14,12 @@ This document uses the following convention to categorize breaking changes:\n \n ## Planned Breaking API Changes (14.0)\n \n+### API Changed: `window.(open)`\n+\n+The optional parameter `frameName` will no longer set the title of the window....
2021-02-05T19:20:58
facebook/react
098600c42addca272bcb833bf55f53a65126e8aa
df420bc0a360ae443ec447ca87808d91975e6b82
Re-land "Fix: flushSync changes priority inside effect (#21122)" This re-lands commit 0e3c7e1d62efb6238b69e5295d45b9bd2dcf9181.
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.new.js", "patch": "@@ -1142,16 +1142,6 @@ export function unbatchedUpdates<A, R>(fn: (a: A) => R, a: A): R {\n \n export function flushSync<A, R>(fn: A => R, a: A): R {\n const prevExecutionContext = executionContext;\n- if ((prevExecutionContex...
2021-05-03T18:34:21
rust-lang/rust
68adc1910bb5ce00cbeab933042e9f89a37549fc
e7d44143a12a526488e4f0c0d7ea8e62a4fe9354
xous: fix unwinding and unused symbol errors The unwinding feature is called `panic-unwind` and not `panic_unwind`. Adjust the feature gate to look for these values. Additionally, the `abort_internal()` call is no longer used. Signed-off-by: Sean Cross <sean@xobs.io>
[ { "path": "library/std/src/sys/pal/xous/mod.rs", "patch": "@@ -1,14 +1,8 @@\n #![forbid(unsafe_op_in_unsafe_fn)]\n \n-use crate::os::xous::ffi::exit;\n-\n pub mod os;\n pub mod time;\n \n #[path = \"../unsupported/common.rs\"]\n mod common;\n pub use common::*;\n-\n-pub fn abort_internal() -> ! {\n- exit...
2025-10-28T05:21:37
nodejs/node
9658d84dddd3835a61e3f270928f3480abadb5ca
8587e3b369331bfdd1fa3d540002fd115f31b748
tools: fix jsdoc lint PR-URL: https://github.com/nodejs/node/pull/47789 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Mestery...
[ { "path": "benchmark/common.js", "patch": "@@ -374,7 +374,6 @@ function getUrlData(withBase) {\n * The 'wpt' type contains about 400 data points when `withBase` is true,\n * and 200 data points when `withBase` is false.\n * Other types contain 200 data points with or without base.\n- *\n * @param {strin...
2023-04-30T04:13:04
golang/go
82c14346d89ec0eeca114f9ca0e88516b2cda454
7d19d508a994be9731e27b14b6ecc13ccf527138
cmd/link: don't disable memory profiling when pprof.WriteHeapProfile is used We have an optimization that if the memory profile is not consumed anywhere, we set the memory profiling rate to 0 to disable the "background" low-rate profiling. We detect whether the memory profile is used by checking whether the runtime.Me...
[ { "path": "src/cmd/link/internal/ld/ld_test.go", "patch": "@@ -304,7 +304,34 @@ package main\n import \"runtime\"\n import \"runtime/pprof\"\n func main() {\n- _ = pprof.Profiles()\n+\t_ = pprof.Profiles()\n+\tprintln(runtime.MemProfileRate)\n+}\n+`,\n+\t\t\t\"524288\",\n+\t\t},\n+\t\t{\n+\t\t\t\"wit...
2024-07-03T18:14:34
electron/electron
eb91b1c9655cebfe048222b5d6dfbd354962002a
b31217a889134620d0763e65d62ae1dc5f53c6fd
fix: avoid flicker when leaving fullscreen in frameless window (#27587)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1490,11 +1490,6 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n void NativeWindowMac::NotifyWindowLeaveFullScreen() {\n NativeWindow::NotifyWindowLeaveFullScreen();\n exiting_fullscreen_ = false;\n- // Add back buttonsView after l...
2021-02-05T01:03:12
facebook/react
b6644fabb9634216b3c422b52d29abcfb1ee2e77
269dd6ec5da85fc5ca819cfa010ce60dd1c83ec6
Added test fixture for scheduling profiler (#21397)
[ { "path": "fixtures/devtools/scheduling-profiler/.gitignore", "patch": "@@ -0,0 +1 @@\n+dependencies", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "fixtures/devtools/scheduling-profiler/README.md", "patch": "@@ -0,0 +1,15 @@\n+# Test fixture for `packages/react...
2021-04-30T19:23:45
rust-lang/rust
83749a4dd447d04cc52ed0524d89a0d5a1408b67
e7d44143a12a526488e4f0c0d7ea8e62a4fe9354
rustdoc: fix incorrect type filter name in help popup
[ { "path": "src/librustdoc/html/static/js/main.js", "patch": "@@ -1669,7 +1669,7 @@ function preLoadCss(cssUrl) {\n restrict the search to a given item kind.\",\n \"Accepted kinds are: <code>fn</code>, <code>mod</code>, <code>struct</code>, \\\n <code>enum</code>, <code>...
2025-12-25T03:52:34
nodejs/node
798db3c92a9b9c9f991eed59ce91e9974c052bc9
3a3672ba6c8cb9143ee421d20e7c110e1284315b
doc: fix --allow-* CLI flag references PR-URL: https://github.com/nodejs/node/pull/47804 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -552,9 +552,9 @@ Enable the Permission Model for current process. When enabled, the\n following permissions are restricted:\n \n * File System - manageable through\n- \\[`--allow-fs-read`]\\[],\\[`allow-fs-write`]\\[] flags\n-* Child Process - manageable through \\[...
2023-05-01T22:24:33
golang/go
5f50b1e3bf710b4107eb38496d932b3d9bd1fc98
71f9dbb1e409a28680f40c60fad5a386ed92a096
cmd/compile: fix mis-compilation when switching over channels CL 418101 changes Unified IR writer to force mixed tag/case to have common type, emitting the implicit conversion if any of the case values are not assignable to the tag value's type. However, the Go spec definition of equality is non-transitive for channe...
[ { "path": "src/cmd/compile/internal/noder/writer.go", "patch": "@@ -1582,6 +1582,7 @@ func (w *writer) switchStmt(stmt *syntax.SwitchStmt) {\n \tw.stmt(stmt.Init)\n \n \tvar iface, tagType types2.Type\n+\tvar tagTypeIsChan bool\n \tif guard, ok := stmt.Tag.(*syntax.TypeSwitchGuard); w.Bool(ok) {\n \t\tiface...
2024-06-24T19:35:19
electron/electron
b31217a889134620d0763e65d62ae1dc5f53c6fd
476d86491b743c634b07e054cc17e6baf6e9cea4
chore: fix lint (#27620)
[ { "path": "docs/tutorial/devtools-extension.md", "patch": "@@ -97,7 +97,7 @@ of the extension is not working as expected.\n [devtools-extension]: https://developer.chrome.com/extensions/devtools\n [session]: ../api/session.md\n [react-devtools]: https://chrome.google.com/webstore/detail/react-developer-tool...
2021-02-04T21:02:36
rust-lang/rust
69f987dbe8a03c8dfef081aa490a15b9e4c0c695
e7d44143a12a526488e4f0c0d7ea8e62a4fe9354
Bump stringdex, fix compiler-docs Fixes https://github.com/rust-lang/rust/issues/150346
[ { "path": "Cargo.lock", "patch": "@@ -5357,9 +5357,9 @@ dependencies = [\n \n [[package]]\n name = \"stringdex\"\n-version = \"0.0.4\"\n+version = \"0.0.5\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"c6204af9e1e433f1ef9b6d44475c7089be33c91111d896463b9dfa20464b87f1\"\...
2025-12-25T02:53:06
facebook/react
269dd6ec5da85fc5ca819cfa010ce60dd1c83ec6
3c21aa855a13707a8abe5dc6eaf2d2a7429fa762
subtreeFlag warning: Fix legacy suspense false positive (#21388) Legacy Suspense is weird. We intentionally commit a suspended fiber in an inconsistent state. If the fiber suspended before it mounted any effects, then the fiber won't have a PassiveStatic effect flag, which will trigger the "missing expected subtree...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.new.js", "patch": "@@ -480,7 +480,13 @@ export function renderWithHooks<Props, SecondArg>(\n if (\n current !== null &&\n (current.flags & StaticMaskEffect) !==\n- (workInProgress.flags & StaticMaskEffect)\n+ (workInProgr...
2021-04-29T13:28:38
vercel/next.js
9aca660658748a8c595b7c407a0f370106e4fe2d
6f03bb297b8a2bd842f97ea1869d21bd28652ec9
chore: remove global-error in hello-world example (#75509) ### What This error boundary shouldnt exist in hello-world example, was accidentally added in #75101
[ { "path": "test/e2e/app-dir/hello-world/app/global-error.tsx", "patch": "@@ -1,13 +0,0 @@\n-'use client'\n-export default function GlobalError() {\n- return (\n- <html>\n- <head />\n- <body>\n- <div>\n- <h1>Something went wrong</h1>\n- </div>\n- </body>\n- </html...
2025-02-03T14:51:19
facebook/react
e7e0a90bd8558af16bb6aa278097536d9b69643c
7bac7607a764074e66dd57c68c09ec5cc898f4a5
Revert "Fix: flushSync changes priority inside effect (#21122)" This reverts commit 0e3c7e1d62efb6238b69e5295d45b9bd2dcf9181. When called from inside an effect, flushSync cannot synchronously flush its updates because React is already working. So we fire a warning. However, we should still change the priority of the...
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.new.js", "patch": "@@ -1142,6 +1142,16 @@ export function unbatchedUpdates<A, R>(fn: (a: A) => R, a: A): R {\n \n export function flushSync<A, R>(fn: A => R, a: A): R {\n const prevExecutionContext = executionContext;\n+ if ((prevExecutionContex...
2021-04-23T16:48:13
golang/go
71f9dbb1e409a28680f40c60fad5a386ed92a096
148755a27b50134d1db72c3c0bdf500815569531
cmd/compile: emit error message on mismatch import path Fixes #54542 Change-Id: I16cfb84fc54892923106d0a6f0b3ba810886d077 Reviewed-on: https://go-review.googlesource.com/c/go/+/596396 Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceac...
[ { "path": "src/cmd/compile/internal/noder/unified.go", "patch": "@@ -7,6 +7,7 @@ package noder\n import (\n \t\"fmt\"\n \t\"internal/pkgbits\"\n+\t\"internal/types/errors\"\n \t\"io\"\n \t\"runtime\"\n \t\"sort\"\n@@ -403,7 +404,10 @@ func readPackage(pr *pkgReader, importpkg *types.Pkg, localStub bool) {\n...
2024-07-03T06:13:05
nodejs/node
2a165505b7841944cab855457d8475cbb04f5e74
a4cf6b204f0b160480153dc293ae748bf15225f9
deps: disable V8 concurrent sparkplug compilation It introduces process hangs on some platforms because Node.js doesn't tear down V8 correctly. Disable it while we work on a solution. Refs: https://github.com/nodejs/node/issues/47297 Refs: https://bugs.chromium.org/p/v8/issues/detail?id=13902 PR-URL: https://github.c...
[ { "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.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "...
2023-04-06T12:50:56
electron/electron
ac5c9a88281dec02393b056482c848b3c82ca973
59d1b650ca965fa742b315529d7bcc5e80dc05c1
Fixing `source` typo (#27583)
[ { "path": "docs/tutorial/dark-mode.md", "patch": "@@ -154,7 +154,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, "language": "...
2021-02-02T23:11:46
facebook/react
7edd6281344a35519ca36b8a8280e7ba37187004
a0d6b155dc3a182162b9f91baac33df39d7919df
Removed (deleted) tracing fixture test from relesae scripts
[ { "path": "scripts/release/prepare-release-from-ci.js", "patch": "@@ -9,7 +9,6 @@ const downloadBuildArtifacts = require('./shared-commands/download-build-artifac\n const parseParams = require('./shared-commands/parse-params');\n const printPrereleaseSummary = require('./shared-commands/print-prerelease-sum...
2021-04-28T16:36:09
rust-lang/rust
851a98e17efa2c3524b761beda8110925f7f3819
31ea246611e0b63707af75d6c71d7e7fae450a65
Fix `assertions_on_constants` false positive when there is non-constant value in the condition expr
[ { "path": "clippy_lints/src/assertions_on_constants.rs", "patch": "@@ -3,6 +3,7 @@ use clippy_utils::consts::{ConstEvalCtxt, Constant};\n use clippy_utils::diagnostics::span_lint_and_help;\n use clippy_utils::macros::{find_assert_args, root_macro_call_first_node};\n use clippy_utils::msrvs::Msrv;\n+use clip...
2025-12-24T16:44:17
vercel/next.js
6f03bb297b8a2bd842f97ea1869d21bd28652ec9
f9ba41ed224035f20d1d123f0d872a8e3f5b17ce
Turbopack: Disable react_refresh code in production (#75535) ## What? Ensures we don't inject React refresh helpers in production: ``` 'object' == typeof globalThis.$RefreshHelpers$ && null !== globalThis.$RefreshHelpers && p.registerExports(v, globalThis.$RefreshHelpers$); ``` Also skips trying to re...
[ { "path": "crates/next-core/src/transform_options.rs", "patch": "@@ -126,10 +126,15 @@ pub async fn get_jsx_transform_options(\n ) -> Result<Vc<JsxTransformOptions>> {\n let tsconfig = get_typescript_options(project_path).await?;\n \n- let enable_react_refresh = if let Some(resolve_options_context) =...
2025-02-03T14:47:56
golang/go
f12ac5be7045efcde39025c32cc01a20a305012c
09aeb6e33ab426eff4676a3baf694d5a3019e9fc
time: fix time zone parsing when format includes time zone seconds The current implementation fails to parse a time string with a "Z" time zone using a time format that includes time zone seconds. This fix correctly parses the "Z" time zone for any Z-base time format that includes seconds (i.e. "Z070000" or "Z07:00:00...
[ { "path": "src/time/format.go", "patch": "@@ -1203,12 +1203,14 @@ func parse(layout, value string, defaultLocation, local *Location) (Time, error)\n \t\t\tdefault:\n \t\t\t\terr = errBad\n \t\t\t}\n-\t\tcase stdISO8601TZ, stdISO8601ColonTZ, stdISO8601SecondsTZ, stdISO8601ShortTZ, stdISO8601ColonSecondsTZ, s...
2024-07-01T17:25:28
nodejs/node
1300ed0b164ab57d9bd39e142337707d9a1ac09c
bddf341774586895ead3b9232cba7387752440f7
test_runner: fix --require with --experimental-loader PR-URL: https://github.com/nodejs/node/pull/47751 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "src/api/environment.cc", "patch": "@@ -529,6 +529,9 @@ NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(\n CHECK_NOT_NULL(env);\n if (name == nullptr) name = \"\";\n CHECK_NE(thread_id.id, static_cast<uint64_t>(-1));\n+ if (!env->should_create_inspector()) {\n+ ...
2023-04-29T23:02:03
electron/electron
59d1b650ca965fa742b315529d7bcc5e80dc05c1
72127b2916d450a7a734b348df00b4487d81f37e
build: fix buildflags.h generation on macos (#27579)
[ { "path": ".circleci/config.yml", "patch": "@@ -452,10 +452,6 @@ step-fix-sync-on-mac: &step-fix-sync-on-mac\n # Fix Clang Install (wrong binary)\n rm -rf src/third_party/llvm-build\n python src/tools/clang/scripts/update.py\n- # Temporarily use an older version of gn\n- ...
2021-02-02T22:01:58
facebook/react
22ab39be681251f1c0f257af7e636cb8debf31c4
2182563dc400b51fccea034dfcebe2aff9ee979e
DevTools console patching should handle Symbols without erroring (#21368)
[ { "path": "packages/react-devtools-shared/src/__tests__/console-test.js", "patch": "@@ -453,4 +453,16 @@ describe('console', () => {\n '\\n in Child (at **)\\n in Intermediate (at **)\\n in Parent (at **)',\n );\n });\n+\n+ it('should correctly log Symbols', () => {\n+ const Compone...
2021-04-27T20:36:20
golang/go
09aeb6e33ab426eff4676a3baf694d5a3019e9fc
94982a07825aec711f11c97283e99e467838d616
os: add TODO about removing test exception TestChtimesOmit excludes the failure on DragonFly BSD when both atime and mtime are omitted. The relevant Dragonfly BSD bug is now fixed in git (see [1]). Add a TODO comment to remove the exclusion from the test once the fix is generally available. This comment also address...
[ { "path": "src/os/os_test.go", "patch": "@@ -1440,6 +1440,9 @@ func testChtimesOmit(t *testing.T, omitAt, omitMt bool) {\n \tgotAtime := Atime(fs)\n \tgotMtime := fs.ModTime()\n \n+\t// TODO: remove the dragonfly omitAt && omitMt exceptions below once the\n+\t// fix (https://github.com/DragonFlyBSD/DragonFl...
2024-07-01T19:41:56
vercel/next.js
f9ba41ed224035f20d1d123f0d872a8e3f5b17ce
0175834ba398a01dadc6e51cbd8a9515955d39e2
fix(turbo-tasks): Fix building with --features=turbo-tasks/hanging_detection (#75584) Try building with and without the feature enabled: ``` cargo check cargo check --features=turbo-tasks/hanging_detection ```
[ { "path": "turbopack/crates/turbo-tasks/src/event.rs", "patch": "@@ -10,6 +10,7 @@ use std::{\n fmt::{Debug, Formatter},\n future::Future,\n mem::replace,\n+ pin::Pin,\n };\n \n #[cfg(feature = \"hanging_detection\")]\n@@ -140,7 +141,7 @@ impl Future for EventListener {\n type Output = ()...
2025-02-03T14:46:12
nodejs/node
bddf341774586895ead3b9232cba7387752440f7
4c620427741878a1c2d97533d7ebe175eed8c29f
v8: fix ERR_NOT_BUILDING_SNAPSHOT is not a constructor PR-URL: https://github.com/nodejs/node/pull/47721 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "lib/internal/v8/startup_snapshot.js", "patch": "@@ -4,8 +4,10 @@ const {\n validateFunction,\n } = require('internal/validators');\n const {\n- ERR_NOT_BUILDING_SNAPSHOT,\n- ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION,\n+ codes: {\n+ ERR_NOT_BUILDING_SNAPSHOT,\n+ ERR_DUPLICATE_STARTUP...
2023-04-29T16:50:42
electron/electron
444ad26f89fbf32696721a2270b54c0fcd8cb8b3
272611cc825459725f8a356c1732a1bbeb011a82
feat: add option to not transform processes on win.SetVisibleOnAllWorkspaces (#27200) * fix: optionally transform processes on win.SetVisibleOnAllWorkspaces on macOS, making it backwards-compatible with v9.2.1 (#27101) * fix: optionally transform processes on win.SetVisibleOnAllWorkspaces on macOS, making it backwa...
[ { "path": "docs/api/browser-window.md", "patch": "@@ -1624,7 +1624,14 @@ Returns `Boolean` - Whether the menu bar is visible.\n * `visible` Boolean\n * `options` Object (optional)\n * `visibleOnFullScreen` Boolean (optional) _macOS_ - Sets whether\n- the window should be visible above fullscreen window...
2021-02-02T12:24:04