Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/config/_default/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pygmentsUseClasses = true
github_repository = "https://github.com/TheThingsIndustries/lorawan-stack-docs"
github_repository_edit = "https://github.com/TheThingsIndustries/lorawan-stack-docs/blob/master/doc/content"
tts_github_repository = "https://github.com/TheThingsNetwork/lorawan-stack"
version = "3.34.3"
version = "3.35.0"

[markup]
[markup.goldmark]
Expand Down
5 changes: 4 additions & 1 deletion doc/content/enterprise/aws/ecs/changelog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
title: "Template Changelog"
aliases: [/getting-started/aws/ecs/changelog]
---

# Upgrading

All meaningful changes to templates are documented in this file.

## Unreleased

## 3.35.0

## 3.34.3

### 5-1-ecs-cluster
Expand Down
30 changes: 30 additions & 0 deletions doc/content/whats-new/3.35.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
date: 2025-11-19T19:00:01Z
title: "3.35.0"
featured: {
added: [],
changed: [],
fixed: []
}
---

### Added

- The NS resends the class C confirmed downlink after the `mac_settings.class_c_timeout` time.
- The CLI now collects telemetry data on which commands and aliases are used. This helps us understand usage patterns and improve the tool.

### Changed

- Increased the default value from 5 to 15 for maximum number of confirmed uplink retransmission for LoRaWAN version prior 1.0.4.
- Ping response settings for the TTIGW protocol to mark less gateway connections as disconnected.
- Improved Network Operations Center's TimescaleDB migrations to avoid possible deadlocks. Migrations now temporarily disable background workers and set a local lock timeout to ensure schema changes can be applied safely and sequentially.
- Increase the payload codec formatter size limit to 64KB.

### Removed

### Fixed

- Network Operations Center has new aggregates for Applications and End-Devices statistics, this seeks to address query timeouts that some tenants have experienced when accessing the Overview page in the metrics dashboard.
- Previously the calculation was done in hourly aggregates, now they are performed in daily aggregates.
- This requires a Network Operations Center database migration (`ttn-lw-stack noc-db migrate`).
- Reset used DevNonces button on the Console now works for LoRaWAN 1.0.4 and 1.1 devices.
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ fields:
default: FORMATTER_NONE
- name: up_formatter_parameter
comment: Parameter for the up_formatter, must be set together. The API enforces
a maximum length of 16KB, but the size may be restricted further by deployment
a maximum length of 64KB, but the size may be restricted further by deployment
configuration.
type: string
rules:
max_len: 40960
max_len: 65536
default: ""
- name: down_formatter
comment: Payload formatter for downlink messages, must be set together with its
Expand All @@ -25,9 +25,9 @@ fields:
default: FORMATTER_NONE
- name: down_formatter_parameter
comment: Parameter for the down_formatter, must be set together. The API enforces
a maximum length of 16KB, but the size may be restricted further by deployment
a maximum length of 64KB, but the size may be restricted further by deployment
configuration.
type: string
rules:
max_len: 40960
max_len: 65536
default: ""
Loading
Loading