Skip to content

Commit 2135c9b

Browse files
committed
release: 0.68.0 [skip ci]
1 parent 61ae18e commit 2135c9b

File tree

14 files changed

+61
-37
lines changed

14 files changed

+61
-37
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 0.68.0 (2025-05-19)
2+
3+
### 🚀 Features
4+
5+
- **core:** include trees when uploading audits to portal ([c1c6965e](https://github.com/code-pushup/cli/commit/c1c6965e))
6+
- **models:** define tree data structure for audit details ([63bf44ca](https://github.com/code-pushup/cli/commit/63bf44ca))
7+
- **plugin-coverage:** replace issues with tree ([2dc16890](https://github.com/code-pushup/cli/commit/2dc16890))
8+
- **plugin-jsdocs:** replace issues with tree ([d347c0f2](https://github.com/code-pushup/cli/commit/d347c0f2))
9+
- **plugin-jsdocs:** include end line number ([f2102eb5](https://github.com/code-pushup/cli/commit/f2102eb5))
10+
- **plugin-lighthouse:** convert criticalrequestchain details to trees and table ([18d4230e](https://github.com/code-pushup/cli/commit/18d4230e))
11+
- **plugin-lighthouse:** convert treemap-data details to trees ([19088927](https://github.com/code-pushup/cli/commit/19088927))
12+
- **utils:** generate ascii tree in full markdown report's audit details ([ab462d42](https://github.com/code-pushup/cli/commit/ab462d42))
13+
- **utils:** convert files array to tree structure ([211be5bf](https://github.com/code-pushup/cli/commit/211be5bf))
14+
- **utils:** aggregate coverage per folder ([7ef0c14e](https://github.com/code-pushup/cli/commit/7ef0c14e))
15+
- **utils:** sort coverage tree alphabetically with folders before files ([f87b869e](https://github.com/code-pushup/cli/commit/f87b869e))
16+
17+
### 🩹 Fixes
18+
19+
- **ci:** use absolute path in print-config --output file ([61ae18e1](https://github.com/code-pushup/cli/commit/61ae18e1))
20+
21+
### ❤️ Thank You
22+
23+
- Matěj Chalk
24+
125
## 0.67.0 (2025-04-28)
226

327
### 🚀 Features

packages/ci/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/ci",
3-
"version": "0.67.0",
3+
"version": "0.68.0",
44
"description": "CI automation logic for Code PushUp (provider-agnostic)",
55
"license": "MIT",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/ci#readme",
@@ -26,8 +26,8 @@
2626
},
2727
"type": "module",
2828
"dependencies": {
29-
"@code-pushup/models": "0.67.0",
30-
"@code-pushup/utils": "0.67.0",
29+
"@code-pushup/models": "0.68.0",
30+
"@code-pushup/utils": "0.68.0",
3131
"glob": "^11.0.1",
3232
"simple-git": "^3.20.0",
3333
"yaml": "^2.5.1",

packages/cli/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/cli",
3-
"version": "0.67.0",
3+
"version": "0.68.0",
44
"license": "MIT",
55
"description": "A CLI to run all kinds of code quality measurements to align your team with company goals",
66
"homepage": "https://code-pushup.dev",
@@ -45,9 +45,9 @@
4545
"node": ">=20"
4646
},
4747
"dependencies": {
48-
"@code-pushup/models": "0.67.0",
49-
"@code-pushup/core": "0.67.0",
50-
"@code-pushup/utils": "0.67.0",
48+
"@code-pushup/models": "0.68.0",
49+
"@code-pushup/core": "0.68.0",
50+
"@code-pushup/utils": "0.68.0",
5151
"yargs": "^17.7.2",
5252
"ansis": "^3.3.0",
5353
"simple-git": "^3.20.0"

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/core",
3-
"version": "0.67.0",
3+
"version": "0.68.0",
44
"license": "MIT",
55
"description": "Core business logic for the used by the Code PushUp CLI",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/core#readme",
@@ -39,8 +39,8 @@
3939
},
4040
"type": "module",
4141
"dependencies": {
42-
"@code-pushup/models": "0.67.0",
43-
"@code-pushup/utils": "0.67.0",
42+
"@code-pushup/models": "0.68.0",
43+
"@code-pushup/utils": "0.68.0",
4444
"ansis": "^3.3.0"
4545
},
4646
"peerDependencies": {

packages/create-cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/create-cli",
3-
"version": "0.67.0",
3+
"version": "0.68.0",
44
"license": "MIT",
55
"bin": "index.js",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/create-cli#readme",
@@ -26,7 +26,7 @@
2626
},
2727
"type": "module",
2828
"dependencies": {
29-
"@code-pushup/nx-plugin": "0.67.0",
30-
"@code-pushup/utils": "0.67.0"
29+
"@code-pushup/nx-plugin": "0.68.0",
30+
"@code-pushup/utils": "0.68.0"
3131
}
3232
}

packages/models/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/models",
3-
"version": "0.67.0",
3+
"version": "0.68.0",
44
"license": "MIT",
55
"description": "Model definitions and validators for the Code PushUp CLI",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/models#readme",

packages/nx-plugin/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/nx-plugin",
3-
"version": "0.67.0",
3+
"version": "0.68.0",
44
"license": "MIT",
55
"description": "Nx plugin to integrate the Code PushUp CLI into your workspace 🛠️",
66
"publishConfig": {
@@ -32,8 +32,8 @@
3232
"generators": "./generators.json",
3333
"executors": "./executors.json",
3434
"dependencies": {
35-
"@code-pushup/models": "0.67.0",
36-
"@code-pushup/utils": "0.67.0",
35+
"@code-pushup/models": "0.68.0",
36+
"@code-pushup/utils": "0.68.0",
3737
"@nx/devkit": "^17.0.0 || ^18.0.0 || ^19.0.0",
3838
"ansis": "^3.3.0",
3939
"nx": "^17.0.0 || ^18.0.0 || ^19.0.0",

packages/plugin-coverage/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/coverage-plugin",
3-
"version": "0.67.0",
3+
"version": "0.68.0",
44
"description": "Code PushUp plugin for tracking code coverage ☂",
55
"license": "MIT",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/plugin-coverage#readme",
@@ -34,8 +34,8 @@
3434
},
3535
"type": "module",
3636
"dependencies": {
37-
"@code-pushup/models": "0.67.0",
38-
"@code-pushup/utils": "0.67.0",
37+
"@code-pushup/models": "0.68.0",
38+
"@code-pushup/utils": "0.68.0",
3939
"ansis": "^3.3.0",
4040
"parse-lcov": "^1.0.4",
4141
"yargs": "^17.7.2",

packages/plugin-eslint/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/eslint-plugin",
3-
"version": "0.67.0",
3+
"version": "0.68.0",
44
"license": "MIT",
55
"description": "Code PushUp plugin for detecting problems in source code using ESLint.📋",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/plugin-eslint#readme",
@@ -38,8 +38,8 @@
3838
},
3939
"type": "module",
4040
"dependencies": {
41-
"@code-pushup/utils": "0.67.0",
42-
"@code-pushup/models": "0.67.0",
41+
"@code-pushup/utils": "0.68.0",
42+
"@code-pushup/models": "0.68.0",
4343
"yargs": "^17.7.2",
4444
"zod": "^3.22.4"
4545
},

packages/plugin-js-packages/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/js-packages-plugin",
3-
"version": "0.67.0",
3+
"version": "0.68.0",
44
"description": "Code PushUp plugin for JavaScript packages 🛡️",
55
"license": "MIT",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/plugin-js-packages#readme",
@@ -37,8 +37,8 @@
3737
},
3838
"type": "module",
3939
"dependencies": {
40-
"@code-pushup/models": "0.67.0",
41-
"@code-pushup/utils": "0.67.0",
40+
"@code-pushup/models": "0.68.0",
41+
"@code-pushup/utils": "0.68.0",
4242
"build-md": "^0.4.1",
4343
"semver": "^7.6.0",
4444
"yargs": "^17.7.2",

0 commit comments

Comments
 (0)