Open
Conversation
0f16fa8 to
cfcb02b
Compare
be9f73e to
24813ad
Compare
8477621 to
f5905a1
Compare
49eeef5 to
0b2c531
Compare
34042da to
b3f077a
Compare
434425d to
f4ad591
Compare
4108874 to
3fa7e99
Compare
6973516 to
44c6a89
Compare
d47ef88 to
808b2b6
Compare
808b2b6 to
2bd144e
Compare
6f753f4 to
7a4f5e1
Compare
c60203e to
558a818
Compare
121799b to
328f1e6
Compare
93bd9ef to
981b811
Compare
396b0d8 to
dcdab3f
Compare
4abf44a to
927bfc5
Compare
927bfc5 to
342b553
Compare
Signed-off-by: mender-test-bot <mender@northern.tech>
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.
0.10.0 - 2026-03-05
Bug fixes
(build) Set default value for secondary CA cert to false
(MEN-8351) (aca8e5d) by @lluiscampos
The secondary CA cert is really optional, as a custom Mender Server
could use the same domain for both API calls and Artifacts storage.
Set
MENDER_NET_CA_CERTIFICATE_TAG_SECONDARY_ENABLEDdefault tonandinstead select it when selecting hosted Mender option(s).
(storage) Use fs_size instead of fs_off for flash erase size
(e5afb0c) by @hkenken
The third argument of flash_area_flatten() should be the size to erase,
not the offset. Using fs_off caused incorrect erase size calculation.
Documentation
(MEN-8351) (3b5d1fc) by @lluiscampos
Features
Add backup root cert to Zephyr certs chain
(MEN-8494) (5e061d5) by @elkoniu
For disaster recovery and emergency having single certificate is risky.
This change introduces 2nd root certificate to be used on the platform.
Support Zephyr 4.2.0
(MEN-8638) (2d8e634) by @danielskinstad
Send tier in authentication request
(MEN-8559) (ecfa717) by @danielskinstad
Add device tier support to authentication requests. The client now
sends a 'tier' parameter in authentication requests, supporting "standard"
(default) and "micro" tiers. The tier is configurable via Kconfig or
through the client config struct before initialization, which will take
precedence over the Kconfig option.
Default device tier to "micro"
(6fb81d2) by @danielskinstad
Set the default device tier to "micro" rather
than "standard".
Change default intervals for update polling and inventory refresh to 7 days
(MEN-9038) (4e987ba) by @michalkopczan
Produce a warning during build if configured intervals are too short
(MEN-9038) (32a2340) by @michalkopczan
When configured update polling and inventory refresh intervals are
shorter than the minimum allowed for micro tier, produce a warning during build.
Handle rate limits with value provided by server
(MEN-8849) (98b4cbc) by @danielskinstad
Added support for reading the Retry-After header on HTTP 429 errors.
When a 429 error is detected, parse the Retry-After header value and use
it to schedule the next HTTP request instead of using the backoff mechanism.
Add a kernel configuration for the HTTP request timeout
(MEN-9051) (4a238e6)
This feature replaces the HTTP request timeout with a kernel config as
some network connections could not finish the download within the
provided time. The kernel config allows application developers to
determine what is suitable for their use case.
In addition, by default, the timeout is set to 5 minutes if a cellular
modem has configured.
Ticket MEN-9051.
Build
Support warning/failing on artifact sizes
(MEN-8584) (330f72e) by @danielskinstad
Add support for specifying size limits for Mender
Artifacts during a build. This uses the feature implemented in
mender-artifact 4.2.0. The limits can be configured through the Kconfig,
or by enabling
MENDER_ARTIFACT_SIZE_LIMITSand settingMENDER_ARTIFACT_WARN_SIZEand orMENDER_ARTIFACT_MAX_SIZE.Fix misc typos in Kconfig
(aefe5cc) by @lluiscampos