repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
nodejs/node | 0741d69f6df5ef2bc503d063b36e0ef80d37e7e3 | efe698ee93f004694b05e2d37762c902354a6e55 | test: remove duplicate error reporter from ci
PR-URL: https://github.com/nodejs/node/pull/56739
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": ".github/workflows/build-tarball.yml",
"patch": "@@ -105,4 +105,4 @@ jobs:\n - name: Test\n run: |\n cd $TAR_DIR\n- make run-ci -j4 V=1 TEST_CI_ARGS=\"-p dots --node-args='--test-reporter=./test/common/test-error-reporter.js' --measure-flakiness 9\"\n+ mak... | 2025-01-28T16:41:52 |
facebook/react | b943feba35476196fa674de276f2b87624086896 | c08b51600796706d59c51cddd372720e07c6b24b | [compiler] Stop relying on identifier mutable ranges after constructing scopes
Addresses discussion at https://github.com/facebook/react/pull/30399#discussion_r1684693021. Once we've constructed scopes it's invalid to use identifier mutable ranges. The only places we can do this which i can find are ValidateMemoizedEf... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildReactiveScopeTerminalsHIR.ts",
"patch": "@@ -9,7 +9,6 @@ import {\n GotoVariant,\n HIRFunction,\n InstructionId,\n- makeInstructionId,\n ReactiveScope,\n ReactiveScopeTerminal,\n ScopeId,\n@@ -19,7 +18,6 @@ import {\n markP... | 2024-07-24T00:14:23 |
golang/go | 9d3f7fda70900c9d311df1eb4656fe9f6d62c781 | 78a05c541f7c5f7b89abac11cff0ff18b029cb47 | crypto/tls: fix quic comment typo
Change-Id: Ibd6b8d10ecac3cdea33de1218d516b7425443313
GitHub-Last-Rev: 3d5568ba087be71f21cf816c5edd9b8b8c629865
GitHub-Pull-Request: golang/go#75092
Reviewed-on: https://go-review.googlesource.com/c/go/+/697575
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi... | [
{
"path": "src/crypto/tls/quic.go",
"patch": "@@ -221,7 +221,7 @@ func (q *QUICConn) NextEvent() QUICEvent {\n \tqs := q.conn.quic\n \tif last := qs.nextEvent - 1; last >= 0 && len(qs.events[last].Data) > 0 {\n \t\t// Write over some of the previous event's data,\n-\t\t// to catch callers erroniously retain... | 2025-08-21T01:40:55 |
vercel/next.js | 2c69ddeadfd3ceba178e0cae085445c10fb24d55 | bc2fa389b11263ecb6beccfd97a8b4fe2e3dad0f | Update otel test assertions and pages span_name (#84393)
This updates our otel tests to remove extra span assertions from `next
start` with edge runtime that can cause confusion and fixes a couple
span_names for pages handlers.
x-ref:
https://github.com/vercel/next.js/pull/75416#discussion_r2393016147 | [
{
"path": "packages/next/src/server/route-modules/pages/pages-handler.ts",
"patch": "@@ -400,7 +400,7 @@ export const getHandler = ({\n })\n span.updateName(name)\n } else {\n- span.updateName(`${method} ${req.url}`)\n+ ... | 2025-10-01T01:06:11 |
nodejs/node | 50d405a2b6db859fe5e0f67c71b0b706e89cd5f2 | 04f147b0245ac22fc983ddc7d9d0efd3ec69ee38 | test: reduce number of written chunks
Reduce chances of write errors while the request is sent.
Refs: https://github.com/nodejs/node/pull/56756
PR-URL: https://github.com/nodejs/node/pull/56757
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Ste... | [
{
"path": "test/parallel/test-http-server-headers-timeout-delayed-headers.js",
"patch": "@@ -55,10 +55,12 @@ server.listen(0, common.mustCall(() => {\n \n sendDelayedRequestHeaders = common.mustCall(() => {\n setTimeout(() => {\n- client.write('POST / HTTP/1.1\\r\\n');\n- client.write('Conte... | 2025-01-27T10:35:11 |
rust-lang/rust | cb3046e5f2f0736366c0fea4977a8df579d96311 | 1dc3d8c568ec039bcbc1537cd7d647933524c006 | Add missing runtime test for _mm_comige_ss and fix _mm_comigt_ss test | [
{
"path": "library/stdarch/crates/core_arch/src/x86/sse.rs",
"patch": "@@ -2816,14 +2816,32 @@ mod tests {\n let aa = &[3.0f32, 12.0, 23.0, NAN];\n let bb = &[3.0f32, 47.5, 1.5, NAN];\n \n- let ee = &[1i32, 0, 1, 0];\n+ let ee = &[0i32, 0, 1, 0];\n \n for i in 0..4 {\n ... | 2026-02-25T23:56:42 |
facebook/react | f987f1a05737dae85350f0d24937f95b26494f58 | ca5fef0f4a7b5dfc48fe560206f7b1d3621966ac | [compiler] Maintain RPO and unique instruction ids when constructing scope terminals
Later passes may rely on HIR invariants such as blocks being in RPO or instructions having unique, ascending InstructionIds. However, BuildReactiveScopeTerminalsHIR doesn't currently gurantee this.
This PR updates that pass to first ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/AssertTerminalBlocksExist.ts",
"patch": "@@ -39,6 +39,7 @@ export function assertTerminalPredsExist(fn: HIRFunction): void {\n [...eachTerminalSuccessor(predBlock.terminal)].includes(block.id),\n {\n reason: 'Terminal... | 2024-07-23T01:07:52 |
golang/go | a076f497577605e4cf0e20c147711e03dee7b2c3 | 98238fd495a2a16a2cd90197c6f41352760e4ccb | os: fix Root.MkdirAll to handle race of directory creation
No tests were added, because in order to reproduce, the directory would
have to be created precisely between the rootOpenDir and mkdirat calls,
which is impossible to do in a test.
Fixes #75114
Change-Id: I6f86a5b33c87452c35728318eaf2169a7534ef37
Reviewed-on... | [
{
"path": "src/os/root_openat.go",
"patch": "@@ -131,7 +131,9 @@ func rootMkdirAll(r *Root, fullname string, perm FileMode) error {\n \t\t\tif try > 0 || !IsNotExist(err) {\n \t\t\t\treturn 0, &PathError{Op: \"openat\", Err: err}\n \t\t\t}\n-\t\t\tif err := mkdirat(parent, name, perm); err != nil {\n+\t\t\t... | 2025-08-21T17:03:42 |
vercel/next.js | 315c8ebaad92ca51931e6b892b3a26eb677feaa7 | efa1ad49e829312e86ae94288e89cb054795c126 | Turbopack: skip invalidating a task on cell/output change when the dependency is outdated (#84376)
### What?
Fixes some cases of double invalidation of tasks.
The concrete example here was tailwind executing twice on HMR changes.
The problem was that tailwind has a glob dependency and a file dependency on files.
Tha... | [
{
"path": "test/e2e/app-dir/no-double-tailwind-execution/app/globals.css",
"patch": "@@ -0,0 +1 @@\n+@import 'tailwindcss';",
"additions": 1,
"deletions": 0,
"language": "CSS"
},
{
"path": "test/e2e/app-dir/no-double-tailwind-execution/app/layout.tsx",
"patch": "@@ -0,0 +1,10 @@\n+im... | 2025-09-30T17:54:08 |
nodejs/node | 04f147b0245ac22fc983ddc7d9d0efd3ec69ee38 | 1263efdfca224682300498cf8594e3d96b93fa47 | test: fix invalid common.mustSucceed() usage
By its own nature, the function returned by `common.mustSucceed()`
cannot be used as a listener for `'error'` events.
Write errors like `read ECONNRESET` or `write EPIPE`, should be ignored
because the socket might be closed by the other peer while the request
is sent.
Re... | [
{
"path": "test/parallel/test-http-server-headers-timeout-delayed-headers.js",
"patch": "@@ -38,16 +38,18 @@ server.listen(0, common.mustCall(() => {\n response += chunk;\n }));\n \n- const errOrEnd = common.mustSucceed(function(err) {\n+ client.on('error', () => {\n+ // Ignore errors like 'write... | 2025-01-27T10:09:37 |
electron/electron | a371c2cd542a6ee7ea24cdaf3da5468ba3f9b5ea | 6bf83b389bd752ae6e357cada84ed89e7beac0ba | build: fix GHA arm tests (#42514) | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -159,7 +159,7 @@ jobs:\n build-runs-on: aks-linux-large\n test-runs-on: aks-linux-arm-medium\n build-container: '{\"image\":\"ghcr.io/electron/build:${{ inputs.build-image-sha }}\",\"options\":\"--user root\",\"volumes\":[\"/mnt/cross-i... | 2024-06-16T17:59:51 |
facebook/react | 7c7087811eaf7db5e783c35527be73bfb35b599e | da4abf0047cf6dc6d9bff505bd93815264c8c3b7 | [compiler] printTerminal always prints instruction id
Doing some debugging I noticed that a few of the newer terminals kinds weren't printing the instruction id.
ghstack-source-id: e0e4c96aeefdfe09d3be1527fd7103b4e506eb8e
Pull Request resolved: https://github.com/facebook/react/pull/30397 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts",
"patch": "@@ -276,27 +276,29 @@ export function printTerminal(terminal: Terminal): Array<string> | string {\n break;\n }\n case 'unsupported': {\n- value = `Unsupported`;\n+ value = `[${terminal.id}] Unsup... | 2024-07-23T01:07:49 |
golang/go | 98238fd495a2a16a2cd90197c6f41352760e4ccb | 1ad30844d9cc0d5792b055f44a6e98759587bbfb | all: delete remaining windows/arm code
Fixes #43800
Updates #71671
Change-Id: Ib7aafe3a3f6ae48f23fa23f03103820e9fcf5161
Reviewed-on: https://go-review.googlesource.com/c/go/+/698415
Reviewed-by: Quim Muntal <quimmuntal@gmail.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -1773,7 +1773,7 @@ func buildModeSupported(compiler, buildmode, goos, goarch string) bool {\n \t\t\t\"ios/amd64\", \"ios/arm64\",\n \t\t\t\"aix/ppc64\",\n \t\t\t\"openbsd/arm64\",\n-\t\t\t\"windows/386\", \"windows/amd64\", \"windows/arm\", \"windows/arm64\":\n... | 2025-08-22T09:49:53 |
nodejs/node | 1263efdfca224682300498cf8594e3d96b93fa47 | 0aa5874098fb05c04963b160d617d21af4cf3b42 | test: use strict mode in global setters test
test-global-setters.js was added in
https://github.com/nodejs/node/pull/26882 and hasn't been modified
since. It appears that it avoids strict mode so that unscoped
identifiers are treated as globals, but that's true in strict mode too.
(In sloppy mode, an assignment to an ... | [
{
"path": "test/parallel/test-global-setters.js",
"patch": "@@ -1,4 +1,10 @@\n-/* eslint-disable strict */\n+// When setters and getters were added for global.process and global.Buffer to\n+// create a deprecation path for them in ESM, this test was added to make sure\n+// the setters and getters behaved as... | 2025-01-27T00:02:05 |
electron/electron | 6bf83b389bd752ae6e357cada84ed89e7beac0ba | 2c985366c8bb22fd15e6ad4a596c3a1060f6af08 | build: add GN check step (#42508)
* build: add GN check step
* Remove extra loggin
* Fix BUILD_TOOLS_SHA
* Fix concurrency group naming | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -97,7 +97,7 @@ jobs:\n - /mnt/cross-instance-cache:/mnt/cross-instance-cache\n - /var/run/sas:/var/run/sas\n env:\n- GCLIENT_EXTRA_ARGS: '--custom-var=checkout_mac=True --custom-var=host_os=mac'\n+ GCLIENT_EXTRA_ARGS: '--cus... | 2024-06-14T20:29:11 |
vercel/next.js | 9a76ce433b9915bd6030f2001cf43ec3aeee3074 | 4802b9839efdbb10008c11a398169ba6c4997749 | Revert "Revert "Add a --webpack flag and default --turbopack to true (#84216)"" (#84351)
Reverts vercel/next.js#84348 which itself reverted #84216.
In the 2nd attempt to make --turbopack a default behavior.
* adjust the Generate Pull Request States action to specify `--webpack`
* set the `IS_WEBPACK_TEST` flag in t... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -502,6 +502,7 @@ jobs:\n \n export NEXT_TEST_MODE=start\n export NEXT_TEST_WASM=true\n+ export IS_WEBPACK_TEST=1\n node run-tests.js \\\n test/production/pages-dir/production/test/index.test.ts \\\n ... | 2025-09-30T15:23:10 |
golang/go | 1ad30844d9cc0d5792b055f44a6e98759587bbfb | 13c082601db45c25fc85f4cdac9cc3bab7c4329f | cmd/asm: process forward jump to PCALIGN
The forward jump target are not processed when the target is PCALIGN, so
process it before emit nops for PCALIGN.
Fixes #74648
Change-Id: I690fbfacf79e26d7a37628a2551729b2381616c5
Reviewed-on: https://go-review.googlesource.com/c/go/+/696915
LUCI-TryBot-Result: Go LUCI <golan... | [
{
"path": "src/cmd/internal/obj/x86/asm6.go",
"patch": "@@ -2120,19 +2120,6 @@ func span6(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\tc0 := c\n \t\t\tc = pjc.padJump(ctxt, s, p, c)\n \n-\t\t\tif p.As == obj.APCALIGN || p.As == obj.APCALIGNMAX {\n-\t\t\t\tv := obj.AlignmentPadding(c, p, ctx... | 2025-08-18T11:27:46 |
facebook/react | da4abf0047cf6dc6d9bff505bd93815264c8c3b7 | e2cac6753340f950c592d97184e8c0bdd9d3a475 | [Fiber] Call life-cycles with a react-stack-bottom-frame stack frame (#30429)
Stacked on #30427.
Most hooks and such are called inside renders which already have these
on the stack but life-cycles that call out on them are useful to cut off
too.
Typically we don't create JSX in here so they wouldn't be part of... | [
{
"path": "packages/react-devtools-shared/src/__tests__/console-test.js",
"patch": "@@ -254,12 +254,12 @@ describe('console', () => {\n </Intermediate>\n );\n const Child = ({children}) => {\n- React.useLayoutEffect(() => {\n+ React.useLayoutEffect(function Child_useLayoutEffect() {\... | 2024-07-23T22:49:42 |
nodejs/node | 6d22fceb3651ba837e58806ad1cc3c40974abcb7 | 43daa9b217934f2cd01d328a8e5563a64d96cdd3 | tools: update inspector_protocol roller
Fix the inspector_protocol/roll.py to fit node source directory
structure.
`roll.py` reads the `deps/v8/thrid_party/inspector_protocol/README.v8`
to get the revision of the inspector_protocol that V8 depends on, and
updates the local version to match.
V8's copy of inspector_pr... | [
{
"path": "tools/inspector_protocol/roll.py",
"patch": "@@ -18,23 +18,22 @@\n 'code_generator.py',\n 'concatenate_protocols.py',\n 'convert_protocol_to_json.py',\n- 'encoding/encoding.h',\n- 'encoding/encoding.cc',\n- 'encoding/encoding_test.cc',\n+ 'crdtp/*',\n 'inspector_protoc... | 2025-01-15T10:11:02 |
electron/electron | 2c985366c8bb22fd15e6ad4a596c3a1060f6af08 | 429d50bb1850ad34b86f02f7641fb889c1320bae | build: fix dubious ownership error in version bumper spec (#42509) | [
{
"path": ".github/workflows/pipeline-segment-electron-test.yml",
"patch": "@@ -112,6 +112,7 @@ jobs:\n chown :builduser .. && chmod g+w ..\n chown -R :builduser . && chmod -R g+w .\n chmod 4755 ../out/Default/chrome-sandbox\n+ runuser -u builduser -- git config --glob... | 2024-06-14T18:47:58 |
vercel/next.js | 4802b9839efdbb10008c11a398169ba6c4997749 | b6834b1bfefb158256db08dafeb73b386072b32f | Turbopack: Add docs for debugIds option (#84375)
## What?
Adds documentation for #84319. | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/turbopack.mdx",
"patch": "@@ -44,12 +44,13 @@ module.exports = nextConfig\n \n The following options are available for the `turbopack` configuration:\n \n-| Option | Description ... | 2025-09-30T15:22:26 |
rust-lang/rust | d173db9edb9626dcb31c09dabc014c1845fca019 | d8ffd9181f8265ca01e292b4060b49ea9d4265d5 | Don't panic on invalid notifications | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/handlers/dispatch.rs",
"patch": "@@ -414,7 +414,8 @@ impl NotificationDispatcher<'_> {\n let params = match not.extract::<N::Params>(N::METHOD) {\n Ok(it) => it,\n Err(ExtractError::JsonError { method, error }) => {\... | 2026-02-25T19:06:33 |
golang/go | f7c6fa709e05830cad484422f04f2b123f54a3dc | 7c84e984e675e44a2abc9aa25dd68cb9c9d08ec5 | [dev.simd] simd/_gen/unify: fix some missing environments
There were a couples places where we failed to provide a reasonable
variable environment for YAML encoding. I think this only affects
encoding "!repeat" nodes, which aren't common in practice and a bit of
a disaster, which is how this went unnoticed.
Change-Id... | [
{
"path": "src/simd/_gen/unify/trace.go",
"patch": "@@ -132,10 +132,12 @@ func (t *tracer) traceUnify(v, w *Value, e envSet) {\n \t\treturn\n \t}\n \n+\tt.enc.e = e // Interpret values w.r.t. e\n \tt.logf(\"Unify\\n%s\\nwith\\n%s\\nin\\n%s\",\n \t\tyamlf(\" \", t.enc.value(v)),\n \t\tyamlf(\" \", t.enc.va... | 2025-08-21T13:28:32 |
facebook/react | e2cac6753340f950c592d97184e8c0bdd9d3a475 | 942eb80381b96f8410eab1bef1c539bed1ab0eb1 | [Flight] Prefix owner stacks added to the console.log with the current stack (#30427)
The current stack is available in the native UI but that's hidden by
default so you don't see the actual current component on the stack.
This is unlike the native async stacks UI where they're all together.
So we prefix the st... | [
{
"path": "packages/react-devtools-shared/src/__tests__/componentStacks-test.js",
"patch": "@@ -56,13 +56,13 @@ describe('component stack', () => {\n \n expect(mockError).toHaveBeenCalledWith(\n 'Test error.',\n- (supportsOwnerStacks ? '' : '\\n in Child (at **)') +\n+ '\\n in Chil... | 2024-07-23T20:48:32 |
nodejs/node | 43daa9b217934f2cd01d328a8e5563a64d96cdd3 | e1e1ada807051ea9088e8542c0753c3c5b9cd21b | doc: fix styles of the expandable TOC
PR-URL: https://github.com/nodejs/node/pull/56755
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Claudio Wunder <cwunder@gnome.org>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api_assets/style.css",
"patch": "@@ -570,40 +570,28 @@ hr {\n }\n \n .toc ul {\n- margin: 0\n+ margin: 0;\n }\n-\n-.toc li a::before {\n- content: \"■\";\n- color: var(--color-text-primary);\n- padding-right: 1em;\n- font-size: 0.9em;\n+.toc>ul:first-child {\n+ margin-left: 1rem;\n+}\n... | 2025-01-26T22:24:29 |
electron/electron | c2c3673e8aa923baa2a390d293fbd4ee985eba51 | c1094013ebcbf65df840914e26d56d099dc0d51e | build: fix linux tests (#42496)
* build: use runuser for electron spec runner
* chown
* run tests in priv
* fixed
* build: setup testing on arm for GHA
* no build-tools for test
* start xvfb for the right user
* no more gn-build-type
* debug env
* ue xvfb-run
* use 8 core for node tests
... | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -114,6 +114,7 @@ jobs:\n build-runs-on: aks-linux-large\n test-runs-on: aks-linux-medium\n build-container: '{\"image\":\"ghcr.io/electron/build:${{ inputs.build-image-sha }}\",\"options\":\"--user root\",\"volumes\":[\"/mnt/cross-insta... | 2024-06-14T15:57:28 |
vercel/next.js | 624a01400906c55015fa20d2f730f4b108a2b675 | fe357ef2abce84862eb15cf30efa50f7bcbffbc2 | [turbopack] Add support for debug_ids (#84319)
## What?
Add a new feature to turbopack for generating debug_ids based on the
[TC39 Debug ID
proposal](https://github.com/tc39/ecma426/blob/main/proposals/debug-id.md)
If a user sets `turbopack.debugIds = true` then we will
* register the debug id with the global `_debu... | [
{
"path": "Cargo.lock",
"patch": "@@ -9564,8 +9564,10 @@ dependencies = [\n \"turbo-tasks-hash\",\n \"turbo-tasks-testing\",\n \"turbo-unix-path\",\n+ \"twox-hash 2.1.0\",\n \"url\",\n \"urlencoding\",\n+ \"uuid\",\n ]\n \n [[package]]\n@@ -10223,9 +10225,9 @@ checksum = \"711b9620af191e0cdc7468a8d14e7... | 2025-09-30T12:07:38 |
facebook/react | 08b4ee83cce726998bb5845898a24bd280033d4e | fc74a3a3e6a3ec8340a6202f8d07bb422240836d | [compiler] Add babel-plugin-idx to snap
To surface any potential conflicts with this plugin, let's install it
into snap so we can surface any runtime errors after compilation
ghstack-source-id: 545eee6fb7f6401e919422581cf64070da581d50
Pull Request resolved: https://github.com/facebook/react/pull/30434 | [
{
"path": "compiler/packages/snap/package.json",
"patch": "@@ -24,6 +24,7 @@\n \"@babel/preset-typescript\": \"^7.18.6\",\n \"@parcel/watcher\": \"^2.1.0\",\n \"@testing-library/react\": \"^13.4.0\",\n+ \"babel-plugin-idx\": \"^3.0.3\",\n \"babel-plugin-syntax-hermes-parser\": \"^0.15.1\"... | 2024-07-23T19:46:56 |
electron/electron | ad8e89de011ada816b6a81d4cd519097445fb0d9 | b7aad14e8d1c147866f158165c46b6b247527e99 | build: fix v8 toolchain for macOS x64 (#42492)
build: do better | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -30,7 +30,7 @@ runs:\n shell: bash\n if: ${{ inputs.target-arch == 'x64' && inputs.target-platform == 'macos' }}\n run: |\n- GN_APPENDED_ARGS=\"$GN_EXTRA_ARGS v8_snapshot_toolchain='//build/toolchain/mac:clang_x64'\... | 2024-06-13T22:14:57 |
nodejs/node | 7119303a811b7f8ab5bebdaa8df4cc81f002dede | 59b3a8b21be9f206bf319cea50a6718c2230d09b | module: fix bad `require.resolve` with option paths for `.` and `..`
this change fixes `require.resolve` used with the `paths` option
not considering `.` and `..` as relative
Fixes: https://github.com/nodejs/node/issues/47000
PR-URL: https://github.com/nodejs/node/pull/56735
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -722,18 +722,8 @@ Module._findPath = function(request, paths, isMain, conditions = getCjsCondition\n )\n ));\n \n- const isRelative = StringPrototypeCharCodeAt(request, 0) === CHAR_DOT &&\n- (\n- request.length === 1 ||\n- ... | 2025-01-25T23:32:13 |
rust-lang/rust | ff62e9a2a6cb3b89c70f49a7e6c8ecb3becd71dc | 70bf845cb2b07be5111d7992223ce98aaa1fd6cb | fix: no complete enum variant qualifier in pat
Example
---
```rust
enum Enum { TupleV(u32), RecordV { field: u32 }, UnitV }
use Enum::*;
fn func() {
if let $0 = unknown {}
}
```
**Before this PR**
```text
...
ev RecordV
ev TupleV
ev UnitV
bn RecordV {…} RecordV { field$1 }$0
bn TupleV(…) TupleV($1)$0
... | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/pattern.rs",
"patch": "@@ -95,7 +95,7 @@ pub(crate) fn complete_pattern(\n if refutable || single_variant_enum(variant.parent_enum(ctx.db)) =>\n {\n acc.add_variant_pat(ctx, patte... | 2026-02-24T12:33:28 |
vercel/next.js | fe357ef2abce84862eb15cf30efa50f7bcbffbc2 | 9c6eb1457ef4e108be79edb70d05d0e0f0351451 | Turbopack: remove canary version check for turbopackPersistentCachingForDev (#84277)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that yo... | [
{
"path": "packages/next/src/server/config.test.ts",
"patch": "@@ -133,20 +133,6 @@ describe('loadConfig', () => {\n )\n })\n \n- it('errors when using persistentCachingForDev if not in canary', async () => {\n- await expect(\n- loadConfig(PHASE_PRODUCTION_BUILD, __dirname, {\n- ... | 2025-09-30T10:27:14 |
facebook/react | 50640a1b884c8ab656c1cb0626bbbf5f39a574b7 | 9cc0f6e68de2b83b11d1fb2b514d2f508c2da6f7 | [compiler][repro] Test fixture for fbt whitespace bug
ghstack-source-id: 749feb2cb8026858b4c01a7405272a56c7bc382b
Pull Request resolved: https://github.com/facebook/react/pull/30394 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/bug-fbt-preserve-whitespace-param.expect.md",
"patch": "@@ -0,0 +1,100 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from 'fbt';\n+\n+/**\n+ * Currently fails with the following:\n+ * Found differences in evaluat... | 2024-07-23T18:17:57 |
nodejs/node | da1ca7db756c0db8a894f3b22a4d067701dc3c04 | bade7a1866618b9e46358b839fe5fdf16b1db2be | doc: fix typo in example code for util.styleText
Code shows how to style `errorMessage`, but then
only logs out `successMessage` twice. This might
trip people up when copying the code.
PR-URL: https://github.com/nodejs/node/pull/56720
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Richard La... | [
{
"path": "doc/api/util.md",
"patch": "@@ -1972,7 +1972,7 @@ const errorMessage = styleText(\n // Validate if process.stderr has TTY\n { stream: stderr },\n );\n-console.error(successMessage);\n+console.error(errorMessage);\n ```\n \n ```cjs",
"additions": 1,
"deletions": 1,
"language": "Mar... | 2025-01-25T11:02:31 |
electron/electron | 4701795dc0f59f03970a3f2622058faf0020f3c1 | cfdc623c4d47fa5e8a12968ee100199cfb33442a | build: fix datetime module for Linux Publish (#42489) | [
{
"path": "script/release/uploaders/upload.py",
"patch": "@@ -48,7 +48,7 @@ def main():\n if args.verbose:\n enable_verbose_mode()\n if args.upload_to_storage:\n- utcnow = datetime.datetime.now(datetime.UTC)\n+ utcnow = datetime.datetime.utcnow()\n args.upload_timestamp = utcnow.strftime('... | 2024-06-13T21:36:45 |
facebook/react | 70484844bfd47382ad0011e0066ccf25d1a84464 | f83615ad30aec0f8dcec37fc8424bdf2f7ecb3d4 | [BE] switch to hermes parser for prettier (#30421)
This will allow us to parse new flow syntax since the `flow` parser is
no longer updated.
I had to exclude some files and have them fall back to `flow` parser
since they contain invalid graphql syntax that makes the plugin crash. | [
{
"path": ".prettierignore",
"patch": "@@ -21,11 +21,22 @@ compiler/**/__tests__/fixtures/**/*.expect.md\n compiler/**/__tests__/fixtures/**/*.flow.js\n compiler/**/.next\n \n+# contains invalid graphql`...` which results in a promise rejection error from `yarn prettier-all`.\n+compiler/packages/babel-plugi... | 2024-07-22T23:16:13 |
nodejs/node | bade7a1866618b9e46358b839fe5fdf16b1db2be | 176002400886bc7f438236c727a61831efd5e565 | src: fix build with GCC 15
Added cstdint to worker_inspector as on more recent version of gcc
the build was failing due to changes to libstdc++ and the removal
of transitive includes.
PR-URL: https://github.com/nodejs/node/pull/56740
Fixes: https://github.com/nodejs/node/issues/56731
Reviewed-By: Antoine du Hamel <du... | [
{
"path": "src/inspector/worker_inspector.h",
"patch": "@@ -5,6 +5,7 @@\n #error(\"This header can only be used when inspector is enabled\")\n #endif\n \n+#include <cstdint>\n #include <memory>\n #include <string>\n #include <unordered_map>",
"additions": 1,
"deletions": 0,
"language": "C/C++ He... | 2025-01-25T09:34:54 |
vercel/next.js | 031b8fb86270bf1bd3a892d9216bfec43f2c48cf | d300ee9930d2e2d28f5c4dce1dc7e4fe5a62d78e | Turbopack: only replace edge dynamic calls in dev (#84354)
This replacement should only happen in dev, it's really only to be able to have nicer error messages.
This previously failed the deployment tests.
Related: https://github.com/vercel/next.js/issues/40625
Closes PACK-5591 | [
{
"path": "crates/next-core/src/next_server/transforms.rs",
"patch": "@@ -174,14 +174,18 @@ pub async fn get_next_server_transforms_rules(\n }\n \n if let NextRuntime::Edge = next_runtime {\n- rules.push(get_middleware_dynamic_assert_rule(mdx_rs));\n+ let mode = *mode.await?;\n+\n+ ... | 2025-09-29T23:47:25 |
electron/electron | 15c404a3c812a94cd0b7202eec35f0a35a5ea230 | 0affad3be668fab7e236a1407aefebb8c9b63de3 | docs: fix the Apple HIG link for Dock context menu (#42450)
Fix the Apple human interface guidelines link for Dock context menu
The link seems to have changed. This is the up to date link. | [
{
"path": "docs/api/dock.md",
"patch": "@@ -80,4 +80,4 @@ Returns `Menu | null` - The application's [dock menu][dock-menu].\n \n Sets the `image` associated with this dock icon.\n \n-[dock-menu]: https://developer.apple.com/macos/human-interface-guidelines/menus/dock-menus/\n+[dock-menu]: https://developer.... | 2024-06-13T20:24:05 |
nodejs/node | 176002400886bc7f438236c727a61831efd5e565 | 687be594bb45a5baed588067c3d7f1159f1ea62f | src: fix to generate path from wchar_t via wstring
Take a similar approach to node_file and allow the creation of paths
code point must be specified to convert from wchar_t to utf8.
PR-URL: https://github.com/nodejs/node/pull/56696
Fixes: https://github.com/nodejs/node/issues/56650
Refs: https://github.com/nodejs/nod... | [
{
"path": "src/node_file.cc",
"patch": "@@ -3146,21 +3146,8 @@ static void GetFormatOfExtensionlessFile(\n }\n \n #ifdef _WIN32\n-std::wstring ConvertToWideString(const std::string& str) {\n- int size_needed = MultiByteToWideChar(\n- CP_UTF8, 0, &str[0], static_cast<int>(str.size()), nullptr, 0);\n- ... | 2025-01-22T11:24:38 |
facebook/react | f83615ad30aec0f8dcec37fc8424bdf2f7ecb3d4 | 43dac1ee8d658d28af914f76c12ecc42865c3dd5 | Reverse engineer original stack frames when virtual frames are re-serialized (#30416)
Stacked on #30410.
If we've parsed another RSC stream on the server from a different RSC
server, while using `findSourceMapURL`, the Flight Client ends up adding
a `rsc://React/` prefix and a numeric suffix to the URL. It's a vi... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -143,7 +143,14 @@ describe('ReactFlight', () => {\n this.props.expectedMessage,\n );\n expect(this.state.error.digest).toBe('a dev digest');\n- expect(this.state.error.environmentName).... | 2024-07-22T22:50:14 |
vercel/next.js | 3f75ff69cb1cc2a0314795b0fce8cd0a8dd4a837 | c1967707aba2bba32a04d806474e69b077e0592a | Use Array.from to avoid @ts-ignore when copying i18n.locales (#82148)
### What?
Replaces:
```ts
// @ts-ignore locales are readonly
const locales: string[] = i18n.locales;
```
with:
```ts
const locales = Array.from(i18n.locales);
```
### Why?
Avoids suppressing TypeScript errors via @ts-ignore.
Array.from safely creat... | [
{
"path": "examples/i18n-routing/middleware.ts",
"patch": "@@ -11,8 +11,7 @@ function getLocale(request: NextRequest): string | undefined {\n const negotiatorHeaders: Record<string, string> = {};\n request.headers.forEach((value, key) => (negotiatorHeaders[key] = value));\n \n- // @ts-ignore locales ar... | 2025-09-29T22:13:41 |
electron/electron | 30885e5f9f7564f05f9d01c69c73b9b7c28a36bb | 75d0e725be490bf0a8643c6fe23ed7b542db4911 | build: add Linux GHA test step (#42460)
* build: add Linux GHA test step
* Switch to medium AKS runners
* Add missing BUILD_TYPE to restore-artifact
* Fix untar to current dir
* Remove known hosts logic
* Add missing Node.js headers step
* Fix for active SSH sessions
* Fix storing artifacts
* B... | [
{
"path": ".github/workflows/linux-pipeline.yml",
"patch": "@@ -66,7 +66,7 @@ jobs:\n strategy:\n fail-fast: false\n matrix:\n- build-arch: [ arm64 ] # x64, arm \n+ build-arch: [ x64 ] # arm64, arm \n env: \n TARGET_ARCH: ${{ matrix.build-arch }}\n runs-on: aks-li... | 2024-06-13T19:14:33 |
rust-lang/rust | 8eed8bd7bbf80ad06fc3262824aa39dd335eaa36 | d3e8bd94cc042c65e30a6c60146a8a00531d1292 | Rename `pass_by_value` lint as `disallowed_pass_by_ref`.
The name `pass_by_value` is completely wrong. The lint actually checks
for the use of pass by reference for types marked with
`rustc_pass_by_value`.
The hardest part of this was choosing the new name. The `disallowed_`
part of the name closely matches the follo... | [
{
"path": "compiler/rustc_ast/src/visit.rs",
"patch": "@@ -757,9 +757,11 @@ macro_rules! common_visitor_and_walkers {\n ) -> V::Result;\n }\n \n- // this is only used by the MutVisitor. We include this symmetry here to make writing other functions easier\n+ // This is only ... | 2026-02-23T21:42:04 |
golang/go | 9de69f6913dc253ee8ce67043f543bedde28fdb4 | 4afd4828129d547719e8e71352c36e5117ddb50e | errors: mention Is/As in Join docs
Fixes #74461
Change-Id: Ic1b1b2b43d59dd67f31c2388ca88650ee847ba93
Reviewed-on: https://go-review.googlesource.com/c/go/+/696737
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Carlos... | [
{
"path": "src/errors/join.go",
"patch": "@@ -16,6 +16,7 @@ import (\n // between each string.\n //\n // A non-nil error returned by Join implements the Unwrap() []error method.\n+// The errors may be inspected with [Is] and [As].\n func Join(errs ...error) error {\n \tn := 0\n \tfor _, err := range errs {"... | 2025-08-17T13:03:37 |
nodejs/node | 687be594bb45a5baed588067c3d7f1159f1ea62f | 97a3a8204c7c0eb35fc6c11274a7aee5d2ea3ddc | test: add test that uses multibyte for path and resolves modules
PR-URL: https://github.com/nodejs/node/pull/56696
Fixes: https://github.com/nodejs/node/issues/56650
Refs: https://github.com/nodejs/node/pull/56657
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By... | [
{
"path": "test/fixtures/copy/utf/新建文件夹/experimental.json",
"patch": "@@ -0,0 +1,3 @@\n+{\n+ \"ofLife\": 42\n+}",
"additions": 3,
"deletions": 0,
"language": "JSON"
},
{
"path": "test/parallel/test-module-create-require-multibyte.js",
"patch": "@@ -0,0 +1,24 @@\n+'use strict';\n+\n+... | 2025-01-22T11:21:46 |
facebook/react | 43dac1ee8d658d28af914f76c12ecc42865c3dd5 | b7e7f1a3fab87e8fc19e86a8088a9e0fe4710973 | [DevTools] Implement Owner Stacks (#30417)
Stacked on #30410.
Use "owner stacks" as the appended component stack if it is available on
the Fiber. This will only be available if the enableOwnerStacks flag is
on. Otherwise it fallback to parent stacks. In prod, there's no owner so
it's never added there.
I was ... | [
{
"path": "packages/react-devtools-extensions/package.json",
"patch": "@@ -67,6 +67,6 @@\n \"workerize-loader\": \"^2.0.2\"\n },\n \"dependencies\": {\n- \"web-ext\": \"^4\"\n+ \"web-ext\": \"^8\"\n }\n }",
"additions": 1,
"deletions": 1,
"language": "JSON"
},
{
"path": "... | 2024-07-22T22:49:44 |
vercel/next.js | c35549a5c46df854e63e73891d9d971123fd33cb | fbb50f49fd1bfeff7f34a54faa69ce2ab2aeccc3 | docs: remove repeated to (#84325)
### What?
Removed an extra "to"
### Why?
Semantics error/not required
Co-authored-by: Joseph <joseph.chamochumbi@vercel.com> | [
{
"path": "docs/01-app/02-guides/json-ld.mdx",
"patch": "@@ -4,7 +4,7 @@ nav_title: JSON-LD\n description: Learn how to add JSON-LD to your Next.js application to describe your content to search engines and AI.\n ---\n \n-[JSON-LD](https://json-ld.org/) is a format for structured data that can be used by se... | 2025-09-29T19:00:19 |
electron/electron | 75d0e725be490bf0a8643c6fe23ed7b542db4911 | 42266546ebbaf5f5c8d29029097418c0956e641c | build: fix conditional for sas token (#42481) | [
{
"path": ".github/actions/checkout/action.yml",
"patch": "@@ -39,12 +39,12 @@ runs:\n node src/electron/script/generate-deps-hash.js && cat src/electron/.depshash-target\n echo \"DEPSHASH=v1-src-cache-$(shasum src/electron/.depshash | cut -f1 -d' ')\" >> $GITHUB_ENV\n - name: Generate SAS Key... | 2024-06-13T14:43:06 |
golang/go | 4afd4828129d547719e8e71352c36e5117ddb50e | 509d5f647ffc413bd874c2e2bf6d1b33f9bc0ac2 | cmd/go/internal/doc: pass URL fragments separately with -http
Plumb URL fragments separately when invoking pkgsite so the `#` doesn't
get %-encoded into the path.
Fixes: #75088
Change-Id: I33814fc6a192dff3e4f3d0b9d81205056dddd438
Reviewed-on: https://go-review.googlesource.com/c/go/+/697435
Reviewed-by: Sean Liao <se... | [
{
"path": "src/cmd/go/internal/doc/doc.go",
"patch": "@@ -212,16 +212,16 @@ func do(writer io.Writer, flagSet *flag.FlagSet, args []string) (err error) {\n \t\t\tmod, err := runCmd(append(os.Environ(), \"GOWORK=off\"), \"go\", \"list\", \"-m\")\n \t\t\tif err == nil && mod != \"\" && mod != \"command-line-a... | 2025-08-19T17:37:18 |
facebook/react | d7c4334ce91726ddff4b6ba84ff6bd81eb3a91d5 | d025ddd3b954dfc52ad7e6a036913946a8ca2644 | Add _debugStack and _debugTask under enableObjectFiber flag (#30337) | [
{
"path": "packages/react-reconciler/src/ReactFiber.js",
"patch": "@@ -296,11 +296,15 @@ function createFiberImplObject(\n }\n \n if (__DEV__) {\n+ // This isn't directly used but is handy for debugging internals:\n fiber._debugInfo = null;\n fiber._debugOwner = null;\n+ if (enableOwnerSta... | 2024-07-22T18:10:08 |
electron/electron | 2afe657873e39d5fa56fcde5b4558dd4412e21ff | 1d2f2eb113c691622c233438de6ecdcae30e1a93 | build: cleanup to macos pipeline (#42445)
* build: cleanup to macos pipeline
* Fix generated artifact key finding
* Fix cache restore key
* Switch ref to main
* Use artifacts for build artifact persisting
* Fix TARGET_ARCH env var in test
* Remove npm install | [
{
"path": ".github/workflows/macos-pipeline.yml",
"patch": "@@ -44,7 +44,8 @@ env:\n # Disable pre-compiled headers to reduce out size - only useful for rebuilds\n GN_BUILDFLAG_ARGS: 'enable_precompiled_headers = false'\n GCLIENT_EXTRA_ARGS: '--custom-var=checkout_mac=True --custom-var=host_os=mac'\n-... | 2024-06-12T19:58:47 |
nodejs/node | 4a5d2c7538b412eea84a0f41544784b1b8ed7c8c | f07300cfa32c197684fe44d39965770b2fcfc23d | module: integrate TypeScript into compile cache
This integrates TypeScript into the compile cache by caching
the transpilation (either type-stripping or transforming) output
in addition to the V8 code cache that's generated from the
transpilation output.
Locally this speeds up loading with type stripping of
`benchmar... | [
{
"path": "lib/internal/modules/typescript.js",
"patch": "@@ -22,6 +22,11 @@ const {\n const { getOptionValue } = require('internal/options');\n const assert = require('internal/assert');\n const { Buffer } = require('buffer');\n+const {\n+ getCompileCacheEntry,\n+ saveCompileCacheEntry,\n+ cachedCodeTyp... | 2025-01-25T02:30:27 |
golang/go | 509d5f647ffc413bd874c2e2bf6d1b33f9bc0ac2 | 853fc1273912b020e428c77d35e525c9225fd51e | internal/poll: don't call Seek for overlapped Windows handles
Overlapped handles don't have the file pointer updated when performing
I/O operations, so there is no need to call FD.Seek to reset the file
pointer.
Also, some overlapped file handles don't support seeking. See #74951.
Fixes #74951.
Change-Id: I0edd53be... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -622,12 +622,22 @@ func (fd *FD) Pread(b []byte, off int64) (int, error) {\n \n \tfd.l.Lock()\n \tdefer fd.l.Unlock()\n-\tcuroffset, err := syscall.Seek(fd.Sysfd, 0, io.SeekCurrent)\n-\tif err != nil {\n-\t\treturn 0, err\n+\tif fd.isBlocking {\n+\t\... | 2025-08-19T11:00:02 |
electron/electron | 7a6a2a51e046ce8cd118c85a0e988100fa238a9d | 6caf9f06f3fe3a93d63ab3b4a02f3feb6c1810ff | docs: fix info admonitions in security.md (#42451) | [
{
"path": "docs/tutorial/security.md",
"patch": "@@ -246,7 +246,7 @@ and prevent the use of Node primitives `contextIsolation` **must** also be used.\n :::info\n For more information on what `contextIsolation` is and how to enable it please\n see our dedicated [Context Isolation](context-isolation.md) docum... | 2024-06-12T16:38:21 |
facebook/react | 06763852ded5c85d3f6b7a47f77a59d9336d45d7 | b15c1983dcf96f19400b0ca7337be1e1fb1a8717 | [Flight] Parse Stack on the Server and Transfer Structured Stack (#30410)
Stacked on #30401.
Previously we were transferring the original V8 stack trace string to
the client and then parsing it there. However, really the server is the
one that knows what format it is and it should be able to vary by server
envir... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -12,6 +12,7 @@ import type {\n ReactDebugInfo,\n ReactComponentInfo,\n ReactAsyncInfo,\n+ ReactStackTrace,\n } from 'shared/ReactTypes';\n import type {LazyComponent} from 'react/src/ReactLazy';\n \n@@ -624,7 +625,7 @@ function ... | 2024-07-22T15:18:55 |
golang/go | 853fc1273912b020e428c77d35e525c9225fd51e | bd885401d5a4b45fee8ae37069be0cc3beef9e3e | internal/poll: set the correct file offset in FD.Seek for Windows overlapped handles
Windows doesn't keep the file pointer for overlapped file handles.
To work around this, we keep track of the current offset ourselves
and use it on every Read/Write operation.
When the user calls File.Seek with whence == io.SeekCurre... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -1107,6 +1107,12 @@ func (fd *FD) Seek(offset int64, whence int) (int64, error) {\n \tfd.l.Lock()\n \tdefer fd.l.Unlock()\n \n+\tif !fd.isBlocking && whence == io.SeekCurrent {\n+\t\t// Windows doesn't keep the file pointer for overlapped file handle... | 2025-08-19T10:10:54 |
nodejs/node | 761de815c5cce3fb67f0d14ecabc5397497285ff | c752615e2bbea73ec59de0439c997d334577fdae | test: move crypto related common utilities in common/crypto
Since `common/crypto` already exists, it makes sense to keep
crypto-related utilities there. The only exception being
common.hasCrypto which is needed up front to determine
if tests should be skipped.
Eliminate the redundant check in hasFipsCrypto and just
u... | [
{
"path": "test/addons/openssl-providers/providers.cjs",
"patch": "@@ -1,11 +1,14 @@\n 'use strict';\n \n const common = require('../../common');\n-if (!common.hasCrypto)\n+if (!common.hasCrypto) {\n common.skip('missing crypto');\n+}\n+const { hasOpenSSL3 } = require('../../common/crypto');\n \n-if (!com... | 2025-01-25T00:58:32 |
electron/electron | 6caf9f06f3fe3a93d63ab3b4a02f3feb6c1810ff | 4aa9070e6c291c9148cd170befc82e8fb953bd2a | fix: don't observe WebUSB for in-memory partitions (#42443) | [
{
"path": "shell/browser/hid/electron_hid_delegate.cc",
"patch": "@@ -46,8 +46,8 @@ class ElectronHidDelegate::ContextObservation\n ContextObservation(ElectronHidDelegate* parent,\n content::BrowserContext* browser_context)\n : parent_(parent), browser_context_(browser_context) ... | 2024-06-12T15:59:04 |
facebook/react | b15c1983dcf96f19400b0ca7337be1e1fb1a8717 | 792f1921145e51bd06b836ffa0a16ecc39c8ee82 | [Flight] Normalize Stack Using Fake Evals (#30401)
Stacked on https://github.com/facebook/react/pull/30400 and
https://github.com/facebook/react/pull/30369
Previously we were using fake evals to recreate a stack for console
replaying and thrown errors. However, for owner stacks we just used the
raw string that c... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -689,11 +689,21 @@ function createElement(\n value: null,\n });\n if (enableOwnerStacks) {\n+ let normalizedStackTrace: null | Error = null;\n+ if (stack !== null) {\n+ // We create a fake stack and then ... | 2024-07-22T15:03:15 |
golang/go | 119546ea4fdded79057913a943bd3b6a8dcf8d4a | ffa882059cfbfc7cd5f16c83d24775c08d63668f | cmd/go: document install outputs to $GOOS_$GOARCH when cross compiling
Fixes #74979
Change-Id: I2a93e3a78c953418cf62d93db107b9c8d25e8ed2
Reviewed-on: https://go-review.googlesource.com/c/go/+/696755
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Carlos Amedee <c... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -758,6 +758,8 @@\n // variable, which defaults to $GOPATH/bin or $HOME/go/bin if the GOPATH\n // environment variable is not set. Executables in $GOROOT\n // are installed in $GOROOT/bin or $GOTOOLDIR instead of $GOBIN.\n+// Cross compiled binaries are install... | 2025-08-17T11:46:13 |
nodejs/node | 19fabc0e3175d73e5b4c8acab66dd5424372ff55 | 1921371349c15d31b0b6884225a2093f0925a3d7 | util: inspect: do not crash on an Error stack that contains a Symbol
See #56570
PR-URL: https://github.com/nodejs/node/pull/56573
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jason Zhang <xzha4350@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewat... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -1287,8 +1287,14 @@ function identicalSequenceRange(a, b) {\n return { len: 0, offset: 0 };\n }\n \n-function getStackString(error) {\n- return error.stack ? String(error.stack) : ErrorPrototypeToString(error);\n+function getStackString(ctx, error) {... | 2025-01-12T21:04:40 |
vercel/next.js | 1dda5b668bc57fdad6c4cf840c2083e6c66ad9db | bc14f1928b58ff0bf4816016cb9ed70f3ca6f5e6 | [Breaking] Remove deprecated sync access to Dynamic APIs (#84179)
This PR removes the deprecated sync access to Dynamic APIs.
- Removed UnsafeUnwrapped* types.
- Replaced `as unknown as UnsafeUnwrapped ` type casts to `as any` for
dev warning.
- Removed tests that expected sync access to not error.
- Removed `Untrack... | [
{
"path": "errors/sync-dynamic-apis.mdx",
"patch": "@@ -26,9 +26,6 @@ function Page({ params }) {\n This also includes enumerating (e.g. `{...params}`, or `Object.keys(params)`) or iterating over the return\n value of these APIs (e.g. `[...headers()]` or `for (const cookie of cookies())`, or explicitly with... | 2025-09-27T20:44:45 |
electron/electron | 4aa9070e6c291c9148cd170befc82e8fb953bd2a | ea219dd7022ae88091ae7373b13af9ac7b772697 | fix: missing `fetch`-dependent interfaces in Node.js (#42419)
fix: missing fetch-dependent interfaces in Node.js | [
{
"path": "lib/node/init.ts",
"patch": "@@ -3,8 +3,11 @@ import { wrapFsWithAsar } from './asar-fs-wrapper';\n wrapFsWithAsar(require('fs'));\n \n // See ElectronRendererClient::DidCreateScriptContext.\n-if ((globalThis as any).blinkFetch) {\n- globalThis.fetch = (globalThis as any).blinkFetch;\n+if ((glob... | 2024-06-11T21:59:53 |
facebook/react | f603426f917314561c4289734f39b972be3814af | fac78affb0dd64537e6154cb36bc6f50f57eb049 | [Flight] Consistently flag debugOwner field (#30400)
This is available outside `enableOwnerStack` but we weren't consistently
using it and so it has different hidden classes. | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -618,7 +618,7 @@ function serializeThenable(\n task.keyPath, // the server component sequence continues through Promise-as-a-child.\n task.implicitSlot,\n request.abortableTasks,\n- __DEV__ && enableOwnerStacks ? task.de... | 2024-07-20T01:13:03 |
golang/go | ffa882059cfbfc7cd5f16c83d24775c08d63668f | 1f2e8e03e48597367e674138e26432345c685b1c | unique: deflake TestCanonMap/LoadOrStore/ConcurrentUnsharedKeys
I do not know yet what's causing this flake, but I've debugged it enough
to be confident that it's not a serious issue; it seems to be a test
flake. There is some path through which the tree nodes or keys might
still be transiently reachable, but I don't ... | [
{
"path": "src/unique/canonmap_test.go",
"patch": "@@ -108,6 +108,25 @@ func testCanonMap(t *testing.T, newMap func() *canonMap[string]) {\n \t\t\t\twg.Wait()\n \t\t\t}\n \n+\t\t\t// Run an extra GC cycle to de-flake. Sometimes the cleanups\n+\t\t\t// fail to run in time, despite drainCleanupQueue.\n+\t\t\t... | 2025-08-19T19:29:55 |
nodejs/node | 869d0cbca3b0b5e594b3254869a34d549664e089 | a9546024975d0bfb0a8ae47da323b10fb5cbb88b | test: fix localization data for ICU 74.2
PR-URL: https://github.com/nodejs/node/pull/56661
Refs: https://github.com/nodejs/node/pull/55618
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Ruben Bridgewater <ruben@b... | [
{
"path": "test/fixtures/icu/localizationData-v74.2.json",
"patch": "@@ -20,14 +20,14 @@\n \"dateTimeFormats\": {\n \"en\": \"7/25/1980, 1:35:33 AM\",\n \"zh\": \"1980/7/25 01:35:33\",\n- \"hi\": \"25/7/1980, 1:35:33 am\",\n+ \"hi\": \"25/7/1980, पू 1:35:33\",\n \"es\": \"25/7/1980, 1:35... | 2025-01-23T22:14:10 |
vercel/next.js | bc14f1928b58ff0bf4816016cb9ed70f3ca6f5e6 | 3f6ffba81563cbe6eaa1fdd9fb0ae6e4b7e3fc4c | fix: Update URL resolution logic to handle search parameters on root path /?foo=bar (#78262)
## What?
This PR fixes and implements test for an URL resolution issue that
stripped the searchparam when `metadataBase` was defined and a search
param was set on the root path. This created a behavior where :
```
export con... | [
{
"path": "packages/next/src/lib/metadata/resolvers/resolve-url.test.ts",
"patch": "@@ -62,6 +62,12 @@ describe('resolveAbsoluteUrlWithPathname', () => {\n 'https://example.com/foo'\n )\n })\n+\n+ it('should resolve absolute internal url with query', () => {\n+ expect(resolver('htt... | 2025-09-27T18:06:28 |
electron/electron | f35a75508685fa7ffaa3ad54d5b3547ebbefe6dc | f2481ed44f269478f34452493f736eb000efbe67 | fix: bad js-flags shouldn't crash the app (#42414)
* fix: bad js-flags shouldn't crash the app
* Update shell/browser/javascript_environment.cc
Co-authored-by: Robo <hop2deep@gmail.com>
---------
Co-authored-by: Robo <hop2deep@gmail.com> | [
{
"path": "shell/browser/javascript_environment.cc",
"patch": "@@ -124,13 +124,10 @@ JavascriptEnvironment::~JavascriptEnvironment() {\n v8::Isolate* JavascriptEnvironment::Initialize(uv_loop_t* event_loop,\n bool setup_wasm_streaming) {\n auto* cmd = base::C... | 2024-06-11T13:32:16 |
facebook/react | abc0b712aaa8498c70ff221cda19bc0cdc287f38 | 3f4391d5896b419b93f58103d153b67906460c2a | [ci] Fix sizebot job omitting build_and_lint dependency
ghstack-source-id: 3d457818c9812e320ddbd2bb3f35d5b2e3b92bdc
Pull Request resolved: https://github.com/facebook/react/pull/30392 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -565,7 +565,7 @@ jobs:\n \n sizebot:\n name: Run sizebot\n- needs: download_base_build_for_sizebot\n+ needs: [build_and_lint, download_base_build_for_sizebot]\n runs-on: ubuntu-latest\n steps:\n - uses: actions/... | 2024-07-18T21:35:53 |
golang/go | 1f2e8e03e48597367e674138e26432345c685b1c | 5024d0d884f8ca4fe74a861b5b20f6a3955762f2 | os: fix path in MkdirTemp error message
Fixes #75012
Change-Id: I9dd3ba8987bde9db93769a1b05d13b162ba5332d
Reviewed-on: https://go-review.googlesource.com/c/go/+/696715
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Sean Liao <sean@liao.dev>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts... | [
{
"path": "src/os/tempfile.go",
"patch": "@@ -105,7 +105,7 @@ func MkdirTemp(dir, pattern string) (string, error) {\n \t\t\tif try++; try < 10000 {\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\treturn \"\", &PathError{Op: \"mkdirtemp\", Path: dir + string(PathSeparator) + prefix + \"*\" + suffix, Err: ErrExist}\n+\t... | 2025-08-16T18:36:14 |
nodejs/node | a9546024975d0bfb0a8ae47da323b10fb5cbb88b | 3d861c493bb8ac3222837c22672d37a18b5f62ca | tools: fix tools-deps-update
PR-URL: https://github.com/nodejs/node/pull/56684
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com> | [
{
"path": ".github/workflows/tools.yml",
"patch": "@@ -284,6 +284,10 @@ jobs:\n tail -n1 temp-output | grep \"NEW_VERSION=\" >> \"$GITHUB_ENV\" || true\n rm temp-output\n steps:\n+ - name: Setup Git config\n+ run: |\n+ git config --global user.name \"Nod... | 2025-01-23T19:24:38 |
vercel/next.js | 97056e0d804ae832b3d8a92f314f0279375ed4a4 | f31d18d8b37b714c179ea940d05de1247c3c025b | Add a --webpack flag and default --turbopack to true (#84216)
Make Turbopack the default bundler for Next 🚀
## What
Add a `--webpack` flag so users can select webpack
Change behavior so if neither `--turbopack` or `--webpack` is set we default to Turbopack.
If we have defaulted the build to turbopack and we obser... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -502,6 +502,7 @@ jobs:\n \n export NEXT_TEST_MODE=start\n export NEXT_TEST_WASM=true\n+ export IS_WEBPACK_TEST=1\n node run-tests.js \\\n test/production/pages-dir/production/test/index.test.ts \\\n ... | 2025-09-26T23:24:17 |
electron/electron | c4abaec56ac91a53341bc486dcd05f733348326e | 92de23bb3c2dd882497a91354e8073ea210ffb48 | build: fix upload script defaults (#42430) | [
{
"path": "script/lib/util.py",
"patch": "@@ -158,7 +158,7 @@ def azput(prefix, key_prefix, files):\n print(output)\n \n def get_out_dir():\n- out_dir = 'Debug'\n+ out_dir = 'Default'\n override = os.environ.get('ELECTRON_OUT_DIR')\n if override is not None:\n out_dir = override",
"additions... | 2024-06-10T21:58:29 |
facebook/react | 4fb11acd795310a97c5052733e3240a9517eae76 | f6bc05a22a7b3ff609d441053b73a4f7e65a38e0 | [ci] Add sizebot to gh actions
Wires up sizebot in gh actions. I also fixed sizebot incorrectly
reporting that ReactAllWarnings was deleted.
ghstack-source-id: d3b1bb2088651409e8656c66f1eb28ab534a0604
Pull Request resolved: https://github.com/facebook/react/pull/30380 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -522,3 +522,87 @@ jobs:\n - run: ./scripts/circleci/run_devtools_e2e_tests.js\n env:\n RELEASE_CHANNEL: experimental\n+\n+ # ----- SIZEBOT -----\n+ download_base_build_for_sizebot:\n+ name: Download base buil... | 2024-07-18T20:19:11 |
nodejs/node | 3d861c493bb8ac3222837c22672d37a18b5f62ca | a1c9c1a2dd739db69f2de97875ad9ee8347ec160 | doc: fix inconsistencies in `WeakSet` and `WeakMap` comparison details
PR-URL: https://github.com/nodejs/node/pull/56683
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Jason Zhang <xzha4350@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@g... | [
{
"path": "doc/api/assert.md",
"patch": "@@ -909,11 +909,12 @@ weakSet2.add(obj);\n \n // Comparing different instances fails, even with same contents\n assert.deepStrictEqual(weakSet1, weakSet2);\n-// AssertionError: Expected inputs to be strictly deep-equal:\n+// AssertionError: Values have same structure... | 2025-01-23T19:24:28 |
golang/go | 5024d0d884f8ca4fe74a861b5b20f6a3955762f2 | b80ffb64d815596eb8882eaefa3e2d2920380634 | cmd/compile: tweak example command in README
While running ./src/all.bash, I got the following error:
all.bash must be run from $GOROOT/src
Change-Id: Iad271654ff8647501a324c282f01baf39605e3df
GitHub-Last-Rev: 2e289babf1bc81c1a44c9a72a29659d8bf9d827b
GitHub-Pull-Request: golang/go#75050
Reviewed-on: https://go-revie... | [
{
"path": "src/cmd/compile/README.md",
"patch": "@@ -281,11 +281,11 @@ dependencies, so is not suitable for distributed build systems.)\n ```\n $ go install golang.org/x/tools/cmd/toolstash@latest\n $ git clone https://go.googlesource.com/go\n- $ cd go\n+ $ export PATH=$PWD/go/bin:$PATH\n+ $ cd go/... | 2025-08-19T15:47:29 |
rust-lang/rust | 8581df53a2596280d70a0fd70f6d5c176ac2587a | 859951e3c7c9d0322c39bad49221937455bdffcd | Update cargo submodule
8 commits in 8cc0cb136772b8f54eafe0d163fcb7226a06af0c..f298b8c82da0cba538516b45b04a480fc501d4c0
2026-02-17 12:16:26 +0000 to 2026-02-24 21:59:20 +0000
- fix(host-config): fix panic when cross-compiling with host-config (rust-lang/cargo#16674)
- doc: improve documentation on using cfg values with... | [
{
"path": "src/tools/cargo",
"patch": "@@ -1 +1 @@\n-Subproject commit 8cc0cb136772b8f54eafe0d163fcb7226a06af0c\n+Subproject commit f298b8c82da0cba538516b45b04a480fc501d4c0",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2026-02-25T00:38:12 |
electron/electron | 92de23bb3c2dd882497a91354e8073ea210ffb48 | ff4494c18fff3fbe01a52373f97172636308cf7d | build: initial Linux pipeline checkout (#42429)
* build: create config for GHA build linux
* build: restructure linux pipeline files
* build (do not merge): don't run CircleCI or Appveyor
* build: run on push
* build: add checkout step
* build: fix .yml syntax
* Remove Azure CLI install
* Revert "... | [
{
"path": ".github/workflows/linux-build.yml",
"patch": "@@ -0,0 +1,17 @@\n+name: Build Linux\n+\n+on:\n+ workflow_dispatch:\n+ # push:\n+ # pull_request:\n+\n+jobs:\n+ build:\n+ uses: electron/electron/.github/workflows/linux-pipeline.yml@main\n+ with:\n+ is-release: false\n+ gn-config:... | 2024-06-10T19:39:34 |
vercel/next.js | 3ea8310f20076a695e9634c1c7f79be9bd639b3e | d5edf22ede04308ca8a5a8cb23659ca67f7bd9dc | fix(metadata): make formatDetection respect true/false properly (#83924)
### What?
Fixes the `FormatDetectionMeta` function so that it correctly respects
true vs false values.
### Why?
Previously, both true and false values output key=no. According to
Apple’s spec, Safari defaults to enabling detection when the tag... | [
{
"path": "packages/next/src/lib/metadata/generate/basic.tsx",
"patch": "@@ -184,12 +184,12 @@ export function FormatDetectionMeta({\n if (!formatDetection) return null\n let content = ''\n for (const key of formatDetectionKeys) {\n- if (key in formatDetection) {\n+ if (formatDetection[key] === ... | 2025-09-26T21:25:15 |
facebook/react | 76f8cf5277cff10a9a559ec10b810c3bca77f5d2 | b2ec0445b4801e067f624adb2a29afcd06d1de55 | [ci] Rename temporary build parts
Adds an _ prefix to temporary build parts from parallelization to allow
easier merging in later passes.
ghstack-source-id: 714da85972e138d389224f67601dc7aaa6676e11
Pull Request resolved: https://github.com/facebook/react/pull/30385 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -180,9 +180,8 @@ jobs:\n - name: Archive build\n uses: actions/upload-artifact@v4\n with:\n- name: build_${{ matrix.worker_id }}_${{ matrix.release_channel }}\n- path: |\n- build\n+ ... | 2024-07-18T20:19:09 |
golang/go | c61db5ebd52a75af80da5afd2c2de3c6ddf080d2 | 07ee3bfc631cd6593c10b8715fc58b05d844f4ba | syscall: forkAndExecInChild1: don't reuse pid variable
A named return variable pid is reused in a few places, and while
the code is not wrong, it is somewhat confusing.
This variable used to be called r1 before CL 456516 (which did the right
thing, but slightly added to the confusion).
Now, the code calling SYS_WRIT... | [
{
"path": "src/syscall/exec_linux.go",
"patch": "@@ -365,11 +365,11 @@ func forkAndExecInChild1(argv0 *byte, argv, envv []*byte, chroot, dir *byte, att\n \t\tif _, _, err1 = RawSyscall(SYS_CLOSE, uintptr(mapPipe[1]), 0, 0); err1 != 0 {\n \t\t\tgoto childerror\n \t\t}\n-\t\tpid, _, err1 = RawSyscall(SYS_READ... | 2025-07-17T03:32:10 |
nodejs/node | 905e4b43e58a7443fc9cb6ae6f99623422a0e997 | d9786109b2a0982677135f0c146f6b591a0e4961 | module: use more defensive code when handling SWC errors
PR-URL: https://github.com/nodejs/node/pull/56646
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/modules/typescript.js",
"patch": "@@ -1,5 +1,8 @@\n 'use strict';\n \n+const {\n+ ObjectPrototypeHasOwnProperty,\n+} = primordials;\n const {\n validateBoolean,\n validateOneOf,\n@@ -12,7 +15,6 @@ const { assertTypeScript,\n isUnderNodeModules,\n kEmptyObject } =... | 2025-01-23T15:17:31 |
rust-lang/rust | e2b308726ae6336c837688664953097ce2cab83c | 08abc44fa5eec6639cc10d60efa6807038d107ad | Fix SGX delayed host lookup via ToSocketAddr | [
{
"path": "library/std/src/net/mod.rs",
"patch": "@@ -70,3 +70,7 @@ pub enum Shutdown {\n #[stable(feature = \"rust1\", since = \"1.0.0\")]\n Both,\n }\n+\n+// allow(unused_imports): This function is only used on some targets\n+#[allow(unused_imports)]\n+pub(crate) use socket_addr::lookup_host_strin... | 2026-02-24T20:00:05 |
electron/electron | ff4494c18fff3fbe01a52373f97172636308cf7d | 839ba300092d974732995d174a6d2ef504c62a05 | build: allow kicking build with `workflow_dispatch` (#42420)
* build: allow kicking build with workflow_dispatch
* build: ensure macOS build works
* fix: no upload in build
* build: add target_cpu to MAS config
---------
Co-authored-by: Keeley Hammond <khammond@slack-corp.com> | [
{
"path": ".github/workflows/config/testing/x64/evm.mas.json",
"patch": "@@ -9,6 +9,7 @@\n \"args\": [\n \"import(\\\"//electron/build/args/testing.gn\\\")\",\n \"use_remoteexec = true\",\n+ \"target_cpu = \\\"x64\\\"\",\n \"is_mas_build = true\"\n ],\n \"out\": \"Default\... | 2024-06-10T16:55:16 |
nodejs/node | 9ec7bed7b9343fbdc7f7270d8c08c9fb0dca453f | 01dd7c4f6450ac5f092f98a5a85f00d0a7f489b2 | module: fixing url change in load sync hook chain
Fixes: https://github.com/nodejs/node/issues/56376
PR-URL: https://github.com/nodejs/node/pull/56402
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Mat... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -1144,7 +1144,7 @@ function getDefaultLoad(url, filename) {\n return function defaultLoad(urlFromHook, context) {\n // If the url is the same as the original one, save the conversion.\n const isLoadingOriginalModule = (urlFromHook === ur... | 2024-12-29T20:36:54 |
facebook/react | 378ab81522c3da436943980cbb537c9ce523fbf8 | e15c5b15c67202b30faecf24a66547725cd08480 | [compiler][fixtures] Repro for fbt + non-ascii strings
ghstack-source-id: 05211980566f8c061ac2ca8ce51e442d234beacc
Pull Request resolved: https://github.com/facebook/react/pull/30386 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/error.todo-fbt-param-with-newline.expect.md",
"patch": "@@ -0,0 +1,36 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from \"fbt\";\n+\n+function Component(props) {\n+ const element = (\n+ <fbt desc={\"Dialog t... | 2024-07-18T19:33:51 |
golang/go | 07ee3bfc631cd6593c10b8715fc58b05d844f4ba | 5a56d8848b4ffb79c5ccc11ec6fa01823a91aaf8 | cmd/go: use modern pprof flags in documentation
This change updates our mentions of pprof flags so that we now refer to
the modern flag names instead of the legacy ones.
Fixes #74336.
Change-Id: Ie8fbc7407178219b84ce5171fa5e94621129267e
Reviewed-on: https://go-review.googlesource.com/c/go/+/689095
Reviewed-by: Micha... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -3231,8 +3231,8 @@\n //\n // Several of the flags control profiling and write an execution profile\n // suitable for \"go tool pprof\"; run \"go tool pprof -h\" for more\n-// information. The --alloc_space, --alloc_objects, and --show_bytes\n-// options of ppr... | 2025-07-21T03:25:57 |
vercel/next.js | 81bd704a29f5370924d099651ac303289543f9b2 | 2a11fc33e7c4e25f4bf02b419febb61caba79691 | fix: make sure caller exists in babel preset (#84154)
### What?
https://github.com/vercel/next.js/pull/82676 introduced a small bug when
using the Babel preset standalone without Next.js itself. It throws the
following error:
```
Cannot read properties of undefined (reading 'transformMode') (While processing: "/home... | [
{
"path": "packages/next/src/build/babel/preset.ts",
"patch": "@@ -145,7 +145,7 @@ export default (\n const isStandalone = api.caller(\n // NOTE: `transformMode` may be undefined if the user configured `babel-loader` themselves. In\n // this case, we should assume we're in 'default' mode.\n- (c... | 2025-09-26T20:23:28 |
rust-lang/rust | f2f8743b4eec101b1100cb0b04ac1b0cb8e3bff8 | 0028f344ce9f64766259577c998a1959ca1f6a0b | Give a better error when updating a submodule fails
Previously this would sometimes just say "unexpected output ``", which
was extremely unhelpful. The actual issue was that I had a `.jj`
directory but not a `.git` directory, so it couldn't run `git submodule
update.` | [
{
"path": "src/bootstrap/src/core/config/config.rs",
"patch": "@@ -2426,7 +2426,7 @@ pub(crate) fn update_submodule<'a>(\n let actual_hash = recorded\n .split_whitespace()\n .nth(2)\n- .unwrap_or_else(|| panic!(\"unexpected output `{recorded}`\"));\n+ .unwrap_or_else(|| pan... | 2026-02-24T21:58:07 |
nodejs/node | 8306457110ebba648de5979136c39f7abba46ea9 | 1b693fa03a0d36bc1dc9ec8d95060e3e5ceeee7b | path: fix path traversal in normalize() on Windows
Without this patch, on Windows, normalizing a relative path might result
in a path that Windows considers absolute. In rare cases, this might
lead to path traversal vulnerabilities in user code.
We attempt to detect those cases and return a relative path instead.
Co... | [
{
"path": "lib/path.js",
"patch": "@@ -26,6 +26,7 @@ const {\n ArrayPrototypeSlice,\n FunctionPrototypeBind,\n StringPrototypeCharCodeAt,\n+ StringPrototypeIncludes,\n StringPrototypeIndexOf,\n StringPrototypeLastIndexOf,\n StringPrototypeRepeat,\n@@ -414,6 +415,23 @@ const win32 = {\n if (... | 2025-01-20T14:40:16 |
electron/electron | 92db4f0b8a196601ae888b983f91dea42044418d | c6845b0afc480040164d7cd2dcb016a5d05b7e45 | build: fix `generate_gn_filenames_json.py` (#42389)
build: fix generate_gn_filenames_json.py | [
{
"path": "patches/node/build_add_gn_build_files.patch",
"patch": "@@ -1256,10 +1256,10 @@ index 0000000000000000000000000000000000000000..af9cbada10203b387fb9732b346583b1\n +}\n diff --git a/filenames.json b/filenames.json\n new file mode 100644\n-index 0000000000000000000000000000000000000000..1a9cba024f1... | 2024-06-10T15:34:36 |
facebook/react | e15c5b15c67202b30faecf24a66547725cd08480 | 512b09b24d41cb7a5ccee5ec70adab2ba25ae67d | [compiler][patch] Fix jsx non-ascii regex pattern
ghstack-source-id: 97ed49112453c2ca3165361e758b6f31fbd0da20
Pull Request resolved: https://github.com/facebook/react/pull/30382 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -2206,7 +2206,7 @@ function codegenInstructionValue(\n * https://en.wikipedia.org/wiki/List_of_Unicode_characters#Control_codes\n */\n const STRING_REQUIRES_EXPR_CONTAINER_PATTERN =\n- /[... | 2024-07-18T19:33:51 |
golang/go | 5a56d8848b4ffb79c5ccc11ec6fa01823a91aaf8 | c3927a47f092fc7248d973f4d8a64ab410804986 | cmd/compile: ensure we use allowed registers for input-clobbering instructions
For instructions which clobber their input register, we make a second
copy of the input value so it is still available in a register for
future instructions.
That second copy might not respect the register input restrictions
for the instru... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -1725,10 +1725,9 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\t\t// spilling the value with the most distant next use.\n \t\t\t\t\tcontinue\n \t\t\t\t}\n-\t\t\t\t// Copy input to a new clobberable register.\n+\t\t\t\t// Copy input... | 2025-08-18T17:17:27 |
vercel/next.js | 3b94ab2dd9f9241ad3a7a680719e1a713d9e7126 | 11f721eeda6e6c4133faa8e484491d03f7a06a62 | docs:Small improvement on the contribution guide for clarity (#84200)
### What?
Improves the contribution guide (`01-contribution-guide.mdx`) by fixing
a typo and clarifying wording for JavaScript files with JSX code.
### Why?
This is my first time ontributing to open source, i've taken my time to
read the contributi... | [
{
"path": "docs/04-community/01-contribution-guide.mdx",
"patch": "@@ -230,7 +230,7 @@ When writing JavaScript code blocks, we use the following language and extension\n \n > **Good to know**:\n >\n-> - Make sure to use **`js`** extension with **JSX** code at JavaScript files.\n+> - Make sure to use **`.js`... | 2025-09-26T15:47:47 |
rust-lang/rust | 8971ad85af554a2352865bf0e51d2cd16c519622 | 859951e3c7c9d0322c39bad49221937455bdffcd | Fix attribute parser and kind names.
For the attribute `FooBar` the parser is generally called `FooBarParser`
and the kind is called `AttributeKind::FooBar`. This commit renames some
cases that don't match that pattern. The most common cases:
- Adding `Rustc` to the front of the parser name for a `rustc_*`
attribute... | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/allow_unstable.rs",
"patch": "@@ -52,8 +52,8 @@ impl<S: Stage> CombineAttributeParser<S> for UnstableFeatureBoundParser {\n }\n }\n \n-pub(crate) struct AllowConstFnUnstableParser;\n-impl<S: Stage> CombineAttributeParser<S> for AllowConstFnUnstablePa... | 2026-02-24T01:22:20 |
electron/electron | 035b10daf9ef81b8ecab359d083ccb8c95668a5d | 91205540c41bdd67d019bbb067d0e755bfca88ce | fix: multiple selection in `//shell_dialogs` Portal/KDE implementations (#42308)
* fix: multiple selection in //shell_dialogs portal implementation
* fix: allow multiple directory selection in KDE implementation | [
{
"path": "patches/chromium/feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch",
"patch": "@@ -186,24 +186,10 @@ index 129979e844581e68fdecde87bd52f3344f88022a..5e02a36e5e9eb4db84700dd9a0b8765d\n }\n \n diff --git a/ui/gtk/select_file_dialog_linux_gtk.h b/ui/gtk/select_file_dialog_linux_g... | 2024-06-10T14:43:16 |
nodejs/node | 1b693fa03a0d36bc1dc9ec8d95060e3e5ceeee7b | 23c2d33592e72f7ba9bb5d30fe3181714bb508d1 | src: fix HTTP2 mem leak on premature close and ERR_PROTO
This commit fixes a memory leak when the socket is
suddenly closed by the peer (without GOAWAY notification)
and when invalid header (by nghttp2) is identified and the
connection is terminated by peer.
Refs: https://hackerone.com/reports/2841362
PR-URL: https:/... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -614,11 +614,20 @@ function onFrameError(id, type, code) {\n return;\n debugSessionObj(session, 'error sending frame type %d on stream %d, code: %d',\n type, id, code);\n- const emitter = session[kState].streams.get(id) || session... | 2024-12-17T19:58:03 |
facebook/react | 512b09b24d41cb7a5ccee5ec70adab2ba25ae67d | 163365a07872337e04826c4f501565d43dbd2fd4 | [ci][ez] Rename artifact from process_artifacts_combined
Build artifacts are uniquely associated to a single workflow run, so
appending the sha was unnecessary. I originally included it to make it
easier to download later but this turns out to be unneeded.
Drops the sha suffix to make downloading the artifact in a se... | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -285,7 +285,7 @@ jobs:\n - name: Archive build artifacts\n uses: actions/upload-artifact@v4\n with:\n- name: combined_artifacts_${{ github.sha }}\n+ name: artifacts_combined\n path: |\n ... | 2024-07-17T16:32:10 |
rust-lang/rust | 2e17c9b81a0446cdfaae88e038bbfbba7d105b5a | 4ab624fcca7f8a1386c64d41723b8c2a4ba0ba24 | remove FIXME about size of Pointer type | [
{
"path": "src/tools/miri/src/machine.rs",
"patch": "@@ -300,7 +300,8 @@ pub enum ProvenanceExtra {\n \n #[cfg(target_pointer_width = \"64\")]\n static_assert_size!(StrictPointer, 24);\n-// FIXME: this would with in 24bytes but layout optimizations are not smart enough\n+// Pointer does not fit as the layou... | 2026-02-24T21:29:26 |
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.