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
facebook/react
8faed2af4cfd39b32063189f3e7c845984e513ea
2ae0f36543e3306bc4b72de01a1ad8554c9176bf
Avoid conflicting names for reactive scope codegen This is a key part of avoiding generating conflicting names in our output. To start, RenameVariables now returns a Set of the unique identifier names that exist in the function. Codegen uses this to avoid generating duplicate names for change variables and for the...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -348,7 +348,7 @@ function* runWithEnvironment(\n value: reactiveFunction,\n });\n \n- renameVariables(reactiveFunction);\n+ const uniqueIdentifiers = renameVariables(reactiveFunction);\n yield log({\n ...
2024-03-06T19:07:11
golang/go
e666f1dabf5174710919ab7cff3e8afefd9ac049
343e486bfdbf9ca614d3e197afd79ad7ed5fef3e
runtime: add goschedIfBusy to bgsweep to prevent livelock after inlining gcMarkTermination() ensures that all caches are flushed before continuing the GC cycle, thus preempting all goroutines. However, inlining calls to lock() in bgsweep makes it non-preemptible for most of the time, leading to livelock. This change a...
[ { "path": "src/runtime/mgcsweep.go", "patch": "@@ -313,6 +313,10 @@ func bgsweep(c chan int) {\n \t\t\t// gosweepone returning ^0 above\n \t\t\t// and the lock being acquired.\n \t\t\tunlock(&sweep.lock)\n+\t\t\t// This goroutine must preempt when we have no work to do\n+\t\t\t// but isSweepDone returns fal...
2025-04-25T11:28:52
vercel/next.js
290ecac91021ffcbd203e751e179b460df8fa63f
2817a46d48d5a1b5d50644ca4cb3b0dc0c50fab3
fix(build): add sourcePage context for PPR dynamic route lambda creation (#81781) ### What? This PR adds a `sourcePage` property to dynamic routes in the routes manifest to provide the necessary context for lambda creation during the build process when PPR is enabled. ### Why? The build process was missing the requ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -412,6 +412,15 @@ export type ManifestRoute = ManifestBuiltRoute & {\n skipInternalRouting?: boolean\n }\n \n+type DynamicManifestRoute = ManifestRoute & {\n+ /**\n+ * The source page that this route is based on. This is used to determine the\n...
2025-07-18T00:56:31
nodejs/node
88bac52b238427a12521e8d22ddb8a53033793ee
2bcf9995d28758584f34382bc402995f268d1b64
test_runner: fix erroneous diagnostic warning when only: false Co-author: rstagi <r.stagi96@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54116 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -409,9 +409,9 @@ class Test extends AsyncResource {\n \n this.concurrency = parent.concurrency;\n this.nesting = nesting;\n- this.only = only ?? !parent.runOnlySubtests;\n+ this.only = only ?? (parent.only && !parent.runOnlySub...
2024-08-08T05:50:32
electron/electron
455f57322f705fdd67751328e8f1feaf6bd29409
77cc1d6ffa83dcf291b2a2ddb4889549c23d154c
refactor: use `TypeError` instead of generic `Error` when appropriate (#39209) refactor: use TypeError instead of generic Error when appropriate
[ { "path": "lib/browser/api/auto-updater/auto-updater-win.ts", "patch": "@@ -24,12 +24,12 @@ class AutoUpdater extends EventEmitter {\n if (typeof options.url === 'string') {\n updateURL = options.url;\n } else {\n- throw new Error('Expected options object to contain a \\'url\\' st...
2023-07-25T16:08:46
facebook/react
4af3ff1e759682c05336341f242bb886a81839f3
f4455ef51a11570a397c341a4119eab76955f267
Fixture for transitive invalidation of effect dep This fixture shows that this optimization partially improves transitive checking for validateMemoizedEffectDependencies.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.validate-memoized-effect-deps-invalidated-dep-value.expect.md", "patch": "@@ -0,0 +1,44 @@\n+\n+## Input\n+\n+```javascript\n+// @validateMemoizedEffectDependencies\n+import { useHook } from \"shared-runtime\";\n+\n...
2024-03-06T17:28:03
vercel/next.js
2817a46d48d5a1b5d50644ca4cb3b0dc0c50fab3
7d030a0295d36e649320ae501b609d9eac48bcb6
Turbopack: Split DynamicEqHash trait into smaller traits in a separate re-usable crate (#81741) I originally split this off to support #81742, but I ended up rewriting that PR to not depend on this... However, I think this is still a code quality improvement, so I'm publishing the PR anyways. A few notable changes: ...
[ { "path": "Cargo.lock", "patch": "@@ -9107,6 +9107,10 @@ dependencies = [\n \"utf-8\",\n ]\n \n+[[package]]\n+name = \"turbo-dyn-eq-hash\"\n+version = \"0.0.1\"\n+\n [[package]]\n name = \"turbo-esregex\"\n version = \"0.1.0\"\n@@ -9224,6 +9228,7 @@ dependencies = [\n \"tokio-util\",\n \"tracing\",\n \"...
2025-07-18T00:18:10
golang/go
238d273da4859fe4be5db019879fdb886a547350
c0eb7ab3062fae802639545770f6a897d75b0085
bytes, strings: rename parameters in ExampleCut{Pre,Suf}fix The old parameter name sep was probably copied from ExampleCut. Change the parameter names to prefix and suffix, respectivly to make the examples a bit more readable. Change-Id: Ie14b0050c2fafe3301c5368efd548a1629a7545f Reviewed-on: https://go-review.googles...
[ { "path": "src/bytes/example_test.go", "patch": "@@ -245,9 +245,9 @@ func ExampleCut() {\n }\n \n func ExampleCutPrefix() {\n-\tshow := func(s, sep string) {\n-\t\tafter, found := bytes.CutPrefix([]byte(s), []byte(sep))\n-\t\tfmt.Printf(\"CutPrefix(%q, %q) = %q, %v\\n\", s, sep, after, found)\n+\tshow := fu...
2025-05-08T12:13:16
nodejs/node
2bcf9995d28758584f34382bc402995f268d1b64
e9deab9915f70c3e7e6baf5164a419fea0bffbdc
src: skip inspector wait in internal workers Internal workers are essential to load user scripts and bootstrapped with internal entrypoints. They should not be waiting for inspectors even when `--inspect-brk` and `--inspect-wait` were specified, and avoid blocking main thread to bootstrap. IsolateData can be created ...
[ { "path": "src/api/environment.cc", "patch": "@@ -371,9 +371,8 @@ IsolateData* CreateIsolateData(\n MultiIsolatePlatform* platform,\n ArrayBufferAllocator* allocator,\n const EmbedderSnapshotData* embedder_snapshot_data) {\n- const SnapshotData* snapshot_data =\n- SnapshotData::FromEmbedde...
2024-08-07T21:56:59
rust-lang/rust
fcb881244ba9b1b807a22999dc33b423ade01674
b1e033649cd6de95e6d045244ca808f11efd86ed
align_strange_enum_discriminant_offset: fix accidentally unused variable
[ { "path": "src/tools/miri/tests/pass/align_strange_enum_discriminant_offset.rs", "patch": "@@ -1,5 +1,4 @@\n-#![allow(unused)]\n-\n+#[allow(unused)]\n #[repr(u16)]\n enum DeviceKind {\n Nil = 0,\n@@ -19,5 +18,5 @@ fn main() {\n let x = None::<(DeviceInfo, u8)>;\n let y = None::<(DeviceInfo, u16)...
2026-02-11T21:43:14
electron/electron
9cd5de75888d67b20bb7faf59ca4272323895c62
a83f9c06d701f1126eaf8da605e27125c90edb87
fix: use generic capturer to list both screens and windows when possible (#39111) Screensharing with PipeWire via XDG Desktop Portal requires explicit user permission via permission dialogs. Chromium has separate tabs for screens and windows and thus its portal implementation requests permissions separately for eac...
[ { "path": "patches/chromium/.patches", "patch": "@@ -131,3 +131,4 @@ fix_select_the_first_menu_item_when_opened_via_keyboard.patch\n fix_return_v8_value_from_localframe_requestexecutescript.patch\n fix_harden_blink_scriptstate_maybefrom.patch\n chore_add_buildflag_guard_around_new_include.patch\n+fix_use_de...
2023-07-21T23:03:01
facebook/react
48e08c42be4ce37269b1ddc49ab349c1b74807cf
22ea72d4e909e607d79bca8b46f09ded00153e06
Fixtures where unmemoized value invalidates later scopes These fixtures demonstrate how currently, even if the dependency of a scope doesn't get memoized (ie the scope gets pruned), we don't remove later scopes that depend on that value. Those later scopes will always invalidate, so we might as well remove them.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/prune-scopes-whose-deps-invalidate-array.expect.md", "patch": "@@ -0,0 +1,63 @@\n+\n+## Input\n+\n+```javascript\n+import { useHook } from \"shared-runtime\";\n+\n+function Component(props) {\n+ const x = [];\n+ useHook...
2024-03-06T17:28:01
vercel/next.js
7d030a0295d36e649320ae501b609d9eac48bcb6
cf1b7194a882b07f2e59021fedb6fbed44ac8f4c
[devtool] copy decoded info of error details (#81735) Change the copy button's content from the original error stack trace to a prompt template with error details from the error page and ask AI to fix it. You can copy it for either bug reporting or asking AI agent to explain/fix the errors for you. ### Example cont...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/copy-button/index.tsx", "patch": "@@ -133,20 +133,35 @@ function useCopyModern(content: string) {\n const useCopy =\n typeof React.useActionState === 'function' ? useCopyModern : useCopyLegacy\n \n-export function CopyButton({\n- actionLab...
2025-07-18T00:17:09
nodejs/node
7327e44a05506e108b075ff15dc0ee50a6751eec
e0634f58aba6a1634fe03107d5be849fd008cc02
doc: sort versions to fix the linter error PR-URL: https://github.com/nodejs/node/pull/54229 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "doc/api/test.md", "patch": "@@ -3214,8 +3214,8 @@ test('top level test', (t) => {\n \n <!-- YAML\n added:\n- - v20.16.0\n - v22.6.0\n+ - v20.16.0\n -->\n \n The absolute path of the test file that created the current test. If a test file", "additions": 1, "deletions": 1, "language...
2024-08-06T21:56:00
golang/go
c0eb7ab3062fae802639545770f6a897d75b0085
c57b0d6c7e54284c8967530153774dbc62190b00
bytes, strings: micro-optimize EqualFold The first loop leaves the lengths of the two arguments unchanged. Take advantage of this invariant in the loop's condition. Here are some benchmark results (no change to allocations): goos: darwin goarch: amd64 pkg: strings cpu: Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHz ...
[ { "path": "src/bytes/bytes.go", "patch": "@@ -1228,7 +1228,7 @@ func ReplaceAll(s, old, new []byte) []byte {\n func EqualFold(s, t []byte) bool {\n \t// ASCII fast path\n \ti := 0\n-\tfor ; i < len(s) && i < len(t); i++ {\n+\tfor n := min(len(s), len(t)); i < n; i++ {\n \t\tsr := s[i]\n \t\ttr := t[i]\n \t\...
2025-05-12T12:40:36
facebook/react
c11b196ae3e2e3c5d143d9102b35a6b6fa97c849
966d17483c2a628fda36794bc193c7ad2c3124eb
Move tail hydration mismatch back to hydration context (#28501) In #23176 we added a special case in completeWork for SuspenseBoundaries if they still have trailing children. However, that misses a case because it doesn't log a recoverable error for the hydration mismatch. So we get an error that we rerendered. ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js", "patch": "@@ -538,6 +538,7 @@ describe('ReactDOMServerPartialHydration', () => {\n assertLog([\n 'Server rendered',\n 'Client rendered',\n+ 'Hydration failed because the initial UI does not mat...
2024-03-06T01:54:24
electron/electron
6688b0f31ae3ef0648eb27679dcfa15825cb2be8
565705bd1da46e9c519845463176454b33d0e6fb
build: fix Appveyor test workflow checkout (#39137) * build: fix Appveyor test workflow checkout * fix: +refs/pull/num/merge -> +refs/pull/num/head * chore: add to appveyor-woa as well
[ { "path": "appveyor-woa.yml", "patch": "@@ -51,6 +51,11 @@ environment:\n APPVEYOR_BUILD_WORKER_IMAGE: base-woa\n APPVEYOR_BUILD_WORKER_CLOUD: electronhq-woa\n \n+clone_script:\n+- ps: git clone -q $(\"--branch=\" + $Env:APPVEYOR_REPO_BRANCH) $(\"https://github.com/\" + $Env:APPVEYOR_REPO_NAME +...
2023-07-20T09:19:57
nodejs/node
78150f3e9ccf9c090a42497a3d556c8edebf2be4
e2c62203ccd44bbc22bf7f1945fa39b54a5fac7f
lib: fix unhandled errors in webstream adapters WebStream's Readable controller does not tolerate `.close()` being called after an `error`. However, when wrapping a Node's Readable stream it is possible that the sequence of events leads to `finished()`'s callback being invoked after such `error`. In order to handle t...
[ { "path": "lib/internal/webstreams/adapters.js", "patch": "@@ -459,6 +459,7 @@ function newReadableStreamFromStreamReadable(streamReadable, options = kEmptyObj\n const strategy = evaluateStrategyOrFallback(options?.strategy);\n \n let controller;\n+ let wasCanceled = false;\n \n function onData(chunk...
2024-08-06T18:34:35
facebook/react
22ea72d4e909e607d79bca8b46f09ded00153e06
f5d99baf8e64530473fac5fe0dd2bd489f3bf8fc
Allow global mutation within useEffect (#2646) Summary: Currently Forget bails on mutations to globals within any callback function. However, callbacks passed to useEffect should not bail and are not subject to the rules of react in the same way. We allow this by instead of immediately raising errors when we see il...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -165,6 +165,12 @@ export class CompilerError extends Error {\n throw errors;\n }\n \n+ static throw(options: CompilerErrorDetailOptions): never {\n+ const errors = new CompilerError();\n+ errors.pushError...
2024-03-05T19:54:29
golang/go
e282cbb11256db717b95f9d8cf8c050cd4c4f7c2
fd605450a7be429efe68aed2271fbd3d40818f8e
crypto/tls: handle client hello version too high If the client hello legacy version is >= TLS 1.3, and no supported_versions extension is sent, negotiate TLS 1.2 or lower when supported. On the topic of supported version negotiation RFC 8446 4.2.1 indicates TLS 1.3 implementations MUST send a supported_versions exten...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -66,11 +66,8 @@\n \"SupportTicketsWithSessionID\": \"TODO: first pass, this should be fixed\",\n \"NoNullCompression-TLS12\": \"TODO: first pass, this should be fixed\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this sho...
2025-05-08T21:33:15
electron/electron
565705bd1da46e9c519845463176454b33d0e6fb
e02cf8674d3c3b593f8bcce739ecd736fd10e906
docs: fix casing of _Deprecated_ (#39152)
[ { "path": "docs/api/system-preferences.md", "patch": "@@ -297,7 +297,7 @@ This API is only available on macOS 10.14 Mojave or newer.\n * `window-frame` - Window frame.\n * `window-text` - Text in windows.\n * On **macOS**\n- * `alternate-selected-control-text` - The text on a selected surface i...
2023-07-20T09:16:20
golang/go
fd605450a7be429efe68aed2271fbd3d40818f8e
97eab214d14054d9f174ab8b02ec3f7adb9cb2f9
crypto/tls: fix TLS <1.3 client cert required alert Previously for protocol versions older than TLS 1.3 our server handshake implementation sent an alertBadCertificate alert in the case where the server TLS config indicates a client cert is required and none was received. This commit updates the relevant logic to ins...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -60,16 +60,12 @@\n \"CurveID-Resume*\": \"unexposed curveID is not stored in the ticket yet\",\n \"BadRSAClientKeyExchange-4\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comme...
2025-05-08T19:22:41
nodejs/node
3660ad5c9234c6db7df2f7d75cb6712730338d78
54119757a39a9f51cc58a936d74f001177b247d7
2024-08-06, Version 22.6.0 (Current) Notable changes: deps: * (SEMVER-MINOR) V8: backport 7857eb34db42 (Stephen Belanger) https://github.com/nodejs/node/pull/53997 http: * (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) https://github.com/nodejs/node/pull/54054 inspector: * (SEMV...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,7 +38,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.1\">22.5.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.6.0\">22.6.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.1\">2...
2024-07-30T13:11:29
facebook/react
966d17483c2a628fda36794bc193c7ad2c3124eb
e5287287aacd3c51d24e223651b7f38ece584c49
React DevTools 5.0.1 -> 5.0.2 (#28496) * feat[devtools]: symbolicate source for inspected element ([hoxyq](https://github.com/hoxyq) in [#28471](https://github.com/facebook/react/pull/28471)) * refactor[devtools]: lazily define source for fiber based on component stacks ([hoxyq](https://github.com/hoxyq) in [#283...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.0.1\",\n+ \"version\": \"5.0.2\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2024-03-05T14:11:30
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
electron/electron
e02cf8674d3c3b593f8bcce739ecd736fd10e906
3e7c904f02d156555e5ec21b13bf5b38d663042e
chore: bump chromium to 117.0.5897.0 (main) (#39147) * chore: bump chromium in DEPS to 117.0.5896.0 * chore: update patches * 4622260: [Service Workers] Allow fetches from workers to use auto-picked certs https://chromium-review.googlesource.com/c/chromium/src/+/4622260 * chore: bump chromium in DEPS to 11...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '117.0.5892.0',\n+ '117.0.5897.0',\n 'node_version':\n 'v18.16.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-07-20T07:36:59
nodejs/node
c852e222cb4c9bba4f81d290d3ccfc671b525938
5bfebfec88090476064d367b9185fe4a249d6a76
path: fix relative on Windows PR-URL: https://github.com/nodejs/node/pull/53991 Fixes: https://github.com/nodejs/node/issues/27534 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "benchmark/path/relative-win32.js", "patch": "@@ -9,6 +9,7 @@ const bench = common.createBenchmark(main, {\n ['C:\\\\foo\\\\bar\\\\baz', 'C:\\\\foo\\\\bar\\\\baz'].join('|'),\n ['C:\\\\foo\\\\BAR\\\\BAZ', 'C:\\\\foo\\\\bar\\\\baz'].join('|'),\n ['C:\\\\foo\\\\bar\\\\baz\\\\quux', 'C:\\...
2024-08-06T09:40:23
golang/go
97eab214d14054d9f174ab8b02ec3f7adb9cb2f9
45f27826178981400f6d083fd087d20d0abb02d2
crypto/tls: enable more large record bogo tests Previously a handful of large record tests were in the bogo config ignore list. The ignored tests were failing because they used insecure ciphersuites that aren't enabled by default. This commit adds the non-default insecure ciphersuites to the bogo TLS configuration an...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -67,15 +67,6 @@\n \"SupportTicketsWithSessionID\": \"TODO: first pass, this should be fixed\",\n \"NoNullCompression-TLS12\": \"TODO: first pass, this should be fixed\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this sho...
2025-04-29T21:41:53
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
e5287287aacd3c51d24e223651b7f38ece584c49
61bd00498d2a6e23885bac42f3aeb0e02cadb8eb
feat[devtools]: symbolicate source for inspected element (#28471) Stacked on https://github.com/facebook/react/pull/28351, please review only the last commit. Top-level description of the approach: 1. Once user selects an element from the tree, frontend asks backend to return the inspected element, this is where...
[ { "path": ".eslintrc.js", "patch": "@@ -455,6 +455,13 @@ module.exports = {\n __IS_CHROME__: 'readonly',\n __IS_FIREFOX__: 'readonly',\n __IS_EDGE__: 'readonly',\n+ __IS_INTERNAL_VERSION__: 'readonly',\n+ },\n+ },\n+ {\n+ files: ['packages/react-devtools-shared...
2024-03-05T12:32:11
vercel/next.js
53a92f872236c9fd0208519a6e91e3d3187d8722
a87a0721098e3fb6fbfb9102f7c160917ae72461
Add trigger for v0 sync workflow (#81645) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Impr...
[ { "path": ".github/workflows/test_e2e_deploy_release.yml", "patch": "@@ -89,10 +89,20 @@ jobs:\n DD_ENV=ci npx @datadog/datadog-ci@2.23.1 junit upload --tags test.type:deploy --service nextjs ./test/test-junit-report\n fi\n \n- front-sync:\n+ sync-repositories:\n needs: test-depl...
2025-07-17T22:53:03
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
nodejs/node
5bfebfec88090476064d367b9185fe4a249d6a76
24ed890663e494c3f5b29ed3533f37aba4393f67
test_runner: make mock_loader not confuse CJS and ESM resolution PR-URL: https://github.com/nodejs/node/pull/53846 Fixes: https://github.com/nodejs/node/issues/53807 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/test/mock_loader.js", "patch": "@@ -23,6 +23,8 @@ let debug = require('internal/util/debuglog').debuglog('test_runner', (fn) => {\n debug = fn;\n });\n const { createRequire, isBuiltin } = require('module');\n+const { defaultGetFormatWithoutErrors } = require('internal/modules/esm/get_forma...
2024-08-06T09:24:24
electron/electron
bbdd037219f81f8c11f4cd92239f15d5365ee905
ee4460ac686511b21a235cd6e9f3d29e3588e1d8
chore: bump chromium to 117.0.5892.0 (main) (#39118) * chore: bump chromium in DEPS to 117.0.5892.0 * 4670267: Don't send javascript: or empty URLs to browser in CreateNewWindow. https://chromium-review.googlesource.com/c/chromium/src/+/4670267 * 4662090: Add metrics for WebGPU support https://chromium-rev...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -526,6 +526,10 @@ step-fix-sync: &step-fix-sync\n sed -i '' \"s/Updating depot_tools... //g\" esbuild_ensure_file\n cipd ensure --root src/third_party/devtools-frontend/src/third_party/esbuild -ensure-file esbuild_ensure_file\n \n+ #...
2023-07-18T22:26:27
golang/go
00b63486583ef8055c821fa16a87017e04dc2920
992d1547178fe0d18c2827e34d62fbc545ace64c
crypto/tls: err for unsupported point format configs If a client or server explicitly offers point formats, and the point formats don't include the uncompressed format, then error. This matches BoringSSL and Rustls behaviour and allows enabling the PointFormat-Client-MissingUncompressed bogo test. Updates #72006 Cha...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -131,7 +131,6 @@\n \"SendClientVersion-RSA\": \"TODO: first pass, this should be fixed\",\n \"NoCommonCurves\": \"TODO: first pass, this should be fixed\",\n \"PointFormat-EncryptedExtensions-TLS13\": \"TODO: first pass, this ...
2025-04-29T21:39:08
facebook/react
61bd00498d2a6e23885bac42f3aeb0e02cadb8eb
aa4eae6b99a6081afabf180d02fa0a8b0cb1b3ab
refactor[devtools]: lazily define source for fiber based on component stacks (#28351) `_debugSource` was removed in https://github.com/facebook/react/pull/28265. This PR migrates DevTools to define `source` for Fiber based on component stacks. This will be done lazily for inspected elements, once user clicks on ...
[ { "path": "packages/react-devtools-core/src/standalone.js", "patch": "@@ -144,7 +144,7 @@ function canViewElementSourceFunction(\n \n const {source} = inspectedElement;\n \n- return doesFilePathExist(source.fileName, projectRoots);\n+ return doesFilePathExist(source.sourceURL, projectRoots);\n }\n \n fu...
2024-03-05T12:10:36
vercel/next.js
a87a0721098e3fb6fbfb9102f7c160917ae72461
65e0b7b7579614b07a53ed24d229064c7e2f869d
fix(turbopack) Adjust the way catchall routes are handled when a more specific parallel route exists (#81634) ## Improve App Router Route Prioritization ### What? Fixed a logic bug where we were failing to correctly identify routes as catchall routes due to treating parallel routes as a completed route path. This sho...
[ { "path": "crates/next-core/src/next_app/mod.rs", "patch": "@@ -257,17 +257,22 @@ impl AppPage {\n matches!(self.0.last(), Some(PageSegment::PageType(..)))\n }\n \n- pub fn is_catchall(&self) -> bool {\n- let segment = if self.is_complete() {\n- // The `PageType` is the last...
2025-07-17T21:22:47
electron/electron
00d96970cb4879773b8b4651f9e7136db383243e
139774ce4857af1d897383eb81fc3dcb65f7170c
build: fixup Codespaces build-tools setup (#39138) * build: fixup Codespaces build-tools setup * oops evm.testing1.json -> evm.testing.json
[ { "path": ".devcontainer/on-create-command.sh", "patch": "@@ -16,6 +16,8 @@ ln -s $buildtools_configs $buildtools/configs\n \n # Write the gclient config if it does not already exist\n if [ ! -f $gclient_root/.gclient ]; then\n+ echo \"Creating gclient config\"\n+\n echo \"solutions = [\n { \\\"nam...
2023-07-18T20:58:26
nodejs/node
24ed890663e494c3f5b29ed3533f37aba4393f67
1f69085db557d92edece566b5c8d7984bf473af0
doc: fix sea assets example PR-URL: https://github.com/nodejs/node/pull/54192 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/single-executable-applications.md", "patch": "@@ -219,7 +219,7 @@ executable, users can retrieve the assets using the [`sea.getAsset()`][] and\n The single-executable application can access the assets as follows:\n \n ```cjs\n-const { getAsset } = require('node:sea');\n+const { getAsset, ...
2024-08-06T08:24:23
golang/go
992d1547178fe0d18c2827e34d62fbc545ace64c
d382f1467960d67a6b5eb25447f689a0ccac371e
crypto/tls: update TLS 1.3 client compression validation Unlike in earlier TLS versions, in TLS 1.3 when processing a server hello the legacy_compression_method MUST have the value 0. It is no longer a parameter that offers a choice of compression method. With this in mind, it seems more appropriate to return a decod...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -64,7 +64,6 @@\n \"SupportTicketsWithSessionID\": \"TODO: first pass, this should be fixed\",\n \"NoNullCompression-TLS12\": \"TODO: first pass, this should be fixed\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this shou...
2025-04-29T19:10:10
vercel/next.js
65e0b7b7579614b07a53ed24d229064c7e2f869d
8a4abf7dc3b378bf9795c122b270534cae598357
bugfix: static resources staleTime should be renewed once refetched (#81771) When the `x-nextjs-staletime` header is sent from the server, the client router was discarding all of its staleTime heuristics (such as lastUsedTime and "reusable" cache entries). This caused an issue where after the static staleTime window e...
[ { "path": "packages/next/src/client/components/router-reducer/prefetch-cache-utils.ts", "patch": "@@ -404,22 +404,7 @@ function getPrefetchEntryCacheStatus({\n kind,\n prefetchTime,\n lastUsedTime,\n- staleTime,\n }: PrefetchCacheEntry): PrefetchCacheEntryStatus {\n- if (staleTime !== -1) {\n- //...
2025-07-17T20:31:55
facebook/react
aa4eae6b99a6081afabf180d02fa0a8b0cb1b3ab
0ae2b13412e0e4cf10a799ec645035213834556c
fix[devtools/tree/element]: onClick -> onMouseDown to handle first click correctly (#28486) There is a weird behaviour in all shells of RDT: when user opens `Components` tab and scrolls down a tree (without any prior click or focus event), and then clicks on some element, the `click` event will not be fired. Becaus...
[ { "path": "packages/react-devtools-inline/__tests__/__e2e__/devtools-utils.js", "patch": "@@ -37,7 +37,10 @@ async function selectElement(page, displayName, waitForOwnersText) {\n createTestNameSelector('ComponentTreeListItem'),\n createTextSelector(listItemText),\n ])[0];\n- listItem.cli...
2024-03-05T11:42:10
nodejs/node
1f69085db557d92edece566b5c8d7984bf473af0
2b41c237c03e8223f4189c0159456024704ca573
test: set test-structuredclone-jstransferable non-flaky Fixes: https://github.com/nodejs/node/issues/50260 PR-URL: https://github.com/nodejs/node/pull/54115 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "test/pummel/pummel.status", "patch": "@@ -9,8 +9,6 @@ prefix pummel\n [$system==win32]\n # https://github.com/nodejs/node/issues/40728\n test-fs-watch-non-recursive: PASS,FLAKY\n-# https://github.com/nodejs/node/issues/50260\n-test-structuredclone-jstransferable: PASS,FLAKY\n \n [$system==macos]\...
2024-08-06T08:24:15
electron/electron
8874306dc021f2beb4c2b7cd49b8f3bec614e373
4ab0a5ade47534db85d333e17f40530cc9726475
fix: `window.open` causing occasional Node.js crashes (#38754) * fix: window.open causing occasional Node.js crashes * chore: always free isolate data * chore: clear pending ticks in worker thread * fix: UAF crash when creating WebWorkerObserver --------- Co-authored-by: deepak1556 <hop2deep@gmail.com>
[ { "path": "patches/chromium/fix_harden_blink_scriptstate_maybefrom.patch", "patch": "@@ -40,13 +40,14 @@ accessing uninitialized lower indexes can return garbage values that cannot be n\n Refer to v8::EmbedderDataSlot::store_aligned_pointer for context.\n \n diff --git a/gin/public/gin_embedders.h b/gin/pub...
2023-07-18T08:41:50
golang/go
f4e37b8afc01253567fddbdd68ec35632df86b62
cad1fc52076f1368d79aa833c1810ae050df57e6
crypto/tls: use runtime.Gosched instead of time.After in TestCertCache I noticed a failure of this test on a linux/amd64 builder and reproduced it locally. I can only really reproduce it in a stress test when I overload my system (`stress2 ./tls.test -test.run=TestCertCache`) but this points to the root of the problem...
[ { "path": "src/crypto/tls/cache_test.go", "patch": "@@ -41,22 +41,12 @@ func TestCertCache(t *testing.T) {\n \n \ttimeoutRefCheck := func(t *testing.T, key string, count int64) {\n \t\tt.Helper()\n-\n-\t\t// Explicitly check every 1 ms up to the timeout instead of busy-looping.\n-\t\t//\n-\t\t// On single-t...
2025-05-08T19:03:37
vercel/next.js
5b998d69553df2f96c0dc398d8e483a6cc7c387f
cff812b4d02764961571069818e172053984003f
fix: revert client segment route changes for sub shell generation (#81740) ### What? Implements a new sortable routes system that distinguishes between source pages and rendered pages for sub-shell generation. ### Why? The existing route sorting logic in Next.js doesn't account for the distinction between the origi...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -81,11 +81,7 @@ import {\n DYNAMIC_CSS_MANIFEST,\n TURBOPACK_CLIENT_MIDDLEWARE_MANIFEST,\n } from '../shared/lib/constants'\n-import {\n- getSortedRoutes,\n- isDynamicRoute,\n- getSortedRouteObjects,\n-} from '../shared/lib/router/utils'\n+im...
2025-07-17T19:23:46
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
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
electron/electron
4ab0a5ade47534db85d333e17f40530cc9726475
626f46f75a848cf9641ae40f0c82aa1a81d64e64
docs: fix a capitalization problem in messagePort tutorial (#39083) fix a capitalization problem For a rookie, this little mistake took a long time to find out.
[ { "path": "docs/tutorial/message-ports.md", "patch": "@@ -150,7 +150,7 @@ renderer.\n \n ```js title='renderer.js (Renderer Process)' @ts-nocheck\n // elsewhere in your code to send a message to the other renderers message handler\n-window.electronMessagePort.postmessage('ping')\n+window.electronMessagePort...
2023-07-17T17:41:46
golang/go
ac645eaa0efc982eb238188a5f14835d2c1f8d18
60d3bcdec38eafbffe3086d8aea190ff8bcdece7
runtime: avoid overflow in mutex delay calculation If cputicks is in the top quarter of the int64's range, adding two values together will overflow and confuse the subsequent calculations, leading to zero-duration contention events in the profile. This fixes the TestRuntimeLockMetricsAndProfile failures on the linux-...
[ { "path": "src/runtime/lock_spinbit.go", "patch": "@@ -404,7 +404,7 @@ useStackLock:\n \t\t\tn++\n \t\t\tnext := node.mWaitList.next.ptr()\n \t\t\tif next == nil {\n-\t\t\t\tcycles := endTicks - (head.mWaitList.startTicks+node.mWaitList.startTicks)/2\n+\t\t\t\tcycles := ((endTicks - head.mWaitList.startTick...
2025-05-08T17:59:18
vercel/next.js
cff812b4d02764961571069818e172053984003f
a093d32d3e6f90d5afd3ac7d0dd1e4c6267f505c
Turbopack: include more details in panic (#81773) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -2430,7 +2430,10 @@ impl CodeGenResultComments {\n } else if old_high_bits == 0 {\n false\n } else {\n- panic!(\"The high bits of the position {pos} are not all 0s or 1s: {old_high_bits:b}\",);\...
2025-07-17T19:21:12
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
golang/go
e46c8e0558d287fcffde75bb458419288e71db62
b877f04eea44820481e3a33f93eb55e90ff1754d
runtime: schedule cleanups across multiple goroutines This change splits the finalizer and cleanup queues and implements a new lock-free blocking queue for cleanups. The basic design is as follows: The cleanup queue is organized in fixed-sized blocks. Individual cleanup functions are queued, but only whole blocks are...
[ { "path": "src/cmd/internal/objabi/funcid.go", "patch": "@@ -10,27 +10,28 @@ import (\n )\n \n var funcIDs = map[string]abi.FuncID{\n-\t\"abort\": abi.FuncID_abort,\n-\t\"asmcgocall\": abi.FuncID_asmcgocall,\n-\t\"asyncPreempt\": abi.FuncID_asyncPreempt,\n-\t\"cg...
2025-02-19T16:33:21
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
9645f7f6d8ab1adf839ca44ddd64331ccb21d298
f61425efdb1357795a2c05a80923e2064158002b
chore: bump chromium to 117.0.5884.1 (main) (#38969) * chore: bump chromium in DEPS to 117.0.5866.0 * chore: bump chromium in DEPS to 117.0.5868.0 * chore: update mas_no_private_api.patch Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4634925 Minor manual patch syncing due to upstream code...
[ { "path": "BUILD.gn", "patch": "@@ -748,20 +748,34 @@ if (is_mac) {\n source_set(\"electron_lib_arc\") {\n include_dirs = [ \".\" ]\n sources = [\n+ \"shell/browser/browser_mac.mm\",\n \"shell/browser/mac/dict_util.h\",\n \"shell/browser/mac/dict_util.mm\",\n+ \"shell/browser...
2023-07-16T14:14:43
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
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
electron/electron
f61425efdb1357795a2c05a80923e2064158002b
34e7c3696a1375080197ebc68c222d221fbc2ef3
fix: `clipboard.readImage()` should be synchronous (#39069) * feat: clipboard.readImage returns a Promise * chore: update breaking changes doc * fix: make function synchronous * Update docs/api/native-image.md Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> --------- Co-authored-by: John ...
[ { "path": "shell/common/api/electron_api_clipboard.cc", "patch": "@@ -7,6 +7,7 @@\n #include <map>\n \n #include \"base/containers/contains.h\"\n+#include \"base/run_loop.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"shell/common/gin_converters/image_converter.h\"\n #include \"shell/...
2023-07-13T20:59:14
golang/go
b877f04eea44820481e3a33f93eb55e90ff1754d
c9d0fad5cbeb8ec60c7b21bb48f101e835241274
crypto/tls: add scheduler call to TestCertCache refcount timeout loop Currently TestCertCache will busy loop waiting for a cleanup (in the runtime.AddCleanup sense) to execute. If we ever get into this busy loop, then on single-threaded platforms like js/wasm, we'll end up _always_ timing out. This doesn't happen rig...
[ { "path": "src/crypto/tls/cache_test.go", "patch": "@@ -41,12 +41,22 @@ func TestCertCache(t *testing.T) {\n \n \ttimeoutRefCheck := func(t *testing.T, key string, count int64) {\n \t\tt.Helper()\n-\t\tc := time.After(4 * time.Second)\n+\n+\t\t// Explicitly check every 1 ms up to the timeout instead of busy...
2025-05-07T23:17:48
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
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
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
golang/go
c9d0fad5cbeb8ec60c7b21bb48f101e835241274
f38256eae560c6532c172573e39dd8d4827eff95
cmd/compile: add 2 phiopt cases Add 2 more cases: if a { x = value } else { x = a } => x = a && value if a { x = a } else { x = value } => x = a || value AND case goes from: 00006 (8) TESTB AX, AX 00007 (8) JNE 9 00008 (13) MOVL AX, BX 00009 (13) MOVL BX, AX 00010 (13) RET to: 00006 (13) ANDL BX, AX 00007 (13) RE...
[ { "path": "src/cmd/compile/internal/ssa/phiopt.go", "patch": "@@ -119,6 +119,33 @@ func phiopt(f *Func) {\n \t\t\t\t\tcontinue\n \t\t\t\t}\n \t\t\t}\n+\t\t\t// Replaces\n+\t\t\t// if a { x = value } else { x = a } with x = a && value.\n+\t\t\t// Requires that value dominates x.\n+\t\t\tif v.Args[1-reverse...
2025-04-19T10:31:26
electron/electron
b14b876d5001f7adbe0b78f1c2781ca744fe72f3
a8622aed7b6c378b25c39cc025552412dccf2538
docs: fix fiddles (#39060) * refactor: replace Array.prototype.forEach.call with plain for-of * fix: add missing contextIsolation: false * fix: open links in default browser
[ { "path": "docs/fiddles/media/screenshot/take-screenshot/main.js", "patch": "@@ -12,6 +12,7 @@ function createWindow () {\n height: 300,\n title: 'Take a Screenshot',\n webPreferences: {\n+ contextIsolation: false,\n nodeIntegration: true\n }\n }", "additions": 1, "delet...
2023-07-13T08:10:37
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
golang/go
9c170f70e1c27f3f89f6175af0d9fa800931dbb8
8cd6d68a0881d2bc0081081a847bb36fc314e761
cmd/go: replace backslash systematically in path of command Using the same method CleanPatterns harmonizes further accepted format of patterns in go command. Fixes #24233 Change-Id: Idb8176df3a7949b16764cd6ea51d7a8966799e42 Reviewed-on: https://go-review.googlesource.com/c/go/+/669775 LUCI-TryBot-Result: Go LUCI <go...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -3381,6 +3381,7 @@ func PackagesAndErrorsOutsideModule(ctx context.Context, opts PackageOpts, args\n \t\t\tpatterns[i] = p\n \t\t}\n \t}\n+\tpatterns = search.CleanPatterns(patterns)\n \n \t// Query the module providing the first argument, load its g...
2025-05-02T07:10:40
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
electron/electron
da3475998f154c19d3102c26fec175b9dd4eecec
9d1a16b2e62cf5838ecd1aeaf195952bb0a83f47
fix: `BrowserWindow.moveAbove()` not working for child windows (#39034) fix: BrowserWindow.moveAbove() not working for child windows
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -162,6 +162,47 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n [self setFrame:[[self superview] bounds]];\n }\n \n+// -[NSWindow orderWindow] does not handle reordering for children\n+// windows. Their order is fixed to the attachment...
2023-07-12T15:42:24
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
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
golang/go
8cd6d68a0881d2bc0081081a847bb36fc314e761
bd1f9a4963eff6672e7e7b6d1b03ca0c51f28663
cmd/go: fix incorrect determining default value of CGO_ENABLED The default value is the value obtained when no environment variables are set and go env -w is not used. In the past, we used the current value (may be modified by an environment variable to a non-default value), error was used as the default value. For...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -673,7 +673,6 @@ var gentab = []struct {\n \tfile string\n \tgen func(dir, file string)\n }{\n-\t{\"go/build\", \"zcgo.go\", mkzcgo},\n \t{\"cmd/go/internal/cfg\", \"zdefaultcc.go\", mkzdefaultcc},\n \t{\"internal/runtime/sys\", \"zversion.go\", mkzversion},\...
2024-10-23T12:55:43
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
b142fce229c5821083ad6b7c9aa6aa5790032127
f959fb0c963701c40f309eb8256530f788d5851e
fix: `protocol.handle` not intercepting file protocol (#39048) fix: protocol.handle not intercepting file protocol
[ { "path": "lib/browser/api/protocol.ts", "patch": "@@ -9,7 +9,7 @@ const { registerSchemesAsPrivileged, getStandardSchemes, Protocol } = process._l\n const ERR_FAILED = -2;\n const ERR_UNEXPECTED = -9;\n \n-const isBuiltInScheme = (scheme: string) => scheme === 'http' || scheme === 'https';\n+const isBuiltI...
2023-07-12T09:42:49
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
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
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
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
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
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
golang/go
ad7a6f81597fae99f2d94dda308bdc19ff8c1362
509c11f3a39aeb627cc16dc9ffcad45fc457c5ec
runtime: fix condition to emit gcpacertrace end-of-sweep line It's the job of the last sweeper to emit the GC pacer trace. The last sweeper can identify themselves by reducing the count of sweepers, and also seeing that there's no more sweep work. Currently this identification is broken, however, because the last swe...
[ { "path": "src/runtime/mgcsweep.go", "patch": "@@ -169,9 +169,10 @@ func (a *activeSweep) end(sl sweepLocker) {\n \t\t\tthrow(\"mismatched begin/end of activeSweep\")\n \t\t}\n \t\tif a.state.CompareAndSwap(state, state-1) {\n-\t\t\tif state != sweepDrainedMask {\n+\t\t\tif state-1 != sweepDrainedMask {\n \...
2025-05-07T22:28:23
electron/electron
905e41bbddd72f4d19c294b430d1a7c282e22a5d
3e3152008ff569632e0b36d53ac9a24fae515709
fix: use StartUpdating method for PipeWire capturer (#38833) * fix: use StartUpdating method for PipeWire capturer Fixed a crash related to PipeWire capturer by adapting to Chromium's interface changes. Chromium expects a call to `NativeDesktopMediaList::StartUpdating` with an implementation of `DesktopMediaList...
[ { "path": "patches/chromium/desktop_media_list.patch", "patch": "@@ -82,7 +82,7 @@ index 33ca7a53dfb6d2c9e3a33f0065a3acd806e82e01..9fdf2e8ff0056ff407015b914c6b03eb\n const Source& GetSource(int index) const override;\n DesktopMediaList::Type GetMediaListType() const override;\n diff --git a/chrome/bro...
2023-07-11T08:21:11
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
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
509c11f3a39aeb627cc16dc9ffcad45fc457c5ec
d000963d045bb279d347dbd3551e9468422c17af
crypto,crypto/x509: implement MessageSigner And use it in crypto/x509. This allows people to implement single-shot signers which do the hashing themselves. Fixes #63405 Change-Id: I038c2e10f77b050b6136c4c0a5b031cb416f59aa Reviewed-on: https://go-review.googlesource.com/c/go/+/654375 Reviewed-by: Filippo Valsorda <fi...
[ { "path": "api/next/63405.txt", "patch": "@@ -0,0 +1,5 @@\n+pkg crypto, func SignMessage(Signer, io.Reader, []uint8, SignerOpts) ([]uint8, error) #63405\n+pkg crypto, type MessageSigner interface { Public, Sign, SignMessage } #63405\n+pkg crypto, type MessageSigner interface, Public() PublicKey #63405\n+pkg...
2025-03-03T20:31:55
electron/electron
3e3152008ff569632e0b36d53ac9a24fae515709
f3f3f5390423207bd2d26e398a565bf2f13dc759
fix: remove types from GTK CSS selectors (#39003) Remove types from GTK CSS selectors similar to Chromium's changes in CL 4289229. Fixes #38786 Co-authored-by: Athul Iddya <athul@iddya.com>
[ { "path": "shell/browser/ui/views/client_frame_view_linux.cc", "patch": "@@ -309,13 +309,13 @@ void ClientFrameViewLinux::PaintAsActiveChanged() {\n \n void ClientFrameViewLinux::UpdateThemeValues() {\n gtk::GtkCssContext window_context =\n- gtk::AppendCssNodeToStyleContext({}, \"GtkWindow#window.bac...
2023-07-10T20:52:12
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
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
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
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
d000963d045bb279d347dbd3551e9468422c17af
5a1f47a7f716ce0dbd88128d18ce556dd9280c68
cmd/internal/obj/riscv: reject invalid vadc/vsbc encodings The RISC-V Instruction Set Manual Volume states that "for vadc and vsbc, the instruction encoding is reserved if the destination vector register is v0". The assembler currently allows instructions like VADCVVM V1, V2, V0, V0 to be assembled. It's not clear w...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64.s", "patch": "@@ -623,17 +623,27 @@ start:\n \tVADCVXM\t\tX11, V2, V0, V3\t\t\t// d7c12540\n \tVADCVIM\t\t$15, V2, V0, V3\t\t\t// d7b12740\n \tVMADCVVM\tV1, V2, V0, V3\t\t\t// d7812044\n+\tVMADCVVM\tV1, V2, V0, V0\t\t\t// 57802044\n \tVMADCVXM\tX11, V2, V...
2025-05-01T08:43:32
electron/electron
117a700724074dfc62649e3e561ff284f07e7cae
c7bdd907d7e1fdcb7741de02f5ca23d47a436437
fix: printing optional access crash on Windows (#38976)
[ { "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-07-10T13:26:29
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
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
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
golang/go
5a1f47a7f716ce0dbd88128d18ce556dd9280c68
d13da63929df73ab506314f35524ebb9b0f8a216
cmd/internal/obj/riscv: fix LMUL encoding for MF2 and MF8 The encodings for the riscv64 special operands SPOP_MF2 and SPOP_MF8 are incorrect, i.e., their values are swapped. This leads to incorrect encodings for the VSETVLI and VSETIVLI instructions. The assembler currently encodes VSETVLI X10, E32, MF8, TA, MA, X1...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64.s", "patch": "@@ -438,9 +438,9 @@ start:\n \tVSETVLI\tX10, E32, M2, TA, MA, X12\t\t// 5776150d\n \tVSETVLI\tX10, E32, M4, TA, MA, X12\t\t// 5776250d\n \tVSETVLI\tX10, E32, M8, TA, MA, X12\t\t// 5776350d\n-\tVSETVLI\tX10, E32, MF2, TA, MA, X12\t\t// 577655...
2025-05-06T11:02:34
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
electron/electron
c7bdd907d7e1fdcb7741de02f5ca23d47a436437
56b5c003122562066971c4fb44ab933563bb10db
fix: set prototype names on `gin::Constructible` classes (#39006) * fix: set prototype names on gin::Constructible classes * test: add tests
[ { "path": "shell/browser/api/electron_api_browser_view.cc", "patch": "@@ -198,7 +198,7 @@ v8::Local<v8::Value> BrowserView::GetWebContents(v8::Isolate* isolate) {\n // static\n void BrowserView::FillObjectTemplate(v8::Isolate* isolate,\n v8::Local<v8::ObjectTemplate> tem...
2023-07-10T09:49:20
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
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
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