repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
nodejs/node | c64a00a12db5f0afac102cc04f968d36ad1d62c8 | 473410d379ec69ed2abf7f13d73c297e2853c03d | tools: fix c-ares update script
PR-URL: https://github.com/nodejs/node/pull/53414
Fixes: https://github.com/nodejs/node/issues/53407
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "tools/dep_updaters/update-c-ares.sh",
"patch": "@@ -11,19 +11,25 @@ DEPS_DIR=\"$BASE_DIR/deps\"\n # shellcheck disable=SC1091\n . \"$BASE_DIR/tools/dep_updaters/utils.sh\"\n \n-NEW_VERSION=\"$(\"$NODE\" --input-type=module <<'EOF'\n+NEW_VERSION_METADATA=\"$(\"$NODE\" --input-type=module <<'EOF'\n... | 2024-06-13T07:37:46 |
facebook/react | dd8b743f6ab9e1f3e615ed5f19d5697f59051d7e | 6c719f62a07114cfa23631e79a8962f6c770ddda | [be] Refactor gating logic in babel plugin
`compileProgram` was getting complex, so this extracts some of the logic into
smaller functions. Additionally, the `try` block now only wraps the `compileFn`
generator from Pipeline, which means not accidentally catching other non-Forget
errors | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -39,145 +39,125 @@ function hasAnyUseForgetDirectives(directives: t.Directive[]): boolean {\n return false;\n }\n \n-export function compileProgram(\n- program: NodePath<t.Program>,\n+/**\n+ * Runs the ... | 2023-08-11T20:38:52 |
golang/go | ae4c13afc51d81e9aefdfb101e895bc7318c05cd | e5d3ece35d34a0d00ad8131d4dd7af7951aada68 | go/types, types2: report better error messages for slice expressions
Explicitly compute the common underlying type and while doing
so report better slice-expression relevant error messages.
Streamline message format for index and slice errors.
This removes the last uses of the coreString and match functions.
Delete t... | [
{
"path": "src/cmd/compile/internal/types2/index.go",
"patch": "@@ -183,7 +183,7 @@ func (check *Checker) indexExpr(x *operand, e *syntax.IndexExpr) (isFuncInst boo\n \t}\n \n \tif !valid {\n-\t\tcheck.errorf(e.Pos(), NonSliceableOperand, invalidOp+\"cannot index %s\", x)\n+\t\tcheck.errorf(e.Pos(), NonSlic... | 2025-03-07T19:26:38 |
electron/electron | 8d008c977df465d3ad96dd6c8c3daa7afd8bea5f | c6b9340b8952a041373f694c6ee2f22f447464de | docs: updated deep link docs (#36952)
* removed open-url listener from windows code
* updated deep-link fiddle
* fixed url hash to app.requestSingleInstanceLock
* code linted
* updated website url to relative file path
Co-authored-by: David Sanders <dsanders11@ucsbalum.com>
Co-authored-by: David Sand... | [
{
"path": "docs/fiddles/system/protocol-handler/launch-app-from-URL-in-another-app/main.js",
"patch": "@@ -23,6 +23,8 @@ if (!gotTheLock) {\n if (mainWindow.isMinimized()) mainWindow.restore()\n mainWindow.focus()\n }\n+ \n+ dialog.showErrorBox('Welcome Back', `You arrived from: ${comm... | 2023-01-26T07:20:10 |
rust-lang/rust | e9ec12a2256471dcf0d6227e7ec13d6ea49fd7c8 | 8fa27e03c0e3a080e3b030459fdb69c2ecf4bb4a | Fix postcard test too | [
{
"path": "src/tools/rust-analyzer/crates/proc-macro-srv-cli/tests/bidirectional_postcard.rs",
"patch": "@@ -1,4 +1,8 @@\n #![cfg(feature = \"sysroot-abi\")]\n+#![cfg_attr(feature = \"in-rust-tree\", feature(rustc_private))]\n+\n+#[cfg(feature = \"in-rust-tree\")]\n+extern crate rustc_driver as _;\n \n mod ... | 2026-01-27T17:00:26 |
vercel/next.js | ba70eda35dfa23327bd69ab529783d3679d4d9c2 | 52372be7cbefb97459df9f7633dba89bb50d8391 | Revert "Respond with `404` for unknown server actions (#80613)" (#80662)
@unstubbable and i independently worked on fixing the same bug, but my
solution got a bit further along + i have a stack of other changes on
top, so we're going to do mine instead.
- #77012 implements equivalent functionality for fetch actions (b... | [
{
"path": "packages/next/src/server/app-render/action-handler.ts",
"patch": "@@ -50,6 +50,7 @@ import { RedirectStatusCode } from '../../client/components/redirect-status-code\n import { synchronizeMutableCookies } from '../async-storage/request-store'\n import type { TemporaryReferenceSet } from 'react-ser... | 2025-06-24T10:27:29 |
nodejs/node | 3597070ef8297baceed4cf7a9a0eccae8181e263 | 7d90f0638d524a75082ade7887ab4c29a1aa6016 | deps: V8: cherry-pick a3cc8522a4c8
Original commit message:
[riscv] avoid cpu probing in li_ptr
CPU probing is an expensive thing to do and we should avoid doing it upon every li_ptr call.
Fixes performance regresion bisected in https://github.com/riscv-forks/electron/issues/1
Change-Id: Ib5ff89b2a... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.14',\n+ 'v8_embedder_string': '-node.15',\n \n ##### V8 defaults for Node.js #####\n... | 2024-06-11T05:30:25 |
facebook/react | 4e3618ae41669c95a3377ae615c727f74f89d141 | 533fc28c1b8ea2c6ed459e914849665f497755ff | [Float][Fizz] Fix srcSet and sizes handling for suspensey img preloads (#27217)
imageSrcSet should have been srcSet when referencing an img tag.
imageSizes should have been sizes. This caused preloads for img tags
using srcSet and sizes to incorrectly render as having a href only,
dropping the srcSet and sizes part... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -2399,8 +2399,8 @@ function pushImg(\n ) {\n // We have a suspensey image and ought to preload it to optimize the loading of display blocking\n // resources.\n- const {src, imageSrcSet, imageSizes} = props;\n... | 2023-08-11T18:27:22 |
golang/go | e5d3ece35d34a0d00ad8131d4dd7af7951aada68 | 2d097e363a6fce725802ecbde6d0d1b90f45290d | go/types, types2: remove need for coreString in signature.go
Also, add additional test cases for NewSignatureType
to check expected panic behavior.
Change-Id: If26cd81a2af384bf2084dd09119483c0584715c8
Reviewed-on: https://go-review.googlesource.com/c/go/+/655695
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project... | [
{
"path": "src/cmd/compile/internal/types2/issues_test.go",
"patch": "@@ -627,38 +627,62 @@ func TestIssue50646(t *testing.T) {\n \n func TestIssue55030(t *testing.T) {\n \t// makeSig makes the signature func(typ...)\n-\tmakeSig := func(typ Type) {\n+\t// If valid is not set, making that signature is expect... | 2025-03-07T00:06:55 |
electron/electron | c6b9340b8952a041373f694c6ee2f22f447464de | 397aee7315fdc2349921501933f1d77f03448125 | chore: fix memory leak in `v8.serialize()` (#37021)
chore: fix memory leak in v8.serialize() | [
{
"path": "patches/node/fixup_for_wc_98-compat-extra-semi.patch",
"patch": "@@ -7,7 +7,7 @@ Wc++98-compat-extra-semi is turned on for Electron so this\n patch fixes that error in node.\n \n diff --git a/src/node_serdes.cc b/src/node_serdes.cc\n-index 0cd76078218433b46c17f350e3ba6073987438cf..ba13061b6aa7fd8... | 2023-01-26T06:43:57 |
vercel/next.js | 62fa7fa16daffb431741788c29d0c0a02e84cfa6 | 72cc7db1bda874a354cdc07cdd0a8503a0aaec15 | Add a fallback for the mdx-components file (#59693)
### What?
Provide a fallback for the `mdx-components` file.
### Why?
Given a user uses the Next.js app directory, and doesn’t have an
`mdx-components` file;
1. If the user has `@mdx-js/react` installed, Next.js shows a cryptic
error message, stating only client co... | [
{
"path": "crates/next-core/src/next_import_map.rs",
"patch": "@@ -858,6 +858,7 @@ async fn insert_next_shared_aliases(\n request_to_import_mapping(project_path, \"./mdx-components\"),\n request_to_import_mapping(project_path, \"./src/mdx-components\"),\n request_to_impor... | 2025-06-24T01:49:03 |
nodejs/node | 73fa9ab7a58a3cbc53ed418543f5f6fd26e8f87a | 937ae102e7efc4ac9b561d818263b26b8296a125 | src: fix IsIPAddress for IPv6
Fix the bug when copying IPv6 host to a variable to remove brackets.
Fixes: https://github.com/nodejs/node/issues/47427
PR-URL: https://github.com/nodejs/node/pull/53400
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "src/inspector_socket.cc",
"patch": "@@ -192,7 +192,7 @@ static bool IsIPAddress(const std::string& host) {\n // Parse the IPv6 address to ensure it is syntactically valid.\n char ipv6_str[INET6_ADDRSTRLEN];\n std::copy(host.begin() + 1, host.end() - 1, ipv6_str);\n- ipv6_str[host.l... | 2024-06-12T12:44:19 |
rust-lang/rust | fb2be7b1b84602692c3e26d0c6409b7a15ced231 | 89799e9be99dd6d9a733beb8405b442142e3bad3 | Fix rustdoc links for BoundRegionKind/BoundTyKind | [
{
"path": "src/doc/rustc-dev-guide/src/ty-module/binders.md",
"patch": "@@ -48,5 +48,5 @@ This would cause all kinds of issues as the region `'^1_0` refers to a binder at\n \n [`Binder`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.Binder.html\n [`BoundVar`]: https://doc.rust-lang... | 2026-02-03T07:19:13 |
golang/go | 2d097e363a6fce725802ecbde6d0d1b90f45290d | e3ea8e68fb91bdc510cb7702981609ce5a9da12e | go/types, types2: better error messages for copy built-in
Rather than relying on coreString, use the new commonUnder function
to determine the argument slice element types.
Factor out this functionality, which is shared for append and copy,
into a new helper function sliceElem (similar to chanElem).
Use sliceElem for... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -83,48 +83,19 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \tswitch id {\n \tcase _Append:\n \t\t// append(s S, x ...E) S, where E is the element type of S\n-\t\t// spec: \"The variadic function ap... | 2025-03-06T23:44:01 |
electron/electron | a30a9c7c4faa5aca476dd593dd02bbfac43432df | a59f11fdb1746ced2b90b9dcf16a7860a79cce73 | chore: remove crashpad related sandbox policy (#37013) | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -120,10 +120,6 @@\n #include \"ui/native_theme/native_theme.h\"\n #include \"v8/include/v8.h\"\n \n-#if BUILDFLAG(IS_WIN)\n-#include \"sandbox/win/src/sandbox_policy.h\"\n-#endif\n-\n #if BUILDFLAG(USE_NSS_CERTS)\n #include \"net/ssl/client_... | 2023-01-26T00:01:34 |
vercel/next.js | 72cc7db1bda874a354cdc07cdd0a8503a0aaec15 | 354c7d2c4ddfa715a69be3807275cc234bff76da | fix to use https urls in meta data images when using experimental-https (#80276)
fixes #80275
.. to generate https image urls in meta data when using the
--experimental-https flag
---------
Co-authored-by: Zack Tanner <1939140+ztanner@users.noreply.github.com>
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": ".changeset/open-dodos-admire.md",
"patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Fix to use https urls in meta data images when using --experimental-https flag",
"additions": 5,
"deletions": 0,
"language": "Markdown"
},
{
"path": "packages/next/src/lib/metadata/res... | 2025-06-24T01:23:52 |
facebook/react | 6c719f62a07114cfa23631e79a8962f6c770ddda | c3ec002d69e94b4b48ba2da41ab6cf4d2c3ff06d | [ez] ComponentDeclaration transforms only into FunctionDeclaration
ComponentDeclarations can only be transformed into FunctionDeclarations, so the
types were wrong | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -330,7 +330,7 @@ function shouldVisitNode(\n fn: NodePath<t.FunctionDeclaration | t.ArrowFunctionExpression>,\n pass: CompilerPass\n ): boolean {\n- if (pass.opts.enableOnlyOnReactScript) {\n+ if (pa... | 2023-08-11T17:31:06 |
rust-lang/rust | 4c3600c0823d2dcb08f93f74e4a85de406b193eb | b4f36ce8f443edfcdccb008470d92cc32ac01e66 | Provide a cycle handler for `GenericPredicates`
Unfortunately it obscures bugs, but it's necessary because of malformed code. | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs",
"patch": "@@ -1899,7 +1899,7 @@ impl<'db> GenericPredicates {\n /// Resolve the where clause(s) of an item with generics.\n ///\n /// Diagnostics are computed only for this item's predicates, not for parents.\n- #[salsa::tracked(... | 2026-02-03T06:07:41 |
nodejs/node | 521c9c6df77f83b6e6d229b35cdc754dfb9d83cf | 94c81784422e3da2b4d2af96a1705d7a770ed4ed | doc, http: add `rejectNonStandardBodyWrites` option, clear its behaviour
PR-URL: https://github.com/nodejs/node/pull/53396
Fixes: https://github.com/nodejs/node/issues/53035
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gm... | [
{
"path": "doc/api/http.md",
"patch": "@@ -2427,8 +2427,9 @@ it will switch to implicit header mode and flush the implicit headers.\n This sends a chunk of the response body. This method may\n be called multiple times to provide successive parts of the body.\n \n-Writing to the body is not allowed when the ... | 2024-06-11T16:39:17 |
golang/go | 2abe5ceb1968edb882c8318af674c4133dd0bb75 | 574a9fa60e593154fbbe64f992b7e6656e3ab0b7 | testing: warn against calling Log after a test completes
Fixes #40343
Change-Id: Id266f4b57131e9e148e5aa2be86b67fe6d73b20a
Reviewed-on: https://go-review.googlesource.com/c/go/+/656415
Auto-Submit: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.... | [
{
"path": "src/testing/testing.go",
"patch": "@@ -1083,6 +1083,7 @@ func (c *common) logDepth(s string, depth int) {\n // and records the text in the error log. For tests, the text will be printed only if\n // the test fails or the -test.v flag is set. For benchmarks, the text is always\n // printed to avoi... | 2025-03-10T19:41:09 |
electron/electron | 58beec1da2cacd59a91a556b86f47ec0147b9c36 | 4bc6b15f53a3e4f961c2ade3c96fa9229ec00367 | fix: do not error on null exports in ESM loader (#37009) | [
{
"path": "patches/node/fix_expose_the_built-in_electron_module_via_the_esm_loader.patch",
"patch": "@@ -51,7 +51,7 @@ index 7cec4e9a3e3675ba75d66a44ed4e142d13ca1821..0c7aad193442a7e5cab62638441969a7\n }\n }\n diff --git a/lib/internal/modules/esm/translators.js b/lib/internal/modules/esm/translators.js... | 2023-01-25T21:03:47 |
vercel/next.js | 8324d8108c33e2a92d66c59bfa15b0a97cd99ef7 | 9d4239a150fb3762caf05756d77066cb82b81398 | [segment explorer] handle custom error boundary (#80714)
Display custom error boundary `error.js` in segement explorer when it's rendered

Closes NEXT-4331 | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.tsx",
"patch": "@@ -260,4 +260,9 @@ export const DEV_TOOLS_INFO_RENDER_FILES_STYLES = css`\n background-color: var(--color-green-300);\n color: var(--color-green-900);\n }\n+ .segment-explorer-file-label--... | 2025-06-23T20:23:47 |
facebook/react | cbb815e90739c788a9d9309e6dec9c93d74453a0 | 74a062ba9dfe0228069bfc776abc3e5bd9176440 | [rust] Port EliminateRedundantPhi fix | [
{
"path": "compiler/forget/crates/forget_fixtures/tests/snapshots/fixtures_test__fixtures@function-expressions.js.snap",
"patch": "@@ -58,7 +58,7 @@ bb0 (block)\n [14] #16 = Binary unknown #14 + unknown #15\n [15] #17 = 8\n [16] #18 = Binary unknown #16 + unknown #17\n- [17] #... | 2023-08-10T14:59:50 |
rust-lang/rust | f14e3ee38ff234ca00cb73b61bf306316b9ab91d | 5ac8ecea36e7548534e0bc3d4aa1c12bd4908566 | compiletest: Don't assume `aux-crate` becomes a `*.so` with `no-prefer-dynamic`
Since it does not make sense to do so. If someone prefers no dynamic
stuff, the last thing they want to look for is an `.so` file. Also add a
regression test. Without the fix, the test fails with:
error: test compilation failed althou... | [
{
"path": "src/tools/compiletest/src/runtest.rs",
"patch": "@@ -1438,7 +1438,7 @@ impl<'test> TestCx<'test> {\n } else if aux_type.is_some() {\n panic!(\"aux_type {aux_type:?} not expected\");\n } else if aux_props.no_prefer_dynamic {\n- (AuxType::Dylib, None)\n+ ... | 2026-01-15T05:12:57 |
golang/go | 4635ad047a426f43a4b70cd11ce52b062d0da34f | 5b4209fedb10086e845cabdb02d2990a6090841b | crypto/tls: align cert decode alert w/ BSSL
For malformed client/server certificates in a TLS handshake send
a decode_error alert, matching BoringSSL behaviour.
Previously crypto/tls used a bad_certificate alert for this purpose.
The TLS specification is imprecise enough to allow this to be considered
a spec. justifi... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -54,7 +54,6 @@\n \"KyberKeyShareIncludedSecond\": \"we always send the Kyber key share first\",\n \"KyberKeyShareIncludedThird\": \"we always send the Kyber key share first\",\n \"GREASE-Server-TLS13\": \"We don't send GREASE ... | 2025-02-26T19:13:15 |
facebook/react | 74a062ba9dfe0228069bfc776abc3e5bd9176440 | b8f1d37b6a4e5abbf3c9d80b45b6fc773fbd4c50 | [rust] Autofix lints | [
{
"path": "compiler/forget/crates/forget_build_hir/src/build.rs",
"patch": "@@ -2,9 +2,8 @@ use std::collections::HashSet;\n \n use forget_diagnostics::Diagnostic;\n use forget_estree::{\n- AssignmentTarget, BinaryExpression, BlockStatement, Expression, ExpressionOrSpread,\n- ExpressionOrSuper, ForIni... | 2023-08-10T14:59:50 |
electron/electron | 355f322dbdba4cacd6a15e4c7d64adb2da9500d8 | 2f79444535440608f9ddf2f26c634847396674b7 | chore: remove unused fixture_support.md (#37011)
Co-authored-by: Milan Burda <miburda@microsoft.com> | [
{
"path": "spec/fixtures/version-bumper/fixture_support.md",
"patch": "@@ -1,122 +0,0 @@\n-# Electron Support\n-\n-## Finding Support\n-\n-If you have a security concern,\n-please see the [security document](https://github.com/electron/electron/tree/master/SECURITY.md).\n-\n-If you're looking for programmin... | 2023-01-25T21:00:51 |
vercel/next.js | c1c523bfde79ff6584bb8b31318e1bebd56a85dc | 4e52916e676662d9df8019f67e670072d98ec3fe | [devtools] panel ui issues tab content (#80729)
The UI shares the style with the error overlay. This PR added a loading
state, which can be later shared with the error overlay as well.
https://github.com/user-attachments/assets/d3759d19-7f70-48c3-8fee-5c6973c01d53
### Success Criteria
- [x] Does it have a loading... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/code-frame/code-frame.tsx",
"patch": "@@ -108,7 +108,6 @@ export const CODE_FRAME_STYLES = `\n --code-frame-padding: 12px;\n --code-frame-line-height: var(--size-16);\n background-color: var(--color-background-200);\n- overflow... | 2025-06-23T18:49:57 |
nodejs/node | 3a7d8c8e9f3fd11924b13996abb1af9dd5203e16 | dbf79c916794faf947d792a3d6aa9ae7983e5ef0 | doc: fix typo
PR-URL: https://github.com/nodejs/node/pull/53397
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -1019,7 +1019,7 @@ following permissions are restricted:\n added: v22.0.0\n -->\n \n-> Stability: 1.1 - Active Developement\n+> Stability: 1.1 - Active Development\n \n Supports loading a synchronous ES module graph in `require()`.\n ",
"additions": 1,
"delet... | 2024-06-10T22:34:38 |
golang/go | 01688daca63c3775f07f908268af99bd3d3c9386 | 2611d81dc82ba18bb9dd45afce9a412b0b821913 | crypto/tls: support bogo -wait-for-debugger
When this command line flag is provided to the BoGo runner it will:
* Disable some timeouts
* Limit concurrency to 1 worker at a time
* Pass the -wait-for-debugger flag to the shim process
* Print the PID of the shim process to status output
On the shim-side, we need to re... | [
{
"path": "src/crypto/tls/bogo_shim_notunix_test.go",
"patch": "@@ -0,0 +1,11 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build !unix || wasm\n+\n+package tls\n+\n+func pause... | 2025-02-19T17:39:32 |
electron/electron | 2f79444535440608f9ddf2f26c634847396674b7 | a9b6041d38b877319c740fe7c31e8a1a235d7764 | refactor: separate WEB_VIEW_ATTRIBUTES / WEB_VIEW_ERROR_MESSAGES (#36972) | [
{
"path": "lib/renderer/web-view/web-view-attributes.ts",
"patch": "@@ -1,5 +1,5 @@\n import type { WebViewImpl } from '@electron/internal/renderer/web-view/web-view-impl';\n-import { WEB_VIEW_CONSTANTS } from '@electron/internal/renderer/web-view/web-view-constants';\n+import { WEB_VIEW_ATTRIBUTES, WEB_VIE... | 2023-01-25T15:08:46 |
facebook/react | 7feaabfe68c94ad8d9817c06b8a792cf3fc47859 | 6bca9fb7a3f991b39c14a3f1c8a7bb00b1510a9a | [rust] Use hermes parser for Forget fixture tests
Replaces the use of SWC parser in the Forget fixture tests with Hermes Parser.
This includes aligning on a single type to represent JS Values and numbers
(combining semi-duplicated code from forget_hir and forget_estree) and adding
support for lowering babel-style ... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -515,7 +515,7 @@ version = \"0.1.0\"\n dependencies = [\n \"forget_build_hir\",\n \"forget_estree\",\n- \"forget_estree_swc\",\n+ \"forget_hermes_parser\",\n \"forget_hir\",\n \"forget_optimization\",\n \"forget_semantic_analysis\",",
"additions"... | 2023-08-10T14:59:49 |
vercel/next.js | 226a9a10e69b7894f7e11c6dd110b580873b4deb | a48373304dd074d08c6559d04900e68a74a4493e | [devtools] panel ui issues tab sidebar (#80728)
https://github.com/user-attachments/assets/56822e42-70da-4ab4-91d7-fed757b43d5b
### Success Criteria
- [x] Does it show the error label?
- [x] Does it show the error stack frame?
- [x] Does it navigate to the correct idx error?
- [x] Does it have a loading state?
- [x]... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-footer.tsx",
"patch": "@@ -49,7 +49,6 @@ export const DEVTOOLS_PANEL_FOOTER_STYLES = css`\n display: flex;\n justify-content: space-between;\n align-items: center;\n- margin-top: auto;\n border... | 2025-06-23T17:53:36 |
nodejs/node | 430c026911a5ca51fa0102bdb9e40cbd7e36e94e | 14863e80584e579fd48c55f6373878c821c7ff7e | src: fix permission inspector crash
PR-URL: https://github.com/nodejs/node/pull/53389
Fixes: https://github.com/nodejs/node/issues/53385
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Kohei Ueno <kohei... | [
{
"path": "src/inspector_js_api.cc",
"patch": "@@ -181,6 +181,9 @@ void SetConsoleExtensionInstaller(const FunctionCallbackInfo<Value>& info) {\n \n void CallAndPauseOnStart(const FunctionCallbackInfo<v8::Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n+ THROW_IF_INSUFFICIENT_PERMISS... | 2024-06-10T18:35:55 |
golang/go | 2611d81dc82ba18bb9dd45afce9a412b0b821913 | b0e7f95aacbfed6cca892859ec2589c3bd7cf0b8 | crypto/tls: ignore TLS 1.3 user canceled alerts
When encountering alertUserCanceled in a TLS 1.3 handshake, ignore the
alert and retry reading a record. This matches existing logic for how
TLS 1.2 alertLevelWarning alerts are handled.
For broader context, TLS 1.3 removed warning-level alerts except for
alertUserCance... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -47,12 +47,12 @@\n \"*DTLS*\": \"No DTLS\",\n \"SendEmptyRecords*\": \"crypto/tls doesn't implement spam protections\",\n \"SendWarningAlerts*\": \"crypto/tls doesn't implement spam protections\",\n+ \"SendUserCanceledA... | 2025-02-19T15:30:50 |
facebook/react | a20eea25197df0da80104917df414747eeab1ac9 | 201becd3d294b38824930a818e3412c6e04ba2eb | Update README.md (#27209)
Update links from the old documentation to the new version
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
... | [
{
"path": "README.md",
"patch": "@@ -6,7 +6,7 @@ React is a JavaScript library for building user interfaces.\n * **Component-Based:** Build encapsulated components that manage their own state, then compose them to make complex UIs. Since component logic is written in JavaScript instead of templates, you can... | 2023-08-09T17:21:43 |
electron/electron | a9b6041d38b877319c740fe7c31e8a1a235d7764 | afca3ff9657ae08d4ead68ee23d0a04fc5042465 | chore: remove unused files in spec/fixtures (#37012)
Co-authored-by: Milan Burda <miburda@microsoft.com> | [
{
"path": "spec/fixtures/api/native-window-open-argv.html",
"patch": "@@ -1,8 +0,0 @@\n-<html>\n-<body>\n-<script type=\"text/javascript\" charset=\"utf-8\">\n- const popup = window.open()\n- require('electron').ipcRenderer.send('answer', typeof popup.process)\n-</script>\n-</body>\n-</html>",
"additi... | 2023-01-25T15:02:44 |
vercel/next.js | 3797fb921b5a309c90ba5867da9e3fb1d3428b8b | 6e508d4f93778dbefc34eac1ca12bbf97c266d62 | [devtools] set up panel ui issues tab infra (#80727)
Added infra for the issues tab and its story. Will follow up with the
sidebar to navigate the issues and their error content.
Closes NEXT-4546 | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-tab/devtools-panel-tab.tsx",
"patch": "@@ -1,20 +1,30 @@\n import type { DevToolsPanelTabType } from '../devtools-panel'\n import type { Corners } from '../../../shared'\n+import type { DebugInfo } from '../../..... | 2025-06-23T17:50:50 |
nodejs/node | 14863e80584e579fd48c55f6373878c821c7ff7e | e74dbfb4bda4cd20d97c3be12187945ccb2d4e1a | test: update tests for OpenSSL 3.0.14
Starting from OpenSSL 3.0.14, 3.1.6, 3.2.2, and 3.3.1, OpenSSL was fixed
to return an error reason string for bad/unknown application protocols.
Update tests to handle both the old `ECONNRESET` error on older versions
of OpenSSL and the new `ERR_SSL_TLSV1_ALERT_NO_APPLICATION_PRO... | [
{
"path": "test/parallel/test-http2-https-fallback.js",
"patch": "@@ -151,7 +151,8 @@ function onSession(session, next) {\n // Incompatible ALPN TLS client\n tls(Object.assign({ port, ALPNProtocols: ['fake'] }, clientOptions))\n .on('error', common.mustCall((err) => {\n- strictE... | 2024-06-10T17:43:36 |
golang/go | b0e7f95aacbfed6cca892859ec2589c3bd7cf0b8 | 04164e5f5a82eeaf09fedda14c90af5bb65a1627 | crypto/tls: run SkipNewSessionTicket bogo test
This commit removes SkipNewSessionTicket from the bogo_config.json
excluded tests list.
Previously this test was being skipped with a TODO that there might be
a bug here. In practice it seems like there's no bug and the test is
handled correctly by crypto/tls.
When acti... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -52,7 +52,6 @@\n \"JustConfiguringKyberWorks\": \"we always send a X25519 key share with Kyber\",\n \"KyberKeyShareIncludedSecond\": \"we always send the Kyber key share first\",\n \"KyberKeyShareIncludedThird\": \"we always s... | 2025-02-18T17:41:34 |
facebook/react | 201becd3d294b38824930a818e3412c6e04ba2eb | cb3404a0ccd8b5edf5d2b90bd844742090e38f42 | Bugfix: Fix crash when suspending in shell during useSES re-render (#27199)
This adds a regression test for a bug where, after a store mutation, the
updated data causes the shell of the app to suspend.
When re-rendering due to a concurrent store mutation, we must check for
the RootDidNotComplete exit status again... | [
{
"path": "packages/react-reconciler/src/ReactFiberWorkLoop.js",
"patch": "@@ -892,58 +892,39 @@ export function performConcurrentWorkOnRoot(\n let exitStatus = shouldTimeSlice\n ? renderRootConcurrent(root, lanes)\n : renderRootSync(root, lanes);\n- if (exitStatus !== RootInProgress) {\n- if ... | 2023-08-08T18:11:11 |
electron/electron | cdb65c15a81ba36685696daa4ffcb974481d8c5a | c3f02d7df2a0282adc1c453ad998c7fd864e709b | fix: make plugin helper executable unconditional (#36971) | [
{
"path": "shell/app/electron_main_delegate_mac.mm",
"patch": "@@ -15,7 +15,6 @@\n #include \"base/strings/sys_string_conversions.h\"\n #include \"content/common/mac_helpers.h\"\n #include \"content/public/common/content_paths.h\"\n-#include \"ppapi/buildflags/buildflags.h\"\n #include \"shell/browser/mac/e... | 2023-01-21T00:42:45 |
vercel/next.js | 6e508d4f93778dbefc34eac1ca12bbf97c266d62 | c613cec5322d5ea57a4333a21bdf5c4d703fa209 | [segment explorer] display navigation error boundaries (#80691) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.tsx",
"patch": "@@ -250,4 +250,10 @@ export const DEV_TOOLS_INFO_RENDER_FILES_STYLES = css`\n background-color: var(--color-blue-300);\n color: var(--color-blue-800);\n }\n+ .segment-explorer-file-label--n... | 2025-06-23T16:08:02 |
nodejs/node | e74dbfb4bda4cd20d97c3be12187945ccb2d4e1a | 8e6901a703766e79254b8f8ebfe441cb0a0eef5f | lib: fix naming convention of `Symbol`
`node.js` prefix is used for global symbol(`Symbol.for`).
So remove `node.js` prefix from `Symbol` usage.
Refs: https://github.com/nodejs/node/blob/main/doc/contributing/using-symbols.md#symbolforstring
PR-URL: https://github.com/nodejs/node/pull/53387
Reviewed-By: Matteo Collin... | [
{
"path": "lib/internal/event_target.js",
"patch": "@@ -65,7 +65,7 @@ const kWeakHandler = Symbol('kWeak');\n const kResistStopPropagation = Symbol('kResistStopPropagation');\n \n const kHybridDispatch = SymbolFor('nodejs.internal.kHybridDispatch');\n-const kRemoveWeakListenerHelper = Symbol('nodejs.interna... | 2024-06-10T14:56:14 |
facebook/react | ea17cc18f458010c89c1bf494be08bb782d034af | 997f52fbb30ec4b777b66edcdd75f594d9fe0c55 | [Fizz][Float] emit viewport meta before preloads (#27201)
Fixes: #27200
preloads for images that appear before the viewport meta may be loaded
twice because the proper device image information is not used with the
preload but is with the image itself. The viewport meta should be
emitted earlier than all preload... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -1920,6 +1920,9 @@ function pushMeta(\n \n if (typeof props.charSet === 'string') {\n return pushSelfClosing(responseState.charsetChunks, props, 'meta');\n+ } else if (props.name === 'viewport') {\n+ ... | 2023-08-07T22:22:48 |
electron/electron | 885c1878d436ee79f0870fa6f46af8727914b6d8 | 5ce8dfdcb57ca961ffc11795d32c756ce703ab3c | test: fix nativeTheme test when system in dark mode (#36943) | [
{
"path": "spec/api-native-theme-spec.ts",
"patch": "@@ -36,6 +36,7 @@ describe('nativeTheme module', () => {\n });\n \n it('should emit the \"updated\" event when it is set and the resulting \"shouldUseDarkColors\" value changes', async () => {\n+ nativeTheme.themeSource = 'light';\n let... | 2023-01-20T02:59:20 |
vercel/next.js | c613cec5322d5ea57a4333a21bdf5c4d703fa209 | 3981cccbe3424931a6c3c13d50692fb20e021b41 | [devtools] storybook: port utils to be reusable (#80726)
Ported utils of errors and useOverlayReducer to be reusable, e.g., DevTools panel Issues tab. | [
{
"path": "packages/next/src/next-devtools/dev-overlay/container/errors.stories.tsx",
"patch": "@@ -2,8 +2,8 @@ import type { Meta, StoryObj } from '@storybook/react'\n \n import { Errors } from './errors'\n import { withShadowPortal } from '../storybook/with-shadow-portal'\n-import type { ReadyRuntimeError... | 2025-06-23T16:05:35 |
golang/go | 895bcf178d86449f6d96a0bd19dc4e4b0a3d3c59 | 2620cc1caae099c5947bfd5ff2c10bd4a3b628fd | crypto/tls: reject empty TLS 1.3 session ticket
While not clearly motivated by normative language in RFC 8446 it seems
clear that an empty opaque ticket value is non-operable, and so we
should reject it with an appropriate alert/error.
This allows removing the SendEmptySessionTicket-TLS13 BoGo test from the
bogo excl... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -38,8 +38,6 @@\n \"PostQuantumNotEnabledByDefaultInClients\": \"We do enable it by default!\",\n \"*-Kyber-TLS13\": \"We don't support Kyber, only ML-KEM (BoGo bug ignoring AllCurves?)\",\n \n- \"SendEmptySessionTicket-TLS13\":... | 2025-02-17T16:45:23 |
nodejs/node | 8e6901a703766e79254b8f8ebfe441cb0a0eef5f | 2dea6a4520b8f235465f638e25ed89cedfc8bf81 | stream: make sure _destroy is called
PR-URL: https://github.com/nodejs/node/pull/53213
Fixes: https://github.com/nodejs/node/issues/51987
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "lib/internal/streams/compose.js",
"patch": "@@ -238,13 +238,14 @@ module.exports = function compose(...streams) {\n ondrain = null;\n onfinish = null;\n \n+ if (isNodeStream(tail)) {\n+ destroyer(tail, err);\n+ }\n+\n if (onclose === null) {\n callback(err);\n } e... | 2024-06-10T14:56:04 |
facebook/react | 43677da7e465d89ac33bc5603d6fba83c50f1bc1 | e33c9c43ccd36113f2d85d700f231679c7068612 | Add instructions for UpdateExpression variants
Adds new instructions to accurately model UpdateExpression semantics, since
`x++` is un-intuitively not the same as `x = x + 1`. There are a few different
ways to model the combination of prefix/postfix and increment/decrement:
* One instruction for all combinations ... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -1753,56 +1753,43 @@ function lowerExpression(\n });\n return { kind: \"UnsupportedNode\", node: exprNode, loc: exprLoc };\n }\n- if (expr.node.prefix) {\n- builder.errors.push(... | 2023-08-07T20:50:32 |
electron/electron | 5ce8dfdcb57ca961ffc11795d32c756ce703ab3c | 4e4ae9ff530257b350eddfd0b4b970726f07c95f | docs: Change factuality and word choice in app.runningUnderARM64Translation (#36947)
Change factuality and word choice.
Added "or WOW" to the phrase, "when they are running the x64 version under Rosetta", to reflect the use of a supported platform, Windows, as a possible scenario.
Changed the wording of that same ... | [
{
"path": "docs/api/app.md",
"patch": "@@ -1566,5 +1566,4 @@ an ARM64 translator (like the macOS\n or Windows [WOW](https://en.wikipedia.org/wiki/Windows_on_Windows)).\n \n You can use this property to prompt users to download the arm64 version of\n-your application when they are running the x64 version und... | 2023-01-19T20:00:06 |
vercel/next.js | 3981cccbe3424931a6c3c13d50692fb20e021b41 | a2961d9930d0fe8ca4283f04c46907d4eaf3e052 | [segment explorer] handle custom global-error segment (#80685) | [
{
"path": "packages/next/src/client/app-index.tsx",
"patch": "@@ -171,7 +171,7 @@ function ServerRoot({\n <AppRouter\n gracefullyDegrade={isBot(window.navigator.userAgent)}\n actionQueue={actionQueue}\n- globalErrorComponentAndStyles={initialRSCPayload.G}\n+ globalErrorState={initi... | 2025-06-23T15:36:20 |
golang/go | e256e640604bff7916ef09451da7f4a6423152a6 | c3e7d5f5cee29669d5d824f697e3b16a08815df0 | debug/dwarf: fix problem with DWARF 5 and Seek method
When clients use debug/dwarf to examine DWARF 5 binaries, we can run
into problems when the Seek() method is used to skip ahead from a DIE
in one compilation unit to a DIE in another unit. The problem here is
that it is common for DWARF 5 comp units to have attribu... | [
{
"path": "src/debug/dwarf/entry.go",
"patch": "@@ -426,16 +426,6 @@ func (b *buf) entry(cu *Entry, u *unit) *Entry {\n \t\tField: make([]Field, len(a.field)),\n \t}\n \n-\t// If we are currently parsing the compilation unit,\n-\t// we can't evaluate Addrx or Strx until we've seen the\n-\t// relevant bas... | 2025-03-07T19:16:28 |
facebook/react | e33c9c43ccd36113f2d85d700f231679c7068612 | ff2f2e068540a29d82b5ba7a970444621007f5a5 | [ssa] Patch: propagate every rewrite to function expressions
---
#1899 only propagated eliminated phi nodes to function expressions on the first
iteration through blocks. However, this was buggy as later iterations could
introduce rewrites that need to be propagated.
[playground
repro](https://0xeac7-forget.ve... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/SSA/EliminateRedundantPhi.ts",
"patch": "@@ -46,7 +46,6 @@ export function eliminateRedundantPhi(\n // compare to see if any new rewrites were added in that iteration.\n let size = rewrites.size;\n do {\n- const isFirstIteration = !h... | 2023-08-07T21:41:35 |
nodejs/node | 2dea6a4520b8f235465f638e25ed89cedfc8bf81 | db09f62c7987c2ce5496811135f6194b40456616 | test: fix test-http-server-keepalive-req-gc
This changes adds a second explicit gc call in the test. Without this
call, the test relies on gc eventually happening based, since the
first call doesn't free the object.
Relying on gc to eventually happen prevents changing GC heuristics
unrelated to this test.
The gc call ... | [
{
"path": "test/parallel/test-http-server-keepalive-req-gc.js",
"patch": "@@ -14,9 +14,10 @@ const server = createServer(common.mustCall((req, res) => {\n onGC(req, { ongc: common.mustCall(() => { server.close(); }) });\n req.resume();\n req.on('end', common.mustCall(() => {\n- setImmediate(() => {... | 2024-05-28T21:47:19 |
rust-lang/rust | 2b0cce040dc698332f3602db3dc7b7e5cf352b59 | f60a0f1bcc5a2a6dd8eb2d2021da79b40f5fbae9 | Ignore all debuginfo tests for LLDB that we do not run in CI
We only run LLDB 1500 in CI. Any test with a min-lldb-version above that
is currently ignored. It's not clear any of these tests actually work
with that LLDB version, and they definitely don't work on LLDB ~2100.
So, ignore them until we fix debuginfo testin... | [
{
"path": "tests/debuginfo/borrowed-enum.rs",
"patch": "@@ -1,4 +1,5 @@\n-//@ min-lldb-version: 1800\n+// LLDB 1800+ tests were not tested in CI, broke, and now are disabled\n+//@ ignore-lldb\n \n //@ compile-flags:-g\n //@ disable-gdb-pretty-printers",
"additions": 2,
"deletions": 1,
"language"... | 2026-02-03T02:13:43 |
vercel/next.js | 7c6cd86aa81e5e84db520edd92b44df2d08451f0 | 5771ce12f8a0ca3ee0b1e82df6c78cc9f4ced1dd | [devtools] fix: adjust width for responsiveness (#80777)
It was left out of https://github.com/vercel/next.js/pull/80732, I was fooled by the offline storybook. | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel.tsx",
"patch": "@@ -159,12 +159,14 @@ export const DEVTOOLS_PANEL_STYLES = css`\n [data-nextjs-devtools-panel-overlay] {\n padding: initial;\n margin: auto;\n+ width: 100%;\n /* TODO: This is for... | 2025-06-23T13:49:17 |
golang/go | c3e7d5f5cee29669d5d824f697e3b16a08815df0 | c40a3731f45047c3b903cafae287ea8e5762e062 | debug/dwarf: refactor entry DIE reading helper
Simplify the signature of the "entry()" buf method to accept a unit as
opposed to a collection of unit components (version, atable, etc). No
change in functionality, this is a pure refactoring that will be
needed in subsequent patch.
Change-Id: I688def34e39d36b6a62733bc7... | [
{
"path": "src/debug/dwarf/entry.go",
"patch": "@@ -407,7 +407,8 @@ type Offset uint32\n \n // Entry reads a single entry from buf, decoding\n // according to the given abbreviation table.\n-func (b *buf) entry(cu *Entry, atab abbrevTable, ubase Offset, vers int) *Entry {\n+func (b *buf) entry(cu *Entry, u ... | 2025-03-07T18:34:55 |
facebook/react | ff2f2e068540a29d82b5ba7a970444621007f5a5 | adfae63f208b1e8e98c1923a2ac8e26686173253 | [patch] Gate EliminatePhi fix behind feature flag | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/SSA/EliminateRedundantPhi.ts",
"patch": "@@ -106,19 +106,20 @@ export function eliminateRedundantPhi(\n for (const place of eachInstructionOperand(instr)) {\n rewritePlace(place, rewrites);\n }\n- if (instr.va... | 2023-08-07T21:41:34 |
nodejs/node | ce531af0c27acf29dd05ab2fac19b4af88f8780d | 83d0cfec0a1e8c065a4e5e4cc87d1b48ac6c03c4 | test: update TLS tests for OpenSSL 3.2
Update the following TLS tests to account for error code changes
in OpenSSL 3.2 and later.
- `parallel/test-tls-empty-sni-context`
- `parallel/test-tls-psk-circuit`
PR-URL: https://github.com/nodejs/node/pull/53384
Refs: https://github.com/nodejs/node/issues/53382
Refs: https://... | [
{
"path": "test/common/index.js",
"patch": "@@ -63,6 +63,9 @@ const hasOpenSSL3 = hasCrypto &&\n const hasOpenSSL31 = hasCrypto &&\n require('crypto').constants.OPENSSL_VERSION_NUMBER >= 0x30100000;\n \n+const hasOpenSSL32 = hasCrypto &&\n+ require('crypto').constants.OPENSSL_VERSION_NUMBER >= 0x3020... | 2024-06-09T16:50:08 |
facebook/react | 997f52fbb30ec4b777b66edcdd75f594d9fe0c55 | 493f72b0a7111b601c16b8ad8bc2649d82c184a0 | fix[devtools/updateFiberRecursively]: mount suspense fallback set in timed out case (#27147)
Fixes https://github.com/facebook/react/issues/26793.
I have received a constantly reproducible example of the error, that is
mentioned in the issue above.
When starting `Reload and Profile` in DevTools, React reports an ... | [
{
"path": "packages/react-devtools-shared/src/backend/renderer.js",
"patch": "@@ -2345,6 +2345,18 @@ export function attach(\n const prevFallbackChildSet = prevFiberChild\n ? prevFiberChild.sibling\n : null;\n+\n+ if (prevFallbackChildSet == null && nextFallbackChildSet != null) {... | 2023-08-03T19:02:18 |
vercel/next.js | 7fea36c002007312dda3209214af24644abd162b | 5e5a623cb5fc0adec57c5f9d1983fa82ba8e1bf1 | fix(turbopack): Fix usage of `HELPERS` of SWC (#80791)
### What?
Convert `Helpers` to `HelperData`, which is `: Send + Sync` so safe to
pass around between threads.
### Why?
It's not `Send + Sync`, so we should not pass it between threads like
this | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/parse.rs",
"patch": "@@ -390,6 +390,8 @@ async fn parse_file_content(\n EcmascriptModuleAssetType::Typescript { .. }\n | EcmascriptModuleAssetType::TypescriptDeclaration\n );\n+\n+ let helpers=Hel... | 2025-06-23T12:58:20 |
golang/go | c40a3731f45047c3b903cafae287ea8e5762e062 | c3950f84303ad05d0ae1ff734ced85ab803e658b | internal/godebugs: add decoratemappings as an opaque godebug setting
This adds a new godebug to control whether the runtime applies the
anonymous memory mapping annotations added in https://go.dev/cl/646095.
It is enabled by default.
This has several effects:
* The feature is only enabled by default when the main go... | [
{
"path": "doc/godebug.md",
"patch": "@@ -153,6 +153,17 @@ for example,\n see the [runtime documentation](/pkg/runtime#hdr-Environment_Variables)\n and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n+### Go 1.25\n+\n+Go 1.25 added a new `decoratemappings` setting that controls wheth... | 2025-03-07T18:53:34 |
nodejs/node | 50695e5de14ccd8255537972181bbc9a1f44368e | 5a446ccf3750b9bb649c25bd7a71577b87ceae6c | stream: prevent stream unexpected pause when highWaterMark set to 0
Co-authored-by: Robert Nagy <ronagy@icloud.com>
PR-URL: https://github.com/nodejs/node/pull/53261
Fixes: https://github.com/nodejs/node/issues/51930
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gma... | [
{
"path": "lib/internal/streams/writable.js",
"patch": "@@ -565,7 +565,7 @@ function writeOrBuffer(stream, state, chunk, encoding, callback) {\n state[kState] &= ~kSync;\n }\n \n- const ret = state.length < state.highWaterMark;\n+ const ret = state.length < state.highWaterMark || state.length === 0;... | 2024-06-08T02:04:40 |
electron/electron | 55c818d0a84400621c0817c8a2e4cc17d9eb24c8 | 9630e26e6dec503bc82ca4b9f87ebf0344311ca5 | fix: `<datalist>` dropdown positioning (#36934)
fix: datalist dropdown positioning | [
{
"path": "shell/browser/ui/autofill_popup.cc",
"patch": "@@ -33,12 +33,14 @@\n \n namespace electron {\n \n+namespace {\n+\n void CalculatePopupXAndWidthHorizontallyCentered(\n int popup_preferred_width,\n const gfx::Rect& content_area_bounds,\n const gfx::Rect& element_bounds,\n bool is_rt... | 2023-01-19T18:44:23 |
vercel/next.js | 5e5a623cb5fc0adec57c5f9d1983fa82ba8e1bf1 | 9df0c8763cd151ddda795957e62d09e83c87b972 | chore: Dynamic error does not change dynamicParams (#80796)
Closes:
https://linear.app/vercel/issue/DOC-4725/docs-dynamic-dynamicparams
Fixes: https://github.com/vercel/next.js/issues/80749 | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/route-segment-config.mdx",
"patch": "@@ -59,8 +59,7 @@ export const dynamic = 'auto'\n - **`'error'`**: Force static rendering and cache the data of a layout or page by causing an error if any components use [Dynamic APIs](/docs/app/getting-started... | 2025-06-23T12:50:55 |
golang/go | c3950f84303ad05d0ae1ff734ced85ab803e658b | 22d5d09f1e39bf0ef77bfcf80388c676e7e91574 | crypto/pbkdf2: fix code example for Key
The type for password is not `[]byte` (as it was in golang.org/x/crypto/pbkdf2), it is `string`.
Change-Id: I914a81a500a6d93f994b587814f26285aef7b96d
GitHub-Last-Rev: 5ec752e0def59c1058c649b4543f296467691813
GitHub-Pull-Request: golang/go#72746
Reviewed-on: https://go-review.go... | [
{
"path": "src/crypto/pbkdf2/pbkdf2.go",
"patch": "@@ -27,7 +27,7 @@ import (\n // can get a derived key for e.g. AES-256 (which needs a 32-byte key) by\n // doing:\n //\n-//\tdk := pbkdf2.Key(sha1.New, []byte(\"some password\"), salt, 4096, 32)\n+//\tdk := pbkdf2.Key(sha1.New, \"some password\", salt, 4096... | 2025-03-08T17:30:06 |
nodejs/node | 5a446ccf3750b9bb649c25bd7a71577b87ceae6c | d6921500cc5ffed898252133e2e6be41d92d0205 | build: fix spacing before NINJA_ARGS
PR-URL: https://github.com/nodejs/node/pull/53181
Fixes: https://github.com/nodejs/node/issues/53176
Refs: https://github.com/nodejs/node/issues/53176
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Luigi Pinca <l... | [
{
"path": "Makefile",
"patch": "@@ -147,7 +147,7 @@ ifdef JOBS\n \tNINJA_ARGS := $(NINJA_ARGS) -j$(JOBS)\n else\n \tIMMEDIATE_NINJA_ARGS := $(NINJA_ARGS)\n-\tNINJA_ARGS = $(IMMEDIATE_NINJA_ARGS) $(filter -j%,$(MAKEFLAGS))\n+\tNINJA_ARGS = $(filter -j%,$(MAKEFLAGS))$(IMMEDIATE_NINJA_ARGS)\n endif\n $(NODE_EX... | 2024-06-08T01:08:22 |
vercel/next.js | 3d2150b73db346d5a54a5567d71564571d3dcec8 | 3e24a9f25140396d83b957e662d169b3862da6dd | [segment-explorer] Fix segment alignment (#80797) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.tsx",
"patch": "@@ -236,7 +236,6 @@ export const DEV_TOOLS_INFO_RENDER_FILES_STYLES = css`\n padding: 2px 6px;\n border-radius: 16px;\n font-size: var(--size-12);\n- line-height: 16px;\n font-weigh... | 2025-06-23T11:59:41 |
golang/go | 22d5d09f1e39bf0ef77bfcf80388c676e7e91574 | bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 | net/http/httputil: close hijacked connections when CloseWrite not available
CL 637939 changed ReverseProxy's handling of hijacked connections:
After copying all data in one direction, it half-closes the outbound
connection rather than fully closing both.
Revert to the old behavior when the outbound connection does no... | [
{
"path": "src/net/http/httputil/reverseproxy.go",
"patch": "@@ -794,16 +794,19 @@ func (p *ReverseProxy) handleUpgradeResponse(rw http.ResponseWriter, req *http.R\n \tgo spc.copyToBackend(errc)\n \tgo spc.copyFromBackend(errc)\n \n-\t// wait until both copy functions have sent on the error channel\n+\t// W... | 2025-03-06T21:24:58 |
nodejs/node | 390740460ebff37395a041fbf85ff3ebcf86b5d1 | 5731e2b3460c02971c2d32865e17519113a95847 | doc: fix mistakes in the module `load` hook api
PR-URL: https://github.com/nodejs/node/pull/53349
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "doc/api/module.md",
"patch": "@@ -601,12 +601,12 @@ changes:\n * `importAttributes` {Object}\n * `nextLoad` {Function} The subsequent `load` hook in the chain, or the\n Node.js default `load` hook after the last user-supplied `load` hook\n- * `specifier` {string}\n+ * `url` {string}\n * `... | 2024-06-07T22:03:07 |
facebook/react | 015029dc655d0593a470bb4bcefd08e4126aaf48 | 50b09542790824f8d973ad265e49aab41cf8e954 | [patch] Fix for constant propagation bug in VR Store
---
Changes in `@enableOptimizeFunctionExpressions` caused a bug in the last Forget
sync to VR Store. The repro can be summarized to something like this:
```js
function foo() {
const x = true; // some constant or global
// Add some branching for type inf... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/SSA/EliminateRedundantPhi.ts",
"patch": "@@ -27,9 +27,13 @@ import {\n * and phis rewrite all their identifiers based on this table. The algorithm loops over the CFG repeatedly\n * until there are no new rewrites: for a CFG without back-edg... | 2023-08-02T21:30:57 |
rust-lang/rust | a2fa6185513bffff922988979d7ea2a7704767f7 | 670fec6bbd14cada71c85b4af9f92c3b48d37751 | sembr src/compiler-debugging.md | [
{
"path": "src/doc/rustc-dev-guide/src/compiler-debugging.md",
"patch": "@@ -1,14 +1,16 @@\n # Debugging the compiler\n \n-This chapter contains a few tips to debug the compiler. These tips aim to be\n-useful no matter what you are working on. Some of the other chapters have\n+This chapter contains a few t... | 2026-02-02T22:49:52 |
vercel/next.js | 7acb9b6b5adb7953a4892b2b07ae241826d446c4 | e231928cb72587995d0ce995ef7c398c98e1f845 | [turbopack] Update Napi CLI to the latest 2x release (#80697)
## What
Update the napi cli to the latest 2x build 2.18.4
## Why
This will make it easy to pass custom cargo profiles to napi, which will make it easier to enable debug assertions, which will happen in a followup.
Part-of PACK-4578 | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -9,7 +9,7 @@ on:\n workflow_dispatch:\n \n env:\n- NAPI_CLI_VERSION: 2.16.2\n+ NAPI_CLI_VERSION: 2.18.4\n TURBO_VERSION: 2.3.3\n NODE_LTS_VERSION: 20\n CARGO_PROFILE_RELEASE_LTO: 'true'",
"additions": 1,
"deletions": 1,
"... | 2025-06-23T07:30:21 |
golang/go | 705fa920c13e87a580f0fc5bec4e186e1b6f663b | d7e5cd5851f9fea4512c20cf275d979516828521 | crypto/internal/fips140: make Version return latest when not frozen
Fixes #71820
Change-Id: I6a6a46563da281a7b20efc61eefdcbb2e146db33
Reviewed-on: https://go-review.googlesource.com/c/go/+/655795
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Daniel McCarney <da... | [
{
"path": "src/cmd/go/internal/fips140/mkzip.go",
"patch": "@@ -95,13 +95,40 @@ func main() {\n \n \tvar zbuf2 bytes.Buffer\n \tzw := zip.NewWriter(&zbuf2)\n+\tfoundVersion := false\n \tfor _, f := range zr.File {\n \t\t// golang.org/fips140@v1.2.3/dir/file.go ->\n \t\t// golang.org/fips140@v1.2.3/fips140/v... | 2025-03-06T16:08:02 |
nodejs/node | 6ed93b4d69cd43ecbe87ce267afe9ae3b1980413 | 0289e859ef1749751f3a6504a5e3a1a7596a0a92 | lib: expose global CloseEvent
This PR adds `CloseEvent` as a global, which can be disabled
via the --no-experimental-websocket flag.
```js
const ws = new WebSocket('...')
ws.addEventListener('close', (event) => {
assert(event instanceof CloseEvent)
})
```
Fixes: https://github.com/nodejs/node/issues/50275
PR-URL... | [
{
"path": "doc/api/globals.md",
"patch": "@@ -322,6 +322,19 @@ added: v0.0.1\n \n [`clearTimeout`][] is described in the [timers][] section.\n \n+## `CloseEvent`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+<!-- type=global -->\n+\n+The `CloseEvent` class. See [`CloseEvent`][] for more details.\n+\n+A brows... | 2024-06-07T17:54:28 |
facebook/react | 2d8da0d32dc3b5347689b8b58114d4312dafeb1f | 203d5ad43bd9268a52c99aa0abd2b71f155b9695 | [babel] Don't console.error on unknown options
Internally these are considered errors in our pipelines | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts",
"patch": "@@ -108,18 +108,12 @@ export function parsePluginOptions(obj: unknown): PluginOptions {\n if (obj == null || typeof obj !== \"object\") {\n return defaultOptions;\n }\n- const invalidOptions: Array<s... | 2023-08-02T16:34:18 |
rust-lang/rust | ca24637a66fd274087d2393176cf30bd1c1c4943 | ed50cc909ad5e8dc1a8cdf0b16aa805028286ebf | sembr src/backend/debugging.md | [
{
"path": "src/doc/rustc-dev-guide/src/backend/debugging.md",
"patch": "@@ -6,16 +6,16 @@\n [codegen]: ./codegen.md\n \n This section is about debugging compiler bugs in code generation (e.g. why the\n-compiler generated some piece of code or crashed in LLVM). LLVM is a big\n-project on its own that probab... | 2026-02-02T22:12:31 |
golang/go | d7e5cd5851f9fea4512c20cf275d979516828521 | b4a333fea588b0df6f441f0e9838cff9338c71c4 | compress/flate,compress/lzw: fix incorrect godoc links
Fix incorrect godoc links related to the use of the name "Reader" for
different things in the various compress/* packages:
- in compress/flate Reader is the interface describing the underlying reader,
not the decompressor as in other packages, so "returned reade... | [
{
"path": "src/compress/flate/deflate.go",
"patch": "@@ -671,8 +671,8 @@ func NewWriter(w io.Writer, level int) (*Writer, error) {\n // [Writer] with a preset dictionary. The returned [Writer] behaves\n // as if the dictionary had been written to it without producing\n // any compressed output. The compress... | 2025-03-06T08:23:15 |
vercel/next.js | 5cbee8aef9ca95d372ab20486bcb71d0aeabe30f | 8a5545633e97063a1bc45dde0571a6e7a1955da8 | fix: fixed merge driver output, does not expect debugging messages to output on stdout (#80736)
The git merge driver does not expect debugging messages to output on
stdout, and instead requires them to output on stderr. This changes the
`console.log` to a `console.error` to account for this requirement. | [
{
"path": "scripts/merge-errors-json/merge.mjs",
"patch": "@@ -44,7 +44,7 @@ function main() {\n writeJsonSync(currentPath, merged)\n \n const addedCount = Object.keys(merged).length - Object.keys(current).length\n- console.log(\n+ console.error(\n `merge-errors-json: added ${addedCount ... | 2025-06-22T10:33:05 |
electron/electron | b69236d1770d98768b3698760c81388c0ae9e3e2 | b1548c2dbefdcd8f823c18175715fc5d34b09781 | test: fix test for USB device.forget() (#36942) | [
{
"path": "spec/chromium-spec.ts",
"patch": "@@ -3071,7 +3071,7 @@ describe('navigator.usb', () => {\n if (haveDevices) {\n const grantedDevices = await w.webContents.executeJavaScript('navigator.usb.getDevices()');\n if (grantedDevices.length > 0) {\n- const deletedDevice = await w.w... | 2023-01-18T21:30:01 |
nodejs/node | 2740cd4fec4a8ac57d3b4f51daefd8496c622994 | 673511f3bf5c43d3e6ac0e377e0727c422c0c6fc | lib: fix timer leak
PR-URL: https://github.com/nodejs/node/pull/53337
Fixes: https://github.com/nodejs/node/issues/53335
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Feng Yu <F3n67u@outlook.com>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> | [
{
"path": "lib/internal/timers.js",
"patch": "@@ -152,6 +152,11 @@ const timerListQueue = new PriorityQueue(compareTimersLists, setPosition);\n // - value = linked list\n const timerListMap = { __proto__: null };\n \n+// This stores all the known timer async ids to allow users to clearTimeout and\n+// clear... | 2024-06-07T15:51:44 |
facebook/react | 5230e6d8491a21b8c4566d503d05bf05065e5185 | e77d975b169a4e768e2efec2a506eb4a1bd1090d | Add failing test case for ValidateNoSetStateInRender bug
The current heuristic to check if setState is called in render is based on
whether the lambda containing the call to setState has a mutable range that got
extended. This doesn't seem to work in all cases so this validation needs a bit
more work before we can... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-validate-no-set-state-not-all-mutable-range-extensions-are-bad.expect.md",
"patch": "@@ -0,0 +1,39 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const logEvent = useLogging(props.a... | 2023-07-27T21:08:01 |
rust-lang/rust | c7c3266b8a073ad51e6cc1bc65ff344ad33860a6 | f60a0f1bcc5a2a6dd8eb2d2021da79b40f5fbae9 | error on unsized AnonConsts | [
{
"path": "compiler/rustc_hir_typeck/src/lib.rs",
"patch": "@@ -200,6 +200,14 @@ fn typeck_with_inspect<'tcx>(\n let wf_code = ObligationCauseCode::WellFormed(Some(WellFormedLoc::Ty(def_id)));\n fcx.register_wf_obligation(expected_type.into(), body.value.span, wf_code);\n \n+ if let h... | 2026-02-02T19:48:14 |
golang/go | b4a333fea588b0df6f441f0e9838cff9338c71c4 | e0b110b926c47227aa0669b630f5292152945bba | crypto/internal/fips140/bigmod: explicitly clear expanded limbs on reset
Russ Cox noticed that reset was clearing limbs up to the *previous* Nat
size, not up to the new size, because clear(x.limbs) was happening
before the x.limbs[:n] reslice.
That's potentially a severe issue, because it may leave garbage in
x.limbs... | [
{
"path": "src/crypto/internal/fips140/bigmod/nat.go",
"patch": "@@ -96,7 +96,8 @@ func (x *Nat) reset(n int) *Nat {\n \t\tx.limbs = make([]uint, n)\n \t\treturn x\n \t}\n-\tclear(x.limbs)\n+\t// Clear both the returned limbs and the previously used ones.\n+\tclear(x.limbs[:max(n, len(x.limbs))])\n \tx.limb... | 2025-03-05T11:08:35 |
vercel/next.js | 8a5545633e97063a1bc45dde0571a6e7a1955da8 | da46d66667bbd877d651b12c2717b250301f52c0 | fix(turbopack): Do not run `inject_helpers` pass multiple times (#80755)
### What?
Remove `inject_helpers` passes from `apply_transforms`
### Why?
We run `inject_helpers` from `fn parse` anyway, so we don't need to run
it from `apply_transforms`. | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/transform/mod.rs",
"patch": "@@ -10,11 +10,7 @@ use swc_core::{\n ecma::{\n ast::{Module, ModuleItem, Program, Script},\n preset_env::{self, Targets},\n- transforms::{\n- base::{assumptions::Assumptions, helpers::inje... | 2025-06-22T10:31:06 |
electron/electron | b1548c2dbefdcd8f823c18175715fc5d34b09781 | 1d98b27a6643d6b6cbc4d9d426d6d5acc4b45e2a | fix: webview background color on reload (#36920) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1523,13 +1523,15 @@ void WebContents::HandleNewRenderFrame(\n // Set the background color of RenderWidgetHostView.\n auto* web_preferences = WebContentsPreferences::From(web_contents());\n if (web_preferences) {\n- absl::opti... | 2023-01-18T13:46:47 |
nodejs/node | 747ee0913cd9701d89d45cbfd12a59f062b35a03 | a2233c39c830627bf767b517d8768e26fb04ee9e | doc: fix broken link in `static-analysis.md`
Fix broken link in `doc/contributing/static-analysis.md`.
Add a link to the main Node.js Coverity Scan project page.
PR-URL: https://github.com/nodejs/node/pull/53345
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com... | [
{
"path": "doc/contributing/static-analysis.md",
"patch": "@@ -3,14 +3,17 @@\n The project uses Coverity to scan Node.js source code and to report potential\n issues in the C/C++ code base.\n \n-Those who have been added to the Node.js coverity project can receive emails\n+Those who have been added to the [... | 2024-06-07T11:55:16 |
facebook/react | 12e6cee06f64d7640047f60936822dd021b1c0f5 | 20b175fcd5f49e77b4f77e0a2dc1b3f236afde06 | [eslint-plugin] Update hermes-parser to 0.15.0
This includes a fix where the HermesToBabelAdapter was incorrectly outputting a
`ClassMethod` instead of `ClassPrivateMethod` in certain scenarios. This was
causing issues with our eslint plugin as it would crash on any file containing
private methods because a malfor... | [
{
"path": "compiler/forget/packages/eslint-plugin-react-forget/package.json",
"patch": "@@ -17,7 +17,7 @@\n \"@babel/core\": \"^7.19.1\",\n \"@babel/plugin-proposal-private-methods\": \"^7.18.6\",\n \"babel-plugin-react-forget\": \"*\",\n- \"hermes-parser\": \"^0.14.0\"\n+ \"hermes-parser\... | 2023-07-27T15:46:50 |
rust-lang/rust | 93dece9ae76af98e5e2fa6588091242ad5dd1639 | df2a3f8e042301bc6f54f83fdf3b2fba66eec53a | fix: Stale diagnostics with rust-project.json and rustc JSON
PR #18043 changed flycheck to be scoped to the relevant package. This
broke projects using check commands that invoke rustc directly,
because diagnostic JSON from rustc doesn't contain the package ID.
This was visible in the rust-analyzer logs when RA_LOG i... | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs",
"patch": "@@ -740,42 +740,70 @@ impl FlycheckActor {\n flycheck_id = self.id,\n message = diagnostic.message,\n package_id = package_id.as_ref().map(|... | 2026-02-02T16:09:59 |
golang/go | fe9b292b11355af6b5f6e1d9247b88fa134657ed | d43c0f80d80ff274d30e46fa3737deb8863d7094 | go/types,types2: allocate the used* maps in initFiles
As described in the associated comment, we need to reallocate usedVars
and usedPkgNames in initFiles, as they are nilled out at the end of
Checker.Files, which may be called multiple times.
Fixes #72122
Change-Id: I9f6eb86e072d9d43a8720f6a5e86d827de6006a9
Reviewe... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -315,6 +315,13 @@ func (check *Checker) initFiles(files []*syntax.File) {\n \tcheck.objPath = nil\n \tcheck.cleaners = nil\n \n+\t// We must initialize usedVars and usedPkgNames both here and in NewChecker,\n+\t// because initFiles is not ca... | 2025-03-07T18:13:51 |
vercel/next.js | 322adb9835e6cadf3b33c9963ac2c1953581195a | 992d507c4ddd4f20ab3760fe91c42279d132bc03 | [devtools] Fix Turbopack indicator (#80753) | [
{
"path": "packages/next/next-devtools.webpack-config.js",
"patch": "@@ -18,7 +18,6 @@ function shouldIgnorePath(modulePath) {\n */\n module.exports = ({ dev, ...rest }) => {\n const experimental = false\n- const turbo = false\n \n const bundledReactChannel = experimental ? '-experimental' : ''\n \n@@... | 2025-06-22T08:13:42 |
electron/electron | a9e7bb0027d6fc29a864d41fcd76cadd61a01e72 | ad1a09bb10870a73de95232d97886ae273226242 | fix: Cmd+Tab not working when exiting kiosk mode (#36854) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1030,9 +1030,12 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n is_kiosk_ = true;\n SetFullScreen(true);\n } else if (!kiosk && is_kiosk_) {\n- [NSApp setPresentationOptions:kiosk_options_];\n is_kiosk_ = false;\n ... | 2023-01-16T09:06:43 |
nodejs/node | 479b8e5232d10533b7bcb785d19b27a9c423c58f | 68c9f554ffa2fab1ef3b6466c51491371f0dd158 | repl: fix await object patterns without values
fix lint issue
PR-URL: https://github.com/nodejs/node/pull/53331
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com> | [
{
"path": "lib/internal/repl/await.js",
"patch": "@@ -104,7 +104,7 @@ const visitorsWithoutAncestors = {\n break;\n case 'ObjectPattern':\n ArrayPrototypeForEach(node.properties, (property) => {\n- registerVariableDeclarationIdentifiers(property.value);\n+ ... | 2024-06-07T01:24:32 |
facebook/react | 8405d8644fd20758e422aa4fc58ea4a50df5ee3e | 6912c31056651e2144a9b69d09ed3797dba60079 | [eslint] Add plugin-proposal-private-methods
There was a bug in our internal Hermes to Babel adapter which caused some
malformed AST to be constructed, which babel would then validate as being
incorrect. That bug was fixed, but we still have to add this plugin so that
private class methods can be parsed by babel. ... | [
{
"path": "compiler/forget/packages/eslint-plugin-react-forget/package.json",
"patch": "@@ -15,6 +15,7 @@\n },\n \"dependencies\": {\n \"@babel/core\": \"^7.19.1\",\n+ \"@babel/plugin-proposal-private-methods\": \"^7.18.6\",\n \"babel-plugin-react-forget\": \"*\",\n \"hermes-parser\": \"^... | 2023-07-27T14:52:28 |
golang/go | d43c0f80d80ff274d30e46fa3737deb8863d7094 | 8a7742e78c8f32fcfe4d7cbcfa2f423c8ac08f29 | net: add comment about blocking to Conn.Close
Fixes #18187
Change-Id: I3d0119838ddbfb99a067ba563e5d247f574ef841
Reviewed-on: https://go-review.googlesource.com/c/go/+/655517
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-b... | [
{
"path": "src/net/net.go",
"patch": "@@ -134,6 +134,8 @@ type Conn interface {\n \n \t// Close closes the connection.\n \t// Any blocked Read or Write operations will be unblocked and return errors.\n+\t// Close may or may not block until any buffered data is sent;\n+\t// for TCP connections see [*TCPConn.... | 2025-03-06T22:52:02 |
vercel/next.js | 4a4715e76105bd962e9a02e4bbcaf14d4034b4c7 | e830e85fd0e5f95d8e3fe83d2351bdd5a87b6781 | feat(turbopack): Print a warning about performance when starting with an invalidated cache (#80631)
We want to show a warning to the user when we start up with an invalidated cache, letting them know why `next dev` might be a little slower than usual.
This is done by writing a JSON-encoded `reason_code` value to the ... | [
{
"path": "crates/napi/src/next_api/project.rs",
"patch": "@@ -35,6 +35,7 @@ use turbo_tasks::{\n message_queue::{CompilationEvent, Severity, TimingEvent},\n trace::TraceRawVcs,\n };\n+use turbo_tasks_backend::db_invalidation::invalidation_reasons;\n use turbo_tasks_fs::{\n DiskFileSystem, FileC... | 2025-06-20T23:01:07 |
facebook/react | f21270a97d531c45e7f57960a5436a1fd9e9c35c | 90c3a3866d59c76b504d5e6c87a64a71ee6641d0 | [rust] Complete estree through ES2021
Adds more AST types to handle the full ES2021 spec. At least, in theory I
defined the schema correctly, and we'll have to just fix any bugs as we
encounter them. | [
{
"path": "compiler/forget/crates/forget_estree/src/generated.rs",
"patch": "@@ -36,6 +36,11 @@ pub struct RegExpValue {\n pub pattern: String,\n pub flags: String,\n }\n+#[derive(Serialize, Deserialize, Clone, Debug)]\n+pub struct TemplateElementValue {\n+ pub cooked: Option<String>,\n+ pub r... | 2023-07-25T22:58:58 |
nodejs/node | 35b8e5cb0c9890e30cd552be348cdee1aaa6d348 | 5469d04f8f9c6e1dc9eadc9771ec04519d4ecded | Revert "vm,src: add property query interceptors"
This reverts commit d1f18b0bf16efbc1e54ba04a54735ce4683cb936.
Closes: https://github.com/nodejs/node/issues/53346
PR-URL: https://github.com/nodejs/node/pull/53348
Fixes: https://github.com/nodejs/node/issues/53346
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By... | [
{
"path": "src/node_contextify.cc",
"patch": "@@ -51,7 +51,6 @@ using v8::FunctionTemplate;\n using v8::HandleScope;\n using v8::IndexedPropertyHandlerConfiguration;\n using v8::Int32;\n-using v8::Integer;\n using v8::Intercepted;\n using v8::Isolate;\n using v8::Just;\n@@ -177,22 +176,20 @@ void Contextify... | 2024-06-06T06:51:29 |
golang/go | 232dfd226bb09b03d2218055d5c8c2c6b2c67ac2 | 5af3658eaa4b6bb9e66fcb4ac426207359628477 | go/types, types2: rename errorCause to typeError
Change-Id: Ib8a63cdaa12dacb5223318a7166fe3dfdac71a45
Reviewed-on: https://go-review.googlesource.com/c/go/+/654655
Reviewed-by: Robert Griesemer <gri@google.com>
Auto-Submit: Robert Griesemer <gri@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou... | [
{
"path": "src/cmd/compile/internal/types2/call.go",
"patch": "@@ -244,9 +244,9 @@ func (check *Checker) callExpr(x *operand, call *syntax.CallExpr) exprKind {\n \n \t// If the operand type is a type parameter, all types in its type set\n \t// must have a common underlying type, which must be a signature.\n... | 2025-03-04T17:51:41 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.