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: release main #268

Merged
merged 1 commit into from
Feb 14, 2025
Merged

chore: release main #268

merged 1 commit into from
Feb 14, 2025

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Feb 14, 2025

🤖 I have created a release beep boop

core: 1.3.10

1.3.10 (2025-02-14)

🐛 Bug Fixes

  • 负责捕获处理非OneBOT11标准适配器报错的问题 (#267) (9291a0c)

This PR was generated with Release Please. See documentation.

好的,这是翻译成中文的 pull request 总结:

Sourcery 总结

准备新的版本发布,更新了更新日志和包版本。此版本包含一个错误修复,用于处理来自不符合 OneBOT11 标准的适配器的错误。

Bug 修复:

  • Fix handling of errors from non-OneBOT11 compliant adapters

文档:

  • Update changelog for 1.3.10 release

杂务:

  • Release version 1.3.10
Original summary in English

Summary by Sourcery

Prepare for a new release by updating the changelog and package version. This release includes a bug fix for handling errors from non-OneBOT11 compliant adapters.

Bug Fixes:

  • Fix handling of errors from non-OneBOT11 compliant adapters

Documentation:

  • Update changelog for 1.3.10 release

Chores:

  • Release version 1.3.10

Copy link

sourcery-ai bot commented Feb 14, 2025

## Sourcery 审查者指南

此拉取请求将 `core` 包更新到版本 `1.3.10`。它包括一个用于处理来自非 OneBOT11 标准适配器的错误的错误修复。该版本已在 `package.json` 中更新,并且已将新条目添加到 `CHANGELOG.md` 中。

#### 用于处理来自非 OneBOT11 标准适配器的错误的序列图

```mermaid
sequenceDiagram
    participant NonOneBOT11Adapter
    participant ErrorHandler

    NonOneBOT11Adapter->>ErrorHandler: handleError(error)
    activate ErrorHandler
    ErrorHandler->>ErrorHandler: captureError(error)
    deactivate ErrorHandler

用于非 OneBOT11 适配器中错误处理的类图

classDiagram
    class OneBOT11Adapter {
        +handleMessage(message: string)
    }
    class NonOneBOT11Adapter {
        +handleMessage(message: string)
        +handleError(error: Error)
    }
    class ErrorHandler {
        +captureError(error: Error)
    }

    NonOneBOT11Adapter -- ErrorHandler: Uses >
    NonOneBOT11Adapter ..> OneBOT11Adapter : Implements
    note for NonOneBOT11Adapter "Handles errors specific to non-OneBOT11 adapters"
Loading

文件级别更改

变更 详情 文件
core 包的版本从 1.3.9 提升到 1.3.10
  • 更新了 package.json 中的 core 包版本。
  • 1.3.10 版本向 CHANGELOG.md 添加了一个新条目。
  • 该变更日志包括一个与处理来自非 OneBOT11 标准适配器的错误相关的错误修复。
packages/core/package.json
packages/core/CHANGELOG.md

可能相关的 issue


提示和命令

与 Sourcery 交互

  • 触发新的审查: 在拉取请求上评论 @sourcery-ai review
  • 继续讨论: 直接回复 Sourcery 的审查评论。
  • 从审查评论生成 GitHub issue: 通过回复审查评论,要求 Sourcery 从审查评论创建一个 issue。您也可以回复带有 @sourcery-ai issue 的审查评论以从中创建一个 issue。
  • 生成拉取请求标题: 在拉取请求标题中的任何位置写入 @sourcery-ai 以随时生成标题。您也可以在拉取请求上评论 @sourcery-ai title 以随时(重新)生成标题。
  • 生成拉取请求摘要: 在拉取请求正文中的任何位置写入 @sourcery-ai summary 以随时在您想要的确切位置生成 PR 摘要。您也可以在拉取请求上评论 @sourcery-ai summary 以随时(重新)生成摘要。
  • 生成审查者指南: 在拉取请求上评论 @sourcery-ai guide 以随时(重新)生成审查者指南。
  • 解决所有 Sourcery 评论: 在拉取请求上评论 @sourcery-ai resolve 以解决所有 Sourcery 评论。如果您已经解决了所有评论并且不想再看到它们,这将非常有用。
  • 驳回所有 Sourcery 审查: 在拉取请求上评论 @sourcery-ai dismiss 以驳回所有现有的 Sourcery 审查。如果您想从新的审查开始,这将特别有用 - 不要忘记评论 @sourcery-ai review 以触发新的审查!
  • 为 issue 生成行动计划: 在 issue 上评论 @sourcery-ai plan 以为其生成行动计划。

自定义您的体验

访问您的 仪表板 以:

  • 启用或禁用审查功能,例如 Sourcery 生成的拉取请求摘要、审查者指南等。
  • 更改审查语言。
  • 添加、删除或编辑自定义审查说明。
  • 调整其他审查设置。

获得帮助

```
Original review guide in English

Reviewer's Guide by Sourcery

This pull request updates the core package to version 1.3.10. It includes a bug fix for handling errors from non-OneBOT11 standard adapters. The version is updated in package.json and a new entry is added to CHANGELOG.md.

Sequence diagram for handling errors from non-OneBOT11 standard adapters

sequenceDiagram
    participant NonOneBOT11Adapter
    participant ErrorHandler

    NonOneBOT11Adapter->>ErrorHandler: handleError(error)
    activate ErrorHandler
    ErrorHandler->>ErrorHandler: captureError(error)
    deactivate ErrorHandler
Loading

Class diagram for error handling in non-OneBOT11 adapters

classDiagram
    class OneBOT11Adapter {
        +handleMessage(message: string)
    }
    class NonOneBOT11Adapter {
        +handleMessage(message: string)
        +handleError(error: Error)
    }
    class ErrorHandler {
        +captureError(error: Error)
    }

    NonOneBOT11Adapter -- ErrorHandler: Uses >
    NonOneBOT11Adapter ..> OneBOT11Adapter : Implements
    note for NonOneBOT11Adapter "Handles errors specific to non-OneBOT11 adapters"
Loading

File-Level Changes

Change Details Files
The version of the core package was bumped from 1.3.9 to 1.3.10.
  • Updated the core package version in package.json.
  • Added a new entry to CHANGELOG.md for version 1.3.10.
  • The changelog includes a bug fix related to handling errors from non-OneBOT11 standard adapters.
packages/core/package.json
packages/core/CHANGELOG.md

Possibly linked issues


Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

我们跳过了对此 pull request 的审查。它似乎是由一个机器人创建的(嘿,github-actions[bot]!)。我们假设它知道自己在做什么!

Original comment in English

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, github-actions[bot]!). We assume it knows what it's doing!

@sj817 sj817 merged commit 97eab20 into main Feb 14, 2025
@sj817 sj817 deleted the release-please--branches--main branch February 14, 2025 18:28
Copy link
Contributor Author

🤖 Created releases:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant