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 | 985d600f3aa8654b854f8b2c822552c052ed3d30 | 848a768ba76d7c386c2aa4f05bc2e9e51b5948b9 | runtime: use small struct TestSynctest to ensure cleanups run
Finalizers and cleanup funcs weren't running on the windows-arm64
builder. Put finalizers/cleanups on a small struct containing a pointer
rather than an *int, which fixes the problem.
Also uncomment a synctest.Wait that was accidentally commented out.
Fix... | [
{
"path": "src/runtime/testdata/testsynctest/main.go",
"patch": "@@ -9,6 +9,7 @@ import (\n \t\"runtime\"\n \t\"runtime/metrics\"\n \t\"sync/atomic\"\n+\t\"unsafe\"\n )\n \n // This program ensures system goroutines (GC workers, finalizer goroutine)\n@@ -27,6 +28,11 @@ func numGCCycles() uint64 {\n \treturn... | 2025-06-06T19:59:04 |
facebook/react | 3b551c82844bcfde51f0febb8e42c1a0d777df2c | db913d8e17db25045e0518f3621f1640f2390525 | Rename the react.element symbol to react.transitional.element (#28813)
We have changed the shape (and the runtime) of React Elements. To help
avoid precompiled or inlined JSX having subtle breakages or deopting
hidden classes, I renamed the symbol so that we can early error if
private implementation details are use... | [
{
"path": "packages/react-devtools-shared/src/__tests__/legacy/inspectElement-test.js",
"patch": "@@ -290,9 +290,23 @@ describe('InspectedElementContext', () => {\n \"preview_long\": {boolean: true, number: 123, string: \"abc\"},\n },\n },\n- \"react_element\": Dehydrate... | 2024-04-22T16:39:56 |
electron/electron | cf5f0419f11516937e43e8259204339dffa22aa4 | 262723e3948197b26f9c2b9bc245ca0bb7e31f36 | chore: fix some typos (#40506) | [
{
"path": "docs/api/structures/user-default-types.md",
"patch": "@@ -9,4 +9,4 @@\n * `array` Array\\<unknown>\n * `dictionary` Record\\<string, unknown>\n \n-This type is a helper alias, no object will never exist of this type.\n+This type is a helper alias, no object will ever exist of this type.",
"ad... | 2023-11-13T03:51:56 |
vercel/next.js | e6718d699d1d188fdff8a98191d1e6f69a8604fb | 91da00336c244858f2503b57aa29805e3ae24aa1 | docs: fix TS error in Node.js runtime local assets example (#82672)
## What?
Updated the documentation for `opengraph-image` / `twitter-image` to fix
the **Node.js runtime with local assets** example.
## Why?
The existing snippet did not type-check cleanly with Next.js 15+ and
could confuse developers.
This updat... | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/01-metadata/opengraph-image.mdx",
"patch": "@@ -402,7 +402,59 @@ export default async function Image({ params }) {\n \n #### Using Node.js runtime with local assets\n \n-This example uses the Node.js runtime to fetch a local image on the file syste... | 2025-08-19T21:28:18 |
nodejs/node | fd787c96e1c6b24e6345b017a78f48a30fce5f75 | 87a79cd8a1d02316978a643c459174eac3a436c8 | doc: fix the require resolve algorithm in `modules.md`
Before the fix, the pseudocode was describing an infinite loop.
PR-URL: https://github.com/nodejs/node/pull/55117
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "doc/api/modules.md",
"patch": "@@ -333,7 +333,7 @@ NODE_MODULES_PATHS(START)\n 2. let I = count of PARTS - 1\n 3. let DIRS = []\n 4. while I >= 0,\n- a. if PARTS[I] = \"node_modules\" CONTINUE\n+ a. if PARTS[I] = \"node_modules\", GOTO d.\n b. DIR = path join(PARTS[0 .. I] + \"node_modules... | 2024-09-27T15:34:38 |
golang/go | 848a768ba76d7c386c2aa4f05bc2e9e51b5948b9 | 049a5e603634dfdbc73b4255c7e72eabc3922d5b | runtime: clarify stack traces for bubbled goroutines
Use the synctest bubble ID to identify bubbles in traces,
rather than the goroutine ID of the bubble's root goroutine.
Some waitReasons include a "(synctest)" suffix to distinguish
a durably blocking state from a non-durable one. For example,
"chan send" vs. "chan ... | [
{
"path": "src/runtime/runtime2.go",
"patch": "@@ -1093,10 +1093,10 @@ const (\n \twaitReasonGCWeakToStrongWait // \"GC weak to strong wait\"\n \twaitReasonSynctestRun // \"synctest.Run\"\n \twaitReasonSynctestWait // \"synctest.Wai... | 2025-06-05T21:21:47 |
facebook/react | 896d1b00273958ddad6cb8b1fafae3cd13cced5a | b11074772b39c65189d9e923f5830f727b1ee06d | [dx] Improve error message from InferReferenceEffects
ghstack-source-id: 06265d9676b671a5b02ca05433a219dd219be4f1
Pull Request resolved: https://github.com/facebook/react-forget/pull/2883 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts",
"patch": "@@ -541,8 +541,9 @@ class InferenceState {\n error: {\n reason,\n description:\n- place.identifier.name !== null\n- ? `Found mutat... | 2024-04-22T15:14:35 |
electron/electron | 262723e3948197b26f9c2b9bc245ca0bb7e31f36 | 6697042c0ab61ac55e91251427a131792de0358e | build: fix building content_unittests (#40491)
chore: fix building content_unittests | [
{
"path": "patches/chromium/allow_disabling_blink_scheduler_throttling_per_renderview.patch",
"patch": "@@ -5,6 +5,23 @@ Subject: allow disabling blink scheduler throttling per RenderView\n \n This allows us to disable throttling for hidden windows.\n \n+diff --git a/content/browser/renderer_host/navigation... | 2023-11-10T16:50:28 |
vercel/next.js | 91da00336c244858f2503b57aa29805e3ae24aa1 | e3e21977ede164c4a9983d4c437d4b64d44559fa | fix: remove a few old references to 'next lint' (#82800) | [
{
"path": "docs/01-app/01-getting-started/01-installation.mdx",
"patch": "@@ -66,7 +66,7 @@ Then, add the following scripts to your `package.json` file:\n \"dev\": \"next dev\",\n \"build\": \"next build\",\n \"start\": \"next start\",\n- \"lint\": \"next lint\"\n+ \"lint\": \"eslint\"\n ... | 2025-08-19T20:56:46 |
nodejs/node | 66a2cb210a6b95a5b09b459edd85b1220137105a | 668e52339261ec21c7388884620987914c833395 | test: deflake test/pummel/test-timers.js
PR-URL: https://github.com/nodejs/node/pull/55098
Fixes: https://github.com/nodejs/node/issues/55092
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "test/pummel/test-timers.js",
"patch": "@@ -36,7 +36,7 @@ const WINDOW = 200; // Why does this need to be so big?\n assert.ok(diff > 0);\n console.error(`diff: ${diff}`);\n \n- assert.ok(1000 <= diff && diff < 1000 + WINDOW);\n+ assert.ok(Math.abs(diff - 1000) < WINDOW);\n }), 1000... | 2024-09-27T06:16:20 |
golang/go | 049a5e603634dfdbc73b4255c7e72eabc3922d5b | ac1686752bf65eaefebb340bd642177e2cc27bde | runtime: return a different bubble deadlock error when main goroutine is done
The synctest.Test function waits for all goroutines in a bubble to
exit before returning. If there is ever a point when all goroutines
in a bubble are durably blocked, it panics and reports a deadlock.
Panic with a different message dependi... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -488,7 +488,7 @@ func TestDeadlockRoot(t *testing.T) {\n }\n \n func TestDeadlockChild(t *testing.T) {\n-\tdefer wantPanic(t, \"deadlock: all goroutines in bubble are blocked\")\n+\tdefer wantPanic(t, \"deadlock: main bubble goroutine has exit... | 2025-06-05T20:55:35 |
facebook/react | 857ee8cdf9af81bc94a7f04528fbda7fb2510eb4 | ea26e38e33bffeba1ecc42688d7e8cd7e0da1c02 | Don't minify symbols in production builds (#28881)
This disables symbol renaming in production builds. The original
variable and function names are preserved. All other forms of
compression applied by Closure (dead code elimination, inlining, etc)
are unchanged — the final program is identical to what we were produ... | [
{
"path": "dangerfile.js",
"patch": "@@ -43,8 +43,8 @@ const SIGNIFICANCE_THRESHOLD = 0.002;\n const CRITICAL_ARTIFACT_PATHS = new Set([\n // We always report changes to these bundles, even if the change is\n // insignificant or non-existent.\n- 'oss-stable/react-dom/cjs/react-dom.production.min.js',\n... | 2024-04-20T15:23:46 |
electron/electron | 1ba535296efe87ecf0362759d2fab29b2af8b755 | e8d9294d9d51ca0e2eaae22d4f57561e79a08833 | docs: fix `hid-device-{added|removed|revoked}` event types (#40462)
docs: fix hid-device-{added|removed|revoked} types | [
{
"path": "docs/api/session.md",
"patch": "@@ -266,7 +266,7 @@ Returns:\n \n * `event` Event\n * `details` Object\n- * `device` [HIDDevice[]](structures/hid-device.md)\n+ * `device` [HIDDevice](structures/hid-device.md)\n * `frame` [WebFrameMain](web-frame-main.md)\n \n Emitted after `navigator.hid.requ... | 2023-11-07T22:26:35 |
vercel/next.js | 408920c566e3419d24488d9770d64eb22217c24b | 4e9cc18917a3cc300b8a8b21e1b570ab775edb2b | fix: possible null access (#82799)
<!-- 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 D... | [
{
"path": "packages/next-codemod/transforms/next-lint-to-eslint-cli.ts",
"patch": "@@ -484,9 +484,10 @@ function updateExistingFlatConfig(\n exportedArray.value.elements.splice(insertIndex, 0, ignoresConfig)\n } else {\n // Merge with existing ignores\n- const existingIgnoresObj =\n- expor... | 2025-08-19T20:40:56 |
nodejs/node | 17fd32790ad5e229c54617dc36de434fbf41a199 | da5887d8e9910b8eb0cfd7ddbf762fbe6928d0df | buffer: make File cloneable
Fixes: https://github.com/nodejs/node/issues/47612
PR-URL: https://github.com/nodejs/node/pull/47613
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matteo Collina... | [
{
"path": "doc/api/buffer.md",
"patch": "@@ -5094,6 +5094,9 @@ added:\n - v19.2.0\n - v18.13.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/47613\n+ description: Makes File instances cloneable.\n - version: v20.0.0\n pr-url: https://github.com/nodejs/nod... | 2024-09-26T08:24:39 |
golang/go | da0e8c4517178f545ee78b11e3d91e1daa7ce07a | 7800f4f0adbc749be95d13be48524e9702c50bbc | cmd/compile: relax reshaping condition
CL 641955 changes the Unified IR reader to not doing shapify when
reading reshaping expression. However, this condition only matters with
pointer type shaping, which will lose the original type, causes the
reshaping ends up with a completely different type.
This CL relaxes the c... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -1014,7 +1014,25 @@ func (pr *pkgReader) objDictIdx(sym *types.Sym, idx index, implicits, explicits\n \t// arguments.\n \tfor i, targ := range dict.targs {\n \t\tbasic := r.Bool()\n-\t\tif dict.shaped && !pr.reshaping {\n+\t\tisPointerShape ... | 2025-06-03T14:35:20 |
facebook/react | 9f9f4a9f1138eabdc466cc10544d6b0727dca027 | 07ba52bc1a09d7650685fab1c0da01e208ea96b9 | Fix gating mode hoisting check to skip type references
ghstack-source-id: f83e9e28c1cdf31dba718e62db12aaa3a5f9ddab
Pull Request resolved: https://github.com/facebook/react-forget/pull/2876 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -758,6 +758,18 @@ function checkFunctionReferencedBeforeDeclarationAtTopLevel(\n const errors = new CompilerError();\n \n program.traverse({\n+ TypeAnnotation(path) {\n+ path.skip();\n+ },\n+ TS... | 2024-04-19T22:16:19 |
rust-lang/rust | 18a707fc8e8126917c74982954b07b1adacdde6b | 3c9faa0d037b9eecda4a440cc482ff7f960fb8a5 | Revert "Fix an ICE in the vtable iteration for a trait reference"
The ICE fix appears to be unsound, causing a miscompilation involving
`dyn Trait` and `async {}` which induces segfaults in safe Rust code.
As the patch only hid an ICE, it does not seem worth the risk.
This reverts commit 8afd63610b0a261d3c39e24140c6a... | [
{
"path": "compiler/rustc_trait_selection/src/traits/vtable.rs",
"patch": "@@ -12,7 +12,7 @@ use rustc_span::DUMMY_SP;\n use smallvec::{SmallVec, smallvec};\n use tracing::debug;\n \n-use crate::traits::is_vtable_safe_method;\n+use crate::traits::{impossible_predicates, is_vtable_safe_method};\n \n #[derive... | 2026-02-17T01:41:30 |
electron/electron | b55d7f4a16293164693618b8a0822370f7f4d46c | 7999ea39e2ee9702e64e4125e8e89c314e9f468f | fix: Do not activate app when calling focus on inactive panel window (#40307)
* fix: Do not activate app when calling focus on inactive panel window
* Use activate
* Use "activate" for all windows | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -469,7 +469,20 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n return;\n \n if (focus) {\n- [[NSApplication sharedApplication] activateIgnoringOtherApps:NO];\n+ // On macOS < Sonoma, \"activateIgnori... | 2023-11-06T21:38:12 |
vercel/next.js | 4e9cc18917a3cc300b8a8b21e1b570ab775edb2b | c57fe2561cda36f8a5abb41a94ea1a3f0a094226 | fix: don't fail with amp config in JS (#82798)
Because tsc doesn't infer string literal types in JS files
---------
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "packages/next/src/server/lib/router-utils/typegen.ts",
"patch": "@@ -475,7 +475,7 @@ export function generateValidatorFile(\n * Validated at build-time by parsePagesSegmentConfig.\n */\n config?: {\n- amp?: boolean | 'hybrid'\n+ amp?: boolean | 'hybrid' | string // necessary for JS\... | 2025-08-19T20:40:39 |
nodejs/node | da5887d8e9910b8eb0cfd7ddbf762fbe6928d0df | 9bb6a1a790beb9c6a046750b36f953d50791066b | buffer: extract Blob's .arrayBuffer() & webidl changes
- Extracts Blob.prototype.arrayBuffer so it cannot be
overridden in .text(), etc.
- Make .bytes() enumerable. I guess the WPT runner is
not running the idlharness tests?
- Make .text() return a Promise, rather than being
explicitly async. This is a non-docum... | [
{
"path": "lib/internal/blob.js",
"patch": "@@ -273,54 +273,32 @@ class Blob {\n if (!isBlob(this))\n return PromiseReject(new ERR_INVALID_THIS('Blob'));\n \n- const { promise, resolve, reject } = createDeferredPromise();\n- const reader = this[kHandle].getReader();\n- const buffers = [];... | 2024-09-26T05:53:58 |
golang/go | 7800f4f0adbc749be95d13be48524e9702c50bbc | d184f8dc020ac635cea02c046ab1d0b87dfd624d | log/slog: fix level doc on handlers
Fixed doc on {JSON,Text}Handler.Handle: the level is never omitted.
Fixes #73943.
Change-Id: Ia470cbe5d713ab18dd80eeea1c0ab8f5e6d30f3f
Reviewed-on: https://go-review.googlesource.com/c/go/+/680055
Auto-Submit: Jonathan Amsterdam <jba@google.com>
LUCI-TryBot-Result: Go LUCI <golang... | [
{
"path": "src/log/slog/json_handler.go",
"patch": "@@ -63,9 +63,7 @@ func (h *JSONHandler) WithGroup(name string) Handler {\n // Otherwise, the key is \"time\"\n // and the value is output as with json.Marshal.\n //\n-// If the Record's level is zero, the level is omitted.\n-// Otherwise, the key is \"leve... | 2025-06-08T12:49:25 |
rust-lang/rust | d54a023c69d095d1185a7303456672656bda25f9 | b28ebc87a8716c561cfbc1913e5c146975971d22 | [cg_clif]: Fix codegen of f128 to i128 casts
Correct name for intrinsic that converts f128 to u128
Use `to_signed` instead of `from_signed` to ensure proper intrinsic
selected for u128/i128 | [
{
"path": "src/codegen_f16_f128.rs",
"patch": "@@ -208,7 +208,7 @@ pub(crate) fn codegen_cast(\n let ret_ty = if to_ty.bits() < 32 { types::I32 } else { to_ty };\n let name = format!(\n \"__fix{sign}tf{size}i\",\n- sign = if from_signed { \"\" } else { \"un\" },\n+ ... | 2026-02-12T20:38:13 |
facebook/react | 0e0b69321a6fcfe8a3eaae3b1016beb110437b38 | f5ce642deed7c74c5ae5df54ec4340a8d028eac9 | Run Closure on non-minified prod builds, too (#28827)
In #26446 we started publishing non-minified versions of our production
build artifacts, along with source maps, for easier debugging of React
when running in production mode.
The way it's currently set up is that these builds are generated
*before* Closure c... | [
{
"path": "package.json",
"patch": "@@ -94,6 +94,7 @@\n \"shelljs\": \"^0.8.5\",\n \"signedsource\": \"^2.0.0\",\n \"targz\": \"^1.0.1\",\n+ \"terser\": \"^5.30.3\",\n \"through2\": \"^3.0.1\",\n \"tmp\": \"^0.1.0\",\n \"typescript\": \"^3.7.5\",",
"additions": 1,
"deletio... | 2024-04-19T18:22:38 |
nodejs/node | 02cdf7b8098baf5c22d35a1eecfa0a009dcc1709 | 0f7bdcc17fbc7098b89f238f4bd8ecad9367887b | src: decode native error messages as UTF-8
The native error messages can sometimes contain e.g. path content
that are typically passed in as chars with UTF8-encoded code points.
The native error throwing code previously always decode the chars
as Latin-1, which would be incorrect.
PR-URL: https://github.com/nodejs/no... | [
{
"path": "src/node_errors.h",
"patch": "@@ -119,7 +119,11 @@ void OOMErrorHandler(const char* location, const v8::OOMDetails& details);\n std::string message = SPrintF(format, std::forward<Args>(args)...); \\\n v8::Local<v8::String> js_code = OneByteString(isolate, #code); \\\n ... | 2024-09-25T21:56:35 |
electron/electron | 5b18d90597a4a9fd837125786ac29af2151d6931 | f501dabc8064fa441e959d2203c706801aa21a22 | fix: crash when unloading some WebViews (#40400) | [
{
"path": "shell/browser/web_view_guest_delegate.cc",
"patch": "@@ -40,10 +40,6 @@ void WebViewGuestDelegate::AttachToIframe(\n \n content::WebContents* guest_web_contents = api_web_contents_->web_contents();\n \n- // Force a refresh of the webPreferences so that OverrideWebkitPrefs runs on\n- // the ne... | 2023-11-03T14:36:25 |
golang/go | d184f8dc020ac635cea02c046ab1d0b87dfd624d | 0ccfbc834a489f92745613b2e06275c2cfe6ace0 | runtime: check for gsignal in racecall on loong64
This issue has been fixed for amd64, arm64 and other platforms
in CL 643875, but it was missed when the race support was
submitted for loong64.
Fixes #71395.
Change-Id: I678f381e868214f1b3399be43187db49e1660933
Reviewed-on: https://go-review.googlesource.com/c/go/+/6... | [
{
"path": "src/runtime/race_loong64.s",
"patch": "@@ -461,8 +461,13 @@ TEXT\tracecall<>(SB), NOSPLIT|NOFRAME, $0-0\n \t// Switch to g0 stack.\n \tMOVV\tR3, R23\t// callee-saved, preserved across the CALL\n \tMOVV\tR1, R24\t// callee-saved, preserved across the CALL\n+\n+\t// Switch to g0 stack if we aren't ... | 2025-06-05T11:23:55 |
rust-lang/rust | 7be024fc06538914615971c2c5b2c964dde5551f | 67799c97393c82a6fd378e460cfd3996fc461020 | [cg_clif]: Fix codegen of f128 to i128 casts
Correct name for intrinsic that converts f128 to u128
Use `to_signed` instead of `from_signed` to ensure proper intrinsic
selected for u128/i128 | [
{
"path": "compiler/rustc_codegen_cranelift/src/codegen_f16_f128.rs",
"patch": "@@ -208,7 +208,7 @@ pub(crate) fn codegen_cast(\n let ret_ty = if to_ty.bits() < 32 { types::I32 } else { to_ty };\n let name = format!(\n \"__fix{sign}tf{size}i\",\n- sign = if from_signed... | 2026-02-12T20:38:13 |
vercel/next.js | c57fe2561cda36f8a5abb41a94ea1a3f0a094226 | ad48b8f42c2fd0ed31e3f0f57906b351c51316f4 | feat: add a codemod to migrate from the deprecated "next lint" command (#82685)
## Add codemod to migrate from `next lint` to ESLint CLI
This PR introduces a new codemod `next-lint-to-eslint-cli` that helps
users migrate away from the deprecated `next lint` command to using
ESLint directly, in preparation for Next.js... | [
{
"path": "docs/01-app/02-guides/upgrading/codemods.mdx",
"patch": "@@ -24,6 +24,73 @@ Replacing `<transform>` and `<path>` with appropriate values.\n \n ## Codemods\n \n+### 16.0\n+\n+#### Migrate from `next lint` to ESLint CLI\n+\n+##### `next-lint-to-eslint-cli`\n+\n+```bash filename=\"Terminal\"\n+npx @... | 2025-08-19T20:27:17 |
golang/go | 0ccfbc834a489f92745613b2e06275c2cfe6ace0 | 78eadf5b3de568297456fe137b65ff16e8cc8bb6 | os/signal: doc link to syscall.EPIPE
Add godoc link for EPIPE error.
Change-Id: I5df35f700684510328f92bb5d4946c5123ba5f2c
Reviewed-on: https://go-review.googlesource.com/c/go/+/667757
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Michael Knyszek <mknysz... | [
{
"path": "src/os/signal/doc.go",
"patch": "@@ -98,12 +98,13 @@ the behavior depends on the file descriptor number. A write to a\n broken pipe on file descriptors 1 or 2 (standard output or standard\n error) will cause the program to exit with a SIGPIPE signal. A write\n to a broken pipe on some other file ... | 2025-04-24T14:46:44 |
facebook/react | 682f5a920a238ff87a317689d3f7e20fb3117fa6 | a9732d65b48b73c1dabb3e3d218eed7d3a1885cc | [dx] Update capitalized call error messages
ghstack-source-id: dbc012018ecc73007dfb3e745615605512ab6867
Pull Request resolved: https://github.com/facebook/react-forget/pull/2870 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateNoCapitalizedCalls.ts",
"patch": "@@ -49,7 +49,8 @@ export function validateNoCapitalizedCalls(fn: HIRFunction): void {\n const calleeName = capitalLoadGlobals.get(calleeIdentifier);\n if (calleeName != null) {... | 2024-04-18T18:07:10 |
nodejs/node | 0f7bdcc17fbc7098b89f238f4bd8ecad9367887b | 2118e32d9b6c0fa1eea852b3114d65706f33cc51 | test: fix test-tls-junk-closes-server
Refs: https://github.com/nodejs/node/issues/53382
TLS spec seems to indicate there should should be a response
sent when TLS handshake fails. See
https://datatracker.ietf.org/doc/html/rfc8446#page-85
When compiled with OpenSSL32 we see the
the following response '15 03 03 00 02 ... | [
{
"path": "test/parallel/test-tls-junk-closes-server.js",
"patch": "@@ -39,6 +39,22 @@ const server = tls.createServer(options, common.mustNotCall());\n server.listen(0, common.mustCall(function() {\n const c = net.createConnection(this.address().port);\n \n+ c.on('data', function() {\n+ // We must co... | 2024-09-25T21:28:05 |
rust-lang/rust | 67799c97393c82a6fd378e460cfd3996fc461020 | 71e00273c0921e1bc850ae8cc4161fbb44cfa848 | core: Implement feature `float_exact_integer_constants`
Implement accepted ACP for `MAX_EXACT_INTEGER` and `MIN_EXACT_INTEGER`
on `f16`, `f32`, `f64`, and `f128`
Add tests to `coretests/tests/floats/mod.rs`
Disable doc tests for i586 since float<->int casts return incorrect
results | [
{
"path": "library/core/src/num/f128.rs",
"patch": "@@ -275,6 +275,70 @@ impl f128 {\n #[unstable(feature = \"f128\", issue = \"116909\")]\n pub const NEG_INFINITY: f128 = -1.0_f128 / 0.0_f128;\n \n+ /// Maximum integer that can be represented exactly in an [`f128`] value,\n+ /// with no other... | 2026-02-12T02:27:51 |
electron/electron | bc1ba1fe9d34044ffc6e7422e85e2dc4e7e1eafe | 83892ab995fb7a0b60ebc0c8837b2dba35ec5262 | chore: bump chromium to 120.0.6099.0 (main) (#40316)
* chore: bump chromium in DEPS to 120.0.6086.0
* chore: update patches
* chore: rename FrameSubscriber::OnNewCropVersion()
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4905819
just a simple renaming
* chore: rename ToJsTime() to .In... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '120.0.6078.0',\n+ '120.0.6099.0',\n 'node_version':\n 'v18.18.2',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "docs/a... | 2023-11-01T14:02:12 |
facebook/react | a9732d65b48b73c1dabb3e3d218eed7d3a1885cc | da6c4612a36d8358fc735f75bbe2e7d9ff64a3c4 | [dx] Improve error messages for unpreserved memoization
ghstack-source-id: ff5bcaa7ab219035f57dc3dc3396c9a324896d4b
Pull Request resolved: https://github.com/facebook/react-forget/pull/2869 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -23,7 +23,7 @@ export enum ErrorSeverity {\n */\n InvalidConfig = \"InvalidConfig\",\n /**\n- * Code that can reasonably occur and that doesn't break any rules, but is unsafe to perserve\n+ * Code that can ... | 2024-04-18T16:49:27 |
nodejs/node | 2118e32d9b6c0fa1eea852b3114d65706f33cc51 | 5ed32960512dca80e6c4e1489568d88c6ac3e0ea | test: fix more tests that fail when path contains a space
PR-URL: https://github.com/nodejs/node/pull/55088
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com> | [
{
"path": "test/parallel/test-child-process-execfile.js",
"patch": "@@ -10,7 +10,7 @@ const os = require('os');\n \n const fixture = fixtures.path('exit.js');\n const echoFixture = fixtures.path('echo.js');\n-const execOpts = { encoding: 'utf8', shell: true };\n+const execOpts = { encoding: 'utf8', shell: t... | 2024-09-25T21:27:50 |
vercel/next.js | 523ae09b0b684f4795f231feae49f90df9844d97 | c970d95136dbff4a11b8a096372a7ddfee561618 | [Cache Components] Faster partial hydration in PPR resumes (#82742)
This PR fixes some HTML/RSC stream interleaving logic that, under some
circumstances, resulted in hydration of a resumed page being delayed
unnecessarily.
Fixes NAR-284
---
When SSRing a page, we're mixing two streams -- the HTML stream, and the
RS... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -107,6 +107,7 @@ import {\n import {\n DynamicState,\n type PostponedState,\n+ DynamicHTMLPreludeState,\n parsePostponedState,\n } from './postponed-state'\n import {\n@@ -2291,8 +2292,8 @@ async function renderToStream(\n ... | 2025-08-19T18:31:28 |
rust-lang/rust | 7e14260fd1f4a9bea9d6078428cd18b58c7b93d9 | 71e00273c0921e1bc850ae8cc4161fbb44cfa848 | `probe_op` silence ambiguity errors if tainted
see the `proc-macro/quote/not-repeatable.rs` test for a case where this is useful | [
{
"path": "compiler/rustc_hir_typeck/src/method/probe.rs",
"patch": "@@ -490,6 +490,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n .unwrap_or_else(|_| span_bug!(span, \"instantiating {:?} failed?\", ty));\n let ty = self.resolve_vars_if_possible(ty.value);\n let... | 2026-02-16T19:35:43 |
golang/go | 78eadf5b3de568297456fe137b65ff16e8cc8bb6 | 4d1c255f159d90557b43ede07f8b9a209e1fb49c | all: update vendored dependencies [generated]
The Go 1.25 RC is due soon. This is the time to once again update all
golang.org/x/... module versions that contribute packages to the std and
cmd modules in the standard library to latest master versions.
For #36905.
[git-generate]
go install golang.org/x/build/cmd/upda... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -4,18 +4,18 @@ go 1.25\n \n require (\n \tgithub.com/google/pprof v0.0.0-20250208200701-d0013a598941\n-\tgolang.org/x/arch v0.14.0\n-\tgolang.org/x/build v0.0.0-20250211223606-a5e3f75caa63\n-\tgolang.org/x/mod v0.24.1-0.20250508140430-9d3333156f46\n-\tgolang.org/x/sy... | 2025-06-04T19:35:31 |
facebook/react | da6c4612a36d8358fc735f75bbe2e7d9ff64a3c4 | e3d0f4bce842e8687f2bb2032b167549d30126fb | [dx] Consistently use backticks for quoting input in error messages
ghstack-source-id: 34e5507c08fb883c987c88f415158fac781a5f8e
Pull Request resolved: https://github.com/facebook/react-forget/pull/2863 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -494,7 +494,7 @@ function getReactFunctionType(\n default: {\n assertExhaustive(\n pass.opts.compilationMode,\n- `Unexpected compilationMode '${pass.opts.compilationMode}'`\n+ `Une... | 2024-04-18T16:21:24 |
electron/electron | 83892ab995fb7a0b60ebc0c8837b2dba35ec5262 | 39d36e4462a0b84c469c72ddcfcf5c426a58482d | refactor: ensure IpcRenderer is not bridgable (#40330)
* refactor: ensure IpcRenderer is not bridgable
* chore: add notes to breaking-changes
* spec: fix test that bridged ipcrenderer | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -14,6 +14,19 @@ This document uses the following convention to categorize breaking changes:\n \n ## Planned Breaking API Changes (29.0)\n \n+### Behavior Changed: `ipcRenderer` can no longer be sent over the `contextBridge`\n+\n+Attempting to send `ipcRende... | 2023-10-31T21:29:40 |
vercel/next.js | 64b69ff0a6faafc6859db4ce84fe48bf37e50018 | b6b629441d0df6ebf5cea1c58fd46d8c01f471fc | Avoid duplicate WebSocket connection for global error pages (#82788)
When we're rendering a global error page (something with `<html
id="__next_error__">`), we are wrapping the root element in a component
that renders a top-level dev overlay to show the global error. The
function that's wrapping this element was previ... | [
{
"path": "packages/next/src/client/app-index.tsx",
"patch": "@@ -276,11 +276,13 @@ export function hydrate(\n let element = reactEl\n // Server rendering failed, fall back to client-side rendering\n if (process.env.NODE_ENV !== 'production') {\n- const { createRootLevelDevOverlayElement } ... | 2025-08-19T16:47:29 |
nodejs/node | bdddc04dff8cc1868c6e9d6bf97f62e0d3dff371 | 18800da280f87ebc8ad60afcbd8ce48fa2127bf6 | test: fix `assertSnapshot` when path contains a quote
PR-URL: https://github.com/nodejs/node/pull/55087
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> | [
{
"path": "test/common/assertSnapshot.js",
"patch": "@@ -25,7 +25,7 @@ function replaceWindowsPaths(str) {\n }\n \n function replaceFullPaths(str) {\n- return str.replaceAll(path.resolve(__dirname, '../..'), '');\n+ return str.replaceAll('\\\\\\'', \"'\").replaceAll(path.resolve(__dirname, '../..'), '');\... | 2024-09-25T19:42:12 |
facebook/react | e3d0f4bce842e8687f2bb2032b167549d30126fb | 8c8bd00c04177eedebf31b3284f9c2a2b4958d66 | [dx] Update NoRefAccessInRender error messages
ghstack-source-id: a5623aa4f29e15c89d2dfbe855bab9843e240a8a
Pull Request resolved: https://github.com/facebook/react-forget/pull/2862 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateNoRefAccesInRender.ts",
"patch": "@@ -120,7 +120,7 @@ function validateNoRefAccessInRenderImpl(\n errors.push({\n severity: ErrorSeverity.InvalidReact,\n reason:\n- \"This fun... | 2024-04-18T16:21:23 |
rust-lang/rust | 3099121bb5fb7cd3d29ffbc4acced9e356dc5ad9 | 71e00273c0921e1bc850ae8cc4161fbb44cfa848 | Rework explanation of CLI lint level flags
I think the previous wording as either wrong or confusing. I would
consider the CLI flags at a *lower* ranking, since source attributes are
able to override the CLI flag. | [
{
"path": "src/doc/rustc/src/lints/levels.md",
"patch": "@@ -393,7 +393,7 @@ Here’s how these different lint controls interact:\n warning: 1 warning emitted\n ```\n \n-3. [CLI level flags](#via-compiler-flag) take precedence over attributes.\n+3. [CLI level flags](#via-compiler-flag) override the def... | 2026-02-16T18:47:35 |
vercel/next.js | 71f323d07b63e29fa183fcd7346332550f5c93b0 | a745826b2cb0192db9ae8c404dc75e2c6f39b6f9 | [Cache Components] Fix HMR for nested pages (#82776)
To bypass existing caches when editing server components, we store an
HMR hash in a session cookie. The cookie is sent to the server when
refetching the RSC, and included in the cache key of all `'use cache'`
functions (see #75474).
Before this fix, we weren't sett... | [
{
"path": "packages/next/src/client/dev/hot-reloader/app/hot-reloader-app.tsx",
"patch": "@@ -389,7 +389,7 @@ function processMessage(\n \n // Store the latest hash in a session cookie so that it's sent back to the\n // server with any subsequent requests.\n- document.cookie = `${NEXT_HMR_R... | 2025-08-19T14:13:54 |
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 |
electron/electron | 39d36e4462a0b84c469c72ddcfcf5c426a58482d | f5262060957b7e32b33d64b3529a69417bdb5c26 | build: actually show github upload output if verbose is true. (#40393)
* build: actually show github upload output if verbose is true.
* chore: fixup lint | [
{
"path": "script/release/uploaders/upload.py",
"patch": "@@ -363,8 +363,10 @@ def upload_io_to_github(release, filename, filepath, version):\n (filename))\n script_path = os.path.join(\n ELECTRON_DIR, 'script', 'release', 'uploaders', 'upload-to-github.ts')\n- execute([TS_NODE, script_path, fi... | 2023-10-31T21:05:16 |
nodejs/node | aac8ba7bd7a361e06f6c08978644b9904c81bcb6 | 7d0ce254e8849f8f1fd05c966de998bbee458491 | test_runner: fix mocking modules with quote in their URL
PR-URL: https://github.com/nodejs/node/pull/55083
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tierney Cyren <hello@bnb.im>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "lib/internal/test_runner/mock/loader.js",
"patch": "@@ -139,7 +139,7 @@ async function createSourceFromMock(mock, format) {\n const { exportNames, hasDefaultExport, url } = mock;\n const useESM = format === 'module' || format === 'module-typescript';\n const source = `${testImportSource(use... | 2024-09-25T17:34:58 |
facebook/react | 8c8bd00c04177eedebf31b3284f9c2a2b4958d66 | c84ff16afba0d5b72d0252e0e96be71fcb16848f | [dx] Update error messages for manual memo validation
ghstack-source-id: 1a88145049d7f7acb01748ad6ec4dd1500781766
Pull Request resolved: https://github.com/facebook/react-forget/pull/2861 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Inference/DropManualMemoization.ts",
"patch": "@@ -282,14 +282,14 @@ function extractManualMemoizationArgs(\n >;\n if (fnPlace == null) {\n CompilerError.throwInvalidReact({\n- reason: `Expected ${kind} call to pass a callback function`... | 2024-04-18T16:21:22 |
vercel/next.js | 73fadcac70aeda0766fa45134f557816cf336c89 | bccdb3fd1135644aa70a5a8483a63024ce7bbe33 | Turbopack: don't look into fallback import map twice (#82786)
Fixes a panic where we tried to lookup a `Pattern::Alternatives` in a `fallback_import_map.lookup()` (but the API is that the caller is in charge of unwrapping the alternative and calling lookup multiple times). We can completely skip this in this case, bec... | [
{
"path": "turbopack/crates/turbopack-core/src/resolve/mod.rs",
"patch": "@@ -2094,27 +2094,31 @@ async fn resolve_internal_inline(\n }\n };\n \n- // Apply fallback import mappings if provided\n- if let Some(import_map) = &options_value.fallback_import_map\n- && ... | 2025-08-19T13:02:08 |
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 | 7d0ce254e8849f8f1fd05c966de998bbee458491 | 00d4f8073cf4c436ac6647431d15f91d8a4750b0 | test: fix some tests when path contains `%`
Tests should pass even if the path where the repo is cloned contains
URL-significant chars.
PR-URL: https://github.com/nodejs/node/pull/55082
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Mohammed Keyvanzadeh... | [
{
"path": "test/common/inspector-helper.js",
"patch": "@@ -255,8 +255,8 @@ class InspectorSession {\n const callFrame = message.params.callFrames[0];\n const location = callFrame.location;\n const scriptPath = this._scriptsIdsByUrl.get(location.scriptId);\n- assert.strictEqual(scriptP... | 2024-09-25T17:25:33 |
electron/electron | e1c413c845a8fa62e9ffd8f566d23ff968968df2 | fcdd5cba71b82c13c4f64a3e529dea91ed72d23c | build: update deps to fix yarn audit (#40376) | [
{
"path": "yarn.lock",
"patch": "@@ -2062,14 +2062,7 @@ debug@2.6.9:\n dependencies:\n ms \"2.0.0\"\n \n-debug@^3.1.0:\n- version \"3.2.6\"\n- resolved \"https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b\"\n- integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBb... | 2023-10-31T18:05:12 |
facebook/react | 36e62c6034281f23e5eb5aac776f5835faf06bfb | 4fdbac075fd1e804080068b3fd0e86528bf1c9b0 | delete useless eslint-disable-next-line (#28859)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, pleas... | [
{
"path": "packages/react-reconciler/src/ReactFiberCompleteWork.js",
"patch": "@@ -329,7 +329,6 @@ function appendAllChildrenToContainer(\n // children to find all the terminal nodes.\n let node = workInProgress.child;\n while (node !== null) {\n- // eslint-disable-next-line no-labels\n ... | 2024-04-18T15:49:55 |
vercel/next.js | 49371dc364eecca41e52dfc5f6bf1b6cda3ed83d | 15653f3a280b61734ba6ec80542284ed06ba23cf | [sourcemaps] Fix sourcemapping in Redbox on Windows (#82078) | [
{
"path": "crates/napi/src/next_api/project.rs",
"patch": "@@ -41,7 +41,7 @@ use turbo_tasks_backend::{BackingStorage, db_invalidation::invalidation_reasons}\n use turbo_tasks_fs::{\n DiskFileSystem, FileContent, FileSystem, FileSystemPath, util::uri_from_file,\n };\n-use turbo_unix_path::get_relative_p... | 2025-08-19T09:18:19 |
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 |
electron/electron | fcdd5cba71b82c13c4f64a3e529dea91ed72d23c | 4b1c31e4dbd00cd58e159cbc2ab41de3b1ce3a86 | fix: `navigator.keyboard.lock()` fullscreen exit handling (#40365)
fix: navigator.keyboard.lock() fullscreen exit handling | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1334,12 +1334,6 @@ bool WebContents::HandleKeyboardEvent(\n bool WebContents::PlatformHandleKeyboardEvent(\n content::WebContents* source,\n const content::NativeWebKeyboardEvent& event) {\n- // Escape exits tabbed fullscreen... | 2023-10-31T15:59:39 |
nodejs/node | 4c045351c12e1960a2f79befea1fcc4008400a86 | 7f480818b78602b4fc6ca704758befd5bed4c010 | lib: fix typos
PR-URL: https://github.com/nodejs/node/pull/55065
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "lib/internal/crypto/keys.js",
"patch": "@@ -88,7 +88,7 @@ for (const m of [[kKeyEncodingPKCS1, 'pkcs1'], [kKeyEncodingPKCS8, 'pkcs8'],\n encodingNames[m[0]] = m[1];\n \n // Creating the KeyObject class is a little complicated due to inheritance\n-// and the fact that KeyObjects should be transf... | 2024-09-25T14:35:18 |
facebook/react | c84ff16afba0d5b72d0252e0e96be71fcb16848f | 87993f333adf28003bca97a24507be6ddc13a2f4 | [dx] Update error message for reassigning globals
ghstack-source-id: 48ce4b55a8b4b5a22c8ec29f6787732ab2a67778
Pull Request resolved: https://github.com/facebook/react-forget/pull/2860 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -16,7 +16,7 @@ import {\n } from \"../CompilerError\";\n import { Err, Ok, Result } from \"../Utils/Result\";\n import { assertExhaustive, hasNode } from \"../Utils/utils\";\n-import { Environment } from \"./Environmen... | 2024-04-18T14:46:22 |
vercel/next.js | 15653f3a280b61734ba6ec80542284ed06ba23cf | 929d6fa37b066a4bbb72687c313d002afa68114f | Use `jsx` extension instead of `js` in global-error documentation (#82710) | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/error.mdx",
"patch": "@@ -153,9 +153,9 @@ export default function Error({ error, reset }) {\n \n ### Global Error\n \n-While less common, you can handle errors in the root layout or template using `global-error.js`, located in the root app director... | 2025-08-19T00:44:01 |
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 |
rust-lang/rust | b4e645fe5af113f6ec072e04d55b7eb742e236ca | 2219766af622ad1f051ca96ae40650106b1bd9bd | Support JSON target specs in bootstrap
JSON target specs were destabilized in
https://github.com/rust-lang/rust/pull/150151 and
https://github.com/rust-lang/rust/pull/151534. However, this broke
trying to build rustc itself with a JSON target spec. This is because in
a few places bootstrap is manually calling `rustc` ... | [
{
"path": "src/bootstrap/src/core/build_steps/compile.rs",
"patch": "@@ -543,6 +543,9 @@ pub fn std_cargo(\n // `MACOSX_DEPLOYMENT_TARGET`, `IPHONEOS_DEPLOYMENT_TARGET`, etc.\n let mut cmd = builder.rustc_cmd(cargo.compiler());\n cmd.arg(\"--target\").arg(target.rustc_target_arg());\... | 2026-02-15T19:10:23 |
nodejs/node | 61ad74fb0f2a9c4c5fb08f79f3dc2df1da9cd501 | 5c22d19f4430fcc2db0e4fb6547165e9973a4b56 | Revert "test: mark test-fs-watch-non-recursive flaky on Windows"
This reverts commit 2a871df3dfb8ea663ef5e1f8f62701ec51384ecb.
It has been almost three years since the test was marked flaky. Remove
the unstable designation to see if the problem persists on Windows.
Fixes: https://github.com/nodejs/node/issues/40728
... | [
{
"path": "test/pummel/pummel.status",
"patch": "@@ -7,8 +7,6 @@ prefix pummel\n [true] # This section applies to all platforms\n \n [$system==win32]\n-# https://github.com/nodejs/node/issues/40728\n-test-fs-watch-non-recursive: PASS,FLAKY\n \n [$system==macos]\n ",
"additions": 0,
"deletions": 2,
... | 2024-09-25T13:18:52 |
electron/electron | 4b1c31e4dbd00cd58e159cbc2ab41de3b1ce3a86 | 8210d0f90e1ea057f87c9dd1fedaaa8954942a17 | fix: implement missing applicationSupportsSecureRestorableState (#40296) | [
{
"path": "shell/browser/mac/electron_application_delegate.mm",
"patch": "@@ -198,4 +198,12 @@ - (void)application:(NSApplication*)application\n }\n }\n \n+// This only has an effect on macOS 12+, and requests any state restoration\n+// archive to be created with secure encoding. See the article at\n+// h... | 2023-10-31T14:22:58 |
facebook/react | 496e8733bb7fdee8f8678100c8b601ead8a2d23b | b5e5ce8e0a899345dab1ce71c74bc1d1c28c6a0d | convert circleci workflow devtools_regression_tests to github actions (#27800)
## Summary
This pull request converts the CircleCI workflows to GitHub actions
workflows. [Github Actions
Importer](https://github.com/github/gh-actions-importer) was used to
convert the workflows initially, then I edited them manuall... | [
{
"path": ".github/workflows/devtools_regression_tests.yml",
"patch": "@@ -0,0 +1,137 @@\n+name: facebook/react/devtools_regression_tests\n+on:\n+ schedule:\n+ - cron: 0 0 * * *\n+ push:\n+ branches:\n+ - main\n+ workflow_dispatch:\n+ inputs:\n+ prerelease_commit_sha:\n+ required:... | 2024-04-18T14:04:27 |
vercel/next.js | 8c11037ea6fe78d6717d25615b5d5a43728d8120 | 4efa10f051b6e13748cdcc9673c452d506dcc0cf | fix: make sure validator.ts uses relative paths for imports (#82761)
Previously, `.next/types/validator.ts` looked like this after a build:
```typescript
// Validate /Users/you/code/next.js/test/e2e/app-dir/typed-routes/app/dashboard/@team/page.tsx
{
const handler = {} as typeof import("/Users/you/code/next.js/test... | [
{
"path": "packages/next/src/server/lib/router-utils/route-types-utils.ts",
"patch": "@@ -179,29 +179,50 @@ export async function createRouteTypesManifest({\n appRouteHandlerRoutes: {},\n redirectRoutes: {},\n rewriteRoutes: {},\n- appRouteHandlers: new Set(appRouteHandlers.map(({ filePath })... | 2025-08-18T22:59:29 |
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 |
rust-lang/rust | 32d32b68912a07b0b47705d05cc0031d8038c672 | 9d850a0e308e376f7baccc2566fa50e360d3b892 | adjust clippy to fix some of the issues | [
{
"path": "clippy_utils/src/higher.rs",
"patch": "@@ -297,12 +297,12 @@ impl<'a> VecArgs<'a> {\n // `vec![elem; size]` case\n Some(VecArgs::Repeat(elem, size))\n },\n- (sym::slice_into_vec, [slice])\n- if let ExprKind:... | 2025-11-09T11:55:51 |
electron/electron | 30fbcfca7bb545023be8b1012bb54fed42fd3faa | 3f92a983156daa4e4c4d8ab7c7df90d861da2374 | chore: remove deprecated `gpu-process-crashed` event (#40255)
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> | [
{
"path": "docs/api/app.md",
"patch": "@@ -377,20 +377,6 @@ page.\n \n Emitted whenever there is a GPU info update.\n \n-### Event: 'gpu-process-crashed' _Deprecated_\n-\n-Returns:\n-\n-* `event` Event\n-* `killed` boolean\n-\n-Emitted when the GPU process crashes or is killed.\n-\n-**Deprecated:** This eve... | 2023-10-26T18:05:40 |
nodejs/node | 0b9249e335e7d8f5ae14f8a62095e7d54c475026 | 773e7c67cf357a152770b12a294d93fefcd83f0c | module: implement the "module-sync" exports condition
This patch implements a "module-sync" exports condition
for packages to supply a sycnrhonous ES module to the
Node.js module loader, no matter it's being required
or imported. This is similar to the "module" condition
that bundlers have been using to support `requi... | [
{
"path": "doc/api/modules.md",
"patch": "@@ -335,9 +335,12 @@ LOAD_PACKAGE_IMPORTS(X, DIR)\n 1. Find the closest package scope SCOPE to DIR.\n 2. If no scope was found, return.\n 3. If the SCOPE/package.json \"imports\" is null or undefined, return.\n-4. let MATCH = PACKAGE_IMPORTS_RESOLVE(X, pathToFileURL... | 2024-09-25T06:35:26 |
facebook/react | 87993f333adf28003bca97a24507be6ddc13a2f4 | 4666bf8c17b7af893157d91e7eeafed0d1a87b61 | [dx] Update suppression error messages
ghstack-source-id: 0c362a349de86a07b4e9e381b942939ce4a24e69
Pull Request resolved: https://github.com/facebook/react-forget/pull/2859 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Suppression.ts",
"patch": "@@ -164,12 +164,13 @@ export function suppressionsToCompilerError(\n switch (suppressionRange.source) {\n case \"Eslint\":\n reason =\n- \"React Compiler has bailed out of optimizing t... | 2024-04-18T01:25:40 |
vercel/next.js | 4669a15362b83ad974aaa9f8cec17664c46e9d02 | b421c9ff93487ffc1b963ba5d2edfcc52155b975 | fix(turbopack): webpack-loaders failed to resolve relative path (#82720)
fixed: #82106
The error was cause by the follow reason, when pass:
```ts
const nextConfig: NextConfig = {
/* config options here */
turbopack: {
rules: {
'*.txt': {
loaders: ['./test-file-loader.js'],
as: '*.js',
... | [
{
"path": "test/e2e/app-dir/webpack-loader-binary/next.config.js",
"patch": "@@ -5,7 +5,7 @@ const nextConfig = {\n turbopack: {\n rules: {\n '*.txt': {\n- loaders: [require.resolve('./test-file-loader.js')],\n+ loaders: ['./test-file-loader.js'],\n as: '*.js',\n },\n... | 2025-08-18T19:54:38 |
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 |
rust-lang/rust | e5ed8643b6983ff7ddbc3cb2a8712edb65115a87 | 5e65109f219f56b94544efdacf527bc2146a7f91 | adjust clippy to fix some of the issues | [
{
"path": "compiler/rustc_span/src/symbol.rs",
"patch": "@@ -2181,7 +2181,6 @@ symbols! {\n slice_from_raw_parts_mut,\n slice_from_ref,\n slice_get_unchecked,\n- slice_into_vec,\n slice_iter,\n slice_len_fn,\n slice_patterns,",
"additions": 0,
"... | 2025-11-09T11:55:51 |
electron/electron | 3f92a983156daa4e4c4d8ab7c7df90d861da2374 | 621b3ba897031319c214246ef6291ad1d3523f07 | fix: prevent `PopUpButtonHandler` premature dealloc (#40308)
fix: prevent PopUpButtonHandler dealloc | [
{
"path": "shell/browser/ui/file_dialog_mac.mm",
"patch": "@@ -66,14 +66,18 @@ - (void)selectFormat:(id)sender {\n \n // Manages the PopUpButtonHandler.\n @interface ElectronAccessoryView : NSView\n+@property(nonatomic, strong) PopUpButtonHandler* popUpButtonHandler;\n @end\n \n @implementation ElectronAcce... | 2023-10-26T15:40:02 |
nodejs/node | 0e52836c35e71a11805852caa530aad2547bf29e | 02571022996fa5951d8454a59f854538047f3417 | stream: set stream prototype to closest transferable superclass
PR-URL: https://github.com/nodejs/node/pull/55067
Fixes: https://github.com/nodejs/node/issues/54603
Refs: https://github.com/nodejs/node/pull/50107
Reviewed-By: Mattias Buelens <mattias@buelens.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "lib/internal/webstreams/readablestream.js",
"patch": "@@ -639,6 +639,7 @@ ObjectDefineProperties(ReadableStream, {\n });\n \n function InternalTransferredReadableStream() {\n+ ObjectSetPrototypeOf(this, ReadableStream.prototype);\n markTransferMode(this, false, true);\n this[kType] = 'Readab... | 2024-09-24T21:18:29 |
facebook/react | 4666bf8c17b7af893157d91e7eeafed0d1a87b61 | fc7467ac0ed735aefbfdddc7889d9f1b7aefccf1 | [dx] Improve BuildHIR error messages
ghstack-source-id: cbf62aec4e768249a8c7f44fe6f3852183127415
Pull Request resolved: https://github.com/facebook/react-forget/pull/2858 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -184,8 +184,9 @@ export function lower(\n directives = body.get(\"directives\").map((d) => d.node.value.value);\n } else {\n builder.errors.push({\n- reason: `Unexpected function body kind: ${body.type}}... | 2024-04-18T01:16:33 |
vercel/next.js | a406b7a32076faf5ee3808a0beb90f4d9e668801 | 508b1a46a813a0469519b235f283af637ee1a4d5 | Turbopack: use bail instead of panic (#82745)
This behaves more gracefully due to eventual consistency | [
{
"path": "turbopack/crates/turbopack-core/src/resolve/mod.rs",
"patch": "@@ -2693,7 +2693,7 @@ async fn resolve_into_package(\n };\n \n let Some(path) = path.as_constant_string() else {\n- todo!(\"pattern into an exports field is not implemented yet\");\n+... | 2025-08-18T17:46:05 |
rust-lang/rust | c259c4048a97329a70a7ec2dcd0e79fe2c36be68 | e823167aa6f7f03aea8e91208ce9bace8ad9ebf2 | compiletest: normalize stderr before SVG rendering
Element position is hardcoded in the rendered SVG. This means that any
change in element length (for instance, when substituting the path with
the `rust` checkout with `$DIR`) would not change the position and result
in buggy SVG being generated. Normalizing before SV... | [
{
"path": "src/tools/compiletest/src/runtest.rs",
"patch": "@@ -2379,15 +2379,22 @@ impl<'test> TestCx<'test> {\n _ => {}\n };\n \n- let stderr = if self.force_color_svg() {\n- anstyle_svg::Term::new().render_svg(&proc_res.stderr)\n- } else if explicit_format {\n... | 2026-02-14T19:52:42 |
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 |
electron/electron | f66d4c7ee01578ecdd52af6af52ec81a8dfbf844 | 514a9319b9d81fa1f374a193ecfbb793b6de28ad | fix: make sure classes in lib correctly implement Electron interfaces (#40291) | [
{
"path": "docs/api/crash-reporter.md",
"patch": "@@ -100,7 +100,7 @@ longer than the maximum length will be truncated.\n \n ### `crashReporter.getLastCrashReport()`\n \n-Returns [`CrashReport`](structures/crash-report.md) - The date and ID of the\n+Returns [`CrashReport | null`](structures/crash-report.md)... | 2023-10-25T18:02:15 |
nodejs/node | 29a4fcf918e783418e32efe30134cf861b495cd1 | 574f2dd517a0dbd2e85f8db067cc15822c772e85 | tty: fix links for terminal colors
PR-URL: https://github.com/nodejs/node/pull/54596
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "lib/internal/tty.js",
"patch": "@@ -60,9 +60,9 @@ const TERM_ENVS = {\n 'mosh': COLORS_16m,\n 'putty': COLORS_16,\n 'st': COLORS_16,\n- // https://github.com/da-x/rxvt-unicode/tree/v9.22-with-24bit-color\n+ // http://lists.schmorp.de/pipermail/rxvt-unicode/2016q2/002261.html\n 'rxvt-uni... | 2024-09-24T20:26:59 |
facebook/react | fc7467ac0ed735aefbfdddc7889d9f1b7aefccf1 | 6bf64df5383113d71bf6ebc8823c6a3ef412e6d0 | [dx] Update error messages for config parsing
ghstack-source-id: 693a3526a73f1fbd25f4e59416f8c65a0f8f1235
Pull Request resolved: https://github.com/facebook/react-forget/pull/2857 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -299,7 +299,8 @@ export function compileProgram(\n */\n if (environment.isErr()) {\n CompilerError.throwInvalidConfig({\n- reason: \"Error in validating environment config\",\n+ ... | 2024-04-18T01:16:32 |
vercel/next.js | 508b1a46a813a0469519b235f283af637ee1a4d5 | 43db9163e1fc253f9f91bf06534dc2b9485ebbca | [turbopack] Remove a debug assertions in client references endpoint (#82725)
Remove a debug assertion code in the `GlobalBuildInformation` implementation that was validating client references for endpoints. This was inserted as a sanity check that two traversals were doing the same thing, but this is overkill and can... | [
{
"path": "crates/next-api/src/module_graph.rs",
"patch": "@@ -730,27 +730,7 @@ impl GlobalBuildInformation {\n let result = if let [graph] = &self.client_references[..] {\n // Just a single graph, no need to merge results This also naturally aggregates\n // serv... | 2025-08-18T13:37:38 |
nodejs/node | 04750afb1e2ada0c06bb5fc82396c086645f31e9 | b8493a5789c178246fb214f9ca04f9b9840a443a | perf_hooks: add missing type argument to getEntriesByName
Fixes: https://github.com/nodejs/node/issues/54766
PR-URL: https://github.com/nodejs/node/pull/54767
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/internal/perf/performance.js",
"patch": "@@ -97,13 +97,16 @@ class Performance extends EventTarget {\n return filterBufferMapByNameAndType();\n }\n \n- getEntriesByName(name) {\n+ getEntriesByName(name, type = undefined) {\n validateInternalField(this, kPerformanceBrand, 'Performa... | 2024-09-24T19:39:51 |
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 |
vercel/next.js | 43db9163e1fc253f9f91bf06534dc2b9485ebbca | 2bddb9166e8549153d2f1ca9fb3682f40c6728e5 | Turbopack: fix race condition in test case (#82728)
### What?
Fixes a race condition in the test case.
Since we are using a single value for multiple Vcs (via ReadRef::cell) the counter can have multiple invalidators. | [
{
"path": "turbopack/crates/turbo-tasks-backend/tests/read_ref_cell.rs",
"patch": "@@ -2,7 +2,7 @@\n #![feature(arbitrary_self_types_pointers)]\n #![allow(clippy::needless_return)] // clippy bug causes false positive\n \n-use std::sync::Mutex;\n+use std::{collections::HashSet, mem::take, sync::Mutex};\n \n ... | 2025-08-18T09:26:35 |
facebook/react | da6ba53b10d8240fc251ba14a3e5878604d3dc7d | 0c245df1dc162d387ce6f5483505921b6cd4cfe2 | [UMD] Remove umd builds (#28735)
In React 19 React will finally stop publishing UMD builds. This is
motivated primarily by the lack of use of UMD format and the added
complexity of maintaining build infra for these releases. Additionally
with ESM becoming more prevalent in browsers and services like esm.sh
which c... | [
{
"path": ".eslintrc.js",
"patch": "@@ -545,7 +545,6 @@ module.exports = {\n __EXTENSION__: 'readonly',\n __PROFILE__: 'readonly',\n __TEST__: 'readonly',\n- __UMD__: 'readonly',\n __VARIANT__: 'readonly',\n __unmockReact: 'readonly',\n gate: 'readonly',",
"additions": 0,
... | 2024-04-17T18:15:27 |
electron/electron | be44a2c5b7a0647f2c3bb7c776c53257360f615e | 54ff706b710363bac1e00a5316737805f4a57f4c | chore: bump chromium to 120.0.6078.0 (main) (#40114)
* chore: bump chromium in DEPS to 120.0.6049.0
* chore: update patches
* chore: bump chromium in DEPS to 120.0.6050.0
* chore: update patches
* 4910494: Reland "[autopip] Show autopip UI for video pip"
https://chromium-review.googlesource.com/c/chromi... | [
{
"path": "BUILD.gn",
"patch": "@@ -434,6 +434,7 @@ source_set(\"electron_lib\") {\n \"//chrome/app/resources:platform_locale_settings\",\n \"//components/autofill/core/common:features\",\n \"//components/certificate_transparency\",\n+ \"//components/compose:buildflags\",\n \"//components... | 2023-10-24T15:24:20 |
nodejs/node | a1cd3c8777604fe3fc531186364ce9c2529f087b | 02e89721694ed44adfb8b7cf0fb68174e1432277 | build: update ruff and add `lint-py-fix`
PR-URL: https://github.com/nodejs/node/pull/54410
Reviewed-By: Christian Clauss <cclauss@me.com> | [
{
"path": "Makefile",
"patch": "@@ -1536,17 +1536,22 @@ cpplint: lint-cpp\n # Try with '--system' if it fails without; the system may have set '--user'\n lint-py-build:\n \t$(info Pip installing ruff on $(shell $(PYTHON) --version)...)\n-\t$(PYTHON) -m pip install --upgrade --target tools/pip/site-packages ... | 2024-09-24T15:20:20 |
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 |
vercel/next.js | 2bddb9166e8549153d2f1ca9fb3682f40c6728e5 | 97dbf5f2e1e2c9f71e0f610c9c0ce3cdfea0ce2f | Turbopack: Stop persisting background task correctly on stop (#82727)
### What?
Fixes a race condition with the persisting background tasks when stopping the backend. | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -2137,36 +2137,37 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n let until = last_snapshot + time;\n if until > Instant::now() {\n let mut stop_listener... | 2025-08-18T08:13:11 |
facebook/react | 0c245df1dc162d387ce6f5483505921b6cd4cfe2 | f82051d7abf9a2137f62cb84f0dd3618397951bc | Complete the typo fix (#28856) | [
{
"path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js",
"patch": "@@ -2146,7 +2146,7 @@ describe('ReactInternalTestUtils console assertions', () => {\n - Expected errors\n + Received errors\n \n- - This is a complete different message that happens to start w... | 2024-04-17T18:04:22 |
electron/electron | 32a721fa2bdff874270d50b5609866bdb43ef3c4 | e254593616e0c0ce8ae861ec860002ee14cb74f9 | test: fix Node.js color edge snapshot stack traces (#40250) | [
{
"path": "patches/node/.patches",
"patch": "@@ -40,7 +40,6 @@ fix_do_not_resolve_electron_entrypoints.patch\n fix_ftbfs_werror_wextra-semi.patch\n fix_isurl_implementation.patch\n ci_ensure_node_tests_set_electron_run_as_node.patch\n-chore_update_fixtures_errors_force_colors_snapshot.patch\n fix_assert_mod... | 2023-10-18T19:39:53 |
nodejs/node | 3c5ceff85fb90b265a85270bba38085f45c7f25e | ffe0dc5b87c54046927cb6f9b907b74697002227 | test: deflake test-inspector-strip-types
Use the `NodeRuntime.waitingForDebugger` event.
Refs: https://github.com/nodejs/node/pull/51560
PR-URL: https://github.com/nodejs/node/pull/55058
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Chengzhong W... | [
{
"path": "test/parallel/test-inspector-strip-types.js",
"patch": "@@ -18,13 +18,14 @@ async function runTest() {\n \n const session = await child.connectInspectorSession();\n \n- const commands = [\n+ await session.send({ method: 'NodeRuntime.enable' });\n+ await session.waitForNotification('NodeRunti... | 2024-09-24T05:53:45 |
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 |
rust-lang/rust | 33a8dc10cf4efe91874cf02dc24afb55448bcc09 | fef627b1ebdc7369ddf8a4031a5d25733ac1fb34 | Fix wrong par_slice implementation | [
{
"path": "compiler/rustc_data_structures/src/sync/parallel.rs",
"patch": "@@ -133,7 +133,7 @@ fn par_slice<I: DynSend>(\n rustc_thread_pool::scope(|s| {\n let proof = items.derive(());\n let group_size = std::cmp::max(items.len() / 128, 1);\n- for group in items.chunks_exact_mut(... | 2026-02-16T14:49:42 |
facebook/react | f82051d7abf9a2137f62cb84f0dd3618397951bc | 4ca20fd36b2444a74279e7022f89894710b1daab | console test utils fix: match entire string, not just first letter (#28855)
Fixes issue where if the first letter of the expected string appeared
anywhere in actual message, the assertion would pass, leading to false
negatives. We should check the entire expected string.
---------
Co-authored-by: Ricky <rickha... | [
{
"path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js",
"patch": "@@ -2129,6 +2129,28 @@ describe('ReactInternalTestUtils console assertions', () => {\n `);\n });\n \n+ // @gate __DEV__\n+ it('regression: checks entire string, not just the first letter', async () =... | 2024-04-17T17:04:54 |
vercel/next.js | df71f956e54e3c215387af0ab238faebf6c81d08 | 36458f9002dffb620b040958f5832477ac107dfe | fix: return plain text 404 for invalid static asset paths (#75111) | [
{
"path": "packages/next/src/server/lib/router-server.ts",
"patch": "@@ -587,6 +587,36 @@ export async function initialize(opts: {\n 'private, no-cache, no-store, max-age=0, must-revalidate'\n )\n \n+ let realRequestPathname = parsedUrl.pathname ?? ''\n+ if (realRequestPathname) {\n+... | 2025-08-16T07:46:20 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.