diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 306ed6c25..93e4eef6f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,7 +25,7 @@ Koishi 是一个相当大的仓库,包含了各种各样的插件和适配器 非常欢迎。不过目前 Koishi 的适配器和数据库的实现并不在官方仓库中,你或许应该去这里提交 Pull Request: - 适配器:[satorijs/satori](https://github.com/satorijs/satori) -- 数据库:[shigma/minato](https://github.com/shigma/minato) +- 数据库:[cordiverse/minato](https://github.com/cordiverse/minato) 另外,适配器和数据库实现非常底层的东西,建议你在写之前熟悉一下 Koishi 的基本架构和文档。如果有什么疑问,也可以在 issues 或者官方群中提出。 diff --git a/package.json b/package.json index 17e67b00a..98635b2f8 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,7 @@ "shx": "^0.3.4", "source-map-support": "^0.5.21", "typescript": "^5.5.3", - "yakumo": "^1.0.0-beta.16", + "yakumo": "^1.0.0-beta.18", "yakumo-esbuild": "^1.0.0-beta.6", "yakumo-mocha": "^1.0.0-beta.2", "yakumo-tsc": "^1.0.0-beta.4", diff --git a/packages/core/package.json b/packages/core/package.json index 5d52cf831..870c47b0c 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/core", "description": "Core Features for Koishi", - "version": "4.17.11", + "version": "4.17.12", "main": "lib/index.cjs", "module": "lib/index.mjs", "typings": "lib/index.d.ts", @@ -26,7 +26,7 @@ "koishi" ], "devDependencies": { - "@minatojs/driver-memory": "^3.4.0", + "@minatojs/driver-memory": "^3.5.0", "@types/chai": "^4.3.16", "@types/chai-as-promised": "^7.1.8", "chai": "^5.1.1", @@ -36,10 +36,10 @@ "dependencies": { "@koishijs/i18n-utils": "^1.0.1", "@koishijs/utils": "^7.2.1", - "@satorijs/core": "^4.2.0", - "cordis": "^3.17.8", + "@satorijs/core": "^4.2.1", + "cordis": "^3.18.0", "cosmokit": "^1.6.2", "fastest-levenshtein": "^1.0.16", - "minato": "^3.4.3" + "minato": "^3.5.0" } } diff --git a/packages/koishi/package.json b/packages/koishi/package.json index 5f9413ede..2d34ab952 100644 --- a/packages/koishi/package.json +++ b/packages/koishi/package.json @@ -1,7 +1,7 @@ { "name": "koishi", "description": "Cross-Platform Chatbot Framework Made with Love", - "version": "4.17.11", + "version": "4.17.12", "main": "lib/index.cjs", "module": "lib/index.mjs", "types": "lib/index.d.ts", @@ -45,13 +45,13 @@ "framework" ], "dependencies": { - "@koishijs/core": "4.17.11", - "@koishijs/loader": "4.5.11", + "@koishijs/core": "4.17.12", + "@koishijs/loader": "4.5.12", "@koishijs/plugin-http": "^0.6.1", "@koishijs/plugin-proxy-agent": "^0.3.3", "@koishijs/plugin-server": "^3.2.3", "@koishijs/utils": "^7.2.1", - "@satorijs/core": "^4.2.0", + "@satorijs/core": "^4.2.1", "cac": "^6.7.14", "kleur": "^4.1.5" }, diff --git a/packages/loader/package.json b/packages/loader/package.json index 4e9f2d787..ec56dc64f 100644 --- a/packages/loader/package.json +++ b/packages/loader/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/loader", "description": "Config Loader for Koishi", - "version": "4.5.11", + "version": "4.5.12", "main": "lib/index.js", "module": "lib/index.mjs", "types": "lib/index.d.ts", @@ -45,10 +45,10 @@ "config" ], "peerDependencies": { - "@koishijs/core": "4.17.11" + "@koishijs/core": "4.17.12" }, "devDependencies": { - "@koishijs/core": "4.17.11", + "@koishijs/core": "4.17.12", "@types/js-yaml": "^4.0.9" }, "dependencies": { diff --git a/plugins/common/bind/package.json b/plugins/common/bind/package.json index 4c98b8697..ffceff185 100644 --- a/plugins/common/bind/package.json +++ b/plugins/common/bind/package.json @@ -46,12 +46,12 @@ ] }, "peerDependencies": { - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "devDependencies": { "@koishijs/plugin-mock": "^2.6.6", - "@minatojs/driver-memory": "^3.4.0", - "koishi": "^4.17.11", - "minato": "^3.4.3" + "@minatojs/driver-memory": "^3.5.0", + "koishi": "^4.17.12", + "minato": "^3.5.0" } } diff --git a/plugins/common/broadcast/package.json b/plugins/common/broadcast/package.json index 6601fe61e..88c328ffb 100644 --- a/plugins/common/broadcast/package.json +++ b/plugins/common/broadcast/package.json @@ -45,12 +45,12 @@ ] }, "peerDependencies": { - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "devDependencies": { "@koishijs/plugin-mock": "^2.6.6", - "@minatojs/driver-memory": "^3.4.0", - "koishi": "^4.17.11", - "minato": "^3.4.3" + "@minatojs/driver-memory": "^3.5.0", + "koishi": "^4.17.12", + "minato": "^3.5.0" } } diff --git a/plugins/common/callme/package.json b/plugins/common/callme/package.json index 25f84dab4..843f44890 100644 --- a/plugins/common/callme/package.json +++ b/plugins/common/callme/package.json @@ -45,10 +45,10 @@ ] }, "peerDependencies": { - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "devDependencies": { "@koishijs/plugin-mock": "^2.6.6", - "koishi": "^4.17.11" + "koishi": "^4.17.12" } } diff --git a/plugins/common/echo/package.json b/plugins/common/echo/package.json index 7f37b3c7b..139d5fdcc 100644 --- a/plugins/common/echo/package.json +++ b/plugins/common/echo/package.json @@ -41,10 +41,10 @@ ] }, "peerDependencies": { - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "devDependencies": { "@koishijs/plugin-mock": "^2.6.6", - "koishi": "^4.17.11" + "koishi": "^4.17.12" } } diff --git a/plugins/common/help/package.json b/plugins/common/help/package.json index 086c2dce8..e4a1e0d95 100644 --- a/plugins/common/help/package.json +++ b/plugins/common/help/package.json @@ -45,12 +45,12 @@ ] }, "peerDependencies": { - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "devDependencies": { "@koishijs/plugin-mock": "^2.6.6", - "@minatojs/driver-memory": "^3.4.0", - "koishi": "^4.17.11", - "minato": "^3.4.3" + "@minatojs/driver-memory": "^3.5.0", + "koishi": "^4.17.12", + "minato": "^3.5.0" } } diff --git a/plugins/common/inspect/package.json b/plugins/common/inspect/package.json index ee7f41522..06cc7b2fc 100644 --- a/plugins/common/inspect/package.json +++ b/plugins/common/inspect/package.json @@ -47,10 +47,10 @@ ] }, "peerDependencies": { - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "devDependencies": { "@koishijs/plugin-mock": "^2.6.6", - "koishi": "^4.17.11" + "koishi": "^4.17.12" } } diff --git a/plugins/hmr/package.json b/plugins/hmr/package.json index 21ae5d542..b37d9729e 100644 --- a/plugins/hmr/package.json +++ b/plugins/hmr/package.json @@ -42,13 +42,13 @@ } }, "peerDependencies": { - "@koishijs/loader": "^4.5.11", - "koishi": "^4.17.11" + "@koishijs/loader": "^4.5.12", + "koishi": "^4.17.12" }, "devDependencies": { "@types/babel__code-frame": "^7.0.6", "esbuild": "^0.23.0", - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "dependencies": { "@babel/code-frame": "^7.24.2", diff --git a/plugins/http/package.json b/plugins/http/package.json index 919076bb0..9db82b358 100644 --- a/plugins/http/package.json +++ b/plugins/http/package.json @@ -48,10 +48,10 @@ } }, "peerDependencies": { - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "devDependencies": { - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "dependencies": { "@cordisjs/plugin-http": "^0.6.1" diff --git a/plugins/mock/package.json b/plugins/mock/package.json index f376b023b..5d1b4827c 100644 --- a/plugins/mock/package.json +++ b/plugins/mock/package.json @@ -41,10 +41,10 @@ } }, "peerDependencies": { - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "devDependencies": { "@koishijs/plugin-server": "^3.2.3", - "koishi": "^4.17.11" + "koishi": "^4.17.12" } } diff --git a/plugins/proxy-agent/package.json b/plugins/proxy-agent/package.json index 3009a0074..e4fce5c17 100644 --- a/plugins/proxy-agent/package.json +++ b/plugins/proxy-agent/package.json @@ -52,11 +52,11 @@ } }, "peerDependencies": { - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "devDependencies": { - "cordis": "^3.17.8", - "koishi": "^4.17.11" + "cordis": "^3.18.0", + "koishi": "^4.17.12" }, "dependencies": { "@cordisjs/plugin-proxy-agent": "^0.3.3" diff --git a/plugins/server/package.json b/plugins/server/package.json index a52432735..690b2afb2 100644 --- a/plugins/server/package.json +++ b/plugins/server/package.json @@ -48,11 +48,11 @@ } }, "peerDependencies": { - "koishi": "^4.17.11" + "koishi": "^4.17.12" }, "devDependencies": { - "cordis": "^3.17.8", - "koishi": "^4.17.11" + "cordis": "^3.18.0", + "koishi": "^4.17.12" }, "dependencies": { "@cordisjs/plugin-server": "^0.2.3"