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 | ff0c2d96348fd86f77ecf6868dc1a0f09e35ff90 | 950fcf129ecc75e6311d3aaf555e7b8add3248cb | cmd/internal/obj/loong64: fixed operand assignment error for BFPT/BFPF instructions
The BFPT correspond to BCNEZ instruction of LoongArch64 which structure
is:
| op-p1 | offs[15:0] | op-p2 | cj | offs[20:16] |
The register REG_FCC0 should be assigned to the source operand cj which named rj here.
Change-Id: I696d0a46... | [
{
"path": "src/cmd/internal/obj/loong64/asm.go",
"patch": "@@ -1373,7 +1373,7 @@ func (c *ctxt0) asmout(p *obj.Prog, o *Optab, out []uint32) {\n \t\t\twidth = 21\n \t\t\t// FCC0 is the implicit source operand, now that we\n \t\t\t// don't register-allocate from the FCC bank.\n-\t\t\trd = REG_FCC0\n+\t\t\trj... | 2024-01-06T09:26:37 |
facebook/react | 54e88ed12c931fa717738849ba5656cc1cf3527a | cb8afda183e9c931978279d3a1706d1d9c905484 | Bugfix: Flush legacy sync passive effects at beginning of event (#21846)
* Re-land recent flushSync changes
Adds back #21776 and #21775, which were removed due to an internal
e2e test failure.
Will attempt to fix in subsequent commits.
* Failing test: Legacy mode sync passive effects
In concurrent roots, ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/__snapshots__/profilingCache-test.js.snap",
"patch": "@@ -40,7 +40,7 @@ Object {\n 6 => 1,\n },\n \"passiveEffectDuration\": null,\n- \"priorityLevel\": \"Normal\",\n+ \"priorityLevel\": \"Immediate\",\n \"timestamp\": 16,\n \"updaters\":... | 2021-07-10T18:15:11 |
nodejs/node | f0e70eede2fb58ce04326fd5439c741db240bef3 | e2caafa5bd1bddd813186f1ea5c14ed5b5f9b628 | test_runner: fix test deserialize edge cases
PR-URL: https://github.com/nodejs/node/pull/48106
Fixes: https://github.com/nodejs/node/issues/48103
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "lib/internal/test_runner/reporter/v8-serializer.js",
"patch": "@@ -1,12 +1,17 @@\n 'use strict';\n \n+const {\n+ TypedArrayPrototypeGetLength,\n+} = primordials;\n const { DefaultSerializer } = require('v8');\n const { Buffer } = require('buffer');\n const { serializeError } = require('internal/... | 2023-05-23T21:03:19 |
vercel/next.js | 306de729a1f5c374bef82016fa4dcca8715facd4 | c616304c4894434aedd496775aaad12524d52e0f | fix(turbopack): Update Cargo.toml/package.json license field for turbopack-related crates (#75889)
Make this match what the license.md file in the root already says.
Got approval from legal here: https://vercel.slack.com/archives/C08CP9WLM6X/p1739235323414089 | [
{
"path": "crates/next-api/Cargo.toml",
"patch": "@@ -2,7 +2,7 @@\n name = \"next-api\"\n version = \"0.1.0\"\n description = \"TBD\"\n-license = \"MPL-2.0\"\n+license = \"MIT\"\n edition = \"2021\"\n autobenches = false\n ",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"pa... | 2025-02-11T17:55:12 |
golang/go | 44663f333b160984bb499bc7211a352c56d5f56b | 1ef6b2805ea1d78c082c7c55df39fc3d3942e4c9 | cmd/internal/obj/loong64: return an error when getting address of tls variable
The tls variable is thread local variable, an operation to get its address
is not supported, so we should return an error here.
Change-Id: Ia6a637f549cb886fdb643bdc04eeb269849d1096
Reviewed-on: https://go-review.googlesource.com/c/go/+/565... | [
{
"path": "src/cmd/internal/obj/loong64/a.out.go",
"patch": "@@ -213,7 +213,6 @@ const (\n \tC_LACON // $n(REG) where int12 < n <= int32\n \tC_LECON\n \tC_DACON // $n(REG) where int32 < n\n-\tC_STCON // $tlsvar\n \tC_SBRA\n \tC_LBRA\n \tC_SAUTO",
"additions": 0,
"deletions": 1,
"language": "Go"
... | 2024-01-11T02:48:12 |
facebook/react | f52b73f9d0a9adbdb2815af440b2edd6b5627ff0 | 92af60afb2a229c0b70d360a80e24e4f7fd394aa | DevTools: Update named hooks match to use column number also (#21833)
This prevents edge cases where AST nodes are incorrectly matched. | [
{
"path": ".eslintignore",
"patch": "@@ -21,6 +21,7 @@ packages/react-devtools-extensions/chrome/build\n packages/react-devtools-extensions/firefox/build\n packages/react-devtools-extensions/shared/build\n packages/react-devtools-extensions/src/__tests__/__source__/__compiled__/\n+packages/react-devtools-ex... | 2021-07-08T20:12:22 |
electron/electron | b6d2ae04555648459d6784c6cc823ec01cf72907 | 97b6868e9c3455292df1789294bbeb16b065dd0b | Fixup 2752406: [LSC] Replace base::string16 with std::u16string in //ui | [
{
"path": "shell/browser/ui/inspectable_web_contents_view.h",
"patch": "@@ -6,6 +6,8 @@\n #ifndef SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_VIEW_H_\n #define SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_VIEW_H_\n \n+#include <string>\n+\n #include \"ui/gfx/native_widget_types.h\"\n \n class DevToolsContentsRes... | 2021-03-16T19:43:51 |
nodejs/node | 300f68e9d0fcee9f50dd124000b2027b24592c8a | 92a938b4dd318a8732110da03f1f666db2e96f97 | tools: fix race condition when npm installing
The update scripts that install dependencies from npm blindly assume
that `npm install` will always install the version that was previously
fetched as `dist-tags.latest`. That is not necessarily true, so instead
always install the specific version that the script thinks is... | [
{
"path": "tools/dep_updaters/update-acorn-walk.sh",
"patch": "@@ -33,7 +33,7 @@ rm -rf deps/acorn/acorn-walk\n \n \"$NODE\" \"$NPM\" init --yes\n \n- \"$NODE\" \"$NPM\" install --global-style --no-bin-links --ignore-scripts acorn-walk\n+ \"$NODE\" \"$NPM\" install --global-style --no-bin-links --... | 2023-05-23T09:45:56 |
vercel/next.js | c616304c4894434aedd496775aaad12524d52e0f | 69bf8307cff02fd3e550399ebfe002b15886f808 | Turbopack: use result instead of panic (#75903)
This seems to fix at least some cases of `called Option::unwrap() on a None value`.
I suspect this is because of the eventual consistency model in dev?
It also adds better error messages for the various situations. | [
{
"path": "test/development/app-dir/missing-required-html-tags/index.test.ts",
"patch": "@@ -61,7 +61,18 @@ describe('app-dir - missing required html tags', () => {\n )\n )\n \n- // TODO(NDX-768): Should show \"missing tags\" error\n- await assertNoRedbox(browser)\n+ if (process.env.TURBO... | 2025-02-11T17:42:02 |
rust-lang/rust | 8d66e588383a0abda53931a81c5b5a918e95fc05 | 6f06d386b82295b3e19d5bdfb559611b052d03ef | Fix some tests so they test the correct function | [
{
"path": "library/stdarch/crates/core_arch/src/x86/avx512f.rs",
"patch": "@@ -57344,7 +57344,7 @@ mod tests {\n 0, 0, 0, 0,\n 0, 0, 0, 1 << 3 | 1 << 4,\n );\n- let r = _mm512_and_epi32(a, b);\n+ let r = _mm512_and_si512(a, b);\n let e = _mm512_set_epi32... | 2025-12-28T18:32:34 |
golang/go | 1ef6b2805ea1d78c082c7c55df39fc3d3942e4c9 | ac51262592a20e16afec77163eff98be1d336f5c | net/http: don't write HEAD response body in ResponseWriter.ReadFrom
Responses to HEAD requests don't have a body.
The ResponseWriter automatically discards writes to the response body
when responding to a HEAD request. ResponseWriter.ReadFrom was failing
to discard writes under some circumstances; fix it to do so.
F... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -1510,7 +1510,7 @@ func testHeadResponses(t *testing.T, mode testMode) {\n \t\t}\n \n \t\t// Also exercise the ReaderFrom path\n-\t\t_, err = io.Copy(w, strings.NewReader(\"789a\"))\n+\t\t_, err = io.Copy(w, struct{ io.Reader }{strings.NewReader(\"789a\")... | 2024-07-26T20:23:09 |
facebook/react | 92f3414d03d8744c420e15e55d7dc832deb2fa53 | feb2f6892ab42a6efc1333bbf1544b7337e8f244 | Reset inspected element cache in the event of an error (#21821) | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementContext.js",
"patch": "@@ -108,8 +108,8 @@ export function InspectedElementContextController({children}: Props) {\n }\n \n // Don't load a stale element from the backend; it wastes bridge bandwidth.\n- let inspected... | 2021-07-08T18:07:15 |
electron/electron | 97b6868e9c3455292df1789294bbeb16b065dd0b | 29dfabadfd35b77b997f6e647f48fa4cf7b41918 | fixup 2651385: Moving Profile::shared_cors_origin_access_list_ into //content layer | [
{
"path": "shell/browser/electron_browser_context.cc",
"patch": "@@ -108,7 +108,7 @@ ElectronBrowserContext::ElectronBrowserContext(const std::string& partition,\n : storage_policy_(new SpecialStoragePolicy),\n protocol_registry_(new ProtocolRegistry),\n in_memory_(in_memory),\n- ssl_co... | 2021-03-16T19:43:09 |
nodejs/node | 92a938b4dd318a8732110da03f1f666db2e96f97 | 40d8b366eb89b3bebd5885bddd70ba8c5fbee13d | tools: refloat 7 Node.js patches to cpplint.py
Cherry-pick 12c8b4d15471cb6211b39c3a2ca5b10fa4b9f12b
Original commit message:
This commit is a suggestion for adding a rule for NULL usages in the
code base. This will currently report a number of errors which could be
ignored using // NOLINT (readability/null... | [
{
"path": "tools/cpplint.py",
"patch": "@@ -302,6 +302,7 @@\n 'build/include',\n 'build/include_subdir',\n 'build/include_alpha',\n+ 'build/include_inline',\n 'build/include_order',\n 'build/include_what_you_use',\n 'build/namespaces_headers',\n@@ -317,11 +318,13 @@\n 'readabi... | 2020-10-09T13:00:00 |
vercel/next.js | 4744bc788d053654f74ee335a173e103095aff5a | 0b1767d3bbac92153c0359bd458987b030d99b7b | [Turbopack] fix hanging bug caused by incorrect active counter handling on stale tasks (#75732)
### What?
fix cases where action counter is messed up when tasks are invalidated during execution | [
{
"path": "crates/next-core/src/emit.rs",
"patch": "@@ -1,4 +1,5 @@\n use anyhow::Result;\n+use rustc_hash::FxHashSet;\n use tracing::Instrument;\n use turbo_tasks::{\n graph::{AdjacencyMap, GraphTraversal},\n@@ -112,6 +113,8 @@ pub async fn all_assets_from_entries(entries: Vc<OutputAssets>) -> Result<V... | 2025-02-11T09:24:40 |
facebook/react | 241485a2c4db75f42baf62c68f54e7cdef101c31 | 8b34d5a905a17e95b5b9b515b60acbb2370f3603 | [SSR2 Fixture] Delete duplicate DOCTYPE (#21824) | [
{
"path": "fixtures/ssr2/server/render.js",
"patch": "@@ -47,7 +47,6 @@ module.exports = function render(url, res) {\n // If something errored before we started streaming, we set the error code appropriately.\n res.statusCode = didError ? 500 : 200;\n res.setHeader('Content-type', 't... | 2021-07-08T02:11:42 |
golang/go | ac51262592a20e16afec77163eff98be1d336f5c | fad6390f38eb96e4e053452ae21a88260cbcf202 | cmd,log,net,runtime: simplify string prefix and suffix processing
Use the TrimPrefix, TrimSuffix and CutPrefix to simplify the code.
Change-Id: I3e2b271ec0d3f9ce664b830e2b0c21ab47337ed0
GitHub-Last-Rev: 4bd1577d2496173800d609da75b08f6de177aba9
GitHub-Pull-Request: golang/go#68629
Reviewed-on: https://go-review.google... | [
{
"path": "src/cmd/cgo/out.go",
"patch": "@@ -378,9 +378,7 @@ func dynimport(obj string) {\n \t\tdefer f.Close()\n \t\tsym, _ := f.ImportedSymbols()\n \t\tfor _, s := range sym {\n-\t\t\tif len(s) > 0 && s[0] == '_' {\n-\t\t\t\ts = s[1:]\n-\t\t\t}\n+\t\t\ts = strings.TrimPrefix(s, \"_\")\n \t\t\tcheckImport... | 2024-07-29T10:23:14 |
electron/electron | 29dfabadfd35b77b997f6e647f48fa4cf7b41918 | d0989802bd460a6a3d0a067222bfdd684dbffc62 | Fixup 2721718: Move HostID to extensions::mojom::HostID | [
{
"path": "shell/browser/extensions/api/tabs/tabs_api.cc",
"patch": "@@ -86,7 +86,7 @@ ExecuteCodeFunction::InitResult ExecuteCodeInTabFunction::Init() {\n execute_tab_id_ = tab_id;\n details_ = std::move(details);\n set_host_id(\n- mojom::HostID(mojom::HostID::HostType::kExtensions, extension->i... | 2021-03-16T19:40:29 |
nodejs/node | 1229a22e515c8ec7f7dc5abc4a62f882555f1e20 | 7e0c12fd56b9e6bd5b1e69f10992f29db0a271bc | test_runner: delegate stderr and stdout formatting to reporter
Introduce new `TestsStream` events `test:stderr` and `test:stdout`
to delegate `stderr` and `stdout` (e.g. `console.log()`) formatting
to the reporter. And patch existing reporters to:
- Spec: output the message as it is
- TAP: stay the same with existing ... | [
{
"path": "doc/api/test.md",
"patch": "@@ -1521,6 +1521,24 @@ Emitted when all subtests have completed for a given test.\n \n Emitted when a test starts.\n \n+### Event: `'test:stderr'`\n+\n+* `data` {Object}\n+ * `file` {string} The path of the test file.\n+ * `message` {string} The message written to `s... | 2023-05-23T04:44:48 |
vercel/next.js | 203fa9f321a92f3ccd18a86305ef6f02630df885 | 95c3522b157b58cdbf578e5b98a0b9799bc0c3b5 | [Turbopack] fix recompute invalidation (#75850)
### What?
* add tracing to recomputation
* fix recomputation hanging in a loop (reexecution should not invalidate recomputed cells, even if they still have content and Eq says they are not equal. Some value types does implement Eq as always false, e. g. the AST) | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -682,6 +682,13 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n return Ok(Err(listener));\n }\n \n+ let _span = tracing::trace_span!(\n+ \"recomputation\",\n+ cell_type ... | 2025-02-11T08:09:39 |
facebook/react | 8b34d5a905a17e95b5b9b515b60acbb2370f3603 | 9ccc25a0ea322b39ea04f8dfc03620ea90e0da94 | DevTools show error icon when hook name parsing fails (#21820) | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementContext.js",
"patch": "@@ -26,7 +26,6 @@ import {\n inspectElement,\n } from 'react-devtools-shared/src/inspectedElementCache';\n import {loadHookNames} from 'react-devtools-shared/src/hookNamesCache';\n-import {Elemen... | 2021-07-07T20:27:39 |
golang/go | fad6390f38eb96e4e053452ae21a88260cbcf202 | aa97a012b4be393c1725c16a78b92dea81632378 | net/http: don't write body for HEAD responses in Response.Write
Fixes #62015
Change-Id: I88c5427f85e740d5b956942bb1c2727dac2935ea
Reviewed-on: https://go-review.googlesource.com/c/go/+/601238
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
LUCI-TryBot-Result: Go ... | [
{
"path": "src/net/http/response_test.go",
"patch": "@@ -21,9 +21,10 @@ import (\n )\n \n type respTest struct {\n-\tRaw string\n-\tResp Response\n-\tBody string\n+\tRaw string\n+\tRawOut string\n+\tResp Response\n+\tBody string\n }\n \n func dummyReq(method string) *Request {\n@@ -42,6 +43,11 @@ va... | 2024-07-26T22:34:03 |
vercel/next.js | 4734763ee56a062cfdd5ec6595e5442deccdba8a | 9f5806ab79742e98d3d499e69dc367cb4f36e50c | [metadata] do not rethrow postpone when streaming metadata is not enabled (#75887)
### What
We should not throw the postpone error in metadata resolving when
streaming metadata is not enabled.
### Why
The suspense boundary of streaming metadata can catch the postpone error
and render the fallback, but in bl... | [
{
"path": "packages/next/src/lib/metadata/metadata.tsx",
"patch": "@@ -162,14 +162,14 @@ export function createMetadataComponents({\n } catch (notFoundMetadataErr) {\n // In PPR rendering we still need to throw the postpone error.\n // If metadata is postponed, React needs to be ... | 2025-02-11T02:15:53 |
nodejs/node | 2edd6cab1e6948e0ec1b34156be0d4cc77280b54 | 959142a4652f7b6e90743be874fe9c065ed31d99 | doc: fix typo in crypto legacy streams API section
PR-URL: https://github.com/nodejs/node/pull/48122
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -5561,7 +5561,7 @@ When passing strings to cryptographic APIs, consider the following factors.\n \n The Crypto module was added to Node.js before there was the concept of a\n unified Stream API, and before there were [`Buffer`][] objects for handling\n-binary data... | 2023-05-22T23:34:18 |
facebook/react | 9c7f29ebe75a7546e59038123d3b0c3515bec916 | ed6c091fe961a3b95e956ebcefe8f152177b1fb7 | [WIP] DevTools: Support named hooks for >1 module in a bundle (#21790)
* Add named hooks test case built with Rollup
* Fix prepareStackTrace unpatching, remove sourceURL
* Prettier
* Resolve source map URL/path relative to the script
* Add failing tests for multi-module bundle
* Parse hook names from mu... | [
{
"path": "packages/react-devtools-extensions/package.json",
"patch": "@@ -19,6 +19,7 @@\n \"update-mock-source-maps\": \"node ./src/__tests__/updateMockSourceMaps.js\"\n },\n \"devDependencies\": {\n+ \"acorn-jsx\": \"^5.2.0\",\n \"@babel/core\": \"^7.11.1\",\n \"@babel/plugin-proposal-c... | 2021-07-07T17:07:58 |
golang/go | fd7d5a6e6c56c79059b5ce4bb9f38897ad752b3c | 28aed4015ee7ba85b29007d685de9150e01a9acd | debug/buildinfo: add test for malformed strings
Updates #68592.
Change-Id: I00c6c740ca0bdd19af24e08a219ec3c90196097e
Reviewed-on: https://go-review.googlesource.com/c/go/+/601458
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Aut... | [
{
"path": "src/debug/buildinfo/buildinfo_test.go",
"patch": "@@ -134,6 +134,22 @@ func TestReadFile(t *testing.T) {\n \t\t}\n \t}\n \n+\tdamageStringLen := func(t *testing.T, name string) {\n+\t\tdata, err := os.ReadFile(name)\n+\t\tif err != nil {\n+\t\t\tt.Fatal(err)\n+\t\t}\n+\t\ti := bytes.Index(data, [... | 2024-07-26T17:26:12 |
vercel/next.js | 0915a508c7bef429e34c11a9ac66aa568a05bb29 | 026f00e2944c53313ef9a32f1a298ab3e310ebda | fix(turbopack): Always console.log the "done in" message after receiving a BUILT event (#75730)
Previously, when making a change that doesn't actually cause any modules to update, you could see a:
```
[Fast Refresh] rebuilding
```
that is never followed by a
```
[Fast Refresh] done in 90ms
```
message. This PR att... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx",
"patch": "@@ -63,6 +63,8 @@ let mostRecentCompilationHash: any = null\n let __nextDevClientId = Math.round(Math.random() * 100 + Date.now())\n let reloading = false\n let startLatency: number | null = null\n+let t... | 2025-02-10T21:15:07 |
nodejs/node | f858dc5b5b44b431c2905a2882876c7d46e2292f | c7fe303eaf9666bf6ae5281288d5add19a5f3264 | tools: add debug logs
PR-URL: https://github.com/nodejs/node/pull/48060
Reviewed-By: Ruy Adorno <ruyadorno@google.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Mestery <mestery@protonmail.com>
Reviewed-By: ... | [
{
"path": "tools/dep_updaters/update-ada.sh",
"patch": "@@ -17,6 +17,8 @@ EOF\n \n CURRENT_VERSION=$(grep \"#define ADA_VERSION\" \"$DEPS_DIR/ada/ada.h\" | sed -n \"s/^.*VERSION \\\"\\(.*\\)\\\"/\\1/p\")\n \n+echo \"Comparing $NEW_VERSION with $CURRENT_VERSION\"\n+\n if [ \"$NEW_VERSION\" = \"$CURRENT_VERSI... | 2023-05-22T08:22:10 |
facebook/react | 32eefcb3c5131f4d77a2195ff11a00a2513cf62f | c5cfa71948dbf4c2dd9ff64596ab663f8d559cd6 | Replace flushDiscreteUpdates with flushSync (#21775)
* Replace flushDiscreteUpdates with flushSync
flushDiscreteUpdates is almost the same as flushSync. It forces passive
effects to fire, because of an outdated heuristic, which isn't ideal but
not that important.
Besides that, the only remaining difference bet... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFiber-test.js",
"patch": "@@ -1154,19 +1154,13 @@ describe('ReactDOMFiber', () => {\n expect(ops).toEqual(['A']);\n \n if (__DEV__) {\n- const errorCalls = console.error.calls.count();\n+ expect(console.error.calls.count()).toBe(2);\n ... | 2021-07-01T22:13:00 |
rust-lang/rust | ee12ffe79f97db4ac5e4e763dd9bd99e94863230 | 287d4dfde770b50171ddba9f9567967200a6b5b3 | Add example for profiling diff locally
Added an example for profiling an external crate diff locally. The
original issue also mentions that the debuginfo-level = 1 should be
highlighted, but that has been solved by a different commit and as such
was not included here. | [
{
"path": "src/doc/rustc-dev-guide/src/profiling/with_rustc_perf.md",
"patch": "@@ -28,6 +28,24 @@ You can use the following options for the `x perf` command, which mirror the cor\n - `--profiles`: Select profiles (`Check`, `Debug`, `Opt`, `Doc`) which should be profiled/benchmarked.\n - `--scenarios`: Sele... | 2025-12-14T16:23:23 |
golang/go | 28aed4015ee7ba85b29007d685de9150e01a9acd | d531e344aea38f165a9d13d1e4173816fec35050 | debug/buildinfo: add old-Go and not-Go tests
There is currently no coverage for the pre-1.18 buildinfo format, or for
parsing non-Go binaries. Add basic tests for each of these.
Updates #68592.
Change-Id: Iec14d29ffc1392e46f592c0c7bebf2eb75f7d0d3
Reviewed-on: https://go-review.googlesource.com/c/go/+/601457
Reviewed... | [
{
"path": "src/debug/buildinfo/buildinfo_test.go",
"patch": "@@ -248,6 +248,62 @@ func TestReadFile(t *testing.T) {\n \t}\n }\n \n+// Test117 verifies that parsing of the old, pre-1.18 format works.\n+func Test117(t *testing.T) {\n+\t// go117 was generated for linux-amd64 with:\n+\t//\n+\t// main.go:\n+\t//... | 2024-07-26T16:05:40 |
vercel/next.js | 2aa2eaadc3395e46e95868ff0276469d2a57548c | 3fdf51cf93bf1bc0c0b22bd2f35ec417293873c8 | dev error overlay: async boundary for original stack frame call (#75718) | [
{
"path": "packages/next/errors.json",
"patch": "@@ -633,5 +633,7 @@\n \"632\": \"Invariant (SlowModuleDetectionPlugin): Module is missing a required debugId. This is a Next.js internal bug.\",\n \"633\": \"Dynamic route not found\",\n \"634\": \"Route %s used \\\"searchParams\\\" inside \\\"use cache... | 2025-02-10T19:47:45 |
nodejs/node | 95d24292edd40f9a67b38ad71c758c4c682e2cd8 | cd7e4e8e66afa4e7b613dba0036cb9f3d3ad1a73 | tools: fix zconf.h path
Use the `DEPS_DIR` variable to build the path instead of hardcoding it.
PR-URL: https://github.com/nodejs/node/pull/48089
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "tools/dep_updaters/update-zlib.sh",
"patch": "@@ -6,7 +6,7 @@ BASE_DIR=$(cd \"$(dirname \"$0\")/../..\" && pwd)\n DEPS_DIR=\"$BASE_DIR/deps\"\n \n CURRENT_VERSION=$(grep \"#define ZLIB_VERSION\" \"$DEPS_DIR/zlib/zlib.h\" | sed -n \"s/^.*VERSION \\\"\\(.*\\)\\\"/\\1/p\")\n- \n+\n NEW_VERSION_ZLIB_... | 2023-05-21T16:58:01 |
facebook/react | ab390c65eefb7f395468c18ee2b059bf35c7cd03 | 6bf111772afb73e2d91a563bf5e8e5e7e1f7d7a9 | ReactDebugHooks optionally includes fileName, and line/column numbers (#21781) | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -332,12 +332,20 @@ const Dispatcher: DispatcherType = {\n \n // Inspect\n \n+export type HookSource = {\n+ lineNumber: number | null,\n+ columnNumber: number | null,\n+ fileName: string | null,\n+ functionName: string | null,\n+... | 2021-07-01T17:08:46 |
rust-lang/rust | d2290c425314a391d4b8eef846d0d0633d6b296d | 23d01cd2412583491621ab1ca4f1b01e37d11e39 | fix ManuallyDrop::into_inner aliasing (Miri) issues | [
{
"path": "library/core/src/mem/manually_drop.rs",
"patch": "@@ -200,7 +200,9 @@ impl<T> ManuallyDrop<T> {\n #[rustc_const_stable(feature = \"const_manually_drop\", since = \"1.32.0\")]\n #[inline(always)]\n pub const fn into_inner(slot: ManuallyDrop<T>) -> T {\n- slot.value.into_inner()\... | 2025-12-28T15:24:55 |
electron/electron | fdc2e2bc57792f7faaf6c1ed6a2ff4e6f0fb0103 | b045d42b0e19eeb86d6ca6f211c23017125ad20f | fix: recalibrate simpleFullscreen when display metrics change (#28150)
* fix: recalibrate simpleFullscreen when display metrics change
* Address review feedback
* fix: compilation issues
* Address feedback from review | [
{
"path": "shell/browser/native_window.h",
"patch": "@@ -207,6 +207,7 @@ class NativeWindow : public base::SupportsUserData,\n virtual void SetTrafficLightPosition(base::Optional<gfx::Point> position) = 0;\n virtual base::Optional<gfx::Point> GetTrafficLightPosition() const = 0;\n virtual void RedrawT... | 2021-03-16T09:41:59 |
golang/go | d531e344aea38f165a9d13d1e4173816fec35050 | 705f9848ef42da0ccb15849d69c5ba6687007a2e | debug/buildinfo: improve format documentation
Existing documentation is a bit sparse, and more importantly focuses
almost entirely on the old pre-1.18 format, with the new format as an
afterthought. Since the new format is the primary format, make it more
prominent.
Updates #68592.
Change-Id: I108ecde1b33650b4812fa5... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -2351,9 +2351,13 @@ func (ctxt *Link) buildinfo() {\n \ts := ldr.CreateSymForUpdate(\"go:buildinfo\", 0)\n \ts.SetType(sym.SBUILDINFO)\n \ts.SetAlign(16)\n+\n \t// The \\xff is invalid UTF-8, meant to make it less likely\n \t// to find one of these ... | 2024-07-26T14:02:55 |
vercel/next.js | 3fdf51cf93bf1bc0c0b22bd2f35ec417293873c8 | 2e47628ed1618de754cd8f8bbae9eda583417592 | [dev-overlay] HOTFIX: clicking nav escapes the overlay (#75876)
Following up of #75679
### Why?
Clicking the navigation escapes the overlay. It is because the
navigation component is outside of the dialog component.
#### Before
https://github.com/user-attachments/assets/e7c63261-c44b-4af7-936d-1750dff07527
#### ... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/dialog/dialog.tsx",
"patch": "@@ -16,6 +16,7 @@ const CSS_SELECTORS_TO_EXCLUDE_ON_CLICK_OUTSIDE = [\n '[data-next-mark]',\n '[data-issues-open]',\n '#nextjs-dev-tools-menu',\n+ '[data-nextjs-error-overl... | 2025-02-10T19:18:44 |
nodejs/node | 30870d126b755e675aede2034a5002f56801cc93 | 260092eca316bae6036e52b2cdc73c4c4f8a9da6 | doc: fix Windows code snippet tags
Those were wrongly marked as `bash`, when the text around it was
referencing PowerShell or Command Prompt.
PR-URL: https://github.com/nodejs/node/pull/48100
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Mohammed Keyvanz... | [
{
"path": "doc/api/single-executable-applications.md",
"patch": "@@ -54,13 +54,13 @@ tool, [postject][]:\n \n Using PowerShell:\n \n- ```bash\n+ ```powershell\n cp (Get-Command node).Source hello.exe\n ```\n \n Using Command Prompt:\n \n- ```bash\n+ ```text\n for /F \"tokens=*\" %n IN... | 2023-05-21T11:27:16 |
facebook/react | 3e8c86c1c84559f2552a493970c50143c8757043 | f6112ffe5af0aa4688e29bb0f1d58f6cf8fbe8e0 | fix: maxYieldInterval should not compare with currentTime directly in Scheduler-shouldYieldToHost | [
{
"path": "packages/scheduler/src/forks/Scheduler.js",
"patch": "@@ -450,7 +450,8 @@ function shouldYieldToHost() {\n }\n // There's no pending input. Only yield if we've reached the max\n // yield interval.\n- return currentTime >= maxYieldInterval;\n+ const timeElapsed = curren... | 2021-06-30T13:52:24 |
electron/electron | b045d42b0e19eeb86d6ca6f211c23017125ad20f | d27ad0d1822ceb709cf0d87eb49bce8bc9c2d70d | docs: document the parameter structure of hookWindowMessage (#28189)
Fixes #28178 | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -1316,6 +1316,8 @@ The native type of the handle is `HWND` on Windows, `NSView*` on macOS, and\n \n * `message` Integer\n * `callback` Function\n+ * `wParam` any - The `wParam` provided to the WndProc\n+ * `lParam` any - The `lParam` provided to the Wnd... | 2021-03-16T08:54:41 |
golang/go | 9e40780a4633fd104777243fe2b5d07bc482d5a6 | ea82219d1c92ecdad513c022ab603358e500d0bb | go/types, types2: add test for receiver type parameters
Issue #51503 was fixed with the rewrite in CL 594740.
Add a respective test case.
Fixes #51503.
For #51343.
Change-Id: Iff9e7e3274c5ad40789e107b6f62d17e335e2428
Reviewed-on: https://go-review.googlesource.com/c/go/+/595697
Reviewed-by: Robert Griesemer <gri@goo... | [
{
"path": "src/internal/types/testdata/fixedbugs/issue51503.go",
"patch": "@@ -0,0 +1,31 @@\n+// Copyright 2024 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package p\n+\n+type T[T any] struct{}\n+\n+// ... | 2024-06-28T18:12:48 |
vercel/next.js | 06613427c0b4955114f07518b385b37a487e9844 | f8599631d55eebbcf65ad02e84f9130a7db2b008 | docs: add Chrome debugging port configuration steps (#75845)
This configure step is potentially required for the ports to show up in
the remote targets. | [
{
"path": "docs/01-app/03-building-your-application/07-configuring/16-debugging.mdx",
"patch": "@@ -131,9 +131,11 @@ ready - started server on 0.0.0.0:3000, url: http://localhost:3000\n For Chrome:\n \n 1. Open a new tab and visit `chrome://inspect`\n-2. Look for your Next.js application in the **Remote Tar... | 2025-02-10T18:16:27 |
facebook/react | e2453e2007083a67bf93f59c8ef2f39df2aaf636 | 73ffce1b6fb7eff13414e35e40efe4269664e5ea | act: Add test for bypassing queueMicrotask (#21743)
Test for fix added in #21740 | [
{
"path": "packages/react-reconciler/src/__tests__/ReactIsomorphicAct-test.js",
"patch": "@@ -0,0 +1,50 @@\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 source tree.\n+ *\n... | 2021-06-25T19:39:46 |
nodejs/node | 19fa9f1bc47b0666be0747583bea8cb3d8ad5eb1 | 85ac915045699e1f12a3f2b18b5bc2939aacfa31 | node-api: add status napi_cannot_run_js
Add the new status in order to distinguish a state wherein an exception
is pending from one wherein the engine is unable to execute JS. We take
advantage of the new runtime add-on version reporting in order to remain
forward compatible with add-ons that do not expect the new sta... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -580,7 +580,8 @@ typedef enum {\n napi_arraybuffer_expected,\n napi_detachable_arraybuffer_expected,\n napi_would_deadlock, /* unused */\n- napi_no_external_buffers_allowed\n+ napi_no_external_buffers_allowed,\n+ napi_cannot_run_js\n } napi_status;\n ```\... | 2023-05-13T08:36:13 |
electron/electron | 8f4e362d8fa6032e71eecb0679df0ee9eec26fac | 1e16606524ae8da57e01dd8707177d6969e33d95 | fixup gn check | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -30,7 +30,6 @@\n #include \"chrome/common/chrome_version.h\"\n #include \"components/net_log/chrome_net_log.h\"\n #include \"components/network_hints/common/network_hints.mojom.h\"\n-#include \"content/browser/site_instance_impl.h\"\n #inclu... | 2021-03-15T22:21:51 |
vercel/next.js | f8599631d55eebbcf65ad02e84f9130a7db2b008 | a32f14e8ebbf4728d6ac6fb6e80f12966097d393 | [Error Overlay] New design (#75679)
This PR implements a new design for the experimental Next.js Error
Overlay:
- Border-less body design
- Notch cut-out for the navigation and version info
<img width="1088" alt="image"
src="https://github.com/user-attachments/assets/31385793-82c4-41ab-a34d-6b49955f5823"
/>
---
... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/call-stack-frame/call-stack-frame.tsx",
"patch": "@@ -52,7 +52,6 @@ export const CallStackFrame: React.FC<{\n <div\n data-nextjs-call-stack-frame\n data-nextjs-call-stack-frame-ignored={!hasSou... | 2025-02-10T18:14:53 |
facebook/react | 73ffce1b6fb7eff13414e35e40efe4269664e5ea | 534c9c52ec3e33ed241f7a20e264bb4571d452b3 | DevTools: Update tests to fix warnings/errors (#21748)
Some new ones had slipped in (e.g. deprecated ReactDOM.render message from 18) | [
{
"path": "packages/react-devtools-shared/src/__tests__/FastRefreshDevToolsIntegration-test.js",
"patch": "@@ -9,13 +9,13 @@\n \n describe('Fast Refresh', () => {\n let React;\n- let ReactDOM;\n let ReactFreshRuntime;\n let act;\n let babel;\n let container;\n let exportsObj;\n let freshPlugi... | 2021-06-25T02:42:44 |
electron/electron | d27ad0d1822ceb709cf0d87eb49bce8bc9c2d70d | b023b33c05f3b4d6825ad92282e2ebebe90b1902 | fix: revert "refactor: mmap asar files (#24470)" (#28137)
This reverts commit 01a2e23194f86df1d0dcc4a3ccb3ea37e8f8c98b. | [
{
"path": "lib/asar/fs-wrapper.ts",
"patch": "@@ -532,15 +532,17 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n return fs.readFile(realPath, options, callback);\n }\n \n+ const buffer = Buffer.alloc(info.size);\n+ const fd = archive.getFd();\n+ if (!(fd >= 0)) {\n+ ... | 2021-03-15T18:42:54 |
golang/go | ea82219d1c92ecdad513c022ab603358e500d0bb | 1d542efe234792c515b3c60ec76f15d11f83aba1 | go/types, types2: completely rewrite method receiver type checking
1) Factor out handling of receiver from Checker.funcType into
Checker.collectRecv. Analyze the receiver parameter "manually"
without resorting to calling Checker.collectParams.
The code is more straight-forward and error handling is simpler
... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -139,14 +139,13 @@ type Checker struct {\n \t// information collected during type-checking of a set of package files\n \t// (initialized by Files, valid only for the duration of check.Files;\n \t// maps and lists are allocated on demand)\n-\... | 2024-06-26T00:31:26 |
vercel/next.js | a32f14e8ebbf4728d6ac6fb6e80f12966097d393 | 4b443ec82a008df863f5234a9ec846aa90af1e53 | [Error Overlay] Fix bottom stack animation (#75867)
### Why?
The bottom stack style was regressed.

This PR closes
[NDX-808](https://linear.app/vercel/issue/NDX-808/fix-regression-in-bottom-stacks-style)
---------
Co-authore... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/dialog/styles.ts",
"patch": "@@ -56,8 +56,8 @@ const styles = css`\n }\n \n /* Account for the footer height, when present */\n- [data-nextjs-dialog-body]:has(~ [data-nextjs-dialog-footer]) {\n- margin... | 2025-02-10T16:43:14 |
electron/electron | 41fdf450b25b58e8456f81c0eaa049131da318a3 | 8dfe4abd14746d2a3278f2a65f6deaf81c6d636d | docs: expand OS version prompt in issue template (#28135)
* docs: expand OS version prompt in issue template
* Update bug_report.yml | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -35,7 +35,8 @@ body:\n - type: input\n attributes:\n label: Operating System Version\n- description: What operating system version are you using?\n+ description: What operating system version are you using? On Windows, click Start b... | 2021-03-15T01:26:27 |
facebook/react | 534c9c52ec3e33ed241f7a20e264bb4571d452b3 | 51b0becf3e8a8084d8a2ee85ce8b3a1d9ace6ecd | Move error logging to update callback (#21737)
* Move error logging to update callback
This prevents double logging for gDSFE boundaries with createRoot.
* Add an explanation for the rest of duplicates | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMConsoleErrorReporting-test.js",
"patch": "@@ -166,7 +166,8 @@ describe('ReactDOMConsoleErrorReporting', () => {\n }),\n ],\n [\n- // TODO: This is duplicated only with createRoot. Why?\n+ // This is onl... | 2021-06-24T19:57:10 |
rust-lang/rust | 31fb8331674a6c0b85857250e83c332678257ef8 | 1ea45e078fca83b35a405cea853f11a4f3c8d78c | fix: Fix hover for infer type not working | [
{
"path": "src/tools/rust-analyzer/crates/ide/src/hover/render.rs",
"patch": "@@ -228,37 +228,14 @@ pub(super) fn underscore(\n return None;\n }\n let parent = token.parent()?;\n- let _it = match_ast! {\n+ match_ast! {\n match parent {\n- ast::InferType(it) => it,\n-... | 2025-12-28T12:55:52 |
golang/go | f234c9423bd87e7bf81ad7d1bab2b452c722b3b1 | 05099368239650c0931d6521eeb0c707296c90bc | go/types, types2: fix test name (for debugging)
Change-Id: I982cf4da98af73ac41936a9d0b51588e3dbfd706
Reviewed-on: https://go-review.googlesource.com/c/go/+/594739
Reviewed-by: Robert Griesemer <gri@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Tim Ki... | [
{
"path": "src/cmd/compile/internal/types2/api_test.go",
"patch": "@@ -764,7 +764,7 @@ func TestUsesInfo(t *testing.T) {\n \n \t\t// Uses of fields are instantiated.\n \t\t{`package s1; type N[A any] struct{ a A }; var f = N[int]{}.a`, `a`, `field a int`},\n-\t\t{`package s1; type N[A any] struct{ a A }; fu... | 2024-06-26T00:33:15 |
vercel/next.js | 8538cdc5f26c07747cd3138b2cd48f8e7d9b88e1 | 8efcdbed7bd4ebe9c63ea6a6aa4b196d9328c468 | Revert "[metadata] new metadata insertion API and support PPR" (#75858)
Reverts vercel/next.js#75366
Noticed there's bug with `__nextppronly=fallback` even streaming
metadata is not enabled in PPR | [
{
"path": "packages/next/src/client/components/router-reducer/ppr-navigations.ts",
"patch": "@@ -797,6 +797,9 @@ function finishPendingCacheNode(\n // a pending promise that needs to be resolved with the dynamic head from\n // the server.\n const head = cacheNode.head\n+ // TODO: change head back to ... | 2025-02-10T12:14:54 |
facebook/react | 386e8f2ea7209121b89159dbfbca53f70e87e1fb | 7fec38041faf7f4691f503feccbaf5af901367e2 | DevTools: Fix Settings dialog scroll/size bug in Firefox (#21747) | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Settings/SettingsModal.css",
"patch": "@@ -22,7 +22,7 @@\n box-shadow: 0 2px 4px var(--color-shadow);\n border-radius: 0.25rem;\n overflow: auto;\n- width: 400px;\n+ width: 410px;\n max-width: 100%;\n }\n ",
"additions": 1,
"dele... | 2021-06-24T15:19:57 |
electron/electron | 8dfe4abd14746d2a3278f2a65f6deaf81c6d636d | f73256651b83f96bdac3b607844c30061a9a3029 | fix: handle a nil backgroundColor in win.getBackgroundColor() (#28120)
* fix: handle a nil backgroundColor in win.getBackgroundColor()
* spec: add crash case
* fix: update to fix native_views transparent color
* chore: fix lint | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -996,8 +996,10 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n }\n \n SkColor NativeWindowMac::GetBackgroundColor() {\n- return skia::CGColorRefToSkColor(\n- [[[window_ contentView] layer] backgroundColor]);\n+ CGColorRef color =... | 2021-03-15T00:26:47 |
rust-lang/rust | 391c81900ea6a409a80b963a22aa8e883d6d27a2 | 23d01cd2412583491621ab1ca4f1b01e37d11e39 | fix running doctests in Miri | [
{
"path": "src/bootstrap/mk/Makefile.in",
"patch": "@@ -56,17 +56,15 @@ check-aux:\n \t# Run standard library tests in Miri.\n \t$(Q)MIRIFLAGS=\"-Zmiri-strict-provenance\" \\\n \t\t$(BOOTSTRAP) miri --stage 2 \\\n-\t\tlibrary/coretests \\\n-\t\tlibrary/alloctests \\\n+\t\tlibrary/core \\\n \t\tlibrary/alloc... | 2025-12-28T12:26:01 |
golang/go | 05099368239650c0931d6521eeb0c707296c90bc | 77a3c3b984c22186a9f9ec17b13c2d13060bc9c9 | go/types, types2: report type name in comp. literal error, if possible
When reporting an error for the element type of a struct literal, use
the element type's type name rather than it's underlying/core type.
Also, combine error reporting for invalid composite literal types in
one place, at the end.
Fixes #68184.
C... | [
{
"path": "src/cmd/compile/internal/types2/expr.go",
"patch": "@@ -1151,6 +1151,7 @@ func (check *Checker) exprInternal(T *target, x *operand, e syntax.Expr, hint Ty\n \n \tcase *syntax.CompositeLit:\n \t\tvar typ, base Type\n+\t\tvar isElem bool // true if composite literal is an element of an enclosing co... | 2024-06-25T22:31:06 |
nodejs/node | ccada8bccc3ec90fa895b9f19ae37a460c318f60 | adcbfcec60a19dda0038890923b312395ef326f5 | module: change default resolver to not throw on unknown scheme
Fixes https://github.com/nodejs/loaders/issues/138
PR-URL: https://github.com/nodejs/node/pull/47824
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Guy Bedford <guybedford@gmail.com>
Review... | [
{
"path": "doc/api/esm.md",
"patch": "@@ -143,8 +143,9 @@ There are three types of specifiers:\n * _Absolute specifiers_ like `'file:///opt/nodejs/config.js'`. They refer\n directly and explicitly to a full path.\n \n-Bare specifier resolutions are handled by the [Node.js module resolution\n-algorithm][].... | 2023-05-19T15:50:50 |
vercel/next.js | 2c592a9fc778168d7bdbf0bbae5ca3442460de0f | ab6aeab51561328bf14649176ea103f2a555f4d2 | [error overlay] missing html tags error should be blocking (#75839)
### What
missing html tags error should always show the overlay when exist, and
the dev indicator count should be 1 since we require users to resolve
this first then React can hydrate the right content. After this they can
move to others.
Sin... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/errors/error-overlay/error-overlay.tsx",
"patch": "@@ -43,14 +43,16 @@ export function ErrorOverlay({\n if (!!state.rootLayoutMissingTags?.length) {\n return (\n <RootLayoutMissingTagsError\n- ... | 2025-02-09T22:50:46 |
rust-lang/rust | 1ce1faec2464f4e581a922540f39a9130a48fe12 | 31b0cb9484e261384cfeeae34bc6f9908c3f552e | Fix duplicate record functional update
Example
---
```rust
fn main() {
let thing = 1;
let foo = Foo { foo1: 0, foo2: 0 };
let foo2 = Foo { thing, $0 ..Default::default() }
}
```
**Before this PR**
```text
fd ..Default::default()
fd foo1 u32
fd foo2 u32
```
**After this PR**
```t... | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/record.rs",
"patch": "@@ -70,8 +70,11 @@ pub(crate) fn complete_record_expr_fields(\n }\n _ => {\n let missing_fields = ctx.sema.record_literal_missing_fields(record_expr);\n+ let update_exists = ... | 2025-12-28T09:30:38 |
electron/electron | f73256651b83f96bdac3b607844c30061a9a3029 | a442f11574fc6a6fbc7d482ae1cec89125098494 | fix: convert system colors to device color space in systemPreferences (#28121) | [
{
"path": "shell/browser/api/electron_api_system_preferences_mac.mm",
"patch": "@@ -26,9 +26,11 @@\n #include \"shell/browser/mac/dict_util.h\"\n #include \"shell/browser/mac/electron_application.h\"\n #include \"shell/browser/ui/cocoa/NSColor+Hex.h\"\n+#include \"shell/common/color_util.h\"\n #include \"sh... | 2021-03-13T07:31:08 |
golang/go | 9b4b4ae5859393993ec1a2359666a9c49d0d5b73 | d8c7230c97ca5639389917cc235175bfe2dc50ab | types2, go/types: fix instantiation of named type with generic alias
The typechecker is assuming that alias instances cannot be reached from
a named type. However, when type parameters on aliases are permited, it
can happen.
This CL changes the typechecker to propagate the correct named instance
is being expanded.
U... | [
{
"path": "src/cmd/compile/internal/types2/alias.go",
"patch": "@@ -134,10 +134,10 @@ func (check *Checker) newAlias(obj *TypeName, rhs Type) *Alias {\n // newAliasInstance creates a new alias instance for the given origin and type\n // arguments, recording pos as the position of its synthetic object (for e... | 2024-07-25T10:17:44 |
facebook/react | 7fec38041faf7f4691f503feccbaf5af901367e2 | 27c9c95e23ddedb9163373950e364dd62038f6c0 | Log and show error overlay for commit phase errors (#21723)
* Enable skipped tests from #21723
* Report uncaught errors in DEV
* Clear caught error
This is not necessary (as proven by tests) because next invokeGuardedCallback clears it anyway. But I'll keep it for consistency with other calls. | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMConsoleErrorReporting-test.js",
"patch": "@@ -313,8 +313,7 @@ describe('ReactDOMConsoleErrorReporting', () => {\n }\n });\n \n- // TODO: this is broken due to https://github.com/facebook/react/issues/21712.\n- xit('logs layout effect errors... | 2021-06-24T14:48:28 |
nodejs/node | 1918241190566fa5fd7209ebd78b91cda1e34286 | 67b892ef9efb1ca10f69302e634d7475a08cab06 | doc: document node-api version process
PR-URL: https://github.com/nodejs/node/pull/47972
Fixes: https://github.com/nodejs/node/issues/47664
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Gabriel Schulhof <gabrielschulhof@gmail.com> | [
{
"path": "doc/contributing/releases-node-api.md",
"patch": "@@ -0,0 +1,224 @@\n+# Node.js Node-API version release process\n+\n+This document describes the technical aspects of the Node.js Node-API version\n+release process.\n+\n+## Table of contents\n+\n+* [How to create a release](#how-to-create-a-releas... | 2023-05-19T02:21:10 |
vercel/next.js | 263dc23a393835ccf337018be8260f677cbc6be2 | c0031816f34a1a5af48cfa06ea4749f9006ad860 | [error overlay] fix missing html error is not displayed (#75831)
### What
`[data-nextjs-dialog-content]` was set to `height: 100%`, which has
conflicted with useMeasureHeight hook. `data-nextjs-dialog-content]` 's
parent is always controlled by `useMeasureHeight`, and the height is
anmiating from 0 to the child ... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/dialog/styles.ts",
"patch": "@@ -29,7 +29,9 @@ const styles = css`\n outline: none;\n }\n \n- /* Place overflow: hidden on this so we can break out from [data-nextjs-dialog] */\n+ ${\n+ '' /* Place ... | 2025-02-09T16:39:34 |
electron/electron | a442f11574fc6a6fbc7d482ae1cec89125098494 | b8926cb4e81f7151910fb2f7eda408f496e28c4e | fixed typo in docs/api/window-open.md (#28117) | [
{
"path": "docs/api/window-open.md",
"patch": "@@ -90,7 +90,7 @@ mainWindow.webContents.setWindowOpenHandler(({ url }) => {\n \n mainWindow.webContents.on('did-create-window', (childWindow) => {\n // For example...\n- childWindow.webContents('will-navigate', (e) => {\n+ childWindow.webContents.on('will-... | 2021-03-13T01:47:33 |
facebook/react | 8426bb6956fb12279c458e69fbfc62fbb04a621c | e577bfb1cedc56f93d8e5967088932e7100d4829 | Pass Jest useStderr flag when debugging (#21741)
This prevents it from buffering adn suppressing all console logs until a test has completed running (When debugging in Chrome). | [
{
"path": "scripts/jest/jest-cli.js",
"patch": "@@ -261,6 +261,9 @@ function getCommandArgs() {\n if (argv.debug) {\n args.unshift('--inspect-brk');\n args.push('--runInBand');\n+\n+ // Prevent console logs from being hidden until test completes.\n+ args.push('--useStderr');\n }\n \n // ... | 2021-06-23T20:58:46 |
golang/go | d8c7230c97ca5639389917cc235175bfe2dc50ab | d69a0883d4c99958d13b14fc02a805e1bc634631 | cmd/compile/internal/types: fix typo in comment
Change-Id: Iacf22578338c8aa99587826a8342e1da6dc166a6
GitHub-Last-Rev: cdb3235e8ca932776ddf803621ac203c493bc873
GitHub-Pull-Request: golang/go#46598
Reviewed-on: https://go-review.googlesource.com/c/go/+/325510
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou... | [
{
"path": "src/cmd/compile/internal/types/type.go",
"patch": "@@ -392,7 +392,7 @@ type ChanArgs struct {\n \tT *Type // reference to a chan type whose elements need a width check\n }\n \n-// // FuncArgs contains Type fields specific to TFUNCARGS types.\n+// FuncArgs contains Type fields specific to TFUNCARG... | 2024-07-25T22:21:52 |
vercel/next.js | fcd2658bbd596a8751baca3ca383648ec6d5f884 | e57a5461caf916a440992703b0475845924711a7 | unsupported should be supported in docs (#75772)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributo... | [
{
"path": "docs/01-app/04-api-reference/05-config/01-next-config-js/turbo.mdx",
"patch": "@@ -45,14 +45,14 @@ module.exports = nextConfig\n \n The following options are available for the `turbo` configuration:\n \n-| Option | Description ... | 2025-02-07T15:29:10 |
rust-lang/rust | 4c485a4c972dd8d684fde263f3b695a92053dd7f | f9007bcb87caacc82b2de55932997db3aabfdd68 | add compiletest for debuginfo generation for SVE predicates <vscale x N x i1> where N != 16 | [
{
"path": "tests/ui/scalable-vectors/debuginfo-does-not-spill.rs",
"patch": "@@ -0,0 +1,39 @@\n+// Compiletest for rust-lang/rust#150419: Do not spill operands to the stack when\n+// creating debuginfo for AArch64 SVE predicates `<vscale x N x i1>` where `N != 16`\n+//@ edition: 2021\n+//@ only-aarch64\n+//... | 2025-12-28T07:02:57 |
electron/electron | ab74cf4e1a73dc6c4c86f7b2911909eaa4d70d7e | 8d38e9dd546ff6416b2abf8675b14e92f2226e52 | docs: add bug label to bug reports (#28145) | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -1,6 +1,7 @@\n name: Bug Report\n-about: Report an Electron bug\n+description: Report an Electron bug\n title: \"[Bug]: \"\n+labels: \"bug :beetle:\"\n body:\n - type: checkboxes\n attributes:",
"additions": 2,
"deletions": 1,
"la... | 2021-03-12T17:22:51 |
nodejs/node | 10b21e5685acc9f50df646c2ff47971eb6cd320e | 3538e1bcde45eae60c6bdbedeb3f765dbb9714c2 | crypto: use openssl's own memory BIOs in crypto_context.cc
NodeBIO's memory buffer structure does not support BIO_C_FILE_SEEK and B
IO_C_FILE_TELL. This prevents OpenSSL PEM_read_bio_PrivateKey from readi
ng some private keys. So I switched to OpenSSL'w own protected memory bu
ffers.
Fixes: https://github.com/nodejs/... | [
{
"path": "node.gyp",
"patch": "@@ -1054,6 +1054,7 @@\n 'sources': [\n 'test/cctest/test_crypto_clienthello.cc',\n 'test/cctest/test_node_crypto.cc',\n+ 'test/cctest/test_node_crypto_env.cc',\n 'test/cctest/test_quic_cid.cc',\n 'test/cctes... | 2023-05-18T16:28:44 |
golang/go | d69a0883d4c99958d13b14fc02a805e1bc634631 | e76353d5a923dbc5e22713267104b56a2c856302 | encoding/gob: fix package doc typo for wireType
Change-Id: Ib93f2b565e5271dfa3c3ca5d040ef24269c47cf8
GitHub-Last-Rev: 3f1da518a404f5459e38f34427ae9177fe68f51e
GitHub-Pull-Request: golang/go#68584
Reviewed-on: https://go-review.googlesource.com/c/go/+/601036
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou... | [
{
"path": "src/encoding/gob/doc.go",
"patch": "@@ -193,14 +193,13 @@ pair (-type id, encoded-type) where encoded-type is the gob encoding of a wireTy\n description, constructed from these types:\n \n \ttype wireType struct {\n-\t\tArrayT *ArrayType\n-\t\tSliceT *SliceType\n-\t\tStructT ... | 2024-07-25T07:30:24 |
rust-lang/rust | f9007bcb87caacc82b2de55932997db3aabfdd68 | 435a027c71248c810f89f07eb0b45273bedf17ef | fix condition checks for SVE <vscale x N x i1> when N != 16 | [
{
"path": "compiler/rustc_codegen_ssa/src/mir/debuginfo.rs",
"patch": "@@ -2,7 +2,7 @@ use std::collections::hash_map::Entry;\n use std::marker::PhantomData;\n use std::ops::Range;\n \n-use rustc_abi::{BackendRepr, FieldIdx, FieldsShape, ScalableElt, Size, VariantIdx};\n+use rustc_abi::{BackendRepr, FieldId... | 2025-12-28T06:59:40 |
vercel/next.js | 2a1fb9de79986b8c8ce0a862865df7785259d569 | 1134ba730f9d44a7881a2253fc88b60954453fa3 | [dev-overlay] fix link styling on hydration errors (#75792)
Fix the link style to match the design
#### After
<img width="707" alt="image"
src="https://github.com/user-attachments/assets/a9734833-8e28-4bfd-9155-b39a06fc275c"
/>
#### Before
<img width="693" alt="image"
src="https://github.com/user-attachme... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/container/errors.tsx",
"patch": "@@ -206,8 +206,6 @@ export const styles = css`\n bottom: calc(var(--size-gap-double) * 4.5);\n }\n p.nextjs__container_errors__link {\n- color: var(--color-red-900);\n- font... | 2025-02-07T14:31:18 |
electron/electron | 6c90411e2143dc85da5be23ef903b41dab9ba0ab | 74e7f985721e3fec6ce4b41f07ab85a173b12fb1 | fix: change #if defined(OS_MACOSX) to #if defined(OS_MAC) (#28102) | [
{
"path": "shell/browser/api/electron_api_browser_window.cc",
"patch": "@@ -372,7 +372,7 @@ void BrowserWindow::RemoveBrowserView(v8::Local<v8::Value> value) {\n void BrowserWindow::SetTopBrowserView(v8::Local<v8::Value> value,\n gin_helper::Arguments* args) {\n BaseW... | 2021-03-12T05:07:21 |
nodejs/node | cd016a08c17834bedb568f587a9130dda3d671a4 | 62fd6bc4aac60a925399a2c4d25d2e586753b7da | lib: implement AbortSignal.any()
PR-URL: https://github.com/nodejs/node/pull/47821
Fixes: https://github.com/nodejs/node/issues/47811
Refs: https://github.com/whatwg/dom/pull/1152
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <... | [
{
"path": "doc/api/globals.md",
"patch": "@@ -121,6 +121,18 @@ added:\n \n Returns a new `AbortSignal` which will be aborted in `delay` milliseconds.\n \n+#### Static method: `AbortSignal.any(signals)`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `signals` {AbortSignal\\[]} The `AbortSignal`s of which to ... | 2023-05-18T08:11:07 |
rust-lang/rust | 435a027c71248c810f89f07eb0b45273bedf17ef | 23d01cd2412583491621ab1ca4f1b01e37d11e39 | fix typo and rephrase | [
{
"path": "compiler/rustc_codegen_ssa/src/mir/debuginfo.rs",
"patch": "@@ -431,10 +431,10 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {\n // Internally, with an intrinsic operating on a `svint32_t`/`<vscale x 4 x i32>`\n // (for example), the intr... | 2025-12-28T06:59:08 |
vercel/next.js | dc490a64a23cc67c41a8c5ce5f45375fdc5a5b56 | 48e38b62def1e70136b6e6ff1b46dff4c8b516c9 | Send formatted error to frontend if sourcemapping fails (#75712) | [
{
"path": "packages/next/src/client/components/react-dev-overlay/server/middleware-turbopack.ts",
"patch": "@@ -21,6 +21,7 @@ import type { Project, TurbopackStackFrame } from '../../../../build/swc/types'\n import { getSourceMapFromFile } from '../internal/helpers/get-source-map-from-file'\n import { findS... | 2025-02-07T14:02:35 |
golang/go | e76353d5a923dbc5e22713267104b56a2c856302 | bd6f911f852f4a608e2cf11c1ce5b55ff0347866 | runtime: allow the tracer to be reentrant
This change allows the tracer to be reentrant by restructuring the
internals such that writing an event is atomic with respect to stack
growth. Essentially, a core set of functions that are involved in
acquiring a trace buffer and writing to it are all marked nosplit.
Stack g... | [
{
"path": "src/runtime/mheap.go",
"patch": "@@ -1368,7 +1368,7 @@ HaveSpan:\n \n \t// Trace the span alloc.\n \tif traceAllocFreeEnabled() {\n-\t\ttrace := traceTryAcquire()\n+\t\ttrace := traceAcquire()\n \t\tif trace.ok() {\n \t\t\ttrace.SpanAlloc(s)\n \t\t\ttraceRelease(trace)\n@@ -1556,7 +1556,7 @@ func... | 2024-05-22T21:46:29 |
electron/electron | 74e7f985721e3fec6ce4b41f07ab85a173b12fb1 | 8badc6583f34d9f207ca338d8f140eac59ea25f8 | docs: fix cookies event documentation for type generation (#28115) | [
{
"path": "docs/api/cookies.md",
"patch": "@@ -45,6 +45,8 @@ The following events are available on instances of `Cookies`:\n \n #### Event: 'changed'\n \n+Returns:\n+\n * `event` Event\n * `cookie` [Cookie](structures/cookie.md) - The cookie that was changed.\n * `cause` String - The cause of the change wit... | 2021-03-11T20:14:16 |
nodejs/node | 62fd6bc4aac60a925399a2c4d25d2e586753b7da | 1fdcb1c8c1e390836b61e261b4cd3f0485bd0e7b | test: move `test-cluster-primary-error` flaky test
PR-URL: https://github.com/nodejs/node/pull/48039
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -89,3 +89,7 @@ test-http-server-unconsume: PASS, FLAKY\n test-http-upgrade-advertise: PASS, FLAKY\n test-tls-client-mindhsize: PASS, FLAKY\n test-tls-write-error: PASS, FLAKY\n+\n+[$asan==on]\n+# https://github.com/nodejs/node/issues/39655\n+test-clust... | 2023-05-17T13:26:05 |
rust-lang/rust | c27f6d548166cef8e537c749a52c6646911bd411 | 0146f8dc310aca793b52199609d4d74f71fa426e | Fix parsing of `format_args!("...", keyword=...)` | [
{
"path": "src/tools/rust-analyzer/crates/hir-def/src/expr_store/lower/format_args.rs",
"patch": "@@ -1,12 +1,9 @@\n //! Lowering of `format_args!()`.\n \n use base_db::FxIndexSet;\n-use hir_expand::name::{AsName, Name};\n+use hir_expand::name::Name;\n use intern::{Symbol, sym};\n-use syntax::{\n- AstPtr... | 2025-12-28T04:35:10 |
vercel/next.js | f54f555f8f7792d518236ce6308a6a903d328573 | bc5e4d841c2f4a164df98c8b5c2d3dc7a1054f0f | [dev-overlay] fix: pagination focus ring was invisible (#75790)
### Why?
The focus outline was none, so it was unable to tell if it was focused.
### Before
https://github.com/user-attachments/assets/5284fb54-cf84-4da5-a047-8d76b3f05eba
### After
https://github.com/user-attachments/assets/d2f66880-cb2a-41ce-a620... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/_experimental/internal/components/errors/error-overlay-pagination/error-overlay-pagination.tsx",
"patch": "@@ -180,10 +180,6 @@ export const styles = css`\n border: none;\n border-radius: var(--rounded-full);\n \n- &:focus {\n- ... | 2025-02-07T13:43:59 |
facebook/react | 06f7b4f43a93eae9111cfbd972ab1ae1148f6afb | 422e0bb3604dd7d3f6158df87b05932a43c89017 | `act` should work without mock Scheduler (#21714)
Currently, in a React 18 root, `act` only works if you mock the
Scheduler package. This was because we didn't want to add additional
checks at runtime.
But now that the `act` testing API is dev-only, we can simplify its
implementation.
Now when an update is wr... | [
{
"path": "fixtures/dom/src/__tests__/nested-act-test.js",
"patch": "@@ -48,7 +48,7 @@ describe('unmocked scheduler', () => {\n TestAct(() => {\n TestRenderer.create(<Effecty />);\n });\n- expect(log).toEqual(['called']);\n+ expect(log).toEqual([]);\n });\n expect(log).... | 2021-06-22T21:25:07 |
golang/go | 792a26130347c9b9db344ba56f86645679a1a9d9 | 0826b9017254b8b3ba2b84799f4c0de6107a043f | doc/next: use relative link to Go issue
The Go release notes are served on multiple domains (go.dev,
golang.google.cn, tip.golang.org, localhost:8080 and so on), so links
pointing to the Go website itself need to be relative to work in all
those contexts.
Caught by a test in x/website. The next CL adds the same test ... | [
{
"path": "doc/next/3-tools.md",
"patch": "@@ -9,4 +9,4 @@ incompatible declarations. For instance, if `f` is declared as both `void f(int)\n and `void f(double)`, cgo will report an error instead of possibly generating an\n incorrect call sequence for `f(0)`. New in this release is a better detector for\n ... | 2024-07-24T17:30:28 |
electron/electron | 089ac8180f81f310a23a85eb2cdeb1337b5dc776 | 102a3740ea8be95c784de362da81bd70b9ba0c59 | fix: ensure child window transparency works (#28054)
* fix: ensure child window transparency works
Windows opened via window.open and intecepted via setWindowOpenHandler
or the `new-window` event should (a) have the correct background color
and (b) that background color should be transparent if specified.
The ... | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -588,6 +588,7 @@ WebContents.prototype._init = function () {\n // it's technically a BrowserWindowConstructorOptions option because\n // we need to access it in the renderer at init time.\n backgroundColor: windowOpenOve... | 2021-03-10T20:44:36 |
rust-lang/rust | 981fddb4a1f5e4ae62062a87dd8aa250a3a5c705 | 1a1e3352a2c0d42b5a32be11513fd3a0ba845515 | Fix typoed mention of config value using `_` of `-` | [
{
"path": "clippy_lints/src/cargo/mod.rs",
"patch": "@@ -132,7 +132,7 @@ declare_clippy_lint! {\n /// Because this can be caused purely by the dependencies\n /// themselves, it's not always possible to fix this issue.\n /// In those cases, you can allow that specific crate using\n- /// the `a... | 2025-12-27T22:49:31 |
nodejs/node | 1fdcb1c8c1e390836b61e261b4cd3f0485bd0e7b | 3cf05be50e02fd9e6933efda6cae7e21b8b531ea | doc: update process.versions properties
Fixes: https://github.com/nodejs/node/issues/48016
PR-URL: https://github.com/nodejs/node/pull/48019
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Mestery <mestery@protonmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Deokjin Kim <deokjin81.kim@gm... | [
{
"path": "doc/api/process.md",
"patch": "@@ -3843,21 +3843,30 @@ console.log(versions);\n Will generate an object similar to:\n \n ```console\n-{ node: '11.13.0',\n- v8: '7.0.276.38-node.18',\n- uv: '1.27.0',\n- zlib: '1.2.11',\n- brotli: '1.0.7',\n- ares: '1.15.0',\n- modules: '67',\n- nghttp2: '1.... | 2023-05-17T12:53:32 |
facebook/react | 43f4cc160811657135508cdefe6aed2b3522a905 | d0f348dc1b1ab1c3f7377f918d8ffd3fa64c6918 | Fix failing test (#21697) | [
{
"path": "packages/react-reconciler/src/__tests__/ReactSuspense-test.internal.js",
"patch": "@@ -695,28 +695,19 @@ describe('ReactSuspense', () => {\n expect(Scheduler).toFlushAndYield(['Child 1', 'create layout']);\n expect(root).toMatchRenderedOutput('Child 1');\n \n- ReactTestRenderer.act(() ... | 2021-06-17T12:56:18 |
vercel/next.js | b9277bf371c8ad77e495b9874f62c080583d40d8 | 7fcf142f0480a3d9540ccf873de67c2ef70a88a9 | Fix incorrect error count (#75759) | [
{
"path": "packages/next/src/client/components/errors/stitched-error.ts",
"patch": "@@ -34,6 +34,9 @@ export function getReactStitchedError<T = unknown>(err: T): Error | T {\n }\n \n function appendOwnerStack(error: Error) {\n+ if (!React.captureOwnerStack) {\n+ return\n+ }\n let stack = error.stack ... | 2025-02-07T11:58:12 |
golang/go | c7ea20195a3415668047eebdc488a4af1f629f04 | 3637aa3e1ec739f323f59070780672542834a9fd | cmd/compile: fix typo in comment
Change-Id: Ied098312399d2d6557ebf0ee294ca0e71dfa677b
GitHub-Last-Rev: 82f914e85756728976646b490223352059c1953a
GitHub-Pull-Request: golang/go#68565
Reviewed-on: https://go-review.googlesource.com/c/go/+/600655
Auto-Submit: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI ... | [
{
"path": "src/cmd/compile/internal/rangefunc/rewrite.go",
"patch": "@@ -598,7 +598,7 @@ type State int\n \n // Rewrite rewrites all the range-over-funcs in the files.\n // It returns the set of function literals generated from rangefunc loop bodies.\n-// This allows for rangefunc loop bodies to be distingu... | 2024-07-24T06:55:35 |
electron/electron | d274df7e3a4f60d25aa168a5d0bca25c50c83569 | aadf2f4a7c6b8ee9d3b2ad58de40ad1a2286b8b3 | chore: convert bug report template to form (#27971)
* chore: update feature_request for checkboxes
* chore: convert bug report template
* Update .github/ISSUE_TEMPLATE/bug_report.yml
Co-authored-by: Charles Kerr <charles@charleskerr.com>
* Update .github/ISSUE_TEMPLATE/feature_request.yml
Co-authored-by... | [
{
"path": ".github/ISSUE_TEMPLATE/Bug_report.md",
"patch": "@@ -1,58 +0,0 @@\n----\n-name: Bug report\n-about: Create a report to help us improve Electron\n-\n----\n-\n-<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so... | 2021-03-09T21:30:32 |
nodejs/node | 3cf05be50e02fd9e6933efda6cae7e21b8b531ea | 5cb5422b6ff29018c915a497da0ce1a509e1d52c | test: fix suite signal
PR-URL: https://github.com/nodejs/node/pull/47800
Fixes: https://github.com/nodejs/node/issues/47882
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -1,6 +1,7 @@\n 'use strict';\n const {\n ArrayPrototypePush,\n+ ArrayPrototypePushApply,\n ArrayPrototypeReduce,\n ArrayPrototypeShift,\n ArrayPrototypeSlice,\n@@ -760,8 +761,10 @@ class Suite extends Test {\n \n try {\n const { c... | 2023-05-17T08:57:21 |
facebook/react | d0f348dc1b1ab1c3f7377f918d8ffd3fa64c6918 | bd0a963445715f2963d4a9e3a0485e56cbe60653 | Fix for failed Suspense layout semantics (#21694)
Co-authored-by: Dan Abramov <dan.abramov@me.com> | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.new.js",
"patch": "@@ -2210,36 +2210,35 @@ function commitLayoutEffects_begin(\n commitLayoutMountEffects_complete(subtreeRoot, root, committedLanes);\n continue;\n } else {\n- if ((fiber.subtreeFlags & LayoutMask) !=... | 2021-06-16T23:44:44 |
vercel/next.js | ecc16d32c882fb4d893ad2398d23545ecf49769f | c9440f93fa5a35d6f489300a146e404936fbcbc9 | docs(route-segment-config): remove line in force-dynamic mentioning it's like getServerSideProps (#75773)
## Why?
`force-dynamic` is not like `getServerSideProps` in Pages Router, so this bullet point needs to be removed.
- Fixes https://github.com/vercel/next.js/issues/75697 | [
{
"path": "docs/01-app/04-api-reference/03-file-conventions/route-segment-config.mdx",
"patch": "@@ -53,7 +53,6 @@ export const dynamic = 'auto'\n - **`'auto'`** (default): The default option to cache as much as possible without preventing any components from opting into dynamic behavior.\n - **`'force-dyna... | 2025-02-06T23:51:24 |
golang/go | 3637aa3e1ec739f323f59070780672542834a9fd | c5430dc1d8d96cfd0c85a6d760262676d798a6a9 | internal/trace/event: fix typo in comment
Change-Id: Ia191daf8e748f17dcea6038166504fb50e7ddb0d
Reviewed-on: https://go-review.googlesource.com/c/go/+/589535
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco... | [
{
"path": "src/internal/trace/event/event.go",
"patch": "@@ -4,7 +4,9 @@\n \n package event\n \n-// Type is the common in-memory representation of the low-leve\n+// Type indicates an event's type from which its arguments and semantics can be\n+// derived. Its representation matches the wire format's represe... | 2024-05-31T01:33:13 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.