-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 3.32.1 documentation (#1384)
* docs: Release 3.32.1 * doc: Update featured section and fix AWS ECS changelog --------- Co-authored-by: Krishna Iyer <krishna@thethingsindustries.com>
- Loading branch information
1 parent
98253bb
commit a5beaed
Showing
15 changed files
with
14,130 additions
and
717 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
date: 2024-10-14T09:33:47Z | ||
title: "3.32.1" | ||
featured: | ||
{ | ||
added: [Endpoint for claiming gateways using a qr code], | ||
fixed: | ||
[ | ||
RX2 and Class C with The Things Industries gateway protocol in dynamic channel plan regions (including `EU868`)., | ||
], | ||
} | ||
--- | ||
|
||
### Added | ||
|
||
- Option to filter out non-gateway related frequency plans. | ||
- `ListFrequencyPlans` RPC has a new `gateways-only` flag. | ||
- Option to pause application webhooks. | ||
- Endpoint for claiming gateways using a qr code | ||
- Update the GetTemplate endpoint in device repository to check for profile identifiers in the vendor index. | ||
- Support for claiming a gateway via QR code in the Console. | ||
|
||
### Fixed | ||
|
||
- RX2 and Class C with The Things Industries gateway protocol in dynamic channel plan regions (including `EU868`). | ||
- Filtering the list end points for end devices and gateways using the HTTP API. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
doc/data/api/ttn.lorawan.v3/messages/ParseGatewayQRCodeRequest.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: ParseGatewayQRCodeRequest | ||
fields: | ||
- name: format_id | ||
comment: |- | ||
QR code format identifier. | ||
If this field is not specified, the server will default to ttigpro1. | ||
type: string | ||
rules: | ||
max_len: 36 | ||
pattern: ^[a-z0-9](?:[-]?[a-z0-9]){2,}$|^$ | ||
default: "" | ||
- name: qr_code | ||
comment: Raw QR code contents. | ||
type: bytes | ||
rules: | ||
min_len: 10 | ||
max_len: 1024 | ||
default: "" |
15 changes: 15 additions & 0 deletions
15
doc/data/api/ttn.lorawan.v3/messages/ParseGatewayQRCodeResponse.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: ParseGatewayQRCodeResponse | ||
fields: | ||
- name: format_id | ||
comment: Identifier of the format used to parse the QR code data. | ||
type: string | ||
default: "" | ||
- name: gateway_eui | ||
type: bytes | ||
rules: | ||
len: 8 | ||
ignore_empty: true | ||
default: "" | ||
- name: owner_token | ||
type: string | ||
default: "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
doc/data/api/ttn.lorawan.v3/services/GatewayQRCodeGenerator.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: GatewayQRCodeGenerator | ||
comment: The GatewayQRCodeGenerator service provides functionality to generate and | ||
parse QR codes for gateways. | ||
methods: | ||
Parse: | ||
name: Parse | ||
comment: Parse QR Codes of known formats and return the information contained | ||
within. | ||
input: | ||
name: ParseGatewayQRCodeRequest | ||
output: | ||
name: ParseGatewayQRCodeResponse | ||
http: | ||
- method: POST | ||
path: /qr-codes/gateways/parse | ||
- method: POST | ||
path: /qr-codes/gateways/{format_id}/parse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.