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
nodejs/node
1d8593e3b1876d05d69ec5cdf4c8990f24aac892
d3841517e980d8b6c64dd6be3de4472c986d7866
src: fix accessing empty string PR-URL: https://github.com/nodejs/node/pull/57014 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonza...
[ { "path": "src/node_dotenv.cc", "patch": "@@ -156,7 +156,7 @@ void Dotenv::ParseContent(const std::string_view input) {\n key = trim_spaces(key);\n \n // If the value is not present (e.g. KEY=) set is to an empty string\n- if (content.front() == '\\n') {\n+ if (content.empty() || content.front...
2025-02-16T06:45:40
golang/go
d3be949ada01d7827f8edc87665fef5268634cb3
836fa745188fddf49070d010161e30f360862e57
runtime: don't negate eventfd errno The Linux syscall package does this for us. Fixes #75337. Change-Id: I6a6a636c9bb5fe25fdc6f80dc8b538ebed60d00b Reviewed-on: https://go-review.googlesource.com/c/go/+/701796 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a...
[ { "path": "src/runtime/netpoll_epoll.go", "patch": "@@ -27,7 +27,7 @@ func netpollinit() {\n \t}\n \tefd, errno := linux.Eventfd(0, linux.EFD_CLOEXEC|linux.EFD_NONBLOCK)\n \tif errno != 0 {\n-\t\tprintln(\"runtime: eventfd failed with\", -errno)\n+\t\tprintln(\"runtime: eventfd failed with\", errno)\n \t\tt...
2025-09-09T20:47:15
facebook/react
19bd26beb689e554fceb0b929dc5199be8cba594
c39da3e4de0ad0db56ad99119efe3efc6c72abf1
[Flight/DevTools] Pass the Server Component's "key" as Part of the ReactComponentInfo (#30703) Supports showing the key in DevTools on the Server Component that the key was applied to. We can also use this to reconcile to preserve instance equality when they're reordered. One thing that's a bit weird about this i...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -299,6 +299,7 @@ describe('ReactFlight', () => {\n {\n name: 'Greeting',\n env: 'Server',\n+ key: null,\n owner: null,\n stack: gate(...
2024-08-15T15:04:53
nodejs/node
409e28d5aa5285aba9ee613d7a727fdd2bb15f81
61a57f7761ef9828d1bace81238657c361e2baaa
fs: handle UV_ENOTDIR in `fs.statSync` with `throwIfNoEntry` provided Fixes: https://github.com/nodejs/node/issues/56993 Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com> PR-URL: https://github.com/nodejs/node/pull/56996 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addalea...
[ { "path": "src/node_file.cc", "patch": "@@ -1088,6 +1088,10 @@ constexpr bool is_uv_error_except_no_entry(int result) {\n return result < 0 && result != UV_ENOENT;\n }\n \n+constexpr bool is_uv_error_except_no_entry_dir(int result) {\n+ return result < 0 && !(result == UV_ENOENT || result == UV_ENOTDIR);...
2025-02-10T17:14:36
vercel/next.js
363014645838b7b4e16f9d446032c52ce5434aff
e598a4f9763f3ccdaf23f4caf6aea205b84c5dcd
Add validation for missing default.js in parallel routes (#84702) ### What? Adds build-time validation to require explicit `default.js` files for all parallel route slots (except the implicit "children" slot). This validation is implemented in both Webpack and Turbopack bundlers. ### Why? Parallel routes without `d...
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -840,6 +840,83 @@ impl Issue for DuplicateParallelRouteIssue {\n }\n }\n \n+#[turbo_tasks::value]\n+struct MissingDefaultParallelRouteIssue {\n+ app_dir: FileSystemPath,\n+ app_page: AppPage,\n+ slot_name: RcStr,\n+}\n+\n+#[turbo_t...
2025-10-09T21:20:52
electron/electron
aa23198ad8ed023a09bf6162f0e268f4aa0aa524
cfdcf48e1b2cccc9cebe64d84d159713b0832e86
chore: remove more unused #include calls (#43000) * chore: in shell/renderer/renderer_client_base.h, remove include media/base/key_systems_support_registration.h last use removed in c670e38b (##41610) * chore: iwyu electron/fuses.h * chore: iwyu media/base/video_frame.h * chore: iwyu base/functional/callba...
[ { "path": "shell/app/electron_content_client.cc", "patch": "@@ -13,13 +13,11 @@\n #include \"base/files/file_util.h\"\n #include \"base/strings/string_split.h\"\n #include \"content/public/common/content_constants.h\"\n-#include \"content/public/common/content_switches.h\"\n #include \"electron/buildflags/b...
2024-07-25T09:25:45
golang/go
836fa745188fddf49070d010161e30f360862e57
ce391744828cb1e0dbd44ffb2622521a15db5b5d
syscall: optimise cgo clearenv For programs with very large environments, calling unsetenv(3) for each environment variable can be very expensive because of CGo overhead, but clearenv(3) is much faster. The only thing we have to track is whether GODEBUG is being unset by the operation, which can be done very quickly w...
[ { "path": "src/runtime/cgo/clearenv.go", "patch": "@@ -0,0 +1,15 @@\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+\n+//go:build linux\n+\n+package cgo\n+\n+import _ \"unsafe\" // for go:l...
2025-09-09T12:18:49
nodejs/node
a613f2f312699154b8d32195c887ea24ba0cc21a
47ae886e43537365ccc54beff0b1ac08a5a5aa19
test: fix test-without-async-context-frame.mjs in debug mode The test is spawning the python test runner directly without considering whether the current build is a debug build or not i.e. does not propage the mode parameter when the test is run with --mode=debug, so it always ends up using the release build to run th...
[ { "path": "test/parallel/test-without-async-context-frame.mjs", "patch": "@@ -49,6 +49,7 @@ describe('without AsyncContextFrame', {\n it(test, async () => {\n const proc = spawn(python, [\n testRunner,\n+ `--mode=${process.features.debug ? 'debug' : 'release'}`,\n '--node-ar...
2025-02-15T19:37:31
vercel/next.js
8041a382c94ca55440dc9bbf505d7272cb72bdfd
5dcfec401a299498a1866f1973391381ba1cbf85
[Breaking] Require `images.localPatterns` for query in Image src (#84406) This PR modifies Image behavior to require `images.localPatterns.search` value when used with search queries in the `src` property: ```jsx // Error <Image src="/api/user?id=1" width="50" height="50" /> ``` ```ts // next.config.ts export defau...
[ { "path": "docs/01-app/03-api-reference/02-components/image.mdx", "patch": "@@ -528,6 +528,8 @@ module.exports = {\n \n The example above will ensure the `src` property of `next/image` must start with `/assets/images/` and must not have a query string. Attempting to optimize any other path will respond with...
2025-10-09T19:01:42
electron/electron
cfdcf48e1b2cccc9cebe64d84d159713b0832e86
c2c079dc820d7edbac3f875ab4ef8b3444237253
fix: desktopCapturer breaks BrowserWindow resizable on macOS (#43013) * fix: desktopCapturer breaks BrowserWindow resizable on macOS * test: oops fix showing
[ { "path": "lib/browser/api/desktop-capturer.ts", "patch": "@@ -1,3 +1,4 @@\n+import { BrowserWindow } from 'electron/main';\n const { createDesktopCapturer } = process._linkedBinding('electron_browser_desktop_capturer');\n \n const deepEqual = (a: ElectronInternal.GetSourcesOptions, b: ElectronInternal.GetS...
2024-07-25T09:17:37
facebook/react
49496d493797d4df1b9496f64a6103d9a7d23968
0ad0fac1dc11db8d5a6831987fb0324cd6d59498
[DevTools] Support Server Components in Tree (#30684) This adds VirtualInstances to the tree. Each Fiber has a list of its parent Server Components in `_debugInfo`. The algorithm is that when we enter a set of fibers, we actually traverse level 0 of all the `_debugInfo` in each fiber. Then level 1 of each `_debugIn...
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -3150,4 +3150,35 @@ describe('InspectedElement', () => {\n <Child> ⚠\n `);\n });\n+\n+ // @reactVersion > 18.2\n+ it('should inspect server components', async () => {\n+ const ChildPromi...
2024-08-14T15:16:51
golang/go
ce391744828cb1e0dbd44ffb2622521a15db5b5d
5d9d0513dcb96409a2625c51431c584c0a12f212
crypto/rsa: check PrivateKey.D for consistency with Dp and Dq This unfortunately nearly doubles the runtime of NewPrivateKeyWithPrecomputation. It would be nice to find an alternative way to check it. fips140: off goos: darwin goarch: arm64 pkg: crypto/rsa cpu: Apple M2 │ 6aeb841faf │ ...
[ { "path": "doc/next/6-stdlib/99-minor/crypto/rsa/74115.md", "patch": "@@ -1,2 +1,5 @@\n If [PrivateKey] fields are modified after calling [PrivateKey.Precompute],\n [PrivateKey.Validate] now fails.\n+\n+[PrivateKey.D] is now checked for consistency with precomputed values, even if\n+it is not used.", "a...
2025-07-11T12:28:30
nodejs/node
ff51d83c963e3089477e14258cf58c2e826dca22
44e2671b44503d3ab1520aa9e114de56d90983c6
doc: recommend writing tests in new files and including comments The previous phrasing encouraged or did not discourage appending new test cases to existing files - a practice that can reduce the debuggability of the tests over time as they get bigger and bigger, some times thousands of lines long with hundreds of tes...
[ { "path": "doc/contributing/writing-tests.md", "patch": "@@ -21,9 +21,22 @@ Add tests when:\n ## Test directory structure\n \n See [directory structure overview][] for outline of existing test and locations.\n-When deciding on whether to expand an existing test file or create a new one,\n-consider going thr...
2025-02-15T12:58:08
vercel/next.js
0b14eb2ed2e9b02ee70f5eff5d10e34b83da8f82
1111200bc949e09c44f14e3b51af987ecc2fa6b3
Add note about $ACTION_ properties, remove reference to .entries() (#84459) <!-- 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 maki...
[ { "path": "docs/01-app/02-guides/forms.mdx", "patch": "@@ -50,7 +50,7 @@ export default function Page() {\n }\n ```\n \n-> **Good to know:** When working with forms that have multiple fields, you can use the [`entries()`](https://developer.mozilla.org/en-US/docs/Web/API/FormData/entries) method with JavaScr...
2025-10-09T17:29:50
facebook/react
0ad0fac1dc11db8d5a6831987fb0324cd6d59498
fbfe08de6126f04777da805a493e819989151edf
Fix unstable_useContextWithBailout dispatcher assignment (#30692) One more copy pasta fix Assignments are unique now ``` % cat packages/react-reconciler/src/ReactFiberHooks.js | grep .unstable_useContextWithBailout function unstable_useContextWithBailout<T>( (ContextOnlyDispatcher: Dispatcher).unstable_useCon...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -4622,7 +4622,7 @@ if (__DEV__) {\n };\n }\n if (enableContextProfiling) {\n- (HooksDispatcherOnUpdateInDEV: Dispatcher).unstable_useContextWithBailout =\n+ (HooksDispatcherOnRerenderInDEV: Dispatcher).unstable_useCon...
2024-08-14T15:04:42
electron/electron
5669a40d5cc8207f8ede8244a28e5ccbf6666207
9fc760bc4cffca6d269d62b7300242efef3f1d4d
feat: add transparency checking to `nativeTheme` (#42862) * feat: add transparency checking to nativeTheme Refs https://chromium-review.googlesource.com/c/chromium/src/+/4684870 * chore: deprecate previous function * chore: fix lint
[ { "path": "docs/api/native-theme.md", "patch": "@@ -72,3 +72,7 @@ or is being instructed to use an inverted color scheme.\n \n A `boolean` indicating whether Chromium is in forced colors mode, controlled by system accessibility settings.\n Currently, Windows high contrast is the only system setting that tri...
2024-07-24T12:38:22
golang/go
968a5107a938f9cb20413ad455986a61553c075b
645ee444929ecb7bbfb95cc8bda193e4b3cb3c43
crypto/internal/fips140: update frozen module version to "v1.0.0" We are re-sealing the .zip file anyway for another reason, might as well take the opportunity to fix the "v1.0" mistake. Change-Id: I6a6a69646b3188984c865031ff9393ccaaaa9479 Reviewed-on: https://go-review.googlesource.com/c/go/+/701518 Reviewed-by: Dan...
[ { "path": "src/crypto/internal/cryptotest/hash.go", "patch": "@@ -20,7 +20,7 @@ type MakeHash func() hash.Hash\n // TestHash performs a set of tests on hash.Hash implementations, checking the\n // documented requirements of Write, Sum, Reset, Size, and BlockSize.\n func TestHash(t *testing.T, mh MakeHash) {...
2025-09-07T14:37:40
nodejs/node
44e2671b44503d3ab1520aa9e114de56d90983c6
59cdd4f1c246cceb89a00c37e3c819a08444c888
build: fix GN build failure PR-URL: https://github.com/nodejs/node/pull/57013 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "deps/zstd/unofficial.gni", "patch": "@@ -19,6 +19,7 @@ template(\"zstd_gn_build\") {\n public_configs = [ \":zstd_config\" ]\n sources = gypi_values.zstd_sources\n defines = [ \"XXH_NAMESPACE=ZSTD_\", \"ZSTD_MULTITHREAD\", \"ZSTD_DISABLE_ASM\" ]\n+ cflags_c = [ \"-Wno-unused-functi...
2025-02-15T12:11:49
facebook/react
fbfe08de6126f04777da805a493e819989151edf
2a540194adde100c1af2b57b346e62eee760524c
fix[react-devtools/InspectedElement]: fixed border stylings when some of the panels are not rendered (#30676) Alternative to https://github.com/facebook/react/pull/30667. Basically wrap every section in a `div` with the same class, and only apply `border-bottom` for every instance, except for the last child. We a...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementContextTree.js", "patch": "@@ -60,7 +60,7 @@ export default function InspectedElementContextTree({\n return null;\n } else {\n return (\n- <div className={styles.InspectedElementTree}>\n+ <div>\n ...
2024-08-14T12:35:06
golang/go
a67977da5e26e0c328488fe05bdd200903e58e99
a5fa5ea51cd8fd9bcb8230d2accf9d55826f76b3
cmd/compile/internal/inline: ignore superfluous slicing When slicing, ignore expressions which could be elided, as in slicing starting at 0 or ending at len(v). Fixes #75278 Change-Id: I9c18e29c3d4da9bef89bd25bb261d3cb60e66392 Reviewed-on: https://go-review.googlesource.com/c/go/+/701216 LUCI-TryBot-Result: Go LUCI ...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -738,6 +738,17 @@ opSwitch:\n \t\tif n.X.Op() == ir.OINDEX && isIndexingCoverageCounter(n.X) {\n \t\t\treturn false\n \t\t}\n+\n+\tcase ir.OSLICE, ir.OSLICEARR, ir.OSLICESTR, ir.OSLICE3, ir.OSLICE3ARR:\n+\t\tn := n.(*ir.SliceExpr)\n+\n+\t\t// ...
2025-09-06T01:13:03
electron/electron
3e22f992b064a07545a5d265a1a53a72a0cdbca2
364631ee0b4f8a6c705498a79044fceca939711e
chore: bump chromium to 128.0.6611.0 (main) (#42779) * chore: bump chromium in DEPS to 128.0.6577.0 * chore: bump chromium in DEPS to 128.0.6579.0 * 5675706: Reland "Reland "Reland "Reland "Add toolchains without PartitionAlloc-Everywhere for dump_syms et al"""" https://chromium-review.googlesource.com/c/chro...
[ { "path": ".github/actions/checkout/action.yml", "patch": "@@ -87,7 +87,7 @@ runs:\n # Export it\n mkdir -p ../../patches\n git format-patch -1 --stdout --keep-subject --no-stat --full-index > ../../patches/update-patches.patch\n- if (node ./script/push-patch.js 2> /de...
2024-07-23T15:59:44
nodejs/node
e4f2c25527a953ba524058cbb15fd1db60a820e1
1e6a6569dc5235d8f1cfe8b6f7dda59dc1717365
doc: buffer: fix typo on `Buffer.copyBytesFrom(` `offset` option PR-URL: https://github.com/nodejs/node/pull/57015 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/buffer.md", "patch": "@@ -1098,7 +1098,7 @@ added:\n -->\n \n * `view` {TypedArray} The {TypedArray} to copy.\n-* `offset` {integer} The starting offset within `view`. **Default:**: `0`.\n+* `offset` {integer} The starting offset within `view`. **Default:** `0`.\n * `length` {integer} The...
2025-02-14T14:54:29
facebook/react
2a540194adde100c1af2b57b346e62eee760524c
8e60bacd08215bd23f0bf05dde407cd133885aa1
[Flight] do not emit error after abort (#30683) When synchronously aborting in a non-async Function Component if you throw after aborting the task would error rather than abort because React never observed the AbortSignal. Using a sigil to throw after aborting during render isn't effective b/c the user code itse...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -2554,4 +2554,100 @@ describe('ReactFlightDOM', () => {\n </div>,\n );\n });\n+\n+ it('can error synchronously after aborting in a synchronous Component', async () => {\n+ const rejectError = new...
2024-08-14T03:59:45
electron/electron
8454f4e49ffee64f6a6f3568acee2b08f0ea9a90
60c4c9fec6742b2f1352c4ec3deabed4b53b990a
feat: emit an event when accessing restricted path in File System Access API (#42561) * fix: show a dialog when accessing restricted path in File System Access API * fix: allow overriding initial blocked paths * docs: fix doc * Update docs/api/session.md Co-authored-by: Erick Zhao <erick@hotmail.ca> * f...
[ { "path": "docs/api/session.md", "patch": "@@ -143,6 +143,71 @@ Returns:\n Emitted after an extension is loaded and all necessary browser state is\n initialized to support the start of the extension's background page.\n \n+#### Event: 'file-system-access-restricted'\n+\n+Returns:\n+\n+* `event` Event\n+* `d...
2024-07-22T10:18:15
nodejs/node
1e6a6569dc5235d8f1cfe8b6f7dda59dc1717365
fc7682ca4bf9045864b23e4f43758d97ab36ad4d
tools: fix release URL computation in update-root-certs.mjs Previously this would compute the release tag to be something like FIREFOX_134_0.2_RELEASE which would not lead to a valid URL, failing to pull the latest NSS updates from the Firefox release. It should replace all the dots with underscores to compute somethi...
[ { "path": "tools/dep_updaters/update-root-certs.mjs", "patch": "@@ -65,7 +65,7 @@ const getFirefoxRelease = async (version) => {\n \n const getNSSVersion = async (release) => {\n const latestFirefox = release.version;\n- const firefoxTag = `FIREFOX_${latestFirefox.replace('.', '_')}_RELEASE`;\n+ const f...
2025-02-14T14:15:14
golang/go
a5fa5ea51cd8fd9bcb8230d2accf9d55826f76b3
4c63d798cb947a3cdd5a5b68f254a73d83eb288f
cmd/compile/internal/ssa: expand runtime.memequal for length {3,5,6,7} This CL slightly speeds up strings.HasPrefix when testing constant prefixes of length {3,5,6,7}. goos: linux goarch: amd64 cpu: Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz │ old │ new │ ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2084,7 +2084,7 @@\n (NilCheck ptr:(NilCheck _ _) _ ) => ptr\n \n // for late-expanded calls, recognize memequal applied to a single constant byte\n-// Support is limited by 1, 2, 4, 8 byte sizes\n+// Support is limited by [1-8] byte ...
2025-09-04T01:08:14
vercel/next.js
396fed36a28dafd0ebdd326c743fe8bcb12f1853
954d40be142cd3dc6b1b52440c1f459893a91853
Remove bailed out SSG routes from the list of SSG (#83861) ### Why? When SSG, the pages can bail out when detected a dynamic usage. However, the routes that bailed out were still marked as SSG, which can confuse the users. ### How? Remove the bailed-out routes from the SSG routes list. If there are no more SSG rout...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -2811,6 +2811,8 @@ export default async function build(\n buildStage: 'static-generation',\n })\n \n+ const hasGSPAndRevalidateZero = new Set<string>()\n+\n // we need to trigger automatic exporting when we have\n // -...
2025-10-09T15:46:04
facebook/react
f6d1df6648a8912ea30550507a9d400802dcdff4
a601d1da3647ed9a20d9f83b87c8019492f24215
[Flight] erroring after abort should not result in unhandled rejection (#30675) When I implemented the ability to abort synchronoulsy in flight I made it possible for erroring async server components to cause an unhandled rejection error. In the current implementation if you abort during the synchronous phase of a ...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -2485,4 +2485,73 @@ describe('ReactFlightDOM', () => {\n </div>,\n );\n });\n+\n+ it('can error synchronously after aborting without an unhandled rejection error', async () => {\n+ function App()...
2024-08-13T20:42:10
nodejs/node
fc7682ca4bf9045864b23e4f43758d97ab36ad4d
69d32d1cfe7e05882e004e26f18beb378e15ff20
crypto: fix missing OPENSSL_NO_ENGINE guard PR-URL: https://github.com/nodejs/node/pull/57012 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -34,7 +34,9 @@ using ncrypto::BIOPointer;\n using ncrypto::ClearErrorOnReturn;\n using ncrypto::CryptoErrorList;\n using ncrypto::DHPointer;\n+#ifndef OPENSSL_NO_ENGINE\n using ncrypto::EnginePointer;\n+#endif // !OPENSSL_NO_ENGINE\n using ncrypto::EVP...
2025-02-14T12:26:15
golang/go
4c63d798cb947a3cdd5a5b68f254a73d83eb288f
bdd51e785580ce86142e662425982a2673e7c9c6
cmd/compile: improve stp merging for non-sequent cases Original algorithm merges stores with the first mergeable store in the chain, but it misses some cases. Additional reordering stores in increasing order of memory access in the chain allows merging in these cases. Fixes #71987 There are the results of sweet benc...
[ { "path": "src/cmd/compile/internal/ssa/pair.go", "patch": "@@ -212,6 +212,12 @@ func pairStores(f *Func) {\n \tlast := f.Cache.allocBoolSlice(f.NumValues())\n \tdefer f.Cache.freeBoolSlice(last)\n \n+\ttype stChainElem struct {\n+\t\tv *Value\n+\t\ti int // Index in chain (0 == last store)\n+\t}\n+\tvar or...
2025-08-21T15:00:57
electron/electron
60c4c9fec6742b2f1352c4ec3deabed4b53b990a
296a558c322567104cb2f47771855e7bf8eaf92b
chore: remove unused #includes (#42971) * chore: iwyu buildflags.h * chore: iwyu dictionary.h * chore: iwyu arguments.h * chore: iwyu values.h * chore: iwyu compiler_specific.h * chore: iwyu binder_map.h * chore: iwyu <vector> * chore: iwyu <set> * chore: iwyu raw_ptr * chore: iwyu gfx/canva...
[ { "path": "shell/app/electron_content_client.cc", "patch": "@@ -11,10 +11,7 @@\n \n #include \"base/command_line.h\"\n #include \"base/files/file_util.h\"\n-#include \"base/path_service.h\"\n #include \"base/strings/string_split.h\"\n-#include \"base/strings/string_util.h\"\n-#include \"base/strings/utf_str...
2024-07-22T09:31:32
vercel/next.js
ad90a67439eaab12e048e6def5e11db50a721866
e2eee896592679fd4947735a0ae2ac4649bb89bf
[test] Assert on stable error codes (#84671) Fixes ``` DevErrorOverlay › sends feedback when clicking not helpful button expect(received).toEqual(expected) // deep equality - Expected - 1 + Received + 1 Array [ - "/__nextjs_error_feedback?errorCode=E794&wasHelpful=false", + "/__nextj...
[ { "path": "test/development/error-overlay/app/known-client-error/page.tsx", "patch": "@@ -1,23 +1,18 @@\n 'use client'\n \n-import Link from 'next/link'\n import React from 'react'\n \n export default function Page() {\n- const broken = (\n- <>\n- <Link href=\"/invalid\" as=\"mailto:john@example.co...
2025-10-09T07:20:13
facebook/react
d48603a52564675ce02152fff245e38b6816da47
23830ea2a19bc14f5e7fa7198f9371130f0f8382
Fix unstable_useContextWithBailout incorrect dispatcher assignment (#30673) Fixing a mistaken copy from another dispatcher property assignment
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -4839,7 +4839,7 @@ if (__DEV__) {\n };\n }\n if (enableContextProfiling) {\n- (HooksDispatcherOnUpdateInDEV: Dispatcher).unstable_useContextWithBailout =\n+ (InvalidNestedHooksDispatcherOnMountInDEV: Dispatcher).unsta...
2024-08-13T15:31:44
nodejs/node
85f5a6cc1e9954eaa36cf5d4a13af503e6bf51ab
9ce1fffcdc5a6045e19c6730aa6ae3e271287b23
src: add self-assigment memcpy checks Fixes: https://github.com/nodejs/node/issues/56718 PR-URL: https://github.com/nodejs/node/pull/56986 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_sockaddr-inl.h", "patch": "@@ -79,12 +79,16 @@ SocketAddress::SocketAddress(const SocketAddress& addr) {\n }\n \n SocketAddress& SocketAddress::operator=(const sockaddr* addr) {\n- memcpy(&address_, addr, GetLength(addr));\n+ if (reinterpret_cast<const sockaddr*>(&address_) != addr) {\...
2025-02-12T13:13:02
golang/go
3b3b16957cd466baef3af92383de324230ad993c
e3223518b860132e3711602485922a8fa3805224
Revert "cmd/go: use os.Rename to move files on Windows" This reverts CL 691255. Reason for revert: SetNamedSecurityInfo sometimes fails when the path contains symbolic links. Fixes #74864 Change-Id: Iaf1a5692b35d58c523fd513f27bad9a2e7a334cb Reviewed-on: https://go-review.googlesource.com/c/go/+/702155 LUCI-TryBot-R...
[ { "path": "src/cmd/go/internal/work/shell.go", "patch": "@@ -132,11 +132,47 @@ func (sh *Shell) moveOrCopyFile(dst, src string, perm fs.FileMode, force bool) e\n \t\treturn sh.CopyFile(dst, src, perm, force)\n \t}\n \n-\tif err := sh.move(src, dst, perm); err == nil {\n-\t\tif cfg.BuildX {\n-\t\t\tsh.ShowCm...
2025-09-09T16:02:28
vercel/next.js
6ec80654fd96adea8f63d8d705683ad35570228f
30c64ba0e25985b26fc00cdfb1cfdd80dabfc1a3
fix: strip _NEXTSEP_ from interpolated pathnames (#84430) ## What Fixes an issue where internal route normalization markers (`_NEXTSEP_`) were leaking into compiled URLs for interception routes with adjacent dynamic parameters. ## Why When Next.js normalizes route patterns like `/photos/(.):author/:id` for path-to-...
[ { "path": "packages/next/src/lib/route-pattern-normalizer.ts", "patch": "@@ -14,7 +14,7 @@ import type { Token } from 'next/dist/compiled/path-to-regexp'\n * This unique marker is inserted between adjacent parameters and stripped out\n * during parameter extraction to avoid conflicts with real URL content...
2025-10-09T03:39:35
facebook/react
23830ea2a19bc14f5e7fa7198f9371130f0f8382
0d7c12c7790c4a7315af80f8c73ac951f024f4fe
Unit Test for `findNodeHandle` Error Behavior (#30669) ## Summary As promised on https://github.com/facebook/react/pull/29627, this creates a unit test for the `findNodeHandle` error that prevents developers from calling it within render methods. ## How did you test this change? ``` $ yarn test ReactFabric...
[ { "path": "packages/react-native-renderer/src/__tests__/ReactFabric-test.internal.js", "patch": "@@ -1306,6 +1306,40 @@ describe('ReactFabric', () => {\n );\n });\n \n+ it('findNodeHandle errors when called from render', async () => {\n+ class TestComponent extends React.Component {\n+ render...
2024-08-12T23:32:40
nodejs/node
b07ff551db152ccb507e71160ce077e235206b16
83ff1ae88f86013db4c058c5963a76d4c16e6a26
build: fix GN build of uv PR-URL: https://github.com/nodejs/node/pull/56955 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
[ { "path": "deps/uv/unofficial.gni", "patch": "@@ -90,7 +90,7 @@ template(\"uv_gn_build\") {\n ldflags = [ \"-pthread\" ]\n }\n if (is_linux) {\n- libs += [\n+ libs = [\n \"m\",\n \"dl\",\n \"rt\",", "additions": 1, "deletions": 1, "language": "Unkn...
2025-02-12T00:58:31
golang/go
af03343f934b50f64389aa4222a2a111a125f69f
6447ff409ac7e2a621bc8ca5c44b2eaed751fbaa
cmd/compile: fix bounds check report For constant-index, variable length situations. Inadvertant shadowing of the yVal variable. Oops. Fixes #75327 Change-Id: I3403066fc39b7664222a3098cf0f22b5761ea66a Reviewed-on: https://go-review.googlesource.com/c/go/+/702015 Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1306,7 +1306,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t\t}\n \t\tcase ssa.OpAMD64LoweredPanicBoundsCR:\n \t\t\tyIsReg = true\n-\t\t\tyVal := int(v.Args[0].Reg() - x86.REG_AX)\n+\t\t\tyVal = int(v.Args[0].Reg() - x86.REG_AX)\...
2025-09-09T05:04:40
nodejs/node
43ffcf1d2e50407cc19b587f6030c7d34b0932ec
cbedcd16960c59ba77ee091c8722879fd56735e1
src: improve node::Dotenv trimming the trimming functionality that the dotenv parsing uses currently only takes into consideration plain spaces (' '), other type of space characters such as tabs and newlines are not trimmed, this can cause subtle bugs, so the changes here make sure that such characters get trimmed as ...
[ { "path": "src/node_dotenv.cc", "patch": "@@ -105,15 +105,22 @@ Local<Object> Dotenv::ToObject(Environment* env) const {\n return result;\n }\n \n+// Removes space characters (spaces, tabs and newlines) from\n+// the start and end of a given input string\n std::string_view trim_spaces(std::string_view inp...
2025-02-11T22:26:51
vercel/next.js
30c64ba0e25985b26fc00cdfb1cfdd80dabfc1a3
ec560204f97532bae5daa5ef9a907fe2062fc415
Fix interception route rewrites for nested dynamic routes (#84413) ### What? Fixes interception routes with dynamic parameters that were generating rewrite rules in an incorrect format, preventing proper URL rewriting by Vercel and Next.js. ### Why? The failing test `parallel-routes-and-interception-nested-dynamic-...
[ { "path": "packages/next/errors.json", "patch": "@@ -865,5 +865,7 @@\n \"864\": \"Missing value for segment key: \\\"%s\\\" with dynamic param type: %s\",\n \"865\": \"`experimental.rdcForNavigations` is enabled, but `experimental.cacheComponents` is not.\",\n \"866\": \"Both \\\"%s\\\" and \\\"%s\\\"...
2025-10-09T03:38:54
golang/go
b915e14490e1c3ac5a84c274bfab647e1cb105a7
06e791c0cdef1a0d35ed553875c51c85716b0f57
cmd/compile: consolidate logic for rewriting fixed loads Many CLs have worked with this bit of code, extending the cases more and more for various fixed addresses and constants. But, I find that it's getting duplicitive, and I don't find the current setup very clear that something like isFixed32 _only_ works for a spe...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2757,37 +2757,15 @@\n (RotateLeft(64|32|16|8) (RotateLeft(64|32|16|8) x c) d) && c.Type.Size() == 2 && d.Type.Size() == 2 => (RotateLeft(64|32|16|8) x (Add16 <c.Type> c d))\n (RotateLeft(64|32|16|8) (RotateLeft(64|32|16|8) x c) d) &&...
2025-09-05T20:08:21
electron/electron
5773a2dce6fbcad34dc4f94a9c41b100fcd3cbaf
bc345db351cc0c62cb5a6b70e9040d4f3e7d41da
fix: dangling raw_ptr NodeBindings::uv_env_ (#42933)
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -604,6 +604,7 @@ void ElectronBrowserMainParts::PostMainMessageLoopRun() {\n node_env_->set_trace_sync_io(false);\n js_env_->DestroyMicrotasksRunner();\n node::Stop(node_env_.get(), node::StopFlags::kDoNotTerminateIsolate);\n+ nod...
2024-07-18T04:30:09
facebook/react
0d7c12c7790c4a7315af80f8c73ac951f024f4fe
6532c412566f7223f82b1460023180c25e15fca3
[compiler][ez] Enable some sprout tests that no longer need to be disabled Summary: As title. Better support for flow typing, bugfixes, etc fixes these ghstack-source-id: 6326653ce42b33b6c1c76a494434d133382ca80a Pull Request resolved: https://github.com/facebook/react/pull/30591
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/component-declaration-basic.flow.expect.md", "patch": "@@ -7,8 +7,17 @@ export default component Foo(bar: number) {\n return <Bar bar={bar} />;\n }\n \n+component Bar(bar: number) {\n+ return <div>{bar}</div>;\n+}\n+...
2024-08-12T19:55:55
nodejs/node
cbedcd16960c59ba77ee091c8722879fd56735e1
888e5eb4fde91ebd4e78704c756883d895f0eb46
src: improve error handling in string_bytes/decoder PR-URL: https://github.com/nodejs/node/pull/56978 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/string_bytes.cc", "patch": "@@ -112,16 +112,17 @@ class ExternString: public ResourceType {\n ExternString* h_str = new ExternString<ResourceType, TypeName>(isolate,\n data,\n ...
2025-02-11T16:40:02
golang/go
cf42b785b701e48260e1b4785e270fe81e2e1bb2
5e6296f3f8a5fd8c07a0602435eae681002e09ad
cmd/cgo: run recordTypes for each of the debugs at the end of Translate Save the debug information in a slice and then process all of them at the end of the loop. For #75167 Change-Id: I6a6a6964dffa784b0aa776334562333ecf247023 Reviewed-on: https://go-review.googlesource.com/c/go/+/699019 LUCI-TryBot-Result: Go LUCI ...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -192,9 +192,7 @@ func (p *Package) Translate(f *File) {\n \t\tcref.Name.C = cname(cref.Name.Go)\n \t}\n \n-\tvar conv typeConv\n-\tconv.Init(p.PtrSize, p.IntSize)\n-\n+\tvar debugs []*debug // debug data from iterations of gccDebug\n \tft := fileTypedefs{typedefs...
2025-08-25T21:16:05
vercel/next.js
6cecc7546480c43fdab6a6bbbd14a0ed8372f40f
8f6155f4a7b7a2e174c1c3d8a9aceef9ddf7f5df
Fix dynamic catchall parameter interpolation in parallel routes (#84279) ### Fixing a bug - Tests added with comprehensive e2e test suite for parallel route navigations - Error handling improved with clearer error messages for missing dynamic parameters ### What? Fixes incorrect parameter interpolation where catcha...
[ { "path": "packages/next/errors.json", "patch": "@@ -861,5 +861,6 @@\n \"860\": \"Client Max Body Size must be a valid number (bytes) or filesize format string (e.g., \\\"5mb\\\")\",\n \"861\": \"Client Max Body Size must be larger than 0 bytes\",\n \"862\": \"Request body exceeded %s\",\n- \"863\": ...
2025-10-09T01:49:39
rust-lang/rust
038b718390d1076c201eaa6c72bb2a2aff9633f5
1eb36c651676c1101f3049a122a4aa38bb5c45a4
Fix ICE on empty file with -Zquery-dep-graph
[ { "path": "compiler/rustc_middle/src/dep_graph/graph.rs", "patch": "@@ -826,7 +826,13 @@ impl DepGraph {\n where\n F: FnOnce() -> String,\n {\n- let dep_node_debug = &self.data.as_ref().unwrap().dep_node_debug;\n+ // Early queries (e.g., `-Z query-dep-graph` on empty crates) ca...
2026-02-28T07:53:55
electron/electron
bc345db351cc0c62cb5a6b70e9040d4f3e7d41da
ce45450c28ff34359c6e911671ce43f7c7e0f344
fix: dangling raw_ptr<views::View> in api::View (#42929)
[ { "path": "shell/browser/api/electron_api_view.cc", "patch": "@@ -180,7 +180,7 @@ View::~View() {\n return;\n view_->RemoveObserver(this);\n if (delete_view_)\n- delete view_;\n+ view_.ClearAndDelete();\n }\n \n void View::ReorderChildView(gin::Handle<View> child, size_t index) {", "additi...
2024-07-18T02:31:48
facebook/react
25c584f5672d90ba67d72ea9ba9cc06b12311806
b4c38015d0f8b58e9d0890dd7fd00ad763d3f965
[DevTools] Further Refactoring of Unmounts (#30658) Stacked on #30625 and #30657. This ensures that we only create instances during the commit reconciliation and that we don't create unnecessary instances for things that are filtered or not mounted. This ensures that we also can rely on the reconciliation to do ...
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -34,6 +34,8 @@ describe('InspectedElement', () => {\n let SettingsContextController;\n let StoreContext;\n let TreeContextController;\n+ let TreeStateContext;\n+ let TreeDispatcherContext;\n \n let Test...
2024-08-12T16:41:29
nodejs/node
888e5eb4fde91ebd4e78704c756883d895f0eb46
66549b4ff513ea8d545404b224c52149370f8ce8
src: improve error handling in process_wrap Replace ToLocalChecked uses. PR-URL: https://github.com/nodejs/node/pull/56977 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/process_wrap.cc", "patch": "@@ -20,6 +20,7 @@\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n #include \"env-inl.h\"\n+#include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"permission/permission.h\"\n #include \"stream_base-inl.h\"\n@@ -40,7 +41,11 @@ using v8::Han...
2025-02-11T16:28:04
golang/go
5e6296f3f8a5fd8c07a0602435eae681002e09ad
ea00650784bc2909580c7decf729f668349aa939
archive/tar: optimize nanosecond parsing in parsePAXTime Modified parsePAXTime to use a byte array for nanosecond parsing, providing a more straightforward implementation with better performance when handling decimal fraction part. Here are benchmark results: goos: darwin goarch: amd64 pkg: archive/tar cpu: Intel(R) C...
[ { "path": "src/archive/tar/strconv.go", "patch": "@@ -213,15 +213,17 @@ func parsePAXTime(s string) (time.Time, error) {\n \t}\n \n \t// Parse the nanoseconds.\n-\tif strings.Trim(sn, \"0123456789\") != \"\" {\n-\t\treturn time.Time{}, ErrHeader\n-\t}\n-\tif len(sn) < maxNanoSecondDigits {\n-\t\tsn += strin...
2025-09-08T16:19:34
vercel/next.js
5bb25f9bf4a04d397326d928ba686603c9c609be
112ef61103237b30d0a231ba26306172b45b867a
Fix flakey overlay feedback test (#84662) x-ref: https://github.com/vercel/next.js/actions/runs/18360376124/job/52302677520?pr=84500
[ { "path": "test/development/error-overlay/index.test.tsx", "patch": "@@ -1,5 +1,5 @@\n import { nextTestSetup } from 'e2e-utils'\n-import { assertHasRedbox } from 'next-test-utils'\n+import { assertHasRedbox, retry } from 'next-test-utils'\n \n describe('DevErrorOverlay', () => {\n const { next } = nextTe...
2025-10-08T23:31:17
electron/electron
81bdba67ec1b69b049f2feb31cea1cfe50fb26bd
c210ae9b333a4f77f2021fbb13623210e6416794
feat: Implement password delegate for NSS (#41205) * feat: Implement password delegate for NSS (#41188) Introduce an app event client-certificate-request-password. It allows the user to display a UI to prompt for the password. An alternative would have been to implement a class similar to CryptoModulePasswordD...
[ { "path": "docs/api/app.md", "patch": "@@ -1489,6 +1489,38 @@ This method can only be called after app is ready.\n \n Returns `Promise<string>` - Resolves with the proxy information for `url` that will be used when attempting to make requests using [Net](net.md) in the [utility process](../glossary.md#utili...
2024-07-17T13:48:03
rust-lang/rust
c9b2784731332e4e9a715d5eb5dfbde282f26fd3
1eb36c651676c1101f3049a122a4aa38bb5c45a4
mark two polonius tests as known-bug As tracked in the soundness issue 153215.
[ { "path": "tests/ui/impl-trait/alias-liveness/rpit-hide-lifetime-for-swap.edition2015.stderr", "patch": "@@ -1,5 +1,5 @@\n error[E0700]: hidden type for `impl Swap + 'a` captures lifetime that does not appear in bounds\n- --> $DIR/rpit-hide-lifetime-for-swap.rs:20:5\n+ --> $DIR/rpit-hide-lifetime-for-swap...
2026-02-28T09:48:28
facebook/react
68dbd84b61cc2504c30e19f748f59a52d331f851
8d74e8c73a5cc5e461bb1413a74c6b058c6be134
[DevTools] Unmount by walking previous nodes no longer in the new tree (#30644) This no longer uses the handleCommitFiberUnmount hook to track unmounts. Instead, we can just unmount the DevToolsInstances that we didn't reuse. This doesn't account for cleaning up instances that were unnecessarily created when they w...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -1405,81 +1405,37 @@ export function attach(\n \n // Removes a Fiber (and its alternate) from the Maps used to track their id.\n // This method should always be called when a Fiber is unmounting.\n- function untrackF...
2024-08-12T04:35:42
nodejs/node
5dafb48f1ad10c4eec0bb10176087a59e5ef9c62
211171fe2ca26a5a81930fec155e241bff7e1fc6
module: fix require.resolve() crash on non-string paths Previously, `require.resolve()` could crash when: - The first parameter was a relative path and - The `paths` array contained non-string entries This commit fixes the issue by adding a check in `Module._findPath` to ensure all elements in `paths` are strings, an...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -181,6 +181,7 @@ const {\n \n const {\n codes: {\n+ ERR_INVALID_ARG_TYPE,\n ERR_INVALID_ARG_VALUE,\n ERR_INVALID_MODULE_SPECIFIER,\n ERR_REQUIRE_CYCLE_MODULE,\n@@ -246,6 +247,9 @@ function wrapModuleLoad(request, parent, isMain) {...
2025-02-11T15:24:02
golang/go
ea00650784bc2909580c7decf729f668349aa939
4cc7cc74c3d8fe7aba458824b0fce6e72ceee048
debug/pe: permit symbols with no name They are reportedly generated by llvm-mingw clang21. Fixes #75219 Change-Id: I7fa7e13039bc7eee826cc19826985ca0e357a9ff Reviewed-on: https://go-review.googlesource.com/c/go/+/700137 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-...
[ { "path": "src/debug/pe/symbol.go", "patch": "@@ -98,7 +98,12 @@ func readCOFFSymbols(fh *FileHeader, r io.ReadSeeker) ([]COFFSymbol, error) {\n // isSymNameOffset checks symbol name if it is encoded as offset into string table.\n func isSymNameOffset(name [8]byte) (bool, uint32) {\n \tif name[0] == 0 && na...
2025-09-01T16:18:08
vercel/next.js
112ef61103237b30d0a231ba26306172b45b867a
4f19d01c5269a9d5e3780041b149185e31c4563b
docs: add note clarifying project root in monorepo (#84628) ### What? - Adding a small note to clarify the meaning of the phrase "project root" in the documentation for next.config output, specifically in regards to a monorepo setup ### Why? - While doing some debugging related to a container that I cannot build loca...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/output.mdx", "patch": "@@ -79,6 +79,9 @@ module.exports = {\n \n - There are some cases in which Next.js might fail to include required files, or might incorrectly include unused files. In those cases, you can leverage `outputFileTracingExc...
2025-10-08T23:29:31
rust-lang/rust
614bac581b9b093ace4a7fc49c4f8c027e80d75d
3a70d0349fa378a10c3748f1a48742e61505020f
[win] Fix truncated unwinds for Arm64 Windows
[ { "path": "compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp", "patch": "@@ -347,7 +347,13 @@ extern \"C\" LLVMTargetMachineRef LLVMRustCreateTargetMachine(\n // option causes bugs in the LLVM WebAssembly backend. You should be able to\n // remove this check when Rust's minimum supported LLVM version...
2026-02-27T22:53:09
electron/electron
9023707b9bae3e02256c4303d1b2433a0036011d
2875fab452961a6b293d4d300e1a4b9907191bf5
fix: crash with creating OffScreenWebContentsView (#42920) On the Mac platform, OffScreenWebContentsView uses Automatic Reference Counting (ARC) to handle the lifecycle of offScreenView_. However, this private member variable is not initialized and its value is undefined. In some cases, it is initialized to a garba...
[ { "path": "shell/browser/osr/osr_web_contents_view.h", "patch": "@@ -109,7 +109,7 @@ class OffScreenWebContentsView : public content::WebContentsView,\n raw_ptr<content::WebContents> web_contents_ = nullptr;\n \n #if BUILDFLAG(IS_MAC)\n- RAW_PTR_EXCLUSION OffScreenView* offScreenView_;\n+ RAW_PTR_EXCLUS...
2024-07-17T11:09:32
facebook/react
8d74e8c73a5cc5e461bb1413a74c6b058c6be134
2504dbd669e0f6ef34834c4445d4e4851e1d0b2a
[compiler] Patch error reporting for blocklisted imports ghstack-source-id: 614c1e9c04828bfa2da13a6abaeff7ce3e67cb9b Pull Request resolved: https://github.com/facebook/react/pull/30652
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Imports.ts", "patch": "@@ -7,32 +7,39 @@\n \n import {NodePath} from '@babel/core';\n import * as t from '@babel/types';\n-import {CompilerError} from '../CompilerError';\n+import {CompilerError, ErrorSeverity} from '../CompilerError';\...
2024-08-09T20:43:21
golang/go
ff45d5d53cd942cfeab6c47b8414502e6dce4870
861c90c907db1129dcd1540eecd3c66b6309db7a
encoding/json/internal/jsonflags: fix comment with wrong field name Flags struct has field Values but in the comments use Value. Fix it to correct name Values. Change-Id: Ib47e62538599a788c69fda27a7e2a97b8cf73263 Reviewed-on: https://go-review.googlesource.com/c/go/+/701415 Reviewed-by: Joseph Tsai <joetsai@digital-s...
[ { "path": "src/encoding/json/internal/jsonflags/flags.go", "patch": "@@ -169,8 +169,8 @@ func (dst *Flags) Join(src Flags) {\n \t// Copy over all source presence bits over to the destination (using OR),\n \t// then invert the source presence bits to clear out source value (using AND-NOT),\n \t// then copy o...
2025-09-06T14:51:37
nodejs/node
de1b34557bd2a0ecf623e3afab185427613d4744
f9ea8d6dffb7bda454cd7427ae57b8c9e8700cbb
test: improve timeout duration for debugger events PR-URL: https://github.com/nodejs/node/pull/56970 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
[ { "path": "test/common/debugger.js", "patch": "@@ -7,7 +7,8 @@ const BREAK_MESSAGE = new RegExp('(?:' + [\n 'exception', 'other', 'promiseRejection', 'step',\n ].join('|') + ') in', 'i');\n \n-let TIMEOUT = common.platformTimeout(5000);\n+// Some macOS machines require more time to receive the outputs fro...
2025-02-10T23:27:08
vercel/next.js
714a702068c5d5c95354b2b76159e57832b25799
a8f55b92d50b64bc17f7ff935726cf979e80efde
[middleware]: add upper bound to cloneBodyStream (#84539) <!-- 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 Contri...
[ { "path": "packages/next/errors.json", "patch": "@@ -857,5 +857,8 @@\n \"856\": \"`lockfileTryAcquireSync` is not supported by the wasm bindings.\",\n \"857\": \"`lockfileUnlock` is not supported by the wasm bindings.\",\n \"858\": \"`lockfileUnlockSync` is not supported by the wasm bindings.\",\n- \...
2025-10-08T22:47:10
electron/electron
fd907bc0a3cdac25a10b99a77c4b19013ffc6a00
c7709747d07c72bda1443c1a32a78eb577f91db9
fix: `getUserMedia` needs macOS system permissions check (#42899) fix: getUserMedia needs macOS system permissions check Closes https://github.com/electron/electron/issues/42714 Closes https://github.com/electron/electron/issues/29861
[ { "path": "shell/browser/web_contents_permission_helper.cc", "patch": "@@ -7,23 +7,29 @@\n #include <string_view>\n #include <utility>\n \n+#include \"components/content_settings/core/common/content_settings.h\"\n+#include \"components/webrtc/media_stream_devices_controller.h\"\n #include \"content/public/b...
2024-07-17T09:30:05
facebook/react
0e6d8c3d1a7adf1db5a4dbe8bba6b8d6c0f31097
2d2cc042d7812499baf992804fbf83c20caa7436
[ci] fix path in compiler_typescript.yml (#30651) The path was incorrect, so the job didn\t run on changes to it.
[ { "path": ".github/workflows/compiler_typescript.yml", "patch": "@@ -6,7 +6,7 @@ on:\n pull_request:\n paths:\n - compiler/**\n- - .github/workflows/compiler-typescript.yml\n+ - .github/workflows/compiler_typescript.yml\n \n env:\n TZ: /usr/share/zoneinfo/America/Los_Angeles", "a...
2024-08-09T17:21:24
golang/go
832c1f76dc665f0e211eec12dd77c17fa2ceedd7
0b323350a5a4e996e8bd3312837a8e53735107c1
[dev.simd] cmd/compile: enhance prove to deal with double-offset IsInBounds checks For chunked iterations (useful for, but not exclusive to, SIMD calculations) it is common to see the combination of ``` for ; i <= len(m)-4; i += 4 { ``` and ``` r0, r1, r2, r3 := m[i], m[i+1], m[i+2], m[i+3] `` Prove did not handle th...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2174,6 +2174,65 @@ func unsignedSubUnderflows(a, b uint64) bool {\n \treturn a < b\n }\n \n+// checkForChunkedIndexBounds looks for index expressions of the form\n+// A[i+delta] where delta < K and i <= len(A)-K. That is, this is a chunked\n+...
2025-09-03T17:09:32
nodejs/node
72e1a8fbcc29d8d4eaccb90498782f400b9df278
b0c6e10c5e01f4aec1035015dcd26fedb478571a
sqlite: fix coverity warnings related to backup() This commit fixes several coverity warnings related to the recently landed backup() API. PR-URL: https://github.com/nodejs/node/pull/56961 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jas...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -171,9 +171,9 @@ class BackupJob : public ThreadPoolWork {\n env_(env),\n source_(source),\n pages_(pages),\n- source_db_(source_db),\n- destination_name_(destination_name),\n- dest_db_(dest_db) {\n+ source_db_(...
2025-02-10T18:27:01
vercel/next.js
5080edb7dc2ea24cd37adf97fb8de03b9e7b0fdb
22c5a06d8d312d29c4f7705abe4569d52f809af3
[docs] fix missing-data-scroll-behavior doc (#84651) Fixes the code snippets for this doc.
[ { "path": "errors/missing-data-scroll-behavior.mdx", "patch": "@@ -12,30 +12,28 @@ Next.js automatically attempts to detect the smooth scrolling configuration to e\n \n Add `data-scroll-behavior=\"smooth\"` to your `<html>` element if you want to disable smooth scrolling when routing via Next.js.\n \n-```ht...
2025-10-08T20:37:53
electron/electron
778d3098a0f0bfc00015d54263674318f4adf6b1
cbd11bb60510360c05f678bcaab8425ae190f2f2
feat: customize border radius of Views (#42320) * feat: add View#setBorderRadius test: initial setBorderRadius tests fix: robustly set border radius chore: add PAUSE_CAPTURE_TESTS for easier screencap dev feat: add view border radius support test: view border radius refactor: cleanup view code * m...
[ { "path": "chromium_src/BUILD.gn", "patch": "@@ -14,6 +14,8 @@ import(\"//third_party/widevine/cdm/widevine.gni\")\n static_library(\"chrome\") {\n visibility = [ \"//electron:electron_lib\" ]\n sources = [\n+ \"//ash/style/rounded_rect_cutout_path_builder.cc\",\n+ \"//ash/style/rounded_rect_cutou...
2024-07-17T00:16:25
golang/go
861c90c907db1129dcd1540eecd3c66b6309db7a
57769b5532e96a8f6b705035a39ee056a22e04c3
net/http: pool transport gzip readers goos: linux goarch: amd64 pkg: net/http │ HEAD~1 │ HEAD │ │ sec/op │ sec/op vs base │ ClientGzip-8 621.0µ ± 2% 616.3µ ± 10% ~ (p=0.971 n=10) │ HEAD~1 │ HEAD ...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"compress/gzip\"\n \t\"compress/zlib\"\n \t\"context\"\n+\tcrand \"crypto/rand\"\n \t\"crypto/tls\"\n \t\"crypto/x509\"\n \t\"encoding/json\"\n@@ -5281,8 +5282,8 @@ func benchmarkClientServerParallel(b *testing.B, parallelism ...
2025-09-03T10:09:08
vercel/next.js
8be4e433405da68ec6ed46147c46c69d5c6e3297
69e3e629b6ea5ec67b6dca0a47bd4e7ba6eb70d4
[turbopack] No op the webpack bundle analyzer under turbopack (#84614) This never worked with turbopack, but with the recent default flip using this now breaks the build since it complains about configuring webpack in a turbopack build. So print a warning and no-op the analyzer. This isn't ideal but it is more actio...
[ { "path": "packages/next-bundle-analyzer/index.js", "patch": "@@ -4,6 +4,13 @@ module.exports =\n if (!enabled) {\n return nextConfig\n }\n+ if (process.env.TURBOPACK) {\n+ console.warn(\n+ 'The Next Bundle Analyzer is not compatible with Turbopack builds yet, no report will be ...
2025-10-08T19:32:50
nodejs/node
c5c71b2946a01dd05510eab5a4f6df9f85a490e3
03e9adf876e2039604a038b2eb1476bf4a9e1774
src: add nullptr handling for `NativeKeyObject` Fixes: https://github.com/nodejs/node/issues/56899 PR-URL: https://github.com/nodejs/node/pull/56900 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com>
[ { "path": "src/crypto/crypto_keys.cc", "patch": "@@ -1045,6 +1045,7 @@ void NativeKeyObject::New(const FunctionCallbackInfo<Value>& args) {\n CHECK_EQ(args.Length(), 1);\n CHECK(args[0]->IsObject());\n KeyObjectHandle* handle = Unwrap<KeyObjectHandle>(args[0].As<Object>());\n+ CHECK_NOT_NULL(handle);...
2025-02-10T15:09:22
rust-lang/rust
97bd98546744bb8da6b629d8629447f765988c07
e0cb264b814526acb82def4b5810e394a2ed294f
fix(abi): Restore `noundef` on `PassMode::Cast` args in Rust ABI `adjust_for_rust_abi` was casting small aggregates to an integer register without propagating `noundef`, causing a performance regression (#123183) — LLVM could no longer assume the bits were fully defined. Add `layout_is_noundef` (conservative) + `fiel...
[ { "path": "compiler/rustc_target/src/callconv/mod.rs", "patch": "@@ -1,8 +1,8 @@\n use std::{fmt, iter};\n \n use rustc_abi::{\n- AddressSpace, Align, BackendRepr, CanonAbi, ExternAbi, HasDataLayout, Primitive, Reg, RegKind,\n- Scalar, Size, TyAbiInterface, TyAndLayout,\n+ AddressSpace, Align, Back...
2026-02-27T20:08:59
electron/electron
cbd11bb60510360c05f678bcaab8425ae190f2f2
81351dd1a9f60010b1a7db2209a1578ebe6a57b0
fix: `BrowserWindow.setBackgroundColor` should work with transparency (#42824) fix: BrowserWindow.setBackgroundColor should work with transparency
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -3729,14 +3729,17 @@ void WebContents::SetBackgroundColor(std::optional<SkColor> maybe_color) {\n type_ == Type::kBrowserView\n ? SK_ColorTRANSPA...
2024-07-16T18:11:49
golang/go
57769b5532e96a8f6b705035a39ee056a22e04c3
a6144613d3b601be1db6aa2fdaa79c954fdfe02c
os: reject OpenDir of a non-directory file in Plan 9 Check that the path argument to OpenDir in Plan 9 is a directory, and return error syscall.ENOTDIR if it is not. Fixes #75196 Change-Id: I3bec6b6b40a38c21264b5d22ff3e7dfbf8c1c6d7 Reviewed-on: https://go-review.googlesource.com/c/go/+/700855 Reviewed-by: Damien Nei...
[ { "path": "src/os/file_plan9.go", "patch": "@@ -135,7 +135,20 @@ func openFileNolog(name string, flag int, perm FileMode) (*File, error) {\n }\n \n func openDirNolog(name string) (*File, error) {\n-\treturn openFileNolog(name, O_RDONLY, 0)\n+\tf, e := openFileNolog(name, O_RDONLY, 0)\n+\tif e != nil {\n+\t\...
2025-09-04T10:42:56
vercel/next.js
ab99f9a29b81a0bfda4f2779e0557b6726aae6db
c98f18212df22f7fcacb7cecd4f7e23c1501977b
[breaking]: enable clientSegmentCache by default (#84643) This enables `experimental.clientSegmentCache` by default and the additional CI resources associated with testing it independently. There were a few remaining test failures that are individually disabled with `TODO(client-segment-cache)` markers. We can fix fo...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -1000,73 +1000,6 @@ jobs:\n stepName: 'test-experimental-prod-${{ matrix.group }}'\n secrets: inherit\n \n- test-client-segment-cache-integration:\n- name: test clientSegmentCache integration\n- needs: ['optimize-ci', 'changes',...
2025-10-08T17:46:06
nodejs/node
3844e7e0ed3627c8185270df33b160b9df38ca94
6ba36b4e03316466d89b345f3ef5de835ddee932
2025-02-10, Version 20.18.3 'Iron' (LTS) Notable changes: crypto: * update root certificates to NSS 3.104 (Richard Lau) https://github.com/nodejs/node/pull/55681 doc: * add LJHarb to collaborators (Jordan Harband) https://github.com/nodejs/node/pull/56132 * enforce strict policy to semver-major releases (Rafael...
[ { "path": "CHANGELOG.md", "patch": "@@ -69,7 +69,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V22.md#22.0.0\">22.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.18.2\">20.18.2</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.18.3\">20.18.3...
2025-01-22T13:04:10
rust-lang/rust
3ecd18ca376b59e96db9b1daa8d14a4fe6856adc
1500f0f47f5fe8ddcd6528f6c6c031b210b4eac5
std: make `OsString::truncate` a no-op when `len > current_len` Align `OsString::truncate` (and the underlying WTF-8 implementation) with `String::truncate` by making it a no-op when `len > self.len()`. Previously, `OsString::truncate` would panic if `len > self.len()`, while `String::truncate` treats such cases as a...
[ { "path": "library/alloc/src/wtf8/mod.rs", "patch": "@@ -342,14 +342,18 @@ impl Wtf8Buf {\n \n /// Shortens a string to the specified length.\n ///\n+ /// If `new_len` is greater than the string's current length, this has no\n+ /// effect.\n+ ///\n /// # Panics\n ///\n- /// Panic...
2026-02-23T01:45:28
electron/electron
81351dd1a9f60010b1a7db2209a1578ebe6a57b0
f575e5258619f05c8fcc0f3ffa0f5afdc68b406d
build: fix clang format location helper (again) (#42911)
[ { "path": "script/lib/util.py", "patch": "@@ -194,6 +194,9 @@ def get_buildtools_executable(name):\n chromium_platform = 'linux64'\n else:\n raise Exception(f\"Unsupported platform: {sys.platform}\")\n+ \n+ if name == 'clang-format':\n+ chromium_platform += '-format'\n \n path = os.path.joi...
2024-07-16T15:21:18
golang/go
d767064170aa3469404d25608d9ff9fa48962337
0b1eed09a34f5a1e0a5c237bc9771eb036b35319
cmd/compile: mark abi.PtrType.Elem sym as used CL 700336 let the compiler see into the abi.PtrType.Elem field, but forgot the MarkTypeSymUsedInInterface to ensure that the symbol is marked as referenced. I am not sure how to write a test for this, but I noticed this when working on further optimizations where I "fixe...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2778,10 +2778,10 @@\n (Load <typ.Uintptr> (ITab (IMake (Convert (Addr {s} sb) _) _)) _) && isFixedSym(s, 0) => (Addr {fixedSym(b.Func, s, 0)} sb)\n \n // Loading constant values from abi.PtrType.Elem.\n-(Load <t> (OffPtr [off] ...
2025-09-05T19:59:33
vercel/next.js
2c43e517735f000b5adcb4becea44f81fc0419f6
bf8cadd865c88a4c8222d749491c93816de97506
[Segment Cache] Fix tests related to optimistic loading state reuse (#84498) When navigating to a route that reads from search params, and there's no matching route prefetch in the cache, we use a trick where we optimistically assume that a route will not be rewritten or redirected based on the search string. So, if w...
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache-key.ts", "patch": "@@ -21,6 +21,8 @@ export function createCacheKey(\n originalHref: string,\n nextUrl: string | null\n ): RouteCacheKey {\n+ // TODO: We should remove the hash from the href and track that separately.\n+ // There'...
2025-10-08T16:34:20
facebook/react
2bd415355e3ec9b87859b68af05972bc50390753
e662b0a24b1d8a1c8ec86558aef4b7e5c4427116
[compiler][repro] ValidatePreserveMemo x useRef bug ghstack-source-id: 6ac5d58e97eba92642b5e4c5e2f915d91a5730dc Pull Request resolved: https://github.com/facebook/react/pull/30602
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-maybe-mutable-ref-memo-not-preserved.expect.md", "patch": "@@ -0,0 +1,45 @@\n+\n+## Input\n+\n+```javascript\n+// @validatePreserveExistingMemoizationGuarantees:true\n+\n+import {useRef, useMemo} from 'react';\n+imp...
2024-08-07T23:11:31
nodejs/node
1781f6363359f3d0d944360c13f9e6206938418d
a2aa6ca9d72c2d6d7e17a39aa13a801352113ff0
fs: make `FileHandle.readableWebStream` always create byte streams The original implementation of the experimental `FileHandle.readableWebStream` API created non-`type: 'bytes'` streams, which prevented callers from creating `mode: 'byob'` readers from the returned stream, which means they could not achieve the associ...
[ { "path": "doc/api/fs.md", "patch": "@@ -477,11 +477,14 @@ Reads data from the file and stores that in the given buffer.\n If the file is not modified concurrently, the end-of-file is reached when the\n number of bytes read is zero.\n \n-#### `filehandle.readableWebStream([options])`\n+#### `filehandle.read...
2025-02-10T03:40:31
electron/electron
f173a0637ad32bb34d32009f24d5493b38daf681
ae1a684d10f0ca32ff0ebbed1706a05d1acce3b5
chore: fix `npm run lint` not working on Windows (#42281) * fix: fixed the `npm run lint` not working on Windows. * chore: more fixes for lint on Windows * chore: revert change to patch linting --------- Co-authored-by: David Sanders <dsanders11@ucsbalum.com>
[ { "path": ".gitattributes", "patch": "@@ -22,6 +22,7 @@ patches/**/.patches merge=union\n *.md text eol=lf\n *.mm text eol=lf\n *.mojom text eol=lf\n+*.patches text eol=lf\n *.proto text eol=lf\n *.py text eol=lf\n *.ps1 text eol=lf", "additions": 1, "deletions": 0, "language": "Unknown" }, ...
2024-07-15T16:08:33
vercel/next.js
a7d3aecafedc920221a885b8ab00f35f6de5e91c
e0f676b698a02ffa06ab8b41aff717fed3a69f23
Turbopack: avoid race condition when updating cells (#84598) ### What? The update cell operation has a race condition. There is a time between changing the value and invalidating the dependent tasks. That sounds fine as tasks are eventually invalidated. But it's not due to recomputing tasks. Tasks are considered...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -831,7 +831,6 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n return Ok(Err(self.listen_to_cell(&mut task, task_id, reader, cell).0));\n }\n let is_cancelled = matches!(in_progress, Some(In...
2025-10-08T13:11:27
facebook/react
e662b0a24b1d8a1c8ec86558aef4b7e5c4427116
e948a5ac6876a016ff57f7177f93452ea2eeb574
[compiler][be] Less ambiguous error messages for validateMemo bailout ghstack-source-id: 312093ec74d733bccd2d2d8400eaba267c9e33a7 Pull Request resolved: https://github.com/facebook/react/pull/30601
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts", "patch": "@@ -433,64 +433,74 @@ class Visitor extends ReactiveFunctionVisitor<VisitorState> {\n * recursively visits ReactiveValues and instructions\n */\n this.recordTemporaries(ins...
2024-08-07T23:11:30
nodejs/node
a2aa6ca9d72c2d6d7e17a39aa13a801352113ff0
d1f8ccb10daba0b4eb4db4986615a545e11a0d87
test_runner: print formatted errors on summary PR-URL: https://github.com/nodejs/node/pull/56911 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/test_runner/reporter/spec.js", "patch": "@@ -30,6 +30,31 @@ class SpecReporter extends Transform {\n colors.refresh();\n }\n \n+ #formatFailedTestResults() {\n+ if (this.#failedTests.length === 0) {\n+ return '';\n+ }\n+\n+ const results = [\n+ `\\n${reporte...
2025-02-09T18:03:38
golang/go
0b1eed09a34f5a1e0a5c237bc9771eb036b35319
f5b20689e9a055223a6dbb6b63f53648ed02cd74
vendor/golang.org/x/tools: update to a09a2fb Notably, this includes unitchecker's -fix flag. Also, fix one vet test that failed due to new diagnostic wording. Change-Id: I87751083dcd9cc4b1d8dce7d54bb796c745436d0 Reviewed-on: https://go-review.googlesource.com/c/go/+/701195 Reviewed-by: Dmitri Shuralyov <dmitshur@gol...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.35.0\n \tgolang.org/x/telemetry v0.0.0-20250807160809-1a19826ec488\n \tgolang.org/x/term v0.34.0\n-\tgolang.org/x/tools v0.36.1-0.20250808220315-8866876b956f\n+\tgolang.org/x/tools v0.36.1-0.20250904192731-a09a2fba1c08...
2025-09-04T19:29:52
electron/electron
ae1a684d10f0ca32ff0ebbed1706a05d1acce3b5
1e1dc22e167a9b7313aaa914fb400a19edbbeb7f
fix: iteration issues in hid `RevokeEphemeralDevicePermission` (#42851) fix: iteration issues in hid RevokeEphemeralDevicePermission
[ { "path": "shell/browser/hid/hid_chooser_context.cc", "patch": "@@ -12,6 +12,7 @@\n \n #include \"base/command_line.h\"\n #include \"base/containers/contains.h\"\n+#include \"base/containers/map_util.h\"\n #include \"base/strings/string_util.h\"\n #include \"base/strings/stringprintf.h\"\n #include \"base/s...
2024-07-15T14:41:38
facebook/react
838da52d67a42295e05aad8d03f962129d9d88ff
030d83bab402723cbcb28d48889b9bd83ee3914a
[ci] Fix incorrect tags being pushed for compiler releases ghstack-source-id: 812e49333ce19c3d13adb6cc87154fb83d7639b0 Pull Request resolved: https://github.com/facebook/react/pull/30620
[ { "path": "compiler/scripts/release/publish.js", "patch": "@@ -61,9 +61,8 @@ async function main() {\n })\n .option('tags', {\n description: 'Tags to publish to npm',\n- type: 'choices',\n- choices: ['experimental'],\n- default: ['experimental'],\n+ type: 'string',\n+ ...
2024-08-06T21:15:56
vercel/next.js
6d536ed25bf9325710bf6ad158ce0c35e98ce3ed
b41b737b2479bd83f22229b96085bdb13f177b8a
Turbopack: improve errors/warnings for turbopack messages (#84552) ### What? * make the turbopack error not a really long line, which is annoying in the deployment build log * Show a `(invalid experimental key)` info in the list of experimental options when they are not supported.
[ { "path": "packages/next/src/lib/turbopack-warning.ts", "patch": "@@ -152,15 +152,20 @@ export async function validateTurboNextConfig({\n if (process.env.TURBOPACK === 'auto' && hasWebpackConfig && !hasTurboConfig) {\n const configFile = rawNextConfig.configFileName ?? 'your Next config file'\n Lo...
2025-10-08T06:02:50
nodejs/node
bf12d72faa1b55cfb5fd7d52a221f896886b116c
f5353100be3ba6c05d9ee77524efc42321781d1d
zlib: add zstd support Fixes: https://github.com/nodejs/node/issues/48412 PR-URL: https://github.com/nodejs/node/pull/52100 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "benchmark/zlib/creation.js", "patch": "@@ -5,7 +5,7 @@ const zlib = require('zlib');\n const bench = common.createBenchmark(main, {\n type: [\n 'Deflate', 'DeflateRaw', 'Inflate', 'InflateRaw', 'Gzip', 'Gunzip', 'Unzip',\n- 'BrotliCompress', 'BrotliDecompress',\n+ 'BrotliCompress', 'B...
2024-03-15T21:54:30
electron/electron
1e1dc22e167a9b7313aaa914fb400a19edbbeb7f
bbd7f4a5ad6fbc6d88fcd6924eace4ad3f777d33
fix: crash when resolving proxy due to network service restart (#42878)
[ { "path": "shell/browser/browser_process_impl.cc", "patch": "@@ -329,7 +329,7 @@ const std::string& BrowserProcessImpl::GetSystemLocale() const {\n electron::ResolveProxyHelper* BrowserProcessImpl::GetResolveProxyHelper() {\n if (!resolve_proxy_helper_) {\n resolve_proxy_helper_ = base::MakeRefCounted...
2024-07-15T08:46:24
golang/go
459b85ccaa30bbce4c22b2779672dfe402a2b2da
87e72769fa74a2ef0bd81a3fd4febe75b8fc6731
cmd/fix: remove all functionality except for buildtag For #73605 Change-Id: I4b46b5eb72471c215f2cc208c1b0cdd1fbdbf81a Reviewed-on: https://go-review.googlesource.com/c/go/+/695855 Reviewed-by: Michael Matloob <matloob@golang.org> Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Alan Donovan <adonovan@googl...
[ { "path": "src/cmd/fix/cftype.go", "patch": "@@ -6,9 +6,6 @@ package main\n \n import (\n \t\"go/ast\"\n-\t\"go/token\"\n-\t\"reflect\"\n-\t\"strings\"\n )\n \n func init() {\n@@ -18,130 +15,11 @@ func init() {\n var cftypeFix = fix{\n \tname: \"cftype\",\n \tdate: \"2017-09-27\",\n-\tf: cfty...
2025-08-13T14:33:14
rust-lang/rust
350a964d7ca480dcfcae58ea397f8886ce004e9d
d52424c4246d94ad16ba931cb2e7d2ae33ab41cd
Fix subdiagnostics that use non-local variables
[ { "path": "compiler/rustc_hir_analysis/src/errors.rs", "patch": "@@ -88,6 +88,8 @@ pub(crate) enum AssocItemNotFoundLabel<'a> {\n NotFound {\n #[primary_span]\n span: Span,\n+ assoc_ident: Ident,\n+ assoc_kind: &'static str,\n },\n #[label(\n \"there is {$id...
2026-02-27T15:22:47
facebook/react
030d83bab402723cbcb28d48889b9bd83ee3914a
9f0508fcf47026cdc58e49a15e5865b66a24480f
[ci] Fix dist-tag command ghstack-source-id: bdbcc12b2815d00d790397c6a6702c7f6e1564e0 Pull Request resolved: https://github.com/facebook/react/pull/30619
[ { "path": "compiler/scripts/release/publish.js", "patch": "@@ -180,22 +180,17 @@ async function main() {\n spinner.start('Pushing tags to npm');\n for (const tag of argv.tags) {\n try {\n- let opts;\n+ let opts = ['dist-tag', 'add', `${pkgName}@${newVersion}`, tag];\n ...
2024-08-06T19:30:47
vercel/next.js
9962fa563c34a471fc1817aefff60377d8800c45
29010ffdf40c9d0cd371a862e9aa72878528626b
Turbopack: delete .next folder before throwing due to "pages/app directory must be in the same folder" (#84553) ### What? I expect an empty .next folder after an error, so it should delete it before doing the check, so that an error doesn't result in a stale .next folder
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -1016,6 +1016,34 @@ export default async function build(\n NextBuildContext.originalRewrites = config._originalRewrites\n NextBuildContext.originalRedirects = config._originalRedirects\n \n+ const distDirCreated = await nextBuildSpa...
2025-10-07T22:39:17
rust-lang/rust
2e0fdc5c7fc2e054d3217452961953347493e7ca
0ee5907d597b02afadb5daa26a60fedb72f098d1
disable the fragment_in_final test on s390x on s390x 128bit types have a smaller alignment then on x86[^1]. This leads to the tests falling due to different errors emitted. As this affects the same infrastructure as #149056 lets also for now disable the tests on s390x. [^1]: s390x ELF ABI Table 1.1, Page 12 https://...
[ { "path": "tests/ui/consts/const-eval/ptr_fragments_in_final.rs", "patch": "@@ -1,4 +1,5 @@\n //! Test that we properly error when there is a pointer fragment in the final value.\n+//@ ignore-s390x different alignment on s390x make the test fail\n \n use std::{mem::{self, MaybeUninit}, ptr};\n ", "addit...
2026-02-27T10:48:00