Skip to content

Commit

Permalink
release: 0.57.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
matejchalk committed Dec 17, 2024
1 parent f1163d0 commit 2a05a16
Show file tree
Hide file tree
Showing 12 changed files with 67 additions and 31 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
## 0.57.0 (2024-12-17)

### 🚀 Features

- **ci:** detect persist config from print-config ([ad8bd284](https://github.com/code-pushup/cli/commit/ad8bd284))
- **ci:** remove obsolete output option ([0b9d679e](https://github.com/code-pushup/cli/commit/0b9d679e))
- **ci:** implement run many command resolution for each monorepo tool ([094797d9](https://github.com/code-pushup/cli/commit/094797d9))
- **ci:** add parallel option ([85e51864](https://github.com/code-pushup/cli/commit/85e51864))
- **ci:** filter nx run-many by projects from nx show projects as fallback ([97a603cc](https://github.com/code-pushup/cli/commit/97a603cc))
- **ci:** sort nx projects alphabetically ([6a6c2f3d](https://github.com/code-pushup/cli/commit/6a6c2f3d))
- **ci:** copy merged-report-diff.md from project to root ([e1305295](https://github.com/code-pushup/cli/commit/e1305295))
- **ci:** implement bulk collecting reports for parallel monorepo runs ([e0b4d97f](https://github.com/code-pushup/cli/commit/e0b4d97f))
- **core:** enhance config validation ([836b242d](https://github.com/code-pushup/cli/commit/836b242d))
- **utils:** implement type guard for nullable object props ([c3fc549e](https://github.com/code-pushup/cli/commit/c3fc549e))

### 🩹 Fixes

- prevent "ExperimentalWarning: Importing JSON" logged to stderr ([8ce9e635](https://github.com/code-pushup/cli/commit/8ce9e635))
- update progress bar gradually as plugin run complete ([7a592ebd](https://github.com/code-pushup/cli/commit/7a592ebd))
- lint import extensions and fix missing .js extensions ([9d6eacf4](https://github.com/code-pushup/cli/commit/9d6eacf4))
- **ci:** handle non-JSON prefix/suffix lines from print-config ([43ffcf2d](https://github.com/code-pushup/cli/commit/43ffcf2d))
- **ci:** ensure valid output directory for reports and merged diff ([5e36323d](https://github.com/code-pushup/cli/commit/5e36323d))
- **ci:** resolve outputDir correctly by running workspace commands in project dir ([94b25f88](https://github.com/code-pushup/cli/commit/94b25f88))
- **ci:** only copy merged-report-diff.md when paths are different ([f8ac4007](https://github.com/code-pushup/cli/commit/f8ac4007))
- **nx-plugin:** use wildcard path imports to prevent CJS runtime errors ([31bed82a](https://github.com/code-pushup/cli/commit/31bed82a))
- **plugin-eslint:** avoid directory imports ([688a4859](https://github.com/code-pushup/cli/commit/688a4859))
- **plugin-eslint:** consider defaultOptions to ensure rule slugs from runner match ([13de4b57](https://github.com/code-pushup/cli/commit/13de4b57))
- **plugin-eslint:** handle mismatched slugs for legacy configs ([e324f39d](https://github.com/code-pushup/cli/commit/e324f39d))
- **plugin-eslint:** parse rule names containing slashes correctly ([f1163d0a](https://github.com/code-pushup/cli/commit/f1163d0a))

### ❤️ Thank You

- Hanna Skryl @hanna-skryl
- Matěj Chalk
- Vojtech Masek @vmasek

## 0.56.0 (2024-11-29)

### 🚀 Features
Expand Down
6 changes: 3 additions & 3 deletions packages/ci/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-pushup/ci",
"version": "0.56.0",
"version": "0.57.0",
"description": "CI automation logic for Code PushUp (provider-agnostic)",
"license": "MIT",
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/ci#readme",
Expand All @@ -26,8 +26,8 @@
},
"type": "module",
"dependencies": {
"@code-pushup/models": "0.56.0",
"@code-pushup/utils": "0.56.0",
"@code-pushup/models": "0.57.0",
"@code-pushup/utils": "0.57.0",
"glob": "^10.4.5",
"simple-git": "^3.20.0",
"yaml": "^2.5.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-pushup/cli",
"version": "0.56.0",
"version": "0.57.0",
"license": "MIT",
"description": "A CLI to run all kinds of code quality measurements to align your team with company goals",
"homepage": "https://code-pushup.dev",
Expand Down Expand Up @@ -42,9 +42,9 @@
"code-pushup": "./src/index.js"
},
"dependencies": {
"@code-pushup/models": "0.56.0",
"@code-pushup/core": "0.56.0",
"@code-pushup/utils": "0.56.0",
"@code-pushup/models": "0.57.0",
"@code-pushup/core": "0.57.0",
"@code-pushup/utils": "0.57.0",
"yargs": "^17.7.2",
"ansis": "^3.3.0",
"simple-git": "^3.20.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-pushup/core",
"version": "0.56.0",
"version": "0.57.0",
"license": "MIT",
"description": "Core business logic for the used by the Code PushUp CLI",
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/core#readme",
Expand Down Expand Up @@ -39,8 +39,8 @@
},
"type": "module",
"dependencies": {
"@code-pushup/models": "0.56.0",
"@code-pushup/utils": "0.56.0",
"@code-pushup/models": "0.57.0",
"@code-pushup/utils": "0.57.0",
"ansis": "^3.3.0",
"zod-validation-error": "^3.4.0"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/create-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-pushup/create-cli",
"version": "0.56.0",
"version": "0.57.0",
"license": "MIT",
"bin": "index.js",
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/create-cli#readme",
Expand All @@ -26,7 +26,7 @@
},
"type": "module",
"dependencies": {
"@code-pushup/nx-plugin": "0.56.0",
"@code-pushup/utils": "0.56.0"
"@code-pushup/nx-plugin": "0.57.0",
"@code-pushup/utils": "0.57.0"
}
}
2 changes: 1 addition & 1 deletion packages/models/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-pushup/models",
"version": "0.56.0",
"version": "0.57.0",
"license": "MIT",
"description": "Model definitions and validators for the Code PushUp CLI",
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/models#readme",
Expand Down
6 changes: 3 additions & 3 deletions packages/nx-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-pushup/nx-plugin",
"version": "0.56.0",
"version": "0.57.0",
"license": "MIT",
"description": "Nx plugin to integrate the Code PushUp CLI into your workspace 🛠️",
"publishConfig": {
Expand Down Expand Up @@ -32,8 +32,8 @@
"generators": "./generators.json",
"executors": "./executors.json",
"dependencies": {
"@code-pushup/models": "0.56.0",
"@code-pushup/utils": "0.56.0",
"@code-pushup/models": "0.57.0",
"@code-pushup/utils": "0.57.0",
"@nx/devkit": "^17.0.0 || ^18.0.0 || ^19.0.0",
"nx": "^17.0.0 || ^18.0.0 || ^19.0.0",
"zod": "^3.22.4"
Expand Down
6 changes: 3 additions & 3 deletions packages/plugin-coverage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-pushup/coverage-plugin",
"version": "0.56.0",
"version": "0.57.0",
"description": "Code PushUp plugin for tracking code coverage ☂",
"license": "MIT",
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/plugin-coverage#readme",
Expand Down Expand Up @@ -34,8 +34,8 @@
},
"type": "module",
"dependencies": {
"@code-pushup/models": "0.56.0",
"@code-pushup/utils": "0.56.0",
"@code-pushup/models": "0.57.0",
"@code-pushup/utils": "0.57.0",
"ansis": "^3.3.0",
"parse-lcov": "^1.0.4",
"zod": "^3.22.4"
Expand Down
6 changes: 3 additions & 3 deletions packages/plugin-eslint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-pushup/eslint-plugin",
"version": "0.56.0",
"version": "0.57.0",
"license": "MIT",
"description": "Code PushUp plugin for detecting problems in source code using ESLint.📋",
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/plugin-eslint#readme",
Expand Down Expand Up @@ -38,8 +38,8 @@
},
"type": "module",
"dependencies": {
"@code-pushup/utils": "0.56.0",
"@code-pushup/models": "0.56.0",
"@code-pushup/utils": "0.57.0",
"@code-pushup/models": "0.57.0",
"zod": "^3.22.4"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/plugin-js-packages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-pushup/js-packages-plugin",
"version": "0.56.0",
"version": "0.57.0",
"description": "Code PushUp plugin for JavaScript packages 🛡️",
"license": "MIT",
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/plugin-js-packages#readme",
Expand Down Expand Up @@ -37,8 +37,8 @@
},
"type": "module",
"dependencies": {
"@code-pushup/models": "0.56.0",
"@code-pushup/utils": "0.56.0",
"@code-pushup/models": "0.57.0",
"@code-pushup/utils": "0.57.0",
"build-md": "^0.4.1",
"semver": "^7.6.0",
"zod": "^3.22.4"
Expand Down
6 changes: 3 additions & 3 deletions packages/plugin-lighthouse/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-pushup/lighthouse-plugin",
"version": "0.56.0",
"version": "0.57.0",
"license": "MIT",
"description": "Code PushUp plugin for measuring web performance and quality with Lighthouse 🔥",
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/plugin-lighthouse#readme",
Expand Down Expand Up @@ -36,8 +36,8 @@
},
"type": "module",
"dependencies": {
"@code-pushup/models": "0.56.0",
"@code-pushup/utils": "0.56.0",
"@code-pushup/models": "0.57.0",
"@code-pushup/utils": "0.57.0",
"ansis": "^3.3.0",
"chrome-launcher": "^1.1.1",
"lighthouse": "^12.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-pushup/utils",
"version": "0.56.0",
"version": "0.57.0",
"description": "Low-level utilities (helper functions, etc.) used by Code PushUp CLI",
"license": "MIT",
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/utils#readme",
Expand All @@ -27,7 +27,7 @@
"node": ">=17.0.0"
},
"dependencies": {
"@code-pushup/models": "0.56.0",
"@code-pushup/models": "0.57.0",
"@isaacs/cliui": "^8.0.2",
"@poppinss/cliui": "^6.4.0",
"ansis": "^3.3.0",
Expand Down

0 comments on commit 2a05a16

Please sign in to comment.