Skip to content

Commit 9b6719c

Browse files
committed
Merge branch 'main' into feat/utils/profiler-perf-buffer
# Conflicts: # packages/utils/src/lib/profiler/profiler.int.test.ts # packages/utils/src/lib/profiler/profiler.unit.test.ts
2 parents 96079fa + ea27cdc commit 9b6719c

File tree

282 files changed

+1705
-790
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

282 files changed

+1705
-790
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
## 0.109.0 (2026-01-26)
2+
3+
### 🚀 Features
4+
5+
- **models:** add URL source type for issues ([ef5a5be1](https://github.com/code-pushup/cli/commit/ef5a5be1))
6+
- **plugin-axe:** add source field to issues ([fe6f94ea](https://github.com/code-pushup/cli/commit/fe6f94ea))
7+
- **utils:** add type guards and URL source formatting ([cde6309e](https://github.com/code-pushup/cli/commit/cde6309e))
8+
9+
### ❤️ Thank You
10+
11+
- hanna-skryl
12+
13+
## 0.108.2 (2026-01-26)
14+
15+
### 🩹 Fixes
16+
17+
- add missing vitest.d.ts to test tsconfigs ([c9c47f36](https://github.com/code-pushup/cli/commit/c9c47f36))
18+
- **zod2md-jsdocs:** exclude tests from build ([69707ff8](https://github.com/code-pushup/cli/commit/69707ff8))
19+
20+
### ❤️ Thank You
21+
22+
- hanna-skryl
23+
24+
## 0.108.1 (2026-01-20)
25+
26+
### 🩹 Fixes
27+
28+
- **utils:** unique names for parallel plugin execution ([#1222](https://github.com/code-pushup/cli/pull/1222))
29+
30+
### ❤️ Thank You
31+
32+
- Nicolas Beaussart @beaussan
33+
134
## 0.108.0 (2026-01-16)
235

336
### 🚀 Features

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ See how your project measures up. With [portal integration](./packages/cli/READM
2727
![Security](https://api.staging.code-pushup.dev/badges/code-pushup/cli-workspace/security?apiKey=cp_def67c4efe558a9149061d0c62de893e1689ad793071db332790238446173fef)
2828
![Updates](https://api.staging.code-pushup.dev/badges/code-pushup/cli-workspace/updates?apiKey=cp_def67c4efe558a9149061d0c62de893e1689ad793071db332790238446173fef)
2929
![Documentation](https://api.staging.code-pushup.dev/badges/code-pushup/cli-workspace/docs?apiKey=cp_def67c4efe558a9149061d0c62de893e1689ad793071db332790238446173fef)
30-
![Axe Accessibility](https://api.staging.code-pushup.dev/badges/code-pushup/cli-workspace/axe-a11y?apiKey=cp_def67c4efe558a9149061d0c62de893e1689ad793071db332790238446173fef)
3130

3231
---
3332

e2e/ci-e2e/tests/basic.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { readFile, rename } from 'node:fs/promises';
22
import path from 'node:path';
33
import type { SimpleGit } from 'simple-git';
4-
import { afterEach } from 'vitest';
54
import {
65
type GitRefs,
76
type Options,

e2e/ci-e2e/tests/npm-workspaces.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { readFile, rename } from 'node:fs/promises';
22
import path from 'node:path';
33
import type { SimpleGit } from 'simple-git';
4-
import { afterEach } from 'vitest';
54
import {
65
type GitRefs,
76
type Options,

e2e/ci-e2e/tests/nx-monorepo.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { readFile, rename, writeFile } from 'node:fs/promises';
22
import path from 'node:path';
33
import type { SimpleGit } from 'simple-git';
4-
import { afterEach } from 'vitest';
54
import {
65
type GitRefs,
76
type Options,

e2e/ci-e2e/tsconfig.test.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"vitest.e2e.config.ts",
99
"tests/**/*.e2e.test.ts",
1010
"tests/**/*.d.ts",
11-
"mocks/**/*.ts"
11+
"mocks/**/*.ts",
12+
"../../testing/test-setup/src/vitest.d.ts"
1213
]
1314
}

e2e/cli-e2e/tests/collect.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { cp } from 'node:fs/promises';
22
import path from 'node:path';
3-
import { afterEach, beforeAll, describe, expect, it } from 'vitest';
43
import { nxTargetProject } from '@code-pushup/test-nx-utils';
54
import {
65
E2E_ENVIRONMENTS_DIR,

e2e/cli-e2e/tests/compare.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { cp } from 'node:fs/promises';
22
import path from 'node:path';
3-
import { beforeAll } from 'vitest';
43
import type { ReportsDiff } from '@code-pushup/models';
54
import { nxTargetProject } from '@code-pushup/test-nx-utils';
65
import {

e2e/cli-e2e/tests/print-config.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { cp, readFile } from 'node:fs/promises';
22
import path from 'node:path';
3-
import { beforeAll, expect } from 'vitest';
43
import { nxTargetProject } from '@code-pushup/test-nx-utils';
54
import {
65
E2E_ENVIRONMENTS_DIR,

e2e/cli-e2e/tsconfig.test.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"vitest.e2e.config.ts",
99
"tests/**/*.e2e.test.ts",
1010
"tests/**/*.d.ts",
11-
"mocks/**/*.ts"
11+
"mocks/**/*.ts",
12+
"../../testing/test-setup/src/vitest.d.ts"
1213
]
1314
}

0 commit comments

Comments
 (0)