diff --git a/CHANGELOG.md b/CHANGELOG.md index 20615366d6..94e2d62709 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,20 @@ For details about compatibility between different releases, see the **Commitment ### Added +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [3.16.1] - 2021-11-26 + +### Added + - Support for fine timestamps and frequency offsets sent by gateways with SX1303 concentrator using the legacy UDP protocol. - Support for resetting end device session context and MAC state in the Console. - The Content-Security-Policy header (that was previously behind the `webui.csp` feature flag) is now enabled by default. @@ -27,10 +41,6 @@ For details about compatibility between different releases, see the **Commitment - Gateway server disconnects LoRa Basics Station gateways that stop sending pongs to server pings. This does not apply to gateways that don't support pongs. - The new plugin for reading/writing JSON in our API (that was previously behind the `jsonpb.jsonplugin` feature flag) is now enabled by default. All API responses should be equivalent, but in some cases object fields may be in a different order. -### Deprecated - -### Removed - ### Fixed - The reported sub-band's `downlink_utilization` in gateway connection stats now represents the utilization of the available duty-cycle time. @@ -38,8 +48,6 @@ For details about compatibility between different releases, see the **Commitment - Using the correct timestamp when retreiving the "Last activity" data point for Gateways on initial page loads in the Console. - Events reappearing in the end device data view after clearing them when navigating back and forth. -### Security - ## [3.16.0] - 2021-11-12 ### Added @@ -1902,7 +1910,8 @@ For details about compatibility between different releases, see the **Commitment -[unreleased]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.16.0...v3.16 +[unreleased]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.16.1...v3.16 +[3.16.1]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.16.0...v3.16.1 [3.16.0]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.15.3...v3.16.0 [3.15.2]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.15.2...v3.15.3 [3.15.2]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.15.1...v3.15.2 diff --git a/data/lorawan-devices b/data/lorawan-devices index 4feba6d1d3..a44436c81b 160000 --- a/data/lorawan-devices +++ b/data/lorawan-devices @@ -1 +1 @@ -Subproject commit 4feba6d1d3b5e1b20ab4882147a357e34e92bb93 +Subproject commit a44436c81b04b62723b5bc428e807090dfc1656a diff --git a/data/lorawan-webhook-templates b/data/lorawan-webhook-templates index 22324cc589..68c8179ae8 160000 --- a/data/lorawan-webhook-templates +++ b/data/lorawan-webhook-templates @@ -1 +1 @@ -Subproject commit 22324cc589f76fe6e8c361e6a825a43ed1c72ce3 +Subproject commit 68c8179ae88d873098b839f6edd42cc5727e5b54 diff --git a/package.json b/package.json index 8b50b19f77..885d2978dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ttn-stack", - "version": "3.16.0", + "version": "3.16.1", "description": "The Things Stack", "main": "index.js", "repository": "https://github.com/TheThingsNetwork/lorawan-stack.git", diff --git a/pkg/version/ttn.go b/pkg/version/ttn.go index 0bb734be6d..2b91146910 100644 --- a/pkg/version/ttn.go +++ b/pkg/version/ttn.go @@ -3,4 +3,4 @@ package version // TTN Version -var TTN = "3.16.0-dev" +var TTN = "3.16.1-dev" diff --git a/sdk/js/package.json b/sdk/js/package.json index 32032ab632..de00c7a7c6 100644 --- a/sdk/js/package.json +++ b/sdk/js/package.json @@ -1,6 +1,6 @@ { "name": "ttn-lw", - "version": "3.16.0", + "version": "3.16.1", "description": "The Things Stack for LoRaWAN JavaScript SDK", "url": "https://github.com/TheThingsNetwork/lorawan-stack/tree/default/sdk/js", "main": "dist/index.js",