Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the production-dependencies group with 5 updates #434

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 13, 2023

Bumps the production-dependencies group with 5 updates:

Package From To
matplotlib 3.8.0 3.8.1
nonebot2 2.1.1 2.1.2
nonebot-adapter-red 0.7.1 0.7.4
nonebot-plugin-orm 0.3.0 0.5.0
nonebot-plugin-alconna 0.31.0 0.33.3

Updates matplotlib from 3.8.0 to 3.8.1

Release notes

Sourced from matplotlib's releases.

REL: v3.8.1

This is the first bugfix release of the 3.8.x series.

This release contains several bug fixes and adjustments:

  • Bump setuptools required version because of setuptools_scm v8
  • Update find_nearest_contour and revert contour deprecations
  • allsegs and allkinds return individual segments
  • Restore default behavior of hexbin mincnt with C provided
  • Try/except import of Axes3D
  • Ensure valid path mangling for ContourLabeler
  • BLD: Remove development dependencies from sdists
  • FIX 2-tuple of colors in to_rgba_array
  • Fix issue with non-string labels and legend
  • Fix issue with locale comma when not using math text
  • Various type hinting improvements
  • Various documentation improvements
  • Improvements to the MacOS backend
Commits
  • fac632f REL: v3.8.1
  • 8c517cd Release prep v3.8.1
  • 8c6b3e9 Merge remote-tracking branch 'origin/v3.8.0-doc' into v3.8.x
  • 043a191 Merge pull request #27240 from meeseeksmachine/auto-backport-of-pr-27237-on-v...
  • 08876f8 Merge pull request #27239 from meeseeksmachine/auto-backport-of-pr-27237-on-v...
  • dc37d96 Merge pull request #27238 from meeseeksmachine/auto-backport-of-pr-27165-on-v...
  • be5b1f5 Backport PR #27237: DOC: Add command to install appropriate `requirements.txt...
  • 58a7f9a Backport PR #27237: DOC: Add command to install appropriate `requirements.txt...
  • 0a77591 Backport PR #27165: Fixing Matplotlib Notebook Text
  • 2e68a4e Merge pull request #27229 from ksunden/auto-backport-of-pr-27226-on-v3.8.x
  • Additional commits viewable in compare view

Updates nonebot2 from 2.1.1 to 2.1.2

Release notes

Sourced from nonebot2's releases.

Release v2.1.2 🌈🎃

🚀 新功能

🐛 Bug 修复

📝 文档

💫 杂项

🍻 插件发布

🍻 机器人发布

🍻 适配器发布

... (truncated)

Commits

Updates nonebot-adapter-red from 0.7.1 to 0.7.4

Release notes

Sourced from nonebot-adapter-red's releases.

Adapter Red 0.7.4

  • get_history_messageoffset_msg_id 应为可选参数

Full Changelog: nonebot/adapter-red@v0.7.3...v0.7.4

Adapter Red 0.7.3

What's Changed

New Contributors

Full Changelog: nonebot/adapter-red@v0.7.2...v0.7.3

Adapter Red 0.7.2

What's Changed

New Contributors

Full Changelog: nonebot/adapter-red@v0.7.1...v0.7.2

Commits

Updates nonebot-plugin-orm from 0.3.0 to 0.5.0

Release notes

Sourced from nonebot-plugin-orm's releases.

🔖 Release 0.5.0

What's Changed

Full Changelog: nonebot/plugin-orm@v0.4.1...v0.5.0

🔖 Release 0.4.1

What's Changed

Full Changelog: nonebot/plugin-orm@v0.4.0...v0.4.1

🔖 Release 0.4.0

Notable Changes

from datetime import datetime
from sqlalchemy.orm import Mapped, mapped_column
from nonebot_plugin_orm import Model
class User(Model):
id: Mapped[int] = mapped_column(primary_key=True)
name: Mapped[str]
signup_ts: Mapped[datetime]
user = User(id="42", name="John Doe", signup_ts="2032-06-21T12:00")
print(
user  # User(id=42, name='John Doe', signup_ts=datetime.datetime(2032, 6, 21, 12, 0))
)

What's Changed

Full Changelog: nonebot/plugin-orm@v0.3.0...v0.4.0

Commits
  • 872f625 🔖 Release 0.5.0
  • ef06a21 🐛 fix(alembic): ignore non-exsitent main migrations dir
  • d1e5101 🐛 fix(alembic): allow run migrations dir exists
  • 88a9019 ♻️ refactor(alembic): support unload or uninstall used plugins
  • 7b455d4 🎨 refactor(sqla): move param init into init.py
  • 88b8847 🐛 fix(alembic): store cli params into cmd opts
  • 00247c6 🐛 fix: allow rewrite all argument
  • 0212d1e 🐛 fix(sqla): redirect logger
  • 9b79aca 🏷️ fix(alembic): leave fn annotations as opaque object
  • e7c0cdc 📝 docs: standardized code text
  • Additional commits viewable in compare view

Updates nonebot-plugin-alconna from 0.31.0 to 0.33.3

Release notes

Sourced from nonebot-plugin-alconna's releases.

Nonebot Plugin Alconna 0.33.3

  • 修复在特殊情况下 asyncio.Future 提前创建导致报错的问题

Full Changelog: nonebot/plugin-alconna@v0.33.2...v0.33.3

Nonebot Plugin Alconna 0.33.2

  • 移除 raw: RawData, 拆分为 raw: bytes | BytesIOmimetype: str | None
  • mimetype 现在会自动检测

Full Changelog: nonebot/plugin-alconna@v0.33.1...v0.33.2

Nonebot Plugin Alconna 0.33.1

  • 修复 Dodo 下 bot.call_api 参数未加关键字的问题

Full Changelog: nonebot/plugin-alconna@v0.33.0...v0.33.1

Nonebot Plugin Alconna 0.33.0

新增:

  • 支持适配器 Dodo

改进:

  • 优化针对 kook 适配器下的 KMarkdown 的解析

Full Changelog: nonebot/plugin-alconna@v0.32.0...v0.33.0

Nonebot Plugin Alconna 0.32.0

What's Changed

  • 添加函数 referent,其允许根据 alc 对象或命令名称获取对应绑定的 AlconnaMatcher:
    from nonebot_plugin_alconna import referent
    cmd = on_alconna("xxx")
    ...
    cmd1 = referent("xxx")
    assert cmd is cmd1
  • AlconnaMatcher 下的 handle,got,got_path,receive 增加参数 override, 以允许响应函数替换原先位置的响应或在指定位置插入新的响应函数:
    # in foo.py
    cmd = on_alconna("xxx")
    @​cmd.handle()
    async def _(arp: Arparma):
    await cmd.send(f"0: {(arp.options)}")

    # in bar.py
    from nonebot_plugin_alconna import referent
    cmd = referent("xxx")
    @cmd.handle(override=("replace", 0))

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [matplotlib](https://github.com/matplotlib/matplotlib) | `3.8.0` | `3.8.1` |
| [nonebot2](https://github.com/nonebot/nonebot2) | `2.1.1` | `2.1.2` |
| [nonebot-adapter-red](https://github.com/nonebot/adapter-red) | `0.7.1` | `0.7.4` |
| [nonebot-plugin-orm](https://github.com/nonebot/plugin-orm) | `0.3.0` | `0.5.0` |
| [nonebot-plugin-alconna](https://github.com/nonebot/plugin-alconna) | `0.31.0` | `0.33.3` |


Updates `matplotlib` from 3.8.0 to 3.8.1
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.8.0...v3.8.1)

Updates `nonebot2` from 2.1.1 to 2.1.2
- [Release notes](https://github.com/nonebot/nonebot2/releases)
- [Changelog](https://github.com/nonebot/nonebot2/blob/master/CHANGELOG.md)
- [Commits](nonebot/nonebot2@v2.1.1...v2.1.2)

Updates `nonebot-adapter-red` from 0.7.1 to 0.7.4
- [Release notes](https://github.com/nonebot/adapter-red/releases)
- [Commits](nonebot/adapter-red@v0.7.1...v0.7.4)

Updates `nonebot-plugin-orm` from 0.3.0 to 0.5.0
- [Release notes](https://github.com/nonebot/plugin-orm/releases)
- [Commits](nonebot/plugin-orm@v0.3.0...v0.5.0)

Updates `nonebot-plugin-alconna` from 0.31.0 to 0.33.3
- [Release notes](https://github.com/nonebot/plugin-alconna/releases)
- [Commits](nonebot/plugin-alconna@v0.31.0...v0.33.3)

---
updated-dependencies:
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: nonebot2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: nonebot-adapter-red
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: nonebot-plugin-orm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: nonebot-plugin-alconna
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Nov 13, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 15, 2023

Looks like these dependencies are up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Nov 15, 2023
@dependabot dependabot bot deleted the dependabot/pip/production-dependencies-b0a10e7908 branch November 15, 2023 10:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants