Skip to content

Commit f0265fd

Browse files
committed
release: 0.55.0 [skip ci]
1 parent e735bf4 commit f0265fd

File tree

12 files changed

+55
-31
lines changed

12 files changed

+55
-31
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 0.55.0 (2024-11-25)
2+
3+
### 🚀 Features
4+
5+
- **ci:** accept custom output directory, with project name interpolation ([db3fcced](https://github.com/code-pushup/cli/commit/db3fcced))
6+
- **plugin-eslint:** drop inline object support for eslintrc (incompatible with flat config) ([ead1c0ad](https://github.com/code-pushup/cli/commit/ead1c0ad))
7+
- **plugin-eslint:** implement rules loader for flat config ([e9edf0c0](https://github.com/code-pushup/cli/commit/e9edf0c0))
8+
- **plugin-eslint:** detect version of config format ([a618bf29](https://github.com/code-pushup/cli/commit/a618bf29))
9+
- **plugin-eslint:** search for flat config files in parent directories ([3e45ac07](https://github.com/code-pushup/cli/commit/3e45ac07))
10+
- **plugin-eslint:** move eslint to peer deps, add v9 to supported range ([953e3c76](https://github.com/code-pushup/cli/commit/953e3c76))
11+
- **utils:** implement and test helper function to find nearest file ([2acdb2d8](https://github.com/code-pushup/cli/commit/2acdb2d8))
12+
13+
### 🩹 Fixes
14+
15+
- **plugin-eslint:** remove unsupported parameter for ESLint 9+ ([4b889d66](https://github.com/code-pushup/cli/commit/4b889d66))
16+
- **plugin-eslint:** use LegacyESLint if ESLINT_USE_FLAT_CONFIG=false in v9 ([e9352808](https://github.com/code-pushup/cli/commit/e9352808))
17+
- **plugin-eslint:** ensure file url scheme needed for dynamic imports on Windows ([91c7678c](https://github.com/code-pushup/cli/commit/91c7678c))
18+
- **plugin-js-packages:** add ignoreExitCode option for yarn v2 package manager ([#878](https://github.com/code-pushup/cli/pull/878))
19+
20+
### ❤️ Thank You
21+
22+
- Edouard Maleix
23+
- Matěj Chalk
24+
125
## 0.54.0 (2024-11-08)
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.54.0",
3+
"version": "0.55.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",
@@ -28,8 +28,8 @@
2828
"main": "./index.js",
2929
"types": "./src/index.d.ts",
3030
"dependencies": {
31-
"@code-pushup/models": "0.54.0",
32-
"@code-pushup/utils": "0.54.0",
31+
"@code-pushup/models": "0.55.0",
32+
"@code-pushup/utils": "0.55.0",
3333
"glob": "^10.4.5",
3434
"simple-git": "^3.20.0",
3535
"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.54.0",
3+
"version": "0.55.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",
@@ -44,9 +44,9 @@
4444
"code-pushup": "index.js"
4545
},
4646
"dependencies": {
47-
"@code-pushup/models": "0.54.0",
48-
"@code-pushup/core": "0.54.0",
49-
"@code-pushup/utils": "0.54.0",
47+
"@code-pushup/models": "0.55.0",
48+
"@code-pushup/core": "0.55.0",
49+
"@code-pushup/utils": "0.55.0",
5050
"yargs": "^17.7.2",
5151
"ansis": "^3.3.0",
5252
"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.54.0",
3+
"version": "0.55.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",
@@ -41,8 +41,8 @@
4141
"main": "./index.js",
4242
"types": "./src/index.d.ts",
4343
"dependencies": {
44-
"@code-pushup/models": "0.54.0",
45-
"@code-pushup/utils": "0.54.0",
44+
"@code-pushup/models": "0.55.0",
45+
"@code-pushup/utils": "0.55.0",
4646
"ansis": "^3.3.0"
4747
},
4848
"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.54.0",
3+
"version": "0.55.0",
44
"license": "MIT",
55
"bin": "index.js",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/create-cli#readme",
@@ -28,7 +28,7 @@
2828
"main": "./index.js",
2929
"types": "./src/index.d.ts",
3030
"dependencies": {
31-
"@code-pushup/nx-plugin": "0.54.0",
32-
"@code-pushup/utils": "0.54.0"
31+
"@code-pushup/nx-plugin": "0.55.0",
32+
"@code-pushup/utils": "0.55.0"
3333
}
3434
}

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.54.0",
3+
"version": "0.55.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.54.0",
3+
"version": "0.55.0",
44
"license": "MIT",
55
"description": "Nx plugin to integrate the Code PushUp CLI into your workspace 🛠️",
66
"publishConfig": {
@@ -35,8 +35,8 @@
3535
"@nx/devkit": "^17.1.3",
3636
"tslib": "^2.6.2",
3737
"nx": "^17.1.3",
38-
"@code-pushup/models": "0.54.0",
38+
"@code-pushup/models": "0.55.0",
3939
"zod": "^3.22.4",
40-
"@code-pushup/utils": "0.54.0"
40+
"@code-pushup/utils": "0.55.0"
4141
}
4242
}

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.54.0",
3+
"version": "0.55.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",
@@ -36,8 +36,8 @@
3636
"main": "./index.js",
3737
"types": "./src/index.d.ts",
3838
"dependencies": {
39-
"@code-pushup/models": "0.54.0",
40-
"@code-pushup/utils": "0.54.0",
39+
"@code-pushup/models": "0.55.0",
40+
"@code-pushup/utils": "0.55.0",
4141
"ansis": "^3.3.0",
4242
"parse-lcov": "^1.0.4",
4343
"zod": "^3.22.4"

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.54.0",
3+
"version": "0.55.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",
@@ -40,8 +40,8 @@
4040
"main": "./index.js",
4141
"types": "./src/index.d.ts",
4242
"dependencies": {
43-
"@code-pushup/utils": "0.54.0",
44-
"@code-pushup/models": "0.54.0",
43+
"@code-pushup/utils": "0.55.0",
44+
"@code-pushup/models": "0.55.0",
4545
"zod": "^3.22.4"
4646
},
4747
"peerDependencies": {

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.54.0",
3+
"version": "0.55.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",
@@ -39,8 +39,8 @@
3939
"main": "./index.js",
4040
"types": "./src/index.d.ts",
4141
"dependencies": {
42-
"@code-pushup/models": "0.54.0",
43-
"@code-pushup/utils": "0.54.0",
42+
"@code-pushup/models": "0.55.0",
43+
"@code-pushup/utils": "0.55.0",
4444
"build-md": "^0.4.1",
4545
"semver": "^7.6.0",
4646
"zod": "^3.22.4"

0 commit comments

Comments
 (0)