File tree Expand file tree Collapse file tree 4 files changed +33
-5
lines changed
Expand file tree Collapse file tree 4 files changed +33
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,34 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 0.19.0] 2025-07-24
8+
9+ ### Changed
10+
11+ - Based on experience gained during the Private Access phase, the
12+ Golioth Location service has been changed from a dedicated service
13+ to a Pipelines Transformer. The experimental firmware service has
14+ been removed and the Location examples have been updated to use
15+ Pipelines. A new ` net_info ` utility has been added to facilitate
16+ constructing payloads appropriate for use with the transformer.
17+
18+ ### Fixed:
19+
20+ - Fixed a NULL dereference that occurred when processing certain errors
21+ in CoAP blockwise operations.
22+ - Fixed some internal log messages being to sent to Golioth even when
23+ turned off in Kconfig.
24+ - Fixed unsigned-compare-against zero in certain error paths
25+ - Fixed memory leak during blockwise transfers
26+
27+ ### Added
28+
29+ - The CoAP client can now receive blockwise responses to blockwise
30+ posts.
31+ - Added an API for receiving OTA manifests blockwise, to support
32+ manifests larger than 1 kB.
33+ - The SDK is now scanned by Coverity Static Analysis
34+
735## [ 0.18.1] 2025-06-02
836
937### Fixed
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ API documentation: https://firmware-sdk-docs.golioth.io/
3232This repo uses git submodules, so you will need to clone with the ` --recursive ` option:
3333
3434``` sh
35- git clone --recursive https://github.com/golioth/golioth-firmware-sdk.git -b v0.18.1
35+ git clone --recursive https://github.com/golioth/golioth-firmware-sdk.git -b v0.19.0
3636```
3737
3838Or, if you've already cloned but forgot the ` --recursive ` , you can update and
Original file line number Diff line number Diff line change 1- 0.18.1
1+ 0.19.0
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Execute this command to download this repository together with all
2727dependencies:
2828
2929``` console
30- west init -m https://github.com/golioth/golioth-firmware-sdk.git --mr v0.18.1 --mf west-zephyr.yml
30+ west init -m https://github.com/golioth/golioth-firmware-sdk.git --mr v0.19.0 --mf west-zephyr.yml
3131west update
3232cd modules/lib/golioth-firmware-sdk && git submodule update --init --recursive
3333```
@@ -42,7 +42,7 @@ Execute this command to download this repository together with all
4242dependencies:
4343
4444``` console
45- west init -m https://github.com/golioth/golioth-firmware-sdk.git --mr v0.18.1 --mf west-ncs.yml
45+ west init -m https://github.com/golioth/golioth-firmware-sdk.git --mr v0.19.0 --mf west-ncs.yml
4646west update
4747cd modules/lib/golioth-firmware-sdk && git submodule update --init --recursive
4848```
@@ -62,7 +62,7 @@ based project (e.g. Zephyr RTOS):
6262# Golioth repository.
6363- name : golioth
6464 path : modules/lib/golioth-firmware-sdk
65- revision : v0.18 .0
65+ revision : v0.19 .0
6666 url : https://github.com/golioth/golioth-firmware-sdk.git
6767 submodules : true
6868` ` `
You can’t perform that action at this time.
0 commit comments