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
3b456ff42137df2b89295ede29c915d43c10b538
d704ef76068eb7da15520b08dc7df98f45f85ffa
crypto/x509,ecoding/asn1: better handling of weird encodings For various cursed reasons we need to support the BMPString and T61String ASN.1 string encodings. These types use the defunct UCS-2 and T.61 character encodings respectively. This change rejects some characters when decoding BMPStrings which are not valid i...
[ { "path": "src/crypto/x509/parser.go", "patch": "@@ -60,7 +60,21 @@ func isPrintable(b byte) bool {\n func parseASN1String(tag cryptobyte_asn1.Tag, value []byte) (string, error) {\n \tswitch tag {\n \tcase cryptobyte_asn1.T61String:\n-\t\treturn string(value), nil\n+\t\t// T.61 is a defunct ITU 8-bit charac...
2025-02-21T01:05:04
nodejs/node
2dea6a4520b8f235465f638e25ed89cedfc8bf81
db09f62c7987c2ce5496811135f6194b40456616
test: fix test-http-server-keepalive-req-gc This changes adds a second explicit gc call in the test. Without this call, the test relies on gc eventually happening based, since the first call doesn't free the object. Relying on gc to eventually happen prevents changing GC heuristics unrelated to this test. The gc call ...
[ { "path": "test/parallel/test-http-server-keepalive-req-gc.js", "patch": "@@ -14,9 +14,10 @@ const server = createServer(common.mustCall((req, res) => {\n onGC(req, { ongc: common.mustCall(() => { server.close(); }) });\n req.resume();\n req.on('end', common.mustCall(() => {\n- setImmediate(() => {...
2024-05-28T21:47:19
electron/electron
77bd80dfb21e0d4419eff093e5232dd8fb05432f
0d3aee26b9e653e27ae6fe9d28586fd0a87fe2a7
fix: fallback to X11 capturer if pipewire fails on Wayland (#37511) * fix: fallback to x11 desktop capturer on Wayland * fix: sanitize window/screen capturer inputs * chore: clean up patch description
[ { "path": "patches/config.json", "patch": "@@ -21,5 +21,7 @@\n \n \"src/electron/patches/Mantle\": \"src/third_party/squirrel.mac/vendor/Mantle\",\n \n- \"src/electron/patches/ReactiveObjC\": \"src/third_party/squirrel.mac/vendor/ReactiveObjC\"\n+ \"src/electron/patches/ReactiveObjC\": \"src/third_party...
2023-03-07T21:59:06
facebook/react
c80f0f022c135704e955d36516bf81d071f40ba6
7ca3b004aee982ee637dc06ccb5fe890c9f6e5ba
useContext returns frozen values This was an oversight in the original definition of useContext (oops my bad). Context values are owned by React and should not be modified. I found this because some cases of existing useMemo were not preserved (tested via the validatePreserveExistingManualMemo flag) due to functio...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Globals.ts", "patch": "@@ -5,7 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { Effect, ValueKind } from \"./HIR\";\n+import { Effect, ValueKind, ValueReason } from \"./HIR\";\n import {\n BUILTIN_SHAPES...
2024-01-11T00:12:17
vercel/next.js
33477b7e64fbfaa5f59e833a4cc161cf0793ede6
c1f4e3e759ed6eb5f27a028fc547f513a7386d92
[segment-explorer] display the builtin conventions (#80961) Track built-in conventions in segment explorer. The default `global-not-found.js` and `global-error.js` will be displayed. Their style will be different to the others, we'll follow up in the later PRs. Closes NEXT-4576
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -931,6 +931,14 @@ async fn directory_tree_to_loader_tree_internal(\n .await?,\n );\n }\n+ if modules.global_error.is_none() {\n+ modules.global_error = Some(\n+ get_next_p...
2025-06-27T14:41:07
golang/go
6114b69e0c92961712a459b691d4bde3f09e3b40
59afdd3ed0ace5c5dc34f8b4cf22edc329e186f7
crypto/tls: relax native FIPS 140-3 mode We are going to stick to BoringSSL's policy for Go+BoringCrypto, but when using the native FIPS 140-3 module we can allow Ed25519, ML-KEM, and P-521. NIST SP 800-52r2 is stricter, but it only applies to some entities, so they can restrict the profile with Config. Fixes #71757...
[ { "path": "doc/next/6-stdlib/99-minor/crypto/tls/fips.md", "patch": "@@ -1,2 +1,2 @@\n When [FIPS 140-3 mode](/doc/security/fips140) is enabled, Extended Master Secret\n-is now required in TLS 1.2.\n+is now required in TLS 1.2, and Ed25519 and X25519MLKEM768 are now allowed.", "additions": 1, "delet...
2025-02-19T11:29:31
nodejs/node
ce531af0c27acf29dd05ab2fac19b4af88f8780d
83d0cfec0a1e8c065a4e5e4cc87d1b48ac6c03c4
test: update TLS tests for OpenSSL 3.2 Update the following TLS tests to account for error code changes in OpenSSL 3.2 and later. - `parallel/test-tls-empty-sni-context` - `parallel/test-tls-psk-circuit` PR-URL: https://github.com/nodejs/node/pull/53384 Refs: https://github.com/nodejs/node/issues/53382 Refs: https://...
[ { "path": "test/common/index.js", "patch": "@@ -63,6 +63,9 @@ const hasOpenSSL3 = hasCrypto &&\n const hasOpenSSL31 = hasCrypto &&\n require('crypto').constants.OPENSSL_VERSION_NUMBER >= 0x30100000;\n \n+const hasOpenSSL32 = hasCrypto &&\n+ require('crypto').constants.OPENSSL_VERSION_NUMBER >= 0x3020...
2024-06-09T16:50:08
facebook/react
9c08b96a788196e6ed42c9e6c934b0296a8bcd99
31603f19d7114b751e89846d6eec73a8fbcdae71
Bump follow-redirects from 1.7.0 to 1.15.4 (#27909) Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.7.0 to 1.15.4. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/follow-redirects/follow-redirects/commit/65858205e59f1e23c9bf173348a7a7cbb8ac47f5"><c...
[ { "path": "yarn.lock", "patch": "@@ -6082,13 +6082,6 @@ debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:\n dependencies:\n ms \"^2.1.1\"\n \n-debug@^3.2.6:\n- version \"3.2.6\"\n- resolved \"https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b\"\n- integri...
2024-01-09T17:05:06
electron/electron
0d3aee26b9e653e27ae6fe9d28586fd0a87fe2a7
efde7a140bc48e0e3e08404f41f6179c26858ce4
docs: fixup WebUSB fiddle (#37455) docs: fixup webusb fiddle
[ { "path": "docs/fiddles/features/web-usb/main.js", "patch": "@@ -1,5 +1,4 @@\n const {app, BrowserWindow} = require('electron')\n-const e = require('express')\n const path = require('path')\n \n function createWindow () {\n@@ -44,7 +43,6 @@ function createWindow () {\n }\n })\n \n-\n mainWindow.webC...
2023-03-07T20:36:31
vercel/next.js
c1f4e3e759ed6eb5f27a028fc547f513a7386d92
c910be03ee262e75187d9c477e71b9d24024b1f7
Turbopack: fix sourcemaps of scopehoisted comments (#80987) There was a bug in the source mappings for scope hoisted comments. They actually contained invalid mappings, which was only caught by the invalid mapping landing exactly on an invalid multibyte character boundary, which triggered a debug assertion: ![Bildsch...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -2416,6 +2416,21 @@ enum CodeGenResultCommentsConsumable<'a> {\n unsafe impl Send for CodeGenResultComments {}\n unsafe impl Sync for CodeGenResultComments {}\n \n+/// All BytePos in Spans in the AST are encoded correctly in [`merge_...
2025-06-27T14:09:48
golang/go
0f5d86c5a01fbb70ffa1a59049b0a7cf4fcbcc0a
6bd5741a4c600ee9a48dfa5244f0c4116b718404
cmd/go: permit additional cflags when compiling In CL 475375 the Go command started to generate the "preferlinkext" token file for "strange/dangerous" compiler flags. This serves as a hint to the Go linker whether to call the external linker or not. Permit compiler flag used by the hermetic_cc_toolchain bzlmod. As a...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -90,6 +90,7 @@ var validCompilerFlags = []*lazyregexp.Regexp{\n \tre(`-f(no-)?use-linker-plugin`), // safe if -B is not used; we don't permit -B\n \tre(`-f(no-)?visibility-inlines-hidden`),\n \tre(`-fsanitize=(.+)`),\n+\tre(`-fsanitize-undefined...
2023-07-09T14:24:12
nodejs/node
50695e5de14ccd8255537972181bbc9a1f44368e
5a446ccf3750b9bb649c25bd7a71577b87ceae6c
stream: prevent stream unexpected pause when highWaterMark set to 0 Co-authored-by: Robert Nagy <ronagy@icloud.com> PR-URL: https://github.com/nodejs/node/pull/53261 Fixes: https://github.com/nodejs/node/issues/51930 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gma...
[ { "path": "lib/internal/streams/writable.js", "patch": "@@ -565,7 +565,7 @@ function writeOrBuffer(stream, state, chunk, encoding, callback) {\n state[kState] &= ~kSync;\n }\n \n- const ret = state.length < state.highWaterMark;\n+ const ret = state.length < state.highWaterMark || state.length === 0;...
2024-06-08T02:04:40
electron/electron
efde7a140bc48e0e3e08404f41f6179c26858ce4
4e85bb921bef97a5bedb4188d0e360ec4a0b70c0
fix: WebUSB on ARM64 macs (#37441)
[ { "path": "patches/chromium/.patches", "patch": "@@ -126,3 +126,4 @@ chore_patch_out_partition_attribute_dcheck_for_webviews.patch\n expose_v8initializer_codegenerationcheckcallbackinmainthread.patch\n chore_patch_out_profile_methods_in_profile_selections_cc.patch\n fix_x11_window_restore_minimized_maximize...
2023-03-07T17:40:40
facebook/react
31603f19d7114b751e89846d6eec73a8fbcdae71
531c7ad21e8d48badab910deda6154e3d3977d91
Bump follow-redirects from 1.14.0 to 1.15.4 in /fixtures/concurrent/time-slicing (#27907) Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.0 to 1.15.4. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/follow-redirects/follow-redirects/commit/65858...
[ { "path": "fixtures/concurrent/time-slicing/yarn.lock", "patch": "@@ -3372,9 +3372,9 @@ flatten@^1.0.2:\n integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==\n \n follow-redirects@^1.0.0:\n- version \"1.14.0\"\n- resolved \"https://registry.yarnpkg.c...
2024-01-09T16:05:08
vercel/next.js
c910be03ee262e75187d9c477e71b9d24024b1f7
345d4d4f25ab7ddb832d196dce00acb5271318d2
Use snapshots to verify error stack traces for dynamic validation errors (#80946) For now, this is just documenting the current state of affairs with regards to how we print dynamic validation errors during prerendering. Previously, the tests were run with and without `experimental.serverMinification`. Now, we're r...
[ { "path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.platform-dynamic.test.ts", "patch": "@@ -1,94 +1,119 @@\n import { nextTestSetup } from 'e2e-utils'\n+import { getPrerenderOutput } from './utils'\n \n-import { createExpectError } from './utils'\n+describe.each([\n+ { inDebugMode: true, name:...
2025-06-27T12:42:13
nodejs/node
5a446ccf3750b9bb649c25bd7a71577b87ceae6c
d6921500cc5ffed898252133e2e6be41d92d0205
build: fix spacing before NINJA_ARGS PR-URL: https://github.com/nodejs/node/pull/53181 Fixes: https://github.com/nodejs/node/issues/53176 Refs: https://github.com/nodejs/node/issues/53176 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <l...
[ { "path": "Makefile", "patch": "@@ -147,7 +147,7 @@ ifdef JOBS\n \tNINJA_ARGS := $(NINJA_ARGS) -j$(JOBS)\n else\n \tIMMEDIATE_NINJA_ARGS := $(NINJA_ARGS)\n-\tNINJA_ARGS = $(IMMEDIATE_NINJA_ARGS) $(filter -j%,$(MAKEFLAGS))\n+\tNINJA_ARGS = $(filter -j%,$(MAKEFLAGS))$(IMMEDIATE_NINJA_ARGS)\n endif\n $(NODE_EX...
2024-06-08T01:08:22
electron/electron
c8f715f9a1c116ccb3796e3290fea89989cc0f6e
829fb4f586ee4f0c5b6bbbc6ae9c9853a710eba6
fix: Showing the about panel is async on all platforms (#37440) * fix: about panel is a base::Value::Dict * nix this test for a diff PR * what if the about dialog was not blocking * add this test back in * document synchronicity * github editor is a fan of spaces
[ { "path": "docs/api/app.md", "patch": "@@ -1357,7 +1357,7 @@ This API must be called after the `ready` event is emitted.\n \n ### `app.showAboutPanel()`\n \n-Show the app's about panel options. These options can be overridden with `app.setAboutPanelOptions(options)`.\n+Show the app's about panel options. Th...
2023-03-06T14:46:35
golang/go
6bd5741a4c600ee9a48dfa5244f0c4116b718404
fbdd994166007349920592822e659d98b2d94ab6
crypto/tls: add ConnectionState.CurveID This required adding a new field to SessionState for TLS 1.0–1.2, since the key exchange is not repeated on resumption. The additional field is unfortunately not backwards compatible because current Go versions check that the encoding has no extra data at the end, but will cause...
[ { "path": "api/next/67516.txt", "patch": "@@ -0,0 +1 @@\n+pkg crypto/tls, type ConnectionState struct, CurveID CurveID #67516", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/crypto/tls/67516.md", "patch": "@@ -0,0 +1,2 @@\n+The new ...
2025-02-27T13:01:13
facebook/react
531c7ad21e8d48badab910deda6154e3d3977d91
f9dddcbbb1c0b73f974e78b9488927b778630682
Bump follow-redirects from 1.13.3 to 1.15.4 in /fixtures/ssr (#27906) Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.13.3 to 1.15.4. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/follow-redirects/follow-redirects/commit/65858205e59f1e23c9bf17334...
[ { "path": "fixtures/ssr/yarn.lock", "patch": "@@ -2771,9 +2771,9 @@ flatten@^1.0.2:\n integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==\n \n follow-redirects@^1.0.0:\n- version \"1.13.3\"\n- resolved \"https://registry.yarnpkg.com/follow-redirects/...
2024-01-09T16:04:58
vercel/next.js
345d4d4f25ab7ddb832d196dce00acb5271318d2
3e170746b2e70cd9c0cdd27a06c7aaf3a80fc58e
Use proper reexports in entry-base.ts (#80988) Purely a cosmetic change I noticed while debugging a Turbopack bug (but unrelated to that)
[ { "path": "packages/next/src/server/app-render/entry-base.ts", "patch": "@@ -10,41 +10,45 @@ export {\n // eslint-disable-next-line import/no-extraneous-dependencies\n export { unstable_prerender as prerender } from 'react-server-dom-webpack/static.edge'\n \n-import LayoutRouter from '../../client/component...
2025-06-27T11:10:41
rust-lang/rust
bcde3fc78018524e70284166f4b712e4f73ba9a3
035b01b794602d5861daa43ac792f372f8981ed7
fix refining_impl_trait suggestion with return_type_notation
[ { "path": "compiler/rustc_hir_analysis/src/check/compare_impl_item/refine.rs", "patch": "@@ -6,6 +6,7 @@ use rustc_infer::infer::TyCtxtInferExt;\n use rustc_lint_defs::builtin::{REFINING_IMPL_TRAIT_INTERNAL, REFINING_IMPL_TRAIT_REACHABLE};\n use rustc_middle::span_bug;\n use rustc_middle::traits::Obligation...
2026-01-27T14:13:42
nodejs/node
390740460ebff37395a041fbf85ff3ebcf86b5d1
5731e2b3460c02971c2d32865e17519113a95847
doc: fix mistakes in the module `load` hook api PR-URL: https://github.com/nodejs/node/pull/53349 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -601,12 +601,12 @@ changes:\n * `importAttributes` {Object}\n * `nextLoad` {Function} The subsequent `load` hook in the chain, or the\n Node.js default `load` hook after the last user-supplied `load` hook\n- * `specifier` {string}\n+ * `url` {string}\n * `...
2024-06-07T22:03:07
electron/electron
829fb4f586ee4f0c5b6bbbc6ae9c9853a710eba6
17ccb3c6ecca1b16fb3e10504ffe0135b4e1794c
fix: don't double-log unhandled rejections (#37464)
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -279,7 +279,7 @@ void ElectronBrowserMainParts::PostEarlyInitialization() {\n env->set_trace_sync_io(env->options()->trace_sync_io);\n \n // We do not want to crash the main process on unhandled rejections.\n- env->options()->unhand...
2023-03-06T10:04:43
facebook/react
f9dddcbbb1c0b73f974e78b9488927b778630682
f1039be4a48384e7e4b0a87d4d92c48e900053b9
[Fizz] Fix Client Render after Postpone (#27905) If we end up client rendering a boundary due to an error after we have already injected a postponed hole in that boundary we'll end up trying to target a missing segment. Since we never insert segments for an already errored boundary into the HTML. Normally an errore...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -7178,6 +7178,141 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ // @gate enablePostpone\n+ it('can client render a boundary after having already postponed', async () => {\n+ let prerendering = true;...
2024-01-09T04:52:33
golang/go
8cdef129fb078a118c3b5032ea7e0b103bf61995
b143c981693a0f405f16eade1cccf4933fde8e21
cmd/link: only check PIE size difference when the linkmode is the same Currently we check the size difference between non-PIE and PIE binaries without specifying a linkmode (and that is presumed to be internal). However, on some platforms (like openbsd/arm64), the use of -buildmode=pie results in external linking. Ens...
[ { "path": "src/cmd/link/elf_test.go", "patch": "@@ -357,16 +357,14 @@ func TestPIESize(t *testing.T) {\n \t\t}\n \t}\n \n-\tfor _, external := range []bool{false, true} {\n-\t\texternal := external\n-\n-\t\tname := \"TestPieSize-\"\n-\t\tif external {\n-\t\t\tname += \"external\"\n-\t\t} else {\n-\t\t\tname...
2025-03-12T13:39:27
vercel/next.js
3e170746b2e70cd9c0cdd27a06c7aaf3a80fc58e
08aad0c425b70086df238832f8340cc7000e3a33
[devtools] polish icon and label color (#80976) * In devtool panel the icons should be gray-1000 Closes NEXT-4584 ![image](https://github.com/user-attachments/assets/5eba7071-706c-4c64-9ac4-f86fe8457296) * In segment explorer the page label color should be -900 Closes NEXT-4581 ![image](https://github.com/u...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-tab/issues-tab/issues-tab-sidebar.tsx", "patch": "@@ -18,6 +18,10 @@ export function IssuesTabSidebar({\n activeIdx: number\n setActiveIndex: (idx: number) => void\n }) {\n+ if (runtimeErrors.length === 0) {...
2025-06-27T10:58:42
electron/electron
76c825d6193e6da540b64190ff2d2298d53da5ea
692876c73740d039ac840c91c719f7e9cf3b7e76
fix: draggable regions on MAS (#37466)
[ { "path": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -11,6 +11,9 @@\n #include \"shell/browser/ui/cocoa/root_view_mac.h\"\n #include \"ui/base/cocoa/window_size_constants.h\"\n \n+#import <objc/message.h>\n+#import <objc/runtime.h>\n+\n namespace electron {\n \n int ScopedDisableResize::di...
2023-03-02T19:21:51
golang/go
d729053edffdfb17ee947cee8af0d7edc45f6111
a68bf75d3402412a1946fe1df67f57ca923f1507
mime/multipart: add helper to build content-disposition header contents This PR adds an helper FileContentDisposition that builds multipart Content-Disposition header contents with field name and file name, escaping quotes and escape characters. The function is then called in the related helper CreateFormFile. The ...
[ { "path": "api/next/46771.txt", "patch": "@@ -0,0 +1 @@\n+pkg mime/multipart, func FileContentDisposition(string, string) string #46771", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/mime/multipart/46771.md", "patch": "@@ -0,0 +1,2...
2025-03-12T21:40:12
nodejs/node
6ed93b4d69cd43ecbe87ce267afe9ae3b1980413
0289e859ef1749751f3a6504a5e3a1a7596a0a92
lib: expose global CloseEvent This PR adds `CloseEvent` as a global, which can be disabled via the --no-experimental-websocket flag. ```js const ws = new WebSocket('...') ws.addEventListener('close', (event) => { assert(event instanceof CloseEvent) }) ``` Fixes: https://github.com/nodejs/node/issues/50275 PR-URL...
[ { "path": "doc/api/globals.md", "patch": "@@ -322,6 +322,19 @@ added: v0.0.1\n \n [`clearTimeout`][] is described in the [timers][] section.\n \n+## `CloseEvent`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+<!-- type=global -->\n+\n+The `CloseEvent` class. See [`CloseEvent`][] for more details.\n+\n+A brows...
2024-06-07T17:54:28
vercel/next.js
08aad0c425b70086df238832f8340cc7000e3a33
5d94c8063ec4ff22069db999394ab72d802793ce
Turbopack: fix codegen of directives (#80895) Closes PACK-4894 Previously, directives in the input weren't handled correctly, this was the output: The `use strict` doesn't do anything here because directives only have an effect at the top of modules and at the top of functions. ```js "[project]/turbopack/crates...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs", "patch": "@@ -7,7 +7,7 @@ use swc_core::{\n ecma::{\n ast::*,\n atoms::{Atom, atom},\n- utils::find_pat_ids,\n+ utils::{IsDirective, find_pat_ids},\n visit::{Visit, VisitWith},\n },\n };\...
2025-06-27T10:10:11
electron/electron
692876c73740d039ac840c91c719f7e9cf3b7e76
c3f06ef037cb2eaf649d963f13d27265a68d7018
docs(clipboard): fix an issue of demo code (#37438) doc(clipboard): fix an issue of demo code
[ { "path": "docs/api/clipboard.md", "patch": "@@ -226,7 +226,7 @@ clipboard.writeBuffer('public/utf8-plain-text', buffer)\n \n const ret = clipboard.readBuffer('public/utf8-plain-text')\n \n-console.log(buffer.equals(out))\n+console.log(buffer.equals(ret))\n // true\n ```\n ", "additions": 1, "deleti...
2023-03-02T11:24:59
golang/go
a68bf75d3402412a1946fe1df67f57ca923f1507
485480faaac82e4179f7b56c1c370020157f25a8
cmd/go: don't write own toolchain line when updating go line The Go command had a behavior of writing its own toolchain name when updating the go line in a go.mod (for example when a user runs go get go@version). This behavior was often undesirable and the toolchain line was often removed by users before checking in g...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -745,34 +745,25 @@ func UpdateWorkGoVersion(wf *modfile.WorkFile, goVers string) (changed bool) {\n \n \twf.AddGoStmt(goVers)\n \n-\t// We wrote a new go line. For reproducibility,\n-\t// if the toolchain running right now is newer than the new t...
2025-03-10T17:32:23
nodejs/node
2740cd4fec4a8ac57d3b4f51daefd8496c622994
673511f3bf5c43d3e6ac0e377e0727c422c0c6fc
lib: fix timer leak PR-URL: https://github.com/nodejs/node/pull/53337 Fixes: https://github.com/nodejs/node/issues/53335 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Feng Yu <F3n67u@outlook.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
[ { "path": "lib/internal/timers.js", "patch": "@@ -152,6 +152,11 @@ const timerListQueue = new PriorityQueue(compareTimersLists, setPosition);\n // - value = linked list\n const timerListMap = { __proto__: null };\n \n+// This stores all the known timer async ids to allow users to clearTimeout and\n+// clear...
2024-06-07T15:51:44
electron/electron
c3f06ef037cb2eaf649d963f13d27265a68d7018
9b20b3a722a7b807c161813cf2b616e74aee660d
fix: DCHECK in MessageSync in rare cases (#37439)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1857,22 +1857,23 @@ class ReplyChannel : public gin::Wrappable<ReplyChannel> {\n }\n const char* GetTypeName() override { return \"ReplyChannel\"; }\n \n+ void SendError(const std::string& msg) {\n+ v8::Isolate* isolate = elec...
2023-03-02T09:03:52
golang/go
485480faaac82e4179f7b56c1c370020157f25a8
955cf0873f7a1c3d54cff34164f81d2b44127c30
net: deflake recently added TestCloseUnblocksReadUDP Fixes #72802 Change-Id: I0dd457ef81a354f61c9de306e4609efdbe3d69b4 Reviewed-on: https://go-review.googlesource.com/c/go/+/656857 Auto-Submit: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Ian Lance Taylor <iant@googl...
[ { "path": "src/net/net_test.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"net/internal/socktest\"\n \t\"os\"\n \t\"runtime\"\n+\t\"sync\"\n \t\"testing\"\n \t\"time\"\n )\n@@ -511,11 +512,25 @@ func TestCloseUnblocksRead(t *testing.T) {\n // Issue 72770: verify that a blocked UDP read is woken up by a Clo...
2025-03-12T04:14:01
vercel/next.js
e186b697fbaefb5b65a181b4d1f456339c3657e7
d93f940a50b810621c0fed839566897a1c375022
[Segment Cache] Enable deploy tests (#80947) With this PR, we're enabling deployment testing for the existing Segment Cache test suites (excluding those that need a custom server setup). Two timing issues were fixed, and one bug was uncovered. For details see the inline comments below.
[ { "path": "test/e2e/app-dir/segment-cache/basic/segment-cache-basic.test.ts", "patch": "@@ -2,11 +2,10 @@ import { nextTestSetup } from 'e2e-utils'\n import { createRouterAct } from '../router-act'\n \n describe('segment cache (basic tests)', () => {\n- const { next, isNextDev, skipped } = nextTestSetup({\...
2025-06-27T07:41:51
nodejs/node
747ee0913cd9701d89d45cbfd12a59f062b35a03
a2233c39c830627bf767b517d8768e26fb04ee9e
doc: fix broken link in `static-analysis.md` Fix broken link in `doc/contributing/static-analysis.md`. Add a link to the main Node.js Coverity Scan project page. PR-URL: https://github.com/nodejs/node/pull/53345 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com...
[ { "path": "doc/contributing/static-analysis.md", "patch": "@@ -3,14 +3,17 @@\n The project uses Coverity to scan Node.js source code and to report potential\n issues in the C/C++ code base.\n \n-Those who have been added to the Node.js coverity project can receive emails\n+Those who have been added to the [...
2024-06-07T11:55:16
facebook/react
f1039be4a48384e7e4b0a87d4d92c48e900053b9
1d5667a1273386f84e416059af7b6aba069e068e
Fix: useDeferredValue initialValue suspends forever without switching to final (#27888) Fixes a bug in the experimental `initialValue` option for `useDeferredValue` (added in #27500). If rendering the `initialValue` causes the tree to suspend, React should skip it and switch to rendering the final value instead. ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzDeferredValue-test.js", "patch": "@@ -85,6 +85,38 @@ describe('ReactDOMFizzForm', () => {\n expect(container.textContent).toEqual('Final');\n });\n \n+ // @gate enableUseDeferredValueInitialArg\n+ // @gate enablePostpone\n+ it(\n+ 'if initi...
2024-01-08T04:17:20
electron/electron
9b20b3a722a7b807c161813cf2b616e74aee660d
8f2917db0169c81d293db7e32902252612ac68f5
chore: improve `contents.takeHeapSnapshot` error messages (#37434) * chore: improve contents.takeHeapSnapshot error messages * fix wstring conversion issue
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -3609,18 +3609,26 @@ v8::Local<v8::Promise> WebContents::TakeHeapSnapshot(\n flags = base::File::AddFlagsForPassingToUntrustedProcess(flags);\n base::File file(file_path, flags);\n if (!file.IsValid()) {\n- promise.RejectWithE...
2023-03-01T15:50:36
vercel/next.js
36448ea998a2dc17abbe41b0fc40a65006a3c241
78ed6a289ab357c04ce67d91386cedf64254dd81
fix: webpack config context when using rspack (#80921) `webpackConfigContext.webpack` should be Rspack exports when using Rspack.
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -2455,7 +2455,7 @@ export default async function getBaseWebpackConfig(\n config,\n defaultLoaders,\n totalPages: Object.keys(entrypoints).length,\n- webpack,\n+ webpack: bundler,\n ...(isNodeOrEdgeCompilati...
2025-06-27T03:32:56
golang/go
955cf0873f7a1c3d54cff34164f81d2b44127c30
bec12f153a2ad1b0902857bc1dafc635fc5dc06a
cmd/internal/dwarf: fix bug in inlined func DIE range DWARF 5 info This patch changes the strategy we use in the compiler for handling range information for inlined subroutine bodies, fixing a bug in how this was handled for DWARF 5. The high and lo PC values being emitted for DW_TAG_inlined_subroutine DIEs were inco...
[ { "path": "src/cmd/internal/dwarf/dwarf.go", "patch": "@@ -1295,8 +1295,11 @@ func putInlinedFunc(ctxt Context, s *FnState, callIdx int) error {\n \tic := s.InlCalls.Calls[callIdx]\n \tcallee := ic.AbsFunSym\n \n+\t// For DWARF 5, we always use the ranges form of the abbrev, since\n+\t// it is more compact ...
2025-03-12T16:05:11
nodejs/node
479b8e5232d10533b7bcb785d19b27a9c423c58f
68c9f554ffa2fab1ef3b6466c51491371f0dd158
repl: fix await object patterns without values fix lint issue PR-URL: https://github.com/nodejs/node/pull/53331 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
[ { "path": "lib/internal/repl/await.js", "patch": "@@ -104,7 +104,7 @@ const visitorsWithoutAncestors = {\n break;\n case 'ObjectPattern':\n ArrayPrototypeForEach(node.properties, (property) => {\n- registerVariableDeclarationIdentifiers(property.value);\n+ ...
2024-06-07T01:24:32
facebook/react
bd37fbe06acca8e11a00ea48752fb5e86146f42f
bf859705b55a8ccaedbed8546cd4d9c6c003bf62
[wip] Fix phi inference, expose InferMutableRange issue > Update: this is now passing all tests. The approach is likely wrong, and even if it's fine it needs some cleanup. Putting up for review as folks (esp @gsathya) have time. ## Background InferTypes was intended to infer types for phi identifiers, but by ac...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/AlignReactiveScopesToBlockScopes.ts", "patch": "@@ -10,8 +10,10 @@ import {\n Place,\n ReactiveBlock,\n ReactiveFunction,\n+ ReactiveInstruction,\n ReactiveScope,\n ScopeId,\n+ makeInstructionId,\n } from \"../HIR/HIR\";\n...
2024-01-02T23:31:57
electron/electron
8f2917db0169c81d293db7e32902252612ac68f5
49df19214ea3abaf0ad91adf3d374cba32abd521
fix: min/max width/height enforcement when `aspectRatio` is set (#37306) fix: min/max width/height with aspect ratio
[ { "path": "shell/browser/ui/cocoa/electron_ns_window_delegate.mm", "patch": "@@ -128,27 +128,62 @@ - (void)windowDidResignKey:(NSNotification*)notification {\n - (NSSize)windowWillResize:(NSWindow*)sender toSize:(NSSize)frameSize {\n NSSize newSize = frameSize;\n double aspectRatio = shell_->GetAspectRa...
2023-03-01T15:50:14
golang/go
bec12f153a2ad1b0902857bc1dafc635fc5dc06a
7e8ceadf85d1b0fc177ef0754f779a7a87b2c2b9
log/slog: optimize appendKey to reduce allocations This change introduces a new method, `appendTwoStrings`, which optimizes the `appendKey` function by avoiding the allocation of a temporary string (string concatenation of prefix and key). Instead, it directly appends the prefix and key to the buffer. Additionally, a...
[ { "path": "src/log/slog/handler.go", "patch": "@@ -525,8 +525,7 @@ func (s *handleState) appendError(err error) {\n func (s *handleState) appendKey(key string) {\n \ts.buf.WriteString(s.sep)\n \tif s.prefix != nil && len(*s.prefix) > 0 {\n-\t\t// TODO: optimize by avoiding allocation.\n-\t\ts.appendString(s...
2024-11-23T13:19:50
vercel/next.js
112a7657dfa6f2abaed35fbfadf5a60e150487f6
694ec0b06ab3c3bbcd20e97e532d2092e6fb1dae
[tubopack] Compile time replace top level `this` expressions to fix a subtle esm bug and simplify the client side runtime (#80925) ### What Use the 'free variable' system to compile time replace `this` expressions at the top level. In ESM modules it is rebound to `undefined`, this fixes an existing bug in turbopack w...
[ { "path": "turbopack/crates/turbopack-core/src/compile_time_info.rs", "patch": "@@ -107,6 +107,7 @@ pub enum CompileTimeDefineValue {\n Bool(bool),\n String(RcStr),\n JSON(RcStr),\n+ Undefined,\n }\n \n impl From<bool> for CompileTimeDefineValue {", "additions": 1, "deletions": 0, ...
2025-06-27T01:40:47
facebook/react
45d61cf7effdba6bbd9835bb427c99c95beb7e17
c5b9375767e2c4102d7e5559d383523736f1c902
[flow] upgrade to 0.225.1 (#27871) This Flow upgrade includes 2 fixes: - Remove `React$StatelessFunctionalComponent` as that was replaced by just `React$AbstractComponent` as Flow doesn't make any guarantees, see the Flow change here: https://github.com/facebook/flow/commit/521317c48f44ffb5eac072a7b2548a72b0745095...
[ { "path": ".eslintrc.js", "patch": "@@ -504,7 +504,6 @@ module.exports = {\n React$Node: 'readonly',\n React$Portal: 'readonly',\n React$Ref: 'readonly',\n- React$StatelessFunctionalComponent: 'readonly',\n ReadableStreamController: 'readonly',\n RequestInfo: 'readonly',\n Request...
2024-01-02T19:39:14
nodejs/node
35b8e5cb0c9890e30cd552be348cdee1aaa6d348
5469d04f8f9c6e1dc9eadc9771ec04519d4ecded
Revert "vm,src: add property query interceptors" This reverts commit d1f18b0bf16efbc1e54ba04a54735ce4683cb936. Closes: https://github.com/nodejs/node/issues/53346 PR-URL: https://github.com/nodejs/node/pull/53348 Fixes: https://github.com/nodejs/node/issues/53346 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By...
[ { "path": "src/node_contextify.cc", "patch": "@@ -51,7 +51,6 @@ using v8::FunctionTemplate;\n using v8::HandleScope;\n using v8::IndexedPropertyHandlerConfiguration;\n using v8::Int32;\n-using v8::Integer;\n using v8::Intercepted;\n using v8::Isolate;\n using v8::Just;\n@@ -177,22 +176,20 @@ void Contextify...
2024-06-06T06:51:29
electron/electron
5e25d23794a4b3b1bda35c79fcc1b2fdd787ad69
8fb0f430301578ba94b175f0b097fb2752f5ddf9
fix: handle closing `webContents` in `BrowserView`s (#37420) * fix: handle closing webContents in BrowserViews * test: add window.close() test
[ { "path": "shell/browser/api/electron_api_browser_view.cc", "patch": "@@ -126,6 +126,9 @@ BrowserView::~BrowserView() {\n }\n \n void BrowserView::WebContentsDestroyed() {\n+ if (owner_window())\n+ owner_window()->window()->RemoveDraggableRegionProvider(this);\n+\n api_web_contents_ = nullptr;\n web...
2023-03-01T10:35:06
vercel/next.js
71cdce68e02c1cb5bd31afe60dd2276bb5a8ef7e
ee5c6eb73f3a3dd2d1b474664f1b93a1d397ed93
[refactor] group the built-in conventions (#80957) Group all the built-in conventions into `src/client/components/builtin` with the actual same name of the conventions they represent. e.g. The default `not-found.js` is `next/dist/client/compoents/builtin/not-found.js`; The default `global-error.js` is `next/dist...
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -910,23 +910,23 @@ async fn directory_tree_to_loader_tree_internal(\n if modules.not_found.is_none() {\n modules.not_found = Some(\n get_next_package(app_dir)\n- .join(rcstr!(\"dist/client/...
2025-06-26T21:36:57
golang/go
d037ed62bc583af358b2cc5aeb151872a6ba7c2e
26040b1dd7e4e8f7957b2a918c01f3343249c289
math/big: simplify, speed up Karatsuba multiplication The old Karatsuba implementation only operated on lengths that are a power of two times a number smaller than karatsubaThreshold. For example, when karatsubaThreshold = 40, multiplying a pair of 99-word numbers runs karatsuba on the low 96 (= 39<<2) words and then ...
[ { "path": "src/math/big/int.go", "patch": "@@ -181,22 +181,25 @@ func (z *Int) Sub(x, y *Int) *Int {\n \n // Mul sets z to the product x*y and returns z.\n func (z *Int) Mul(x, y *Int) *Int {\n-\treturn z.mul(nil, x, y)\n+\tz.mul(nil, x, y)\n+\treturn z\n }\n \n-func (z *Int) mul(stk *stack, x, y *Int) *Int...
2025-01-17T22:26:59
facebook/react
fcc2182641b628cd6fcf46d2ea59c2cc05f7ddb8
a753a326ad77145e4d8eb6a44e40758d82869669
Handle scopes with only early return and no decls/deps/reassigns Fixes the case from the previous PR by using a different sentinel for uninitialized cache values and early returns. I confirmed with console.log that the reactive scope for `x` only evaluates on the first execution, after which we figure out that we ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -42,6 +42,9 @@ import { buildReactiveFunction } from \"./BuildReactiveFunction\";\n import { SINGLE_CHILD_FBT_TAGS } from \"./MemoizeFbtOperandsInSameScope\";\n import { ReactiveFunctionVisito...
2023-12-20T21:52:42
electron/electron
8fb0f430301578ba94b175f0b097fb2752f5ddf9
1f390119fe82249a856965fadbcf4fab89766e67
fix: `Notification` with reply obscuring first action on macOS (#37381) fix: Notification with reply obscuring first action
[ { "path": "shell/browser/notifications/mac/cocoa_notification.mm", "patch": "@@ -58,15 +58,22 @@\n [notification_ setSoundName:base::SysUTF16ToNSString(options.sound)];\n }\n \n- [notification_ setHasActionButton:false];\n+ if (options.has_reply) {\n+ [notification_ setHasReplyButton:true];\n+ ...
2023-03-01T08:46:56
vercel/next.js
ee5c6eb73f3a3dd2d1b474664f1b93a1d397ed93
3bad7cc77993d97a0583c36d00af9e047847c965
fix(turbopack): Fix a panic when the generated hash is too short when radix formatting a string. (#80966) ## Fix hash length check in metadata formatting ### What? Fixed a panic in the `format_radix` function when the generated hash is shorter than 6 characters. ### Why? The current implementation always tries to ta...
[ { "path": "crates/next-core/src/next_app/metadata/mod.rs", "patch": "@@ -276,7 +276,12 @@ fn format_radix(mut x: u32, radix: u32) -> String {\n }\n \n result.reverse();\n- result[..6].iter().collect()\n+\n+ // We only need the first 6 characters of the hash but sometimes the hash is too short....
2025-06-26T19:30:29
facebook/react
a753a326ad77145e4d8eb6a44e40758d82869669
ad57e661f49f1a340a437a597bef2214c017eabb
Fixture for only early return without decls/deps/reassigns
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/early-return-no-declarations-reassignments-dependencies.expect.md", "patch": "@@ -0,0 +1,135 @@\n+\n+## Input\n+\n+```javascript\n+// @enableEarlyReturnInReactiveScopes\n+import { makeArray } from \"shared-runtime\";\n+\n...
2023-12-20T21:52:41
nodejs/node
5469d04f8f9c6e1dc9eadc9771ec04519d4ecded
001c36b39bc744e80bc9a1774761a7d89f1922f1
lib: fix misleading argument of validateUint32 The type of the argument `positive` was declared as `boolean|number`, which is misleading because the function treats it as a boolean only. Some call sites even passed numbers, specifically, either `0` or `1`, which happen to work as expected because they are interpreted ...
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -194,7 +194,7 @@ function testMatchesPattern(test, patterns) {\n \n class TestPlan {\n constructor(count) {\n- validateUint32(count, 'count', 0);\n+ validateUint32(count, 'count');\n this.expected = count;\n this.actual = 0;\n }\n@...
2024-06-05T22:59:05
golang/go
8d767ff38df003e9cd85e4bba9a026ba1b70e80e
c032b042190dcc37963b025c75e938f3ffa587d0
runtime: increase GDB version testing requirement to 10 from 7.7 Bump the required version of GDB up to 10 from 7.7 in the runtime GDB tests, so as to ensure that we have something that can handle DWARF 5 when running tests. In theory there is some DWARF 5 support on the version 9 release branch, but we get "Dwarf Err...
[ { "path": "src/runtime/runtime-gdb_test.go", "patch": "@@ -73,7 +73,9 @@ func checkGdbVersion(t *testing.T) {\n \tif err1 != nil || err2 != nil {\n \t\tt.Skipf(\"skipping: can't determine gdb version: %v, %v\", err1, err2)\n \t}\n-\tif major < 7 || (major == 7 && minor < 7) {\n+\t// The Go toolchain now gen...
2025-03-12T01:33:25
electron/electron
87f2a1d572a78c41da293eeb467966f76da7ba9d
2e03bdb9b624c24646b5104ce972e0800f622683
fix: `BroadcastChannel` initialization location (#37421) * fix: BroadcastChannel initialization location * chore: update patches --------- Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
[ { "path": "patches/node/.patches", "patch": "@@ -35,3 +35,4 @@ enable_crashpad_linux_node_processes.patch\n allow_embedder_to_control_codegenerationfromstringscallback.patch\n src_allow_optional_isolation_termination_in_node.patch\n test_mark_cpu_prof_tests_as_flaky_in_electron.patch\n+lib_fix_broadcastchan...
2023-02-28T22:26:37
facebook/react
4c68da2e60d2c5de46097eab914e6874806bf385
f504eaa16ecbfc1000d9fc9fc007b2ec313f7dda
Todo for early return within reactive scopes Adds a new compiler pass that will eventually actually handle early returns within reactive scopes. For now it just detects them and throws a Todo error.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -49,6 +49,7 @@ import {\n mergeOverlappingReactiveScopes,\n mergeReactiveScopesThatInvalidateTogether,\n promoteUsedTemporaries,\n+ propagateEarlyReturns,\n propagateScopeDependencies,\n pruneAllReact...
2023-12-20T21:52:37
nodejs/node
0281e2cbf0531ade992265b7b734dd3f1ecffe8a
78828705e9bafbe0f4a6befccc02bcf9ab312946
crypto: fix propagation of "memory limit exceeded" When we throw ERR_CRYPTO_INVALID_SCRYPT_PARAMS after a call to EVP_PBE_scrypt, check if OpenSSL reported an error and if so, append the OpenSSL error message to the default generic error message. In particular, this catches cases when `maxmem` is not sufficient, which...
[ { "path": "src/crypto/crypto_scrypt.cc", "patch": "@@ -104,7 +104,17 @@ Maybe<bool> ScryptTraits::AdditionalConfig(\n params->maxmem,\n nullptr,\n 0) != 1) {\n- THROW_ERR_CRYPTO_INVALID_SCRYPT_PARAMS(env);\n+ // Do not use CryptoErrorStore or ThrowCryptoError here in orde...
2024-06-05T13:32:14
rust-lang/rust
fe9b791c5554327d7da234c48f7f27e43a901b68
a2b126b6e6a56633d35bcb01f50c71b5af88a845
feat: offer block let fallback postfix complete Example --- ```rust fn main() { match 2 { bar => bar.$0 } } ``` -> ```rust fn main() { match 2 { bar => { let $1 = bar; $0 } } } ```
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs", "patch": "@@ -161,7 +161,20 @@ pub(crate) fn complete_postfix(\n postfix_snippet(\"letm\", \"let mut\", &format!(\"let mut $0 = {receiver_text};\"))\n .add_to(acc, ctx.db);\n ...
2026-02-06T08:15:22
golang/go
c032b042190dcc37963b025c75e938f3ffa587d0
c00647b49b7e538506af31c67eb0411e8ea64176
internal/buildcfg: fix typo in DWARF 5 enabling code Fix a typo in the code that decides which GOOS values will support use of DWARF 5 ("darwin" was not spelled correctly). Updates #26379. Change-Id: I3a7906d708550fcedc3a8e89d0444bf12b9143f1 Reviewed-on: https://go-review.googlesource.com/c/go/+/656895 Auto-Submit: ...
[ { "path": "src/internal/buildcfg/exp.go", "patch": "@@ -82,7 +82,7 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {\n \t// XCOFF format (as far as can be determined) doesn't seem to\n \t// support the necessary section subtypes for DWARF-specific\n \t// things like .debug_ad...
2025-03-12T01:19:11
electron/electron
2e03bdb9b624c24646b5104ce972e0800f622683
3a5ae28c9532004f55ffd2198731e530f94a59bf
fix: about panel crash (#37373) * fix: about panel is a base::Value::Dict * nix this test for a diff PR
[ { "path": "shell/browser/browser.h", "patch": "@@ -363,7 +363,7 @@ class Browser : public WindowListObserver {\n base::Time last_dock_show_;\n #endif\n \n- base::Value about_panel_options_;\n+ base::Value::Dict about_panel_options_;\n \n #if BUILDFLAG(IS_WIN)\n void UpdateBadgeContents(HWND hwnd,", ...
2023-02-28T22:26:00
nodejs/node
7f46227bb30878c16d9a3b4848a69320efb83136
b26a260ce595a464b933187c72e9ed06880f75f5
doc: remove cases for keys not containing "*" in PATTERN_KEY_COMPARE PR-URL: https://github.com/nodejs/node/pull/53215 Fixes: https://github.com/nodejs/node/issues/53206 Refs: https://github.com/nodejs/node/pull/40121 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Guy Bedford <guybedford@gma...
[ { "path": "doc/api/esm.md", "patch": "@@ -1000,19 +1000,15 @@ _isImports_, _conditions_)\n \n **PATTERN\\_KEY\\_COMPARE**(_keyA_, _keyB_)\n \n-> 1. Assert: _keyA_ ends with _\"/\"_ or contains only a single _\"\\*\"_.\n-> 2. Assert: _keyB_ ends with _\"/\"_ or contains only a single _\"\\*\"_.\n-> 3. Let _b...
2024-06-05T11:20:26
facebook/react
3e00e58a6ac7f73a3660f31d3129fb06d344167e
8b1547b671f9ea9a2db38f2404557fb59b84afc0
fix[devtools/e2e]: add fallback for act in integration tests (#27842) https://github.com/facebook/react/pull/27805 broke integration tests for React DevTools with React 17, these changes introduce a fallback for such case when `act` is not available in `react`, but available in `react-dom`, like before.
[ { "path": "packages/react-devtools-shared/src/__tests__/utils.js", "patch": "@@ -19,7 +19,9 @@ export function act(\n recursivelyFlush: boolean = true,\n ): void {\n const {act: actTestRenderer} = require('react-test-renderer');\n- const actDOM = require('react').unstable_act;\n+ // Use `require('reac...
2023-12-17T13:17:45
rust-lang/rust
22885d2526251034698c108d051d74a9f4b9de94
d5957f582b3cb4d9c3f9135fcd0fad5cd9e40c6b
Reorganize tests that no longer crash
[ { "path": "tests/crashes/138089.rs", "patch": "@@ -1,16 +0,0 @@\n-//@ known-bug: #138089\n-//@ needs-rustc-debug-assertions\n-\n-#![feature(generic_const_exprs)]\n-#![feature(min_generic_const_args)]\n-#![feature(inherent_associated_types)]\n-struct OnDiskDirEntry<'a> {}\n-\n-impl<'a> OnDiskDirEntry<'a> {\n...
2026-02-05T16:13:07
golang/go
43648931492e45c78ba3e21e7191944a0bb7c10b
17b9c9f2ad6f7943a4a1861dfc000d190abca55b
cmd/internal/script/scripttest: use GOHOSTARCH to find tool directory Fixes #72800 Change-Id: Idde7eae13d1c0098e5314935cf8ca823cbc7a7cc Reviewed-on: https://go-review.googlesource.com/c/go/+/656855 Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <...
[ { "path": "src/cmd/internal/script/scripttest/setup.go", "patch": "@@ -6,10 +6,13 @@\n package scripttest\n \n import (\n+\t\"internal/testenv\"\n \t\"io\"\n \t\"os\"\n \t\"path/filepath\"\n \t\"runtime\"\n+\t\"strings\"\n+\t\"sync\"\n \t\"testing\"\n )\n \n@@ -36,13 +39,17 @@ func SetupTestGoRoot(t *testin...
2025-03-11T22:00:23
electron/electron
e27905c7654e119464ba149f1643cd2770575159
a3e3efe4c4d6ed2b40f89eafbd034d8a1744a3a7
fix: allow contextmenu event in draggable regions (#37386)
[ { "path": "filenames.gni", "patch": "@@ -153,7 +153,7 @@ filenames = {\n \"shell/browser/notifications/mac/notification_presenter_mac.mm\",\n \"shell/browser/relauncher_mac.cc\",\n \"shell/browser/ui/certificate_trust_mac.mm\",\n- \"shell/browser/ui/cocoa/delayed_native_view_host.cc\",\n+ ...
2023-02-24T00:05:30
facebook/react
8b1547b671f9ea9a2db38f2404557fb59b84afc0
8b8d265bd9a4cab7bbd04a9a13950fdc946ea51c
docs: fix typo in README.md (#27841)
[ { "path": "README.md", "patch": "@@ -30,7 +30,7 @@ The documentation is divided into several sections:\n * [Installation](https://react.dev/learn/installation)\n * [Describing the UI](https://react.dev/learn/describing-the-ui)\n * [Adding Interactivity](https://react.dev/learn/adding-interactivity)\n-* [Man...
2023-12-16T23:37:42
electron/electron
32c60b29bbd9abcaedbe9d65b2a4eae78e1c2fca
868676aa5ccf68793333d40124e49f0d0b175246
fix: html fullscreen when window not fullscreenable (#37348)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1307,7 +1307,10 @@ Profile* WebContents::GetProfile() {\n }\n \n bool WebContents::IsFullscreen() const {\n- return owner_window_ && owner_window_->IsFullscreen();\n+ if (!owner_window())\n+ return false;\n+\n+ return owner_wind...
2023-02-21T11:11:34
rust-lang/rust
dc87b28bdb4d33a7c458a4dd8c695f7c41948692
62d0533eaecb43e75677b954b8c130fd9ffed0f0
Improve error message for non-descriptive test names
[ { "path": "src/tools/tidy/src/ui_tests.rs", "patch": "@@ -302,7 +302,7 @@ fn deny_new_nondescriptive_test_names(\n && !stripped_path.starts_with(\"ui/issues/\")\n {\n check.error(format!(\n- \"the name of the file `tests/{stripped_path}` is not descriptive, con...
2026-02-06T03:57:11
vercel/next.js
812596e77e73f0a7f02ea3ec34d5bc2c0e9f9093
166f710c1fcc529ffd81e6c12f1b296d030fa1ba
Update backend-for-frontend.mdx (#80942) Example function in [App Router > Guides > Backend For Frontend > Public Endpoints](https://nextjs.org/docs/app/guides/backend-for-frontend#public-endpoints) should be `async` (since using `await`) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make su...
[ { "path": "docs/01-app/02-guides/backend-for-frontend.mdx", "patch": "@@ -51,7 +51,7 @@ Use `try/catch` blocks for operations that may throw an exception:\n ```ts filename=\"/app/api/route.ts\" switcher\n import { submit } from '@/lib/submit'\n \n-export function POST(request: Request) {\n+export async func...
2025-06-26T18:08:22
nodejs/node
d1f18b0bf16efbc1e54ba04a54735ce4683cb936
f2f45a0762bea7a9f7fafd6f94d72ba8f4bee10a
vm,src: add property query interceptors Fixes: https://github.com/nodejs/node/issues/52720 PR-URL: https://github.com/nodejs/node/pull/53172 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "src/node_contextify.cc", "patch": "@@ -51,6 +51,7 @@ using v8::FunctionTemplate;\n using v8::HandleScope;\n using v8::IndexedPropertyHandlerConfiguration;\n using v8::Int32;\n+using v8::Integer;\n using v8::Intercepted;\n using v8::Isolate;\n using v8::Just;\n@@ -176,20 +177,22 @@ void Contextify...
2024-06-04T06:45:39
facebook/react
8b8d265bd9a4cab7bbd04a9a13950fdc946ea51c
63310df2b243b6c3b2f01e8b121e7d115e839cfb
[Flight] Wire up async_hooks in Node.js DEV for inspecting Promises (#27840) This wires up the use of `async_hooks` in the Node build (as well as the Edge build when a global is available) in DEV mode only. This will be used to track debug info about what suspended during an RSC pass. Enabled behind a flag for no...
[ { "path": ".eslintrc.js", "patch": "@@ -532,6 +532,7 @@ module.exports = {\n trustedTypes: 'readonly',\n IS_REACT_ACT_ENVIRONMENT: 'readonly',\n AsyncLocalStorage: 'readonly',\n+ async_hooks: 'readonly',\n globalThis: 'readonly',\n },\n };", "additions": 1, "deletions": 0, "...
2023-12-16T02:38:01
electron/electron
85cf56d80b9073091303f807e584362501bb8fda
a92fd2aa05c0cfcb5809268eb8a4f1d4d3f91074
fix: guard more private API usage on MAS builds (#37309)
[ { "path": "patches/chromium/mas_no_private_api.patch", "patch": "@@ -222,10 +222,159 @@ index f35d9ef2a2df3db8ecbf1d7b909c7b1cf33f3cd9..a710b8b4f851666fd65bb37f69ec2fa7\n \n bool SandboxCompiler::CompilePolicyToProto(mac::SandboxPolicy& policy,\n diff --git a/sandbox/mac/seatbelt.cc b/sandbox/mac/seatbelt...
2023-02-21T10:44:18
rust-lang/rust
62d0533eaecb43e75677b954b8c130fd9ffed0f0
1dfdfe81495b2d2e5391753bde47b6a93a83a36a
Update error message for non-descriptive test files
[ { "path": "src/tools/tidy/src/ui_tests.rs", "patch": "@@ -302,7 +302,7 @@ fn deny_new_nondescriptive_test_names(\n && !stripped_path.starts_with(\"ui/issues/\")\n {\n check.error(format!(\n- \"the name of the file `tests/{stripped_path}` must begin with a descr...
2026-02-06T03:24:22
vercel/next.js
166f710c1fcc529ffd81e6c12f1b296d030fa1ba
7678bb904ebc533576394afdace72040dc3cb0be
Docs/feedback june batch (#80651) Addressing feedback from: - missing function reference https://github.com/vercel/next.js/issues/77190 - Error boundaries: https://github.com/vercel/next.js/issues/42525 - RedirectType: https://github.com/vercel/next.js/issues/59160 - generateMetadata can be included into static build...
[ { "path": "docs/01-app/01-getting-started/07-fetching-data.mdx", "patch": "@@ -579,7 +579,7 @@ You can preload data by creating an utility function that you eagerly call above\n You can call `preload()` before `checkIsAvailable()` to eagerly initiate `<Item/>` data dependencies. By the time `<Item/>` is ren...
2025-06-26T18:07:53
nodejs/node
58711c2f8dbb27faae952f15fcea5796730bdbe1
8c5c2c18b65c8101127bac05a36ab51f30623339
build: fix --v8-lite-mode build Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/52725 Fixes: https://github.com/nodejs/node/issues/52710 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@...
[ { "path": "tools/v8_gypfiles/v8.gyp", "patch": "@@ -289,7 +289,6 @@\n 'toolsets': ['host', 'target'],\n 'dependencies': [\n 'torque_generated_initializers',\n- 'v8_initializers_slow',\n 'v8_base_without_compiler',\n 'v8_shared_internal_headers',\n 'v8_pch',...
2024-06-03T11:00:47
golang/go
908af6529c1d3094da999fdafe79313c41826afa
817218a26c39911176c0d67258c637459f8d2fca
archive/zip: error on ReadDir if there are invalid file names Fixes #50179 Change-Id: I616a6d1279d025e345d2daa6d44b687c8a2d09e1 Reviewed-on: https://go-review.googlesource.com/c/go/+/656495 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Ian Lance Taylor <iant@go...
[ { "path": "src/archive/zip/reader.go", "patch": "@@ -8,6 +8,7 @@ import (\n \t\"bufio\"\n \t\"encoding/binary\"\n \t\"errors\"\n+\t\"fmt\"\n \t\"hash\"\n \t\"hash/crc32\"\n \t\"internal/godebug\"\n@@ -988,6 +989,12 @@ func (d *openDir) ReadDir(count int) ([]fs.DirEntry, error) {\n \t\ts, err := d.files[d.of...
2025-03-10T22:10:58
electron/electron
a92fd2aa05c0cfcb5809268eb8a4f1d4d3f91074
ee966ad6ec76b923ced107aa2d0247f0c5ed69d7
fix: restoring X11 window should not remove previous maximize state (#37346)
[ { "path": "patches/chromium/.patches", "patch": "@@ -125,3 +125,4 @@ chore_introduce_blocking_api_for_electron.patch\n chore_patch_out_partition_attribute_dcheck_for_webviews.patch\n expose_v8initializer_codegenerationcheckcallbackinmainthread.patch\n chore_patch_out_profile_methods_in_profile_selections_cc...
2023-02-21T08:49:02
rust-lang/rust
1dfdfe81495b2d2e5391753bde47b6a93a83a36a
f889772d6500faebcac5bb70fa44b5e6581c38cd
chore: clearify tidy's error message
[ { "path": "src/tools/tidy/src/ui_tests.rs", "patch": "@@ -302,7 +302,7 @@ fn deny_new_nondescriptive_test_names(\n && !stripped_path.starts_with(\"ui/issues/\")\n {\n check.error(format!(\n- \"file `tests/{stripped_path}` must begin with a descriptive name, con...
2026-02-06T03:01:40
vercel/next.js
c2e59081a9ac8f03615a430a583b1d53247eb459
2a93c30f3870255b7d2c1ee74a7967ea463af383
Reenable debug assertions for dependencies in dev (#80958) This was added multiple years ago
[ { "path": "Cargo.toml", "patch": "@@ -29,8 +29,6 @@ opt-level = 1\n \n # Set the options for dependencies (not crates in the workspace), this mostly impacts cold builds\n [profile.dev.package.\"*\"]\n-# This is a workaround for wasm timeout issue\n-debug-assertions = false\n opt-level = 1\n \n # Set the set...
2025-06-26T16:57:16
facebook/react
63310df2b243b6c3b2f01e8b121e7d115e839cfb
493610f299ddf7d06e147e60dc4f2b97482982d2
[Fizz] Add Component Stacks to `onError` and `onPostpone` when in dev mode or during prerenders in prod mode (#27761) Historically React would produce component stacks for dev builds only. There is a cost to tracking component stacks and given the prod builds try to optimize runtime performance these stacks were lef...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -734,7 +734,7 @@ describe('ReactDOMFizzServer', () => {\n \n const theError = new Error('Test');\n const loggedErrors = [];\n- function onError(x) {\n+ function onError(x, errorInfo) {\n loggedErrors.pu...
2023-12-16T02:06:35
nodejs/node
881e196b19100ccc90e9b234af11bd361aa616a4
43ab5b9596c0e4f76b0543beb31928d592550fbd
benchmark: fix napi/ref addon Refs: https://github.com/nodejs/node/pull/53212#issuecomment-2142566866 PR-URL: https://github.com/nodejs/node/pull/53233 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Luigi Pinca <luigipinca@gmail...
[ { "path": "benchmark/napi/ref/addon.c", "patch": "@@ -1,6 +1,5 @@\n-#include <stdlib.h>\n-#define NAPI_EXPERIMENTAL\n #include <node_api.h>\n+#include <stdlib.h>\n \n #define NAPI_CALL(env, call) \\\n do { \\\n@@ -34,8 +33,7 @@ SetCou...
2024-06-02T18:26:23
golang/go
3fb8b4f3db21396a69bfaa0bdbf1252214c93ecd
8867af920748f8aa4e9beb5bb8b88c34c85766f2
all: move //go:debug decoratemappings=0 test to cmd/go test/decoratemappingszero.go is intended to test that //go:debug decoratemappings=0 disables annonations. Unfortunately, //go:debug processing is handled by cmd/go, but cmd/internal/testdir (which runs tests from test/) generally invokes the compiler directly, th...
[ { "path": "src/cmd/go/testdata/script/godebug_decoratemappings_comment.txt", "patch": "@@ -1,14 +1,18 @@\n-// run\n+env GO111MODULE=on\n \n-// Copyright 2025 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+[!G...
2025-03-11T19:09:46
electron/electron
67a6fbf2656c5aa18c59721b56b081c156e79fad
f97d68c4bf64a935fa6344b40a8f1bcb7e92d942
docs: fixed a typo in `process.defaultApp` doc (#37342) docs: improve `defaultApp`
[ { "path": "docs/api/process.md", "patch": "@@ -49,8 +49,11 @@ beginning to load the web page or the main script.\n \n ### `process.defaultApp` _Readonly_\n \n-A `boolean`. When app is started by being passed as parameter to the default app, this\n+A `boolean`. When the app is started by being passed as para...
2023-02-20T12:06:19
vercel/next.js
6363f5add59a9b8c8dfd19e635dbe897fff00b6f
b3e6b5b6e6987b2b71f981398b7975885262cf1f
Turbopack: Improve unreachable code error message (#80934) ## What? Improves this `unreachable!()` as [Ciprian Caba](https://x.com/cipriancaba) reached out hitting this particular case but there's no info as to what path causes it. This PR adds that info.
[ { "path": "turbopack/crates/turbo-tasks-fs/src/read_glob.rs", "patch": "@@ -165,7 +165,13 @@ async fn track_glob_internal(\n reads.push(fs.read(*path))\n }\n }\n- DirectoryEntry::Symlink(_) => unreachable!(\"we alread...
2025-06-26T15:42:42
facebook/react
3e79c386048c4fe569afb023d85b71ed2ffe5b8e
af1aa8d0d31ffac773dd6d4081fcd64beac22919
More useCallback with ref fixtures
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.todo-useCallback-accesses-ref-mutated-later-via-function-preserve-memoization.expect.md", "patch": "@@ -0,0 +1,42 @@\n+\n+## Input\n+\n+```javascript\n+// @enablePreserveExistingMemoizationGuarantees\n+import { useC...
2023-12-16T00:59:19
nodejs/node
43ab5b9596c0e4f76b0543beb31928d592550fbd
da0f19208786cd7c57fec733e4ba24d0454f556a
test: fix test when compiled without engine support Update the `addons/openssl-test-engine` test to pass when OpenSSL has been compiled without support for custom engines. OpenSSL 3 deprecated support for engines, with the recommendation to move to the provider model. PR-URL: https://github.com/nodejs/node/pull/53232...
[ { "path": "test/addons/openssl-test-engine/test.js", "patch": "@@ -11,50 +11,59 @@ const crypto = require('crypto');\n const fs = require('fs');\n const path = require('path');\n \n+// Engine support in OpenSSL is checked later on.\n+let hasEngineSupport = true;\n \n-assert.throws(() => crypto.setEngine(tru...
2024-06-02T18:12:23
golang/go
8591f8e19e3a2e75e86b486ac8a9ec7ff4f3bcbe
39b783780a471961ae381a9fc37a5a1e468f5c21
log/slog: use consistent call depth for all output This makes all log functions keep a consistent call structure to be nice with the handleWriter in the slog package which expects a strict level of 4. Fixes #67362. Change-Id: Ib967c696074b1ca931f6656dd27ff1ec484233b8 GitHub-Last-Rev: 49bc424986875da2dd244b57f8b0851d...
[ { "path": "src/log/log.go", "patch": "@@ -191,8 +191,7 @@ func putBuffer(p *[]byte) {\n // provided for generality, although at the moment on all pre-defined\n // paths it will be 2.\n func (l *Logger) Output(calldepth int, s string) error {\n-\tcalldepth++ // +1 for this frame.\n-\treturn l.output(0, calld...
2025-03-05T22:33:50
vercel/next.js
b3e6b5b6e6987b2b71f981398b7975885262cf1f
74b7cc339ad28e43d6cd405b9bda74a839b5a0e3
Docs/fetching data deduping (#80806) Fixes: https://github.com/vercel/next.js/issues/77077 https://github.com/vercel/next.js/issues/80790 - We are missing the deduping step that wraps with React.cache - Add some more clarify about passing cache, current and future renders Closes: https://linear.app/vercel/issue/DOC-...
[ { "path": "docs/01-app/01-getting-started/07-fetching-data.mdx", "patch": "@@ -234,13 +234,17 @@ export default function BlogPage() {\n }\n ```\n \n-## Deduplicating requests with `React.cache`\n+## Deduplicate requests and cache data\n \n-Deduplication is the process of _preventing duplicate requests_ for ...
2025-06-26T14:41:42
electron/electron
e34cc6f48c118ac31363aa6660bf55de5ae672a1
ee87438d28386ff2753923d1ed32db5ca72e706a
test: enable linting of ts-smoke and fix all issues (#37322)
[ { "path": "script/lint.js", "patch": "@@ -22,10 +22,7 @@ process.env.PATH = `${process.env.PATH}${path.delimiter}${DEPOT_TOOLS}`;\n const IGNORELIST = new Set([\n ['shell', 'browser', 'resources', 'win', 'resource.h'],\n ['shell', 'common', 'node_includes.h'],\n- ['spec', 'fixtures', 'pages', 'jquery-3...
2023-02-17T18:56:09
facebook/react
0b32173d0995ad581513ff5d226b010fd117395c
721b6a4f91b883f353217f42e5d90f4e4efbf1da
More fixtures for useCallback with refs Extra fixture confirming that some usage of refs can break memoization, both in normal mode and in preserve-existing-memo mode.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/useCallback-set-ref-nested-property-dont-preserve-memoization.expect.md", "patch": "@@ -0,0 +1,67 @@\n+\n+## Input\n+\n+```javascript\n+// @enablePreserveExistingMemoizationGuarantees:false\n+import { useCallback, useRef ...
2023-12-16T00:22:13
nodejs/node
667191119fa3d3b5721a4a434e78200dff776197
7125931f4c891d253170146a97fc068f09cd2480
lib: fix the name of the fetch global function PR-URL: https://github.com/nodejs/node/pull/53227 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.c...
[ { "path": "lib/internal/bootstrap/web/exposed-window-or-worker.js", "patch": "@@ -70,7 +70,7 @@ ObjectDefineProperty(globalThis, 'fetch', {\n configurable: true,\n enumerable: true,\n writable: true,\n- value: function value(input, init = undefined) {\n+ value: function fetch(input, init = undefined...
2024-06-02T10:42:46
golang/go
598df45fceb6e10d643ed0c07a3df80cffd507f1
be2ecfbff88f20a888ec49446a45dd6bc8ed8d12
net: unblock UDP Reads upon Close on plan9, add test Fixes #72770 Change-Id: I42be7c7349961188f4b5d73287a3550aba323893 Reviewed-on: https://go-review.googlesource.com/c/go/+/656395 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@google.com>...
[ { "path": "src/net/fd_plan9.go", "patch": "@@ -126,6 +126,11 @@ func (fd *netFD) Close() error {\n \t\t\treturn err\n \t\t}\n \t}\n+\tif fd.net == \"udp\" {\n+\t\t// The following line is required to unblock Reads.\n+\t\t// See https://go.dev/issue/72770.\n+\t\tfd.SetReadDeadline(time.Now().Add(-time.Hour))...
2025-03-10T18:45:10
vercel/next.js
74b7cc339ad28e43d6cd405b9bda74a839b5a0e3
be43ff10d4f5a3ce8e07cf286b456e44c4ca448b
docs: Add a link to what opts into dynamic rendering (#80910) Fixes: https://github.com/vercel/next.js/issues/66871#issuecomment-3005875361 Let's add this patch quickly. I take over the Devin PR - and try to get it merged in the coming days.
[ { "path": "docs/01-app/02-guides/content-security-policy.mdx", "patch": "@@ -33,7 +33,7 @@ Even though CSPs are designed to block malicious scripts, there are legitimate s\n \n [Middleware](/docs/app/api-reference/file-conventions/middleware) enables you to add headers and generate nonces before the page re...
2025-06-26T14:32:02
electron/electron
73b7aac6a413ed044e018947e8e7741ecb309bcf
ea848bc1c57cef75bd2e4424256bafb25758db2b
test: fix "crash cases" tests not failing properly (#37304) * test: fix "crash cases" tests not failing properly * fixup! test: fix "crash cases" tests not failing properly
[ { "path": "spec/crash-spec.ts", "patch": "@@ -8,7 +8,7 @@ const fixturePath = path.resolve(__dirname, 'fixtures', 'crash-cases');\n \n let children: cp.ChildProcessWithoutNullStreams[] = [];\n \n-const runFixtureAndEnsureCleanExit = (args: string[]) => {\n+const runFixtureAndEnsureCleanExit = async (args: s...
2023-02-17T09:14:00
facebook/react
c6200d1a2bdfaee1b91f9a6364e7eecc060d5989
6747d4e33c1ea25612f475be2153f666b55c2b93
Fix comments, extend fixtures
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/DropManualMemoization.ts", "patch": "@@ -130,12 +130,12 @@ export function dropManualMemoization(func: HIRFunction): void {\n * $1 = LoadGlobal useMemo // load the useMemo global (dead code)\n ...
2023-12-15T23:19:41
nodejs/node
7125931f4c891d253170146a97fc068f09cd2480
41d90aaf62b9aeae799fca838b6b6f45b50bb5a3
test_runner: handle file rename and deletion under watch mode Fixes: https://github.com/nodejs/node/issues/53113 PR-URL: https://github.com/nodejs/node/pull/53114 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Raz Luvaton <rluvaton@gmail.com>
[ { "path": "lib/internal/test_runner/runner.js", "patch": "@@ -3,6 +3,7 @@ const {\n ArrayIsArray,\n ArrayPrototypeEvery,\n ArrayPrototypeFilter,\n+ ArrayPrototypeFind,\n ArrayPrototypeForEach,\n ArrayPrototypeIncludes,\n ArrayPrototypeJoin,\n@@ -417,7 +418,22 @@ function watchFiles(testFiles, o...
2024-06-02T08:11:30
golang/go
be2ecfbff88f20a888ec49446a45dd6bc8ed8d12
73fea035bf1e4e68ef14995a389d4fd8df5c6a34
debug/dwarf: read DWARF 5 cu base offsets on SeekPC() path This patch fixes a bug in CL 655976 relating to DWARF 5 support; we were reading in compile unit base offsets on the Seek() path but not on the corresponding SeekPC path (we need the offsets to be read in both cases). Updates #26379. Fixes #72778. Change-Id:...
[ { "path": "src/debug/dwarf/entry.go", "patch": "@@ -919,6 +919,7 @@ func (r *Reader) SeekPC(pc uint64) (*Entry, error) {\n \t\tr.cu = nil\n \t\tu := &r.d.unit[unit]\n \t\tr.b = makeBuf(r.d, u, \"info\", u.off, u.data)\n+\t\tr.collectDwarf5BaseOffsets(u)\n \t\te, err := r.Next()\n \t\tif err != nil {\n \t\t\...
2025-03-11T13:16:05