Compare commits

..

3 Commits

Author SHA1 Message Date
Siornya b30d5dfa6d 🍻 publish plugin 彩六数据查询 (#4072) 2026-06-27 11:15:18 +08:00
noneflow[bot] f46c446666 📝 Update changelog
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.13) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.13) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.13) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.13) (push) Waiting to run
Release Drafter / release (push) Has been skipped
Release Drafter / update-release-draft (push) Failing after 44s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.11) (push) Failing after 45s
Pyright Lint / Pyright Lint (pydantic-v1) (push) Failing after 1m7s
Pyright Lint / Pyright Lint (pydantic-v2) (push) Failing after 1m8s
Site Deploy / publish (push) Failing after 1m8s
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.11) (push) Failing after 1m11s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.12) (push) Failing after 1m12s
Ruff Lint / Ruff Lint (push) Successful in 1m14s
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.10) (push) Failing after 1m26s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.13) (push) Failing after 1m30s
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.12) (push) Failing after 1m34s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.10) (push) Failing after 1m36s
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.13) (push) Failing after 1m38s
2026-06-26 16:13:09 +00:00
旋律 e21609a231 🐛 Fix: WebSocket 基类 typo (#4095) 2026-06-27 00:12:03 +08:00
3 changed files with 14 additions and 6 deletions
+9 -5
View File
@@ -11081,13 +11081,17 @@
"is_official": false "is_official": false
}, },
{ {
"module_name": "nonebot_plugin_rollpig_plus", "module_name": "nonebot_plugin_R6States",
"project_link": "nonebot-plugin-rollpig-plus", "project_link": "nonebot-plugin-R6States",
"author_id": 89476718, "author_id": 82685282,
"tags": [ "tags": [
{ {
"label": "pig", "label": "战绩",
"color": "#f9cf06" "color": "#ea5252"
},
{
"label": "彩六",
"color": "#ff3d2c"
} }
], ],
"is_official": false "is_official": false
+1 -1
View File
@@ -209,7 +209,7 @@ class WebSocket(abc.ABC):
elif isinstance(data, bytes): elif isinstance(data, bytes):
await self.send_bytes(data) await self.send_bytes(data)
else: else:
raise TypeError("WebSocker send method expects str or bytes!") raise TypeError("WebSocket send method expects str or bytes!")
@abc.abstractmethod @abc.abstractmethod
async def send_text(self, data: str) -> None: async def send_text(self, data: str) -> None:
+4
View File
@@ -11,6 +11,10 @@ toc_max_heading_level: 2
- Feature: WS 支持 ping interval/timeout 配置 [@StarHeartHunt](https://github.com/StarHeartHunt) ([#3964](https://github.com/nonebot/nonebot2/pull/3964)) - Feature: WS 支持 ping interval/timeout 配置 [@StarHeartHunt](https://github.com/StarHeartHunt) ([#3964](https://github.com/nonebot/nonebot2/pull/3964))
### 🐛 Bug 修复
- Fix: WebSocket 基类 typo [@MelodyYuuka](https://github.com/MelodyYuuka) ([#4095](https://github.com/nonebot/nonebot2/pull/4095))
### 📝 文档 ### 📝 文档
- Docs: 添加 Matrix 适配器至 README [@elysia-best](https://github.com/elysia-best) ([#4045](https://github.com/nonebot/nonebot2/pull/4045)) - Docs: 添加 Matrix 适配器至 README [@elysia-best](https://github.com/elysia-best) ([#4045](https://github.com/nonebot/nonebot2/pull/4045))