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
702f164ed1a4a64cfa60e10723b9b7344bd3f601
fca5832607d7c1afa20b82ca00ba4a27e28c0d0a
cmd/vet: add hostport analyzer + test, release note Fixes #28308 Change-Id: I190e2fe513eeb6b90b0398841f67bf52510b5f59 Reviewed-on: https://go-review.googlesource.com/c/go/+/667596 Auto-Submit: Alan Donovan <adonovan@google.com> Commit-Queue: Alan Donovan <adonovan@google.com> Reviewed-by: Jonathan Amsterdam <jba@goo...
[ { "path": "doc/next/3-tools.md", "patch": "@@ -26,10 +26,17 @@ specifying the command's current version.\n \n ### Vet {#vet}\n \n+The `go vet` command includes new analyzers:\n+\n <!-- go.dev/issue/18022 -->\n \n-The `go vet` command now includes the\n-[waitgroup](https://pkg.go.dev/golang.org/x/tools/go/an...
2025-04-23T18:23:45
nodejs/node
accf2acdfb1798e13fb93c3f1667b79da92c39a3
5f52c8ae5437e4cc0a396813f7c576e6f65115ef
build: support `lint-js-fix` in `vcbuild.bat` PR-URL: https://github.com/nodejs/node/pull/53695 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: James M Snell <jasnell@...
[ { "path": "vcbuild.bat", "patch": "@@ -41,6 +41,7 @@ set msi=\n set upload=\n set licensertf=\n set lint_js=\n+set lint_js_fix=\n set lint_cpp=\n set lint_md=\n set lint_md_build=\n@@ -115,6 +116,7 @@ if /i \"%1\"==\"test-v8-benchmarks\" set test_v8_benchmarks=1&set custom_v8_test=1&g\n if /i \"%1\"==\"test...
2024-08-06T05:57:35
rust-lang/rust
809af1f6353ceb0fef375c2ea89623deef07e8c4
e4b746486c91de2a50eafadb9be71512aa149e73
Fix clippy warnings
[ { "path": "src/builder.rs", "patch": "@@ -1495,6 +1495,8 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n \n #[cfg(not(feature = \"master\"))]\n fn extract_element(&mut self, vec: RValue<'gcc>, idx: RValue<'gcc>) -> RValue<'gcc> {\n+ use crate::context::new_arr...
2026-01-30T16:37:19
facebook/react
034130c02ffb47b0026059b57d17e9b080976ff3
1940cb27b260c2eab79c76763d1151ba18353ff8
Fix Broken Links In Documentation (#28321) ## Summary I used [link-inspector](https://github.com/justindhillon/link-inspector) to find a bunch of broken links in this projects documentation. Here is what I fixed: https://www.html5rocks.com/en/tutorials/canvas/hidpi/ --> https://web.dev/articles/canvas-hidipi ...
[ { "path": "fixtures/dom/src/components/fixtures/suspense/index.js", "patch": "@@ -213,7 +213,7 @@ class TextInputFixtures extends React.Component {\n \n <Fixture>\n <SuspendyTree>\n- <img src=\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Atom_%282%29.png\" />\n+ ...
2024-03-03T22:44:27
vercel/next.js
3a5d293c38881b2f37b165b24dc31b309f1c4175
f8afa172a0710575ca514b700d282935c5bd2d79
feat(turbopack): Log anonymized internal error (panic) information to telemetry (#81272) ## Goals - Pass through a custom `TurbopackInternalError` type when a Rust panic or an unexpected top-level `anyhow::Error` occurs. - Make a best-effort attempt to log a location of the error to telemetry. - In the case of a pa...
[ { "path": "Cargo.lock", "patch": "@@ -2321,9 +2321,9 @@ checksum = \"e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c\"\n \n [[package]]\n name = \"futures\"\n-version = \"0.3.30\"\n+version = \"0.3.31\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"645c...
2025-07-17T15:51:59
golang/go
93e4e26d5b909c3dbeeb638534461155f06ecf5c
489917fc400ee25d34dfb06306da3b3cef126963
runtime: fix typos in comments Change-Id: Id169b68cc93bb6eb4cdca384efaaf971fcfa32b7 Reviewed-on: https://go-review.googlesource.com/c/go/+/666316 Reviewed-by: abner chenc <chenguoqi@loongson.cn> Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/runtime/mkduff.go", "patch": "@@ -179,8 +179,8 @@ func copyARM64(w io.Writer) {\n \n func zeroLOONG64(w io.Writer) {\n \t// R0: always zero\n-\t// R19 (aka REGRT1): ptr to memory to be zeroed\n-\t// On return, R19 points to the last zeroed dword.\n+\t// R20: ptr to memory to be zeroed\n+\t// ...
2025-04-17T12:21:29
rust-lang/rust
f1c80f598826f9cbb7471939d46869314c86744e
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
reduce the amount of panics in `{TokenStream, Literal}::from_str` calls
[ { "path": "compiler/rustc_errors/src/diagnostic.rs", "patch": "@@ -1378,6 +1378,13 @@ impl<'a, G: EmissionGuarantee> Diag<'a, G> {\n drop(self);\n }\n \n+ /// Cancels this diagnostic and returns its first message, if it exists.\n+ pub fn cancel_into_message(self) -> Option<String> {\n+ ...
2026-01-26T10:56:29
facebook/react
bb4b147da9a892529995f55f15f19f46a00cf4f6
b8da12e8f8e6a6b087f6531c1c791ab41e5273d4
Clean up empty string special cases (#28475) This was fixed in https://github.com/facebook/react/pull/22807 so we don't need these special cases anymore.
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -2977,13 +2977,6 @@ export function warnForInsertedHydratedText(\n text: string,\n ) {\n if (__DEV__) {\n- if (text === '') {\n- // We expect to insert empty text nodes since they're not represented in\n- ...
2024-03-01T01:27:26
electron/electron
a97028bacfba8c0416e02805897e89d1c013717c
cc7d724a3b85a858044916e5a4b61269610cab09
fix: Notification 'Show' button visible when no actions exist (#38997)
[ { "path": "shell/browser/notifications/mac/cocoa_notification.mm", "patch": "@@ -64,6 +64,11 @@\n options.reply_placeholder)];\n }\n \n+ // We need to explicitly set this to false if there are no\n+ // actions, otherwise a Show button will appear by default....
2023-07-06T19:50:08
golang/go
8a85a2e70a97773ac96e899df7411eda4f5da2cb
7d0cb2a2adec493b8ad9d79ef35354c8e20f0213
runtime, internal/runtime/maps: speed-up empty/zero map lookups This lets the inliner do a better job optimizing the mapKeyError call. goos: linux goarch: amd64 pkg: runtime cpu: AMD Ryzen 5 4600G with Radeon Graphics │ /tmp/before2 │ /tmp/after3 │ ...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2359,8 +2359,8 @@ var blockedLinknames = map[string][]string{\n \t\"crypto/internal/sysrand.fatal\": {\"crypto/internal/sysrand\"},\n \t\"crypto/rand.fatal\": {\"crypto/rand\"},\n \t\"internal/runtime/maps.errNilAs...
2025-04-07T13:21:16
vercel/next.js
96b31f8e678bfe2c259a96b97d35632373bced38
4e0b1125a466bdc81ead94969008c55509ea4ad0
[devtool] fix duplicate rendered indicator on server (#81729) There're should be only one indicator rendered when `showIndicator` state is true, the previous condition is not correct since the previous change seem causing indicator always rendered even on SSR. since devtool bundle is also bundled on ssr layer, but the...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.css", "patch": "@@ -0,0 +1,145 @@\n+[data-nextjs-toast] {\n+ &[data-hidden='true'] {\n+ display: none;\n+ }\n+}\n+\n+.dev-tools-indicator-menu {\n+ -webkit-font-smoothing: antialiased;\n+ display: ...
2025-07-16T23:19:46
rust-lang/rust
c89a89bb14697732aab746bda058c67d0eba4f5f
8340622e14324d0090a6edf42fce44fea3d7824f
Fix multi-cgu+debug builds using autodiff by delaying autodiff till lto
[ { "path": "compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp", "patch": "@@ -812,12 +812,12 @@ extern \"C\" LLVMRustResult LLVMRustOptimize(\n auto ThinLTOBuffer = std::make_unique<LLVMRustThinLTOBuffer>();\n raw_string_ostream ThinLTODataOS(ThinLTOBuffer->data);\n raw_string_ostream ThinLinkDataOS(Thi...
2026-02-11T19:08:56
facebook/react
6dbec55791dd858cceb4fb145df2300bab12281a
9d5a01359faf1652eda92952aa6e40d2e61968e1
Support prefixed useState due to pre-bundling
[ { "path": "compiler/packages/snap/src/SproutTodoFilter.ts", "patch": "@@ -444,6 +444,7 @@ const skipFilter = new Set([\n \"forest/forest-phi-type-unused-initializer.flow\",\n \"forest/forest-TaskEditor.flow\",\n \"forest/forest-TaskTitleField.flow\",\n+ \"forest/forest-prefixed-useState.flow\",\n \n ...
2024-02-28T21:12:56
electron/electron
cc7d724a3b85a858044916e5a4b61269610cab09
c7a64ab994de826ed6e4c300cce75d9fd88efa20
fix: menu border being created properly on Windows 11 (#38998) * fix: menu border being created properly on Windows 11 * chore: update patches --------- Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
[ { "path": "patches/chromium/fix_crash_on_nativetheme_change_during_context_menu_close.patch", "patch": "@@ -15,7 +15,7 @@ This should be upstreamed, as other uses of MenuController in this\n file do check for menu controller being null.\n \n diff --git a/ui/views/controls/menu/menu_scroll_view_container.cc ...
2023-07-06T13:46:12
golang/go
7a177114df3e26f4362378e907a869c4fbbf38b7
7ce45a014c52375d6a3da577828c9f035a72857a
runtime: commit to spinbitmutex GOEXPERIMENT Use the "spinbit" mutex implementation always (including on platforms that need to emulate atomic.Xchg8), and delete the prior "tristate" implementations. The exception is GOARCH=wasm, where the Go runtime does not use multiple threads. For #68578 Change-Id: Ifc29bbfa050...
[ { "path": "src/internal/buildcfg/exp.go", "patch": "@@ -67,8 +67,6 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {\n \t\tregabiSupported = true\n \t}\n \n-\thaveThreads := goarch != \"wasm\"\n-\n \t// Older versions (anything before V16) of dsymutil don't handle\n \t// the ...
2025-03-14T19:38:34
nodejs/node
a5200da1d0e97012ee0f5750c810ed4c7005ffbb
926503b66910d9ec895c33c7fd94361fd78dea72
doc: move `onread` option from `socket.connect()` to `new net.socket()` Fixes: https://github.com/nodejs/node/issues/53792 PR-URL: https://github.com/nodejs/node/pull/54194 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tim Perry <pimterry@gmail.com>
[ { "path": "doc/api/net.md", "patch": "@@ -667,6 +667,19 @@ changes:\n `false`.\n * `fd` {number} If specified, wrap around an existing socket with\n the given file descriptor, otherwise a new socket will be created.\n+ * `onread` {Object} If specified, incoming data is stored in a single `buffer`...
2024-08-05T23:36:20
vercel/next.js
4e0b1125a466bdc81ead94969008c55509ea4ad0
63090e20f198f7bda7bb746e29fe6a25a1391d8c
Improve error handling for `headers`/`cookies`/`draftMode` in `'use cache'` (#81716) This ensures that we show a proper error with an error stack (potentially source-mapped) when accessing `headers`/`cookies`/`draftMode` in `'use cache'`, even when caught in user-land code. For `searchParams` (currently triggering a t...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -135,6 +135,7 @@ import {\n PreludeState,\n consumeDynamicAccess,\n type DynamicAccess,\n+ logDisallowedDynamicError,\n } from './dynamic-rendering'\n import {\n getClientComponentLoaderMetrics,\n@@ -1456,7 +1457,8 @@ asyn...
2025-07-16T21:27:05
facebook/react
130b809ac2006ebfb381244bfa4bf3828304ea67
8879a2dd498dd6d6d936f1ea2831312a88c0f5c4
Allow property loads from hook Looking up certain properties on a hook is a common pattern for logging. It's non-ideal but it's not a bug to do this. This updates Forget to not error on this pattern.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateHooksUsage.ts", "patch": "@@ -233,7 +233,6 @@ export function validateHooksUsage(fn: HIRFunction): void {\n break;\n }\n case \"PropertyLoad\": {\n- visitPlace(instr.value.object);\n co...
2024-02-29T00:19:43
nodejs/node
c6aeddf140eb4ff2373049a835d371710e016867
981b5e3279e10e8cf01f5032452c45b5ba42acbc
sea: don't set code cache flags when snapshot is used When both useCodeCache and useSnapshot are set, we generate the snapshot and skip the generation of the code cache since the snapshot already includes the code cache. But we previously still persist the code cache setting in the flags that got serialized into the S...
[ { "path": "src/node_sea.cc", "patch": "@@ -355,7 +355,14 @@ std::optional<SeaConfig> ParseSingleExecutableConfig(\n return std::nullopt;\n }\n if (use_code_cache.value()) {\n- result.flags |= SeaFlags::kUseCodeCache;\n+ if (use_snapshot.value()) {\n+ // TODO(joyeecheung): code cache in sn...
2024-08-05T16:48:12
electron/electron
c7a64ab994de826ed6e4c300cce75d9fd88efa20
5a77c75753f560bbc4fe6560441ba88433a561f8
fix: webview crash when removing in close event (#38996)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1297,7 +1297,9 @@ void WebContents::CloseContents(content::WebContents* source) {\n for (ExtendedWebContentsObserver& observer : observers_)\n observer.OnCloseContents();\n \n- Destroy();\n+ // This is handled by the embedder ...
2023-07-06T08:20:34
golang/go
7ce45a014c52375d6a3da577828c9f035a72857a
95611c0eb4436102ab0dad3a705acff5f5eb7aca
runtime: fix test of when a mutex is contended This is used only in tests that verify reports of runtime-internal mutex contention. For #66999 For #70602 Change-Id: I72cb1302d8ea0524f1182ec892f5c9a1923cddba Reviewed-on: https://go-review.googlesource.com/c/go/+/667095 Reviewed-by: Michael Knyszek <mknyszek@google.co...
[ { "path": "src/runtime/lock_spinbit.go", "patch": "@@ -143,7 +143,7 @@ func mutexPreferLowLatency(l *mutex) bool {\n }\n \n func mutexContended(l *mutex) bool {\n-\treturn atomic.Loaduintptr(&l.key) > mutexLocked\n+\treturn atomic.Loaduintptr(&l.key)&^mutexMMask != 0\n }\n \n func lock(l *mutex) {", "ad...
2025-04-08T18:34:56
vercel/next.js
63090e20f198f7bda7bb746e29fe6a25a1391d8c
2eac9dccd85d8ec941c416de5f8f01236a8f1e2e
fix: pages router metadata bugs with React 19 (#81733) When we updated `experimental.strictNextHead` to be true in #65418, we did not update all spots that would default to true in the case where the value was omitted entirely. This led to the default value not being correctly applied in pages router, which resulted ...
[ { "path": "packages/next/src/build/templates/pages.ts", "patch": "@@ -289,9 +289,8 @@ export async function handler(\n reactLoadableManifest,\n \n assetPrefix: nextConfig.assetPrefix,\n- strictNextHead: Boolean(\n- nextConfig.experiment...
2025-07-16T21:25:01
golang/go
04a9b16f3d69aa66f3aaab44dcd322e4a02a82aa
c0245b31fb157590b69245f7dff27f0605b73138
cmd/compile/internal/escape: avoid reading ir.Node during inner loop of walkOne Broadly speaking, escape analysis has two main phases. First, it traverses the AST while building a data-flow graph of locations and edges. Second, during "solve", it repeatedly walks the data-flow graph while carefully propagating informa...
[ { "path": "src/cmd/compile/internal/escape/graph.go", "patch": "@@ -75,6 +75,8 @@ type location struct {\n \tcaptured bool // has a closure captured this variable?\n \treassigned bool // has this variable been reassigned?\n \taddrtaken bool // has this variable's address been taken?\n+\tparam bool /...
2025-03-12T18:45:17
nodejs/node
3616ace637e11776f3e49391da748195fcda7f72
fafc845089d9d9481978667a2a55684ab7d780fb
inspector: provide detailed info to fix DevTools frontend errors PR-URL: https://github.com/nodejs/node/pull/54156 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": "lib/internal/inspector_network_tracking.js", "patch": "@@ -1,7 +1,10 @@\n 'use strict';\n \n const {\n+ ArrayIsArray,\n DateNow,\n+ ObjectEntries,\n+ String,\n } = primordials;\n \n let dc;\n@@ -10,6 +13,25 @@ let Network;\n let requestId = 0;\n const getNextRequestId = () => `node-network-e...
2024-08-05T12:30:45
electron/electron
3fa15ebb7e8aef2029cd23370fdc96f382c9d161
52fe76ca28286400ab61927b2b4e937c52ae9ab5
fix: use Chromium's way to compute min/max sizes (#38974)
[ { "path": "patches/chromium/.patches", "patch": "@@ -129,5 +129,4 @@ chore_patch_out_profile_methods_in_titlebar_config.patch\n fix_crash_on_nativetheme_change_during_context_menu_close.patch\n fix_select_the_first_menu_item_when_opened_via_keyboard.patch\n fix_return_v8_value_from_localframe_requestexecute...
2023-07-05T15:02:05
vercel/next.js
2eac9dccd85d8ec941c416de5f8f01236a8f1e2e
40d2fa9b5e578c71989251ad387214ffb2c1507f
chore: update username from 'nebrelbug' to 'bgub' (#81734) ## Update GitHub username in labeler configuration I just changed my username from "nebrelbug" to "bgub"
[ { "path": ".github/labeler.json", "patch": "@@ -59,7 +59,7 @@\n { \"type\": \"user\", \"pattern\": \"ijjk\" },\n { \"type\": \"user\", \"pattern\": \"lazarv\" },\n { \"type\": \"user\", \"pattern\": \"lubieowoce\" },\n- { \"type\": \"user\", \"pattern\": \"nebrelbug\" },\n+ { \"t...
2025-07-16T20:58:34
nodejs/node
fafc845089d9d9481978667a2a55684ab7d780fb
a8166880f18a116e22a39296a68fcf9600fe741a
stream: make checking pendingcb on WritableStream backward compatible PR-URL: https://github.com/nodejs/node/pull/54142 Fixes: https://github.com/nodejs/node/issues/54131 Refs: https://github.com/nodejs/node/issues/54131 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com...
[ { "path": "lib/internal/streams/end-of-stream.js", "patch": "@@ -214,7 +214,7 @@ function eos(stream, options, callback) {\n !readable &&\n (!willEmitClose || isReadable(stream)) &&\n (writableFinished || isWritable(stream) === false) &&\n- (wState == null || wState.pendingcb === 0)\n+ (wS...
2024-08-05T12:30:29
electron/electron
e991c1868e301fab1fa9c160cc1317a47a468e8c
ccd4531bfb9d14c54de70a10a5d6f35f72db3abb
docs: fix misleading code sample for handling deeplinks on Linux (#38862) Fix misleading docs for handling deeplinks in Linux
[ { "path": "docs/tutorial/launch-app-from-url-in-another-app.md", "patch": "@@ -63,9 +63,9 @@ const createWindow = () => {\n \n In this next step, we will create our `BrowserWindow` and tell our application how to handle an event in which an external protocol is clicked.\n \n-This code will be different in ...
2023-07-03T08:30:45
vercel/next.js
9d1e94d56d4d3ad8ff0119192733b760fe8752ad
382b79bcc9fb1446e8f88d7a321c365aaece8a2c
fix: revert client segment route changes for sub shell generation (#81731) Reverts changes to the `routes-manifest.json` from #81321. Incorrect route sorting was causing some routing errors.
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -3103,44 +3103,18 @@ export default async function build(\n }\n \n let prefetchDataRoute: string | undefined\n- let dynamicRoute = routesManifest.dynamicRoutes.find(\n- (r) => r.page ==...
2025-07-16T19:25:12
golang/go
ad0434200c4b17c339852c8c0ec0c0212f8563d9
a4d0269a4f74e8a66ee7487491857e1a1c582231
fs: clarify documentation for ReadDir method The fs.ReadDir method behaves the same way as os.ReadDir, in that when n <= 0, ReadDir returns all DirEntry values remaining in the dictionary. Update the comment to reflect that only remaining DirEntry values are returned (not all entries), for subsequent calls. Fixes #6...
[ { "path": "src/io/fs/fs.go", "patch": "@@ -129,7 +129,7 @@ type ReadDirFile interface {\n \t// At the end of a directory, the error is io.EOF.\n \t// (ReadDir must return io.EOF itself, not an error wrapping io.EOF.)\n \t//\n-\t// If n <= 0, ReadDir returns all the DirEntry values from the directory\n+\t// ...
2025-04-05T20:56:42
nodejs/node
a8166880f18a116e22a39296a68fcf9600fe741a
b3013e120ac5389a8a0705371232db9bbd9010bd
watch: reload changes in contents of --env-file Make sure we watch and reload on env file changes. Ignore env file in parent process, so child process can reload current vars when we recreate it. Fixes: https://github.com/nodejs/node/issues/54001 PR-URL: https://github.com/nodejs/node/pull/54109 Reviewed-By: Yagiz N...
[ { "path": "lib/internal/main/watch_mode.js", "patch": "@@ -33,6 +33,7 @@ markBootstrapComplete();\n // TODO(MoLow): Make kill signal configurable\n const kKillSignal = 'SIGTERM';\n const kShouldFilterModules = getOptionValue('--watch-path').length === 0;\n+const kEnvFile = getOptionValue('--env-file');\n co...
2024-08-05T10:41:33
vercel/next.js
a04a5efe80d88e603ded31c20645a0ddc76e1104
5444efa2d205bcbc49fbbde4a753582731b0a4a2
Add an e2e test for the css serving issue (#81683) ## Add a regression test for when a not-found component depends on css and triggers a bug in turbopack To correctly serve js and css resources during server side rendering we construct a client manifest that lists all the server components and their required resource...
[ { "path": "test/e2e/app-dir/initial-css-not-found/app/(default)/layout.tsx", "patch": "@@ -0,0 +1,10 @@\n+import type { ReactNode } from 'react'\n+import styles from '../styles.module.css'\n+\n+export default function RootLayout({ children }: { children: ReactNode }) {\n+ return (\n+ <html lang=\"en\">\...
2025-07-16T18:11:26
golang/go
a4d0269a4f74e8a66ee7487491857e1a1c582231
7f516a31b021f15c1053c3ebed1fe1aa644d60e3
math/big: use clearer loop bounds check elimination Checking that the lengths are equal and panicking teaches the compiler that it can assume “i in range for z” implies “i in range for x”, letting us simplify the actual loops a bit. It also turns up a few places in math/big that were playing maybe a little too fast a...
[ { "path": "src/math/big/arith.go", "patch": "@@ -26,17 +26,13 @@ const (\n \t_M = _B - 1 // digit mask\n )\n \n-// Many of the loops in this file are of the form\n-// for i := 0; i < len(z) && i < len(x) && i < len(y); i++\n-// i < len(z) is the real condition.\n-// However, checking i < len(x) && ...
2025-04-11T12:54:58
facebook/react
84ed1f2a37cbe17975bd3691cb0e2a61d2a6285f
d81da8e2f55ae9f46384a7a9d73e43fdca26994a
Update scope declaration invariant to support error grouping This invariant interpolated values into the `reason` which prevent our internal tooling from grouping related errors. This PR updates to make the reason static and interpolate the description.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -435,8 +435,8 @@ function codegenReactiveScope(\n );\n if (testCondition === null) {\n CompilerError.invariant(firstOutputIndex !== null, {\n- reason: `Expected scope '@${scope.id...
2024-02-26T23:08:42
electron/electron
ccd4531bfb9d14c54de70a10a5d6f35f72db3abb
499d893040b5590bf88bd7f3d4e3685d1e95a272
chore: bump chromium to 117.0.5852.0 (main) (#38891) * chore: bump chromium in DEPS to 117.0.5846.0 * chore: update patches * 4628901: Bump the macOS deployment target to 10.15 https://chromium-review.googlesource.com/c/chromium/src/+/4628901 * 4593350: [Private Network Access] Trigger Permission Prompt ...
[ { "path": "BUILD.gn", "patch": "@@ -37,7 +37,7 @@ if (is_mac) {\n import(\"build/rules.gni\")\n \n assert(\n- mac_deployment_target == \"10.13\",\n+ mac_deployment_target == \"10.15\",\n \"Chromium has updated the mac_deployment_target, please update this assert, update the supported ver...
2023-07-01T20:22:55
nodejs/node
e6ee6e2901c380513bd0d03857146c187d31bab2
a3cd290f24113a21971a5d29a8e52c56c89f9fd3
lib: fix typos in comments within internal/streams fixed typos in comments within the internal/streams directory. PR-URL: https://github.com/nodejs/node/pull/54093 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.co...
[ { "path": "lib/internal/streams/readable.js", "patch": "@@ -258,7 +258,7 @@ ObjectDefineProperties(ReadableState.prototype, {\n \n \n function ReadableState(options, stream, isDuplex) {\n- // Bit map field to store ReadableState more effciently with 1 bit per field\n+ // Bit map field to store ReadableSta...
2024-08-05T01:58:40
vercel/next.js
f74a1697a919ec222c3950190ddd09519432baf3
964d0634cd5f8782cfbac145865c7e0f3f414b70
[Segment Cache] Support dynamic head prefetching (#81677) Fixes an issue where opting into dynamic prefetching with prefetch={true} would not apply to head data (like the title), only the page data. Although the head was being sent by the server as part of the prefetch response, it wasn't being transferred correctly t...
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache.ts", "patch": "@@ -1534,6 +1534,16 @@ function writeDynamicRenderResponseIntoCache(\n // TODO: We should cache this, too, so that the MPA navigation is immediate.\n return null\n }\n+\n+ const staleTimeHeaderSeconds = respons...
2025-07-16T16:13:54
facebook/react
d81da8e2f55ae9f46384a7a9d73e43fdca26994a
915a0b8389cc26eabdd32183030aa210f6c83042
Fix JSXMemberExpression dependency calculation Fixes T173101142 — we previously computed incorrect function expression dependencies for JSXMemberExpressions. This PR applies similar logic to JSXMemberExpression as we use for MemberExpression. ## Test Plan Synced internally, only one file changes output. I manua...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -3803,6 +3803,7 @@ function gatherCapturedDeps(\n */\n let dependency:\n | NodePath<t.MemberExpression>\n+ | NodePath<t.JSXMemberExpression>\n | NodePath<t.Identifier>\n | NodePath<t.JSX...
2024-02-26T23:04:44
golang/go
b44b360dd40a537e953225d70ca96361e2c57600
930cf59ba8091bfd56c71357085bc7de74daf421
math/big: add more complete tests and benchmarks of assembly Also fix a few real but currently harmless bugs from CL 664895. There were a few places that were still wrong if z != x or if a != 0. Change-Id: Id8971e2505523bc4708780c82bf998a546f4f081 Reviewed-on: https://go-review.googlesource.com/c/go/+/664897 LUCI-Try...
[ { "path": "src/math/big/arith_amd64.s", "patch": "@@ -430,7 +430,7 @@ adx:\n \tMOVQ y+48(FP), R8\n \tMOVQ m+72(FP), DX\n \tMOVQ $0, BX // i = 0\n-\tMOVQ $0, CX // carry\n+\tMOVQ a+80(FP), CX // carry\n \tCMPQ R11, $8\n \tJAE adx_loop_header\n \tCMPQ BX, R11\n@@ -446,7 +446,7 @@ adx_loop:\n \tMULXQ (R...
2025-03-30T20:56:29
electron/electron
499d893040b5590bf88bd7f3d4e3685d1e95a272
607e71d563377b64bc0cb3d127f73dafe83c4df2
feat: add support for keyboard initialized menu popup (#38903) * feat: add support for keyboard initialized menu popup * Update docs/api/menu.md Co-authored-by: Erick Zhao <erick@hotmail.ca> * fix: add patch to chromium for keyboard accessibility menu behavior * refactor: s/initiatedByKeyboard/sourceType ...
[ { "path": "docs/api/menu.md", "patch": "@@ -80,6 +80,10 @@ The `menu` object has the following instance methods:\n * `positioningItem` number (optional) _macOS_ - The index of the menu item to\n be positioned under the mouse cursor at the specified coordinates. Default\n is -1.\n+ * `sourceType` ...
2023-06-29T22:54:06
nodejs/node
76d10a10fb2f995aebb6df2470b02a9160bbeceb
ea5e77b1a5572c640a0407c1f2b6c60238752219
doc: add documentation for blob.bytes() method PR-URL: https://github.com/nodejs/node/pull/54114 Fixes: https://github.com/nodejs/node/issues/54105 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "doc/api/buffer.md", "patch": "@@ -513,6 +513,23 @@ added:\n Returns a promise that fulfills with an {ArrayBuffer} containing a copy of\n the `Blob` data.\n \n+#### `blob.bytes()`\n+\n+<!-- YAML\n+added:\n+ - v22.3.0\n+ - v20.16.0\n+-->\n+\n+The `blob.bytes()` method returns the byte of the `Blo...
2024-07-30T05:27:28
vercel/next.js
964d0634cd5f8782cfbac145865c7e0f3f414b70
6f88000f0bce63bb447de2b6843883043347e84a
Fix: createRouterAct "reject" config (#81720) Fixes a problem with the internal `createRouterAct` testing helper where the `block: "reject"` option would not error correctly, leading to potential false negatives. I think I accidentally broke this when I added the ability to provide an array of expected responses.
[ { "path": "test/e2e/app-dir/segment-cache/router-act.ts", "patch": "@@ -72,6 +72,7 @@ export function createRouterAct(\n }\n \n let expectedResponses: Array<ExpectedResponseConfig> | null\n+ let forbiddenResponses: Array<ExpectedResponseConfig> | null = null\n let shouldBlockAll = false\n ...
2025-07-16T16:12:58
rust-lang/rust
f48448e9031a659e21ef9783dcb1591bafc3927b
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
fix issue#152482
[ { "path": "src/bootstrap/bootstrap.py", "patch": "@@ -1316,7 +1316,7 @@ def bootstrap(args):\n # Give a hard error if `--config` or `RUST_BOOTSTRAP_CONFIG` are set to a missing path,\n # but not if `bootstrap.toml` hasn't been created.\n if not using_default_path or os.path.exists(toml_path):\n-...
2026-02-11T12:48:15
facebook/react
118ad2afa75a44fe3715ad7fb0023c408125bef7
16d3f7833d25b1ea026add83dd109601b60f138e
Validate DOM nesting for hydration before the hydration warns / errors (#28434) If there's invalid dom nesting, there will be mismatches following but the nesting is the most important cause of the problem. Previously we would include the DOM nesting when rerendering thanks to the new model of throw and recovery....
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1355,6 +1355,19 @@ export function getFirstHydratableChildWithinSuspenseInstance(\n return getNextHydratable(parentInstance.nextSibling);\n }\n \n+export function validateHydratableInstance(\n+ type: string,\n+ prop...
2024-02-24T05:45:42
golang/go
930cf59ba8091bfd56c71357085bc7de74daf421
28fd9fa8a6de5f5e75a3ca2eeaa55b5ae4a2722b
regexp/syntax: recognize category aliases like \p{Letter} The Unicode specification defines aliases for some of the general category names. For example the category "L" has alias "Letter". The regexp package supports \p{L} but not \p{Letter}, because there was nothing in the Unicode tables that lets regexp know about...
[ { "path": "doc/next/6-stdlib/99-minor/regexp/syntax/70781.md", "patch": "@@ -0,0 +1,4 @@\n+The `\\p{name}` and `\\P{name}` character class syntaxes now accept the names\n+Any, ASCII, Assigned, Cn, and LC, as well as Unicode category aliases like `\\p{Letter}` for `\\pL`.\n+Following [Unicode TR18](https://u...
2025-01-08T16:27:07
electron/electron
09669f9d215ceb96d7f02f9085d7906e27c2b301
ff6d0df2d534efe1aa8d466e1ea75333290cb0dc
fix: child window may have opener removed (#38910)
[ { "path": "shell/renderer/electron_render_frame_observer.cc", "patch": "@@ -63,7 +63,7 @@ void ElectronRenderFrameObserver::DidClearWindowObject() {\n // Check DidInstallConditionalFeatures below for the background.\n auto* web_frame =\n static_cast<blink::WebLocalFrameImpl*>(render_frame_->GetWeb...
2023-06-26T21:04:54
nodejs/node
bd42e4c6a73f61f7ee47e4426d86708fd80c6c4f
d172da8d0197a71d473ee879eacd1061b316bdf2
test: fix typo in test PR-URL: https://github.com/nodejs/node/pull/54137 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Harshitha K P <harshitha014@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "test/async-hooks/verify-graph.js", "patch": "@@ -125,9 +125,9 @@ module.exports.printGraph = function printGraph(hooks) {\n const uidtoid = {};\n const activities = pruneTickObjects(hooks.activities);\n const graph = [];\n- activities.forEach(procesNode);\n+ activities.forEach(processNode...
2024-08-04T07:03:24
vercel/next.js
10ce117bdf5d702969fd81ec15d539be4dfa24cd
9088ece15f42ff5e11df5ef164fb307494a36e74
[test] Fix `app-static` deploy test (#81712)
[ { "path": "test/e2e/app-dir/app-static/app-static.test.ts", "patch": "@@ -2763,27 +2763,51 @@ describe('app-dir static/dynamic handling', () => {\n for (let i = 0; i < 6; i++) {\n await waitFor(1000)\n \n- const timings = {\n- start: Date.now(),\n- startedStreaming: 0,\n- }...
2025-07-16T16:02:53
golang/go
28fd9fa8a6de5f5e75a3ca2eeaa55b5ae4a2722b
252c939445b6b03c5c82b54f7657c5d984ce6348
unicode: add CategoryAliases, Cn, LC CategoryAliases is for regexp to use, for things like \p{Letter} as an alias for \p{L}. Cn and LC are special-case categories that were never implemented but should have been. These changes were generated by the updated generator in CL 641395. Fixes #70780. Change-Id: Ibba20ff76...
[ { "path": "api/next/70780.txt", "patch": "@@ -0,0 +1,3 @@\n+pkg unicode, var CategoryAliases map[string]string #70780\n+pkg unicode, var Cn *RangeTable #70780\n+pkg unicode, var LC *RangeTable #70780", "additions": 3, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdl...
2025-01-08T16:21:30
facebook/react
d579e7748218920331252b0528850943d5e2dd31
8fb0233a845974b4b1049e54b6c25dc54d6dd173
Remove method name prefix from warnings and errors (#28432) This pattern is a petpeeve of mine. I don't consider this best practice and so most don't have these prefixes. Very inconsistent. At best this is useless and noisey that you have to parse because the information is also in the stack trace. At worse th...
[ { "path": "packages/react-dom-bindings/src/client/validateDOMNesting.js", "patch": "@@ -477,15 +477,14 @@ function validateDOMNesting(\n 'the browser.';\n }\n console.error(\n- 'validateDOMNesting(...): %s cannot appear as a child of <%s>.%s',\n+ '%s cannot appear as a ch...
2024-02-23T20:16:54
nodejs/node
5d6c76adee0407252b0785f4b08697e8dd6aea4e
acbd0be0da92cd5abe73a5c136e2d3c6537edc23
module: fix strip-types interaction with detect-module PR-URL: https://github.com/nodejs/node/pull/54164 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Revie...
[ { "path": "lib/internal/modules/esm/get_format.js", "patch": "@@ -164,7 +164,8 @@ function getFileProtocolModuleFormat(url, context = { __proto__: null }, ignoreE\n const { tsParse } = require('internal/modules/helpers');\n const parsedSource = tsParse(source);\n const detectedFormat...
2024-08-03T17:15:11
electron/electron
327af3b03ccdb435d25b94c74d1c74552564ab21
ef6569b7d3b0dfb8c7dc33b109b573bf7eb55184
chore: bump node to v18.16.1 (main) (#38869) * chore: bump node in DEPS to v18.16.1 * chore: update patches * deps: update c-ares to 1.19.1 https://github.com/nodejs/node/pull/48115 * chore: fix -Wunreachable-code,-Werror FTBFS in c-ares * chore: disable x509 bssl test new test added in bf3e2c892 ...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '116.0.5845.0',\n 'node_version':\n- 'v18.16.0',\n+ 'v18.16.1',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2023-06-26T16:03:30
rust-lang/rust
14527b257fdee2b86569b6014754d3452c85b3c4
e4e725aec63cc773acf74b27e91dfc0630a8724f
Move target machine factory error reporting into codegen backend
[ { "path": "src/lib.rs", "patch": "@@ -374,7 +374,7 @@ impl ExtraBackendMethods for GccCodegenBackend {\n _features: &[String],\n ) -> TargetMachineFactoryFn<Self> {\n // TODO(antoyo): set opt level.\n- Arc::new(|_| Ok(()))\n+ Arc::new(|_, _| ())\n }\n }\n \n@@ -421,7 +4...
2026-02-11T10:53:38
vercel/next.js
115eff7201191fcc1d2f10bbc4c69f5359897311
c3e6680bfd245d840d479ba3ba1d0b1a570a19b1
Turbopack: Support string without options for @next/mdx (#81713) ## What? Adds support for `remarkPlugins: ['remark-gfm']` and `rehypePlugins: ['rehype-slug']`. Previously you had to nest an array like `remarkPlugins: [['remark-gfm']]` but that's a bug, that case is only for passing options. Directly passing the str...
[ { "path": "docs/01-app/02-guides/mdx.mdx", "patch": "@@ -727,8 +727,18 @@ const nextConfig = {\n \n const withMDX = createMDX({\n options: {\n- remarkPlugins: [],\n- rehypePlugins: [['rehype-katex', { strict: true, throwOnError: true }]],\n+ remarkPlugins: [\n+ // Without options\n+ 're...
2025-07-16T15:05:23
facebook/react
8fb0233a845974b4b1049e54b6c25dc54d6dd173
66c8346401d271588e4c400921c5dab5478fc623
Include server component names in the componentStack in DEV (#28415) I'm a bit ambivalent about this one because it's not the main strategy that I plan on pursuing. I plan on replacing most DEV-only specific stacks like `console.error` stacks with a new take on owner stacks and native stacks. The future owner stack...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -10,6 +10,15 @@\n \n 'use strict';\n \n+function normalizeCodeLocInfo(str) {\n+ return (\n+ str &&\n+ str.replace(/\\n +(?:at|in) ([\\S]+)[^\\n]*/g, function (m, name) {\n+ return '\\n in ' + name + (/\\d/.test(...
2024-02-23T17:04:55
electron/electron
395b608dd56d78155700cab3d4f75250e4d32eb4
1eb19f3078b46227eb773ec417808971de0b478a
refactor: more constexpr lookup tables (#38886) * refactor: use constexpr lookup table in electron_api_web_contents.cc * refactor: make KeyboardCodeFromStr() private it is only used as a helper to KeyboardCodeFromStr() * chore: savepoint * chore: make lint happy * fixup! refactor: make KeyboardCodeFromS...
[ { "path": "shell/browser/api/electron_api_tray.cc", "patch": "@@ -6,6 +6,7 @@\n \n #include <string>\n \n+#include \"base/containers/fixed_flat_map.h\"\n #include \"gin/dictionary.h\"\n #include \"gin/object_template_builder.h\"\n #include \"shell/browser/api/electron_api_menu.h\"\n@@ -29,27 +30,16 @@ struc...
2023-06-22T12:33:44
nodejs/node
358ff748ea52707bddde13787c18623d00c4175b
492032f34c1bf264eae01dc5cdfc77c8032b8552
lib,permission: support Buffer to permission.has PR-URL: https://github.com/nodejs/node/pull/54104 Fixes: https://github.com/nodejs/node/issues/54100 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "lib/fs.js", "patch": "@@ -1546,7 +1546,8 @@ function lstat(path, options = { bigint: false }, callback) {\n callback = makeStatsCallback(callback);\n path = getValidatedPath(path);\n if (permission.isEnabled() && !permission.has('fs.read', path)) {\n- callback(new ERR_ACCESS_DENIED('Acce...
2024-08-03T16:46:57
rust-lang/rust
2d07e81a5c5d2062d54b80530ab98bb6fa776322
70587ce07cbf41b0e1f753038ff132d4ab0b7dd0
Move target machine factory error reporting into codegen backend
[ { "path": "compiler/rustc_codegen_gcc/src/lib.rs", "patch": "@@ -374,7 +374,7 @@ impl ExtraBackendMethods for GccCodegenBackend {\n _features: &[String],\n ) -> TargetMachineFactoryFn<Self> {\n // TODO(antoyo): set opt level.\n- Arc::new(|_| Ok(()))\n+ Arc::new(|_, _| ())\n...
2026-02-11T10:53:38
vercel/next.js
a3f031d834af6da4640a6f33ab6fb86d87df442c
5608f19a4d4bcf202fbd7df8d5b7dd7d4e4f2b3f
fix: rootParams should throw in client when fallbackParams are not present (#81711) `rootParams` was erroring if used in a `'prerender-client'`, but only if we had `fallbackRouteParams`. this is an edge case, but it is technically possible to hit if our compiler checks for using `rootParams` in client code are bypasse...
[ { "path": "packages/next/src/server/app-render/work-unit-async-storage.external.ts", "patch": "@@ -78,12 +78,19 @@ export interface RequestStore extends CommonWorkUnitStore {\n * only needs to happen during the RSC prerender when we are prospectively prerendering\n * to fill all caches.\n */\n-export int...
2025-07-16T14:23:34
facebook/react
98b8359f656ef714cc44828d7bfd2409ca16b9b3
aaa4acb1280fcda398defb805db47a8623df6c0f
[RN] Move unifiedSyncLane back to dynamic (#28430) This surfaced a bug because it wasn't on everywhere, moving back to dynamic while we investigate the bug
[ { "path": "packages/shared/forks/ReactFeatureFlags.native-fb-dynamic.js", "patch": "@@ -26,6 +26,7 @@ export const enableDeferRootSchedulingToMicrotask = __VARIANT__;\n export const enableUseRefAccessWarning = __VARIANT__;\n export const passChildrenWhenCloningPersistedNodes = __VARIANT__;\n export const us...
2024-02-23T15:31:01
golang/go
0e17905793cb5e0acc323a0cdf3733199d93976a
c889004615b40535ebd5054cbcf2deebdb3a299a
encoding/json: add json/v2 with GOEXPERIMENT=jsonv2 guard This imports the proposed new v2 JSON API implemented in github.com/go-json-experiment/json as of commit d3c622f1b874954c355e60c8e6b6baa5f60d2fed. When GOEXPERIMENT=jsonv2 is set, the encoding/json/v2 and encoding/jsontext packages are visible, the encoding/js...
[ { "path": "src/encoding/json/bench_test.go", "patch": "@@ -8,6 +8,8 @@\n // We benchmark converting between the JSON form\n // and in-memory data structures.\n \n+//go:build !goexperiment.jsonv2\n+\n package json\n \n import (", "additions": 2, "deletions": 0, "language": "Go" }, { "path...
2025-04-11T21:19:51
nodejs/node
13ca021da3a00362c90ac85e0c93fcbf967187eb
1e3a3470a5d6b0f4137507fd7a66008a7020bf2d
doc: fix worker threadId/destination typo PR-URL: https://github.com/nodejs/node/pull/53933 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "doc/api/worker_threads.md", "patch": "@@ -260,7 +260,7 @@ added: v22.5.0\n \n > Stability: 1.1 - Active development\n \n-* `destination` {number} The target thread ID. If the thread ID is invalid, a\n+* `threadId` {number} The target thread ID. If the thread ID is invalid, a\n [`ERR_WORKER_MESS...
2024-08-02T10:45:49
rust-lang/rust
70587ce07cbf41b0e1f753038ff132d4ab0b7dd0
d34f1f931489618efffc4007e6b6bdb9e10f6467
Remove a couple of unused errors
[ { "path": "compiler/rustc_codegen_llvm/src/errors.rs", "patch": "@@ -101,8 +101,6 @@ pub enum LlvmError<'a> {\n CreateTargetMachine { triple: SmallCStr },\n #[diag(\"failed to run LLVM passes\")]\n RunLlvmPasses,\n- #[diag(\"failed to serialize module {$name}\")]\n- SerializeModule { name:...
2026-02-11T10:39:48
electron/electron
1eb19f3078b46227eb773ec417808971de0b478a
a00a25376d339ba78c4a1efbae2de05fd534332e
chore: bump chromium to 116.0.5845.0 (main) (#38827) * chore: bump chromium in DEPS to 116.0.5835.0 * chore: update patches * chore: bump chromium in DEPS to 116.0.5837.0 * chore: bump chromium in DEPS to 116.0.5839.0 * chore: bump chromium in DEPS to 116.0.5841.0 * chore: bump chromium in DEPS to 116.0...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '116.0.5833.0',\n+ '116.0.5845.0',\n 'node_version':\n 'v18.16.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-06-22T08:51:15
vercel/next.js
43b64ccdb53eba5589a36b657aa9935dd2367750
7efeae3de8f1edee9a20f8e17a5306388b798b48
Ignore pending revalidations during prerendering (#81621) When reading a cache entry, we usually check its tags against the recently revalidated tags, and dismiss it, if it has any of those tags. However, this is only needed during dynamic requests, specifically during the rendering that follows a revalidating server ...
[ { "path": "packages/next/src/server/use-cache/use-cache-wrapper.ts", "patch": "@@ -1004,6 +1004,7 @@ export function cache(\n shouldDiscardCacheEntry(\n entry,\n workStore,\n+ workUnitStore,\n implicitTags,\n implicitTagsExpira...
2025-07-16T12:12:03
facebook/react
aaa4acb1280fcda398defb805db47a8623df6c0f
25dbb3556ee9802c18f45c278abf3c33711237eb
Add `enableComponentStackLocations` to `ReactNativeInternalFeatureFlags` libdef (#28424) ## Summary Fixing something I accidentally broke this in https://github.com/facebook/react/commit/25dbb3556ee9802c18f45c278abf3c33711237eb. ## How did you test this change? Ran the following successfully: ``` $ yarn ...
[ { "path": "scripts/flow/xplat.js", "patch": "@@ -9,6 +9,7 @@\n \n declare module 'ReactNativeInternalFeatureFlags' {\n declare export var alwaysThrottleRetries: boolean;\n+ declare export var enableComponentStackLocations: boolean;\n declare export var enableDeferRootSchedulingToMicrotask: boolean;\n ...
2024-02-22T23:58:12
golang/go
b89988c5ca47a6a2022db689fa882134397d0f32
05ed8a00e07e93fd40cf8269bdf16d6d2b34740d
internal/poll: remove outdated tests TestFileFdsAreInitialised and TestSerialFdsAreInitialised were added to ensure handles passed to os.NewFile were not added to the runtime poller. This used to be problematic because the poller could crash if an external I/O event was received (see #21172). This is not an issue any...
[ { "path": "src/internal/poll/fd_windows_test.go", "patch": "@@ -20,77 +20,6 @@ func init() {\n \tpoll.InitWSA()\n }\n \n-// checkFileIsNotPartOfNetpoll verifies that f is not managed by netpoll.\n-func checkFileIsNotPartOfNetpoll(t *testing.T, f *os.File) {\n-\tt.Helper()\n-\tsc, err := f.SyscallConn()\n-\t...
2025-04-14T09:22:04
nodejs/node
1fd170a7fc9275ba6e5ce77b0b1a51eda91a083b
7941b4b3330cd38e11180280cd8714d0d0906930
stream: throw TypeError when criteria fulfilled in getIterator PR-URL: https://github.com/nodejs/node/pull/53825 Fixes: https://github.com/nodejs/node/issues/53819 Refs: https://github.com/nodejs/node/issues/53819 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.co...
[ { "path": "lib/internal/webstreams/util.js", "patch": "@@ -18,6 +18,7 @@ const {\n \n const {\n codes: {\n+ ERR_ARG_NOT_ITERABLE,\n ERR_INVALID_ARG_VALUE,\n ERR_INVALID_STATE,\n ERR_OPERATION_FAILED,\n@@ -235,6 +236,11 @@ function getIterator(obj, kind = 'sync', method) {\n method = o...
2024-08-01T02:00:47
electron/electron
a00a25376d339ba78c4a1efbae2de05fd534332e
ce6fe040feefe326a557132fb81137097d4a39c1
fix: crash calling `BrowserWindow.removeBrowserView()` with destroyed `webContents` (#38842) fix: crash calling removeBrowserView() with destroyed webContents https://github.com/electron/electron/issues/37642
[ { "path": "shell/browser/api/electron_api_browser_view.cc", "patch": "@@ -131,6 +131,10 @@ void BrowserView::WebContentsDestroyed() {\n Unpin();\n }\n \n+void BrowserView::OnCloseContents() {\n+ api_web_contents_ = nullptr;\n+}\n+\n // static\n gin::Handle<BrowserView> BrowserView::New(gin_helper::ErrorT...
2023-06-21T19:20:54
facebook/react
07c2543e54f0e2ccd91908ec765683b47bc2f532
aaf85f3af8c30252edaab5c24975cd086937b2a4
Ignore /fixtures for dependabot (#28422) We'll keep these up to date out of band, they are just for testing and don't ship in the npm packages.
[ { "path": ".github/dependabot.yml", "patch": "@@ -0,0 +1,107 @@\n+version: 2\n+updates:\n+ - package-ecosystem: \"npm\"\n+ directory: \"/fixtures/art\"\n+ schedule:\n+ interval: \"weekly\"\n+ open-pull-requests-limit: 0\n+ - package-ecosystem: \"npm\"\n+ directory: \"/fixtures/attribute-b...
2024-02-22T20:44:37
golang/go
05ed8a00e07e93fd40cf8269bdf16d6d2b34740d
7b263895f7dbe81ddd7c0fc399e6a9ae6fe2f5bf
internal/runtime/maps: prune tombstones in maps before growing Before growing, if there are lots of tombstones try to remove them. If we can remove enough, we can continue at the given size for a while longer. Fixes #70886 Change-Id: I71e0d873ae118bb35798314ec25e78eaa5340d73 Reviewed-on: https://go-review.googlesour...
[ { "path": "src/internal/runtime/maps/group.go", "patch": "@@ -106,6 +106,12 @@ func bitsetShiftOutLowest(b bitset) bitset {\n \treturn b >> 8\n }\n \n+// count returns the number of bits set in b.\n+func (b bitset) count() int {\n+\t// Note: works for both bitset representations (AMD64 and generic)\n+\tretu...
2025-01-07T05:53:22
vercel/next.js
08209b9bf46a05d625292b9c0d7150dd61a8c483
152dc29c9441efe12709d9addfcbf322cc053541
Improve error message for sync server functions (#81705) When a server action or `'use cache'` function is defined as a synchronous function, the error message now only marks the function name for better clarity. Previously, the entire function body was marked, which looks fine in small test fixtures, but is pretty me...
[ { "path": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -998,9 +998,14 @@ impl<C: Comments> VisitMut for ServerActions<C> {\n }\n \n if let Some(directive) = directive {\n+ let fn_name = self\n+ .fn_decl_ident\n+ .clon...
2025-07-16T11:33:20
rust-lang/rust
8b5a212031be6d7381f2129c9921a9a2a387f9c8
0558adb3db7405dc16675e87152a486a56206a66
Fix doc links to rustc_lexer and rustc_middle
[ { "path": "src/doc/rustc-dev-guide/src/overview.md", "patch": "@@ -395,7 +395,7 @@ For more details on bootstrapping, see\n - Lexical Analysis: Lex the user program to a stream of tokens\n - Guide: [Lexing and Parsing](the-parser.md)\n - Lexer definition: [`rustc_lexer`](https://doc.rust-lang.org/nightl...
2026-02-11T06:39:34
nodejs/node
49a9ba43cf913ee7484236be0e406129304f5cf0
f2126744525114557a817982aae9582124abe5d0
doc: expand troubleshooting section Update the troubleshooting section with regards to memory requirements and potential errors. This error specifically happened to me on an Ubuntu host with 2GB of RAM which wasn't enough and g++ error'ed during Node.js compilation step. PR-URL: https://github.com/nodejs/node/pull/53...
[ { "path": "BUILDING.md", "patch": "@@ -593,6 +593,11 @@ rebuild may take a lot more time than previous builds. Additionally,\n ran `./configure` with non-default options (such as `--debug`), you will need\n to run it again before invoking `make -j4`.\n \n+If you received the error `nodejs g++ fatal error co...
2024-07-31T09:42:02
electron/electron
ce6fe040feefe326a557132fb81137097d4a39c1
e73edb54817acb8f0e548916a97a9ed9340dfc3f
fix: set minimize visibility true with enable (#38860)
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -162,6 +162,7 @@ void WinCaptionButtonContainer::UpdateButtons() {\n \n const bool minimizable = frame_view_->window()->IsMinimizable();\n minimize_button_->SetEnabled(minimizable);\n+ minimize_button_->SetVisible(minimiza...
2023-06-21T18:58:33
facebook/react
288cf747c96cea278a6ddce126ce7a0484678afd
d54b4cf303143b459c3caae54d14ae926a8ee09a
React DevTools 5.0.0 -> 5.0.1 (#28418) Full list of changes (not a public CHANGELOG): * feature[REMOVED][devtools]: turn off / hide location based component filters ([hoxyq](https://github.com/hoxyq) in [#28417](https://github.com/facebook/react/pull/28417)) * Add useSyncExternalStore and useTransition to getPri...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.0.0\",\n+ \"version\": \"5.0.1\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2024-02-22T19:45:55
golang/go
7b263895f7dbe81ddd7c0fc399e6a9ae6fe2f5bf
3cefe69c5a5ad687f220696d4f8a2fe4d59241dd
database/sql: wake cleaner if maxIdleTime set to less than maxLifetime The existing implementation wouldn't wake the connection cleaner if maxIdleTime was set to a value less than maxLifetime while an existing connection was open - resulting in idle connections not being discarded until after the first maxLifetime had...
[ { "path": "src/database/sql/sql.go", "patch": "@@ -1050,7 +1050,7 @@ func (db *DB) SetConnMaxLifetime(d time.Duration) {\n \t}\n \tdb.mu.Lock()\n \t// Wake cleaner up when lifetime is shortened.\n-\tif d > 0 && d < db.maxLifetime && db.cleanerCh != nil {\n+\tif d > 0 && d < db.shortestIdleTimeLocked() && db...
2023-03-09T11:16:56
vercel/next.js
af74b4a36f32d3037d002570800e75217e2199b4
d8fdb6ffa85269a9696ca905a5ee39d8ae737701
Include `use-cache` test suite in the Cache Components tests (#81610) We're splitting the test app routes between two root layouts, one for (partially) static pages that does not wrap its children in a Suspense boundary, and one for dynamic pages that adds a Suspense boundary above `body`, which opts those pages into ...
[ { "path": "test/cache-components-tests-manifest.json", "patch": "@@ -27,6 +27,12 @@\n \"searchparams-reuse-loading should re-use loading from \\\"full\\\" prefetch for param-less URL when navigating to param-full route\"\n ]\n },\n+ \"test/e2e/app-dir/use-cache/use-cache.test.ts\": {\n+...
2025-07-16T11:05:25
rust-lang/rust
f8cf68f35ab8a37df77f658b8b575a4902bd813b
94ff542ff5c89e33d91a6a2f5e8bf17250c8d08c
Give `into_range` more consistent name Rename `into_range` to `try_into_slice_range`: - Prepend `try_` to show that it returns `None` on error, like `try_range` - add `_slice` to make it consistent with `into_slice_range`
[ { "path": "library/core/src/slice/index.rs", "patch": "@@ -949,7 +949,7 @@ where\n R: ops::RangeBounds<usize>,\n {\n let len = bounds.end;\n- into_range(len, (range.start_bound().copied(), range.end_bound().copied()))\n+ try_into_slice_range(len, (range.start_bound().copied(), range.end_bound(...
2026-02-02T21:12:49
nodejs/node
f9f9a421a8d3826ade3087a58c4c8535b8af62d0
4d1cc7618e3aa3578d6a5a612391a0df69e85a04
path: use the correct name in `validateString` The parameter was renamed from `ext` to `suffix` but not in the `validateString` call. PR-URL: https://github.com/nodejs/node/pull/53669 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@g...
[ { "path": "lib/path.js", "patch": "@@ -775,7 +775,7 @@ const win32 = {\n */\n basename(path, suffix) {\n if (suffix !== undefined)\n- validateString(suffix, 'ext');\n+ validateString(suffix, 'suffix');\n validateString(path, 'path');\n let start = 0;\n let end = -1;\n@@ -1335,...
2024-07-30T14:59:47
facebook/react
d54b4cf303143b459c3caae54d14ae926a8ee09a
d4cac3f96c01b4222f917a2e5a8ce85754f706f8
fix[devtools]: fixed Tree indentation logic after updating react-windows (#28421) Forward-fixing the indentation after landing https://github.com/facebook/react/pull/28408. Could potentially be related to `ref` changes in `react`, but haven't validated yet. Haven't occured while testing the previous PR, but repro...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/Tree.js", "patch": "@@ -538,7 +538,7 @@ function updateIndentationSizeVar(\n }\n \n // $FlowFixMe[missing-local-annot]\n-function InnerElementType({children, style, ...rest}) {\n+function InnerElementType({children, style}) {\n const ...
2024-02-22T19:18:30
electron/electron
f6bbc3465888a113db91e16647e54a2aa4650606
2b3902e526d57a37c68f8f7c5dd370358c5c06f7
fix: set supported scale factors on startup (#38836)
[ { "path": "shell/browser/browser.cc", "patch": "@@ -203,13 +203,6 @@ void Browser::DidFinishLaunching(base::Value::Dict launch_info) {\n }\n for (BrowserObserver& observer : observers_)\n observer.OnFinishLaunching(launch_info.Clone());\n-\n-#if BUILDFLAG(IS_MAC)\n- if (dock_icon_) {\n- DockSetI...
2023-06-20T16:24:03
vercel/next.js
386afcd423999915958c237f6c4532f150463b18
01e1854f2a4334fb830c132bfeab85872ad61ddf
docs: Update redirects i18n documentation for App Router (#81347) ### What? Updated the documentation to clarify that App Router requires manual locale handling through dynamic route segments and middleware, with examples showing how to implement i18n redirects correctly. ### Why? The App Router doesn't use the i18n ...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/redirects.mdx", "patch": "@@ -250,16 +250,49 @@ module.exports = {\n \n <AppOnly>\n \n-When leveraging [`i18n` support](/docs/app/guides/internationalization) with redirects each `source` and `destination` is automatically prefixed to handl...
2025-07-16T07:22:07
nodejs/node
7485ad817a5801c479b26a2deafdfee6ae1cc5b0
027710e408bbf6c276678a8908ed82b202619b70
crypto: include NODE_EXTRA_CA_CERTS in all secure contexts by default Store loaded NODE_EXTRA_CA_CERTS into root_certs_vector, allowing them to be added to secure contexts when NewRootCertStore() is called, rather than losing them when unrelated options are provided. When NODE_EXTRA_CA_CERTS is specified, the root ce...
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -52,7 +52,7 @@ static const char* const root_certs[] = {\n \n static const char system_cert_path[] = NODE_OPENSSL_SYSTEM_CERT_PATH;\n \n-static bool extra_root_certs_loaded = false;\n+static std::string extra_root_certs_file; // NOLINT(runtime/string)\...
2022-09-05T16:16:50
rust-lang/rust
94ff542ff5c89e33d91a6a2f5e8bf17250c8d08c
262cd76333b79fb85bb87f2846b3db79c82d2402
Make panic message less confusing The panic message when slicing a string with a negative length range (eg `"abcdef"[4..3]`) is confusing: it gives the condition that failed to hold, whilst all the other panic messages give the condition that did hold. Before: begin <= end (4 <= 3) when slicing `abcdef` After: begin...
[ { "path": "library/alloctests/tests/str.rs", "patch": "@@ -612,14 +612,14 @@ mod slice_index {\n data: \"abcdef\";\n good: data[4..4] == \"\";\n bad: data[4..3];\n- message: \"begin <= end (4 <= 3)\";\n+ message: \"begin > end (4 > 3)\";\n }\...
2026-02-02T20:56:46
facebook/react
d4cac3f96c01b4222f917a2e5a8ce85754f706f8
47beb96ccf1085fe048c4d79d1f762566166d94e
feature[REMOVED][devtools]: turn off / hide location based component filters (#28417) Following https://github.com/facebook/react/pull/28265, this should disable location-based component filters. ``` // Following __debugSource removal from Fiber, the new approach for finding the source location // of a component...
[ { "path": "packages/react-devtools-shared/src/backend/renderer.js", "patch": "@@ -36,6 +36,7 @@ import {\n renamePathInObject,\n setInObject,\n utfEncodeString,\n+ filterOutLocationComponentFilters,\n } from 'react-devtools-shared/src/utils';\n import {sessionStorageGetItem} from 'react-devtools-shar...
2024-02-22T16:59:29
electron/electron
b693f884916a290a4cfaa82a42ddb24dfd02d7f6
97132ece33bd32660a5f26612a14232875f4fbdf
fix: crash on nativeTheme change during context menu close (#38824)
[ { "path": "patches/chromium/.patches", "patch": "@@ -127,3 +127,4 @@ chore_defer_usb_service_getdevices_request_until_usb_service_is.patch\n fix_remove_profiles_from_spellcheck_service.patch\n chore_patch_out_profile_methods_in_chrome_browser_pdf.patch\n chore_patch_out_profile_methods_in_titlebar_config.pa...
2023-06-19T09:26:54
vercel/next.js
8b7f4c50d19ccfce10837f6ca5a0e952e8ae57e0
d884398da6c55f662115cd1b3ff19e72fb6bb8d5
Update NextAdapter type and re-export (#81692) Just fixes up the type and re-exports it so it can be imported directly from `next`. Also fixes test file not being type checked which didn't catch missing optional fields.
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -51,10 +51,10 @@ export type AdapterOutputs = Array<{\n \n export interface NextAdapter {\n name: string\n- modifyConfig(\n+ modifyConfig?: (\n config: NextConfigComplete\n- ): Promise<NextConfigComplete> | NextConfigComplete\n- o...
2025-07-15T23:51:16
nodejs/node
890760b8e580f1d5bc1ac3a97c31eaae0c62bb32
3c50297e9e68553c4ee31e7f3fd677c8360a11f0
console: fix issues with frozen intrinsics PR-URL: https://github.com/nodejs/node/pull/54070 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "lib/internal/console/constructor.js", "patch": "@@ -78,7 +78,6 @@ function lazyUtilColors() {\n }\n \n // Track amount of indentation required via `console.group()`.\n-const kGroupIndent = Symbol('kGroupIndent');\n const kGroupIndentationWidth = Symbol('kGroupIndentWidth');\n const kFormatForStde...
2024-07-30T04:38:21
rust-lang/rust
262cd76333b79fb85bb87f2846b3db79c82d2402
625b18027d4d8d9b2092cf3706b29a5812f76357
Optimize `SliceIndex<str>` for `RangeInclusive` Replace `self.end() == usize::MAX` and `self.end() + 1 > slice.len()` with `self.end() >= slice.len()`. Same reasoning as previous commit. Also consolidate the str panicking functions into function.
[ { "path": "library/alloctests/tests/str.rs", "patch": "@@ -630,13 +630,13 @@ mod slice_index {\n // note: using 0 specifically ensures that the result of overflowing is 0..0,\n // so that `get` doesn't simply return None for the wrong reason.\n bad: data...
2025-07-25T20:57:44
facebook/react
47beb96ccf1085fe048c4d79d1f762566166d94e
404ed926588ec1cb7e9524d4dbb75b7297130adc
Add useSyncExternalStore and useTransition to getPrimitiveStackCache (#28399) <!-- 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 sub...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -82,6 +82,13 @@ function getPrimitiveStackCache(): Map<string, Array<any>> {\n Dispatcher.useImperativeHandle(undefined, () => null);\n Dispatcher.useDebugValue(null);\n Dispatcher.useCallback(() => {});\n+ Di...
2024-02-22T11:42:52
electron/electron
46fb0d8f5f3a33c5b9bba2329ac5de946cd66a3c
d78f37ec8faae9a3677037e1b40baea81fc93b6c
fix: `webContents.print({ silent: true })` not working correctly (#38741) fix: webContents.print({ silent: true }) not working correctly
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -91,7 +91,7 @@ index 3a66a52b8d3c6da9cd8d7e9afdc8d59f528ec3d5..facaa6fbca8ee7c04f83607e62b81b95\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/...
2023-06-15T14:46:38
nodejs/node
d7941b24ae6d3e647b0b1e9e543a01ad370b1a08
cf9a8140aa3ca61e614dfa18efbb87499bd5d40f
test: do not swallow uncaughtException errors in exit code tests PR-URL: https://github.com/nodejs/node/pull/54039 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/common/process-exit-code-cases.js", "patch": "@@ -62,23 +62,25 @@ function getTestCases(isWorker = false) {\n cases.push({ func: changeCodeInsideExit, result: 99 });\n \n function zeroExitWithUncaughtHandler() {\n+ const noop = () => { };\n process.on('exit', (code) => {\n- a...
2024-07-25T10:42:11
vercel/next.js
d884398da6c55f662115cd1b3ff19e72fb6bb8d5
2b3728f901a5a189fc09f23353b5c94747739049
feat(build): optimize filterUniqueParamsCombinations to generate sub-combinations (#81321) ### What? Optimizes the `generateParamPrefixCombinations` function (previously `filterUniqueRootParamsCombinations`) to generate all unique sub-combinations of route parameters while ensuring partial shells include complete set...
[ { "path": "packages/next/errors.json", "patch": "@@ -719,5 +719,6 @@\n \"718\": \"Invariant: projectDir is required for node runtime\",\n \"719\": \"Failed to get source map for '%s'. This is a bug in Next.js\",\n \"720\": \"A client prerender store should not be used for a route handler.\",\n- \"721...
2025-07-15T23:32:31
electron/electron
10852b3fd50865c00e5a62fa934b96973ba5c643
dc2e822dc7cd4554ba08bbb67e68e377ac936251
fix: `preferCSSPageSize` error type (#38761) fix: preferCSSPageSize error type
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -317,7 +317,7 @@ WebContents.prototype.printToPDF = async function (options) {\n \n if (options.preferCSSPageSize !== undefined) {\n if (typeof options.preferCSSPageSize !== 'boolean') {\n- return Promise.reject(new Error('footerTemplate m...
2023-06-14T14:49:00
golang/go
5ab9d9660412be2887ae5adba6198f029bcbb4a9
5715d735590cf545f03b34e58ade83b919e53fba
crypto/tls: fix a testing deadlock that occurs on a TLS protocol error A Go routine was, on an error, returning without sending a message on its signaling channel, so the main program was blocking forever waiting for a message that was never sent. Found while breaking crypto/tls. Change-Id: Id0b3c070a27cabd852f74e86b...
[ { "path": "src/crypto/tls/handshake_server_test.go", "patch": "@@ -236,7 +236,6 @@ func TestRenegotiationExtension(t *testing.T) {\n \t\tn, err := c.Read(buf)\n \t\tif err != nil {\n \t\t\tt.Errorf(\"Server read returned error: %s\", err)\n-\t\t\treturn\n \t\t}\n \t\tc.Close()\n \t\tbufChan <- buf[:n]", ...
2022-06-03T02:22:50
rust-lang/rust
f53eed56d2ae49064b79abd49e4f849d4f41edc3
7d8ebe3128fc87f3da1ad64240e63ccf07b8f0bd
Borrowck: simplify diagnostics for placeholders. This essentially folds the call to `region_from_element` into `RegionInferenceContext`, and simplifies the error variant for this case. It also clarifies the type information on the methods called to emphasise the fact that they only ever use placeholder regions in the ...
[ { "path": "compiler/rustc_borrowck/src/diagnostics/bound_region_errors.rs", "patch": "@@ -24,7 +24,6 @@ use rustc_traits::{type_op_ascribe_user_type_with_span, type_op_prove_predicate_\n use tracing::{debug, instrument};\n \n use crate::MirBorrowckCtxt;\n-use crate::region_infer::values::RegionElement;\n us...
2026-01-30T14:29:22
nodejs/node
cf9a8140aa3ca61e614dfa18efbb87499bd5d40f
c40c41c285274314d10ff8f3e3f8717e12f099d8
module: fix extensionless typescript in cjs loader PR-URL: https://github.com/nodejs/node/pull/54062 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jam...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -653,9 +653,13 @@ function getDefaultExtensions() {\n let extensions = ObjectKeys(Module._extensions);\n const tsEnabled = getOptionValue('--experimental-strip-types');\n if (tsEnabled) {\n+ // remove .ts and .cts from the default extensi...
2024-07-29T19:43:28
vercel/next.js
43b4364f7cbf1b9578a0b2cf4676a7e7de282d98
8659d47c0995f004550c9e521dd4e180b5c23f45
Turbopack: Generalize `ImportedBinding` effect creation to avoid as much special-casing of SimpleAssignTarget (#81653) There was some logic here that checked for the existence of `SimpleAssignTarget`, and using that to bail out of `visit_ident`. That doesn't scale well to pattern assignments, but it turns out that we ...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -1312,6 +1312,14 @@ impl Analyzer<'_> {\n }\n \n impl VisitAstPath for Analyzer<'_> {\n+ fn visit_import_specifier<'ast: 'r, 'r>(\n+ &mut self,\n+ _import_specifier: &'ast ImportSpecifier,\n+ _ast_p...
2025-07-15T23:00:32
golang/go
2cb9e7f68f90ea9119fd4172fc61630279d79d67
5413abc44025f281f2a7ea37b3e0043591dbed3e
crypto/cipher: use AEAD.NonceSize to make nonce in the example The existing example uses hard-coded constant to make nonce buffer. Using AEAD.NonceSize makes it a more portable and appropriate example. Fixes: #48372 Change-Id: I7c7a38ed48aff46ca11ef4f5654c778eac13dde6 GitHub-Last-Rev: 03ccbb16df4ca9cbd4a014836aee0f5...
[ { "path": "src/crypto/cipher/example_test.go", "patch": "@@ -29,14 +29,14 @@ func ExampleNewGCM_encrypt() {\n \t\tpanic(err.Error())\n \t}\n \n-\t// Never use more than 2^32 random nonces with a given key because of the risk of a repeat.\n-\tnonce := make([]byte, 12)\n-\tif _, err := io.ReadFull(rand.Reader...
2021-09-14T04:47:41