diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 93e6af9..d237c66 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "packages/core": "1.6.0", - "packages/template": "1.6.0" + "packages/core": "1.7.0", + "packages/template": "1.7.0" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index e79d451..d3de96b 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,52 @@ # 变更日志 +## [1.7.0](https://github.com/CandriaJS/karin-plugin-git/compare/core-v1.6.0...core-v1.7.0) (2026-05-06) + + +### ✨ 新功能 + +* **core:** 新增 Release 订阅功能并重构仓库管理 ([7dc6d05](https://github.com/CandriaJS/karin-plugin-git/commit/7dc6d050cfaa794a31f3c706ae5c611486ea80b0)) +* **core:** 添加仓库绑定功能并重构数据库结构 ([84cbfa9](https://github.com/CandriaJS/karin-plugin-git/commit/84cbfa9dcd7fdc6bc36371b2765fddd23e3ad367)) +* **models:** 实现session和bind数据模型 ([84cbfa9](https://github.com/CandriaJS/karin-plugin-git/commit/84cbfa9dcd7fdc6bc36371b2765fddd23e3ad367)) +* **web:** 添加平台推送仓库列表配置界面 ([c720bf1](https://github.com/CandriaJS/karin-plugin-git/commit/c720bf169ad727f39484e1e4e3b68c7500e2582e)) + + +### 🐛 错误修复 + +* **commit:** 优化提交信息查询逻辑 ([84cbfa9](https://github.com/CandriaJS/karin-plugin-git/commit/84cbfa9dcd7fdc6bc36371b2765fddd23e3ad367)) +* 修复ci ([7aff0cf](https://github.com/CandriaJS/karin-plugin-git/commit/7aff0cf7420f5f2cf097e5a1b4370e397dd657ac)) +* 修复ci发版 ([ef880b8](https://github.com/CandriaJS/karin-plugin-git/commit/ef880b88bdd5cba704adfdd3096a98e8b8c31e74)) +* 修复图标路径 ([e12ef68](https://github.com/CandriaJS/karin-plugin-git/commit/e12ef68da2e8d2ecc9c0b3405d00675ad0565f7c)) +* 修正ci ([b8f8dfe](https://github.com/CandriaJS/karin-plugin-git/commit/b8f8dfe6395f28052859bd9b5cdcbac0086eedf3)) + + +### 🎨 代码样式 + +* 优化模板 ([68b963c](https://github.com/CandriaJS/karin-plugin-git/commit/68b963c862c6c3402147be0b307089dfae0eed4a)) + + +### 🔧 其他更新 + +* **core:** 更新 nipaw 依赖版本 ([6575fc9](https://github.com/CandriaJS/karin-plugin-git/commit/6575fc9832f56419300be40c48f704159c2f293f)) +* release main ([6e97261](https://github.com/CandriaJS/karin-plugin-git/commit/6e9726148136390833dcd1309d807aad374aa5ad)) +* release main ([aa229e2](https://github.com/CandriaJS/karin-plugin-git/commit/aa229e29ca9e58630ffaadf241031fd770e6b521)) +* release main ([dace4f9](https://github.com/CandriaJS/karin-plugin-git/commit/dace4f92809005877ee404ce985ad0a7499b6cd8)) +* 更新help组件 ([a8fa23a](https://github.com/CandriaJS/karin-plugin-git/commit/a8fa23ac44c1ac6293195999d3d4c80ba382c0d3)) + + +### ♻️ 代码重构 + +* **config:** 重构配置文件结构 ([84cbfa9](https://github.com/CandriaJS/karin-plugin-git/commit/84cbfa9dcd7fdc6bc36371b2765fddd23e3ad367)) +* **core:** 重构核心实现 ([#14](https://github.com/CandriaJS/karin-plugin-git/issues/14)) ([fa15ee1](https://github.com/CandriaJS/karin-plugin-git/commit/fa15ee174127db957b7b18584daf6ac157cf370a)) +* **template:** 重构模板结构并新增 Release 组件 ([7dc6d05](https://github.com/CandriaJS/karin-plugin-git/commit/7dc6d050cfaa794a31f3c706ae5c611486ea80b0)) + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @candriajs/template bumped to 1.7.0 + ## [1.6.0](https://github.com/CandriaJS/karin-plugin-git/compare/core-v1.5.0...core-v1.6.0) (2026-05-06) diff --git a/packages/core/package.json b/packages/core/package.json index afd61b4..2f13f19 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@candriajs/karin-plugin-git", - "version": "1.6.0", + "version": "1.7.0", "description": "一个karin的git平台仓库订阅推送", "keywords": [ "karin-plugin", diff --git a/packages/template/CHANGELOG.md b/packages/template/CHANGELOG.md index d284d9d..60db7bd 100644 --- a/packages/template/CHANGELOG.md +++ b/packages/template/CHANGELOG.md @@ -1,5 +1,40 @@ # Changelog +## [1.7.0](https://github.com/CandriaJS/karin-plugin-git/compare/template-v1.6.0...template-v1.7.0) (2026-05-06) + + +### ✨ 新功能 + +* **core:** 新增 Release 订阅功能并重构仓库管理 ([7dc6d05](https://github.com/CandriaJS/karin-plugin-git/commit/7dc6d050cfaa794a31f3c706ae5c611486ea80b0)) +* **core:** 添加仓库绑定功能并重构数据库结构 ([84cbfa9](https://github.com/CandriaJS/karin-plugin-git/commit/84cbfa9dcd7fdc6bc36371b2765fddd23e3ad367)) +* **models:** 实现session和bind数据模型 ([84cbfa9](https://github.com/CandriaJS/karin-plugin-git/commit/84cbfa9dcd7fdc6bc36371b2765fddd23e3ad367)) + + +### 🐛 错误修复 + +* **commit:** 优化提交信息查询逻辑 ([84cbfa9](https://github.com/CandriaJS/karin-plugin-git/commit/84cbfa9dcd7fdc6bc36371b2765fddd23e3ad367)) + + +### 🎨 代码样式 + +* 优化模板 ([68b963c](https://github.com/CandriaJS/karin-plugin-git/commit/68b963c862c6c3402147be0b307089dfae0eed4a)) + + +### 🔧 其他更新 + +* **core:** 更新 nipaw 依赖版本 ([6575fc9](https://github.com/CandriaJS/karin-plugin-git/commit/6575fc9832f56419300be40c48f704159c2f293f)) +* release main ([6e97261](https://github.com/CandriaJS/karin-plugin-git/commit/6e9726148136390833dcd1309d807aad374aa5ad)) +* release main ([aa229e2](https://github.com/CandriaJS/karin-plugin-git/commit/aa229e29ca9e58630ffaadf241031fd770e6b521)) +* release main ([dace4f9](https://github.com/CandriaJS/karin-plugin-git/commit/dace4f92809005877ee404ce985ad0a7499b6cd8)) +* 更新help组件 ([a8fa23a](https://github.com/CandriaJS/karin-plugin-git/commit/a8fa23ac44c1ac6293195999d3d4c80ba382c0d3)) + + +### ♻️ 代码重构 + +* **config:** 重构配置文件结构 ([84cbfa9](https://github.com/CandriaJS/karin-plugin-git/commit/84cbfa9dcd7fdc6bc36371b2765fddd23e3ad367)) +* **core:** 重构核心实现 ([#14](https://github.com/CandriaJS/karin-plugin-git/issues/14)) ([fa15ee1](https://github.com/CandriaJS/karin-plugin-git/commit/fa15ee174127db957b7b18584daf6ac157cf370a)) +* **template:** 重构模板结构并新增 Release 组件 ([7dc6d05](https://github.com/CandriaJS/karin-plugin-git/commit/7dc6d050cfaa794a31f3c706ae5c611486ea80b0)) + ## [1.6.0](https://github.com/CandriaJS/karin-plugin-git/compare/template-v1.5.0...template-v1.6.0) (2026-05-06) diff --git a/packages/template/package.json b/packages/template/package.json index c9fb57e..3fb6db3 100644 --- a/packages/template/package.json +++ b/packages/template/package.json @@ -1,7 +1,7 @@ { "name": "@candriajs/template", "private": true, - "version": "1.6.0", + "version": "1.7.0", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts",