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
vercel/next.js
541902e380dbe79cfa3fa16b0faf31e1df02dc3c
e5c1dff8262b4d7dcef5bda0af9d9171196457bd
Ensure setAssetPrefix updates config instance (#82160) This ensures we update `nextConfig.assetPrefix` instead of `renderOpts` as we aren't relying on `renderOpts` for these values anymore. Closes: https://github.com/vercel/next.js/issues/82150
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -1652,7 +1652,7 @@ export default abstract class Server<\n ): Promise<void>\n \n public setAssetPrefix(prefix?: string): void {\n- this.renderOpts.assetPrefix = prefix ? prefix.replace(/\\/$/, '') : ''\n+ this.nextConfig.assetPrefix...
2025-07-29T17:12:49
nodejs/node
c00ea01f2bbee0427d38ba4573dae310394f42fe
b39fad6052b17b5c211c675111da0a6846134c3a
buffer: allow invalid encoding in from Looks like a bug to me but the change should probably done in a semver majpr. PR-URL: https://github.com/nodejs/node/pull/54533 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yueson...
[ { "path": "lib/buffer.js", "patch": "@@ -476,7 +476,7 @@ function createFromString(string, ops, length = ops.byteLength(string)) {\n \n function fromString(string, encoding) {\n let ops;\n- if (!encoding || encoding === 'utf8') {\n+ if (!encoding || encoding === 'utf8' || typeof encoding !== 'string') {...
2024-08-27T04:01:30
rust-lang/rust
4c10efb939ee78bb10a2b8833746c554478d64f9
47611e16044c68ef27bac31c35fda2ba1dc20b73
Replace "bug" with "issue" in triagebot ping messages
[ { "path": "triagebot.toml", "patch": "@@ -76,9 +76,9 @@ add-labels = [\"beta-nominated\"]\n \n [ping.windows]\n message = \"\"\"\\\n-Hey Windows Group! This bug has been identified as a good \"Windows candidate\".\n+Hey Windows Group! This issue has been identified as a good \"Windows candidate\".\n In case...
2026-02-13T06:55:58
facebook/react
d31e10b406163928589649466a3b0f76ae45c5cc
4bc676d3dbd78f5c4c3f9be7f86c3b084a268ac9
Fix for type aliases in function inferring as function deps
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -3982,6 +3982,18 @@ function gatherCapturedDeps(\n }\n \n fn.traverse({\n+ TypeAnnotation(path) {\n+ path.skip();\n+ },\n+ TSTypeAnnotation(path) {\n+ path.skip();\n+ },\n+ TypeAlias(path) ...
2024-03-21T21:11:05
golang/go
e513cd4e409f1d42df02a42b43eceb87473b229a
e666f1dabf5174710919ab7cff3e8afefd9ac049
net/http: add missing ServeTLS on the comment of http.Server.Shutdown A sentinel error http.ErrServerClosed is returned after Server.Shutdown and Server.Close but it is not documented on the Server.Shutdown while other methods such as Server.Serve are documented on it. Change-Id: Id82886d9d6a1474a514d62e9169b35f3579a...
[ { "path": "src/net/http/server.go", "patch": "@@ -3154,7 +3154,7 @@ const shutdownPollIntervalMax = 500 * time.Millisecond\n // Shutdown returns the context's error, otherwise it returns any\n // error returned from closing the [Server]'s underlying Listener(s).\n //\n-// When Shutdown is called, [Serve], [...
2025-05-10T23:43:40
electron/electron
cf658b700d6108847ce62e5e4779bec298ce2d12
08bbff5361defb863409efbdbb16479e93f5981f
fix: use nested run loop in clipboard.readImage (#39466)
[ { "path": "shell/common/api/electron_api_clipboard.cc", "patch": "@@ -9,6 +9,7 @@\n #include \"base/containers/contains.h\"\n #include \"base/run_loop.h\"\n #include \"base/strings/utf_string_conversions.h\"\n+#include \"shell/browser/browser.h\"\n #include \"shell/common/gin_converters/image_converter.h\"\...
2023-08-14T08:35:37
vercel/next.js
5321ba84c30aac57c55e39ed13b2f6356db20cd7
c9e5069ee1924b3ddd2282b065e64092751e1b88
[segment explorer] normalize path when running inside monorepo (#82146) When you running `pnpm next <project path>` from the monorepo root with turbopack and the `<project path>` is not same as your root directory, this lead the unrelated paths outside of the next.js project are also included into the segment explorer...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -4145,9 +4145,9 @@ const getGlobalErrorStyles = async (\n }\n if (ctx.renderOpts.dev) {\n const dir =\n- process.env.NEXT_RUNTIME === 'edge'\n- ? process.env.__NEXT_EDGE_PROJECT_DIR!\n- : ctx.renderOpts.d...
2025-07-29T16:13:31
nodejs/node
4f1c27af8c09c45ac7dcb7c48146aa9392cebde8
4ce986468c98098ddf08b34570c949c0d089e344
src: handle errors correctly in webstorage PR-URL: https://github.com/nodejs/node/pull/54544 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
[ { "path": "src/node_webstorage.cc", "patch": "@@ -24,12 +24,16 @@ using v8::IndexedPropertyHandlerConfiguration;\n using v8::Integer;\n using v8::Intercepted;\n using v8::Isolate;\n+using v8::JustVoid;\n using v8::Local;\n using v8::Map;\n using v8::Maybe;\n using v8::MaybeLocal;\n using v8::Name;\n using v...
2024-08-26T17:20:09
facebook/react
4bc676d3dbd78f5c4c3f9be7f86c3b084a268ac9
241b35463c662a9da230b511dc161fd9aa943634
Repro for undefined "hoisted" variable from type alias We inadvertently think the type annotation on the function expression param is an identifier and create a LoadLocal for it, which fails. This happens to trip up on the InferReferenceEffects initialization check, which we had assumed would only fire for invalid...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.type-alias-used-as-annotation_.flow.expect.md", "patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+// @flow @enableAssumeHooksFollowRulesOfReact @enableTransitivelyFreezeFunctionExpressions\n+type Bar = s...
2024-03-21T21:11:04
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
c9e5069ee1924b3ddd2282b065e64092751e1b88
8d937e712bccf79fe25a7c7aad05d39bf81b3c45
Fix i18n fallback: false collision (#82136) This fixes a case with i18n in pages router with deeply nested mixed `fallback: false` and `fallback: 'blocking'` routes where the internal `NoFallbackError` would be bubbled outside of the server handler causing the invariant to leak instead of rendering the 404 page like e...
[ { "path": "packages/next/src/server/lib/i18n-provider.ts", "patch": "@@ -118,8 +118,8 @@ export class I18NProvider {\n // query and strip it from the pathname.\n if (analysis.detectedLocale) {\n if (analysis.detectedLocale !== detectedLocale) {\n- throw new Error(\n- ...
2025-07-29T15:54:13
nodejs/node
4ce986468c98098ddf08b34570c949c0d089e344
eab97b54d4bc7d7a15d26a40cc2c66f032972954
src: handle errors correctly in `permission.cc` Return an empty `MaybeLocal` to indicate that an exception is pending. PR-URL: https://github.com/nodejs/node/pull/54541 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>...
[ { "path": "src/permission/permission.cc", "patch": "@@ -18,6 +18,8 @@ namespace node {\n using v8::Context;\n using v8::FunctionCallbackInfo;\n using v8::Local;\n+using v8::MaybeLocal;\n+using v8::NewStringType;\n using v8::Object;\n using v8::String;\n using v8::Value;\n@@ -105,46 +107,43 @@ Permission::Pe...
2024-08-24T14:45:11
facebook/react
241b35463c662a9da230b511dc161fd9aa943634
1cf8d9bc8b8ce905ce55043707fffb0b0c504e4f
Fix PruneMaybeThrows to update phi operand predecessor ids When PruneMaybeThrows removes maybe-throw terminals, it's possible that the block in question reassigned a value s.t. it appears as a later phi operand. That phi has to be rewritten to reflect the updated predecessor block. Here we track these rewrites (t...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Optimization/PruneMaybeThrows.ts", "patch": "@@ -5,7 +5,10 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+import { CompilerError } from \"..\";\n import {\n+ BlockId,\n+ GeneratedSource,\n GotoVariant,\n HIRFunction...
2024-03-21T21:11:04
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
vercel/next.js
9484919a6278d03174cf3f675711e6e3afc0f487
0bcb25fcdb331320806361d568813c74cc1b5718
[CacheComponents] Use fallback params when validating dynamic routes in dev (#82069) When validating a dynamic route in dev with Cache Components we must not use more params than would be know at build time because we want to ensure dev acts as an appropriate debug environment for build validation issues. Any time a v...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -195,6 +195,7 @@ import {\n import { isReactLargeShellError } from './react-large-shell-error'\n import type { GlobalErrorComponent } from '../../client/components/builtin/global-error'\n import { normalizeConventionFilePath } from...
2025-07-28T23:13:20
nodejs/node
eab97b54d4bc7d7a15d26a40cc2c66f032972954
8f1fa03c130828d7ccb6e445274653496c94edd7
src: return `v8::Object` from error constructors It's more specific than `v8::Value`. PR-URL: https://github.com/nodejs/node/pull/54541 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Mohammed Keyvanzade...
[ { "path": "src/node_errors.h", "patch": "@@ -113,7 +113,7 @@ void OOMErrorHandler(const char* location, const v8::OOMDetails& details);\n \n #define V(code, type) \\\n template <typename... Args> \\\n...
2024-08-24T14:33:04
facebook/react
72e02a8350309c6228ec1d9f21a5b09b84456fb8
c47fee55d9886b2d9746a4b71c48bbd8b8ac9d3a
[Flight Reply] Don't allow Symbols to be passed to a reply (#28610) As mentioned in #28609 there's a potential security risk if you allow a passed value to the server to spoof Elements because it allows a hacker to POST cross origin. This is only an issue if your framework allows this which it shouldn't but it seem...
[ { "path": "packages/react-client/src/ReactFlightReplyClient.js", "patch": "@@ -105,10 +105,6 @@ function serializeTemporaryReferenceID(id: number): string {\n return '$T' + id.toString(16);\n }\n \n-function serializeSymbolReference(name: string): string {\n- return '$S' + name;\n-}\n-\n function seriali...
2024-03-21T20:53:02
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
vercel/next.js
0bcb25fcdb331320806361d568813c74cc1b5718
08cdc9ad5a9bf678cb2e40d48a891de0d0522c4f
[turbopack] Improve our `const` compatible hash routine performance (#82088) The explicit operators can apparently not be folded by the compiler. This is the const compatible way to take a slice and convert a slice to an array... sigh. https://godbolt.org/z/Wedn7hWvb shows the 3 possible implementations. The `std`...
[ { "path": "turbopack/crates/turbo-rcstr/src/dynamic.rs", "patch": "@@ -172,24 +172,31 @@ const fn multiply_mix(x: u64, y: u64) -> u64 {\n }\n }\n \n-// Const compatible helper function to read a u64 from a byte array at a given offset\n-const fn read_u64_le(bytes: &[u8], offset: usize) -> u64 {\n- (b...
2025-07-28T22:23:43
electron/electron
f16dffccd01f5d65f55d8ab464cdd167f5b326e1
255064659fb22d144c72fe79eb31c0a13c846bd6
ci: fixup known hosts for linux publish (#39437) * ci: fixup known hosts for linux publish * build: use 2023 known hosts * build: use rebuilt docker image * Revert "build: use rebuilt docker image" This reverts commit f9506a9cc04c1fa2ecf26436372f1bb2a44937a5. --------- Co-authored-by: Samuel Attard <...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -1568,6 +1568,7 @@ commands:\n - *step-minimize-workspace-size-from-checkout\n - *step-fix-sync\n - *step-setup-env-for-build\n+ - *step-fix-known-hosts-linux\n - *step-setup-goma-for-build\n - *step-wait-for-goma\n...
2023-08-10T16:40:58
nodejs/node
8f1fa03c130828d7ccb6e445274653496c94edd7
05bd3cfc73c0200a905d78c62a80edd85ba879e1
src: use better return types in KVStore - Use `v8::Maybe<void>` instead of `v8::Maybe<bool>` and handle error from `AssignFromObject`. - An empty `v8::Maybe` is supposed to be returned when an exception is pending. Use `std::optional` instead to indicate a missing value in `Get(key)`. PR-URL: https://github.com...
[ { "path": "src/inspector_profiler.cc", "patch": "@@ -472,7 +472,7 @@ void StartProfilers(Environment* env) {\n }, env);\n \n std::string coverage_str =\n- env->env_vars()->Get(\"NODE_V8_COVERAGE\").FromMaybe(std::string());\n+ env->env_vars()->Get(\"NODE_V8_COVERAGE\").value_or(std::string());...
2024-08-24T12:51:26
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
vercel/next.js
08cdc9ad5a9bf678cb2e40d48a891de0d0522c4f
c49b7b11e85d64e5cefa79dc3372437fab451e4f
[turbopack] Documentation fixes for rcstr! and a tiny improvement to `hash` (#82084) Fix safety comment and hash implementation in turbo-rcstr Noticed this while porting https://github.com/vercel/next.js/pull/81994 to swc
[ { "path": "turbopack/crates/turbo-rcstr/src/dynamic.rs", "patch": "@@ -93,7 +93,7 @@ pub(crate) fn new_static_atom(string: &'static PrehashedString) -> RcStr {\n // Tag it as a static pointer\n entry = ((entry as usize) | STATIC_TAG as usize) as *mut PrehashedString;\n let ptr: NonNull<Prehashed...
2025-07-28T22:19:04
nodejs/node
05bd3cfc73c0200a905d78c62a80edd85ba879e1
c6a72f2de44936aa3c5d8420c1758180e7fae1c2
test: force spec reporter in test-runner-watch-mode.mjs In the CI this test generates TAP output that can confuse the Python test runner. Avoid the problem by not outputting TAP at from the spawned child process. Fixes: https://github.com/nodejs/node/issues/54535 PR-URL: https://github.com/nodejs/node/pull/54538 Revi...
[ { "path": "test/parallel/test-runner-watch-mode.mjs", "patch": "@@ -41,7 +41,8 @@ async function testWatch({ fileToUpdate, file, action = 'update' }) {\n const ran1 = util.createDeferredPromise();\n const ran2 = util.createDeferredPromise();\n const child = spawn(process.execPath,\n- ...
2024-08-26T12:39:36
electron/electron
1ce2fdd63d2cff52adbc18fdef6830a0f31e765f
c4d417b6f69624828b4a109312aa718c7b54c238
docs: fix take-screenshot fiddle to use desktopCapturer in main.js (#39420)
[ { "path": "docs/fiddles/media/screenshot/take-screenshot/main.js", "patch": "@@ -1,11 +1,15 @@\n-const { BrowserWindow, app, screen, ipcMain } = require('electron')\n+const { BrowserWindow, app, screen, ipcMain, desktopCapturer } = require('electron')\n \n let mainWindow = null\n \n ipcMain.handle('get-scre...
2023-08-10T08:53:23
facebook/react
c47fee55d9886b2d9746a4b71c48bbd8b8ac9d3a
7263b4f80a52036060257cc9a0e388351a05f231
[Fizz][Legacy] use static markup mode for renderToStaticNodeStream (#28606) Since it was first implemented renderToStaticNodeStream never correctly set the renderer state to mark the output as static markup which means it was functionally the same as renderToNodeStream. This change fixes this oversight. While we ar...
[ { "path": "packages/react-dom/src/__tests__/ReactServerRendering-test.js", "patch": "@@ -609,6 +609,41 @@ describe('ReactDOMServer', () => {\n expect(response.read()).toBeNull();\n });\n });\n+\n+ it('should refer users to new apis when using suspense', async () => {\n+ let resolve...
2024-03-21T18:03:09
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
43f699d4d2799cfc17cbcad5770e1889075d5dbe
52322aa42a43cb820432946e7997d070de078a10
benchmark: fix benchmark for file path and URL conversion PR-URL: https://github.com/nodejs/node/pull/54190 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "benchmark/url/whatwg-url-to-and-from-path.js", "patch": "@@ -3,28 +3,46 @@ const common = require('../common.js');\n const { fileURLToPath, pathToFileURL } = require('node:url');\n const isWindows = process.platform === 'win32';\n \n-const bench = common.createBenchmark(main, {\n- input: isWindo...
2024-08-25T13:41:13
vercel/next.js
c49b7b11e85d64e5cefa79dc3372437fab451e4f
5c25087d57a919f3eb363f21cf4235918fd76167
fix(next/image): improve and simplify detect-content-type (#82118) Add support for detecting more src image formats via magic number. The src image formats are handled as follows: - `image/jxl` - serve as is (since safari can render it) - `image/heic` - serve as is (since safari can render it) - `image/jp2` - serve a...
[ { "path": "packages/next/src/server/image-optimizer.ts", "patch": "@@ -36,15 +36,19 @@ const AVIF = 'image/avif'\n const WEBP = 'image/webp'\n const PNG = 'image/png'\n const JPEG = 'image/jpeg'\n+const JXL = 'image/jxl'\n+const JP2 = 'image/jp2'\n+const HEIC = 'image/heic'\n const GIF = 'image/gif'\n const...
2025-07-28T20:20:55
electron/electron
a0effaf9b85b8efbec819d3d5a18851a3a9a3e5c
d9329042e2cb68db888d4acf36a87da5ab6e99d2
fix: promise resolved to early when browser initiated in-page navigation (#39260)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -446,6 +446,7 @@ WebContents.prototype.loadURL = function (url, options) {\n };\n \n let navigationStarted = false;\n+ let browserInitiatedInPageNavigation = false;\n const navigationListener = (event: Electron.Event, url: string, isSa...
2023-08-09T14:06:39
facebook/react
1cf8d9bc8b8ce905ce55043707fffb0b0c504e4f
14d54869ed934d20912fd65f12017a2b03d71008
Repro for missing predecessor with try/catch Found when running the compiler on a large swath of internal code. PruneMaybeThrows rewrites terminals, but the logic to update subsequent phis was incorrectly dropping phis rather than rewriting them. Fixed in the next PR.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.repro-preds-undefined.expect.md", "patch": "@@ -0,0 +1,28 @@\n+\n+## Input\n+\n+```javascript\n+// @enableAssumeHooksFollowRulesOfReact @enableTransitivelyFreezeFunctionExpressions\n+function useSupportsTouchEvent()...
2024-03-20T21:07:28
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
nodejs/node
52322aa42a43cb820432946e7997d070de078a10
7fea0108d57224c9aafbdf7c72d31f4b9da95c43
net: validate host name for server listen Fixes: https://github.com/nodejs/node/issues/54441 Co-authored-by: Luigi Pinca <luigipinca@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54470 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jake Yueso...
[ { "path": "lib/net.js", "patch": "@@ -35,6 +35,8 @@ const {\n NumberParseInt,\n ObjectDefineProperty,\n ObjectSetPrototypeOf,\n+ RegExp,\n+ RegExpPrototypeExec,\n Symbol,\n SymbolAsyncDispose,\n SymbolDispose,\n@@ -143,6 +145,8 @@ const { kTimeout } = require('internal/timers');\n const DEFAUL...
2024-08-25T12:36:40
vercel/next.js
5c25087d57a919f3eb363f21cf4235918fd76167
92d1f0d915b4ea2f97dcace7133f1eaacc3db616
Fix validateRSCRequestHeaders incorrect redirect (#82119) Found during dogfooding on Vercel that sometimes the RSC validation fails incorrectly. The root cause was that headers like `Next-Router-Prefetch` were absent from the header and transferred to request meta. Eventually we should improve how we retrieve these fi...
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -2013,9 +2013,18 @@ export default abstract class Server<\n isRSCRequest\n ) {\n const headers = req.headers\n+\n+ const isPrefetchRSCRequest =\n+ headers[NEXT_ROUTER_PREFETCH_HEADER.toLowerCase()] ||\n+ get...
2025-07-28T19:18:20
electron/electron
d9329042e2cb68db888d4acf36a87da5ab6e99d2
0425454687715f89a1a13f0b84a9b13fbd9bc722
feat: add support for `chrome.tabs.query` (#39330) * feat: add support for tabs.query * fix: scope to webContents in current session * test: add test for session behavior
[ { "path": "docs/api/extensions.md", "patch": "@@ -91,8 +91,9 @@ The following events of `chrome.runtime` are supported:\n \n ### `chrome.storage`\n \n-Only `chrome.storage.local` is supported; `chrome.storage.sync` and\n-`chrome.storage.managed` are not.\n+The following methods of `chrome.storage` are suppo...
2023-08-09T12:47:19
facebook/react
14d54869ed934d20912fd65f12017a2b03d71008
4daa4eceb7577918fb07eea8b03dcd70cfa84e81
[patch][codegen] don't reuse babel nodes in codegen for dependencies --- Reusing optionalMemberExpression nodes recently led to a bug when compiling Forget playground. ```js // the two a?.b's here should be different nodes! if (a?.b !== $[0]) { // ... $[0] = a?.b; } ``` Forget playground uses `babe...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -370,7 +370,6 @@ function codegenReactiveScope(\n const outputComments: Array<string> = [];\n for (const dep of scope.dependencies) {\n const index = cx.nextCacheIndex;\n- const dep...
2024-03-20T23:29:02
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
nodejs/node
7fea0108d57224c9aafbdf7c72d31f4b9da95c43
c3fe2d60bdda943d5fcb96fe0df80f99c82f584b
sqlite: return results with null prototype These objects are dictionaries, and a query can return columns with special names like `__proto__` (which would be ignored without this change). Also construct the object by passing vectors of properties for better performance and improve error handling by using `MaybeLocal`...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -25,6 +25,10 @@ using v8::FunctionTemplate;\n using v8::Integer;\n using v8::Isolate;\n using v8::Local;\n+using v8::LocalVector;\n+using v8::MaybeLocal;\n+using v8::Name;\n+using v8::Null;\n using v8::Number;\n using v8::Object;\n using v8::String;\n@@ -405,7 +4...
2024-08-25T10:43:17
vercel/next.js
6b12c60c61ee80cb0443ccd20de82ca9b4422ddd
742a2c78dfe7c90f1dccc3608933b28e64cd0249
fix(next/image): fix image-optimizer.ts headers (#82114) The headers were forwarded to the serverless function for "internal" images but not "external" images. This changes the behavior to be the same for both such that neither receive headers.
[ { "path": "packages/next/src/server/image-optimizer.ts", "patch": "@@ -634,7 +634,6 @@ export async function fetchInternalImage(\n const mocked = createRequestResponseMocks({\n url: href,\n method: _req.method || 'GET',\n- headers: _req.headers,\n socket: _req.socket,\n })\n "...
2025-07-28T13:06:33
facebook/react
4daa4eceb7577918fb07eea8b03dcd70cfa84e81
63bb781781ef1b4b08ee169b43f08dece4232a39
[validation] More detailed error diagnostics for validatePreserveExistingMemo --- This should make it easier to grep through error diagnostics to understand state of the codebase: - no matching dependences -> likely that source is ignoring eslint failures - differences in ref.current access -> non-backwards co...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidatePreservedManualMemoization.ts", "patch": "@@ -102,10 +102,41 @@ function prettyPrintScopeDependency(val: ReactiveScopeDependency): string {\n return `${rootStr}${val.path.length > 0 ? \".\" : \"\"}${val.path.join(\".\")}`;\n }\n...
2024-03-20T20:05:24
electron/electron
d24d8f1f78f6843f3983613ab833be78dcf686f2
ab08803959f363cc4f23435d263baaab95529ea7
fix: avoid package.json check on built-in modules (#39418)
[ { "path": "patches/node/fix_do_not_resolve_electron_entrypoints.patch", "patch": "@@ -6,19 +6,42 @@ Subject: fix: do not resolve electron entrypoints\n This wastes fs cycles and can result in strange behavior if this path actually exists on disk\n \n diff --git a/lib/internal/modules/run_main.js b/lib/inter...
2023-08-09T07:32:00
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
nodejs/node
6d654ddd0065b75a8b1173f71fcc5a1005a98208
4e68b541fd7ccd9fe1328d5b4dc93a3689aa505d
timers: fix validation PR-URL: https://github.com/nodejs/node/pull/54404 Reviewed-By: Claudio Wunder <cwunder@gnome.org>
[ { "path": "doc/api/timers.md", "patch": "@@ -532,9 +532,8 @@ added:\n An experimental API defined by the [Scheduling APIs][] draft specification\n being developed as a standard Web Platform API.\n \n-Calling `timersPromises.scheduler.wait(delay, options)` is roughly equivalent\n-to calling `timersPromises.s...
2024-08-25T07:30:10
rust-lang/rust
7d7b3816607c3f0c5afd4562bb3efca8b6eea777
47611e16044c68ef27bac31c35fda2ba1dc20b73
Fix ICE in borrowck when recovering `fn_sig` for `-> _`
[ { "path": "compiler/rustc_hir_analysis/src/collect.rs", "patch": "@@ -1138,13 +1138,65 @@ fn recover_infer_ret_ty<'tcx>(\n );\n }\n let guar = diag.emit();\n- ty::Binder::dummy(tcx.mk_fn_sig(\n+\n+ // If we return a dummy binder here, we can ICE later in borrowck when it encounters\n+ ...
2026-02-08T07:42:28
vercel/next.js
29ae22be86bfb2a13bc5c3f5a3d0348398615657
14c5d673283d19a92186459d6cfec332e19bf2d8
fix(Rspack): use loaderContext.utils.contextify to replace ModuleFilenameHelpers.createFilename (#82104) Co-authored-by: Sebastian Sebbie Silbermann <sebastian.silbermann@vercel.com>
[ { "path": "packages/next/src/build/webpack/loaders/next-flight-loader/index.ts", "patch": "@@ -1,8 +1,9 @@\n-import type {\n- javascript,\n- LoaderContext,\n- NormalModule,\n- webpack,\n+import {\n+ ModuleFilenameHelpers,\n+ type javascript,\n+ type LoaderContext,\n+ type NormalModule,\n+ type webp...
2025-07-28T11:23:12
facebook/react
a4939017ffe2e04a94efca0f48b661bc778a6fa4
8ef14cf24219addedca3607dabb3bef37fb2e013
Concurrent RTR in ReactHooksInspectionIntegration-test (#28549) More test updates to use concurrent root in RTR `yarn test packages/react-debug-tools/src/__tests__/ReactHooksInspectionIntegration-test.js`
[ { "path": "packages/react-debug-tools/src/__tests__/ReactHooksInspectionIntegration-test.js", "patch": "@@ -51,7 +51,12 @@ describe('ReactHooksInspectionIntegration', () => {\n </div>\n );\n }\n- const renderer = ReactTestRenderer.create(<Foo prop=\"prop\" />);\n+ let renderer;\n+ ...
2024-03-20T15:15:32
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
nodejs/node
4e68b541fd7ccd9fe1328d5b4dc93a3689aa505d
c062b5242a7d3f91f7aed77dcfc90b7fc3a372aa
test: fix improper path to URL conversion PR-URL: https://github.com/nodejs/node/pull/54509 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/fixtures/permission/fs-read.js", "patch": "@@ -5,10 +5,11 @@ const common = require('../../common');\n const assert = require('assert');\n const fs = require('fs');\n const path = require('path');\n+const { pathToFileURL } = require('url');\n \n const blockedFile = process.env.BLOCKEDFILE;\n...
2024-08-24T20:10:11
electron/electron
ab08803959f363cc4f23435d263baaab95529ea7
5e59ddca1ab75e6092737b4bcd09c099eb25fd85
chore: bump node to v18.17.0 (main) (#39154) * chore: bump node in DEPS to v18.17.0 * chore: update build_modify_js2c_py_to_allow_injection_of_original-fs_and_custom_embedder_js.patch Xref: https://github.com/nodejs/node/pull/46930 manually sync patch to minor upstream code shear * chore: update build_ensu...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '117.0.5921.0',\n 'node_version':\n- 'v18.16.1',\n+ 'v18.17.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2023-08-08T22:52:51
vercel/next.js
14c5d673283d19a92186459d6cfec332e19bf2d8
c081cf7c88c25bc581e5e67baf31c9afce2b31de
docs: Update styling example links (#82111) Fixes: https://github.com/vercel/next.js/issues/82098
[ { "path": "docs/01-app/02-guides/css-in-js.mdx", "patch": "@@ -126,7 +126,7 @@ export default function RootLayout({ children }) {\n }\n ```\n \n-[View an example here](https://github.com/vercel/app-playground/tree/main/app/styling/styled-jsx).\n+[View an example here](https://github.com/vercel/next.js/tree/...
2025-07-28T11:00:04
facebook/react
29a6ca33a548ba372942dd5f0ae1c777e405610b
82c6595e758679adf518e69794ba8d11b97a6bd1
Update gate pragma to detect global error events (#28591) If a global error event is dispatched during a test, Jest reports that test as a failure. Our `@gate` pragma feature should account for this — if the gate condition is false, and the global error event is dispatched, then the test should be reported as a ...
[ { "path": "scripts/babel/__tests__/transform-test-gate-pragma-test.js", "patch": "@@ -203,6 +203,15 @@ describe('transform test-gate-pragma: actual runtime', () => {\n console.error('Stop that!');\n throw Error('I told you to stop!');\n });\n+\n+ // @gate false\n+ test('a global error event is t...
2024-03-20T01:08:37
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
electron/electron
dcf1c65426a88d55a626ace08b00f2b9a631d10f
24c9cbcc0a6feaf45de70233a75fb7c2bdc69149
chore: fix ipcRenderer.sendTo deprecation warning (#39342)
[ { "path": "lib/renderer/api/ipc-renderer.ts", "patch": "@@ -18,8 +18,9 @@ ipcRenderer.sendToHost = function (channel, ...args) {\n return ipc.sendToHost(channel, args);\n };\n \n+const sendToDeprecated = deprecate.warnOnce('ipcRenderer.sendTo');\n ipcRenderer.sendTo = function (webContentsId, channel, ......
2023-08-08T11:49:56
rust-lang/rust
e098327271327f86fb6aac22e64136f4a3268d31
bb8b30a5fce59f5d3d17a8f010601c59f0f19d79
Don't ICE on layout error in vtable computation
[ { "path": "compiler/rustc_middle/src/ty/vtable.rs", "patch": "@@ -99,9 +99,10 @@ pub(super) fn vtable_allocation_provider<'tcx>(\n // This confirms that the layout computation for &dyn Trait has an accurate sizing.\n assert!(vtable_entries.len() >= vtable_min_entries(tcx, poly_trait_ref));\n \n- ...
2026-02-10T14:10:04
nodejs/node
c062b5242a7d3f91f7aed77dcfc90b7fc3a372aa
6dce10ff77f9e9a53adf95f027f60fadcef47ce7
src: use correct way to signal interceptor error PR-URL: https://github.com/nodejs/node/pull/54418 Refs: https://github.com/nodejs/node/blob/e4f61de14f8cfb83f1ce0ad1597b86278cd5f5f1/deps/v8/include/v8-function-callback.h#L398-L408 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Cheng Zhao <zcbenz@g...
[ { "path": "src/node_webstorage.cc", "patch": "@@ -572,8 +572,8 @@ static Intercepted StorageSetter(Local<Name> property,\n Storage* storage;\n ASSIGN_OR_RETURN_UNWRAP(&storage, info.This(), Intercepted::kNo);\n \n- if (storage->Store(property, value)) {\n- info.GetReturnValue().Set(value);\n+ if (!...
2024-08-24T17:09:39
facebook/react
346f6c13a838a3c99dac3a3c01d67f32da28e366
f2b0b656b255fbf9efaf12c316988ff8a34332a2
Todo for fbt with multiple fbt:enum I need to do more debugging to figure out exactly why the example earlier fails — but whatever it is, it's clearly a matter of the fbt plugin relying on some specifics of source locations. Here we just detect multiple instances of `<fbt:enum>` within a given `<fbt>` tag and th...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -2058,6 +2058,25 @@ function lowerExpression(\n suggestions: null,\n });\n }\n+ const fbtEnumLocations: Array<SourceLocation> = [];\n+ expr.traverse({\n+ JSXNamespac...
2024-03-19T23:39:05
vercel/next.js
0464eae4c948308289a333ea2e11ea4be546901a
34233054b3812af90bda47be62b02d3f42b8cab3
Revert "Upgrade vercel og and remove yoga type patching (#81937)" (#82066) This reverts commit 89a8b65341af7652ea781fab35a0381ccd4daa57. x-ref: https://github.com/vercel/next.js/actions/runs/16532118100/job/46759737328#step:33:329 This is causing issues when deployed ```sh [warning] Aborted(CompileError: WebAsse...
[ { "path": "package.json", "patch": "@@ -146,7 +146,7 @@\n \"@typescript-eslint/parser\": \"^8.36.0\",\n \"@vercel/devlow-bench\": \"workspace:*\",\n \"@vercel/fetch\": \"6.1.1\",\n- \"@vercel/og\": \"0.8.5\",\n+ \"@vercel/og\": \"0.7.2\",\n \"abort-controller\": \"3.0.0\",\n \"alex...
2025-07-25T23:41:42
nodejs/node
e272cfbf05adc8d8687aad9ede5660ab99b360c6
bec3425d0c38545506e7f18491ceefb518b656d2
build: don't clean obj.target directory if it doesn't exist This can happen to ninja builds, which would then throw an error instead of being a noop if the command is executed. PR-URL: https://github.com/nodejs/node/pull/54337 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.c...
[ { "path": "Makefile", "patch": "@@ -241,8 +241,10 @@ coverage-clean:\n \t$(RM) -r node_modules\n \t$(RM) -r gcovr\n \t$(RM) -r coverage/tmp\n-\t$(FIND) out/$(BUILDTYPE)/obj.target \\( -name \"*.gcda\" -o -name \"*.gcno\" \\) \\\n-\t\t-type f -exec $(RM) {} \\;\n+\t@if [ -d \"out/Release/obj.target\" ]; then...
2024-08-24T14:17:44
electron/electron
eecfaec8c94b2490cff8ae09219d3c16ec2b4c88
8f4f82618c51029f91cfb6516bc9c75164bfee9a
fix: crash when closing active macOS native tab (#39394) fix: crash when closing current active macOS native tab
[ { "path": "shell/browser/ui/inspectable_web_contents_view_mac.mm", "patch": "@@ -24,6 +24,7 @@\n initWithInspectableWebContentsViewMac:this]) {}\n \n InspectableWebContentsViewMac::~InspectableWebContentsViewMac() {\n+ [[NSNotificationCenter defaultCenter] removeObserver:view_];\n CloseDevTools...
2023-08-08T08:45:03
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
f2b0b656b255fbf9efaf12c316988ff8a34332a2
501481ccea2dc1ba844a9f8a926db22a23e1f322
More accurate source locations for JSX opening/closing tags <img width="553" alt="Screenshot 2024-03-19 at 4 41 15 PM" src="https://github.com/facebook/react-forget/assets/6425824/e87ee704-6c67-4e10-824b-71e97e7e19f5"> Slightly improves source locations for JSX elements so that the opening and closing tag have di...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -1967,6 +1967,7 @@ function lowerExpression(\n case \"JSXElement\": {\n const expr = exprPath as NodePath<t.JSXElement>;\n const opening = expr.get(\"openingElement\");\n+ const openingLoc = openin...
2024-03-19T23:26:32
vercel/next.js
a6f10c98c379db9e5a6b8cb92879f3811fbaef7d
261a5c3e1d41347e43973065cf3d072223e20e1c
Fix API stripping JSON incorrectly (#82061) This ensures we don't normalize unless it's actually a `_next/data` request. Fixes: https://github.com/vercel/next.js/issues/81936
[ { "path": "packages/next/src/shared/lib/page-path/normalize-data-path.ts", "patch": "@@ -1,7 +1,12 @@\n+import { pathHasPrefix } from '../router/utils/path-has-prefix'\n+\n /**\n * strip _next/data/<build-id>/ prefix and .json suffix\n */\n export function normalizeDataPath(pathname: string) {\n+ if (!pa...
2025-07-25T20:30:19
electron/electron
8f4f82618c51029f91cfb6516bc9c75164bfee9a
1548a2f9fb6d9bf9e0c4f6ace595189cf84b38e9
fix: `removeBrowserView` draggable region removal (#39387) fix: removeBrowserView draggable region removal Closes https://github.com/electron/electron/issues/39377.
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -780,8 +780,8 @@ void BaseWindow::RemoveBrowserView(gin::Handle<BrowserView> browser_view) {\n browser_view.ToV8());\n \n if (iter != browser_views_.end()) {\n- window_->RemoveBrowserView(browser_view->view(...
2023-08-08T08:23:14
nodejs/node
d5dc540f10b597a3dfb23aa1e5391b6964aa2ed6
9ee3a720fe7f4b7cf20143dcfdbd24b97a1bedc6
meta: remind users to use a supported version in bug reports PR-URL: https://github.com/nodejs/node/pull/54481 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": ".github/ISSUE_TEMPLATE/1-bug-report.yml", "patch": "@@ -13,7 +13,9 @@ body:\n - type: input\n attributes:\n label: Version\n- description: Output of `node -v`\n+ description: |\n+ Output of `node -v`.\n+ Please verify that you are reproducing the issue in a [cu...
2024-08-23T12:29:47
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
facebook/react
82c6595e758679adf518e69794ba8d11b97a6bd1
37676aba76a9b97e1059e6dec39c3f401f44248d
Bump es5-ext from 0.10.53 to 0.10.63 in /fixtures/dom (#28459) Bumps [es5-ext](https://github.com/medikoo/es5-ext) from 0.10.53 to 0.10.63. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/medikoo/es5-ext/releases">es5-ext's releases</a>.</em></p> <blockquote> <h2>0.10...
[ { "path": "fixtures/dom/yarn.lock", "patch": "@@ -2679,16 +2679,17 @@ es-to-primitive@^1.2.1:\n is-date-object \"^1.0.1\"\n is-symbol \"^1.0.2\"\n \n-es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.50, es5-ext@~0.10.14:\n- version \"0.10.53\"\n- resolved \"https://registry.yarnpkg.com/es5-ext/-/...
2024-03-19T22:13:39
vercel/next.js
1c426482c3054b998c9e11f59c2f7e43e1ef5a58
62856be393812274fdd110adaa5674ab82ad3180
Adjusted the warning message to be more descriptive (#82054) <!-- 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 Con...
[ { "path": "packages/next/src/lib/find-root.ts", "patch": "@@ -42,12 +42,11 @@ export function findRootDir(cwd: string) {\n \n Log.warnOnce(\n `Warning: Next.js inferred your workspace root, but it may not be correct.\\n` +\n- `We detected multiple lockfiles and selected ${lockFiles[lockFile...
2025-07-25T15:15:46
rust-lang/rust
6afebcc4dd5f4e4b3a7d117aa7dcdd38f560d5af
08a4ce529f4ea17ad1c0fa2e39ca1f5e7cd047b6
Fix feature gating for new `try bikeshed` expressions
[ { "path": "compiler/rustc_ast_passes/src/feature_gate.rs", "patch": "@@ -330,15 +330,11 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {\n fn visit_expr(&mut self, e: &'a ast::Expr) {\n match e.kind {\n ast::ExprKind::TryBlock(_, None) => {\n+ // `try { ... }` is...
2026-02-12T06:19:26
electron/electron
67523a47b46b21281dc32432da9ae1aaa51d1956
330c775252670a4e3a912d05871da1d5a3eab1e5
fix: `chrome.tabs.update` return value (#39365) fix: chrome.tabs.update return value
[ { "path": "shell/browser/extensions/api/tabs/tabs_api.cc", "patch": "@@ -57,6 +57,14 @@ void ZoomModeToZoomSettings(WebContentsZoomController::ZoomMode zoom_mode,\n break;\n }\n }\n+\n+api::tabs::MutedInfo CreateMutedInfo(content::WebContents* contents) {\n+ DCHECK(contents);\n+ api::tabs::MutedIn...
2023-08-07T08:03:45
nodejs/node
628469c7e1327fe6b3369c7824d7bcbb1b70f9c1
4de992fa5b31a81cfc309a8e37702e7b6a66ea9b
net: exclude ipv6 loopback addresses from server.listen Fixes: https://github.com/nodejs/node/issues/51732 PR-URL: https://github.com/nodejs/node/pull/54264 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/net.js", "patch": "@@ -62,6 +62,7 @@ const {\n UV_ECANCELED,\n UV_ETIMEDOUT,\n } = internalBinding('uv');\n+const { convertIpv6StringToBuffer } = internalBinding('cares_wrap');\n \n const { Buffer } = require('buffer');\n const { ShutdownWrap } = internalBinding('stream_wrap');\n@@ -2118,...
2024-08-23T09:11:43
facebook/react
7257c9b4f80889eaadf884dade07be8783c90fdc
93e0815b263e2cf341231ae36de0053a4394f586
Fix for <fbt> with local import Fbt violates the JSX spec by using a lowercase function as a tagname, even though lowercase names are reserved for builtins. Here we detect cases where there is an `<fbt>` tag where `fbt` is a local identifier and throw a todo.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -2044,6 +2044,21 @@ function lowerExpression(\n }\n props.push({ kind: \"JsxAttribute\", name: propName, place: value });\n }\n+ if (tag.kind === \"BuiltinTag\" && tag.name === \"fbt\") {\n+ ...
2024-03-19T21:51:35
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
vercel/next.js
0b0e242821687832e02a205d6b050ed327498df1
025a98a9fd6a85df0fcaa7397ef41a79033d4c34
[devtools] Fix various `exhaustive-deps` violations (#82010) These fixes are pretty local and isolated so I felt safe bundling them up.
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/dialog/dialog.tsx", "patch": "@@ -7,7 +7,6 @@ export type DialogProps = {\n 'aria-describedby': string\n className?: string\n onClose?: () => void\n- dialogResizerRef?: React.RefObject<HTMLDivElement | null>\n } & React.HTMLAttributes<...
2025-07-25T12:33:38
electron/electron
330c775252670a4e3a912d05871da1d5a3eab1e5
dc707ee93835b279ff67dbd5f80ce28a4b9df3e1
docs: fix description of pageRanges (#39378) Co-authored-by: Alain BUFERNE <albu.consult@gmail.com>
[ { "path": "docs/api/web-contents.md", "patch": "@@ -1631,7 +1631,7 @@ win.webContents.print(options, (success, errorType) => {\n * `bottom` number (optional) - Bottom margin in inches. Defaults to 1cm (~0.4 inches).\n * `left` number (optional) - Left margin in inches. Defaults to 1cm (~0.4 inches)....
2023-08-07T07:56:36
nodejs/node
a21af4bfb51ff8f0b4fe79ff10d85d6b58501efa
99f4a73b81d52d41140c6aba04091d12a3df88c4
doc: fix capitalization in module.md PR-URL: https://github.com/nodejs/node/pull/54488 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "doc/api/modules.md", "patch": "@@ -417,7 +417,7 @@ described in greater detail elsewhere in this documentation.\n The built-in modules are defined within the Node.js source and are located in the\n `lib/` folder.\n \n-built-in modules can be identified using the `node:` prefix, in which case\n+Bu...
2024-08-23T00:52:53
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
rust-lang/rust
eb1e41162938cba510f059738687d78fdc0f14a0
bb8b30a5fce59f5d3d17a8f010601c59f0f19d79
Add 2048-bit HvxVectorPair support to Hexagon SIMD ABI checks Previously, rustc rejected HvxVectorPair types in function signatures because the HEXAGON_FEATURES_FOR_CORRECT_FIXED_LENGTH_VECTOR_ABI array only had entries for vectors up to 1024 bits. This caused the ABI checker to emit "unsupported vector type" errors f...
[ { "path": "compiler/rustc_target/src/target_features.rs", "patch": "@@ -984,8 +984,11 @@ const RISCV_FEATURES_FOR_CORRECT_FIXED_LENGTH_VECTOR_ABI: &'static [(u64, &'stat\n const SPARC_FEATURES_FOR_CORRECT_FIXED_LENGTH_VECTOR_ABI: &'static [(u64, &'static str)] =\n &[/*(64, \"vis\")*/];\n \n-const HEXAGO...
2026-02-12T18:56:00
facebook/react
83409a1fdd14b2e5b33c587935a7ef552607780f
cb076b593cec3a92338958f58468cce19cb8f0d9
[Flight] Encode React Elements in Replies as Temporary References (#28564) Currently you can accidentally pass React Element to a Server Action. It warns but in prod it actually works because we can encode the symbol and otherwise it's mostly a plain object. It only works if you only pass host components and no fun...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -35,6 +35,8 @@ import type {\n \n import type {Postpone} from 'react/src/ReactPostpone';\n \n+import type {TemporaryReferenceSet} from './ReactFlightTemporaryReferences';\n+\n import {\n enableBinaryFlight,\n enablePostpone,\n@@ -5...
2024-03-19T20:59:52
electron/electron
dc707ee93835b279ff67dbd5f80ce28a4b9df3e1
1eb6e45a365fd7b73b23302662f29e465a698719
fix: macOS tray button selection with VoiceOver (#39352)
[ { "path": "shell/browser/ui/tray_icon_cocoa.mm", "patch": "@@ -54,7 +54,12 @@ - (id)initWithIcon:(electron::TrayIconCocoa*)icon {\n NSStatusItem* item = [[NSStatusBar systemStatusBar]\n statusItemWithLength:NSVariableStatusItemLength];\n statusItem_ = item;\n- [[statusItem_ button] addSub...
2023-08-07T07:52:18
nodejs/node
cef2047b1fdd797d5125c4cafe9f17220a0774f7
e35902cddb8ae5e0335f4c26588834245ec4cb68
tools: add swc license PR-URL: https://github.com/nodejs/node/pull/54462 Fixes: https://github.com/nodejs/amaro/issues/49 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>...
[ { "path": "LICENSE", "patch": "@@ -155,6 +155,211 @@ The externally maintained libraries used by Node.js are:\n SOFTWARE.\n \"\"\"\n \n+- swc, located at deps/amaro, is licensed as follows:\n+ \"\"\"\n+ Apache License\n+ Version 2.0, January...
2024-08-22T08:48:47
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
rust-lang/rust
dd8a98a9bc83076db950c2f10c46a4ce4499a011
8526aa53613bf82bc145bb02161933fb336643e3
Fix pretty print tests with #[prelude_import]
[ { "path": "tests/pretty/delegation-inherit-attributes.pp", "patch": "@@ -7,7 +7,7 @@\n #![allow(incomplete_features)]\n #![feature(fn_delegation)]\n extern crate std;\n-#[prelude_import]\n+#[attr = PreludeImport]\n use std::prelude::rust_2021::*;\n \n extern crate to_reuse_functions;", "additions": 1, ...
2026-02-12T17:43:58
facebook/react
93e0815b263e2cf341231ae36de0053a4394f586
c03f1c809aeaf69ed26eda39df9dbd7242bc014d
Remove unnecessary scopes for value blocks The example earlier in the stack had unreachable code in the output because there was an unnecessary memoization block around an assignment. This was a holdover from before we moved the logic to expand mutable ranges for phis from LeaveSSA to InferMutableRanges. We were c...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/AlignReactiveScopesToBlockScopes.ts", "patch": "@@ -84,6 +84,7 @@ class Visitor extends ReactiveFunctionVisitor<Context> {\n \n override visitInstruction(instr: ReactiveInstruction, state: Context): void {\n switch (instr.value....
2024-03-19T20:28:47
electron/electron
1eb6e45a365fd7b73b23302662f29e465a698719
2e0517c0addc05678e59906d91d72cc8f4860547
ci: fix hang when validating AppVeyor artifacts (#39362)
[ { "path": "appveyor-woa.yml", "patch": "@@ -189,6 +189,31 @@ for:\n 7z a pdb.zip out\\Default\\*.pdb\n }\n - python3 electron/script/zip_manifests/check-zip-manifest.py out/Default/dist.zip electron/script/zip_manifests/dist_zip.win.%TARGET_ARCH%.manifest\n+ - ps: |\n+ ...
2023-08-07T07:51:53
nodejs/node
e35902cddb8ae5e0335f4c26588834245ec4cb68
8b0c699f2aafdf81bc4834b9bd2a4923741d3a6f
module: fix discrepancy between .ts and .js PR-URL: https://github.com/nodejs/node/pull/54461 Fixes: https://github.com/nodejs/node/issues/54457 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Zeyu "Alex...
[ { "path": "lib/internal/modules/esm/get_format.js", "patch": "@@ -161,14 +161,14 @@ function getFileProtocolModuleFormat(url, context = { __proto__: null }, ignoreE\n default: { // The user did not pass `--experimental-default-type`.\n // `source` is undefined when this is called from `default...
2024-08-22T08:48:33
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
facebook/react
57fcf7d305125784b5b98dd740cdd8a3a4125304
b5a7fe4e1cd69e016934dabc754adb9f99f36859
Repro for nonproblematic unreachable code This case is specific to early return inside an inlined IIFE (which can often occur as a result of dropping manual memoization). When we inline IIFEs, as a reminder we wrap the body in a labeled block and convert returns to assignment of a temporary + break out of the labe...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-unreachable-code-early-return-in-useMemo.expect.md", "patch": "@@ -0,0 +1,163 @@\n+\n+## Input\n+\n+```javascript\n+// @enableAssumeHooksFollowRulesOfReact @enableTransitivelyFreezeFunctionExpressions\n+import { use...
2024-03-19T20:28:46
nodejs/node
8b0c699f2aafdf81bc4834b9bd2a4923741d3a6f
612e4577ef5b67f017e1d1c233d21767946f22c2
2024-08-21, Version 20.17.0 'Iron' (LTS) Notable changes: http: * (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) https://github.com/nodejs/node/pull/54054 meta: * add jake to collaborators (jakecastelli) https://github.com/nodejs/node/pull/54004 module: * (SEMVER-MINOR) support ...
[ { "path": "CHANGELOG.md", "patch": "@@ -64,7 +64,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V21.md#21.0.0\">21.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.16.0\">20.16.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.17.0\">20.17.0...
2024-08-19T08:01:30
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
vercel/next.js
e9eddf01e8b4bf1d2cb37e47beb9ade82f512187
1964b17e20b52144d4ecd0a8d66a19924f7159e5
Turbopack: Make turbo-tasks-fetch a bit more OOP-like (#81995) This was a request from @lukesandberg to make this API a bit more object-oriented: https://github.com/vercel/next.js/pull/81818#discussion_r2223136594 - `ReqwestClientConfig` is now just `FetchClient`. - `fetch` is a method on `FetchClient` instead of a f...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -9,7 +9,7 @@ use turbo_tasks::{\n trace::TraceRawVcs,\n };\n use turbo_tasks_env::{EnvMap, ProcessEnv};\n-use turbo_tasks_fetch::ReqwestClientConfig;\n+use turbo_tasks_fetch::FetchClient;\n use turbo_tasks_fs::FileSystemPath;\n use turbopack:...
2025-07-24T22:15:23
rust-lang/rust
0c724e57c309e5804f98097d53c188bb36e42acc
d32a47377ebe75569071503138545aa7e1cc2b22
Refactor handling of associated type shorthand for type parameters, i.e. `T::AssocType` without specifying the trait I believe the new code is both cleaner and more robust, and should fix some edge cases. rustc does all of this very differently with plenty of queries for various forms of predicate lowering; but we ha...
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/hir/generics.rs", "patch": "@@ -184,7 +184,7 @@ static EMPTY: LazyLock<Arc<GenericParams>> = LazyLock::new(|| {\n \n impl GenericParams {\n /// The index of the self param in the generic of the non-parent definition.\n- pub(crate) const SELF_PARAM...
2026-02-12T16:50:20
facebook/react
b5a7fe4e1cd69e016934dabc754adb9f99f36859
9358aeab34e750c3d1e3fe86fd504a0450a43cbd
[hir] Improve error message for mutating state
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Globals.ts", "patch": "@@ -261,6 +261,7 @@ const BUILTIN_HOOKS: Array<[string, BuiltInType]> = [\n calleeEffect: Effect.Read,\n hookKind: \"useState\",\n returnValueKind: ValueKind.Frozen,\n+ returnValueReason: ValueReason...
2024-03-19T17:06:17
nodejs/node
6b6b97766cab11d9d798097498d0f5248fc02825
e3f909ecb0d216c3f6577c1982c0ca0dc72e8f76
deps: sqlite: fix Windows compilation This is equivalent to the following upstream change: https://sqlite.org/src/info/6c103aee6f146869 Original commit message: Change constant expressions to pre-computed constants, because apparently MSVC on ARM requires that. [forum:/forumpost/4feb1685cced0a8e|Forum th...
[ { "path": "deps/sqlite/sqlite3.c", "patch": "@@ -24886,8 +24886,8 @@ static const struct {\n /* 1 */ { 6, \"minute\", 7.7379e+12, 60.0 },\n /* 2 */ { 4, \"hour\", 1.2897e+11, 3600.0 },\n /* 3 */ { 3, \"day\", 5373485.0, 86400.0 },\n- /* 4 */ { 5, \"month\", 176546.0,...
2024-06-12T00:40:08
electron/electron
c5b9f766f373f4d403a8af2f75e28ca2d901cc32
6d0e8044ebca06a3de8d7063a0aa989735bab343
chore: bump chromium to 117.0.5923.0 (main) (#39304) * chore: bump chromium in DEPS to 117.0.5921.0 * chore: update chromium patches * 4721409: Remove redundant ARC configuration in /components | https://chromium-review.googlesource.com/c/chromium/src/+/4721409 * 4643750: Add V8_LOW_PRIORITY_TQ for main threa...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '117.0.5911.0',\n+ '117.0.5921.0',\n 'node_version':\n 'v18.16.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "build/...
2023-08-04T08:47:29
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
vercel/next.js
1964b17e20b52144d4ecd0a8d66a19924f7159e5
329bcdc7ae9f327c44a024eff2de6d46b36518b0
[Segment Cache] Fix: Key by rewritten search (#81986) When a request URL is rewritten, the resulting data must be keyed by its rewritten search params — the ones that were used by the server to render the page — not the original search params. This works in most places by encoding the rewritten search params into page...
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache-key.ts", "patch": "@@ -1,3 +1,6 @@\n+import { NEXT_REWRITTEN_QUERY_HEADER } from '../app-router-headers'\n+import type { RSCResponse } from '../router-reducer/fetch-server-response'\n+\n // TypeScript trick to simulate opaque types, lik...
2025-07-24T18:29:16
rust-lang/rust
7df6e6799fceff11ce4e0a73520050b549cc9acf
d2ce1c9c3d87f81e6550f6af56eb133db46e9b42
Update Cargo.lock Updates cc crate to 1.2.55 which fixes macabi target triple handling for x86_64-apple-ios-macabi builds.
[ { "path": "library/stdarch/Cargo.lock", "patch": "@@ -10,18 +10,18 @@ checksum = \"320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa\"\n \n [[package]]\n name = \"aho-corasick\"\n-version = \"1.1.3\"\n+version = \"1.1.4\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-...
2026-02-12T16:41:53
facebook/react
0aab065eb3250a9714a62dc05587cbb571da7f71
7959a1dd28a8b0df9c80dc36bb51a4fa25123d3e
Add `alwaysThrottleDisappearingFallbacks` Flag (#28550) ## Summary Creates a new `alwaysThrottleDisappearingFallbacks` feature flag that gates the changes from https://github.com/facebook/react/pull/26802 (instead of being controlled by `alwaysThrottleRetries`). The values of this new flag mirror the current val...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -40,6 +40,7 @@ import type {\n } from './ReactFiberTracingMarkerComponent';\n \n import {\n+ alwaysThrottleDisappearingFallbacks,\n enableCreateEventHandleAPI,\n enableProfilerTimer,\n enableProfilerCommitHooks,\n@@ -53,7...
2024-03-18T18:16:47
nodejs/node
cc26951180e629d131a4dd2211b96781c1af18cf
385ca623e452d4b4eb671ab5d7d1a267b99b8da0
test_runner: support running tests in process This commit introduces a new --experimental-test-isolation flag that, when set to 'none', causes the test runner to execute all tests in the same process. By default, this is the main test runner process, but if watch mode is enabled, it spawns a separate process that runs...
[ { "path": "doc/api/cli.md", "patch": "@@ -1091,6 +1091,20 @@ generated as part of the test runner output. If no tests are run, a coverage\n report is not generated. See the documentation on\n [collecting code coverage from tests][] for more details.\n \n+### `--experimental-test-isolation=mode`\n+\n+<!-- YA...
2024-07-13T15:10:59
vercel/next.js
329bcdc7ae9f327c44a024eff2de6d46b36518b0
504fa32ae6276f15e2662f52f9ba8203362f227c
[devtools] Fix "open in editor" for locations in stackframes (#82013)
[ { "path": "packages/next/src/next-devtools/server/launch-editor.ts", "patch": "@@ -27,6 +27,7 @@ import fs from 'fs'\n import fsp from 'fs/promises'\n import os from 'os'\n import path from 'path'\n+import { fileURLToPath } from 'url'\n import shellQuote from 'next/dist/compiled/shell-quote'\n \n function i...
2025-07-24T12:41:03