github nonebot/nonebot2 v2.2.0
Release v2.2.0 🌈🧧

latest releases: v2.3.0, v2.2.1
3 months ago

Warning

本版本为兼容 Pydantic v2 的首个版本,如果在使用过程中遇到了插件兼容性问题,请参考文档降级 Pydantic 至 v1

🚛 插件迁移指南

在本版本中由于不可避免的 Pydantic 兼容性问题,请对于 Pydantic 版本有要求的插件确认是否在包依赖中正确注明 Pydantic 版本!

对于 Pydantic 版本并不敏感的插件请参考配置文档对插件读取配置部分进行修改,以便兼容 Pydantic v1 与 v2:

- plugin_config = Config.parse_obj(get_driver().config)
+ from nonebot import get_plugin_config
+ plugin_config = get_plugin_config(Config)

🚀 新功能

🐛 Bug 修复

📝 文档

💫 杂项

🍻 插件发布

Don't miss a new nonebot2 release

NewReleases is sending notifications on new releases.