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 |
|---|---|---|---|---|---|
electron/electron | 81351dd1a9f60010b1a7db2209a1578ebe6a57b0 | f575e5258619f05c8fcc0f3ffa0f5afdc68b406d | build: fix clang format location helper (again) (#42911) | [
{
"path": "script/lib/util.py",
"patch": "@@ -194,6 +194,9 @@ def get_buildtools_executable(name):\n chromium_platform = 'linux64'\n else:\n raise Exception(f\"Unsupported platform: {sys.platform}\")\n+ \n+ if name == 'clang-format':\n+ chromium_platform += '-format'\n \n path = os.path.joi... | 2024-07-16T15:21:18 |
golang/go | 8bcda6c79d40f49363cd04cdaf5bd7909de8f94f | 8377adafc548a0d9dab831477923d25ce4b10710 | runtime/race: add race detector support for linux/riscv64
This enables support for the race detector on linux/riscv64.
Fixes #64345
Cq-Include-Trybots: luci.golang.try:gotip-linux-riscv64
Change-Id: I98962827e91455404858549b0f9691ee438f104b
Reviewed-on: https://go-review.googlesource.com/c/go/+/690497
Reviewed-by: C... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -1698,7 +1698,7 @@ func (t *tester) makeGOROOTUnwritable() (undo func()) {\n func raceDetectorSupported(goos, goarch string) bool {\n \tswitch goos {\n \tcase \"linux\":\n-\t\treturn goarch == \"amd64\" || goarch == \"ppc64le\" || goarch == \"arm64\" || goarch ... | 2025-07-25T10:41:51 |
facebook/react | 2bd415355e3ec9b87859b68af05972bc50390753 | e662b0a24b1d8a1c8ec86558aef4b7e5c4427116 | [compiler][repro] ValidatePreserveMemo x useRef bug
ghstack-source-id: 6ac5d58e97eba92642b5e4c5e2f915d91a5730dc
Pull Request resolved: https://github.com/facebook/react/pull/30602 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-maybe-mutable-ref-memo-not-preserved.expect.md",
"patch": "@@ -0,0 +1,45 @@\n+\n+## Input\n+\n+```javascript\n+// @validatePreserveExistingMemoizationGuarantees:true\n+\n+import {useRef, useMemo} from 'react';\n+imp... | 2024-08-07T23:11:31 |
vercel/next.js | 8be4e433405da68ec6ed46147c46c69d5c6e3297 | 69e3e629b6ea5ec67b6dca0a47bd4e7ba6eb70d4 | [turbopack] No op the webpack bundle analyzer under turbopack (#84614)
This never worked with turbopack, but with the recent default flip using this now breaks the build since it complains about configuring webpack in a turbopack build.
So print a warning and no-op the analyzer. This isn't ideal but it is more actio... | [
{
"path": "packages/next-bundle-analyzer/index.js",
"patch": "@@ -4,6 +4,13 @@ module.exports =\n if (!enabled) {\n return nextConfig\n }\n+ if (process.env.TURBOPACK) {\n+ console.warn(\n+ 'The Next Bundle Analyzer is not compatible with Turbopack builds yet, no report will be ... | 2025-10-08T19:32:50 |
electron/electron | f173a0637ad32bb34d32009f24d5493b38daf681 | ae1a684d10f0ca32ff0ebbed1706a05d1acce3b5 | chore: fix `npm run lint` not working on Windows (#42281)
* fix: fixed the `npm run lint` not working on Windows.
* chore: more fixes for lint on Windows
* chore: revert change to patch linting
---------
Co-authored-by: David Sanders <dsanders11@ucsbalum.com> | [
{
"path": ".gitattributes",
"patch": "@@ -22,6 +22,7 @@ patches/**/.patches merge=union\n *.md text eol=lf\n *.mm text eol=lf\n *.mojom text eol=lf\n+*.patches text eol=lf\n *.proto text eol=lf\n *.py text eol=lf\n *.ps1 text eol=lf",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
... | 2024-07-15T16:08:33 |
golang/go | 8377adafc548a0d9dab831477923d25ce4b10710 | a7d9d5a80ae799f54e323060df0dfbccc83d3759 | cmd/cgo: split loadDWARF into two parts
The first part runs gcc to get the debug information, and the second
part processes the debug information. The first part doesn't touch the
global and package level information that's computed so we can run it
earlier and concurrently in a later CL.
For #75167
Change-Id: I6a6a... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -213,7 +213,8 @@ func (p *Package) Translate(f *File) {\n \t\t}\n \t\tneedType := p.guessKinds(f)\n \t\tif len(needType) > 0 {\n-\t\t\tp.loadDWARF(f, &ft, &conv, needType)\n+\t\t\td := p.loadDWARF(f, &ft, needType)\n+\t\t\tp.recordTypes(f, d, &conv)\n \t\t}\n \n ... | 2025-08-25T21:07:41 |
facebook/react | e662b0a24b1d8a1c8ec86558aef4b7e5c4427116 | e948a5ac6876a016ff57f7177f93452ea2eeb574 | [compiler][be] Less ambiguous error messages for validateMemo bailout
ghstack-source-id: 312093ec74d733bccd2d2d8400eaba267c9e33a7
Pull Request resolved: https://github.com/facebook/react/pull/30601 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts",
"patch": "@@ -433,64 +433,74 @@ class Visitor extends ReactiveFunctionVisitor<VisitorState> {\n * recursively visits ReactiveValues and instructions\n */\n this.recordTemporaries(ins... | 2024-08-07T23:11:30 |
electron/electron | ae1a684d10f0ca32ff0ebbed1706a05d1acce3b5 | 1e1dc22e167a9b7313aaa914fb400a19edbbeb7f | fix: iteration issues in hid `RevokeEphemeralDevicePermission` (#42851)
fix: iteration issues in hid RevokeEphemeralDevicePermission | [
{
"path": "shell/browser/hid/hid_chooser_context.cc",
"patch": "@@ -12,6 +12,7 @@\n \n #include \"base/command_line.h\"\n #include \"base/containers/contains.h\"\n+#include \"base/containers/map_util.h\"\n #include \"base/strings/string_util.h\"\n #include \"base/strings/stringprintf.h\"\n #include \"base/s... | 2024-07-15T14:41:38 |
nodejs/node | 4355b3f16294aaf456ed6b9f2fc05bb0d407d788 | 269496e8e166fbc06d6f3808a5863ce792de9f11 | crypto: fix X509* leak in --use-system-ca
The X509 structures are never freed. Use ncrypto::X509Pointer to
manage it automatically and move the X509* to PEM conversion into
a helper to be reused by integration in other systems.
PR-URL: https://github.com/nodejs/node/pull/56832
Reviewed-By: James M Snell <jasnell@gmai... | [
{
"path": "src/crypto/crypto_context.cc",
"patch": "@@ -35,6 +35,7 @@ using ncrypto::MarkPopErrorOnReturn;\n using ncrypto::SSLPointer;\n using ncrypto::StackOfX509;\n using ncrypto::X509Pointer;\n+using ncrypto::X509View;\n using v8::Array;\n using v8::ArrayBufferView;\n using v8::Boolean;\n@@ -255,6 +256,... | 2025-01-30T17:02:49 |
vercel/next.js | ab99f9a29b81a0bfda4f2779e0557b6726aae6db | c98f18212df22f7fcacb7cecd4f7e23c1501977b | [breaking]: enable clientSegmentCache by default (#84643)
This enables `experimental.clientSegmentCache` by default and the
additional CI resources associated with testing it independently.
There were a few remaining test failures that are individually disabled
with `TODO(client-segment-cache)` markers. We can fix fo... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -1000,73 +1000,6 @@ jobs:\n stepName: 'test-experimental-prod-${{ matrix.group }}'\n secrets: inherit\n \n- test-client-segment-cache-integration:\n- name: test clientSegmentCache integration\n- needs: ['optimize-ci', 'changes',... | 2025-10-08T17:46:06 |
golang/go | fe42628dae69c907bc579219a38fce6bc8f18c6c | 94b7d519bda29adad90766aaa5d2297708129a39 | internal/cpu: inline DebugOptions
internal/cpu.DebugOptions is only ever set in runtime.cpuinit on
unix-like platforms. DebugOptions itself is only used in
MustHaveDebugOptionsSupport, so inline the GOOS check there.
Change-Id: I6a35d6b8afcdadfc59585258002f53c20026116c
Reviewed-on: https://go-review.googlesource.com/... | [
{
"path": "src/internal/cpu/cpu.go",
"patch": "@@ -8,11 +8,6 @@ package cpu\n \n import _ \"unsafe\" // for linkname\n \n-// DebugOptions is set to true by the runtime if the OS supports reading\n-// GODEBUG early in runtime startup.\n-// This should not be changed after it is initialized.\n-var DebugOption... | 2025-08-28T14:50:12 |
facebook/react | 838da52d67a42295e05aad8d03f962129d9d88ff | 030d83bab402723cbcb28d48889b9bd83ee3914a | [ci] Fix incorrect tags being pushed for compiler releases
ghstack-source-id: 812e49333ce19c3d13adb6cc87154fb83d7639b0
Pull Request resolved: https://github.com/facebook/react/pull/30620 | [
{
"path": "compiler/scripts/release/publish.js",
"patch": "@@ -61,9 +61,8 @@ async function main() {\n })\n .option('tags', {\n description: 'Tags to publish to npm',\n- type: 'choices',\n- choices: ['experimental'],\n- default: ['experimental'],\n+ type: 'string',\n+ ... | 2024-08-06T21:15:56 |
electron/electron | 1e1dc22e167a9b7313aaa914fb400a19edbbeb7f | bbd7f4a5ad6fbc6d88fcd6924eace4ad3f777d33 | fix: crash when resolving proxy due to network service restart (#42878) | [
{
"path": "shell/browser/browser_process_impl.cc",
"patch": "@@ -329,7 +329,7 @@ const std::string& BrowserProcessImpl::GetSystemLocale() const {\n electron::ResolveProxyHelper* BrowserProcessImpl::GetResolveProxyHelper() {\n if (!resolve_proxy_helper_) {\n resolve_proxy_helper_ = base::MakeRefCounted... | 2024-07-15T08:46:24 |
nodejs/node | 269496e8e166fbc06d6f3808a5863ce792de9f11 | d54641cd3883b3be116ea24e7b64744331f265a4 | src: improve error handling in encoding_binding.cc
PR-URL: https://github.com/nodejs/node/pull/56915
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Xuguang Mei <meixuguang@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/encoding_binding.cc",
"patch": "@@ -20,7 +20,6 @@ using v8::Context;\n using v8::FunctionCallbackInfo;\n using v8::Isolate;\n using v8::Local;\n-using v8::MaybeLocal;\n using v8::Object;\n using v8::ObjectTemplate;\n using v8::String;\n@@ -139,8 +138,7 @@ void BindingData::EncodeUtf8String(co... | 2025-02-06T16:12:42 |
vercel/next.js | 2c43e517735f000b5adcb4becea44f81fc0419f6 | bf8cadd865c88a4c8222d749491c93816de97506 | [Segment Cache] Fix tests related to optimistic loading state reuse (#84498)
When navigating to a route that reads from search params, and there's no
matching route prefetch in the cache, we use a trick where we
optimistically assume that a route will not be rewritten or redirected
based on the search string. So, if w... | [
{
"path": "packages/next/src/client/components/segment-cache-impl/cache-key.ts",
"patch": "@@ -21,6 +21,8 @@ export function createCacheKey(\n originalHref: string,\n nextUrl: string | null\n ): RouteCacheKey {\n+ // TODO: We should remove the hash from the href and track that separately.\n+ // There'... | 2025-10-08T16:34:20 |
golang/go | 94b7d519bda29adad90766aaa5d2297708129a39 | ba9e1ddccfe55e711ac3987f74109393dfb736af | net: update document on limitation of iprawsock on Windows
Fixed: #23209
Change-Id: I3bfe9f5192cbacf387386efda72f04eeec5ff3be
GitHub-Last-Rev: 660a62d139dda21fcaea1e95394ca38521c7f00a
GitHub-Pull-Request: golang/go#74857
Reviewed-on: https://go-review.googlesource.com/c/go/+/692895
LUCI-TryBot-Result: Go LUCI <golang... | [
{
"path": "src/net/iprawsock.go",
"patch": "@@ -25,6 +25,12 @@ import (\n // BUG(mikio): On JS and Plan 9, methods and functions related\n // to IPConn are not implemented.\n \n+// BUG: On Windows, raw IP sockets are restricted by the operating system.\n+// Sending TCP data, sending UDP data with invalid so... | 2025-08-12T12:36:54 |
facebook/react | 030d83bab402723cbcb28d48889b9bd83ee3914a | 9f0508fcf47026cdc58e49a15e5865b66a24480f | [ci] Fix dist-tag command
ghstack-source-id: bdbcc12b2815d00d790397c6a6702c7f6e1564e0
Pull Request resolved: https://github.com/facebook/react/pull/30619 | [
{
"path": "compiler/scripts/release/publish.js",
"patch": "@@ -180,22 +180,17 @@ async function main() {\n spinner.start('Pushing tags to npm');\n for (const tag of argv.tags) {\n try {\n- let opts;\n+ let opts = ['dist-tag', 'add', `${pkgName}@${newVersion}`, tag];\n ... | 2024-08-06T19:30:47 |
electron/electron | bbd7f4a5ad6fbc6d88fcd6924eace4ad3f777d33 | 493bc3ac9d99b33ab87bed0c93d78ec4588d84af | fix: File System Access API should remember last picked directory (#42850) | [
{
"path": "shell/browser/file_system_access/file_system_access_permission_context.cc",
"patch": "@@ -12,6 +12,8 @@\n #include \"base/json/values_util.h\"\n #include \"base/path_service.h\"\n #include \"base/task/thread_pool.h\"\n+#include \"base/time/time.h\"\n+#include \"base/timer/timer.h\"\n #include \"b... | 2024-07-14T16:43:37 |
nodejs/node | 436723282d64643fb3d1d91648c5f51bce8a077e | a08129cb0d8ff1df3ce45c3910cae1fc72aaf080 | doc: update post sec release process
PR-URL: https://github.com/nodejs/node/pull/56907
Fixes: https://github.com/nodejs-private/security-release/issues/52
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewe... | [
{
"path": "doc/contributing/security-release-process.md",
"patch": "@@ -156,14 +156,10 @@ security announcements for more information.\n \n ## Post-Release\n \n-* [ ] 1\\. **Merge the Next Security Release PR:**\n- * This involves moving the `vulnerabilities.json` file from\n- `security-release/next-sec... | 2025-02-05T19:48:05 |
vercel/next.js | a7d3aecafedc920221a885b8ab00f35f6de5e91c | e0f676b698a02ffa06ab8b41aff717fed3a69f23 | Turbopack: avoid race condition when updating cells (#84598)
### What?
The update cell operation has a race condition. There is a time between changing the value and invalidating the dependent tasks. That sounds fine as tasks are eventually invalidated. But it's not due to recomputing tasks.
Tasks are considered... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -831,7 +831,6 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n return Ok(Err(self.listen_to_cell(&mut task, task_id, reader, cell).0));\n }\n let is_cancelled = matches!(in_progress, Some(In... | 2025-10-08T13:11:27 |
golang/go | ba9e1ddccfe55e711ac3987f74109393dfb736af | 9f6936b8da81672cebcfa7ac3d6edddf9f1a5d65 | testing: allow specify temp dir by GOTMPDIR environment variable
Allow change the default temp directory returned by t.TempDir()
by environment variable GOTMPDIR.
Fixes #61585
Change-Id: Iba969bb02744e106cf15d80e0eda0245a55fc290
GitHub-Last-Rev: aeacea00952b11990b49a0fde6a0ce4fe910b777
GitHub-Pull-Request: golang/go... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2407,8 +2407,10 @@\n //\t\tThe name of checksum database to use and optionally its public key and\n //\t\tURL. See https://golang.org/ref/mod#authenticating.\n //\tGOTMPDIR\n-//\t\tThe directory where the go command will write\n-//\t\ttemporary source files, ... | 2025-08-12T14:06:53 |
electron/electron | 493bc3ac9d99b33ab87bed0c93d78ec4588d84af | 3a6a20153429bf6b2712af91c970c56ea4d72173 | fix: `desktopCapturer` and `screen` display ids should match (#42883)
* fix: `desktopCapturer` and `screen` display IDs should match
* simplify wide-to-utf8 conversion
* remove unnecessary include | [
{
"path": "shell/browser/api/electron_api_desktop_capturer.cc",
"patch": "@@ -399,28 +399,37 @@ void DesktopCapturer::UpdateSourcesList(DesktopMediaList* list) {\n if (using_directx_capturer_) {\n std::vector<std::string> device_names;\n // Crucially, this list of device names will be in the... | 2024-07-14T07:51:57 |
nodejs/node | a08129cb0d8ff1df3ce45c3910cae1fc72aaf080 | a5cc976254df818dc7dfbe23de00b386dbc1ed2f | src: improve error handling in permission.cc
PR-URL: https://github.com/nodejs/node/pull/56904
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Xuguang Mei <meixuguang@gmail.com> | [
{
"path": "src/permission/permission.cc",
"patch": "@@ -17,9 +17,9 @@ namespace node {\n \n using v8::Context;\n using v8::FunctionCallbackInfo;\n+using v8::IntegrityLevel;\n using v8::Local;\n using v8::MaybeLocal;\n-using v8::NewStringType;\n using v8::Object;\n using v8::String;\n using v8::Value;\n@@ -3... | 2025-02-03T15:50:39 |
facebook/react | 3d61b9b4cd4135084d1e8e3b05813b915c38764d | 22360089b5e40ccfa5df26f1ec491b5c46e7ad61 | [compiler] Stay in SSA form through entire pipeline
This PR updates to use SSA form through the entire compilation pipeline. This means that in both HIR form and ReactiveFunction form, `Identifier` instances map 1:1 to `IdentifierId` values. If two identifiers have the same IdentifierId, they are the same instance. Wh... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -77,7 +77,11 @@ import {flattenScopesWithHooksOrUseHIR} from '../ReactiveScopes/FlattenScopesWit\n import {pruneAlwaysInvalidatingScopes} from '../ReactiveScopes/PruneAlwaysInvalidatingScopes';\n import pruneI... | 2024-08-06T18:24:51 |
vercel/next.js | 6d536ed25bf9325710bf6ad158ce0c35e98ce3ed | b41b737b2479bd83f22229b96085bdb13f177b8a | Turbopack: improve errors/warnings for turbopack messages (#84552)
### What?
* make the turbopack error not a really long line, which is annoying in the deployment build log
* Show a `(invalid experimental key)` info in the list of experimental options when they are not supported. | [
{
"path": "packages/next/src/lib/turbopack-warning.ts",
"patch": "@@ -152,15 +152,20 @@ export async function validateTurboNextConfig({\n if (process.env.TURBOPACK === 'auto' && hasWebpackConfig && !hasTurboConfig) {\n const configFile = rawNextConfig.configFileName ?? 'your Next config file'\n Lo... | 2025-10-08T06:02:50 |
golang/go | 9f6936b8da81672cebcfa7ac3d6edddf9f1a5d65 | 89d41d254a758f9b5e554761c92508220f4342a5 | cmd/link: disallow linkname of runtime.addmoduledata
Although a comment on addmoduledata warns that it should not be
called from Go code, the linker still allow it to be accessed via
go:linkname. Using linkname on this function will cause a linker
crash when building with buildmode=plugin.
Fixes #75180
Change-Id: Ib... | [
{
"path": "src/cmd/link/internal/loader/loader.go",
"patch": "@@ -2440,6 +2440,7 @@ var blockedLinknames = map[string][]string{\n \t// Others\n \t\"net.newWindowsFile\": {\"net\"}, // pushed from os\n \t\"testing/synctest.testingSynctestTest\": {\"testing/synctest\"}, // pushe... | 2025-08-28T09:32:09 |
nodejs/node | a5cc976254df818dc7dfbe23de00b386dbc1ed2f | cebf4c8a9f23e5c15e005a96a4c968f2a074d305 | src: improve error handling in node_sqlite
PR-URL: https://github.com/nodejs/node/pull/56891
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -126,13 +126,15 @@ inline void THROW_ERR_SQLITE_ERROR(Isolate* isolate, int errcode) {\n const char* errstr = sqlite3_errstr(errcode);\n \n Environment* env = Environment::GetCurrent(isolate);\n- auto error = CreateSQLiteError(isolate, errstr).ToLocalChecked... | 2025-02-03T04:43:44 |
vercel/next.js | 9962fa563c34a471fc1817aefff60377d8800c45 | 29010ffdf40c9d0cd371a862e9aa72878528626b | Turbopack: delete .next folder before throwing due to "pages/app directory must be in the same folder" (#84553)
### What?
I expect an empty .next folder after an error, so it should delete it before doing the check, so that an error doesn't result in a stale .next folder | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -1016,6 +1016,34 @@ export default async function build(\n NextBuildContext.originalRewrites = config._originalRewrites\n NextBuildContext.originalRedirects = config._originalRedirects\n \n+ const distDirCreated = await nextBuildSpa... | 2025-10-07T22:39:17 |
facebook/react | c9143b98d0096c909a2cc23290e3044c1390f6e2 | e8a2b47eb5d807a2da22915a6d444d3947c9a885 | [compiler] Refactor release script
Updates the release script to publish tags as well as take a `--ci`
option
Test plan:
```
$ yarn npm:publish --debug --frfr
yarn run v1.22.22
$ node scripts/release/publish --debug --frfr
ℹ Preparing to publish (for real) [debug=true]
ℹ Building packages
✔ Successfully built babel-... | [
{
"path": "compiler/package.json",
"patch": "@@ -25,9 +25,11 @@\n \"snap\": \"yarn workspace babel-plugin-react-compiler run snap\",\n \"snap:build\": \"yarn workspace snap run build\",\n \"postinstall\": \"perl -p -i -e 's/react\\\\.element/react.transitional.element/' packages/snap/node_module... | 2024-08-06T18:41:26 |
electron/electron | 3a6a20153429bf6b2712af91c970c56ea4d72173 | 53d7cca7a21c39f88cca177b6baec4ecd700c0db | build: fixup GHA running on fork PRs (#42880)
* chore: update build-tools for GHA
* chore: don't rely on environment variables for source cache location | [
{
"path": ".github/actions/install-build-tools/action.yml",
"patch": "@@ -6,6 +6,6 @@ runs:\n - name: Install Build Tools\n shell: bash\n run: |\n- export BUILD_TOOLS_SHA=47d4bb016f47d89938898c794db80b9f98d78ad7\n+ export BUILD_TOOLS_SHA=d5b87591842be19058e8d75d2c5b7f1fabe9f450\n n... | 2024-07-13T17:38:03 |
golang/go | 38204e087267a3408e36aa23d2b5ac36f22feef3 | 252c9011255872e21284480754400f9be7d48bf9 | testing/synctest: call out common issues with tests
While each point is explained their respective sections for Time,
Blocking, and Isolation, these appear to be the most common
issues worth calling out up front.
Fixes #75052
Change-Id: I916b559075ee4d1d23810a08459e037e21690193
Reviewed-on: https://go-review.googles... | [
{
"path": "src/testing/synctest/synctest.go",
"patch": "@@ -7,6 +7,14 @@\n // The [Test] function runs a function in an isolated \"bubble\".\n // Any goroutines started within the bubble are also part of the bubble.\n //\n+// Each test should be entirely self-contained:\n+// The following guidelines should ... | 2025-08-17T11:29:48 |
nodejs/node | cebf4c8a9f23e5c15e005a96a4c968f2a074d305 | 316014d1727360bff37c670087322ce16cf4b301 | sqlite: fix use-after-free in StatementSync due to premature GC
PR-URL: https://github.com/nodejs/node/pull/56840
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -535,7 +535,8 @@ void DatabaseSync::Prepare(const FunctionCallbackInfo<Value>& args) {\n sqlite3_stmt* s = nullptr;\n int r = sqlite3_prepare_v2(db->connection_, *sql, -1, &s, 0);\n CHECK_ERROR_OR_THROW(env->isolate(), db, r, SQLITE_OK, void());\n- BaseObj... | 2025-02-05T14:33:59 |
electron/electron | 7dd6d7697d097363d30fc5a2fe491778b8fd97fa | 514e9bbb04c6daca135753365c5be559fdb4059d | chore: allow multiple OS selection on bug reports (#42854) | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -26,7 +26,8 @@ body:\n required: true\n - type: dropdown\n attributes:\n- label: What operating system are you using?\n+ label: What operating system(s) are you using?\n+ multiple: true\n options:\n - Windows\n - ... | 2024-07-11T20:23:43 |
facebook/react | e8a2b47eb5d807a2da22915a6d444d3947c9a885 | ff0d2621f4846414b134800b1639287b66df42cf | [compiler] Remove sleep in manual release script
I originally added this prior to the compiler being OSS'd as a "just in
case" feature to panic cancel if something went wrong. Now that the
compiler is already launched this is unnecessary.
ghstack-source-id: dd17dc8a331657ce23c0cbc012ba967cfc3b9542
Pull Request resolv... | [
{
"path": "compiler/scripts/release/publish-manual.js",
"patch": "@@ -11,7 +11,6 @@ const PUBLISHABLE_PACKAGES = [\n 'eslint-plugin-react-compiler',\n 'react-compiler-healthcheck',\n ];\n-const TIME_TO_RECONSIDER = 3_000;\n \n function _spawn(command, args, options, cb) {\n const child = cp.spawn(comm... | 2024-08-06T18:41:25 |
golang/go | 252c9011255872e21284480754400f9be7d48bf9 | 53515fb0a9e267d6040c1d8785fe51b1367e8d4d | os,syscall: pass file flags to CreateFile on Windows
Add support for FILE_FLAG_* constants in the flag argument of
os.OpenFile and syscall.Open on Windows.
Passing invalid flags will result in an error.
Updates #73676
Change-Id: Ie215a3dd14f0d74141533f0a07865a02a67a3846
Reviewed-on: https://go-review.googlesource.c... | [
{
"path": "doc/next/6-stdlib/99-minor/os/73676.md",
"patch": "@@ -0,0 +1,4 @@\n+On Windows, the [OpenFile] `flag` parameter can now contain any combination of\r\n+Windows-specific file flags, such as `FILE_FLAG_OVERLAPPED` and\r\n+`FILE_FLAG_SEQUENTIAL_SCAN`, for control of file or device caching behavior,\... | 2025-08-27T09:18:47 |
vercel/next.js | 29010ffdf40c9d0cd371a862e9aa72878528626b | 9c9e793bdc8de08453aa722da781a8646a4db0b6 | Update cases for build complete with adapters (#84361)
This handles `i18n` cases, ensures `pathname` field is prefixed with
`basePath` when configured, and fixes interop with `output: 'export'`
configured. | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -35,6 +35,8 @@ import {\n JSON_CONTENT_TYPE_HEADER,\n NEXT_RESUME_HEADER,\n } from '../../lib/constants'\n+import { normalizeLocalePath } from '../../shared/lib/i18n/normalize-locale-path'\n+import { addPathPrefix } from '../../... | 2025-10-07T21:59:01 |
nodejs/node | 8ac3055501da3fa82773a478ad33a59329a75ca6 | 95c04e23ab40d85da196ba77ab705bd42c919e1f | src: improve error handling in node_os by removing ToLocalChecked
PR-URL: https://github.com/nodejs/node/pull/56888
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "src/node_os.cc",
"patch": "@@ -50,6 +50,7 @@ using v8::Isolate;\n using v8::Local;\n using v8::LocalVector;\n using v8::MaybeLocal;\n+using v8::Name;\n using v8::NewStringType;\n using v8::Null;\n using v8::Number;\n@@ -71,8 +72,10 @@ static void GetHostname(const FunctionCallbackInfo<Value>& arg... | 2025-02-05T04:20:01 |
facebook/react | ff0d2621f4846414b134800b1639287b66df42cf | eb52f3788fe821427863ebe52fb6935ea7ec2474 | Fix rust lints
ghstack-source-id: baf433a98a70d9105c8088d82e04a3d96783e9e6
Pull Request resolved: https://github.com/facebook/react/pull/30616 | [
{
"path": "compiler/crates/react_hir/src/merge_consecutive_blocks.rs",
"patch": "@@ -151,6 +151,7 @@ impl MergedBlocks {\n \n #[derive(Debug, Error)]\n #[error(\"Expected predecessor {predecessor} to exist\")]\n+#[allow(dead_code)]\n pub struct ExpectedPredecessorToExist {\n predecessor: BlockId,\n }",
... | 2024-08-06T18:41:24 |
electron/electron | dab006b1cf78d9f34cb0acaedbe5ebac998cd819 | 4e10eeb87e8ad361ef497d3e40ab435d8504d4c9 | ci: fix Nan test failure on Linux (#42863)
ci: Nan test failure on Linux | [
{
"path": ".github/workflows/pipeline-segment-node-nan-test.yml",
"patch": "@@ -152,7 +152,7 @@ jobs:\n unzip -:o dist.zip\n - name: Setup Linux for Headless Testing\n run: sh -e /etc/init.d/xvfb start\n- - name: Run Node.js Tests\n+ - name: Run Nan Tests\n run: |\n cd ... | 2024-07-11T14:47:02 |
golang/go | 13bb48e6fbc35419a28747688426eb3684242fbc | ba1109feb515c2eb013399f53be5f17cfe1f189f | go/constant: fix complex != unknown comparison
By the contract of Compare, if one operand is Unknown, the result must be
false.
Fixes #75137
Change-Id: I56420fae808395f89769f5e5d448f9e1df9a622f
GitHub-Last-Rev: 858ba89a91bf966223975541af739ab0ab977075
GitHub-Pull-Request: golang/go#75140
Reviewed-on: https://go-revi... | [
{
"path": "src/go/constant/value.go",
"patch": "@@ -1083,7 +1083,10 @@ func match0(x, y Value) (_, _ Value) {\n \t\t\treturn rtof(x1), y\n \t\t}\n \tcase complexVal:\n-\t\treturn vtoc(x), y\n+\t\tswitch x1 := x.(type) {\n+\t\tcase int64Val, intVal, ratVal, floatVal:\n+\t\t\treturn vtoc(x1), y\n+\t\t}\n \t}\... | 2025-08-25T15:41:53 |
vercel/next.js | b0780f2ae236901bb57cae0b4cf4b48c01792845 | 640d7bc5097c2327d30f63a288d2afa2f488d518 | Turbopack: don't ignore TS parse errors (#84597)
`no_early_errors: true` was causing parse errors to be discarded.
For example with https://github.com/swc-project/swc/issues/11142 where there was a parse error (though it was a bug in this case), that left a `Invalid` AST node in the output, which only broke minificat... | [
{
"path": ".prettierignore",
"patch": "@@ -65,6 +65,7 @@ test/development/mcp-server/fixtures/default-template/app/build-error/page.tsx\n /turbopack/crates/turbopack-tests/tests/execution/turbopack/basic/error/input/broken.js\n /turbopack/crates/turbopack-tests/tests/execution/turbopack/exports/invalid-expo... | 2025-10-07T21:11:45 |
nodejs/node | 95c04e23ab40d85da196ba77ab705bd42c919e1f | 6aa42f9cf045e31d5b9ac6c404ed722710ad7a8c | src: improve error handling in node_url
Eliminate uses of USE and ToLocalChecked to properly
propagate errors
PR-URL: https://github.com/nodejs/node/pull/56886
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-B... | [
{
"path": "src/node_url.cc",
"patch": "@@ -26,17 +26,17 @@ using v8::FunctionCallbackInfo;\n using v8::HandleScope;\n using v8::Isolate;\n using v8::Local;\n-using v8::NewStringType;\n using v8::Object;\n using v8::ObjectTemplate;\n+using v8::SnapshotCreator;\n using v8::String;\n using v8::Value;\n \n void... | 2025-02-05T03:47:55 |
electron/electron | 4e10eeb87e8ad361ef497d3e40ab435d8504d4c9 | fa6ce4f0f886644e5bea79fcb619181dce48f47d | fix: `desktopCapturer` and `screen` source ids should match screen ids (#42781)
* fix: desktopCapturer screen source ids should match screen ids
* test: add a regression test | [
{
"path": "shell/browser/api/electron_api_desktop_capturer.cc",
"patch": "@@ -167,6 +167,16 @@ std::unique_ptr<ThumbnailCapturer> MakeScreenCapturer() {\n : nullptr;\n }\n \n+#if BUILDFLAG(IS_WIN)\n+BOOL CALLBACK EnumDisplayMonitorsCallback(HMONITOR monitor,\n+ ... | 2024-07-10T23:32:29 |
facebook/react | eb52f3788fe821427863ebe52fb6935ea7ec2474 | 187dd6a7a234095dfe67d3ee30dabfd5e2ddc531 | [CI] fix the shared_lint cached key (#30609)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please ma... | [
{
"path": ".github/workflows/shared_lint.yml",
"patch": "@@ -43,7 +43,7 @@ jobs:\n uses: actions/cache@v4\n with:\n path: \"**/node_modules\"\n- key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}\n+ key: ${{ runner.arch }}-${{ runner.os... | 2024-08-06T18:43:10 |
vercel/next.js | 0a02fd820edc2ec57f85c5c3f08b769291694256 | 82bb2558bec5ee4e136dffdbaf578a4c161027b5 | Turbopack: Remove workaround in hyper for rustc miscompilation bug on macos intel (#84578)
Reverts https://github.com/vercel/next.js/pull/81950
This bug was fixed a few months ago upstream in rustc with https://github.com/rust-lang/rust/pull/143126
We worked around this by patching the hyper crate since updating rus... | [
{
"path": "Cargo.lock",
"patch": "@@ -2831,19 +2831,22 @@ dependencies = [\n \n [[package]]\n name = \"hyper\"\n-version = \"1.6.0\"\n-source = \"git+https://github.com/bgw/hyper-rs.git?branch=v1.6.0-with-macos-intel-miscompilation-workaround#ab3544930722e6c270c16d3239dbb1d58f713393\"\n+version = \"1.7.0\"\... | 2025-10-07T17:56:12 |
golang/go | e47d88beae126387647348810b728ed12c8a0d61 | 6b837a64dbe6264035037d61c56ab94b55b2844d | os: return nil slice when ReadDir is used with a file on file_windows
ReadDir should return (nil, ENOTDIR) when the path points to a file
instead of a directory. That's the behavior on Unix systems, and it also
used to be the behavior on Windows. However, Windows currently returns
([]DirEntry{}, ENOTDIR).
We should c... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -11,6 +11,11 @@ import (\n \t\"unsafe\"\n )\n \n+// Openat flags supported by syscall.Open.\n+const (\n+\tO_DIRECTORY = 0x04000 // target must be a directory\n+)\n+\n // Openat flags not supported by syscall.Open.\n //\n // These are inven... | 2025-08-27T07:12:29 |
nodejs/node | c889b85498d1c45b278ce225d0c3ce3426ac0a88 | c4fb331390b5e9b2c6e328cc9e32a23b0e15d997 | deps: V8: cherry-pick 9ab40592f697
Original commit message:
[riscv] Flush icache in both local and remote harts
Fix the I-Cache flush flag according to the implementation of flush_icache_mm in Linux kernel.
Change-Id: I6e6b1f56c377c2c0a629e170737bfac6c357ce8d
Reviewed-on: https://chromium-review.goo... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,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.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n... | 2025-02-04T16:11:38 |
electron/electron | fa6ce4f0f886644e5bea79fcb619181dce48f47d | f9d94211bb2ad2f96ed1c4fe8c457f3c5b4c4817 | fix: High Contrast mode not working on Windows (#42853)
Closes https://github.com/electron/electron/issues/42609
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5324688
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5368321 | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -424,6 +424,7 @@ void ElectronBrowserClient::OverrideWebkitPrefs(\n renderer_prefs->can_accept_load_drops = false;\n \n ui::NativeTheme* native_theme = ui::NativeTheme::GetInstanceForNativeUi();\n+ prefs->in_forced_colors = native_theme... | 2024-07-10T22:14:02 |
golang/go | 765905e3bd13dcb048388890dba2ea47f6e58711 | 2ee4b31242e426df757aa09450b744e0af8cb08d | debug/elf: don't panic if symtab too small
No test case because the problem can only happen for invalid data.
Let the fuzzer find cases like this.
For #47653
Fixes #75130
Change-Id: Ie6015564bb98334377383bbc16d79119dc4e36f9
Reviewed-on: https://go-review.googlesource.com/c/go/+/698855
Reviewed-by: Tobias Klauser <to... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -692,6 +692,9 @@ func (f *File) getSymbols64(typ SectionType) ([]Symbol, []byte, error) {\n \tif len(data)%Sym64Size != 0 {\n \t\treturn nil, nil, errors.New(\"length of symbol section is not a multiple of Sym64Size\")\n \t}\n+\tif len(data) == 0 {\n+\t\tretur... | 2025-08-24T20:17:56 |
vercel/next.js | 75b1ceff2fb29d78f7a8566124a877bc2b7386c2 | 316c06295ca33cd8c340a64722cf9019b980efbf | fix(cache-tags): add `/index` to implicit tags and adjust `revalidatePath()` (#84586)
This fixes an issue where the tag was `/` but the build output was
`/index` (and vice-versa) meaning you couldn't use `revalidatePath()` in
some cases because the tag didn't match.
---------
Co-authored-by: JJ Kasper <jj@jjsweb.sit... | [
{
"path": "packages/next/src/server/lib/implicit-tags.test.ts",
"patch": "@@ -0,0 +1,83 @@\n+import type { OpaqueFallbackRouteParams } from '../request/fallback-params'\n+import { getImplicitTags } from './implicit-tags'\n+\n+describe('getImplicitTags()', () => {\n+ it.each<{\n+ page: string\n+ url: ... | 2025-10-07T16:03:51 |
facebook/react | c0ee8e94b049a8fb19dd3606a5a1cecc0cbc6a1b | 6750423ca4b9371363fbad1a2be2de84a8e94054 | Fix typos in Turbopack configuration and in Node.js loader error messages (#30593)
<!--
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.
Befor... | [
{
"path": "packages/react-server-dom-esm/src/ReactFlightESMNodeLoader.js",
"patch": "@@ -329,9 +329,9 @@ async function transformClientModule(\n newSrc +=\n 'throw new Error(' +\n JSON.stringify(\n- `Attempted to call the default export of ${url} from the server` +\n+ ... | 2024-08-05T14:11:39 |
nodejs/node | c4fb331390b5e9b2c6e328cc9e32a23b0e15d997 | dd92abc40587c3c236c40b262dd1918660900cb9 | sqlite: handle conflicting SQLite and JS errors
This commit adds support for the situation where SQLite is
trying to report an error while JavaScript already has an
exception pending.
Fixes: https://github.com/nodejs/node/issues/56772
PR-URL: https://github.com/nodejs/node/pull/56787
Reviewed-By: James M Snell <jasne... | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -101,9 +101,16 @@ inline MaybeLocal<Object> CreateSQLiteError(Isolate* isolate, sqlite3* db) {\n return e;\n }\n \n-inline void THROW_ERR_SQLITE_ERROR(Isolate* isolate, sqlite3* db) {\n+class DatabaseSync;\n+\n+inline void THROW_ERR_SQLITE_ERROR(Isolate* isolat... | 2025-02-04T13:58:33 |
rust-lang/rust | 038b718390d1076c201eaa6c72bb2a2aff9633f5 | 1eb36c651676c1101f3049a122a4aa38bb5c45a4 | Fix ICE on empty file with -Zquery-dep-graph | [
{
"path": "compiler/rustc_middle/src/dep_graph/graph.rs",
"patch": "@@ -826,7 +826,13 @@ impl DepGraph {\n where\n F: FnOnce() -> String,\n {\n- let dep_node_debug = &self.data.as_ref().unwrap().dep_node_debug;\n+ // Early queries (e.g., `-Z query-dep-graph` on empty crates) ca... | 2026-02-28T07:53:55 |
golang/go | 2ee4b31242e426df757aa09450b744e0af8cb08d | b21867b1a2a8e276257e3cb81f4a1dc7e8f9e2cd | net/http: Ensure that CONNECT proxied requests respect MaxResponseHeaderBytes
Currently, CONNECT proxied requests use an unlimited Reader. As a
result, a malicious or misbehaving proxy server can send an unlimited
number of bytes to a client; causing the client to indefinitely receive bytes
until it runs out of memory... | [
{
"path": "src/net/http/transport.go",
"patch": "@@ -325,6 +325,13 @@ func (t *Transport) readBufferSize() int {\n \treturn 4 << 10\n }\n \n+func (t *Transport) maxHeaderResponseSize() int64 {\n+\tif t.MaxResponseHeaderBytes > 0 {\n+\t\treturn t.MaxResponseHeaderBytes\n+\t}\n+\treturn 10 << 20 // conservati... | 2025-08-25T13:07:25 |
electron/electron | 170b72ccfacf4f46cc675fd5d246fd961699dde7 | e54ffdf7ed0d3961f87904247cc5393b14b57118 | ci: fix CircleCI config (#42829)
* ci: fix CircleCI config
* ci: fix syntax error | [
{
"path": ".circleci/config.yml",
"patch": "@@ -31,7 +31,6 @@ jobs:\n - path-filtering/set-parameters:\n base-revision: main\n mapping: |\n- ^((?!docs/).)*$ run-build-mac true\n ^((?!docs/).)*$ run-build-linux true\n docs/.* run-docs-only true\n ... | 2024-07-09T01:38:05 |
vercel/next.js | 316c06295ca33cd8c340a64722cf9019b980efbf | b5eba8ff916464232004fc914570365f9110296b | [dev] Define request ID for RSC requests on the client (#84605)
Previously, we defined a request ID for RSC requests on the server. The
request ID is used to tag debug information sent via WebSocket to the
client, which then routes those chunks to the debug channel associated
with this ID.
However, this meant that th... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -851,5 +851,6 @@\n \"850\": \"metadataBase is not a valid URL: %s\",\n \"851\": \"Pass either `webpack` or `turbopack`, not both.\",\n \"852\": \"Only custom servers can pass `webpack`, `turbo`, or `turbopack`.\",\n- \"853\": \"Turbopack build faile... | 2025-10-07T14:59:00 |
facebook/react | 8a70d31ba977a8cdbd8ae2146fdeb5b427bf4ff9 | 3af905d95448d582cbd62fe6d41bd976ce9787ea | [DevTools] Track DOM nodes to Fiber map for HostHoistable Resources (#30590)
Follow up from #30584.
You can already select a singleton or hoistable (that's not a resource)
in the browser elements panel and it'll select the corresponding node in
the RDT Components panel. That works because it uses the same mechani... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -696,6 +696,40 @@ const fiberToFiberInstanceMap: Map<Fiber, FiberInstance> = new Map();\n // operations that should be the same whether the current and work-in-progress Fiber is used.\n const idToDevToolsInstanceMap: Map<... | 2024-08-02T23:22:39 |
nodejs/node | eb11adfc026993b2e67064116198a50e6de91f23 | a091f4890e239c9a726137a045eef4db32b7e3db | src,test: expand test coverage for urlpattern and fix error
PR-URL: https://github.com/nodejs/node/pull/56878
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> | [
{
"path": "src/node_url_pattern.cc",
"patch": "@@ -104,13 +104,14 @@ URLPatternRegexProvider::regex_search(std::string_view input,\n return std::nullopt;\n }\n \n+ // V8 checks that the regexp exec result is one of the correct types.\n+ DCHECK_IMPLIES(!entry->IsUndefined(), entry->IsString()... | 2025-02-04T04:52:39 |
golang/go | b21867b1a2a8e276257e3cb81f4a1dc7e8f9e2cd | d19e377f6ea3b84e94d309894419f2995e7b56bd | net/http: require exact match for CrossSiteProtection bypass patterns
Fixes #75054
Fixes CVE-2025-47910
Change-Id: I6a6a696440c45c450d2cd681f418b01aa0422a60
Reviewed-on: https://go-review.googlesource.com/c/go/+/699275
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-... | [
{
"path": "src/net/http/csrf.go",
"patch": "@@ -77,13 +77,21 @@ func (c *CrossOriginProtection) AddTrustedOrigin(origin string) error {\n \treturn nil\n }\n \n-var noopHandler = HandlerFunc(func(w ResponseWriter, r *Request) {})\n+type noopHandler struct{}\n+\n+func (noopHandler) ServeHTTP(ResponseWriter, *... | 2025-08-26T20:52:39 |
rust-lang/rust | c9b2784731332e4e9a715d5eb5dfbde282f26fd3 | 1eb36c651676c1101f3049a122a4aa38bb5c45a4 | mark two polonius tests as known-bug
As tracked in the soundness issue 153215. | [
{
"path": "tests/ui/impl-trait/alias-liveness/rpit-hide-lifetime-for-swap.edition2015.stderr",
"patch": "@@ -1,5 +1,5 @@\n error[E0700]: hidden type for `impl Swap + 'a` captures lifetime that does not appear in bounds\n- --> $DIR/rpit-hide-lifetime-for-swap.rs:20:5\n+ --> $DIR/rpit-hide-lifetime-for-swap... | 2026-02-28T09:48:28 |
facebook/react | 3af905d95448d582cbd62fe6d41bd976ce9787ea | aa8469fefbde17ab9d2e2cc06deb0a8f153bd005 | [compiler] Fix issue with macro arguments being outlined
Summary:
Fixes issue documented by #30435. We change the pipeline order so that outlining comes after tracking macro operands, and any function that is referenced in a macro will now not be outlined.
ghstack-source-id: f731ad65c8b84db3fc5f3a2ff3a6986112765963
P... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -56,7 +56,7 @@ import {\n flattenReactiveLoops,\n flattenScopesWithHooksOrUse,\n inferReactiveScopeVariables,\n- memoizeFbtOperandsInSameScope,\n+ memoizeFbtAndMacroOperandsInSameScope,\n mergeOverla... | 2024-08-02T21:55:54 |
vercel/next.js | b5eba8ff916464232004fc914570365f9110296b | 52a26cdb0ccb8c27d1c484aa22c46d2c9332890e | [Cache Components] Schedule work on timeouts (#84344)
Previously we used the immediate queue to schedule the consecutive tasks
that would prerender and abort and page prerender. This works fine but
since React does not consider immediates as IO for async work tracking
it means we can't use it for scheduling more advan... | [
{
"path": "packages/next/src/server/app-render/app-render-prerender-utils.ts",
"patch": "@@ -2,7 +2,7 @@ import { InvariantError } from '../../shared/lib/invariant-error'\n \n /**\n * This is a utility function to make scheduling sequential tasks that run back to back easier.\n- * We schedule on the same q... | 2025-10-07T14:16:07 |
electron/electron | e9db02948e8c3b7f08dcfe4c6984009a2436cd9a | 27e3273f0ab1bdddb853bd780fb786c432f28d6e | fix: multiple move() calls on the same unique_ptr (#42788) | [
{
"path": "shell/browser/extensions/electron_extensions_browser_client.cc",
"patch": "@@ -343,13 +343,12 @@ void ElectronExtensionsBrowserClient::BroadcastEventToRenderers(\n return;\n }\n \n- auto event = std::make_unique<extensions::Event>(histogram_value, event_name,\n- ... | 2024-07-08T15:04:35 |
nodejs/node | a091f4890e239c9a726137a045eef4db32b7e3db | 694787826863eaf613f8f624e1a4bb5a8cf87aeb | src: prevent URLPattern property accessors from crashing on invalid this
PR-URL: https://github.com/nodejs/node/pull/56877
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/node_url_pattern.cc",
"patch": "@@ -26,6 +26,7 @@ using v8::Object;\n using v8::PropertyAttribute;\n using v8::ReadOnly;\n using v8::RegExp;\n+using v8::Signature;\n using v8::String;\n using v8::Value;\n \n@@ -682,58 +683,71 @@ static void Initialize(Local<Object> target,\n auto prototype_... | 2025-02-04T03:34:31 |
golang/go | 49a2f3ed871c044eb093b16c09202b7dcd875878 | afc51ed007ad814fc11273f39055aeea71172557 | net: allow zero value destination address in WriteMsgUDPAddrPort
The existing address validity checks already cover both connected and
non-connected sockets. Pass a nil sockaddr just like WriteMsgUDP, when
the address is zero value.
TestWriteToUDP is extended to cover the netip APIs.
Fixes #74841
Change-Id: I2708e7... | [
{
"path": "src/net/ipsock_posix.go",
"patch": "@@ -260,9 +260,6 @@ func addrPortToSockaddrInet6(ap netip.AddrPort) (syscall.SockaddrInet6, error) {\n \t// to an IPv4-mapped IPv6 address.\n \t// The error message is kept consistent with ipToSockaddrInet6.\n \taddr := ap.Addr()\n-\tif !addr.IsValid() {\n-\t\t... | 2025-08-01T16:42:27 |
facebook/react | 1db4d6c41531579fa3a1a8dbcd69d0891d08201f | 8269d55d2325fc382b5e1cf120119130d11f2e94 | [compiler] Validate against setState in useMemo (resubmit of #30552)
ghstack failed to land #30552 properly, resubmitting
Developers sometimes use `useMemo()` as a way to conditionally execute code, including conditionally calling setState. However, the compiler may remove existing useMemo calls if they are not neces... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -127,11 +127,11 @@ export function* run(\n code,\n useMemoCacheIdentifier,\n );\n- yield {\n+ yield log({\n kind: 'debug',\n name: 'EnvironmentConfig',\n value: prettyFormat(env.config)... | 2024-08-02T16:53:27 |
vercel/next.js | 21f72d3ff85d403f56899cf27e597b2f070c8b35 | 1da862828f4a9fccac2a2499d27f32cab4fd3882 | fix(cna): use correct postcss plugins syntax (#79949)
this updates all CNA templates to use the correct object syntax for
postcss plugins.
this was done previously in https://github.com/vercel/next.js/pull/77376
but only for the `--empty` CNA templates.
Co-authored-by: Tim Neutkens <tim@timneutkens.nl> | [
{
"path": "packages/create-next-app/templates/app-tw/js/postcss.config.mjs",
"patch": "@@ -1,5 +1,7 @@\n const config = {\n- plugins: [\"@tailwindcss/postcss\"],\n+ plugins: {\n+ \"@tailwindcss/postcss\": {},\n+ },\n };\n \n export default config;",
"additions": 3,
"deletions": 1,
"languag... | 2025-10-07T13:18:21 |
electron/electron | 5ff91159cdf0bd181967b09e1dc14f9524a266b3 | e89da2bad2f4c449903de1edc7b8655320a6dadc | fix: dangling raw_ptr ElectronBrowserContext::extension_system_ (#42785)
The extension system is freed by the DestroyBrowserContextServices()
call in the destructor, so we need to zero out the pointer to avoid
a dangling raw_ptr error. | [
{
"path": "shell/browser/electron_browser_context.cc",
"patch": "@@ -372,6 +372,10 @@ ElectronBrowserContext::ElectronBrowserContext(\n ElectronBrowserContext::~ElectronBrowserContext() {\n DCHECK_CURRENTLY_ON(BrowserThread::UI);\n NotifyWillBeDestroyed();\n+\n+ // the DestroyBrowserContextServices() c... | 2024-07-08T10:56:03 |
nodejs/node | 35d199f27b12151e2768d8360b24516d463fab8a | 2972fe961bb7690f7935e85012d0a94287e61c7e | src: make multiple improvements to node_url_pattern
* remove USE from node_url_pattern to handle error correctly
* simplify if block in node_url_pattern
* improve error handling in node_url_pattern
* fix error propagation on URLPattern init
* use ToV8Value where more convenient in node_url_pattern
* simplify URLPatter... | [
{
"path": "src/node_url_pattern.cc",
"patch": "@@ -165,6 +165,10 @@ void URLPattern::New(const FunctionCallbackInfo<Value>& args) {\n input = input_buffer.ToString();\n } else if (args[0]->IsObject()) {\n init = URLPatternInit::FromJsObject(env, args[0].As<Object>());\n+ // If init does not hav... | 2025-02-01T20:10:03 |
golang/go | fa18c547cd891e526d2e01cfbc17961de45c31a5 | bfd130db02336a174dab781185be369f089373ba | syscall: sort Windows env block in StartProcess
Fixes #29530
Change-Id: Ia28c78274b9288bfa5de9ccb142a452d291a5b66
Reviewed-on: https://go-review.googlesource.com/c/go/+/694435
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-pr... | [
{
"path": "src/syscall/exec_windows.go",
"patch": "@@ -9,6 +9,7 @@ package syscall\n import (\n \t\"internal/bytealg\"\n \t\"runtime\"\n+\t\"slices\"\n \t\"sync\"\n \t\"unicode/utf16\"\n \t\"unsafe\"\n@@ -113,6 +114,49 @@ func makeCmdLine(args []string) string {\n \treturn string(b)\n }\n \n+func envSorted(... | 2025-08-08T19:44:42 |
facebook/react | 8269d55d2325fc382b5e1cf120119130d11f2e94 | 5fb67fa25c4ea8be046c6d9af41047f3cc379279 | chore[react-devtools]: add global for native and use it to fork backend implementation (#30533)
Adding `__IS_NATIVE__` global, which will be used for forking backend
implementation. Will only be set to `true` for `react-devtools-core`
package, which is used by `react-native`.
Ideally, we should name it `react-dev... | [
{
"path": ".eslintrc.js",
"patch": "@@ -496,6 +496,7 @@ module.exports = {\n __IS_CHROME__: 'readonly',\n __IS_FIREFOX__: 'readonly',\n __IS_EDGE__: 'readonly',\n+ __IS_NATIVE__: 'readonly',\n __IS_INTERNAL_VERSION__: 'readonly',\n },\n },",
"additions": ... | 2024-08-02T09:51:15 |
vercel/next.js | 15edf7b9865a5ca887d5b9fc4908b7bc121827e8 | 1712abe192c2214919403b4076c17dc9032369c6 | fix hidden errors in router-act (#84603)
`createRouterAct` had a couple places where we create a promise via `new
Promise(async (resolve) => { ... })` without accounting for the fact
that some operations inside can throw, in which case the promise would
never resolve. Some tests that use `createRouterAct` like to hang... | [
{
"path": "test/e2e/app-dir/segment-cache/router-act.ts",
"patch": "@@ -159,7 +159,7 @@ export function createRouterAct(\n // `act` controls the timing of when responses reach the client,\n // but it should not affect the timing of when requests reach the\n // server; we ... | 2025-10-07T13:05:20 |
electron/electron | e89da2bad2f4c449903de1edc7b8655320a6dadc | cb2e7f130b66a58edba518605b371a35bd2761ee | fix: dangling raw_ptr<Session> in UserDataLink (#42786)
* fix: dangling raw_ptr<Session> in UserDataLink
* chore: make linter happy | [
{
"path": "shell/browser/api/electron_api_session.cc",
"patch": "@@ -530,9 +530,10 @@ class DictionaryObserver final : public SpellcheckCustomDictionary::Observer {\n #endif // BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)\n \n struct UserDataLink : base::SupportsUserData::Data {\n- explicit UserDataLink(Session... | 2024-07-08T10:55:48 |
nodejs/node | 793c7936c394aba54875f84b135684e38a30ff94 | cadc4ed06703e25e4f05e9108b941b0a61dcbf89 | test: fix race condition in test-child-process-bad-stdio
test-child-process-bad-stdio.js contains a race condition between
a timeout in the test process and a timeout in the spawned child
process. This commit addresses the race condition by having the
child process wait indefinitely to be killed.
PR-URL: https://gith... | [
{
"path": "test/parallel/test-child-process-bad-stdio.js",
"patch": "@@ -3,7 +3,7 @@\n const common = require('../common');\n \n if (process.argv[2] === 'child') {\n- setTimeout(() => {}, common.platformTimeout(100));\n+ setTimeout(() => {}, common.platformTimeout(1000));\n return;\n }\n ",
"additio... | 2025-02-03T03:12:19 |
golang/go | bfd130db02336a174dab781185be369f089373ba | dae9e456ae6992b3c19a8c5039090ee9ca4d9b7d | internal/poll: don't use stack-allocated WSAMsg parameters
WSAMsg parameters should be passed to Windows as heap pointers instead
of stack pointers. This is because Windows might access the memory
after the syscall returned in case of a non-blocking operation (which
is the common case), and if the WSAMsg is on the sta... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -144,19 +144,47 @@ func (o *operation) ClearBufs() {\n \to.bufs = o.bufs[:0]\n }\n \n-func newWSAMsg(p []byte, oob []byte, flags int) windows.WSAMsg {\n-\treturn windows.WSAMsg{\n-\t\tBuffers: &syscall.WSABuf{\n-\t\t\tLen: uint32(len(p)),\n-\t\t\tBuf... | 2025-08-25T07:57:49 |
facebook/react | 4ea12a11d1848c1398f9a8babcfbcd51e150f1d9 | 88ee14ffa57beb0689f26f0c52c357e3ac446af8 | [DevTools] Make Element Inspection Feel Snappy (#30555)
There's two problems. The biggest one is that it turns out that Chrome
is throttling looping timers that we're using both while polling and for
batching bridge traffic. This means that bridge traffic a lot of the
time just slows down to 1 second at a time. No ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -117,12 +117,11 @@ describe('InspectedElement', () => {\n <SettingsContextController>\n <TreeContextController\n defaultSelectedElementID={defaultSelectedElementID}\n- def... | 2024-08-01T15:04:56 |
vercel/next.js | 1712abe192c2214919403b4076c17dc9032369c6 | 7453d200579512a6574f9c53edd716e5cc01615c | Guard `createDebugChannel` import by feature flag (#84604)
We already do that for the initial load in `app-index.tsx` (via #83699), and should also do it for RSC requests. | [
{
"path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts",
"patch": "@@ -41,7 +41,10 @@ let createDebugChannel:\n | typeof import('../../dev/debug-channel').createDebugChannel\n | undefined\n \n-if (process.env.NODE_ENV !== 'production') {\n+if (\n+ process.env.NODE_ENV !=... | 2025-10-07T13:01:17 |
electron/electron | cb2e7f130b66a58edba518605b371a35bd2761ee | 2f4a46f47a4d284ed2748c539bfaf10482908713 | fix: potentially closed webContents in BrowserView (#42633) | [
{
"path": "lib/browser/api/browser-view.ts",
"patch": "@@ -4,6 +4,9 @@ const v8Util = process._linkedBinding('electron_common_v8_util');\n \n export default class BrowserView {\n #webContentsView: WebContentsView;\n+ #ownerWindow: BrowserWindow | null = null;\n+\n+ #destroyListener: ((e: any) => void) |... | 2024-07-08T10:13:53 |
rust-lang/rust | 614bac581b9b093ace4a7fc49c4f8c027e80d75d | 3a70d0349fa378a10c3748f1a48742e61505020f | [win] Fix truncated unwinds for Arm64 Windows | [
{
"path": "compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp",
"patch": "@@ -347,7 +347,13 @@ extern \"C\" LLVMTargetMachineRef LLVMRustCreateTargetMachine(\n // option causes bugs in the LLVM WebAssembly backend. You should be able to\n // remove this check when Rust's minimum supported LLVM version... | 2026-02-27T22:53:09 |
nodejs/node | 0a4672e2086d7feb576cc6f238887b6e12f153cb | b78df6c40248d42e46e3c2ad2de3f2a0e9098111 | tools: remove test-asan/ubsan workflows
They have been disabled for months without anyone looking into fixing
the builds.
PR-URL: https://github.com/nodejs/node/pull/56823
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Re... | [
{
"path": ".github/workflows/test-asan.yml",
"patch": "@@ -1,66 +0,0 @@\n-name: Test ASan\n-\n-on:\n- pull_request:\n- types: [opened, synchronize, reopened, ready_for_review]\n- paths-ignore:\n- - .mailmap\n- - '**.md'\n- - AUTHORS\n- - doc/**\n- - .github/**\n- - '!.gi... | 2025-02-01T07:53:52 |
vercel/next.js | 7453d200579512a6574f9c53edd716e5cc01615c | c0a7c842563e3722dea30b00a1ac4fd0a18c6cbf | Turbopack: improve next/dynamic eventual consistentcy (#84560)
Use bail instead of panic to better recover from eventual consistency situations. | [
{
"path": "crates/next-api/src/dynamic_imports.rs",
"patch": "@@ -19,7 +19,7 @@\n //! to wait until all the dynamic components are being loaded, this ensures hydration mismatch\n //! won't occur\n \n-use anyhow::Result;\n+use anyhow::{Context, Result};\n use next_core::{\n next_app::ClientRefe... | 2025-10-07T10:03:24 |
golang/go | ea55ca360005c607fa54304d95c6821a6ce20e7c | 9ae2f1fb574e879402bc5bbac1d2b5d84acce6cb | runtime: skip doInit of plugins in runtime.main
Plugins may be loaded in the user's init code.
If loading fails, md.bad is true, and doInit should not be executed.
If loading succeeds, the plugin must run modulesinit and typelinksinit
before doInit. Here is not protected by pluginsMu, and in concurrent
scenarios it is... | [
{
"path": "src/cmd/cgo/internal/testplugin/plugin_test.go",
"patch": "@@ -422,3 +422,11 @@ func TestIssue67976(t *testing.T) {\n \tglobalSkip(t)\n \tgoCmd(t, \"build\", \"-buildmode=plugin\", \"-o\", \"issue67976.so\", \"./issue67976/plugin.go\")\n }\n+\n+func TestIssue75102(t *testing.T) {\n+\tglobalSkip(t... | 2025-08-20T13:33:42 |
facebook/react | a7d1240c962d2fdeac3ba31f1fdc12b5be4bbd2e | 2b0001834769cab6d73e68627a8b15c4708961e6 | [Fizz] Update postpone abort semantics when prerendering (#30541)
When aborting with a postpone value in Fizz if any tasks are still
pending in the root while prerendering the prerender will fatally error.
This is different from postponing imperatively in a root task and really
the semantics should be the same. Thi... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzStatic-test.js",
"patch": "@@ -398,4 +398,60 @@ describe('ReactDOMFizzStatic', () => {\n </div>,\n );\n });\n+\n+ // @gate enablePostpone\n+ it('does not fatally error when aborting with a postpone during a prerender', async () => {\n+ ... | 2024-07-31T15:33:43 |
electron/electron | 2f4a46f47a4d284ed2748c539bfaf10482908713 | ac074a554804f9041f07260def59cbb576d663a0 | fix: video and audio capture should be separate (#42775) | [
{
"path": "shell/browser/web_contents_permission_helper.cc",
"patch": "@@ -282,10 +282,10 @@ bool WebContentsPermissionHelper::CheckMediaAccessPermission(\n base::Value::Dict details;\n details.Set(\"securityOrigin\", security_origin.GetURL().spec());\n details.Set(\"mediaType\", MediaStreamTypeToStri... | 2024-07-08T08:11:40 |
nodejs/node | 1a2eb15bc610926789a8a3a002ec722c39768c20 | 96718268fec7e7f1c6156ff9a57899a5cd1487cc | test_runner: remove promises returned by t.test()
This commit updates the TestContext.prototype.test() API to no
longer return a Promise.
Fixes: https://github.com/nodejs/node/issues/51292
PR-URL: https://github.com/nodejs/node/pull/56664
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Pietro Marc... | [
{
"path": "doc/api/test.md",
"patch": "@@ -105,11 +105,11 @@ top level test with two subtests.\n \n ```js\n test('top level test', async (t) => {\n- await t.test('subtest 1', (t) => {\n+ t.test('subtest 1', (t) => {\n assert.strictEqual(1, 1);\n });\n \n- await t.test('subtest 2', (t) => {\n+ t.te... | 2025-01-20T01:06:50 |
golang/go | bbd5342a62baa2fa6b42d444b05717c2563d0764 | ed7f804775725149088a71108efd0b20ef9f206f | net: fix cgoResSearch
CL 457439 mistakenly redeclared size inside the for loop, causing
cgoResSearch to always fail and fall back to goLookupCNAME.
Change-Id: I3e142d34287388284a8998ac13761b1e0c2911a5
Reviewed-on: https://go-review.googlesource.com/c/go/+/696895
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit... | [
{
"path": "src/net/cgo_unix.go",
"patch": "@@ -351,7 +351,7 @@ func cgoResSearch(hostname string, rtype, class int) ([]dnsmessage.Resource, err\n \n \tvar size int\n \tfor {\n-\t\tsize := _C_res_nsearch(state, (*_C_char)(unsafe.Pointer(s)), class, rtype, buf, bufSize)\n+\t\tsize = _C_res_nsearch(state, (*_C... | 2025-08-18T08:55:40 |
vercel/next.js | a29b4fa5c3f02c5a8f5a14050a1cdd7736a8bb30 | c0cd530ad8699b433a52c1459ef4d6c06de286ee | [MCP] Fix: Do not dedup by URL for MCP get_page_metadata (#84564)
The `get_page_metadata` MCP tool was incorrectly grouping browser
sessions by URL instead of counting each session individually. When
multiple browser tabs were open to the same URL, the tool would report
only 1 session instead of the actual number of s... | [
{
"path": "packages/next/src/server/mcp/tools/get-page-metadata.ts",
"patch": "@@ -59,16 +59,17 @@ export function registerGetPageMetadataTool(\n }\n }\n \n- const metadataByUrl = new Map<string, PageMetadata>()\n+ const sessionMetadata: Array<{ url: string; metadata: PageMet... | 2025-10-07T03:26:04 |
facebook/react | 47069f0e80e151c2664908366ccc07b4a0e727d9 | 12e957909948483d0eef83d1ffb2255946d0e4b0 | Build all bundles required by flight fixture with `build-for-flight-dev` (#30534) | [
{
"path": "package.json",
"patch": "@@ -113,7 +113,7 @@\n \"build-for-devtools\": \"cross-env RELEASE_CHANNEL=experimental yarn build react/index,react/jsx,react/compiler-runtime,react-dom/index,react-dom/client,react-dom/unstable_testing,react-dom/test-utils,react-is,react-debug-tools,scheduler,react-t... | 2024-07-31T13:02:36 |
electron/electron | ac074a554804f9041f07260def59cbb576d663a0 | 19e030a6e860b6a797e9b509560082351e42233c | refactor: run Windows `SelectFileDialog` out of process (#42758)
* refactor: run Windows SelectFileDialog out of process
* fix: add missing IS_WIN guard
* refactor: use upstream SelectFileDialogFactory
* fix: build chrome/services/util_win/public/mojom target | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -156,9 +156,13 @@ static_library(\"chrome\") {\n \"//chrome/browser/ui/frame/window_frame_util.h\",\n \"//chrome/browser/win/chrome_process_finder.cc\",\n \"//chrome/browser/win/chrome_process_finder.h\",\n+ \"//chrome/browser/win/chrome... | 2024-07-05T09:36:44 |
nodejs/node | 96718268fec7e7f1c6156ff9a57899a5cd1487cc | aa3523ec22c95dfb11ef93c8333ced41cd431f89 | test_runner: remove promises returned by test()
This commit updates the test() and suite() APIs to no longer
return a Promise.
Fixes: https://github.com/nodejs/node/issues/51292
PR-URL: https://github.com/nodejs/node/pull/56664
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Pietro Marchini <pietr... | [
{
"path": "doc/api/test.md",
"patch": "@@ -1407,6 +1407,11 @@ run({ files: [path.resolve('./tests/test.js')] })\n added:\n - v22.0.0\n - v20.13.0\n+changes:\n+ - version:\n+ - REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/56664\n+ description: This function no longer returns a `Prom... | 2025-01-20T00:42:22 |
golang/go | ed7f804775725149088a71108efd0b20ef9f206f | a21249436b6e1fd47356361d53dc053bbc074f90 | os: set full name for Roots created with Root.OpenRoot
Set the Name for a Root created within a Root to be the
concatenation of the parent's path and the name used to open the child.
This matches the behavior for files opened within a Root
with Root.Open.
Fixes #73868
Change-Id: Idf4021602ac25556721b7ef6924dec652c7... | [
{
"path": "src/os/root_test.go",
"patch": "@@ -1919,3 +1919,36 @@ func TestRootWriteReadFile(t *testing.T) {\n \t\tt.Fatalf(\"root.ReadFile(%q) = %q, %v; want %q, nil\", name, got, err, want)\n \t}\n }\n+\n+func TestRootName(t *testing.T) {\n+\tdir := t.TempDir()\n+\troot, err := os.OpenRoot(dir)\n+\tif err... | 2025-08-22T17:47:01 |
vercel/next.js | c0cd530ad8699b433a52c1459ef4d6c06de286ee | 844f0a62430dd697f4757d2f5eeef75da81f6e81 | Allow silencing unhandled rejection filter warnings and improve debugging (#84572)
The original debug logs were added to help validate the filter worked
correctly in real applications. They leak implementation details which
is more permissive than ideal. One reason to keep these around however
is if you end up seeing ... | [
{
"path": "packages/next/src/server/node-environment-extensions/unhandled-rejection.test.ts",
"patch": "@@ -61,7 +61,7 @@ type WorkerResult = {\n stderr: string\n uhr: Array<UHRReport>\n count: Array<CountReport>\n- errorLog: Array<ErrorLogReport>\n+ errorLog: Array<string>\n data: Record<string, ... | 2025-10-07T02:03:12 |
facebook/react | d06196c1cd2dc0bb2288f3a3efa30669d4a7ea61 | edfaa99f01596ea22ed892897f5c002a438c0655 | [compiler] Visit nested scopes in pruned scopes in PromoteUsedTemporaries
While debugging #30536 I happened to notice that the bug only reproduced
when there was interleaving scopes, and observed that an unpruned scope
nested inside of a pruned one was not being visited by
CollectPromotableTemporaries, which keeps tra... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PromoteUsedTemporaries.ts",
"patch": "@@ -138,6 +138,7 @@ class CollectPromotableTemporaries extends ReactiveFunctionVisitor<State> {\n usedOutsideScope: false,\n });\n }\n+ this.visitBlock(scopeBlock.instructio... | 2024-07-30T20:55:41 |
nodejs/node | aa3523ec22c95dfb11ef93c8333ced41cd431f89 | ba4587c9fc5fae8334f3368be89405ca5735f3bb | test_runner: automatically wait for subtests to finish
This commit updates the test runner to automatically wait for
subtests to finish. This makes the experience more consistent
with suites and removes the need to await anything.
PR-URL: https://github.com/nodejs/node/pull/56664
Fixes: https://github.com/nodejs/node... | [
{
"path": "lib/internal/test_runner/harness.js",
"patch": "@@ -27,6 +27,8 @@ const {\n shouldColorizeTestFiles,\n } = require('internal/test_runner/utils');\n const { queueMicrotask } = require('internal/process/task_queues');\n+const { TIMEOUT_MAX } = require('internal/timers');\n+const { clearInterval, ... | 2025-01-19T22:46:37 |
golang/go | f2db0dca0b0399c08319d22cbcbfa83be2bb781a | d86ec924993bfb824dfb6f618a46ea205fdbf261 | net/http/httptest: redirect example.com requests to server
The default server cert used by NewServer already includes example.com
in its DNSNames, and by default, the client's RootCA configuration
means it won't trust a response from the real example.com.
Fixes #31054
Change-Id: I0686977e5ffe2c2f22f3fc09a47ee8ecc447... | [
{
"path": "doc/next/6-stdlib/99-minor/net/http/httptest/31054.md",
"patch": "@@ -0,0 +1,2 @@\n+The HTTP client returned by [Server.Client] will now redirect requests for\n+`example.com` and any subdomains to the server being tested.",
"additions": 2,
"deletions": 0,
"language": "Markdown"
},
... | 2025-04-19T12:50:35 |
rust-lang/rust | 97bd98546744bb8da6b629d8629447f765988c07 | e0cb264b814526acb82def4b5810e394a2ed294f | fix(abi): Restore `noundef` on `PassMode::Cast` args in Rust ABI
`adjust_for_rust_abi` was casting small aggregates to an integer register
without propagating `noundef`, causing a performance regression (#123183)
— LLVM could no longer assume the bits were fully defined.
Add `layout_is_noundef` (conservative) + `fiel... | [
{
"path": "compiler/rustc_target/src/callconv/mod.rs",
"patch": "@@ -1,8 +1,8 @@\n use std::{fmt, iter};\n \n use rustc_abi::{\n- AddressSpace, Align, BackendRepr, CanonAbi, ExternAbi, HasDataLayout, Primitive, Reg, RegKind,\n- Scalar, Size, TyAbiInterface, TyAndLayout,\n+ AddressSpace, Align, Back... | 2026-02-27T20:08:59 |
vercel/next.js | d796c0f20966482d3187923a145dafe9ff30cc08 | c388db43dc580c22d8a42b6092b48717e1ad1d81 | [test] Unflake static image test (#84535)
[flakiness
metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.name%3A%22Static%20Image%20Component%20Tests%20development%20mode%20Should%20allow%20an%20image%20with%20a%20static%20src%20... | [
{
"path": "test/integration/next-image-new/default/pages/static-img.js",
"patch": "@@ -25,6 +25,16 @@ export const getStaticProps = () => ({\n props: { testImgProp },\n })\n \n+function FillContainer({ children }) {\n+ // Optimized to accept the square test images. Subtracting 16px to account for\n+ // ... | 2025-10-06T22:44:45 |
facebook/react | 212d5ae8cbdb16788bcbb8c7f0c35369968eff5e | 704c34e21f7468fc72c33aa843051c7949ebeccd | [compiler][repro] fixtures for fbt plural and macro bugs
ghstack-source-id: 8ccf49bb40cd634932b84dd637439042aa60fd46
Pull Request resolved: https://github.com/facebook/react/pull/30535 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/bug-fbt-plural-multiple-function-calls.expect.md",
"patch": "@@ -0,0 +1,87 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from 'fbt';\n+\n+/**\n+ * Similar to error.todo-multiple-fbt-plural\n+ *\n+ * Evaluator err... | 2024-07-30T20:24:45 |
electron/electron | 07e6b34a07c5cc9f8a526b244171175a0aa390d6 | cf5fb4505ebde6a8347b45ec7e66a58d851944df | chore: bump chromium to 128.0.6571.0 (main) (#42749)
* chore: bump chromium in DEPS to 128.0.6571.0
* 5636652: [4/n] Introduce RenderInputRouterClient and move InputRouterClient implementation to RenderInputRouter.
https://chromium-review.googlesource.com/c/chromium/src/+/5636652
* 5655811: Revert "Reland "Re... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '128.0.6558.0',\n+ '128.0.6571.0',\n 'node_version':\n 'v20.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "build/... | 2024-07-03T15:15:35 |
nodejs/node | 52d39441d07c8c0c99e84644f69406aa8578d7b1 | 99ffe3555a2156f68d014853d7f1ce9d128f2004 | deps: V8: cherry-pick f915fa4c9f41
Original commit message:
[osr] Ensure trying to osr does not skip loop interrupts
Fixed: 374013413
Change-Id: I52d7b4e165e0abd0bd517a81d2e8ef3f1f802bfb
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5946288
Commit-Queue: Darius Mercadier <dmerca... | [
{
"path": "common.gypi",
"patch": "@@ -37,7 +37,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.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ... | 2024-10-21T11:29:28 |
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.