vcswatch reports that
this package seems to have new commits in its VCS but has
not yet updated debian/changelog. You should consider updating
the Debian changelog and uploading this new version into the archive.
Here are the relevant commit logs:
commit 83943ddad5f488e6a9c0fcd3dc4dba8d49c1431d
Merge: bd07b54 01aedfe
Author: Chris Hofstaedtler <zeha@users.noreply.github.com>
Date: Thu Mar 12 23:11:42 2026 +0100
Merge pull request #102 from grml/zeha/mbr-test
test_smoke: improve MBR test
commit 01aedfe21e4683b0d27c78777d7131456cc5f576
Author: Chris Hofstaedtler <ch@grml.org>
Date: Thu Mar 12 21:57:12 2026 +0100
test_smoke: improve MBR tests
Show MBR contents. Replace usage of `file`, which depends on signatures
not part of the GRUB MBR.
commit 5f56fd6c176e430b08ac1e6c1c82ea1ee5f24aad
Author: Chris Hofstaedtler <ch@grml.org>
Date: Thu Mar 12 22:51:25 2026 +0100
test_smoke: setup log level
Initialize the logging RootLogger's loglevel to DEBUG. grml2usb.main
uses logging.basicConfig, but it does nothing because pytest will
already have configured something. But the pytest config clearly does
not work for the root logger.
Midterm grml2usb should stop using the root logger.
commit bd07b54ff7b828ec2895cf8659ffb057b0d9cb36
Merge: 1bca0f6 e37c5b5
Author: Michael Prokop <115592+mika@users.noreply.github.com>
Date: Mon Mar 2 11:15:37 2026 +0100
Merge pull request #96 from grml/dependabot/github_actions/actions/upload-artifact-7
ci(deps): bump actions/upload-artifact from 6 to 7
commit 1bca0f6f0bf1c2247e99d8278e49e9c2038d0c70
Merge: 9e7342e 5ec489f
Author: Michael Prokop <115592+mika@users.noreply.github.com>
Date: Mon Mar 2 11:15:03 2026 +0100
Merge pull request #97 from grml/dependabot/github_actions/actions/download-artifact-8
ci(deps): bump actions/download-artifact from 7 to 8
commit 5ec489f3d9fa4269bd75f8432a19b7472ec1b20a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon Mar 2 08:17:07 2026 +0000
ci(deps): bump actions/download-artifact from 7 to 8
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7 to 8.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v7...v8)
---
updated-dependencies:
- dependency-name: actions/download-artifact
dependency-version: '8'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
commit e37c5b5919458d31d0a38968b919521049126ead
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon Mar 2 08:17:03 2026 +0000
ci(deps): bump actions/upload-artifact from 6 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v6...v7)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
commit 9e7342e0d7c451505010d403ad5e5bf7c91a88c2
Merge: ded15a6 e12dffe
Author: Michael Prokop <115592+mika@users.noreply.github.com>
Date: Fri Feb 27 09:54:44 2026 +0100
Merge pull request #95 from grml/mika/aarch64
Fix host architecture detection when running on arm64
commit e12dffee4907c08e2213e9e832a4e012cb196e42
Author: Michael Prokop <mika@grml.org>
Date: Thu Feb 26 17:51:33 2026 +0100
Fix host architecture detection when running on arm64
With `dpkg --print-architecture` it indeed reports arm64:
% dpkg --print-architecture
arm64
But `uname -m` reports aarch64 instead:
% uname -m
aarch64
Given that we rely on `uname -m` for identifying the host architecture,
adjust the check accordingly.