Skip to content

chore: update changelog to 2.0.84#516

Merged
yixinshark merged 1 commit intolinuxdeepin:masterfrom
mhduiy:dev-changelog-2.0.84
Mar 5, 2026
Merged

chore: update changelog to 2.0.84#516
yixinshark merged 1 commit intolinuxdeepin:masterfrom
mhduiy:dev-changelog-2.0.84

Conversation

@mhduiy
Copy link
Contributor

@mhduiy mhduiy commented Mar 5, 2026

更新说明

自动更新 changelog 到版本 2.0.84

变更内容

  • 更新 debian/changelog

版本信息

  • 新版本: 2.0.84
  • 目标分支: master

Summary by Sourcery

Chores:

  • Bump Debian changelog entry to version 2.0.84 targeting master.

update changelog to 2.0.84

Log: update changelog to 2.0.84
@github-actions
Copy link

github-actions bot commented Mar 5, 2026

TAG Bot

TAG: 2.0.84
EXISTED: no
DISTRIBUTION: unstable

@sourcery-ai
Copy link

sourcery-ai bot commented Mar 5, 2026

Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

Updates the Debian package changelog to reflect the new release version 2.0.84 targeting master.

File-Level Changes

Change Details Files
Bump Debian package changelog entry to version 2.0.84.
  • Add or update the top changelog stanza to version 2.0.84 with appropriate metadata (date, maintainer, and summary).
  • Ensure the changelog reflects 2.0.84 as the latest release entry for the master branch.
debian/changelog

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!

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.

Hey - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@deepin-ci-robot
Copy link

deepin pr auto review

这段 debian/changelog 的 diff 内容主要记录了软件包 dde-network-core 从版本 2.0.83 升级到 2.0.84 的变更日志。以下是从格式规范、逻辑、潜在问题等方面的审查意见和改进建议:

1. 格式规范与语法

审查意见:

  • 符合 Debian 规范:整体格式符合 Debian changelog 标准(package (version) distribution; urgency),条目列表使用了缩进,作者信息和日期格式正确。
  • 拼写错误:在第三条变更记录中存在明显的拼写错误。

改进建议:

  • 修正拼写:将 replece 修正为 replace

2. 逻辑与代码质量

审查意见:

  • 变更粒度:Changelog 中混合了 Bug 修复(fix)和可能的 UI/交互优化(support scroll)。通常建议将功能增强或新特性标记为 featchange,而将 Bug 修复保留为 fix
  • 描述清晰度
    • fix: add null check for connection update:描述清晰,指明了是为了防止空指针崩溃。
    • fix: fixed the wired device show error:这里的 fixed 与前缀 fix 语义重复,且 "show error" 比较模糊(是显示错误信息,还是显示错误?)。
    • fix: replece resize to setFixedSize:这看起来是一个 Qt/C++ 的修改。通常 resize 是动态的,而 setFixedSize 是强制固定大小。这属于实现细节的变动,建议说明修改原因(例如:防止窗口闪烁或保持布局稳定)。
    • fix: support scroll on touch screen:这听起来更像是一个新功能或体验改进,而不是修复一个错误。

改进建议:

  • 优化描述
    • fix: fixed the wired device show error -> 建议改为 fix: resolve display issue for wired devicesfix: correct wired device information display
    • fix: replece resize to setFixedSize -> 建议改为 fix: stabilize window layout using setFixedSizeui: use setFixedSize to prevent layout resizing
    • fix: support scroll on touch screen -> 建议改为 feat: enable scrolling on touch screens

3. 版本号与日期

审查意见:

  • 日期异常:日期显示为 2026 年。除非这是一个时间旅行项目,否则这显然是一个笔误。
  • 版本号:从 2.0.83 升级到 2.0.84,符合常规的小版本迭代逻辑。

改进建议:

  • 修正日期:请将年份 2026 修正为当前年份(如 20232024,取决于实际提交时间)。

4. 安全性

审查意见:

  • 空指针检查add null check for connection update 是一个积极的安全性和稳定性改进,有助于防止潜在的崩溃(DoS)。

改进建议:

  • 无需额外修改,继续保持对空指针的检查。

总结建议后的 Changelog 片段

+dde-network-core (2.0.84) unstable; urgency=medium
+
+  * fix: add null check for connection update
+  * fix: resolve display issue for wired devices
+  * fix: replace resize with setFixedSize to stabilize layout
+  * feat: enable scrolling support on touch screens
+
+ -- zhangkun <zhangkun2@uniontech.com>  Thu, 05 Mar 2024 20:44:02 +0800

主要修改点:

  1. 修正了 replecereplace
  2. 修正了 2026 年为 2024 年(示例)。
  3. 优化了 wired device 的描述,去除了重复的 "fixed"。
  4. setFixedSize 的修改补充了目的说明。
  5. 将触摸屏滚动标记为 feat(功能),因为它更像是增加支持而非修复错误。

@yixinshark yixinshark merged commit 3991c11 into linuxdeepin:master Mar 5, 2026
18 of 20 checks passed
@deepin-ci-robot
Copy link

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: mhduiy, yixinshark

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@deepin-bot
Copy link
Contributor

deepin-bot bot commented Mar 5, 2026

TAG Bot

Tag created successfully

📋 Tag Details
  • Tag Name: 2.0.84
  • Tag SHA: 8f43fbaf31544710120cb8042280d52aaaf5e607
  • Commit SHA: 8404e3a0de2395692b9415cd031d009b27ffb246
  • Tag Message:
    Release dde-network-core 2.0.84
    
    
  • Tagger:
    • Name: mhduiy
  • Distribution: unstable

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants