Skip to content

Commit

Permalink
release: 0.55.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
matejchalk committed Nov 25, 2024
1 parent e735bf4 commit f0265fd
Show file tree
Hide file tree
Showing 12 changed files with 55 additions and 31 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## 0.55.0 (2024-11-25)

### 🚀 Features

- **ci:** accept custom output directory, with project name interpolation ([db3fcced](https://github.com/code-pushup/cli/commit/db3fcced))
- **plugin-eslint:** drop inline object support for eslintrc (incompatible with flat config) ([ead1c0ad](https://github.com/code-pushup/cli/commit/ead1c0ad))
- **plugin-eslint:** implement rules loader for flat config ([e9edf0c0](https://github.com/code-pushup/cli/commit/e9edf0c0))
- **plugin-eslint:** detect version of config format ([a618bf29](https://github.com/code-pushup/cli/commit/a618bf29))
- **plugin-eslint:** search for flat config files in parent directories ([3e45ac07](https://github.com/code-pushup/cli/commit/3e45ac07))
- **plugin-eslint:** move eslint to peer deps, add v9 to supported range ([953e3c76](https://github.com/code-pushup/cli/commit/953e3c76))
- **utils:** implement and test helper function to find nearest file ([2acdb2d8](https://github.com/code-pushup/cli/commit/2acdb2d8))

### 🩹 Fixes

- **plugin-eslint:** remove unsupported parameter for ESLint 9+ ([4b889d66](https://github.com/code-pushup/cli/commit/4b889d66))
- **plugin-eslint:** use LegacyESLint if ESLINT_USE_FLAT_CONFIG=false in v9 ([e9352808](https://github.com/code-pushup/cli/commit/e9352808))
- **plugin-eslint:** ensure file url scheme needed for dynamic imports on Windows ([91c7678c](https://github.com/code-pushup/cli/commit/91c7678c))
- **plugin-js-packages:** add ignoreExitCode option for yarn v2 package manager ([#878](https://github.com/code-pushup/cli/pull/878))

### ❤️ Thank You

- Edouard Maleix
- Matěj Chalk

## 0.54.0 (2024-11-08)

### 🚀 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.54.0",
"version": "0.55.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 Down Expand Up @@ -28,8 +28,8 @@
"main": "./index.js",
"types": "./src/index.d.ts",
"dependencies": {
"@code-pushup/models": "0.54.0",
"@code-pushup/utils": "0.54.0",
"@code-pushup/models": "0.55.0",
"@code-pushup/utils": "0.55.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.54.0",
"version": "0.55.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 @@ -44,9 +44,9 @@
"code-pushup": "index.js"
},
"dependencies": {
"@code-pushup/models": "0.54.0",
"@code-pushup/core": "0.54.0",
"@code-pushup/utils": "0.54.0",
"@code-pushup/models": "0.55.0",
"@code-pushup/core": "0.55.0",
"@code-pushup/utils": "0.55.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.54.0",
"version": "0.55.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 @@ -41,8 +41,8 @@
"main": "./index.js",
"types": "./src/index.d.ts",
"dependencies": {
"@code-pushup/models": "0.54.0",
"@code-pushup/utils": "0.54.0",
"@code-pushup/models": "0.55.0",
"@code-pushup/utils": "0.55.0",
"ansis": "^3.3.0"
},
"peerDependencies": {
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.54.0",
"version": "0.55.0",
"license": "MIT",
"bin": "index.js",
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/create-cli#readme",
Expand Down Expand Up @@ -28,7 +28,7 @@
"main": "./index.js",
"types": "./src/index.d.ts",
"dependencies": {
"@code-pushup/nx-plugin": "0.54.0",
"@code-pushup/utils": "0.54.0"
"@code-pushup/nx-plugin": "0.55.0",
"@code-pushup/utils": "0.55.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.54.0",
"version": "0.55.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.54.0",
"version": "0.55.0",
"license": "MIT",
"description": "Nx plugin to integrate the Code PushUp CLI into your workspace 🛠️",
"publishConfig": {
Expand Down Expand Up @@ -35,8 +35,8 @@
"@nx/devkit": "^17.1.3",
"tslib": "^2.6.2",
"nx": "^17.1.3",
"@code-pushup/models": "0.54.0",
"@code-pushup/models": "0.55.0",
"zod": "^3.22.4",
"@code-pushup/utils": "0.54.0"
"@code-pushup/utils": "0.55.0"
}
}
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.54.0",
"version": "0.55.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 @@ -36,8 +36,8 @@
"main": "./index.js",
"types": "./src/index.d.ts",
"dependencies": {
"@code-pushup/models": "0.54.0",
"@code-pushup/utils": "0.54.0",
"@code-pushup/models": "0.55.0",
"@code-pushup/utils": "0.55.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.54.0",
"version": "0.55.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 @@ -40,8 +40,8 @@
"main": "./index.js",
"types": "./src/index.d.ts",
"dependencies": {
"@code-pushup/utils": "0.54.0",
"@code-pushup/models": "0.54.0",
"@code-pushup/utils": "0.55.0",
"@code-pushup/models": "0.55.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.54.0",
"version": "0.55.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 @@ -39,8 +39,8 @@
"main": "./index.js",
"types": "./src/index.d.ts",
"dependencies": {
"@code-pushup/models": "0.54.0",
"@code-pushup/utils": "0.54.0",
"@code-pushup/models": "0.55.0",
"@code-pushup/utils": "0.55.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.54.0",
"version": "0.55.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 @@ -38,8 +38,8 @@
"main": "./index.js",
"types": "./src/index.d.ts",
"dependencies": {
"@code-pushup/models": "0.54.0",
"@code-pushup/utils": "0.54.0",
"@code-pushup/models": "0.55.0",
"@code-pushup/utils": "0.55.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.54.0",
"version": "0.55.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 @@ -26,7 +26,7 @@
"main": "./index.js",
"types": "./src/index.d.ts",
"dependencies": {
"@code-pushup/models": "0.54.0",
"@code-pushup/models": "0.55.0",
"@isaacs/cliui": "^8.0.2",
"@poppinss/cliui": "^6.4.0",
"ansis": "^3.3.0",
Expand Down

0 comments on commit f0265fd

Please sign in to comment.