Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.

Commit 02170bb

Browse files
authored
Merge pull request #60 from mattyatea/release/v1.2.5
🚀 Release v1.2.5
2 parents 5a89400 + 3826b39 commit 02170bb

File tree

3 files changed

+45
-83
lines changed

3 files changed

+45
-83
lines changed

CHANGELOG_TEMP.md

Lines changed: 3 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,14 @@
1-
# Release v1.2.4
1+
# Release v1.2.5
22

33
## Changes
44

5-
- Fix: GitHub Actions (998ae1d)
6-
- Refactor: DBを直接参照しているような箇所をなくす (4103118)
7-
- Fix: testが通らない問題を修正 (a03288d)
8-
- Fix: Format ReportService constructor to single line (a47cb9e)
9-
- Fix: Remove duplicate else block in CLI gitignore.ts (4bfcbab)
10-
- Fix: Resolve linting issues and add Biome to CLI (c56e6f8)
11-
- Fix: Resolve Biome configuration and linting issues (52056c5)
12-
- Fix: BiomeのConfigMiss (a95bc09)
13-
- Feat: Implement report functionality for rules (ad58428)
14-
- Fix: Biomeのfixを適用 (7ae7818)
15-
- Fix: 壊れているsymlinkを削除 (d794e27)
16-
- Update pnpm lockfile (60d42ba)
17-
- Chore: Apply Biome formatting to CLI files and update lockfile (4d09a55)
18-
- Fix: Exclude CSS files from lint by using glob patterns in scripts (4249243)
19-
- Fix: Exclude CSS files from Biome linting (776ba7b)
20-
- Refactor: Unify Biome configuration to root .biome.json (a6270ec)
21-
- Refactor: Improve UserProfile type structure and fix schema validation (07641a9)
22-
- 命名規則が揃っていないのを修正 (0e40190)
23-
- Feat: Create UserService to centralize user data fetching operations (10d6aeb)
24-
- Refactor: Convert UserPackingService to pure utility and move to packing folder (850e4cd)
25-
- Feat: Implement unified UserPackingService for consistent user data formatting (4d7c126)
26-
- Feat: Implement role-based admin and moderator system (376681b)
27-
- 色々修正 (270b6c1)
28-
- Fix Cloudflare deploy paths (79618b1)
29-
- Enhance: Auto-update version in cross-platform build script (156a467)
30-
- Fix: Update CLI version to 1.2.3 and fix install script (82c59de)
31-
- Refactor (c8ec53a)
32-
- Enhance: Add consistent null safety checks across template engine (3336e2e)
33-
- Enhance: Improve type safety for template options (ed9aa40)
34-
- Fix: Resolve template replacement security issues and version switching bugs (04c8dc3)
35-
- Fix: Address additional PR review feedback (5f8eb4a)
36-
- Fix: Address PR review feedback - security and code quality improvements (e32710a)
37-
- Feat: Implement template engine for dynamic rule variables (c8e1ef3)
38-
- Fix: Add missing environment variables to staging configuration (9231ae4)
39-
- Enhance: Add comprehensive OAuth and pagination i18n keys (43048fe)
40-
- Fix: Add missing OAuth translation keys (a043c0d)
41-
- Fix: Remove unused imports and parameters in disabled auth endpoints (4f82150)
42-
- Emailログイン停止に伴って、testもskipするように (ec07412)
43-
- 一旦Emailログインを停止 (bdd178a)
5+
- fix: align cli package json with biome formatting (c18f8c6)
446

457
## Release Notes
468

479
This release includes:
4810
- Server application updates
49-
- CLI tool updates
11+
5012
- Bug fixes and improvements
5113
- Performance optimizations
5214

cli/package.json

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
11
{
2-
"name": "cli",
3-
"version": "1.2.4",
4-
"description": "AI coding rules management CLI tool",
5-
"main": "dist/index.js",
6-
"bin": {
7-
"zxcv": "./dist/index.js"
8-
},
9-
"type": "module",
10-
"scripts": {
11-
"dev": "bun run src/index.ts",
12-
"build": "bun build src/index.ts --compile --outfile dist/zxcv",
13-
"build:cross": "bun run scripts/build-cross-platform.ts",
14-
"test": "bun test",
15-
"test:watch": "bun test --watch",
16-
"lint": "biome check --write",
17-
"format": "biome format --write",
18-
"typecheck": "tsc --noEmit",
19-
"check": "biome check"
20-
},
21-
"keywords": [
22-
"cli",
23-
"ai",
24-
"rules",
25-
"management"
26-
],
27-
"author": "",
28-
"license": "MIT",
29-
"dependencies": {
30-
"@types/inquirer": "^9.0.9",
31-
"axios": "^1.11.0",
32-
"chalk": "^5.4.1",
33-
"commander": "^12.1.0",
34-
"inquirer": "^12.9.4",
35-
"zod": "^3.25.76"
36-
},
37-
"devDependencies": {
38-
"@biomejs/biome": "2.1.2",
39-
"@types/bun": "latest",
40-
"@types/node": "^20.19.9",
41-
"typescript": "^5.8.3"
42-
}
2+
"name": "cli",
3+
"version": "1.2.4",
4+
"description": "AI coding rules management CLI tool",
5+
"main": "dist/index.js",
6+
"bin": {
7+
"zxcv": "./dist/index.js"
8+
},
9+
"type": "module",
10+
"scripts": {
11+
"dev": "bun run src/index.ts",
12+
"build": "bun build src/index.ts --compile --outfile dist/zxcv",
13+
"build:cross": "bun run scripts/build-cross-platform.ts",
14+
"test": "bun test",
15+
"test:watch": "bun test --watch",
16+
"lint": "biome check --write",
17+
"format": "biome format --write",
18+
"typecheck": "tsc --noEmit",
19+
"check": "biome check"
20+
},
21+
"keywords": [
22+
"cli",
23+
"ai",
24+
"rules",
25+
"management"
26+
],
27+
"author": "",
28+
"license": "MIT",
29+
"dependencies": {
30+
"@types/inquirer": "^9.0.9",
31+
"axios": "^1.11.0",
32+
"chalk": "^5.4.1",
33+
"commander": "^12.1.0",
34+
"inquirer": "^12.9.4",
35+
"zod": "^3.25.76"
36+
},
37+
"devDependencies": {
38+
"@biomejs/biome": "2.1.2",
39+
"@types/bun": "latest",
40+
"@types/node": "^20.19.9",
41+
"typescript": "^5.8.3"
42+
}
4343
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
"biome format --write"
3636
]
3737
},
38-
"version": "1.2.4"
38+
"version": "1.2.5"
3939
}

0 commit comments

Comments
 (0)