diff --git a/CHANGELOG.md b/CHANGELOG.md index 14531c71a4..537e4f308d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,12 @@ For details about compatibility between different releases, see the **Commitment ### Security +## [3.29.2] - 2024-03-26 + +### Fixed + +- Memory leak in components which heavily use HTTP clients, such as the Application Server. + ## [3.29.1] - 2024-03-05 ### Added @@ -2781,7 +2787,8 @@ For details about compatibility between different releases, see the **Commitment NOTE: These links should respect backports. See https://github.com/TheThingsNetwork/lorawan-stack/pull/1444/files#r333379706. --> -[unreleased]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.29.1...v3.29 +[unreleased]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.29.2...v3.29 +[3.29.2]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.29.1...v3.29.2 [3.29.1]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.29.0...v3.29.1 [3.29.0]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.28.2...v3.29.0 [3.28.2]: https://github.com/TheThingsNetwork/lorawan-stack/compare/v3.28.1...v3.28.2 diff --git a/package.json b/package.json index ef70fe6473..7436b2f36b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ttn-stack", - "version": "3.29.1", + "version": "3.29.2", "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 d8f30e4db4..ce30a3abb9 100644 --- a/pkg/version/ttn.go +++ b/pkg/version/ttn.go @@ -3,4 +3,4 @@ package version // TTN Version -var TTN = "3.29.1-dev" +var TTN = "3.29.2-dev" diff --git a/sdk/js/package.json b/sdk/js/package.json index 820051e4d8..dd98ba711d 100644 --- a/sdk/js/package.json +++ b/sdk/js/package.json @@ -1,6 +1,6 @@ { "name": "ttn-lw", - "version": "3.29.1", + "version": "3.29.2", "description": "The Things Stack for LoRaWAN JavaScript SDK", "url": "https://github.com/TheThingsNetwork/lorawan-stack/tree/default/sdk/js", "main": "dist/index.js",