Update CHANGELOG for Mender Client 6.0.x#35
Open
mender-test-bot wants to merge 1 commit into
Open
Conversation
b8e9536 to
6c6f1c0
Compare
6c6f1c0 to
f181b7b
Compare
Author
|
@mender-test-bot, start a full client pipeline with:
my commands and optionsYou can prevent me from automatically starting CI pipelines:
You can trigger a client pipeline on multiple prs with:
You can trigger a client pipeline for a specific Mender Client release with:
You can trigger GitHub->GitLab branch sync with:
You can print PR statistics for a repository with:
You can cherry pick to a given branch or branches with:
|
ac38517 to
8cae274
Compare
d09f88d to
914d36d
Compare
Signed-off-by: mender-test-bot <mender@northern.tech>
914d36d to
642ab2b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Mender Client 6.0.x
mender 5.1.x (2026-05-28)
5.1.x - 2026-05-28
Bug fixes
Don't retry status update on 413
(ME-616) (e13437d)
Handle first timestamp in deployment logs more carefully
(MEN-9427) (68ab41e)
Depending on the system and build configuration, the timestamps
in logs can use lower (likely) or higher (unlikely) time
resolution than expected (nanoseconds). So in case of a
deployment failure with corrupted logs, when using the first
timestamp as a replacement in the extra
(THE ORIGINAL LOGS CONTAINED INVALID ENTRIES)log entry, care must be taken to makesure the extra log entry still has a valid timestamp and that the
result is valid JSON.
Sort inventory generator scripts before running them
(MEN-9635) (a5fcec1)
So that the results are consistent and don't depend on directory
iteration ordering.
Fail when device tier is invalid
(ME-636) (590282f)
DeviceTier is one of the configuration options but it is critical
for how device is recognized by the server. When we will fail
parsing it out of the configuration we should fail instead to
switching to the
standarddevice tier.Ensure limited permissions of mender-inventory-geo cache files
(MEN-9752) (64584e2)
The /tmp/mender/inventory-geo cache file can potentially contain
sensitive data and there's no reason for it to have 644
permissions.
By using
umask 077we can easily ensure that any files createdby the script are only user/owner-accessible.
Features
Large deployment logs are now trimmed to be accepted by the server
(MEN-9415) (d870064)
Deployment logs larger than 1 MiB are rejected by the
server which leads to two issues:
excessive bandwith consumption when uploading such large logs
only to be thrown away, and
no deployment logs for particular device and particular failed
deployment available at the server at all.
To prevent this, the client now trims large deployment logs and
only sends the biggest possible part of the logs from their end.
mender-connect 3.0.x (2026-02-27)
No changelog entries found.
monitor-client 1.5.x (2026-02-23)
No changelog entries found.
mender-flash 1.1.x (2026-02-27)
No changelog entries found.
mender-configure-module 1.1.x (2026-05-28)
No changelog entries found.
mender-binary-delta 1.5.x (2026-05-28)
No changelog entries found.
mender-container-modules 1.0.x (2026-05-05)
1.0.x - 2026-05-05
Bug fixes
Cd into manifest dir beforing listing running containers
(MEN-9641) (0aa83f8)
Fix an issue where docker-compose v1 can't find manifest files for a
composition because we don't cd into the manifest directory.