repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | 6bd5741a4c600ee9a48dfa5244f0c4116b718404 | fbdd994166007349920592822e659d98b2d94ab6 | crypto/tls: add ConnectionState.CurveID
This required adding a new field to SessionState for TLS 1.0–1.2, since
the key exchange is not repeated on resumption. The additional field is
unfortunately not backwards compatible because current Go versions check
that the encoding has no extra data at the end, but will cause... | [
{
"path": "api/next/67516.txt",
"patch": "@@ -0,0 +1 @@\n+pkg crypto/tls, type ConnectionState struct, CurveID CurveID #67516",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/crypto/tls/67516.md",
"patch": "@@ -0,0 +1,2 @@\n+The new ... | 2025-02-27T13:01:13 |
nodejs/node | 2068c4083bd8672175a434bc0774d1be72a284a5 | 4c730aed7f825af1691740663d599e9de5958f89 | tools: fix skip detection of test runner output
Fix the Python test harness so that it no longer treats the `# skipped`
part of the summary at the end of the built-in test runner output as
marking the test as skipped.
PR-URL: https://github.com/nodejs/node/pull/53545
Fixes: https://github.com/nodejs/node/issues/50346... | [
{
"path": "tools/test.py",
"patch": "@@ -83,7 +83,7 @@ def get_module(name, path):\n \n \n logger = logging.getLogger('testrunner')\n-skip_regex = re.compile(r'# SKIP\\S*\\s+(.*)', re.IGNORECASE)\n+skip_regex = re.compile(r'(?:\\d+\\.\\.\\d+|ok|not ok).*# SKIP\\S*\\s+(.*)', re.IGNORECASE)\n \n VERBOSE = Fal... | 2024-06-24T13:05:56 |
vercel/next.js | ac51a18d626d899d4e1512ff5a803eeb51a9109d | 0e73aeea6a59f0f468f07c130882a8c0d1490c05 | Fix PPR no fallback case (#80908)
When we are resuming with postponed state we don't handle SSG behavior
so this ensures we only trigger the `NoFallback` case if we have created
a cache key. | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -186,12 +186,6 @@ export async function handler(\n prerenderManifest.routes[normalizedSrcPage]\n )\n \n- // if the page is dynamicParams: false and this pathname wasn't prerender\n- // trigger the no fallback handling\n- if (... | 2025-06-25T20:58:33 |
facebook/react | dafa4687659d6ae33a90b80ba5e2e92cb73a077d | bfb7d2bfbd5a8fe2906cf42a5a4a448406c741d7 | [rust][sema] Allow defining/resolving known globals
Adds an option to pass a list of known globals into the semantic analyzer so
that references to globals can be checked. As a follow-up we'll need to
distinguish between different types of semantic analysis errors, so that callers
which don't want to validate glob... | [
{
"path": "compiler/forget/crates/forget_fixtures/tests/fixtures_test.rs",
"patch": "@@ -21,7 +21,7 @@ fn fixtures() {\n \n let mut output = String::new();\n \n- let mut analysis = analyze(&ast);\n+ let mut analysis = analyze(&ast, Default::default());\n let diagnostics = analy... | 2023-08-16T23:44:40 |
electron/electron | 01f1522cbdd44119f88fd80f7dc09bc0339b9582 | a37f5723883cd60876e6dc91016609bc73b23259 | chore: change undocumented protocol.registerProtocol to detect body type (#36595)
* feat: add protocol.registerProtocol
* remove wip handleProtocol code
* lint
* Update shell/browser/net/electron_url_loader_factory.h
Co-authored-by: Cheng Zhao <zcbenz@gmail.com>
* fix
---------
Co-authored-by: Joh... | [
{
"path": "shell/browser/net/electron_url_loader_factory.cc",
"patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/browser/net/electron_url_loader_factory.h\"\n \n+#include <list>\n #include <memory>\n #include <string>\n #include <utility>\n@@ -81,6 +82,19 @@ bool ResponseMustBeObject(ProtocolType type) {\n }... | 2023-02-13T07:48:30 |
golang/go | 8cdef129fb078a118c3b5032ea7e0b103bf61995 | b143c981693a0f405f16eade1cccf4933fde8e21 | cmd/link: only check PIE size difference when the linkmode is the same
Currently we check the size difference between non-PIE and PIE binaries
without specifying a linkmode (and that is presumed to be internal).
However, on some platforms (like openbsd/arm64), the use of
-buildmode=pie results in external linking. Ens... | [
{
"path": "src/cmd/link/elf_test.go",
"patch": "@@ -357,16 +357,14 @@ func TestPIESize(t *testing.T) {\n \t\t}\n \t}\n \n-\tfor _, external := range []bool{false, true} {\n-\t\texternal := external\n-\n-\t\tname := \"TestPieSize-\"\n-\t\tif external {\n-\t\t\tname += \"external\"\n-\t\t} else {\n-\t\t\tname... | 2025-03-12T13:39:27 |
vercel/next.js | 34c064e734ddbeb699e844b1fd91734784b3fa57 | 55ceac16f3fce48b53cb845575cf74b9fd7b1af4 | fix(test/integration): Check the right thing when resetting the server-side-dev-errors tests (#80873)
This was asserting that the error still exists after resetting the file back to its original state.
Instead, it should refresh the browser and check that the error was fixed.
Something was causing this to quickly re... | [
{
"path": "test/integration/server-side-dev-errors/test/index.test.js",
"patch": "@@ -4,11 +4,11 @@ import fs from 'fs/promises'\n import { join } from 'path'\n import webdriver from 'next-webdriver'\n import {\n- killApp,\n+ assertNoRedbox,\n findPort,\n+ killApp,\n launchApp,\n retry,\n- assertN... | 2025-06-25T18:04:57 |
nodejs/node | 4c730aed7f825af1691740663d599e9de5958f89 | 296ce1ba2ac7728c6e1b016964b8fe6ba55a6ba4 | deps: V8: cherry-pick 9ebca66a5740
Original commit message:
[rab/gsab] Remove --harmony-rab-gsab (has been on by default for a while)
Bug: v8:11111
Change-Id: Ie74e7737f3e2e8730820cf00f1cbc7ae02b515af
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5516580
Commit-Queue: Marja Hölt... | [
{
"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.15',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n... | 2024-06-23T22:31:33 |
electron/electron | 478ce969143cd8d069ab4def0992e8d5719445cf | 8dc98aeeaee4c827501662325eebcfd97471323a | fix: avoid using v8 on Isolate termination (#35766)
* fix: avoid using v8 on Isolate termination
* chore: refactor for review
---------
Co-authored-by: electron-patch-conflict-fixer[bot] <83340002+electron-patch-conflict-fixer[bot]@users.noreply.github.com> | [
{
"path": "patches/node/.patches",
"patch": "@@ -34,4 +34,5 @@ fix_expose_lookupandcompile_with_parameters.patch\n fix_prevent_changing_functiontemplateinfo_after_publish.patch\n enable_crashpad_linux_node_processes.patch\n allow_embedder_to_control_codegenerationfromstringscallback.patch\n+src_allow_option... | 2023-02-09T08:48:49 |
golang/go | d729053edffdfb17ee947cee8af0d7edc45f6111 | a68bf75d3402412a1946fe1df67f57ca923f1507 | mime/multipart: add helper to build content-disposition header contents
This PR adds an helper FileContentDisposition that builds multipart
Content-Disposition header contents with field name and file name,
escaping quotes and escape characters.
The function is then called in the related helper CreateFormFile.
The ... | [
{
"path": "api/next/46771.txt",
"patch": "@@ -0,0 +1 @@\n+pkg mime/multipart, func FileContentDisposition(string, string) string #46771",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/mime/multipart/46771.md",
"patch": "@@ -0,0 +1,2... | 2025-03-12T21:40:12 |
nodejs/node | cd8e61fe2630906fc53de6ff9b98ef8355533785 | 92a25abca9dd23a723008d88b1ccb63ff40ec9b7 | test: extend env for `test-node-output-errors`
Extend, rather than replace, `env` for `test-node-output-errors` so
that `node` binaries that need `LD_LIBRARY_PATH`, `LIBPATH` or
`DYLD_LIBRARY_PATH` can run.
PR-URL: https://github.com/nodejs/node/pull/53535
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: ... | [
{
"path": "test/parallel/test-node-output-errors.mjs",
"patch": "@@ -6,8 +6,6 @@ import { describe, it } from 'node:test';\n import { pathToFileURL } from 'node:url';\n \n const skipForceColors =\n- process.config.variables.icu_gyp_path !== 'tools/icu/icu-generic.gyp' ||\n- process.config.variables.node_s... | 2024-06-23T18:53:03 |
facebook/react | ade82b8dd956bdaa5b7c47400fba9152c2435756 | 0fb5b61ac6951a492242618e4ace6c1826335efc | [Flight] Refactor emit and process functions (#27234)
Since we no longer have externally configured "process" methods, I just
inlined all of those.
The main thing in this refactor is that I just inlined all the error
branches into just `emitErrorChunk`. I'm not sure why it was split up an
repeated before but thi... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -298,12 +298,7 @@ function serializeThenable(request: Request, thenable: Thenable<any>): number {\n case 'rejected': {\n const x = thenable.reason;\n const digest = logRecoverableError(request, x);\n- if (__DEV__) ... | 2023-08-16T21:04:21 |
electron/electron | df6f99aa7228eb8caf48c011aea1cb0398765ab5 | 00a542358dfd47139776677d33d7147e9c4aa567 | fix: correct redefinition which is invalid C++ (#36096)
* fix: correct redefinition which is invalid C++
See https://stackoverflow.com/a/15538759 for an explanation of class scope.
GCC gives an error when compiling this code: https://godbolt.org/z/sYhc3cMjE
* Update export_gin_v8platform_pageallocator_for_usage... | [
{
"path": "patches/chromium/export_gin_v8platform_pageallocator_for_usage_outside_of_the_gin.patch",
"patch": "@@ -9,26 +9,26 @@ correctly tagged with MAP_JIT we need to use gins page allocator instead\n of the default V8 allocator. This probably can't be usptreamed.\n \n diff --git a/gin/public/v8_platfor... | 2023-02-08T07:03:47 |
vercel/next.js | 3d1e0b3cf506ac2463a16eb4b4a0a160f0e9dd48 | 15fbf92127be7fa7f56eccf155af6f8a15bd0fe9 | [devtools] fix: build error should share the issue content layout (#80850)
Previously, the no issue page was displayed when there was no runtime error. Also, if there was a build error, it would've returned the Terminal only. Therefore, created a layout that behaves similarly to ErrorOverlayLayout and shares across th... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-tab/issues-tab/issues-tab-content-layout.tsx",
"patch": "@@ -0,0 +1,70 @@\n+import type { DebugInfo } from '../../../../../shared/types'\n+import type { ErrorType } from '../../../errors/error-type-label/error-ty... | 2025-06-25T15:09:44 |
golang/go | a68bf75d3402412a1946fe1df67f57ca923f1507 | 485480faaac82e4179f7b56c1c370020157f25a8 | cmd/go: don't write own toolchain line when updating go line
The Go command had a behavior of writing its own toolchain name when
updating the go line in a go.mod (for example when a user runs go get
go@version). This behavior was often undesirable and the toolchain line
was often removed by users before checking in g... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -745,34 +745,25 @@ func UpdateWorkGoVersion(wf *modfile.WorkFile, goVers string) (changed bool) {\n \n \twf.AddGoStmt(goVers)\n \n-\t// We wrote a new go line. For reproducibility,\n-\t// if the toolchain running right now is newer than the new t... | 2025-03-10T17:32:23 |
facebook/react | 796080f4d1797ba2819b736e1e2ce2cfb6512d98 | 2edf66ecdfa31bbae9384b0f8993a0fbe6e0b025 | [rust][sema] Statically detect some TDZ violations
The [temporal dead
zone](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let#temporal_dead_zone_tdz),
often abbreviated TDZ, is the period between the start of its declaring block
and the line that contains the let/const/class declarat... | [
{
"path": "compiler/forget/crates/forget_semantic_analysis/src/analyzer.rs",
"patch": "@@ -7,8 +7,8 @@ use forget_estree::{\n };\n \n use crate::{\n- AstNode, DeclarationKind, Label, LabelId, LabelKind, ReferenceKind, ScopeId, ScopeKind,\n- ScopeManager,\n+ AstNode, DeclarationId, DeclarationKind, ... | 2023-08-16T00:20:34 |
nodejs/node | cba170d8833dbf05fa80df13fa95cceb72067a21 | 45c2e2514f8b1e4eee8b236199677e6910203449 | lib: fix typo in comment
Small update in a realm.js documentation comment to correct `js2c.py`
which was ported to `js2c.cc` and removed.
PR-URL: https://github.com/nodejs/node/pull/53543
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Paolo In... | [
{
"path": "lib/internal/bootstrap/realm.js",
"patch": "@@ -31,7 +31,7 @@\n // Internal JavaScript module loader:\n // - BuiltinModule: a minimal module system used to load the JavaScript core\n // modules found in lib/**/*.js and deps/**/*.js. All core modules are\n-// compiled into the node binary via ... | 2024-06-22T14:46:07 |
electron/electron | 9a0a0a7a46878cc4ade6f678bfa9d7d85013c85b | 6a3cb343267605bbd3a075168742b5c0f4eb0715 | fix: type for received-apns-notification event (#37177) | [
{
"path": "docs/api/push-notifications.md",
"patch": "@@ -26,6 +26,7 @@ The `pushNotification` module emits the following events:\n \n Returns:\n \n+* `event` Event\n * `userInfo` Record<String, any>\n \n Emitted when the app receives a remote notification while running.",
"additions": 1,
"deletions... | 2023-02-08T06:43:29 |
golang/go | 485480faaac82e4179f7b56c1c370020157f25a8 | 955cf0873f7a1c3d54cff34164f81d2b44127c30 | net: deflake recently added TestCloseUnblocksReadUDP
Fixes #72802
Change-Id: I0dd457ef81a354f61c9de306e4609efdbe3d69b4
Reviewed-on: https://go-review.googlesource.com/c/go/+/656857
Auto-Submit: Brad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: Ian Lance Taylor <iant@googl... | [
{
"path": "src/net/net_test.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"net/internal/socktest\"\n \t\"os\"\n \t\"runtime\"\n+\t\"sync\"\n \t\"testing\"\n \t\"time\"\n )\n@@ -511,11 +512,25 @@ func TestCloseUnblocksRead(t *testing.T) {\n // Issue 72770: verify that a blocked UDP read is woken up by a Clo... | 2025-03-12T04:14:01 |
vercel/next.js | 43c094c16edc5dc022797591738e9e34f290e3d6 | 07d36f74089bacd157b9b18cce389b881702faf3 | Turbopack: fix `this` when accessing named properties of namespace (#80896)
Previously, this namespace-import-to-named-import optimization always caused `this` to be unbound for function calls.
Now, it is preserved (if possible. There's nothing we can do when this is scope hoisted together).
```js
import * as R fro... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/references/esm/binding.rs",
"patch": "@@ -21,9 +21,10 @@ use crate::{\n \n #[derive(Hash, Clone, Debug, Serialize, Deserialize, PartialEq, Eq, TraceRawVcs, NonLocalValue)]\n pub struct EsmBinding {\n- pub reference: ResolvedVc<EsmAssetReference>,\n- ... | 2025-06-25T14:00:02 |
facebook/react | 2edf66ecdfa31bbae9384b0f8993a0fbe6e0b025 | 34914796b247b8fd2912fe90ebd301ad7b2fdb74 | [rust][sema] Resolve all references after traversing program
Previously we attempted to resolve each reference at the close of its defining
scope, and if it couldn't be resolved yet we bubbled the unresolved reference up
to the parent scope. That approach isn't ideal for two reasons:
* First, it's inefficient sin... | [
{
"path": "compiler/forget/crates/forget_semantic_analysis/src/analyzer.rs",
"patch": "@@ -14,13 +14,23 @@ use crate::{\n pub fn analyze(ast: &Program) -> ScopeManager {\n let mut analyzer = Analyzer::new(ast);\n analyzer.visit_program(ast);\n- analyzer.manager\n+ analyzer.complete()\n }\n \n ... | 2023-08-15T19:33:45 |
nodejs/node | 6cb940a546c6229218277f35c2311f9781001b3d | d335487e3f39437a5e3cc5a4a07bf253b9d0d505 | build: only generate specified build type files
Release and Debug build configurations can not be shared, only
generate specified configuration in `configure`.
PR-URL: https://github.com/nodejs/node/pull/53511
Fixes: https://github.com/nodejs/node/issues/53446
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Review... | [
{
"path": "configure.py",
"patch": "@@ -2253,7 +2253,7 @@ def make_bin_override():\n gyp_args += ['-Dpython=' + python]\n \n if options.use_ninja:\n- gyp_args += ['-f', 'ninja-' + flavor]\n+ gyp_args += ['-f', 'ninja-' + flavor, '-G', 'config=' + config['BUILDTYPE']]\n elif flavor == 'win' and sys.platfor... | 2024-06-22T08:36:36 |
facebook/react | 875d7175ac4d8d13b6ac038a4dcd2bcd0cb8faa8 | b133b6c0b47f2f124430cc2ab3d3bdee70c6c921 | [rust] cargo fix | [
{
"path": "compiler/forget/crates/forget_estree/src/generated_extensions.rs",
"patch": "@@ -1,6 +1,6 @@\n // Manual extensions to generated types\n use crate::{\n- ArrowFunctionExpression, Function, FunctionDeclaration, FunctionExpression, ImportDeclaration,\n+ ArrowFunctionExpression, Function, Funct... | 2023-08-15T16:31:49 |
electron/electron | 6a3cb343267605bbd3a075168742b5c0f4eb0715 | de607cbcde81cd151cc5a6efa7612bb987936d92 | fix: expose native bindings by process type (#35949) | [
{
"path": "docs/development/creating-api.md",
"patch": "@@ -144,7 +144,7 @@ NODE_LINKED_MODULE_CONTEXT_AWARE(electron_browser_{api_name},Initialize)\n In your [`shell/common/node_bindings.cc`](https://github.com/electron/electron/blob/main/shell/common/node_bindings.cc) file, add your node binding name to E... | 2023-02-08T01:22:18 |
vercel/next.js | f9c9d033add718a40f515350fad7b5fc1538b17f | 6b55cdc89e55f4d33bf63f7c54788932c6b1be58 | [devtools] replace the old error overlay with the issues tab view (#80814) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.tsx",
"patch": "@@ -10,11 +10,10 @@ import {\n } from '../errors/dev-tools-indicator/utils'\n import {\n ACTION_DEVTOOLS_PANEL_TOGGLE,\n- ACTION_ERROR_OVERLAY_TOGGLE,\n- ACTION_ERROR_OVERLAY_CLOSE,\n ... | 2025-06-25T12:45:45 |
rust-lang/rust | d329971fc2356d96d8f8900eb5afe1bb92768543 | 78865ca937ef3b77b214473db78b51ec82e2277a | avoid semicolon suggestion when tail expr is error
add a link to the issue
fix test stderr | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/suggestions.rs",
"patch": "@@ -954,7 +954,9 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n \n let new_obligation =\n self.mk_trait_obligation_with_new_self_ty(obligation.param_env, trait_pred_and_self);\n- if self.p... | 2026-02-03T15:22:14 |
nodejs/node | 167ef1a621c964e270911115b811f0aa88945151 | 53e9106c4b89497bad343ce4eb7b12e4934f02e0 | 2024-06-20, Version 20.15.0 'Iron' (LTS)
Notable changes:
doc:
* add pimterry to collaborators (Tim Perry) https://github.com/nodejs/node/pull/52874
inspector:
* (SEMVER-MINOR) introduce the `--inspect-wait` flag (Kohei Ueno) https://github.com/nodejs/node/pull/52734
test_runner:
* (SEMVER-MINOR) support test p... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -59,7 +59,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.14.0\">20.14.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.15.0\">20.15.0... | 2024-06-17T12:18:32 |
electron/electron | de607cbcde81cd151cc5a6efa7612bb987936d92 | 7abe38b46e86454f17426515b61589e2b4aa5a12 | chore: bump node to v18.14.0 (main) (#37129)
* chore: bump node in DEPS to v18.14.0
* src: add support for externally shared js builtins
https://github.com/nodejs/node/pull/44376
* test: fix test broken under --node-builtin-modules-path
https://github.com/nodejs/node/pull/45894
* build: add option to di... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '111.0.5560.0',\n 'node_version':\n- 'v18.13.0',\n+ 'v18.14.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2023-02-07T20:51:07 |
vercel/next.js | 6b55cdc89e55f4d33bf63f7c54788932c6b1be58 | 9266f20c7814cf96e201acb39cbc6609da5b76a9 | Turbopack: fix chunking context caching (#80862)
### What?
Fixes caching by changing arguments from `Option<RcStr>` to `Vc<Option<RcStr>>`.
This changes the argument from passed by value to passed by reference. This makes a big differences regarding caching when the string value is changing.
`Option<RcStr>`: ... | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -1010,8 +1010,8 @@ impl Project {\n self.project_root_path(),\n self.client_relative_path(),\n rcstr!(\"/ROOT\"),\n- self.next_config().computed_asset_prefix().owned().await?,\n- self.next_conf... | 2025-06-25T12:22:26 |
rust-lang/rust | 6c4abb7fabc807c8e73f72d06a06ca7479c8c397 | 46c86aef65a8529b8c989077ade26d17d2b4c95d | Fix some autodiff tests require Clto=fat | [
{
"path": "tests/run-make/autodiff/type-trees/array-typetree/rmake.rs",
"patch": "@@ -4,6 +4,6 @@\n use run_make_support::{llvm_filecheck, rfs, rustc};\n \n fn main() {\n- rustc().input(\"test.rs\").arg(\"-Zautodiff=Enable\").emit(\"llvm-ir\").run();\n+ rustc().input(\"test.rs\").arg(\"-Zautodiff=Enab... | 2026-02-03T15:58:34 |
facebook/react | 15e0ecaa8f507369a46a0b17fabfd69c60d0f6a2 | f2a1a6a6e4fccb1fb6470f9e61b6ea111bf25a41 | [rust] Convert Hermes source locations to ESTree SourceRange
Teaches the hermes->estree conversion to convert source ranges. This means our
diagnostics now point to the actual source of the error:
<img width="903" alt="Screenshot 2023-08-14 at 5 39 50 PM"
src="https://github.com/facebook/react-forget/assets/64258... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -288,6 +288,7 @@ dependencies = [\n \"forget_utils\",\n \"indexmap\",\n \"insta\",\n+ \"miette\",\n \"serde_json\",\n ]\n ",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "compiler/forget/crates/forget_estree_c... | 2023-08-15T00:36:58 |
nodejs/node | c93e256ee7bb26cd10aee65e6349e605d56f9c80 | 0c1c33a2a3dec06b1cea4f9cff2f9bd757ba23f3 | src: use `args.This()` instead of `Holder`
The latter is deprecated in V8.
Refs: http://crbug.com/333672197
PR-URL: https://github.com/nodejs/node/pull/53474
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: ... | [
{
"path": "doc/api/addons.md",
"patch": "@@ -923,7 +923,7 @@ void MyObject::New(const FunctionCallbackInfo<Value>& args) {\n void MyObject::PlusOne(const FunctionCallbackInfo<Value>& args) {\n Isolate* isolate = args.GetIsolate();\n \n- MyObject* obj = ObjectWrap::Unwrap<MyObject>(args.Holder());\n+ MyO... | 2024-06-18T16:02:42 |
rust-lang/rust | 34ca20198f95ecca2504058fd7bf1a1065053da5 | c53d1279902bf2b4b1d26d4a6e1e19f921ec29cc | fix: Truncate display version of commands consistently
In #20327 we started truncating custom check commands so they render
nicely in the IDE. This was then accidentally undone in
9c18569d0c87d7f643db50b4806b59642762f1c3, and ended up making the
command summary longer (it included full paths).
We ended up with a `Dis... | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs",
"patch": "@@ -22,7 +22,6 @@ use serde_derive::Deserialize;\n pub(crate) use cargo_metadata::diagnostic::{\n Applicability, Diagnostic, DiagnosticCode, DiagnosticLevel, DiagnosticSpan,\n };\n-use toolchain::DISPLAY_COMMAND_IGNORE_E... | 2026-02-03T14:24:16 |
electron/electron | 7abe38b46e86454f17426515b61589e2b4aa5a12 | d17507e3f690cab21495b71bb4e08b4212099618 | build: fix version check in release_dependency_versions.yml (#37155)
* build: fix version check in release_dependency_versions.yml
* chore: also mksnapshot | [
{
"path": ".github/workflows/release_dependency_versions.yml",
"patch": "@@ -14,7 +14,7 @@ jobs:\n - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag: v3\n - name: Trigger New chromedriver Release\n run: |\n- if [[ ${{ github.event.release.tag_name }} =~ ^v\\d+\\.\\... | 2023-02-07T16:38:50 |
vercel/next.js | 2682d817426b35af1c95f91cb55437bcca7902c2 | 65fb743949746af8a1dd38deb1a869fd921310fe | Allow intercepting dynamic routes to be partially prerendered (#80851)
For intercepting dynamic routes we do prerender `.prefetch.rsc`, as well
as `.segment.rsc` files if `clientSegmentCache` is enabled. However, we
omitted adding those routes to the prerender manifest, which resulted in
server errors when looking up ... | [
{
"path": "packages/next/src/build/utils.ts",
"patch": "@@ -69,7 +69,6 @@ import { normalizeAppPath } from '../shared/lib/router/utils/app-paths'\n import { denormalizeAppPagePath } from '../shared/lib/page-path/denormalize-app-path'\n import { RouteKind } from '../server/route-kind'\n import type { PageExt... | 2025-06-25T10:26:51 |
golang/go | 955cf0873f7a1c3d54cff34164f81d2b44127c30 | bec12f153a2ad1b0902857bc1dafc635fc5dc06a | cmd/internal/dwarf: fix bug in inlined func DIE range DWARF 5 info
This patch changes the strategy we use in the compiler for handling
range information for inlined subroutine bodies, fixing a bug in how
this was handled for DWARF 5. The high and lo PC values being emitted
for DW_TAG_inlined_subroutine DIEs were inco... | [
{
"path": "src/cmd/internal/dwarf/dwarf.go",
"patch": "@@ -1295,8 +1295,11 @@ func putInlinedFunc(ctxt Context, s *FnState, callIdx int) error {\n \tic := s.InlCalls.Calls[callIdx]\n \tcallee := ic.AbsFunSym\n \n+\t// For DWARF 5, we always use the ranges form of the abbrev, since\n+\t// it is more compact ... | 2025-03-12T16:05:11 |
facebook/react | 1ad0460693e61646c05d7a214be823ebcf7b6c3a | 2b4a1d86ffa16863ba6e4ccea33151a3abe589c3 | [sprout] Add shared runtime, improve error reporting
---
I added ~20 more tests to Sprout to get more of a feel for what the test
framework would need to support all fixtures. I'm relatively confident that the
approach outlined in [the original workplace
post](https://fburl.com/workplace/ftu8woch) works to migra... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/console-readonly.expect.md",
"patch": "@@ -2,8 +2,10 @@\n ## Input\n \n ```javascript\n+import { shallowCopy } from \"shared-runtime\";\n+\n function Component(props) {\n- const x = makeObject(props);\n+ const x ... | 2023-08-17T17:28:08 |
rust-lang/rust | 27f97d7f7162f8f6c2250e6778e462e3738ed285 | 79a1e77fe34b70de8b9b9e7c44ff251003b70aaf | RwLock: refine documentation to emphasize non-reentrancy guarantees
This addresses the need for clarification brought up in an issue.
Specifically, it notes that some implementations may choose to panic if
they detect deadlock situations during recursive locking attempts for
both `read()` and `write()` calls.
* Pro... | [
{
"path": "library/std/src/sync/poison/rwlock.rs",
"patch": "@@ -56,24 +56,36 @@ use crate::sys::sync as sys;\n /// # Examples\n ///\n /// ```\n-/// use std::sync::RwLock;\n+/// use std::sync::{Arc, RwLock};\n+/// use std::thread;\n+/// use std::time::Duration;\n ///\n-/// let lock = RwLock::new(5);\n+/// l... | 2026-02-03T15:19:56 |
electron/electron | 7dcd97f8644d2c7357009a3428901b838130ddcf | 9ec13afeaff39767538f08102b69ddf03dcfc1fb | fix: enable basic a11y when voice control is active (#37122)
c.f. https://chromium-review.googlesource.com/c/chromium/src/+/2680102 | [
{
"path": "shell/browser/mac/electron_application.mm",
"patch": "@@ -193,6 +193,18 @@ - (void)accessibilitySetValue:(id)value forAttribute:(NSString*)attribute {\n return [super accessibilitySetValue:value forAttribute:attribute];\n }\n \n+- (NSAccessibilityRole)accessibilityRole {\n+ // For non-VoiceOve... | 2023-02-06T11:32:21 |
nodejs/node | 0c1c33a2a3dec06b1cea4f9cff2f9bd757ba23f3 | d2d2797af96feb84e2b3de238e329a481576abd1 | inspector: fix disable async hooks on Debugger.setAsyncCallStackDepth
This was previously calling the enable function by mistake. As a
result, when profiling using Chrome DevTools, the async hooks won't
be turned off properly after receiving Debugger.setAsyncCallStackDepth
with depth 0.
PR-URL: https://github.com/nod... | [
{
"path": "src/async_wrap.cc",
"patch": "@@ -193,6 +193,12 @@ static void SetPromiseHooks(const FunctionCallbackInfo<Value>& args) {\n args[3]->IsFunction() ? args[3].As<Function>() : Local<Function>());\n }\n \n+static void GetPromiseHooks(const FunctionCallbackInfo<Value>& args) {\n+ Environment* e... | 2024-06-18T16:02:25 |
vercel/next.js | b2d6b36145622a42beac1cf161a561f1d8339c27 | ea03ffa8becaa7971e484a1bfaa93396f8f6d779 | Fix preview builds for forks (#80833) | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -37,6 +37,7 @@ jobs:\n - uses: actions/checkout@v4\n with:\n fetch-depth: 1\n+ - run: echo \"${{ github.event.after }}\"\n - name: Setup node\n uses: actions/setup-node@v4\n with:\n@@ -535,7 +... | 2025-06-25T09:38:52 |
golang/go | bec12f153a2ad1b0902857bc1dafc635fc5dc06a | 7e8ceadf85d1b0fc177ef0754f779a7a87b2c2b9 | log/slog: optimize appendKey to reduce allocations
This change introduces a new method, `appendTwoStrings`, which
optimizes the `appendKey` function by avoiding the allocation of a
temporary string (string concatenation of prefix and key). Instead, it
directly appends the prefix and key to the buffer.
Additionally, a... | [
{
"path": "src/log/slog/handler.go",
"patch": "@@ -525,8 +525,7 @@ func (s *handleState) appendError(err error) {\n func (s *handleState) appendKey(key string) {\n \ts.buf.WriteString(s.sep)\n \tif s.prefix != nil && len(*s.prefix) > 0 {\n-\t\t// TODO: optimize by avoiding allocation.\n-\t\ts.appendString(s... | 2024-11-23T13:19:50 |
facebook/react | 5448b33eb01dc334bf3a1beeada77d47902683fb | d6dea6b9b90c790e69dfce7e7f0ceeb9d1bfe5d0 | [yarn workspaces] Add typescript dependencies to tsconfig
---
Previously, I used `yarn workspace build fixture-test-utils` and `yarn workspace
build babel-plugin-react-forget` to recompile dependencies on sprout. However,
tsc supports project references which was intended to solve this problem
https://www.typesc... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/tsconfig.json",
"patch": "@@ -2,7 +2,10 @@\n \"extends\": \"@tsconfig/node16-strictest/tsconfig.json\",\n \"compilerOptions\": {\n \"declaration\": true,\n+ \"rootDir\": \"src\",\n \"outDir\": \"dist\",\n+ // https://github.com/... | 2023-08-16T19:38:30 |
rust-lang/rust | dfc60ae100f424d28bb9d00979e17846335ac8a9 | c4dc07385e9b41ae13e600cbcdea4d3d17bf686b | Distinguish error message for `#[diagnostic::on_const]` on const trait impls | [
{
"path": "compiler/rustc_passes/messages.ftl",
"patch": "@@ -87,6 +87,10 @@ passes_deprecated_annotation_has_no_effect =\n passes_deprecated_attribute =\n deprecated attribute must be paired with either stable or unstable attribute\n \n+passes_diagnostic_diagnostic_on_const_only_for_non_const_trait_imp... | 2026-02-03T15:22:00 |
nodejs/node | 99b01c7105ac6fbd2a4c78df7dbf73353982bfe1 | 3e7129e5d60d4f017ad06c006dec7f95d986095c | meta: fix typo in dependency updates
PR-URL: https://github.com/nodejs/node/pull/53471
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Akhil Marsonya <akhi... | [
{
"path": ".github/workflows/tools.yml",
"patch": "@@ -175,7 +175,7 @@ jobs:\n cat temp-output\n tail -n1 temp-output | grep \"NEW_VERSION=\" >> \"$GITHUB_ENV\" || true\n rm temp-output\n- # libuv update was disabled because of Feb 14, 2024 security releas\... | 2024-06-18T15:28:49 |
vercel/next.js | ea03ffa8becaa7971e484a1bfaa93396f8f6d779 | 20645d0310abdc4fd669a5a4759fde0d19e49b76 | Turbopack: CSS Global Import Validation for Pages (#80585)
## Implement CSS Global Import Validation for Pages
This PR adds validation for CSS imports in the Pages Router to prevent
global CSS imports in invalid modules.
Fixes #
---------
Co-authored-by: Niklas Mischkulnig <4586894+mischnic@users.noreply.github.co... | [
{
"path": "crates/next-api/src/module_graph.rs",
"patch": "@@ -12,13 +12,16 @@ use next_core::{\n };\n use rustc_hash::FxHashMap;\n use tracing::Instrument;\n+use turbo_rcstr::RcStr;\n use turbo_tasks::{\n CollectiblesSource, FxIndexMap, FxIndexSet, ReadRef, ResolvedVc, TryFlatJoinIterExt,\n- TryJoin... | 2025-06-25T08:34:08 |
golang/go | d037ed62bc583af358b2cc5aeb151872a6ba7c2e | 26040b1dd7e4e8f7957b2a918c01f3343249c289 | math/big: simplify, speed up Karatsuba multiplication
The old Karatsuba implementation only operated on lengths that are
a power of two times a number smaller than karatsubaThreshold.
For example, when karatsubaThreshold = 40, multiplying a pair
of 99-word numbers runs karatsuba on the low 96 (= 39<<2) words
and then ... | [
{
"path": "src/math/big/int.go",
"patch": "@@ -181,22 +181,25 @@ func (z *Int) Sub(x, y *Int) *Int {\n \n // Mul sets z to the product x*y and returns z.\n func (z *Int) Mul(x, y *Int) *Int {\n-\treturn z.mul(nil, x, y)\n+\tz.mul(nil, x, y)\n+\treturn z\n }\n \n-func (z *Int) mul(stk *stack, x, y *Int) *Int... | 2025-01-17T22:26:59 |
facebook/react | d6dea6b9b90c790e69dfce7e7f0ceeb9d1bfe5d0 | 9d1a842a833bc16766a2ae34266934cf287949fc | [sprout][fixtures] Annotate some fixtures
---
This PR is an example of how to update fixture to add sprout annotations.
Running with `yarn sprout --verbose --filter` shows the fixture outputs.
```
PASS array-access-assignment
ok [[2],[[2],[],[3]]]
PASS array-expression-spread
ok [0,1,2,3,null,4,5,6,"z... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/array-access-assignment.expect.md",
"patch": "@@ -13,8 +13,8 @@ function foo(a, b, c) {\n \n export const FIXTURE_ENTRYPOINT = {\n fn: foo,\n- params: [\"TodoAdd\"],\n- isComponent: \"TodoAdd\",\n+ params: [1,... | 2023-08-16T19:38:29 |
rust-lang/rust | 4e4192aa48ccb1955b945b0e898decbd73007d27 | 57d2fb136650d05efb3ed3ea33b330bfc85844d5 | Try to fix `rustdoc-gui/globals.goml` flakyness | [
{
"path": "tests/rustdoc-gui/globals.goml",
"patch": "@@ -6,7 +6,7 @@ include: \"utils.goml\"\n // URL query\n go-to: \"file://\" + |DOC_PATH| + \"/test_docs/index.html?search=sa\"\n wait-for: \"#search-tabs\"\n-assert-window-property-false: {\"searchIndex\": null}\n+wait-for-window-property-false: {\"searc... | 2026-02-03T15:07:12 |
nodejs/node | 5909cf3b047f708de6a1373232bfcc899fa97a1d | 26f2cbdd59957e9a33a94ee2e0fdbeb9aadb0be6 | src: fix dynamically linked OpenSSL version
Report the version of OpenSSL that Node.js is running with instead
of the version of OpenSSL that Node.js was compiled against.
PR-URL: https://github.com/nodejs/node/pull/53456
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de> | [
{
"path": "src/node_metadata.cc",
"patch": "@@ -23,7 +23,7 @@\n #endif // NODE_BUNDLED_ZLIB\n \n #if HAVE_OPENSSL\n-#include <openssl/opensslv.h>\n+#include <openssl/crypto.h>\n #if NODE_OPENSSL_HAS_QUIC\n #include <openssl/quic.h>\n #endif\n@@ -55,9 +55,10 @@ static constexpr size_t search(const char* s, ... | 2024-06-14T16:51:42 |
vercel/next.js | 3edb270df5e632cfd8fc57bbf624c1867c0ee1bf | e91660d1f474656fe5b602b38dea83641b656481 | [devtools] refactor segment explorer styles (#80848)
* Separate segment explorer instance from the dev overlay and the dev panel
* Polish the padding, the customization padding on two sides are different. Dev overlay pop up requires minus margin to fit the border, dev tool panel requires the extra padding
* Fix the ... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-tab/segments-explorer-tab.tsx",
"patch": "@@ -1,14 +1,12 @@\n-import { useSegmentTree } from '../../../segment-explorer'\n import { PageSegmentTree } from '../../overview/segment-explorer'\n \n function SegmentsE... | 2025-06-24T22:53:54 |
facebook/react | 9d1a842a833bc16766a2ae34266934cf287949fc | c4ae2a48dcd81ccd4a82326d7d3b9e7c9b3b457f | [sprout] Enable sprout on all new fixtures
---
Rename `SproutOnlyFilterTodoRemove.ts` to `SproutTodoFilter.ts`. I've tried to
group the skipped fixtures by difficulty and add comments about what need to be
done, also happy to change the structure of this.
From this point, sprout will run on all new fixtures by ... | [
{
"path": "compiler/forget/packages/sprout/README.md",
"patch": "@@ -1,33 +1,23 @@\n-## Sprout\n+## Sprout 🌱\n React Forget test framework that executes compiler fixtures.\n \n-Currently, Sprout runs each fixture with a known set of inputs and annotations. We hope to add fuzzing capabilities to Sprout, syn... | 2023-08-16T19:38:28 |
electron/electron | d02c9f8bc644ba39acf9caa908c33a737202a790 | 446c7809cc43997f408c9a030036d6980c4f1616 | chore: bump chromium to 111.0.5544.3 (main) (#36820)
* chore: bump chromium in DEPS to 111.0.5522.0
* chore: bump chromium in DEPS to 111.0.5524.0
* chore: bump chromium in DEPS to 111.0.5526.0
* chore: bump chromium in DEPS to 111.0.5528.0
* chore: update patches/chromium/mas_avoid_usage_of_private_macos_... | [
{
"path": "BUILD.gn",
"patch": "@@ -546,7 +546,7 @@ source_set(\"electron_lib\") {\n deps += [\n \"//components/remote_cocoa/app_shim\",\n \"//components/remote_cocoa/browser\",\n- \"//content/common:mac_helpers\",\n+ \"//content/browser:mac_helpers\",\n \"//ui/accelerated_wi... | 2023-02-03T11:43:42 |
golang/go | 8d767ff38df003e9cd85e4bba9a026ba1b70e80e | c032b042190dcc37963b025c75e938f3ffa587d0 | runtime: increase GDB version testing requirement to 10 from 7.7
Bump the required version of GDB up to 10 from 7.7 in the runtime GDB
tests, so as to ensure that we have something that can handle DWARF 5
when running tests. In theory there is some DWARF 5 support on the
version 9 release branch, but we get "Dwarf Err... | [
{
"path": "src/runtime/runtime-gdb_test.go",
"patch": "@@ -73,7 +73,9 @@ func checkGdbVersion(t *testing.T) {\n \tif err1 != nil || err2 != nil {\n \t\tt.Skipf(\"skipping: can't determine gdb version: %v, %v\", err1, err2)\n \t}\n-\tif major < 7 || (major == 7 && minor < 7) {\n+\t// The Go toolchain now gen... | 2025-03-12T01:33:25 |
rust-lang/rust | b871f6c7677987d8442437677598b9cda10671a9 | 0ad8260c7506cf80b65d0595f17ad4f9d4199737 | Fix running rustc tests in CI | [
{
"path": "scripts/setup_rust_fork.sh",
"patch": "@@ -81,6 +81,27 @@ index a656927b1f6..44fc5546fac 100644\n // If download-ci-llvm=true we also want to check that CI llvm is available\n b && llvm::is_ci_llvm_available_for_target(&dwn_ctx.host_target, asserts)\n }\n+diff -... | 2026-02-03T14:48:23 |
nodejs/node | 7430638df8ce347ee2a53de6a734948e848ab6c1 | ee5c6b660468bb4357ac79bc4840e268e1b291fc | fs: do not crash if the watched file is removed while setting up watch
Signed-off-by: Matteo Collina <hello@matteocollina.com>
PR-URL: https://github.com/nodejs/node/pull/53452
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail... | [
{
"path": "lib/internal/fs/recursive_watch.js",
"patch": "@@ -83,7 +83,7 @@ class FSWatcher extends EventEmitter {\n this.#closed = true;\n \n for (const file of this.#files.keys()) {\n- this.#watchers.get(file).close();\n+ this.#watchers.get(file)?.close();\n this.#watchers.delete(f... | 2024-06-17T14:28:12 |
vercel/next.js | 925fd916efc2d239a6dbc07d8dd9eb0c898fcd45 | c5bf5bb4c8b01b1befbbfa7ad97a97476ee9d0d7 | Fix fallback: true cache-control (#80865)
This ensures we don't treat cache hits for lazily generated `fallback:
true` routes as the fallback itself which has a different cache-control
header than cache hits should.
Fixes: https://github.com/vercel/next.js/issues/80838 | [
{
"path": "packages/next/src/build/templates/pages.ts",
"patch": "@@ -162,7 +162,7 @@ export async function handler(\n )\n const isAmp = query.amp && config.amp\n let cacheKey: null | string = null\n- let isIsrFallback = Boolean(getRequestMeta(req, 'isIsrFallback'))\n+ let isIsrFallback = false\n ... | 2025-06-24T20:46:20 |
facebook/react | c4ae2a48dcd81ccd4a82326d7d3b9e7c9b3b457f | 9d1f2c86ed43df75639d41ed018190b895aad9db | [sprout] patch bug + add verbose mode
---
```
yarn sprout --verbose
```
Verbose mode prints out all outputs of tests. The test output is a status (`ok`
or `exception`), a returned or thrown value, and a set of console logs.
Currently as of #1960 , this is the output:
```sh
$ yarn workspace babel-plugin... | [
{
"path": "compiler/forget/packages/sprout/src/runner-evaluator.ts",
"patch": "@@ -29,10 +29,22 @@ const PLACEHOLDER_VALUE = Symbol();\n const seen = new Map();\n \n return JSON.stringify(result, (_key, val) => {\n- if (typeof val === \"object\") {\n+ if (typeof val === \"function\") {\n+ ret... | 2023-08-16T19:32:15 |
golang/go | c032b042190dcc37963b025c75e938f3ffa587d0 | c00647b49b7e538506af31c67eb0411e8ea64176 | internal/buildcfg: fix typo in DWARF 5 enabling code
Fix a typo in the code that decides which GOOS values will support use
of DWARF 5 ("darwin" was not spelled correctly).
Updates #26379.
Change-Id: I3a7906d708550fcedc3a8e89d0444bf12b9143f1
Reviewed-on: https://go-review.googlesource.com/c/go/+/656895
Auto-Submit: ... | [
{
"path": "src/internal/buildcfg/exp.go",
"patch": "@@ -82,7 +82,7 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {\n \t// XCOFF format (as far as can be determined) doesn't seem to\n \t// support the necessary section subtypes for DWARF-specific\n \t// things like .debug_ad... | 2025-03-12T01:19:11 |
electron/electron | 6e0d63c356733ef3f22f8df857b66f6a22779da6 | d069b8fc6611356d9a7d56f21b3221881385767a | build: update mocha for retries and audit fix (#37117) | [
{
"path": "spec/api-app-spec.ts",
"patch": "@@ -1516,6 +1516,7 @@ describe('app module', () => {\n // to the Docker invocation allows the syscalls that Chrome needs, but\n // are probably more permissive than we'd like.\n this.skip();\n+ return;\n }\n fs.unlink(soc... | 2023-02-03T01:40:30 |
vercel/next.js | c5bf5bb4c8b01b1befbbfa7ad97a97476ee9d0d7 | 0d84c976cd26f4a1a62f4a17a5208d9a98c286d4 | Turbopack Build: Update manifest (#80859)
## What?
Updates the manifest to reflect the fixed tests in #80603 | [
{
"path": "test/turbopack-build-tests-manifest.json",
"patch": "@@ -10329,11 +10329,11 @@\n \"runtimeError\": false\n },\n \"test/integration/css-features/test/browserslist.test.js\": {\n- \"passed\": [],\n- \"failed\": [\n+ \"passed\": [\n \"Browserslist: New production mode should'v... | 2025-06-24T18:01:55 |
rust-lang/rust | 5405e5d06e7b2fede8cfba16a5bd140a8ebeb4f0 | 46c86aef65a8529b8c989077ade26d17d2b4c95d | Suppress unused_mut lint if mutation fails due to borrowck error
Remedying the borrowck error will likely result in the mut becoming
used. | [
{
"path": "compiler/rustc_borrowck/src/lib.rs",
"patch": "@@ -1207,6 +1207,17 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, '_, 'tcx> {\n \"access_place: suppressing error place_span=`{:?}` kind=`{:?}`\",\n place_span, kind\n );\n+\n+ // If the place is being m... | 2026-02-03T11:52:00 |
golang/go | 43648931492e45c78ba3e21e7191944a0bb7c10b | 17b9c9f2ad6f7943a4a1861dfc000d190abca55b | cmd/internal/script/scripttest: use GOHOSTARCH to find tool directory
Fixes #72800
Change-Id: Idde7eae13d1c0098e5314935cf8ca823cbc7a7cc
Reviewed-on: https://go-review.googlesource.com/c/go/+/656855
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <... | [
{
"path": "src/cmd/internal/script/scripttest/setup.go",
"patch": "@@ -6,10 +6,13 @@\n package scripttest\n \n import (\n+\t\"internal/testenv\"\n \t\"io\"\n \t\"os\"\n \t\"path/filepath\"\n \t\"runtime\"\n+\t\"strings\"\n+\t\"sync\"\n \t\"testing\"\n )\n \n@@ -36,13 +39,17 @@ func SetupTestGoRoot(t *testin... | 2025-03-11T22:00:23 |
facebook/react | 9d1f2c86ed43df75639d41ed018190b895aad9db | 43e3cd61f844b32804c3e2822a1645450baaa02a | [sprout] Codemod: add todos for test fixtures
---
Codemod to add an `export FIXTURE_ENTRYPOINT` with todo values for params for
tests with at least one param and 0 refs to external values | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/array-access-assignment.expect.md",
"patch": "@@ -11,6 +11,12 @@ function foo(a, b, c) {\n return [x, z];\n }\n \n+export const FIXTURE_ENTRYPOINT = {\n+ fn: foo,\n+ params: [\"TodoAdd\"],\n+ isComponent: \"To... | 2023-08-16T19:32:15 |
electron/electron | 6aa7e27b392102703a8e04fb4b935e50848251ae | 2dc76d0d8087bdd882cf3e0aa8dc4e4cd643e9b9 | fix: nodeIntegrationInWorker fails to boot in AudioWorklets (#37041) | [
{
"path": "lib/worker/init.ts",
"patch": "@@ -21,8 +21,9 @@ global.module = new Module('electron/js2c/worker_init');\n global.require = makeRequireFunction(global.module);\n \n // Set the __filename to the path of html file if it is file: protocol.\n-if (self.location.protocol === 'file:') {\n- const pathn... | 2023-02-02T00:03:23 |
rust-lang/rust | d0c6a64ff87e5bbbd4a17b6217caa4042ebd07e0 | 62c5f16886228fd89e3814ae4f5fac12e0bd146b | Fix `redundant_iter_cloned` false positive with move closures and coroutines | [
{
"path": "clippy_lints/src/methods/iter_overeager_cloned.rs",
"patch": "@@ -1,13 +1,15 @@\n use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::source::snippet_opt;\n use clippy_utils::ty::{implements_trait, is_copy};\n+use clippy_utils::visitors::for_each_expr_without_closures;\n+use co... | 2026-02-01T17:52:08 |
golang/go | 908af6529c1d3094da999fdafe79313c41826afa | 817218a26c39911176c0d67258c637459f8d2fca | archive/zip: error on ReadDir if there are invalid file names
Fixes #50179
Change-Id: I616a6d1279d025e345d2daa6d44b687c8a2d09e1
Reviewed-on: https://go-review.googlesource.com/c/go/+/656495
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Ian Lance Taylor <iant@go... | [
{
"path": "src/archive/zip/reader.go",
"patch": "@@ -8,6 +8,7 @@ import (\n \t\"bufio\"\n \t\"encoding/binary\"\n \t\"errors\"\n+\t\"fmt\"\n \t\"hash\"\n \t\"hash/crc32\"\n \t\"internal/godebug\"\n@@ -988,6 +989,12 @@ func (d *openDir) ReadDir(count int) ([]fs.DirEntry, error) {\n \t\ts, err := d.files[d.of... | 2025-03-10T22:10:58 |
facebook/react | 43e3cd61f844b32804c3e2822a1645450baaa02a | ce015a164b86ee6e2ac5bdfb73c8a0484bd52c25 | [snap] Use sync fs apis to stop crashes
---
Not sure why, but snap kept silently crashing when I used fs/promises to write
to many file handles. I tried a `.catch(...)`, but couldn't figure it out. This
diff changes snap to use sync fs apis to avoid crashes, but I'd love to get
feedback if someone knows how to d... | [
{
"path": "compiler/forget/packages/snap/src/runner.ts",
"patch": "@@ -7,8 +7,16 @@\n \n import watcher from \"@parcel/watcher\";\n import chalk from \"chalk\";\n-import { COMPILER_PATH, LOGGER_PATH, FIXTURES_PATH, FILTER_FILENAME, FILTER_PATH, readTestFilter, TestFilter } from 'fixture-test-utils';\n-impor... | 2023-08-16T19:32:14 |
electron/electron | 2dc76d0d8087bdd882cf3e0aa8dc4e4cd643e9b9 | fd761ec8f74d8a4c77864ab86ef6994a5fb72e1d | build: fixup release_dependency_versions action (#37036) | [
{
"path": ".github/workflows/release_dependency_versions.yml",
"patch": "@@ -7,20 +7,17 @@ on:\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n \n-permissions: # added using https://github.com/step-security/secure-workflows\n- contents: read\n-\n jobs:\n trigger_chromedriver:\n runs-on: ubuntu... | 2023-02-01T18:12:19 |
nodejs/node | 177d63f5735700fda4258e646b1435349acffd71 | d3025372d8c600d542f67557ad1ec44baa76bd98 | stream: callback should be called when pendingcb is 0
Fixes: https://github.com/nodejs/node/issues/46170
PR-URL: https://github.com/nodejs/node/pull/53438
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina... | [
{
"path": "lib/internal/streams/end-of-stream.js",
"patch": "@@ -213,7 +213,8 @@ function eos(stream, options, callback) {\n } else if (\n !readable &&\n (!willEmitClose || isReadable(stream)) &&\n- (writableFinished || isWritable(stream) === false)\n+ (writableFinished || isWritable(stream)... | 2024-06-15T07:30:11 |
facebook/react | ce015a164b86ee6e2ac5bdfb73c8a0484bd52c25 | 6b242c12a969a44399deab2dd1f9a47c95f47763 | [sprout] Codemod: add isComponent: false annotations to current fixtures
To keep the type signature simple, let's always have the same set of keys in
`FIXTURE_ENTRYPOINT` | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/alias-nested-member-path.expect.md",
"patch": "@@ -14,6 +14,7 @@ function component() {\n export const FIXTURE_ENTRYPOINT = {\n fn: component,\n params: [],\n+ isComponent: false,\n };\n \n ```\n@@ -54,6 +55,7... | 2023-08-16T19:32:13 |
golang/go | 3fb8b4f3db21396a69bfaa0bdbf1252214c93ecd | 8867af920748f8aa4e9beb5bb8b88c34c85766f2 | all: move //go:debug decoratemappings=0 test to cmd/go
test/decoratemappingszero.go is intended to test that
//go:debug decoratemappings=0 disables annonations.
Unfortunately, //go:debug processing is handled by cmd/go, but
cmd/internal/testdir (which runs tests from test/) generally invokes the
compiler directly, th... | [
{
"path": "src/cmd/go/testdata/script/godebug_decoratemappings_comment.txt",
"patch": "@@ -1,14 +1,18 @@\n-// run\n+env GO111MODULE=on\n \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+[!G... | 2025-03-11T19:09:46 |
electron/electron | 9adbf49240631f43e1865835d24224da7dc39d85 | c6203d54d03ad994ebb51968a76c23411b7ab8b1 | ci: fixup ninja for release (#37083) | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -505,6 +505,9 @@ step-fix-sync: &step-fix-sync\n sed $SEDOPTION \"s/Updating depot_tools... //g\" ninja_ensure_file\n cipd ensure --root src/third_party/ninja -ensure-file ninja_ensure_file\n \n+ # Explicitly add ninja to the path\n+ ... | 2023-01-31T16:29:39 |
facebook/react | d2983888f436308353b6559fd96c4df7a494db8b | 904ea6c9e44a276a43462b591f2be43dfe6d2658 | [sprout] Initial draft of sprout 🌱 test runner
---
## Sprout 🌱 Overview
**(Overview copied from
[sprout/README.md](https://github.com/facebook/react-forget/blob/0468ddf8bbee54a9394317a667ea4ed96bb3bef3/forget/packages/sprout/README.md))**
React Forget test framework that executes compiler fixtures.
Current... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/package.json",
"patch": "@@ -12,7 +12,9 @@\n \"test\": \"yarn jest && yarn snap:build && yarn snap\",\n \"jest\": \"tsc && ts-node \\\"$(yarn --silent which jest)\\\"\",\n \"snap\": \"node ../snap/dist/main.js\",\n+ \"sprout\": \"n... | 2023-08-14T23:26:02 |
vercel/next.js | 5c15979bccbbebebfb33194ad8b1bdf62f8be18a | ee84a02b4df1811e16a267a578a9dcb380d81a63 | [turbopack] Enable debug assertions in CI (#80739)
## Enable debug assertions in CI
### What?
Build using `--profile release-with-assertions` for all tests in CI. A previous PR (https://github.com/vercel/next.js/pull/80511) enabled them for unit tests, this completes the effort for e2e tests run in CI.
There is one... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -315,6 +315,8 @@ jobs:\n export TURBOPACK_BUILD=1\n export NEXT_TEST_MODE=start\n export NEXT_TEST_REACT_VERSION=\"${{ matrix.react }}\"\n+ # TODO(PACK-4578): Remove\n+ export TURBOPACK_TEMP_DISABLE_DUPLICAT... | 2025-06-24T16:10:43 |
golang/go | 8591f8e19e3a2e75e86b486ac8a9ec7ff4f3bcbe | 39b783780a471961ae381a9fc37a5a1e468f5c21 | log/slog: use consistent call depth for all output
This makes all log functions keep a consistent call structure to be nice
with the handleWriter in the slog package which expects a strict level
of 4.
Fixes #67362.
Change-Id: Ib967c696074b1ca931f6656dd27ff1ec484233b8
GitHub-Last-Rev: 49bc424986875da2dd244b57f8b0851d... | [
{
"path": "src/log/log.go",
"patch": "@@ -191,8 +191,7 @@ func putBuffer(p *[]byte) {\n // provided for generality, although at the moment on all pre-defined\n // paths it will be 2.\n func (l *Logger) Output(calldepth int, s string) error {\n-\tcalldepth++ // +1 for this frame.\n-\treturn l.output(0, calld... | 2025-03-05T22:33:50 |
nodejs/node | 15b39026197437493af224f0fe69aa878ec1abd3 | 3d09e579d39eab71af2c1476854846be17dde7ee | 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 | 23739c644ba8dfa6cec5417cdf4e2550ca4b94b8 | ce35bda80580cd355f5cdf31d39f9b4da82822e4 | fix: crash on `WebWorkerObserver` script execution (#37050)
fix: crash on WebWorkerObserver script execution | [
{
"path": "shell/renderer/electron_renderer_client.cc",
"patch": "@@ -168,7 +168,12 @@ void ElectronRendererClient::WorkerScriptReadyForEvaluationOnWorkerThread(\n // that have a different value for nodeIntegrationInWorker\n if (base::CommandLine::ForCurrentProcess()->HasSwitch(\n switches::kN... | 2023-01-31T11:29:29 |
facebook/react | 5669fc73c0d0ac00d744e22b067bcfc3312b8314 | 02e8cf97909029e0510c1a4e651d9679d2e2cc1b | [snap] Refactor fixture utils to separate package
---
Move shared functions to `fixture-test-utils` package. | [
{
"path": "compiler/forget/packages/fixture-test-utils/package.json",
"patch": "@@ -0,0 +1,25 @@\n+{\n+ \"name\": \"fixture-test-utils\",\n+ \"version\": \"1.0.0\",\n+ \"main\": \"dist/index.js\",\n+ \"license\": \"MIT\",\n+ \"scripts\": {\n+ \"build\": \"rimraf dist && tsc\",\n+ \"test\": \"echo... | 2023-08-14T23:26:01 |
vercel/next.js | ee84a02b4df1811e16a267a578a9dcb380d81a63 | 6aa630c6adddb31e7b62a6d2cb4b421e061cd4ca | Turbopack Build: Fix edge-config-validation test (#80847)
## What?
This test is correct but in Turbopack we correctly leave out `/` since
middleware is not a route by itself. | [
{
"path": "test/production/edge-config-validations/index.test.ts",
"patch": "@@ -25,7 +25,7 @@ describe('Edge config validations', () => {\n const res = await next.build()\n expect(res.exitCode).toBe(1)\n expect(res.cliOutput).toContain(\n- '/middleware contains invalid middleware config: E... | 2025-06-24T15:52:38 |
nodejs/node | 1872167bb7b2cd69fb6e507bfcb6b9444d505904 | 4e58cde589dfd980c8976b158853a331142e1e4b | src: add utilities to help debugging reproducibility of snapshots
- Print offsets in blob serializer
- Add a special node:generate_default_snapshot ID to generate
the built-in snapshot.
- Improve logging
- Add a test to check the reproducibilty of the snapshot
PR-URL: https://github.com/nodejs/node/pull/50983
Refs:... | [
{
"path": "src/blob_serializer_deserializer-inl.h",
"patch": "@@ -238,7 +238,8 @@ size_t BlobSerializer<Impl>::WriteVector(const std::vector<T>& data) {\n if (is_debug) {\n std::string str = std::is_arithmetic_v<T> ? \"\" : ToStr(data);\n std::string name = GetName<T>();\n- Debug(\"\\nWriteVect... | 2024-03-22T18:51:49 |
golang/go | 598df45fceb6e10d643ed0c07a3df80cffd507f1 | be2ecfbff88f20a888ec49446a45dd6bc8ed8d12 | net: unblock UDP Reads upon Close on plan9, add test
Fixes #72770
Change-Id: I42be7c7349961188f4b5d73287a3550aba323893
Reviewed-on: https://go-review.googlesource.com/c/go/+/656395
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>... | [
{
"path": "src/net/fd_plan9.go",
"patch": "@@ -126,6 +126,11 @@ func (fd *netFD) Close() error {\n \t\t\treturn err\n \t\t}\n \t}\n+\tif fd.net == \"udp\" {\n+\t\t// The following line is required to unblock Reads.\n+\t\t// See https://go.dev/issue/72770.\n+\t\tfd.SetReadDeadline(time.Now().Add(-time.Hour))... | 2025-03-10T18:45:10 |
electron/electron | ce35bda80580cd355f5cdf31d39f9b4da82822e4 | fcc7a869f218059d0de22db1ea3d63c2e9c192ce | fix: crash on `window.print()` (#37052)
fix: crash on window.print() | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -78,7 +78,7 @@ index 796c7f06fa6063ac409f3fef53871e18d4c07838..6575e833388bcc3ac487a409027d984b\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/... | 2023-01-31T11:06:11 |
facebook/react | 45d884bb6b443bc8c34633e32916791236d34e7b | cb2ba7118f6b826a4847db687e752b2815b5cb54 | Fix LeaveSSA missing param declarations
Nice find from @mofeiz, we weren't adding declarations for function params in
LeaveSSA. This caused us to hit an invariant for update expressions that updated
params which assumed that all named variables had a declaration. This is why
it's helpful to add invariants, it help... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/ReactiveScopes/PruneNonEscapingScopes.ts",
"patch": "@@ -430,8 +430,6 @@ function computeMemoizationInputs(\n rvalues: value.children,\n };\n }\n- case \"PrefixUpdate\":\n- case \"PostfixUpdate\":\n case \"Debugger... | 2023-08-14T22:48:05 |
vercel/next.js | 370b0971aa6d986d99c5047b451c9a88363fadf8 | ad27ddab27001ba14f6d833bde4d189f534d43b3 | Turbopack Build: Fix metadata-edge test (#80842)
This test is checking if `@vercel/og` gets shared between two routes, it
assumed that `next/og` itself (the wrapper code) would also be chunked,
but the size limit for Turbopack is slightly larger so it doesn't end up
bundling it into a separate chunk. Changed the test ... | [
{
"path": "test/e2e/app-dir/metadata-edge/index.test.ts",
"patch": "@@ -22,21 +22,26 @@ describe('app dir - Metadata API on the Edge runtime', () => {\n (file) => {\n return next\n .readFileSync(path.join('.next', file))\n- .includes('ImageResponse')\n+ ... | 2025-06-24T12:09:12 |
nodejs/node | 922feb1ff5527f4442e85d7f61cb95b120df677c | 2e1f7720dfef643b920900cce14eb225ffa2b526 | stream: pipe to a closed or destroyed stream is not allowed in pipeline
PR-URL: https://github.com/nodejs/node/pull/53241
Fixes: https://github.com/nodejs/node/issues/52622
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -2621,6 +2621,12 @@ or a pipeline ends non gracefully with no explicit error.\n An attempt was made to call [`stream.push()`][] after a `null`(EOF) had been\n pushed to the stream.\n \n+<a id=\"ERR_STREAM_UNABLE_TO_PIPE\"></a>\n+\n+### `ERR_STREAM_UNABLE_TO_PIPE`\... | 2024-06-14T08:27:56 |
golang/go | be2ecfbff88f20a888ec49446a45dd6bc8ed8d12 | 73fea035bf1e4e68ef14995a389d4fd8df5c6a34 | debug/dwarf: read DWARF 5 cu base offsets on SeekPC() path
This patch fixes a bug in CL 655976 relating to DWARF 5 support; we
were reading in compile unit base offsets on the Seek() path but not
on the corresponding SeekPC path (we need the offsets to be read in
both cases).
Updates #26379.
Fixes #72778.
Change-Id:... | [
{
"path": "src/debug/dwarf/entry.go",
"patch": "@@ -919,6 +919,7 @@ func (r *Reader) SeekPC(pc uint64) (*Entry, error) {\n \t\tr.cu = nil\n \t\tu := &r.d.unit[unit]\n \t\tr.b = makeBuf(r.d, u, \"info\", u.off, u.data)\n+\t\tr.collectDwarf5BaseOffsets(u)\n \t\te, err := r.Next()\n \t\tif err != nil {\n \t\t\... | 2025-03-11T13:16:05 |
electron/electron | 85f41d59aceabbdeee1fdec75770249c6335e73a | 0026fdb78a68c6a4067191826bd1bfc1d9700998 | fix: ensure autofill popup view is > 1x1 in size (#36121)
* fix: ensure autofill popup view is > 1x1 in size
ref #26667
* Update shell/browser/ui/views/autofill_popup_view.cc
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> | [
{
"path": "shell/browser/ui/views/autofill_popup_view.cc",
"patch": "@@ -224,6 +224,9 @@ void AutofillPopupView::DoUpdateBoundsAndRedrawPopup() {\n if (!popup_)\n return;\n \n+ // Clamp popup_bounds_ to ensure it's never zero-width.\n+ popup_->popup_bounds_.Union(\n+ gfx::Rect(popup_->popup_bou... | 2023-01-27T09:50:19 |
facebook/react | 0fb5b61ac6951a492242618e4ace6c1826335efc | 5ea1397b2b62875dfb521cf8de0efcc15d0df797 | Float integrity bugfix (#27224)
Stacked on #27223
When a script resource adopts certain props from a preload for that
resource the integrity prop was incorrectly getting assinged to the
referrerPolicy prop instead. This is now fixed. | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2872,7 +2872,7 @@ function adoptPreloadPropsForScript(\n if (scriptProps.referrerPolicy == null)\n scriptProps.referrerPolicy = preloadProps.referrerPolicy;\n if (scriptProps.integrity == null)\n- scriptProps... | 2023-08-14T17:10:24 |
nodejs/node | 2e1f7720dfef643b920900cce14eb225ffa2b526 | bcbb2f7b16054469b33df50b5d993501b7e0daa0 | src: fix typo in env.cc
PR-URL: https://github.com/nodejs/node/pull/53418
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "src/env.cc",
"patch": "@@ -520,7 +520,7 @@ void IsolateData::CreateProperties() {\n CreateEnvProxyTemplate(this);\n }\n \n-constexpr uint16_t kDefaultCppGCEmebdderID = 0x90de;\n+constexpr uint16_t kDefaultCppGCEmbedderID = 0x90de;\n Mutex IsolateData::isolate_data_mutex_;\n std::unordered_map<u... | 2024-06-14T01:27:11 |
golang/go | 73fea035bf1e4e68ef14995a389d4fd8df5c6a34 | a588c6fba6d411245d72b9e071eedc3b4d00a0c8 | cmd/go: allow symlinks of non-directory files in embed
We previously disallowed all non-regular files being embedded. This CL
relaxes the restriction a little: if the GODEBUG embedfollowsymlinks=1
is set, we allow the leaf files being embedded (not the directories
containing them) to be symlinks. The files pointed to ... | [
{
"path": "doc/godebug.md",
"patch": "@@ -164,6 +164,11 @@ reverts to the pre-Go 1.25 behavior. This setting is fixed at program startup\n time, and can't be modified by changing the `GODEBUG` environment variable\n after the program starts.\n \n+Go 1.25 added a new `embedfollowsymlinks` setting that contro... | 2025-01-16T20:44:55 |
facebook/react | 011570a0785d4d2f0fd23dd5eae37ac797ce882b | 57f648009cea9ce84ed3480ba5ca50794e680b02 | [rust][sema] Bubble unresolved references (for hoisting)
This is a precursor to adding support for hoisting in semantic analysis.
Previously when we encountered an unknown reference we immediately reported an
error. But hoisted variables may be referenced before they're defined, so we
don't know for sure when we s... | [
{
"path": "compiler/forget/crates/forget_semantic_analysis/src/analyzer.rs",
"patch": "@@ -86,10 +86,9 @@ impl Analyzer {\n where\n F: FnMut(&mut Self) -> (),\n {\n- let scope = self.manager.add_scope(self.current, kind);\n- let previous = std::mem::replace(&mut self.current, s... | 2023-08-14T17:08:02 |
electron/electron | 0026fdb78a68c6a4067191826bd1bfc1d9700998 | 1486cbdf6410e569f619d1ca7ceea0dd3380bf02 | fix: resizing borders in nondraggable regions (#37016)
* fix: resizing borders in nondraggable regions
* chore: remove frame handling from ShouldDescendIntoChildForEventHandling | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -24,6 +24,10 @@\n #include \"ui/base/hit_test.h\"\n #include \"ui/views/widget/widget.h\"\n \n+#if !BUILDFLAG(IS_MAC)\n+#include \"shell/browser/ui/views/frameless_view.h\"\n+#endif\n+\n #if BUILDFLAG(IS_WIN)\n #include \"ui/base/win/shell.h\"\n #incl... | 2023-01-26T13:04:19 |
vercel/next.js | ad27ddab27001ba14f6d833bde4d189f534d43b3 | 91130782d582b822409d5480417e566f2e3f133e | fix: respond with 404 for unrecognized action ids (#77012)
> [!IMPORTANT]
> view this diff with "hide whitespace changes", it's unreadable
otherwise.
This is an alternative approach to #80613. We touch a lot of same areas
but do different changes there, and i also have a bunch more changes
stacked on top, so the pl... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -712,5 +712,6 @@\n \"711\": \"Can't resolve %s\",\n \"712\": \"`rspack.warnForEdgeRuntime` is not supported by the wasm bindings.\",\n \"713\": \"Unexpected error during process lookup\",\n- \"714\": \"cannot run loadNative when `NEXT_TEST_WASM` is ... | 2025-06-24T11:43:00 |
rust-lang/rust | b83b3754c2b41511a0bc6c326b02486045350cb4 | 492e3027a69acaf44ecddbc76cfd5678aba34371 | fix: Fix not complete `.not` in condition
Example
---
```rust
fn foo(cond: bool) {
if cond.$0
}
```
**Before this PR**
```text
...
sn deref *expr
sn ref &expr
...
```
**After this PR**
```text
...
sn deref *expr
sn not !expr
sn ref &expr
...
``` | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs",
"patch": "@@ -257,7 +257,6 @@ pub(crate) fn complete_postfix(\n &format!(\"while {receiver_text} {{\\n $0\\n}}\"),\n )\n .add_to(acc, ctx.db);\n- postfix_snippet(\"not\... | 2026-01-26T12:44:47 |
nodejs/node | 852fa5581396ba147459e041808de4c1024cf39a | 2bb39f8acffffb6939b7067e9044f6be1b1d8475 | lib: reduce amount of caught URL errors
PR-URL: https://github.com/nodejs/node/pull/52658
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Daniel Lemire <daniel@lemire.me> | [
{
"path": "lib/internal/modules/esm/hooks.js",
"patch": "@@ -33,7 +33,7 @@ const {\n ERR_WORKER_UNSERIALIZABLE_ERROR,\n } = require('internal/errors').codes;\n const { exitCodes: { kUnsettledTopLevelAwait } } = internalBinding('errors');\n-const { URL } = require('internal/url');\n+const { URLParse } = re... | 2024-06-13T18:32:59 |
golang/go | a588c6fba6d411245d72b9e071eedc3b4d00a0c8 | ae4c13afc51d81e9aefdfb101e895bc7318c05cd | go/types, types2: report better error messages for make calls
Change-Id: I4593aeb4cad1e2c3f4705ed5249ac0bad910162f
Reviewed-on: https://go-review.googlesource.com/c/go/+/655518
Auto-Submit: Robert Griesemer <gri@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Revie... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -518,18 +518,30 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t\treturn\n \t\t}\n \n+\t\tu, err := commonUnder(T, func(_, u Type) *typeError {\n+\t\t\tswitch u.(type) {\n+\t\t\tcase *Slice, *Map,... | 2025-03-08T00:00:53 |
facebook/react | e2485341846fec767f68b5c7c25b277699962054 | a49335f72a84a76ac7b39f1e6b3a7701bd6e53f7 | [rust] SSA fixes after operand refactor
When updating the data model for operands from instruction indices to
identifiers, I forgot to rewrite terminal operands.Doing so required a refactor
to use the new BlockRewriter helper. | [
{
"path": "compiler/forget/crates/forget_fixtures/tests/fixtures/simple-ssa.js",
"patch": "@@ -0,0 +1,9 @@\n+function Component(props) {\n+ let a;\n+ if (props) {\n+ a = 1;\n+ } else {\n+ a = 2;\n+ }\n+ return a;\n+}",
"additions": 9,
"deletions": 0,
"language": "JavaScript"
},
{
... | 2023-08-14T16:54:26 |
vercel/next.js | 91130782d582b822409d5480417e566f2e3f133e | c2fae27bafa710a5cff0c5050c0a8b71370e93f6 | [devtools] fix: error overlay closes when footer is clicked (#80513)
https://github.com/vercel/next.js/pull/77327 should've added the footer to the dialog's click outside exclude list as is moving out from the dialog.
#### Before
https://github.com/user-attachments/assets/3ee79982-acc7-4783-b629-7132361463fd
... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/dialog/dialog.tsx",
"patch": "@@ -18,6 +18,7 @@ const CSS_SELECTORS_TO_EXCLUDE_ON_CLICK_OUTSIDE = [\n '[data-info-popover]',\n '[data-nextjs-devtools-panel-overlay]',\n '[data-nextjs-devtools-panel-footer]',\n+ '[data-nextjs-error-over... | 2025-06-24T11:40:43 |
electron/electron | c303135b02fa5829459c816cd5bb75dd0e6e4aeb | 7d46d3ec9d5f30138777d1bd12890ebe28ba6c31 | fix: fallback to GtkStatusIcon when app indicator is not supported (#36815)
* chore: get ready for multi backend tray
* fix: fallback to GtkStatusIcon when app indicator is not supported
* chore: use smart pointers | [
{
"path": "BUILD.gn",
"patch": "@@ -632,8 +632,6 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/browser/certificate_manager_model.cc\",\n \"shell/browser/certificate_manager_model.h\",\n- \"shell/browser/ui/gtk/menu_util.cc\",\n- \"shell/browser/ui/gtk/menu_util.h\",\n ... | 2023-01-26T10:15:55 |
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.