Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Sep 3, 2023
1 parent 3631814 commit 7c47f23
Show file tree
Hide file tree
Showing 30 changed files with 80 additions and 80 deletions.
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/core",
"description": "Core Features for Koishi",
"version": "4.14.3",
"version": "4.14.4",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -33,7 +33,7 @@
"@koishijs/i18n-utils": "^1.0.0",
"@koishijs/utils": "^7.0.5",
"@minatojs/core": "^2.4.0",
"@satorijs/core": "^2.7.0",
"@satorijs/core": "^2.7.1",
"cordis": "^2.8.8",
"cosmokit": "^1.4.5",
"fastest-levenshtein": "^1.0.16"
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ declare module '@satorijs/core' {
defineProperty(Bot, 'filter', false)

Bot.prototype.getGuildMemberMap = async function getGuildMemberMap(this: Bot, guildId) {
const list = await this.getGuildMemberList(guildId)
return Object.fromEntries(list.map(info => [info.userId, info.nickname || info.username]))
const { data } = await this.getGuildMemberList(guildId)
return Object.fromEntries(data.map(info => [info.userId, info.nickname || info.username]))
}

Bot.prototype.broadcast = async function broadcast(this: Bot, channels, content, delay = this.ctx.root.config.delay.broadcast) {
Expand Down
8 changes: 4 additions & 4 deletions packages/koishi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "koishi",
"description": "Cross-Platform Chatbot Framework Made with Love",
"version": "4.14.3",
"version": "4.14.4",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -44,10 +44,10 @@
"framework"
],
"dependencies": {
"@koishijs/core": "4.14.3",
"@koishijs/loader": "4.1.3",
"@koishijs/core": "4.14.4",
"@koishijs/loader": "4.1.4",
"@koishijs/utils": "^7.0.5",
"@satorijs/satori": "^2.7.0",
"@satorijs/satori": "^2.7.1",
"cac": "^6.7.14",
"kleur": "^4.1.5",
"ns-require": "^1.1.4"
Expand Down
6 changes: 3 additions & 3 deletions packages/loader/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/loader",
"description": "Config Loader for Koishi",
"version": "4.1.3",
"version": "4.1.4",
"main": "lib/index.js",
"module": "lib/shared.mjs",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -40,10 +40,10 @@
"config"
],
"peerDependencies": {
"@koishijs/core": "4.14.3"
"@koishijs/core": "4.14.4"
},
"devDependencies": {
"@koishijs/core": "4.14.3",
"@koishijs/core": "4.14.4",
"@types/js-yaml": "^4.0.5"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions plugins/adapter/dingtalk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-dingtalk": "^1.0.1"
Expand Down
8 changes: 4 additions & 4 deletions plugins/adapter/discord/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/plugin-adapter-discord",
"description": "Discord Adapter for Koishi",
"version": "3.8.8",
"version": "3.9.0",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -38,12 +38,12 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-discord": "^3.8.8"
"@satorijs/adapter-discord": "^3.9.0"
}
}
8 changes: 4 additions & 4 deletions plugins/adapter/kook/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/plugin-adapter-kook",
"description": "Kook (Kaiheila) Adapter for Koishi",
"version": "3.10.2",
"version": "3.11.0",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -39,12 +39,12 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-kook": "^3.10.2"
"@satorijs/adapter-kook": "^3.11.0"
}
}
4 changes: 2 additions & 2 deletions plugins/adapter/lark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-lark": "^2.1.3"
Expand Down
8 changes: 4 additions & 4 deletions plugins/adapter/line/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/plugin-adapter-line",
"description": "Line Adapter for Koishi",
"version": "1.1.1",
"version": "1.2.0",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand Down Expand Up @@ -37,12 +37,12 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-line": "^1.1.1"
"@satorijs/adapter-line": "^1.2.0"
}
}
4 changes: 2 additions & 2 deletions plugins/adapter/mail/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-mail": "^1.1.2"
Expand Down
8 changes: 4 additions & 4 deletions plugins/adapter/matrix/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/plugin-adapter-matrix",
"description": "Matrix Adapter for Koishi",
"version": "3.4.0",
"version": "3.5.0",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand Down Expand Up @@ -37,12 +37,12 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-matrix": "^3.4.0"
"@satorijs/adapter-matrix": "^3.5.0"
}
}
8 changes: 4 additions & 4 deletions plugins/adapter/onebot/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/plugin-adapter-onebot",
"description": "OneBot Adapter for Koishi",
"version": "5.7.5",
"version": "5.8.0",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -42,12 +42,12 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-onebot": "^5.7.5"
"@satorijs/adapter-onebot": "^5.8.0"
}
}
8 changes: 4 additions & 4 deletions plugins/adapter/qqguild/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/plugin-adapter-qqguild",
"description": "QQ Guild Adapter for Koishi",
"version": "3.5.5",
"version": "3.6.0",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -39,12 +39,12 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-qqguild": "^3.5.5"
"@satorijs/adapter-qqguild": "^3.6.0"
}
}
8 changes: 4 additions & 4 deletions plugins/adapter/slack/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/plugin-adapter-slack",
"description": "Slack Adapter for Koishi",
"version": "1.0.0",
"version": "1.1.0",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -38,12 +38,12 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-slack": "^1.0.0"
"@satorijs/adapter-slack": "^1.1.0"
}
}
8 changes: 4 additions & 4 deletions plugins/adapter/telegram/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/plugin-adapter-telegram",
"description": "Telegram Adapter for Koishi",
"version": "3.8.1",
"version": "3.9.0",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -38,12 +38,12 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-telegram": "^3.8.1"
"@satorijs/adapter-telegram": "^3.9.0"
}
}
4 changes: 2 additions & 2 deletions plugins/adapter/wechat-official/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-wechat-official": "^1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions plugins/adapter/wecom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-wecom": "^1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions plugins/adapter/whatsapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
}
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"dependencies": {
"@satorijs/adapter-whatsapp": "^1.0.4"
Expand Down
4 changes: 2 additions & 2 deletions plugins/common/bind/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
]
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"@koishijs/plugin-database-memory": "^2.3.4",
"@koishijs/plugin-mock": "^2.5.0",
"koishi": "^4.14.3"
"koishi": "^4.14.4"
}
}
4 changes: 2 additions & 2 deletions plugins/common/broadcast/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
]
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"@koishijs/plugin-database-memory": "^2.3.4",
"@koishijs/plugin-mock": "^2.5.0",
"koishi": "^4.14.3"
"koishi": "^4.14.4"
}
}
4 changes: 2 additions & 2 deletions plugins/common/callme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
]
},
"peerDependencies": {
"koishi": "^4.14.3"
"koishi": "^4.14.4"
},
"devDependencies": {
"@koishijs/plugin-database-memory": "^2.3.4",
"@koishijs/plugin-mock": "^2.5.0",
"koishi": "^4.14.3"
"koishi": "^4.14.4"
}
}
Loading

0 comments on commit 7c47f23

Please sign in to comment.