-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: release-notes: Add 3.5.0 release notes for networking #63703
doc: release-notes: Add 3.5.0 release notes for networking #63703
Conversation
doc/releases/release-notes-3.5.rst
Outdated
:kconfig:option:`CONFIG_LWM2M_COAP_MAX_MSG_SIZE` is split into a block-wise transfer. | ||
* Block-wise transfers don't require tokens to match anymore as this was not in line | ||
with CoAP specification (CoAP doesn't require tokens re-use). | ||
* Various fixes to bootstrap. Now client ensures that Bootstrap-Finnish command is send, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Various fixes to bootstrap. Now client ensures that Bootstrap-Finnish command is send, | |
* Various fixes to bootstrap. Now client ensures that Bootstrap-Finish command is sent, |
doc/releases/release-notes-3.5.rst
Outdated
* Added support for TCP new Reno collision avoidance algorithm. | ||
* Fixed source address selection on bound sockets. | ||
* Fixed possible memory leak in case listening socket was closed during active handshake. | ||
* Fixed RST packet handing during handshake. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Fixed RST packet handing during handshake. | |
* Fixed RST packet handling during handshake. |
doc/releases/release-notes-3.5.rst
Outdated
* Added new :zephyr:code-sample:`cellular-modem` sample. | ||
* Added support for network interface names (instead of reusing underlying device name). | ||
* Removed support for Google Cloud IoT sample due to service retirement. | ||
* Fixed a bug where packets passed in promiscuous mode could've been modified |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit
* Fixed a bug where packets passed in promiscuous mode could've been modified | |
* Fixed a bug where packets passed in promiscuous mode could have been modified |
doc/releases/release-notes-3.5.rst
Outdated
|
||
* LwM2M: | ||
|
||
* Added support for tickless mode. This removes the 500 ms timeout from the socket loop | ||
so the engine does not constantly wake up the CPU. This can be enabled by | ||
:kconfig:option:`CONFIG_LWM2M_TICKLESS`. | ||
* Added new :c:macro:`LWM2M_RD_CLIENT_EVENT_DEREGISTER` event. | ||
* Block-wise sending now supports LwM2M read and composite-read operations as well. | ||
When :kconfig:option:`LWM2M_COAP_BLOCK_TRANSFER` is enabled, any content that is larger than |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When :kconfig:option:`LWM2M_COAP_BLOCK_TRANSFER` is enabled, any content that is larger than | |
When :kconfig:option:`CONFIG_LWM2M_COAP_BLOCK_TRANSFER` is enabled, any content that is larger than |
34f3ed3
to
936a56b
Compare
5981023
to
5b44637
Compare
Add 3.5.0 release notes for networking. Signed-off-by: Robert Lubos <[email protected]>
So that the type is visible and "referencable" in the documentation. Signed-off-by: Robert Lubos <[email protected]>
5b44637
to
1bb23ab
Compare
Just rebased after d52cb22 was merged. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Looks like there's a CI build failure, likely because of #63074 |
Add 3.5.0 release notes for networking.