Skip to content

Release: v2.63.1#2331

Merged
CarterLi merged 5 commits into
masterfrom
dev
May 13, 2026
Merged

Release: v2.63.1#2331
CarterLi merged 5 commits into
masterfrom
dev

Conversation

@CarterLi
Copy link
Copy Markdown
Member

Checklist

  • I have tested my changes locally.

Copilot AI review requested due to automatic review settings May 13, 2026 11:44
Copy link
Copy Markdown
Contributor

Copilot AI 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 overview

Note

Copilot was unable to run its full agentic suite in this review.

Prepares the v2.63.1 release by bumping the project version and documenting/packaging several Linux fixes (media length parsing, command option crash fix, and Wi‑Fi netlink behavior on certain architectures).

Changes:

  • Bump version to 2.63.1 and update CHANGELOG for the release.
  • Adjust Linux media length parsing for MPRIS metadata.
  • Gate Linux Wi‑Fi netlink detection and update Debian packaging dependencies.

Reviewed changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated 4 comments.

Show a summary per file
File Description
src/detection/wifi/wifi_linux.c Conditionally compiles netlink Wi‑Fi detection based on endianness and adjusts related declarations/usage.
src/detection/media/media_linux.c Switches MPRIS length parsing to signed integer and ignores non-positive durations.
src/common/impl/commandoption.c Changes JSON-result emission condition to rely on presence of resultDoc.
debian/control Adds libefl-all-dev to build dependencies.
debian/changelog.tpl Adds new Debian changelog entries for 2.63.0 and 2.62.1 templates.
CMakeLists.txt Bumps project version to 2.63.1.
CHANGELOG.md Adds 2.63.1 notes and clarifies dependency wording.


// Silence warning of `NLA_HDRLEN` and `NLA_ALIGN`
#pragma GCC diagnostic ignored "-Wsign-conversion"
#if !__BIG_ENDIAN__
#if !__BIG_ENDIAN__
#include <linux/genetlink.h>
#include <linux/nl80211.h>

Comment thread CHANGELOG.md
Bugfixes:
* Fixes media length detection for Chrome on Linux (Media, Linux)
* Fixes segmentation fault when specifying unsupported modules on command line
* Disables usage of Netlink for Wi-Fi detection on s390x architectures (Wifi, Linux)
Comment on lines +98 to 101
int64_t length = 0; // microseconds
if (ffDBusGetInt(data, &dictIterator, &length) && length > 0) {
result->length = (uint32_t) (length / 1000);
}
@CarterLi CarterLi merged commit acf6104 into master May 13, 2026
49 checks passed
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.

2 participants