Skip to content

Commit 619e757

Browse files
authored
Merge branch 'master' into fix-reference-links
2 parents dd8f78b + d234e1e commit 619e757

File tree

25 files changed

+647
-19
lines changed

25 files changed

+647
-19
lines changed

content/influxdb3/cloud-dedicated/reference/cli/influxctl/management/list.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,11 @@ influxctl management list [--format=table|json]
3939

4040
## Flags
4141

42-
| Flag | | Description |
43-
| :--- | :--------- | :-------------------------------------------- |
44-
| | `--format` | Output format (`table` _(default)_ or `json`) |
45-
| `-h` | `--help` | Output command help |
42+
| Flag | | Description |
43+
| :--- | :--------- | :------------------------------------------------------------------------------------------------------------ |
44+
| | `--format` | Output format (`table` _(default)_ or `json`) |
45+
| | `--sort` | Sort output by a specific column (`created` _(default)_, `id`, `description`, `prefix`, `expires`, `revoked`) |
46+
| `-h` | `--help` | Output command help |
4647

4748
{{% caption %}}
4849
_Also see [`influxctl` global flags](/influxdb3/cloud-dedicated/reference/cli/influxctl/#global-flags)._

content/influxdb3/cloud-dedicated/reference/cli/influxctl/token/list.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ influxctl token list [--format=table|json]
2424

2525
## Flags
2626

27-
| Flag | | Description |
28-
| :--- | :--------- | :-------------------------------------------- |
29-
| | `--format` | Output format (`table` _(default)_ or `json`) |
30-
| `-h` | `--help` | Output command help |
27+
| Flag | | Description |
28+
| :--- | :--------- | :------------------------------------------------------------------------------------------------------------ |
29+
| | `--format` | Output format (`table` _(default)_ or `json`) |
30+
| | `--sort` | Sort output by a specific column (`created` _(default)_, `id`, `description`, `prefix`, `expires`, `revoked`) |
31+
| `-h` | `--help` | Output command help |
3132

3233
{{% caption %}}
3334
_Also see [`influxctl` global flags](/influxdb3/cloud-dedicated/reference/cli/influxctl/#global-flags)._

content/influxdb3/cloud-dedicated/reference/release-notes/influxctl.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,34 @@ menu:
1111
weight: 202
1212
---
1313

14+
## v2.9.9 {date="2025-01-24"}
15+
16+
### Features
17+
18+
- Sort [`influxctl token list`](/influxdb3/cloud-dedicated/reference/cli/influxctl/token/list/)
19+
and [`influxctl management list`](/influxdb3/cloud-dedicated/reference/cli/influxctl/management/list/) output.
20+
21+
### Bug fixes
22+
23+
- Remove `UpdateAccount` and `UpdateCluster`.
24+
- Remove "incorrect version" warning for gRPC unimplemented error code.
25+
- Correctly parse multi-line queries from stdin.
26+
27+
### Dependency updates
28+
29+
- Update `github.com/fatih/color` from 1.17.0 to 1.18.0.
30+
- Update `github.com/go-git/go-git/v5` from 5.12.0 to 5.13.1.
31+
- Update `github.com/jedib0t/go-pretty/v6` from 6.6.0 to 6.6.5.
32+
- Update `github.com/stretchr/testify` from 1.9.0 to 1.10.0.
33+
- Update `golang.org/x/crypto` from 0.27.0 to 0.31.0.
34+
- Update `golang.org/x/mod` from 0.21.0 to 0.22.0.
35+
- Update `golang.org/x/oauth2` from 0.23.0 to 0.25.0.
36+
- Update `google.golang.org/grpc` from 1.67.1 to 1.69.4.
37+
- Update `google.golang.org/protobuf` from 1.35.1 to 1.36.3.
38+
- Update Go to v1.23.5.
39+
40+
---
41+
1442
## v2.9.8 {date="2024-10-15"}
1543

1644
### Bug Fixes

content/influxdb3/clustered/reference/cli/influxctl/management/list.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,11 @@ influxctl management list [--format=table|json]
3939

4040
## Flags
4141

42-
| Flag | | Description |
43-
| :--- | :--------- | :-------------------------------------------- |
44-
| | `--format` | Output format (`table` _(default)_ or `json`) |
45-
| `-h` | `--help` | Output command help |
42+
| Flag | | Description |
43+
| :--- | :--------- | :------------------------------------------------------------------------------------------------------------ |
44+
| | `--format` | Output format (`table` _(default)_ or `json`) |
45+
| | `--sort` | Sort output by a specific column (`created` _(default)_, `id`, `description`, `prefix`, `expires`, `revoked`) |
46+
| `-h` | `--help` | Output command help |
4647

4748
{{% caption %}}
4849
_Also see [`influxctl` global flags](/influxdb3/clustered/reference/cli/influxctl/#global-flags)._

content/influxdb3/clustered/reference/cli/influxctl/token/list.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ influxctl token list [--format=table|json]
2323

2424
## Flags
2525

26-
| Flag | | Description |
27-
| :--- | :--------- | :-------------------------------------------- |
28-
| | `--format` | Output format (`table` _(default)_ or `json`) |
29-
| `-h` | `--help` | Output command help |
26+
| Flag | | Description |
27+
| :--- | :--------- | :------------------------------------------------------------------------------------------------------------ |
28+
| | `--format` | Output format (`table` _(default)_ or `json`) |
29+
| | `--sort` | Sort output by a specific column (`created` _(default)_, `id`, `description`, `prefix`, `expires`, `revoked`) |
30+
| `-h` | `--help` | Output command help |
3031

3132
{{% caption %}}
3233
_Also see [`influxctl` global flags](/influxdb3/clustered/reference/cli/influxctl/#global-flags)._

content/influxdb3/clustered/reference/release-notes/influxctl.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,34 @@ weight: 202
1212
canonical: /influxdb3/cloud-dedicated/reference/release-notes/influxctl/
1313
---
1414

15+
## v2.9.9 {date="2025-01-24"}
16+
17+
### Features
18+
19+
- Sort [`influxctl token list`](/influxdb3/clustered/reference/cli/influxctl/token/list/)
20+
and [`influxctl management list`](/influxdb3/clustered/reference/cli/influxctl/management/list/) output.
21+
22+
### Bug fixes
23+
24+
- Remove `UpdateAccount` and `UpdateCluster`.
25+
- Remove "incorrect version" warning for gRPC unimplemented error code.
26+
- Correctly parse multi-line queries from stdin.
27+
28+
### Dependency updates
29+
30+
- Update `github.com/fatih/color` from 1.17.0 to 1.18.0.
31+
- Update `github.com/go-git/go-git/v5` from 5.12.0 to 5.13.1.
32+
- Update `github.com/jedib0t/go-pretty/v6` from 6.6.0 to 6.6.5.
33+
- Update `github.com/stretchr/testify` from 1.9.0 to 1.10.0.
34+
- Update `golang.org/x/crypto` from 0.27.0 to 0.31.0.
35+
- Update `golang.org/x/mod` from 0.21.0 to 0.22.0.
36+
- Update `golang.org/x/oauth2` from 0.23.0 to 0.25.0.
37+
- Update `google.golang.org/grpc` from 1.67.1 to 1.69.4.
38+
- Update `google.golang.org/protobuf` from 1.35.1 to 1.36.3.
39+
- Update Go to v1.23.5.
40+
41+
---
42+
1543
## v2.9.8 {date="2024-10-15"}
1644

1745
### Bug Fixes
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: Administer {{< product-name >}}
3+
description: >
4+
Perform administrative tasks in {{< product-name >}} such as creating and
5+
managing databases and tokens.
6+
menu:
7+
influxdb3_core:
8+
name: Administer InfluxDB
9+
weight: 11
10+
source: /shared/influxdb3-admin/_index.md
11+
---
12+
13+
<!--
14+
The content of this file is located at content/shared/influxdb3-admin/_index.md
15+
-->
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: Manage databases
3+
seotitle: Manage databases in {{< product-name >}}
4+
description: >
5+
An {{< product-name >}} database is a named location where time series data is
6+
stored. Each database can contain multiple tables.
7+
menu:
8+
influxdb3_core:
9+
parent: Administer InfluxDB
10+
weight: 103
11+
influxdb3/core/tags: [databases]
12+
related:
13+
- /influxdb3/core/write-data/best-practices/schema-design/
14+
- /influxdb3/core/reference/cli/influxdb3/
15+
alt_links:
16+
cloud: /influxdb/cloud/admin/buckets/
17+
cloud_dedicated: /influxdb3/cloud-dedicated/admin/databases/
18+
cloud_serverless: /influxdb3/cloud-serverless/admin/buckets/
19+
v2: /influxdb/v2/admin/buckets/
20+
source: /shared/influxdb3-admin/databases/_index.md
21+
---
22+
23+
<!--
24+
The content of this file is located at content/shared/influxdb3-admin/databases/_index.md
25+
-->
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: Create a database
3+
description: >
4+
Use the [`influxdb3 create database` command](/influxdb3/core/reference/cli/influxdb3/create/database/)
5+
to create a new database in {{< product-name >}}.
6+
menu:
7+
influxdb3_core:
8+
parent: Manage databases
9+
weight: 201
10+
list_code_example: |
11+
<!--pytest.mark.skip-->
12+
13+
{{% code-placeholders "DATABASE_NAME" %}}
14+
```sh
15+
influxdb3 create database DATABASE_NAME
16+
```
17+
{{% /code-placeholders %}}
18+
related:
19+
- /influxdb3/core/reference/cli/influxdb3/create/database/
20+
source: /shared/influxdb3-admin/databases/create.md
21+
---
22+
23+
<!--
24+
The content of this file is located at content/shared/influxdb3-admin/databases/create.md
25+
-->
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: Delete a database
3+
description: >
4+
Use the [`influxdb3 delete database` command](/influxdb3/core/reference/cli/influxdb3/delete/database/)
5+
to delete a database from {{< product-name >}}.
6+
Provide the name of the database you want to delete.
7+
menu:
8+
influxdb3_core:
9+
parent: Manage databases
10+
weight: 203
11+
list_code_example: |
12+
{{% code-placeholders "DATABASE_NAME" %}}
13+
```sh
14+
influxdb3 delete database DATABASE_NAME
15+
```
16+
{{% /code-placeholders %}}
17+
related:
18+
- /influxdb3/core/reference/cli/influxdb3/delete/database/
19+
source: /shared/influxdb3-admin/databases/delete.md
20+
---
21+
22+
<!--
23+
The content of this file is located at content/shared/influxdb3-admin/databases/delete.md
24+
-->

0 commit comments

Comments
 (0)