From b4062c574c4455a484fcc82997ab90ba4bc0db3b Mon Sep 17 00:00:00 2001 From: "noneflow[bot]" <129742071+noneflow[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 12:59:32 +0000 Subject: [PATCH] :memo: Update changelog --- website/docs/developer/plugin-publishing.mdx | 1 + website/src/changelog/changelog.md | 1 + .../versioned_docs/version-2.4.2/developer/plugin-publishing.mdx | 1 + .../versioned_docs/version-2.4.3/developer/plugin-publishing.mdx | 1 + .../versioned_docs/version-2.4.4/developer/plugin-publishing.mdx | 1 + 5 files changed, 5 insertions(+) diff --git a/website/docs/developer/plugin-publishing.mdx b/website/docs/developer/plugin-publishing.mdx index 48b07cb1..66f1188b 100644 --- a/website/docs/developer/plugin-publishing.mdx +++ b/website/docs/developer/plugin-publishing.mdx @@ -487,6 +487,7 @@ __plugin_meta__ = PluginMetadata( ### 避免误用同步操作 NoneBot 是一个异步框架,插件中**禁止**使用任何可能阻塞事件循环的同步操作,例如: + - 同步 HTTP 请求(如 `requests` 库); **推荐**操作(以 `httpx` 为例): diff --git a/website/src/changelog/changelog.md b/website/src/changelog/changelog.md index 057774d1..979c87a1 100644 --- a/website/src/changelog/changelog.md +++ b/website/src/changelog/changelog.md @@ -17,6 +17,7 @@ toc_max_heading_level: 2 ### 📝 文档 +- Docs: 完善对「发布插件」章节的文档描述 [@NCBM](https://github.com/NCBM) ([#3865](https://github.com/nonebot/nonebot2/pull/3865)) - Docs: Docker 部署镜像添加 latest tag [@AhsokaTano26](https://github.com/AhsokaTano26) ([#3787](https://github.com/nonebot/nonebot2/pull/3787)) - Docs: 调整文档 `on_command` import 路径 [@Xfjie314](https://github.com/Xfjie314) ([#3747](https://github.com/nonebot/nonebot2/pull/3747)) - Docs: 修复插件编写准备文档中的文本错误 [@Xfjie314](https://github.com/Xfjie314) ([#3746](https://github.com/nonebot/nonebot2/pull/3746)) diff --git a/website/versioned_docs/version-2.4.2/developer/plugin-publishing.mdx b/website/versioned_docs/version-2.4.2/developer/plugin-publishing.mdx index 48b07cb1..66f1188b 100644 --- a/website/versioned_docs/version-2.4.2/developer/plugin-publishing.mdx +++ b/website/versioned_docs/version-2.4.2/developer/plugin-publishing.mdx @@ -487,6 +487,7 @@ __plugin_meta__ = PluginMetadata( ### 避免误用同步操作 NoneBot 是一个异步框架,插件中**禁止**使用任何可能阻塞事件循环的同步操作,例如: + - 同步 HTTP 请求(如 `requests` 库); **推荐**操作(以 `httpx` 为例): diff --git a/website/versioned_docs/version-2.4.3/developer/plugin-publishing.mdx b/website/versioned_docs/version-2.4.3/developer/plugin-publishing.mdx index 48b07cb1..66f1188b 100644 --- a/website/versioned_docs/version-2.4.3/developer/plugin-publishing.mdx +++ b/website/versioned_docs/version-2.4.3/developer/plugin-publishing.mdx @@ -487,6 +487,7 @@ __plugin_meta__ = PluginMetadata( ### 避免误用同步操作 NoneBot 是一个异步框架,插件中**禁止**使用任何可能阻塞事件循环的同步操作,例如: + - 同步 HTTP 请求(如 `requests` 库); **推荐**操作(以 `httpx` 为例): diff --git a/website/versioned_docs/version-2.4.4/developer/plugin-publishing.mdx b/website/versioned_docs/version-2.4.4/developer/plugin-publishing.mdx index 48b07cb1..66f1188b 100644 --- a/website/versioned_docs/version-2.4.4/developer/plugin-publishing.mdx +++ b/website/versioned_docs/version-2.4.4/developer/plugin-publishing.mdx @@ -487,6 +487,7 @@ __plugin_meta__ = PluginMetadata( ### 避免误用同步操作 NoneBot 是一个异步框架,插件中**禁止**使用任何可能阻塞事件循环的同步操作,例如: + - 同步 HTTP 请求(如 `requests` 库); **推荐**操作(以 `httpx` 为例):