Skip to content

Commit 1984842

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/jiti-module-loading
2 parents b899ca9 + 4c80af5 commit 1984842

File tree

19 files changed

+216
-217
lines changed

19 files changed

+216
-217
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.113.1 (2026-02-23)
2+
3+
This was a version bump only, there were no code changes.
4+
15
## 0.113.0 (2026-02-04)
26

37
### 🚀 Features

package-lock.json

Lines changed: 9 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"verdaccio": "6.1.6",
124124
"vite": "7.3.0",
125125
"vitest": "1.3.1",
126-
"zod2md": "^0.2.4"
126+
"zod2md": "^0.3.2"
127127
},
128128
"optionalDependencies": {
129129
"@esbuild/darwin-arm64": "^0.25.9",

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.113.0",
3+
"version": "0.113.1",
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,9 +26,9 @@
2626
},
2727
"type": "module",
2828
"dependencies": {
29-
"@code-pushup/models": "0.113.0",
29+
"@code-pushup/models": "0.113.1",
3030
"@code-pushup/portal-client": "^0.17.0",
31-
"@code-pushup/utils": "0.113.0",
31+
"@code-pushup/utils": "0.113.1",
3232
"ansis": "^3.3.2",
3333
"glob": "^11.0.1",
3434
"simple-git": "^3.20.0",

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.113.0",
3+
"version": "0.113.1",
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.113.0",
49-
"@code-pushup/core": "0.113.0",
50-
"@code-pushup/utils": "0.113.0",
48+
"@code-pushup/models": "0.113.1",
49+
"@code-pushup/core": "0.113.1",
50+
"@code-pushup/utils": "0.113.1",
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.113.0",
3+
"version": "0.113.1",
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.113.0",
43-
"@code-pushup/utils": "0.113.0",
42+
"@code-pushup/models": "0.113.1",
43+
"@code-pushup/utils": "0.113.1",
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.113.0",
3+
"version": "0.113.1",
44
"license": "MIT",
55
"bin": "index.js",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/create-cli#readme",
@@ -26,8 +26,8 @@
2626
},
2727
"type": "module",
2828
"dependencies": {
29-
"@code-pushup/nx-plugin": "0.113.0",
30-
"@code-pushup/utils": "0.113.0"
29+
"@code-pushup/nx-plugin": "0.113.1",
30+
"@code-pushup/utils": "0.113.1"
3131
},
3232
"files": [
3333
"src",

packages/models/docs/models-reference.md

Lines changed: 160 additions & 166 deletions
Large diffs are not rendered by default.

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.113.0",
3+
"version": "0.113.1",
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/models/src/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ export {
33
type TableCellValue,
44
} from './lib/implementation/schemas.js';
55
export {
6+
issueSourceSchema,
67
sourceFileLocationSchema,
78
sourceUrlLocationSchema,
8-
issueSourceSchema,
99
type IssueSource,
1010
type SourceFileLocation,
1111
type SourceUrlLocation,
@@ -59,6 +59,7 @@ export {
5959
DEFAULT_PERSIST_OUTPUT_DIR,
6060
DEFAULT_PERSIST_SKIP_REPORT,
6161
} from './lib/implementation/constants.js';
62+
export { convertAsyncZodFunctionToSchema } from './lib/implementation/function.js';
6263
export {
6364
MAX_DESCRIPTION_LENGTH,
6465
MAX_ISSUE_MESSAGE_LENGTH,
@@ -148,7 +149,6 @@ export {
148149
export {
149150
tableAlignmentSchema,
150151
tableColumnObjectSchema,
151-
tableColumnPrimitiveSchema,
152152
tableRowObjectSchema,
153153
tableRowPrimitiveSchema,
154154
tableSchema,
@@ -174,4 +174,3 @@ export {
174174
type Tree,
175175
} from './lib/tree.js';
176176
export { uploadConfigSchema, type UploadConfig } from './lib/upload-config.js';
177-
export { convertAsyncZodFunctionToSchema } from './lib/implementation/function.js';

0 commit comments

Comments
 (0)