repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
electron/electron
5094cb4115d52b8e915849cc9c7b9ca9bc37edd9
2eb13d377e27eb5557d578e321df0de3e70d700a
fix: wrong default port in docs (#40665) fix: wrong default port
[ { "path": "docs/tutorial/debugging-main-process.md", "patch": "@@ -14,10 +14,10 @@ process:\n \n Electron will listen for V8 inspector protocol messages on the specified `port`,\n an external debugger will need to connect on this port. The default `port` is\n-`5858`.\n+`9229`.\n \n ```shell\n-electron --ins...
2023-12-11T16:43:06
facebook/react
6bac4f2f31378cd58dffe6181e00639366a6081a
826bf4e51ecf14904e936ed043392084553ebbaa
[Fizz] Fallback to client replaying actions if we're trying to serialize a Blob (#28987) This follows the same principle as in #28611. We cannot serialize Blobs of a form data into HTML because you can't initialize a file input to some value. However the serialization of state in an Action can contain blobs. In t...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -1019,12 +1019,7 @@ function pushAdditionalFormField(\n ): void {\n const target: Array<Chunk | PrecomputedChunk> = this;\n target.push(startHiddenInputChunk);\n- if (typeof value !== 'string') {\n- throw new Erro...
2024-05-08T01:53:10
nodejs/node
14353387eb3f5beeee99c01514d389f57506c389
8dbca2d35b4b322320113e6a4a5ad752b1a84e6f
src: implement IsInsideNodeModules() in C++ This previously compiles a script and run it in a new context to avoid global pollution, which is more complex than necessary and can be too slow for it to be reused in other cases. The new implementation just checks the frames in C++ which is safe from global pollution, fas...
[ { "path": "lib/buffer.js", "patch": "@@ -79,10 +79,10 @@ const {\n ONLY_ENUMERABLE,\n },\n getOwnNonIndexProperties,\n+ isInsideNodeModules,\n } = internalBinding('util');\n const {\n customInspectSymbol,\n- isInsideNodeModules,\n lazyDOMException,\n normalizeEncoding,\n kIsEncodingSymbol,...
2024-10-08T10:19:46
golang/go
4d1c255f159d90557b43ede07f8b9a209e1fb49c
3432c68467d50ffc622fed230a37cd401d82d4bf
net/http: strip sensitive proxy headers from redirect requests Similarly to Authentication entries, Proxy-Authentication entries should be stripped to ensure sensitive information is not leaked on redirects outside of the original domain. https://fetch.spec.whatwg.org/#authentication-entries Thanks to Takeshi Kaneko...
[ { "path": "src/net/http/client.go", "patch": "@@ -806,7 +806,8 @@ func (c *Client) makeHeadersCopier(ireq *Request) func(req *Request, stripSensit\n \t\tfor k, vv := range ireqhdr {\n \t\t\tsensitive := false\n \t\t\tswitch CanonicalHeaderKey(k) {\n-\t\t\tcase \"Authorization\", \"Www-Authenticate\", \"Cook...
2025-05-21T18:11:44
vercel/next.js
4a2b2e61c5953e582c42c078a0a13abe454f35ec
8e8dd0c8c2499528b90c06c35a5d06bc499fd12f
Bump swc to v36 (#82886) <!-- 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 Contributors ### Improving Documentati...
[ { "path": "Cargo.lock", "patch": "@@ -588,9 +588,9 @@ dependencies = [\n \n [[package]]\n name = \"binding_macros\"\n-version = \"34.0.0\"\n+version = \"35.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0ae654d10cd9bde2966780a38a7852e2068af51fbd96bf19dce6277dc319f1...
2025-08-21T21:41:16
nodejs/node
ae1e2b53b77585b3f0d58406e37bd56264d29ad7
6c92c1391a3dc8e97530012581337259ea429d0a
build: fix notify-on-review-wanted action PR-URL: https://github.com/nodejs/node/pull/55304 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": ".github/workflows/notify-on-review-wanted.yml", "patch": "@@ -11,7 +11,7 @@ permissions:\n jobs:\n notifyOnReviewWanted:\n name: Notify on Review Wanted\n- if: github.repository == 'nodejs/node' && github.event.label == 'review wanted'\n+ if: github.repository == 'nodejs/node' && gith...
2024-10-07T16:40:51
facebook/react
f4c12cc4a8b1ad7ad3c0a3cad3ecbf2f5f72e07b
257f22ac571a391b7f01558df74df9cadcdf3f55
CI: fix Compiler Playground workflow (#2945) Also renamed the workflow to make more sense when merged into the main React repo.
[ { "path": ".github/workflows/compiler-playground.yml", "patch": "@@ -1,8 +1,16 @@\n-name: Playground\n+name: Compiler Playground\n \n on:\n push:\n branches: [main]\n+ pull_request:\n+ paths:\n+ - compiler/\n+ - .github/workflows/compiler-playground.yml\n+\n+defaults:\n+ run:\n+ work...
2024-05-07T20:15:59
golang/go
3432c68467d50ffc622fed230a37cd401d82d4bf
1aa336209363d9715e145244c7b22620ac0f0584
runtime: make bubbled timers more consistent with unbubbled This CL makes two changes to reduce the predictability with which bubbled timers fire. When asynctimerchan=0 (the default), regular timers with an associated channel are only added to a timer heap when some channel operation is blocked on that channel. This ...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -226,8 +226,8 @@ func TestTimerNondeterminism(t *testing.T) {\n \t\tconst iterations = 1000\n \t\tvar seen1, seen2 bool\n \t\tfor range iterations {\n-\t\t\ttm1 := time.NewTimer(0)\n-\t\t\ttm2 := time.NewTimer(0)\n+\t\t\ttm1 := time.NewTimer(1...
2025-06-02T16:26:27
nodejs/node
deb5effe017aa10e4fd1e0ce798236e38a432c77
d5eb9a378e7ce357151b44f41f82e6ee3de1984a
v8: out of bounds copy Fixes: https://github.com/nodejs/node/issues/54573 Co-authored-by: ronag <ronagy@icloud.com> Co-authored-by: ramidzkh <ramidzkh@gmail.com> PR-URL: https://github.com/nodejs/node/pull/55261 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "lib/v8.js", "patch": "@@ -49,7 +49,6 @@ if (internalBinding('config').hasInspector) {\n }\n \n const assert = require('internal/assert');\n-const { copy } = internalBinding('buffer');\n const { inspect } = require('internal/util/inspect');\n const { FastBuffer } = require('internal/buffer');\n co...
2024-10-07T11:11:29
electron/electron
2eb13d377e27eb5557d578e321df0de3e70d700a
93fdc8d33c8d943f969cfe3a138068e14bd22917
docs: fix year typos in electron-timelines.md (#40728)
[ { "path": "docs/tutorial/electron-timelines.md", "patch": "@@ -9,7 +9,7 @@ check out our [Electron Versioning](./electron-versioning.md) doc.\n \n | Electron | Alpha | Beta | Stable | EOL | Chrome | Node | Supported |\n | ------- | ----- | ------- | ------ | ------ | ---- | ---- | ---- |\n-| 29.0.0 | 2023-...
2023-12-08T03:14:54
golang/go
1aa336209363d9715e145244c7b22620ac0f0584
f537061e1b7599e97bafc0c8f9cc0bf686eb813e
Revert "cmd/compile: Enable inlining of tail calls" This reverts CL 650455 and CL 655816. Reason for revert: it causes #73747. Properly fixing it gets into trickiness with defer/recover, wrapper, and inlining. We're late in the Go 1.25 release cycle. Fixes #73747. Change-Id: Ifb343d522b18fec3fec73a7c886678032ac8e4d...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -785,7 +785,7 @@ func inlineCallCheck(callerfn *ir.Func, call *ir.CallExpr) (bool, bool) {\n \tif call.Op() != ir.OCALLFUNC {\n \t\treturn false, false\n \t}\n-\tif call.GoDefer {\n+\tif call.GoDefer || call.NoInline {\n \t\treturn false, fals...
2025-06-03T19:44:32
facebook/react
257f22ac571a391b7f01558df74df9cadcdf3f55
fd873e8ddd2d6aee88c8fea490a8f34280ac6069
CI: fix Compiler TypeScript workflow (#2946)
[ { "path": ".github/workflows/compiler-typescript.yml", "patch": "@@ -4,6 +4,13 @@ on:\n push:\n branches: [main]\n pull_request:\n+ paths:\n+ - compiler/\n+ - .github/workflows/compiler-typescript.yml\n+\n+defaults:\n+ run:\n+ working-directory: compiler\n \n jobs:\n discover_yarn...
2024-05-07T20:07:46
vercel/next.js
8e8dd0c8c2499528b90c06c35a5d06bc499fd12f
472c4c024b457cc471001312f213109b80438b36
Update prettier project dependency from 3.2.5 to 3.6.2 (#82896) What? This PR updates the dependency "prettier" from version 3.2.5 to version 3.6.2. It also modifies other scripts by using the pnpm run prettier-fix after updating the dependency. Why? This is updated to benefit from the changes and fixes introduced in...
[ { "path": ".prettierignore", "patch": "@@ -71,4 +71,19 @@ test/e2e/async-modules/amp-validator-wasm.js\n /turbopack/crates/turbopack-tests/tests/**/output*\n /turbopack/crates/turbopack-tests/tests/**/static\n \n-/apps/docs/.source/*\n\\ No newline at end of file\n+/apps/docs/.source/*\n+\n+# Symlink files\...
2025-08-21T21:05:20
nodejs/node
a301596c41c29bcea0b9803f41750f741f9f49be
bbdfeebd9eb2f9b31169edf5be8eb31adb367a1c
doc: move `ERR_NAPI_TSFN_START/STOP_IDLE_LOOP` to legacy errors PR-URL: https://github.com/nodejs/node/pull/55248 Refs: https://github.com/nodejs/node/pull/17887 Refs: https://github.com/nodejs/node/pull/32997 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -2278,21 +2278,6 @@ function.\n An error occurred while attempting to retrieve the JavaScript `undefined`\n value.\n \n-<a id=\"ERR_NAPI_TSFN_START_IDLE_LOOP\"></a>\n-\n-### `ERR_NAPI_TSFN_START_IDLE_LOOP`\n-\n-On the main thread, values are removed from the queue...
2024-10-05T09:59:13
facebook/react
e7d213dfb0760dc9f6506fca6d6cfbac708a40e2
c32ff0f4f196cb1fbfdb93a6f08c60b27fc7f31c
feat[react-devtools]: display forget badge for components in profiling session (#29014) # Summary - `compiledWithForget` field for nodes is now propagated from the backend to frontend profiler stores - Corresponding node with such field will have a `✨` prefix displayed before its displayName <img width="1728" alt...
[ { "path": "packages/react-devtools-shared/src/__tests__/profilingCharts-test.js", "patch": "@@ -124,8 +124,8 @@ describe('profiling charts', () => {\n \"actualDuration\": 0,\n \"didRender\": true,\n \"id\": 5,\n- \"label\": \"Memo(Child) key=\"third\" (...
2024-05-07T15:39:01
electron/electron
cb0da6ff3436c6e0e865706470e1d5b7572477b3
9aa73abe781ae5da01ac50e9165330722806d1d9
fix: prevent node mode to be used as script runner by other apps (#40579)
[ { "path": "filenames.gni", "patch": "@@ -199,6 +199,8 @@ filenames = {\n \"shell/common/language_util_mac.mm\",\n \"shell/common/mac/main_application_bundle.h\",\n \"shell/common/mac/main_application_bundle.mm\",\n+ \"shell/common/mac/codesign_util.cc\",\n+ \"shell/common/mac/codesign_util...
2023-12-06T02:23:54
golang/go
f537061e1b7599e97bafc0c8f9cc0bf686eb813e
d4bf7167935e84e7200e95649563d1368cf05331
cmd/trace: handle Sync event at the beginning of the trace Currently the code assumes that there's no Sync event at the start of the trace, but this hasn't been correct for some time. Count Syncs and look for at least one instead of looking for zero. Fixes #73962. Change-Id: I2b4199a21c699c5b50b3d5add37dc46a515108c6...
[ { "path": "src/cmd/trace/gen.go", "patch": "@@ -215,12 +215,12 @@ func (g *stackSampleGenerator[R]) StackSample(ctx *traceContext, ev *trace.Event\n // to trace.ResourceNone (the global scope).\n type globalRangeGenerator struct {\n \tranges map[string]activeRange\n-\tseenSync bool\n+\tseenSync int\n }\n ...
2025-06-03T20:30:43
vercel/next.js
7bfd9996009509e19e96b92ee0a7c8184d73353c
bb89c756654b0f6216595f7b2f2b0e7ba7b2cc78
Turbopack: run all unit tests with a fixed amount of worker threads to avoid overloading with many CPUs (#82890) ### What? To avoid overwelming the CPU when one has many core, we limit the number of worker thread in unit tests. Unit tests already run multi-threaded, so we don't want to create N * N threads here....
[ { "path": "crates/next-api/src/nft_json.rs", "patch": "@@ -431,7 +431,7 @@ mod tests {\n }\n }\n \n- #[tokio::test(flavor = \"multi_thread\")]\n+ #[tokio::test(flavor = \"multi_thread\", worker_threads = 2)]\n async fn test_relativize_glob_normal_patterns() {\n let tt = turbo_t...
2025-08-21T19:33:59
nodejs/node
32efeea0c046e3b504fee27278a0f7e8da8c86e8
98788dace632e64e7d7b13b10559b301bd390526
doc: fix initial default value of autoSelectFamily Specify the initial default value of `autoSelectFamily` in description of `net.setDefaultAutoSelectFamily()` as specified in description of `net.getDefaultAutoSelectFamily()`. PR-URL: https://github.com/nodejs/node/pull/55245 Reviewed-By: Luigi Pinca <luigipinca@gmai...
[ { "path": "doc/api/net.md", "patch": "@@ -1798,7 +1798,9 @@ added: v19.4.0\n \n Sets the default value of the `autoSelectFamily` option of [`socket.connect(options)`][].\n \n-* `value` {boolean} The new default value. The initial default value is `false`.\n+* `value` {boolean} The new default value.\n+ The...
2024-10-05T02:06:36
electron/electron
10a165a9ff731137b679a4ef3a9e3d18bcdfd514
66b4b216468feab79c7527295f2485067ea2cf15
fix: webview zoom level persistence on navigation (#40650)
[ { "path": "shell/browser/web_contents_zoom_controller.cc", "patch": "@@ -74,6 +74,7 @@ bool WebContentsZoomController::SetZoomLevel(double level) {\n DCHECK_CURRENTLY_ON(BrowserThread::UI);\n content::NavigationEntry* entry =\n web_contents()->GetController().GetLastCommittedEntry();\n+\n // Can...
2023-12-04T15:39:20
facebook/react
c32ff0f4f196cb1fbfdb93a6f08c60b27fc7f31c
0fc9c84e63622026b5977557900c9cfe204552d3
fix[react-devtools]: add backwards compat with legacy element type symbol (#28982) Follow-up to https://github.com/facebook/react/pull/28813. RDT is using `typeOf` from `react-is` to determine the element display name, I've forked an implementation of this method, but will be using legacy element symbol.
[ { "path": "packages/react-devtools-shared/src/utils.js", "patch": "@@ -23,9 +23,23 @@ import {\n Suspense,\n } from 'react-is';\n import {\n+ REACT_CONSUMER_TYPE,\n+ REACT_CONTEXT_TYPE,\n+ REACT_FORWARD_REF_TYPE,\n+ REACT_FRAGMENT_TYPE,\n+ REACT_LAZY_TYPE,\n+ REACT_LEGACY_ELEMENT_TYPE,\n+ REACT_MEM...
2024-05-07T15:38:43
vercel/next.js
1b276bd4d8159a40e327b5f986d1612018f3d014
b56d1e1af1ad37f96e1905662b15ac5f4707726b
fix: aliased navigations should apply scroll handling (#82900) When routing to the same page with different searchParams w/ a loading segment, we have handling to skip RSC roundtrip and re-use the existing RSC data. However, this handling was missing logic that exists in `navigate-reducer` which sets the `scrollableSe...
[ { "path": "packages/next/src/client/components/router-reducer/aliased-prefetch-navigations.ts", "patch": "@@ -1,10 +1,12 @@\n import type {\n CacheNodeSeedData,\n FlightRouterState,\n+ FlightSegmentPath,\n } from '../../../shared/lib/app-router-types'\n import type { CacheNode } from '../../../shared/l...
2025-08-21T19:23:43
golang/go
d4bf7167935e84e7200e95649563d1368cf05331
1f2a4d192d71ae5eeaacaa72a8bb2df4e6c08edd
runtime: reduce per-P memory footprint when greenteagc is disabled There are two additional sources of memory overhead per P that come from greenteagc. One is for ptrBuf, but on platforms other than Windows it doesn't actually cost anything due to demand-paging (Windows also demand-pages, but the memory is 'committed'...
[ { "path": "src/runtime/mgc.go", "patch": "@@ -131,6 +131,7 @@ package runtime\n import (\n \t\"internal/cpu\"\n \t\"internal/goarch\"\n+\t\"internal/goexperiment\"\n \t\"internal/runtime/atomic\"\n \t\"internal/runtime/gc\"\n \t\"unsafe\"\n@@ -717,7 +718,7 @@ func gcStart(trigger gcTrigger) {\n \t\t\tthrow(...
2025-06-03T19:28:00
electron/electron
66b4b216468feab79c7527295f2485067ea2cf15
6f14dba7a0d655628aec82783362bcfa9ef1d506
ci: tweak new release board workflow (#40680) * ci: tweak new release board workflow * ci: fix workflow
[ { "path": ".github/workflows/branch-created.yml", "patch": "@@ -8,7 +8,7 @@ permissions: {}\n jobs:\n release-branch-created:\n name: Release Branch Created\n- if: ${{ github.event.ref_type == 'branch' && endsWith(github.event.ref, '-x-y') }}\n+ if: ${{ github.event.ref_type == 'branch' && endsW...
2023-12-04T15:18:14
facebook/react
90a5d48a2fb0794dced2a9a26b2451c75808cc51
55d6c6efaaab8e104e3e0f99d16cf8c2f5f931e6
CI: fix Rust CI workflows (#2942) - update paths - update working directory - rename files for clarity when merged into the main react repo
[ { "path": ".github/workflows/compiler-rust-benchmark.yml", "patch": "@@ -1,19 +1,23 @@\n # Runs the parser benchmark on every push to main, and compares it with the previous run\n-name: Parser Benchmark (Rust)\n+name: Compiler Benchmark (Rust)\n \n on:\n push:\n branches: [\"main\"]\n paths:\n ...
2024-05-07T15:17:30
vercel/next.js
b56d1e1af1ad37f96e1905662b15ac5f4707726b
14995e0a266cf0d3a90f31334257fd1648248ba5
fix: typesafe linking to route handlers and pages API routes (#82858) Fixes #82833
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -201,18 +201,24 @@ export function generateLinkTypesFile(\n routesManifest: RouteTypesManifest\n ): string {\n // Generate serialized static and dynamic routes for the internal namespace\n- const allRoutes = {\n- ...route...
2025-08-21T17:57:09
golang/go
1f2a4d192d71ae5eeaacaa72a8bb2df4e6c08edd
5b748eed9c479383fc3ea3d018bbd03de1baa6e6
test: add another regression test for issue 73309 Fixed #73309 Change-Id: Id715b9c71c95c92143a7fdb5a66b24305346dd3b Reviewed-on: https://go-review.googlesource.com/c/go/+/678415 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Carlos Amedee <carlos@golang.org> Aut...
[ { "path": "src/cmd/compile/internal/types2/stdlib_test.go", "patch": "@@ -333,6 +333,7 @@ func TestStdFixed(t *testing.T) {\n \t\t\"issue56103.go\", // anonymous interface cycles; will be a type checker error in 1.22\n \t\t\"issue52697.go\", // types2 does not have constraints on stack size\n \t\t\"issue7...
2025-06-03T17:04:26
nodejs/node
fe45be207be1b51b3dde84265aad5fd79e0cfb2b
cc9b9a7f70cd14ebe1435becec44b300912b6f88
deps: V8: backport 0d5d6e71bbb0 Original commit message: Remove `--js-promise-withresolvers` runtime flag Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com> Bug: 42204122 Change-Id: I017a0d1ae0f8225513206ffb7806a4250be75d4c Reviewed-on: https://chromium-review.googlesource.com/c/v8/v...
[ { "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.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ...
2024-09-20T17:17:30
electron/electron
6f14dba7a0d655628aec82783362bcfa9ef1d506
3609fc7402881b1d51f6c56249506d5dd3fcbe93
fix: cherry pick 9009d76968b1ec2ed825bc95e47d086ceea07520 from chromium (#40681) * chore: cherry pick 9009d76968b1ec2ed825bc95e47d086ceea07520 from chromium * update patch message
[ { "path": "patches/chromium/.patches", "patch": "@@ -127,3 +127,4 @@ fix_activate_background_material_on_windows.patch\n feat_allow_passing_of_objecttemplate_to_objecttemplatebuilder.patch\n chore_remove_check_is_test_on_script_injection_tracker.patch\n fix_restore_original_resize_performance_on_macos.patch...
2023-12-04T04:37:03
facebook/react
b28c53dcf10cdd0164aa860248be8305c0cda4c9
d0a51e7dfc0e40b7c5304adcd9b2b8ad687b37f9
Clarify how to address ValidateNoCapitalizedCalls errors Make it clearer how to address this error by allowlisting globals that are known to be safe ghstack-source-id: e7fa6464ebb561a7a1366ff70430842007c6552e Pull Request resolved: https://github.com/facebook/react-forget/pull/2909
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoCapitalizedCalls.ts", "patch": "@@ -28,6 +28,8 @@ export function validateNoCapitalizedCalls(fn: HIRFunction): void {\n \n const capitalLoadGlobals = new Map<IdentifierId, string>();\n const capitalizedProperties = new Map...
2024-05-07T00:13:45
vercel/next.js
14995e0a266cf0d3a90f31334257fd1648248ba5
6f59914bcdf3e919bb288ccbb5bd7159193235fa
Bump wasmer to 6.1.0-rc.3 (#82885) Namely, https://github.com/wasmerio/wasmer/issues/5610 is fixed. This should allow us to upgrade Rust again, cc @bgw
[ { "path": "Cargo.lock", "patch": "@@ -10370,9 +10370,9 @@ checksum = \"0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a\"\n \n [[package]]\n name = \"virtual-fs\"\n-version = \"0.601.0-rc.2\"\n+version = \"0.601.0-rc.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-...
2025-08-21T17:53:20
golang/go
5b748eed9c479383fc3ea3d018bbd03de1baa6e6
cfb4e9bc4ae957dba63cb2ee5e020fcd25d553fd
cmd/compile: better error message when import embed package Fixes #73955 Change-Id: I7cf3ab4c70dc2e2765b54b88ae8cfc77a3073344 Reviewed-on: https://go-review.googlesource.com/c/go/+/678355 Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Robert Griesemer <gri@g...
[ { "path": "src/cmd/compile/internal/noder/noder.go", "patch": "@@ -458,7 +458,7 @@ func Renameinit() *types.Sym {\n func checkEmbed(decl *syntax.VarDecl, haveEmbed, withinFunc bool) error {\n \tswitch {\n \tcase !haveEmbed:\n-\t\treturn errors.New(\"go:embed only allowed in Go files that import \\\"embed\\\...
2025-06-03T15:01:27
nodejs/node
6b9413e41add92d79f1ee572940eebaa9850889a
5e4da33d97296f8c6a759b7d3069501813b3188a
worker: throw InvalidStateError in postMessage after close This update addresses expected failures for invalid postMessage after close in WPT. PR-URL: https://github.com/nodejs/node/pull/55206 Reviewed-By: Mattias Buelens <mattias@buelens.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
[ { "path": "lib/internal/worker/io.js", "patch": "@@ -402,7 +402,7 @@ class BroadcastChannel extends EventTarget {\n if (arguments.length === 0)\n throw new ERR_MISSING_ARGS('message');\n if (this[kHandle] === undefined)\n- throw new DOMException('BroadcastChannel is closed.');\n+ thr...
2024-10-03T02:37:34
electron/electron
3609fc7402881b1d51f6c56249506d5dd3fcbe93
344b7f0d068ae7d20fdebafc2ebadcdc0b4f7f68
fix: clean up devtools frontend_host on webcontents destroy (#40666) * fix: clean up devtools frontend_host on destroy * chore: use IsInPrimaryMainFrame instead of IsInMainFrame * test: add a test for re-opening devtools
[ { "path": "shell/browser/ui/inspectable_web_contents.cc", "patch": "@@ -1007,6 +1007,7 @@ void InspectableWebContents::WebContentsDestroyed() {\n Observe(nullptr);\n Detach();\n embedder_message_dispatcher_.reset();\n+ frontend_host_.reset();\n \n if (view_ && view_->GetDelegate())\n view_->Get...
2023-12-01T19:37:52
facebook/react
d0a51e7dfc0e40b7c5304adcd9b2b8ad687b37f9
84d28ebcc54cedfc0c50260ffcf0eaeafcb6bac6
Allow eslint rule reportable severity to be set During the demo I might show an example of fixing a CannotPreserveMemoization error. But I don't want to make that reportable by default, so this PR allows configuration like so ```js module.exports = { root: true, plugins: [ 'eslint-plugin-react-compiler', ],...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/__tests__/ReactCompilerRule-test.ts", "patch": "@@ -5,6 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+import { ErrorSeverity } from \"babel-plugin-react-compiler/src\";\n import { RuleTester as ESLintTester } from \"...
2024-05-07T00:07:36
vercel/next.js
6f59914bcdf3e919bb288ccbb5bd7159193235fa
0ed99f10c97e9cca47aad6d31023c9604a11c320
Turbopack: run more unit tests in multi thread runtime (#82889) ### What? We want to run all unit tests in multi thread runtime, otherwise they would panic on block_in_place.
[ { "path": "crates/next-api/src/nft_json.rs", "patch": "@@ -431,7 +431,7 @@ mod tests {\n }\n }\n \n- #[tokio::test]\n+ #[tokio::test(flavor = \"multi_thread\")]\n async fn test_relativize_glob_normal_patterns() {\n let tt = turbo_tasks::TurboTasks::new(TurboTasksBackend::new(\n...
2025-08-21T17:34:23
golang/go
cfb4e9bc4ae957dba63cb2ee5e020fcd25d553fd
94764d093822721337243de77aeba72df1f9b230
cmd/dist: don't install tools that won't be shipped in distribution We shouldn't be installing these tools because we will remove them in distpack. Installing the tools will also prevent us from testing what happens when the tools are missing. The changes below this on the stack, CL 677775 (cmd/doc: build cmd/doc dir...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -1516,7 +1516,7 @@ func cmdbootstrap() {\n \t}\n \n \t// To recap, so far we have built the new toolchain\n-\t// (cmd/asm, cmd/cgo, cmd/compile, cmd/link)\n+\t// (cmd/asm, cmd/cgo, cmd/compile, cmd/link, cmd/preprofile)\n \t// using the Go bootstrap toolchain ...
2025-05-30T16:53:42
nodejs/node
14b53df33cdb4c0498be6fa583a757b7dc4ffd4d
5ff9b072b2346b4c2220fd67e88123f02ceee751
doc: fix unordered error anchors PR-URL: https://github.com/nodejs/node/pull/55242 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -1295,18 +1295,20 @@ added: v16.7.0\n \n When using [`fs.cp()`][], `src` or `dest` pointed to an invalid path.\n \n-<a id=\"ERR_FS_CP_FIFO_PIPE\"></a>\n+<a id=\"ERR_HTTP_BODY_NOT_ALLOWED\"></a>\n \n ### `ERR_HTTP_BODY_NOT_ALLOWED`\n \n An error is thrown when writ...
2024-10-02T18:45:39
electron/electron
96f5f89f1bcb3aecb6786339cee92e26e651f6ba
9c94fd7afb4706c2d2228a455f0874a0370cfe1d
chore: fix building content_browsertests (#40652)
[ { "path": "patches/chromium/mas_avoid_private_macos_api_usage.patch.patch", "patch": "@@ -660,7 +660,7 @@ index a119b4439bfb9218c7aaf09dca8e78527da7f20d..faa813b003940280c6eeb87e70173019\n \n } // namespace content\n diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn\n-index 3ed642ab9c89b16f0b2fc...
2023-11-30T15:23:21
facebook/react
84d28ebcc54cedfc0c50260ffcf0eaeafcb6bac6
e2d47342bee8e2c83ade7764a37e04dc6e9ab0e5
Default to raising all errors in eslint plugin We control what gets reported via another function anyway so it's better to raise everything at the compiler config level. This lets us configure what level of diagnostic is reportable later ghstack-source-id: 996d3cbb8d8f3e1bbe943210b8d633420e0f3f3b Pull Request resolve...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/src/rules/ReactCompilerRule.ts", "patch": "@@ -64,7 +64,7 @@ function isReportableDiagnostic(\n const COMPILER_OPTIONS: Partial<PluginOptions> = {\n noEmit: true,\n compilationMode: \"infer\",\n- panicThreshold: \"critical_errors\",\n+ panicThr...
2024-05-07T00:07:35
vercel/next.js
3fffe6080148b7fc489ecfa5f0564b8e64991918
271d0af841786682d59f2f71ef2fabc8de096eb3
Turbopack: fix the require.cache clear logic (#82876) ### What? Fixes a typo and an oversight in the logic.
[ { "path": "packages/next/src/server/dev/hot-reloader-turbopack.ts", "patch": "@@ -316,6 +316,10 @@ export async function createHotReloaderTurbopack(\n ): boolean {\n if (force) {\n for (const { path, contentHash } of writtenEndpoint.serverPaths) {\n+ // We ignore source maps\n+ if ...
2025-08-21T14:49:18
golang/go
792548a4835f019b40bf8bd4442c893eae280467
49f63047245a50f4ec38044fc6fa2bc75719726a
cmd/go/internal/cfg: fix GOROOT setting when forcing host config We manage the state using a bunch of global config, so we need to make sure we're doing things in the right order. In this case, the SetGOROOT function was being called in init, setting the GOROOT on the global Context, but when we reset the context in F...
[ { "path": "src/cmd/go/internal/cfg/cfg.go", "patch": "@@ -227,6 +227,8 @@ func ForceHost() {\n \t// Recompute the build context using Goos and Goarch to\n \t// set the correct value for ctx.CgoEnabled.\n \tBuildContext = defaultContext()\n+\t// Call SetGOROOT to properly set the GOROOT on the new context.\n...
2025-05-30T20:16:27
nodejs/node
28ffa4b7512bda51fe7245cf7d60b92fc5672484
834316d541246068f2924594b6ad1628efd9f84b
build: fix not valid json in coverage PR-URL: https://github.com/nodejs/node/pull/55179 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": ".nycrc", "patch": "@@ -4,7 +4,7 @@\n \"test/**\",\n \"tools/**\",\n \"benchmark/**\",\n- \"deps/**\",\n+ \"deps/**\"\n ],\n \"reporter\": [\n \"html\",", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2024-09-30T20:27:55
vercel/next.js
a21618480e90be6f067835d69f12824d0acfbd86
c00f7325dbc90bbb304b3d4dce1a588e41d0eb9a
Turbopack: fix invalid NFT entry with file behind symlink (#82887)
[ { "path": "crates/next-api/src/nft_json.rs", "patch": "@@ -231,6 +231,38 @@ impl Asset for NftJsonAsset {\n continue;\n }\n \n+ #[cfg(debug_assertions)]\n+ {\n+ // Verify that we there are no entries where a file is created inside of a symlink...
2025-08-21T14:34:52
facebook/react
8f7dd5592be25dfae816ab1d1aa3d2bba8871435
1beb73de0f7c3261a0de37620453b102caaa6236
[DevTools] Check in `frontend.d.ts` for react-devtools-fusebox, include in build output (#28970) ## Summary The `react-devtools-fusebox` private package is used in the React Native DevTools (Fusebox) frontend by checking build artifacts into RN's [fork]([`facebookexperimental/rn-chrome-devtools-frontend`](https:/...
[ { "path": ".eslintignore", "patch": "@@ -18,6 +18,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/ErrorTesterCompiled.js\n+packages/react-devtools-fusebox/dist\n...
2024-05-03T16:32:41
nodejs/node
3111ed7011e03eef7ccf7a27d0d7657e6a4e1cc4
bbf08c6a1bef277e59f1a03ea557f05a0a949d04
stream: handle undefined chunks correctly in decode stream Align TextDecoderStream behavior with WPT requirements by treating undefined chunks as errors. This change ensures that TextDecoderStream properly handles unexpected chunk types and throws an error when receiving undefined input. This update addresses the fai...
[ { "path": "lib/internal/webstreams/encoding.js", "patch": "@@ -20,6 +20,7 @@ const { customInspect } = require('internal/webstreams/util');\n \n const {\n codes: {\n+ ERR_INVALID_ARG_TYPE,\n ERR_INVALID_THIS,\n },\n } = require('internal/errors');\n@@ -133,6 +134,9 @@ class TextDecoderStream {\n ...
2024-09-30T17:54:43
golang/go
3bd0eab96f581daafa3045de0c5877254e19054c
a37969852194c841beb61f8078e9939438841fec
runtime: randomize order of timers at the same instant in bubbles In synctest bubbles, fire timers scheduled for the same instant in a randomized order. Pending timers are added to a heap ordered by the timer's wakeup time. Add a per-timer random value, set when the timer is added to a heap, to break ties between tim...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -16,6 +16,7 @@ import (\n \t\"strconv\"\n \t\"strings\"\n \t\"sync\"\n+\t\"sync/atomic\"\n \t\"testing\"\n \t\"time\"\n \t\"weak\"\n@@ -218,6 +219,65 @@ func TestTimerFromOutsideBubble(t *testing.T) {\n \t}\n }\n \n+// TestTimerNondeterminism ...
2025-05-29T18:48:06
electron/electron
9c94fd7afb4706c2d2228a455f0874a0370cfe1d
39ee94089a76815d0a2d2e15ef85a8d48473f330
chore: upgrade to Node.js v20 (#40545) * chore: upgrade to Node.js v20 * src: allow embedders to override NODE_MODULE_VERSION https://github.com/nodejs/node/pull/49279 * src: fix missing trailing , https://github.com/nodejs/node/pull/46909 * src,tools: initialize cppgc https://github.com/nodejs/node/...
[ { "path": "BUILD.gn", "patch": "@@ -29,6 +29,7 @@ import(\"filenames.gni\")\n import(\"filenames.hunspell.gni\")\n import(\"filenames.libcxx.gni\")\n import(\"filenames.libcxxabi.gni\")\n+import(\"js2c_toolchain.gni\")\n \n if (is_mac) {\n import(\"//build/config/mac/rules.gni\")\n@@ -237,6 +238,7 @@ acti...
2023-11-30T14:51:35
facebook/react
f5f2799a8d0b37487c9674159846cbb7696febd3
14f71db6b6f1668e61b29d376889ad298def4c6e
DevTools: Fix inspecting components with multiple reads of the same Context in React 17 (#28974)
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -177,15 +177,20 @@ function readContext<T>(context: ReactContext<T>): T {\n );\n }\n \n+ let value: T;\n // For now we don't expose readContext usage in the hooks debugging info.\n- const value = hasOwnProperty.c...
2024-05-02T20:08:41
vercel/next.js
0fdaf93770d66d61b588bc8d06c5ec2ec0e66323
69310a841ea98e39e82c06eed1a58ceb94bbcad1
Turbopack: improve compaction (#82375) ### What? * fix initial duplication set * improve compaction config (1MB limit was too aggressive and was led to compaction on every call)
[ { "path": "turbopack/crates/turbo-persistence/src/compaction/selector.rs", "patch": "@@ -136,8 +136,8 @@ impl Default for CompactConfig {\n optimal_merge_count: 8,\n max_merge_count: 32,\n max_merge_bytes: 500 * MB,\n- min_merge_duplication_bytes: MB,\n- ...
2025-08-21T00:55:42
nodejs/node
33bbf3751b9f6a516f605cb7088adb786a3f8cfb
65fbc95949cd129533c5106e095842451a87930a
src: fixup Error.stackTraceLimit during snapshot building When V8 creates a context for snapshot building, it does not install Error.stackTraceLimit. As a result, error.stack would be undefined in the snapshot builder script unless users explicitly initialize Error.stackTraceLimit, which may be surprising. This patch...
[ { "path": "lib/internal/main/mksnapshot.js", "patch": "@@ -23,17 +23,18 @@ const { emitWarningSync } = require('internal/process/warning');\n const {\n initializeCallbacks,\n namespace: {\n- addSerializeCallback,\n addDeserializeCallback,\n isBuildingSnapshot,\n },\n+ addAfterUserSerialize...
2024-09-25T12:51:41
rust-lang/rust
c1b0b32fe9c150392345c9f9c35f6c056f5ffcd4
05cd01b8879f599e064ffd7294a5ae09320e25b5
fix: verify NeverToAny adjustment on binop lhs never place
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/tests/never_type.rs", "patch": "@@ -823,11 +823,11 @@ fn binop_lhs_never_place_diverges() {\n check_no_mismatches(\n r#\"\n //- minicore: sized, add\n-fn foo() -> i32 {\n+fn foo() {\n unsafe {\n- let p: *const ! = 0 as _;\n- ...
2026-02-18T05:42:35
electron/electron
39ee94089a76815d0a2d2e15ef85a8d48473f330
b2fcc15ec794bb249d269983b6f4fe207ce889ff
fix: add missing `set_wants_to_be_visible(true)` to `NativeWindowMac::ShowInactive()` (#40546) * fix: add missing set_wants_to_be_visible(true) to NativeWindowMac::ShowInactive() * add test
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -534,6 +534,8 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n }\n \n void NativeWindowMac::ShowInactive() {\n+ set_wants_to_be_visible(true);\n+\n // Reattach the window to the parent to actually show it.\n ...
2023-11-30T11:43:22
facebook/react
14f71db6b6f1668e61b29d376889ad298def4c6e
c44e9d1557ac076546811e2a56fcf8f2144ce6f5
Devtools: Fix build-for-devtools (#28976)
[ { "path": "package.json", "patch": "@@ -108,7 +108,7 @@\n },\n \"scripts\": {\n \"build\": \"node ./scripts/rollup/build-all-release-channels.js\",\n- \"build-for-devtools\": \"cross-env RELEASE_CHANNEL=experimental yarn build react/index,react/jsx,react-dom/index,react-dom/unstable_testing,react...
2024-05-02T19:58:51
vercel/next.js
69310a841ea98e39e82c06eed1a58ceb94bbcad1
450b07e8a445660c8c36a6a0103d38297a0754f7
Turbopack: use block in place for db writes (#82380) <!-- 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 Contributor...
[ { "path": "turbopack/crates/turbo-persistence/src/db.rs", "patch": "@@ -508,12 +508,15 @@ impl<S: ParallelScheduler> TurboPersistence<S> {\n sst_filter.apply_filter(meta_file);\n }\n \n- for (_, file) in new_sst_files.iter() {\n- file.sync_all()?;\n- }\n- ...
2025-08-21T00:29:21
nodejs/node
65fbc95949cd129533c5106e095842451a87930a
371ed85e4e1d02c63227d17f226e5301f4a8ef61
src: parse --stack-trace-limit and use it in --trace-* flags Previously, --trace-exit and --trace-sync-io doesn't take care of --stack-trace-limit and always print a stack trace with maximum size of 10. This patch parses --stack-trace-limit during initialization and use the value in --trace-* flags. PR-URL: https://g...
[ { "path": "src/env-inl.h", "patch": "@@ -433,6 +433,10 @@ inline double Environment::get_default_trigger_async_id() {\n return default_trigger_async_id;\n }\n \n+inline int64_t Environment::stack_trace_limit() const {\n+ return isolate_data_->options()->stack_trace_limit;\n+}\n+\n inline std::shared_ptr<...
2024-09-25T12:36:52
electron/electron
b2fcc15ec794bb249d269983b6f4fe207ce889ff
763bc62c7f1939b3fdc7a12301acb637d005afa5
build: fix release notes script bug that omitted edited release-clerk comments (#40634) * build: fix release notes script bug that omitted edited release-clerk comments add a warning when neither notes nor no-notes are found * fixup! build: fix release notes script bug that omitted edited release-clerk comments ...
[ { "path": "script/release/notes/notes.js", "patch": "@@ -99,7 +99,7 @@ const getNoteFromClerk = async (ghKey) => {\n \n const CLERK_LOGIN = 'release-clerk[bot]';\n const CLERK_NO_NOTES = '**No Release Notes**';\n- const PERSIST_LEAD = '**Release Notes Persisted**\\n\\n';\n+ const PERSIST_LEAD = '**Rel...
2023-11-30T11:41:48
facebook/react
29d3c83f0a84354b18ab3f064f2d43a4c116d6ed
4508873393058e86bed308b56e49ec883ece59d1
ReactDOM: Fix missing form data when the submitter is outside the form (#28056)
[ { "path": "packages/react-dom-bindings/src/events/plugins/FormActionEventPlugin.js", "patch": "@@ -92,6 +92,9 @@ function extractEvents(\n const temp = submitter.ownerDocument.createElement('input');\n temp.name = submitter.name;\n temp.value = submitter.value;\n+ if (form.id) {\n+ ...
2024-05-02T11:06:28
vercel/next.js
450b07e8a445660c8c36a6a0103d38297a0754f7
e21ac64cd01485c4951c305ae9654bf6fca3f7a7
Turbopack: allow to customize the parallel execution of turbo-persistence (#82668) <!-- 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'...
[ { "path": "turbopack/crates/turbo-persistence-tools/src/main.rs", "patch": "@@ -3,7 +3,7 @@\n use std::path::PathBuf;\n \n use anyhow::{Context, Result, bail};\n-use turbo_persistence::{MetaFileEntryInfo, TurboPersistence};\n+use turbo_persistence::{MetaFileEntryInfo, SerialScheduler, TurboPersistence};\n \...
2025-08-21T00:04:05
nodejs/node
0f02810fc940ca16dd4e3794f6e96dd5c0eb6ba0
99e0d0d2186065aa8ca9ab7cd94e1637bb166220
doc: fix link in `test/README.md` PR-URL: https://github.com/nodejs/node/pull/55165 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/README.md", "patch": "@@ -38,7 +38,7 @@ For the tests to run on Windows, be sure to clone Node.js source code with the\n | `tick-processor` | No | Tests for the V8 tick processor integration.[^4] |\n | `v8-updates` | No...
2024-09-30T08:50:29
golang/go
711ff943afc572c6b0e800aa1e73aaf336568c2d
e9d3b030ed6fe8380d9b0411ef06eff001769641
testing: add Output method to TB Updates #59928 Fixes #73937 Change-Id: Ibf7ec61758edccd245841c3acc9096563b44fcd2 Reviewed-on: https://go-review.googlesource.com/c/go/+/677875 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Jonathan Amsterdam <jba@google.com> Rev...
[ { "path": "api/go1.25.txt", "patch": "@@ -101,6 +101,7 @@ pkg testing, method (*F) Output() io.Writer #59928\n pkg testing, method (*T) Attr(string, string) #43936\n pkg testing, method (*T) Output() io.Writer #59928\n pkg testing, type TB interface, Attr(string, string) #43936\n+pkg testing, type TB interf...
2025-05-31T14:41:15
electron/electron
763bc62c7f1939b3fdc7a12301acb637d005afa5
abb71f53074dbb23f671c44a70118daeed61e240
chore: remove fix_add_check_for_sandbox_then_result.patch (#40633)
[ { "path": "patches/chromium/.patches", "patch": "@@ -66,7 +66,6 @@ fix_export_zlib_symbols.patch\n web_contents.patch\n webview_fullscreen.patch\n disable_unload_metrics.patch\n-fix_add_check_for_sandbox_then_result.patch\n extend_apply_webpreferences.patch\n build_libc_as_static_library.patch\n build_do_no...
2023-11-29T18:30:21
facebook/react
8090457c77573f3916df136d582d5f44040da043
4ddff7355f696ec693c5ce2bda4e7707020c3510
fix: add `react-server` condition for `react/jsx-dev-runtime` (#28921)
[ { "path": "packages/react/jsx-dev-runtime.react-server.js", "patch": "@@ -0,0 +1,10 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and 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+ * @flow\n+ */\n+...
2024-04-27T19:45:52
vercel/next.js
e21ac64cd01485c4951c305ae9654bf6fca3f7a7
532018c8cc1d76a1ee7d0f16d701e532f9039b36
Turbopack: use parallel execution helpers (#82667) <!-- 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 Contributors ...
[ { "path": "Cargo.lock", "patch": "@@ -9253,7 +9253,6 @@ dependencies = [\n \"parking_lot\",\n \"pot\",\n \"rand 0.9.0\",\n- \"rayon\",\n \"regex\",\n \"ringmap\",\n \"rstest\",\n@@ -9367,7 +9366,6 @@ dependencies = [\n \"mime\",\n \"notify\",\n \"parking_lot\",\n- \"rayon\",\n \"regex\",\n \"rste...
2025-08-20T23:35:15
golang/go
1947c4233a33953088468a23457f6779c34be2d1
8cd7f17248b9215530e9ce9ed7831fc24b5eeef7
runtime: set HeapGoal to zero when the GC is disabled When the GC is disabled, the tracer should emit a heap goal of 0. Not setting the heap goal to 0 causes an inaccurate NextGC value to be emmited. Fixes #63864 Change-Id: Iecceaca86c0a43c1cc4d9433f1f9bb736f01ccbc Reviewed-on: https://go-review.googlesource.com/c/g...
[ { "path": "src/runtime/traceruntime.go", "patch": "@@ -574,7 +574,9 @@ func (tl traceLocker) HeapAlloc(live uint64) {\n // HeapGoal reads the current heap goal and emits a HeapGoal event.\n func (tl traceLocker) HeapGoal() {\n \theapGoal := gcController.heapGoal()\n-\tif heapGoal == ^uint64(0) {\n+\t// The ...
2025-01-02T19:41:59
rust-lang/rust
515d05522c4c12f65d816684f11b5ad6fc5a0df7
115bfdbb35014162be380f061ee08691f2503601
Update compiler/rustc_borrowck/src/diagnostics/move_errors.rs Co-authored-by: Esteban Kuber <estebank@users.noreply.github.com>
[ { "path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs", "patch": "@@ -999,11 +999,13 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n if binds_to.len() == 1 {\n let place_desc = self.local_name(*local).map(|sym| format!(\"`{sym}`\"));\n \n- i...
2026-02-18T03:46:37
facebook/react
95e610da13e50c2cb92e003dd7dbfa4a8262bdd2
c4083616a232028588a2cbaa9ba8992481d1deb7
Add changelog for 18.3 (#28929) Fixes https://github.com/facebook/react/issues/28924
[ { "path": "CHANGELOG.md", "patch": "@@ -1,3 +1,24 @@\n+## 18.3.0 (April 25, 2024)\n+\n+This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.\n+\n+Read the [React 19 Upgrade Guide](https://react.dev/blog/2024/04/25/react-19-upgrade-guide) for ...
2024-04-26T16:45:08
golang/go
8cd7f17248b9215530e9ce9ed7831fc24b5eeef7
29782bd347a1c707b6804ea6ee7da3a70ba9fd4a
testing, testing/synctest: report correct duration after panics Report the correct wall-clock test duration after handling a panic in a synctest.Test bubble. Fixes #73852 Change-Id: I053262e5eac2dd9d5938b17c3093cbc3fa115a0d Reviewed-on: https://go-review.googlesource.com/c/go/+/676695 Auto-Submit: Damien Neil <dneil...
[ { "path": "src/testing/synctest/synctest.go", "patch": "@@ -273,13 +273,19 @@ import (\n // associated with the bubble.\n // - T.Run, T.Parallel, and T.Deadline must not be called.\n func Test(t *testing.T, f func(*testing.T)) {\n+\tvar ok bool\n \tsynctest.Run(func() {\n-\t\ttestingSynctestTest(t, f)...
2025-05-23T23:21:19
electron/electron
5c7579ab1ce1fba8aa5d29e2045cb43a0b465e2d
f0f027c06d1f06ceebefec2287273807632d61e0
chore: bump chromium to 121.0.6147.0 (main) (#40523) * chore: bump chromium in DEPS to 121.0.6128.0 * build: update patches * refactor: remove instrumentation from extensions code Ref: https://chromium-review.googlesource.com/c/chromium/src/+/5002404 * refactor: modernization of tabs_api Ref: https://ch...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '121.0.6116.0',\n+ '121.0.6147.0',\n 'node_version':\n 'v18.18.2',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2023-11-28T21:40:12
vercel/next.js
b7da0c5425fd97cc57101a17cd06392b2d4380ad
76ebbb9768e09de48b43898904d71095857e1ba7
Turbopack: add parallel execution helpers (#82666) <!-- 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 Contributors ...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/kv_backing_storage.rs", "patch": "@@ -410,64 +410,11 @@ impl<T: KeyValueDatabase + Send + Sync + 'static> BackingStorageSealed\n )?;\n }\n WriteBatch::Serial(batch) => {\n- let mut task_items_result = ...
2025-08-20T23:02:50
facebook/react
6db5f36aa739169266d385f6f5fb4d585ac055b8
2b2d30519991f0d956a37d149a3947cca6784ec1
[tests] Add fixtures showing HIR rewrite changes ghstack-source-id: 5e8b1680e95d112e1e5b2cb8c4e6c414360e0a77 Pull Request resolved: https://github.com/facebook/react-forget/pull/2900
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/align-scopes-within-nested-valueblock-in-array.expect.md", "patch": "@@ -0,0 +1,84 @@\n+\n+## Input\n+\n+```javascript\n+// @enableReactiveScopesInHIR:false\n+\n+import { Stringify, identity, makeArray, mutate } from \"sh...
2024-04-29T18:08:29
golang/go
29782bd347a1c707b6804ea6ee7da3a70ba9fd4a
78e86297f5cccb82a6a57081947fab8e8af32586
os: add implementation of fs.ReadLinkFS to *rootFS Fixes #73887 Change-Id: I43f3f4324d740b5381615bce864b7ec31415a635 Reviewed-on: https://go-review.googlesource.com/c/go/+/676135 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <dneil@google.com> Revie...
[ { "path": "src/os/root.go", "patch": "@@ -352,8 +352,8 @@ func splitPathInRoot(s string, prefix, suffix []string) (_ []string, suffixSep s\n \n // FS returns a file system (an fs.FS) for the tree of files in the root.\n //\n-// The result implements [io/fs.StatFS], [io/fs.ReadFileFS] and\n-// [io/fs.ReadDir...
2025-05-24T23:07:58
electron/electron
f0f027c06d1f06ceebefec2287273807632d61e0
58a21a3cd939dcbb7d4282575a4e943bf30165ad
fix: Use activateIgnoringOtherApps for non-panels (#40570) Use activateIgnoringOtherApps for non-panels
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -127,6 +127,10 @@ bool IsFramelessWindow(NSView* view) {\n return window && !window->has_frame();\n }\n \n+bool IsPanel(NSWindow* window) {\n+ return [window isKindOfClass:[NSPanel class]];\n+}\n+\n IMP original_set_frame_size = nullptr;\n IMP ...
2023-11-27T17:58:46
nodejs/node
22b4b7c626a175e58df0d6638f677461334d0fa1
4062b3fb4357a0e975d34a94c885d72796902271
doc: fix typos PR-URL: https://github.com/nodejs/node/pull/55066 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/crypto.md", "patch": "@@ -5968,7 +5968,7 @@ See the [list of SSL OP Flags][] for details.\n </tr>\n <tr>\n <td><code>ENGINE_METHOD_PKEY_METHS</code></td>\n- <td>Limit engine usage to PKEY_METHDS</td>\n+ <td>Limit engine usage to PKEY_METHS</td>\n </tr>\n <tr>\n <td><...
2024-09-29T13:15:15
vercel/next.js
76ebbb9768e09de48b43898904d71095857e1ba7
ae9261fba1112e8fa84d2bc57fc4d2aff625e46f
docs: add missing RLS step to Next.js tutorial (#82714) ## What This PR updates `examples/with-supabase/components/tutorial/fetch-data-steps.tsx` to include a missing step about enabling Row Level Security (RLS) and creating a simple read policy for the `notes` table. Fixes: #82218 ## Why Currently, the tutorial sho...
[ { "path": "examples/with-supabase/components/tutorial/fetch-data-steps.tsx", "patch": "@@ -13,6 +13,11 @@ values\n ('It was awesome!');\n `.trim();\n \n+const rls = `alter table notes enable row level security;\n+create policy \"Allow public read access\" on notes\n+for select\n+using (true);`.trim();\n+\...
2025-08-20T22:46:26
golang/go
9f3dd846e2ee6e8fcb2c673122d9d0c932e01b71
21b7e60c6b64dd3221ab5b95d164fb42492029e8
cmd/internal/obj/s390x: fix potential recursive String call This String method can potentially recurse infinitely, since %#x will apparently call String if the method exists. This isn't well documented, but cmd/vet will be updated soon to check this (when we update the vendored x/tools dependency) so cut off the recur...
[ { "path": "src/cmd/internal/obj/s390x/condition_code.go", "patch": "@@ -122,7 +122,7 @@ func (c CCMask) String() string {\n \t}\n \n \t// invalid\n-\treturn fmt.Sprintf(\"Invalid (%#x)\", c)\n+\treturn fmt.Sprintf(\"Invalid (%#x)\", uint8(c))\n }\n \n func (CCMask) CanBeAnSSAAux() {}", "additions": 1, ...
2025-05-29T19:04:08
facebook/react
1c7e34cdb623ac03f2d1373c5d533880792c148b
0a7f4427f13d70cd4cafe0388eb7d6b44ef1832e
Stop reporting errors on mutations of primitives (and associated false positives) ghstack-source-id: 4dc9b3c51953f8ed2184ebc5e438bc877959b5d0 Pull Request resolved: https://github.com/facebook/react-forget/pull/2903
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Globals.ts", "patch": "@@ -89,7 +89,7 @@ const TYPED_GLOBALS: Array<[string, BuiltInType]> = [\n restParam: null,\n returnType: { kind: \"Primitive\" },\n calleeEffect: Effect.Read,\n- returnValueKind: Valu...
2024-04-25T16:39:20
nodejs/node
4062b3fb4357a0e975d34a94c885d72796902271
e973c3e94be881ca751f05ee2eb4016354b91012
buffer: coerce extrema to int in `blob.slice` PR-URL: https://github.com/nodejs/node/pull/55141 Fixes: https://github.com/nodejs/node/issues/55139 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/blob.js", "patch": "@@ -54,6 +54,7 @@ const {\n lazyDOMException,\n } = require('internal/util');\n const { inspect } = require('internal/util/inspect');\n+const { convertToInt } = require('internal/webidl');\n \n const {\n codes: {\n@@ -239,6 +240,12 @@ class Blob {\n slice(st...
2024-09-29T09:51:10
electron/electron
e78ce826415b8d64e9cb2c3b40ba18eadb83f23d
1574cbf137e46f14ead2b9c980c4e30a4590c7df
fix: do not call `after()` `async_hook` for `asyncId` 0 (#40574) fix: do not call after() async_hook for asyncId 0
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -279,8 +279,11 @@ void ErrorMessageListener(v8::Local<v8::Message> message,\n // Analogous to node/lib/internal/process/execution.js#L176-L180\n if (env->async_hooks()->fields()[node::AsyncHooks::kAfter]) {\n while (env->async_hooks()->fi...
2023-11-22T16:37:40
vercel/next.js
ae9261fba1112e8fa84d2bc57fc4d2aff625e46f
808d711bcdfa1dd9d152fe03c5e57f355460b657
fix: avoid importing types that will be unused (#82856) See https://github.com/vercel/next.js/discussions/77721#discussioncomment-14167630
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -538,7 +538,23 @@ export function generateValidatorFile(\n }\n \n // Build import statement based on what's actually needed\n- const routeImports = ['AppRoutes', 'LayoutRoutes', 'ParamMap']\n+ const routeImports = []\n+\n+ ...
2025-08-20T22:27:34
facebook/react
0a7f4427f13d70cd4cafe0388eb7d6b44ef1832e
59e37b088b4f7c8711c90a9248701ab6a4c08a21
Fix invariant on mutable context values ghstack-source-id: cb105318bf66d876a546b1c52e28286839d30032 Pull Request resolved: https://github.com/facebook/react-forget/pull/2904
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts", "patch": "@@ -1640,17 +1640,6 @@ function inferBlock(\n const lvalue = instr.lvalue;\n lvalue.effect = Effect.ConditionallyMutate;\n const valueKind = state.kind(instrValue.place);\n- ...
2024-04-25T15:00:56
golang/go
21b7e60c6b64dd3221ab5b95d164fb42492029e8
555d425d177db7fa7123779d253aee42980cb8a3
runtime, testing/synctest: breaking bubble isolation with Cond is fatal sync.Cond.Wait is durably blocking. Waking a goroutine out of Cond.Wait from outside its bubble panics. Make this panic a fatal panic, since it leaves the notifyList in an inconsistent state. We could do some work to make this a recoverable panic...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -1228,3 +1228,20 @@ func TestFinalizerOrCleanupDeadlock(t *testing.T) {\n \t\t})\n \t}\n }\n+\n+func TestSynctestCondSignalFromNoBubble(t *testing.T) {\n+\tfor _, test := range []string{\n+\t\t\"SynctestCond/signal/no_bubble\",\n+\t\t\"SynctestCond/broadca...
2025-05-22T18:14:53
nodejs/node
e973c3e94be881ca751f05ee2eb4016354b91012
a5a946d8a5c8e9f871a93f000a56f0cd68116771
lib: validate signals with interface converter PR-URL: https://github.com/nodejs/node/pull/54965 Fixes: https://github.com/nodejs/node/issues/54962 Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Revi...
[ { "path": "lib/internal/abort_controller.js", "patch": "@@ -43,12 +43,11 @@ const {\n } = require('internal/errors');\n const {\n converters,\n+ createInterfaceConverter,\n createSequenceConverter,\n } = require('internal/webidl');\n \n const {\n- validateAbortSignal,\n- validateAbortSignalArray,\n ...
2024-09-17T11:48:37
vercel/next.js
e785643c41c298b9504192200220e68daf4241b4
cad24f4b7ca79e1474336d499d65528d39c4956e
fix: update validation return types (#82854) I updated the return type of API routes and route handlers from ```ts Promise<Response> | Response | Promise<void> | void ``` to ```ts Promise<Response | void> | Response | void ``` which fixes #82842.
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -508,21 +508,21 @@ export function generateValidatorFile(\n \n if (appRouteHandlerValidations) {\n typeDefinitions += `type RouteHandlerConfig<Route extends AppRouteHandlerRoutes = AppRouteHandlerRoutes> = {\n- GET?: (requ...
2025-08-20T21:58:52
electron/electron
1574cbf137e46f14ead2b9c980c4e30a4590c7df
3340bc1bf938cc821da1e2f91b49cdba46cb29e1
fix: restore performance of macOS window resizing (#40577)
[ { "path": "patches/chromium/.patches", "patch": "@@ -128,3 +128,4 @@ revert_remove_the_allowaggressivethrottlingwithwebsocket_feature.patch\n fix_activate_background_material_on_windows.patch\n feat_allow_passing_of_objecttemplate_to_objecttemplatebuilder.patch\n chore_remove_check_is_test_on_script_injecti...
2023-11-22T07:58:57
facebook/react
a44559b0a5f6fc01f9963d2f3b216a2dd7179fd4
f196e1f7030a5ed4597d4095b6116cb08e6fdaa1
[hir] Re-implement mergeOverlappingReactiveScopes (+ bugfix) ghstack-source-id: 06d49edffe5ae3c31eb6ef642078752c056c617c Pull Request resolved: https://github.com/facebook/react-forget/pull/2852
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -18,6 +18,7 @@ import {\n assertValidMutableRanges,\n lower,\n mergeConsecutiveBlocks,\n+ mergeOverlappingReactiveScopesHIR,\n pruneUnusedLabelsHIR,\n } from \"../HIR\";\n import {\n@@ -252,6 +253,13 @@...
2024-04-26T16:40:35
golang/go
555d425d177db7fa7123779d253aee42980cb8a3
f14f3aae1c3dc382c15d9c3174a037b7d3595009
testing, testing/synctest: write bubble errors to parent test log Ensure that log messages written to the testing.T created by synctest.Test appear in the test output when a test fails. Fixes #73902 Change-Id: Ie97f5efe54eb003e6c0a5394c2def4cac1520ecb Reviewed-on: https://go-review.googlesource.com/c/go/+/676995 Rev...
[ { "path": "src/testing/synctest/synctest_test.go", "patch": "@@ -22,37 +22,56 @@ func TestSuccess(t *testing.T) {\n }\n \n func TestFatal(t *testing.T) {\n-\trunTest(t, func() {\n+\trunTest(t, nil, func() {\n \t\tsynctest.Test(t, func(t *testing.T) {\n \t\t\tt.Fatal(\"fatal\")\n \t\t})\n-\t}, `^=== RUN Te...
2025-05-28T17:55:26
nodejs/node
a5a946d8a5c8e9f871a93f000a56f0cd68116771
27dab9d916697ea851ae54a648e39f7e67223ee6
lib: implement interface converter in webidl PR-URL: https://github.com/nodejs/node/pull/54965 Fixes: https://github.com/nodejs/node/issues/54962 Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Review...
[ { "path": "lib/internal/webidl.js", "patch": "@@ -12,6 +12,7 @@ const {\n NumberMAX_SAFE_INTEGER,\n NumberMIN_SAFE_INTEGER,\n ObjectAssign,\n+ ObjectPrototypeIsPrototypeOf,\n SafeSet,\n String,\n SymbolIterator,\n@@ -20,6 +21,7 @@ const {\n \n const {\n codes: {\n+ ERR_INVALID_ARG_TYPE,\n ...
2024-09-17T11:11:02
vercel/next.js
cad24f4b7ca79e1474336d499d65528d39c4956e
b5b272062fc3599798ff11515b746ee1f236158e
fix: update the config.api.responseLimit type (#82852) `config.api.responseLimit` can also be [set to `false`](https://github.com/vercel/next.js/issues/82842#issuecomment-3207638164). Because of the limitations of type inference on JS files, we need to set the type to `boolean`. See https://github.com/vercel/next.js/...
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -526,7 +526,7 @@ export function generateValidatorFile(\n config?: {\n api?: {\n bodyParser?: boolean | { sizeLimit?: string }\n- responseLimit?: string | number\n+ responseLimit?: string | number | boolean\...
2025-08-20T21:58:42
electron/electron
3340bc1bf938cc821da1e2f91b49cdba46cb29e1
2029224a845bb0751fb8b092ab28c109821e1715
fix: maximized window bounds when toggle setResizable (#40503)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -682,11 +682,16 @@ void NativeWindowViews::Unmaximize() {\n if (transparent()) {\n SetBounds(restore_bounds_, false);\n NotifyWindowUnmaximize();\n+ UpdateThickFrame();\n return;\n }\n #endif\n \n widget()->Res...
2023-11-22T06:21:18
facebook/react
f196e1f7030a5ed4597d4095b6116cb08e6fdaa1
f22dd62ab8e2056b89fb29193d0ed30a98fd5ff4
[hir][patch] Fix small bug in duplicate scope merging logic ghstack-source-id: 98966dd4c2b264329acad077427febc2a34a5edc Pull Request resolved: https://github.com/facebook/react-forget/pull/2906
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/AlignReactiveScopesToBlockScopesHIR.ts", "patch": "@@ -241,16 +241,6 @@ export function alignReactiveScopesToBlockScopesHIR(fn: HIRFunction): void {\n const joinedScopes: DisjointSet<ReactiveScope> =\n mergeOverlappingScopes(roo...
2024-04-25T15:07:22
rust-lang/rust
ad5108eaad22d9a23100e1faa03dafc7f1f2deea
dfbfbf785f46d10103e80735a9ccb4765bd6dfe2
tail calls: fix copying non-scalar arguments to callee
[ { "path": "compiler/rustc_const_eval/src/const_eval/machine.rs", "patch": "@@ -236,7 +236,7 @@ impl<'tcx> CompileTimeInterpCx<'tcx> {\n if self.tcx.is_lang_item(def_id, LangItem::PanicDisplay)\n || self.tcx.is_lang_item(def_id, LangItem::BeginPanic)\n {\n- let args = s...
2025-12-28T23:54:17
golang/go
4878b4471bf1267a8f87b40ed49b36ab82b79d18
7b4d065267aec8f899a5c5423c1ac501d31807cc
slices: document and test nilness behavior of all functions This change documents the current nilness behavior of all functions in the package, and asserts each with a test. There is no change to behavior, but the postcondition is strengthened, so this may require a proposal. Fixes #73604 Fixes #73048 Change-Id: Ie...
[ { "path": "src/slices/iter.go", "patch": "@@ -46,6 +46,7 @@ func Values[Slice ~[]E, E any](s Slice) iter.Seq[E] {\n \n // AppendSeq appends the values from seq to the slice and\n // returns the extended slice.\n+// If seq is empty, the result preserves the nilness of s.\n func AppendSeq[Slice ~[]E, E any](s...
2025-05-12T17:16:23
nodejs/node
e1d8b4f038f05275fe2eb3189e79ec41a74c4782
6d1cd506b5ed2ce7037726e15146f48768256ee2
assert: show the diff when deep comparing data with a custom message Fixes: https://github.com/nodejs/node/issues/48465 PR-URL: https://github.com/nodejs/node/pull/54759 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.c...
[ { "path": "lib/internal/assert/assertion_error.js", "patch": "@@ -72,7 +72,11 @@ function inspectValue(val) {\n );\n }\n \n-function createErrDiff(actual, expected, operator) {\n+function getErrorMessage(operator, message) {\n+ return message || kReadableOperator[operator];\n+}\n+\n+function createErrDif...
2024-09-04T09:28:57
vercel/next.js
5033dcb9d3820317c7a79326228fe5834a68d5b0
116770b8e4b69a6340af3b4b626007626c584925
Turbopack: run unit tests in multi threaded runtime (#82665) ### What? run unit tests in multi threaded runtime fix cache hit tracking
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -1267,7 +1267,6 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n return task_id;\n }\n \n- self.track_cache_miss(&task_type);\n let tx = self\n .should_restore()\n ...
2025-08-20T21:23:04
electron/electron
f3676ff975b4696ff334f00ea4d81a216360ed1f
0b5fceb50ea18102411950106037636834e0f7d2
docs: wording in IPC tutorial docs (#40555) fix: wording in IPC tutorial docs
[ { "path": "docs/tutorial/ipc.md", "patch": "@@ -280,8 +280,8 @@ selected file path in the `#filePath` element.\n ### Note: legacy approaches\n \n The `ipcRenderer.invoke` API was added in Electron 7 as a developer-friendly way to tackle two-way\n-IPC from the renderer process. However, there exist a couple ...
2023-11-22T06:19:54
facebook/react
c516cefc7dbb717f50bcb53de83591b1ef9d93ac
cb151849e13f46ec64570519cb93d5939fb60cab
warn -> error for Test Renderer deprecation (#28904) We use `console.error` for deprecations. `console.warn` is for less critical issues, like performance anti-patterns.
[ { "path": "packages/internal-test-utils/shouldIgnoreConsoleError.js", "patch": "@@ -23,7 +23,8 @@ module.exports = function shouldIgnoreConsoleError(format, args) {\n ) !== -1 ||\n format.indexOf(\n 'ReactDOM.hydrate has not been supported since React 18',\n- ) !== -1\n+ ...
2024-04-24T18:54:39
rust-lang/rust
195b849ea7367ba36c3a68a9689381896b499fcd
d1a11b670b617f1370f7b1cdf86e225a4e070f15
remove the explicit error for old `rental` versions
[ { "path": "compiler/rustc_expand/src/base.rs", "patch": "@@ -2,12 +2,11 @@ use std::any::Any;\n use std::default::Default;\n use std::iter;\n use std::path::Component::Prefix;\n-use std::path::{Path, PathBuf};\n+use std::path::PathBuf;\n use std::rc::Rc;\n use std::sync::Arc;\n \n use rustc_ast::attr::Marke...
2026-02-17T12:28:23
golang/go
3b77085b40bf0d53528d6852d07c00c81021c855
f8c51b1a6c3d6ebfdbeab3c81d4157aefe0e8b71
runtime: increment updatemaxprocs metric only when disabled The updatemaxprocs metric logic is currently backwards. We only increment the metric when we update GOMAXPROCS, but that only occurs if updatemaxprocs is enabled. Instead, the metric is supposed to increment when updatemaxprocs is disabled and there would be...
[ { "path": "src/runtime/proc.go", "patch": "@@ -6567,6 +6567,22 @@ var (\n //\n // This is based on forcegchelper.\n func defaultGOMAXPROCSUpdateEnable() {\n+\tif debug.updatemaxprocs == 0 {\n+\t\t// Unconditionally increment the metric when updates are disabled.\n+\t\t//\n+\t\t// It would be more descriptiv...
2025-05-28T18:34:52
nodejs/node
6d1cd506b5ed2ce7037726e15146f48768256ee2
e32521a7b9a800728b2ed5337070628043a3d418
doc: remove outdated https import reference PR-URL: https://github.com/nodejs/node/pull/55111 Fixes: https://github.com/nodejs/node/issues/55091 Refs: https://github.com/nodejs/node/pull/53822 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Ulises ...
[ { "path": "doc/api/module.md", "patch": "@@ -869,9 +869,6 @@ behaviors.\n \n #### Import from HTTPS\n \n-In current Node.js, specifiers starting with `https://` are experimental (see\n-\\[HTTPS and HTTP imports]\\[]).\n-\n The hook below registers hooks to enable rudimentary support for such\n specifiers. W...
2024-09-28T13:59:31