Skip to content

Commit 0c88ddf

Browse files
authored
Release influxctl v2.9.5 and v2.9.6 (#5565)
2 parents 7c9ae0f + 22c8563 commit 0c88ddf

File tree

11 files changed

+220
-1
lines changed

11 files changed

+220
-1
lines changed

content/influxdb/cloud-dedicated/reference/cli/influxctl/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ influxctl [flags] [command]
3232

3333
| Command | Description |
3434
| :-------------------------------------------------------------------------- | :------------------------------------- |
35+
| [auth](/influxdb/cloud-dedicated/reference/cli/influxctl/auth/) | Log in to or log out of InfluxDB v3 |
3536
| [cluster](/influxdb/cloud-dedicated/reference/cli/influxctl/cluster/) | List InfluxDB v3 cluster information |
3637
| [database](/influxdb/cloud-dedicated/reference/cli/influxctl/database/) | Manage InfluxDB v3 databases |
3738
| [help](/influxdb/cloud-dedicated/reference/cli/influxctl/help/) | Output `influxctl` help information |
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: influxctl auth
3+
description: >
4+
The `influxctl auth` command and its subcommands let a user
5+
log in to and log out of an InfluxDB cluster.
6+
menu:
7+
influxdb_cloud_dedicated:
8+
parent: influxctl
9+
weight: 201
10+
---
11+
12+
The `influxctl auth` command and its subcommands let a user log in to and log out of an {{< product-name omit="Clustered" >}} cluster.
13+
14+
## Usage
15+
16+
```sh
17+
influxctl auth [subcommand] [subcommand options] [arguments...]
18+
```
19+
20+
## Subcommands
21+
22+
| Subcommand | Description |
23+
| :----------------------------------------------------------------------- | :------------------------------ |
24+
| [login](/influxdb/cloud-dedicated/reference/cli/influxctl/auth/login/) | Log in to an InfluxDB cluster using InfluxData Auth0 |
25+
| [logout](/influxdb/cloud-dedicated/reference/cli/influxctl/auth/logout/) | Log out of an InfluxDB cluster; remove local authorization tokens |
26+
| help, h | Output command help |
27+
28+
## Flags
29+
30+
| Flag | | Description |
31+
| :--- | :------- | :------------------ |
32+
| `-h` | `--help` | Output command help |
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: influxctl auth login
3+
description: >
4+
The `influxctl auth login` command lets a user log in to an InfluxDB cluster using
5+
the InfluxDB Cloud Dedicated identity provider.
6+
menu:
7+
influxdb_cloud_dedicated:
8+
parent: influxctl auth
9+
weight: 301
10+
---
11+
12+
The `influxctl auth login` command lets a user log in to an {{< product-name omit="Clustered" >}}
13+
cluster using InfluxData Auth0.
14+
15+
## Usage
16+
17+
```sh
18+
influxctl auth login
19+
```
20+
21+
## Flags
22+
23+
| Flag | | Description |
24+
| :--- | :--------- | :-------------------------------------------- |
25+
| `-h` | `--help` | Output command help |
26+
27+
{{% caption %}}
28+
_Also see [`influxctl` global flags](/influxdb/cloud-dedicated/reference/cli/influxctl/#global-flags)._
29+
{{% /caption %}}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: influxctl auth logout
3+
description: >
4+
The `influxctl auth logout` command lets a user log out of an InfluxDB
5+
cluster and removes the user's local authorization tokens.
6+
menu:
7+
influxdb_cloud_dedicated:
8+
parent: influxctl auth
9+
weight: 301
10+
---
11+
12+
The `influxctl auth logout` command lets a user log out of an {{< product-name omit="Clustered" >}}
13+
cluster and removes the user's local authorization tokens.
14+
15+
## Usage
16+
17+
```sh
18+
influxctl auth logout
19+
```
20+
21+
## Flags
22+
23+
| Flag | | Description |
24+
| :--- | :--------- | :-------------------------------------------- |
25+
| `-h` | `--help` | Output command help |
26+
27+
{{% caption %}}
28+
_Also see [`influxctl` global flags](/influxdb/cloud-dedicated/reference/cli/influxctl/#global-flags)._
29+
{{% /caption %}}

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

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

14+
## v2.9.6 {date="2024-08-15"}
15+
16+
### Bug Fixes
17+
18+
- Update query to wait for EOF on stdin instead of the first newline.
19+
20+
## v2.9.5 {date="2024-08-13"}
21+
22+
### Bug Fixes
23+
24+
- Introduce auth login and logout commands.
25+
26+
### Dependency Updates
27+
28+
- Update `github.com/urfave/cli/v2` from 2.27.2 to 2.27.4
29+
- Update `golang.org/x/mod` from 0.19.0 to 0.20.0
30+
- Update `golang.org/x/oauth2` from 0.21.0 to 0.22.0
31+
1432
## v2.9.4 {date="2024-07-25"}
1533

1634
### Bug Fixes

content/influxdb/clustered/reference/cli/influxctl/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ influxctl [flags] [command]
3232

3333
| Command | Description |
3434
| :-------------------------------------------------------------------- | :------------------------------------- |
35+
| [auth](/influxdb/clustered/reference/cli/influxctl/auth/) | Log in to or log out of InfluxDB v3 |
3536
| [cluster](/influxdb/clustered/reference/cli/influxctl/cluster/) | List InfluxDB v3 cluster information |
3637
| [database](/influxdb/clustered/reference/cli/influxctl/database/) | Manage InfluxDB v3 databases |
3738
| [help](/influxdb/clustered/reference/cli/influxctl/help/) | Output `influxctl` help information |
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: influxctl auth
3+
description: >
4+
The `influxctl auth` command and its subcommands let a user
5+
log in to and log out of an InfluxDB cluster.
6+
menu:
7+
influxdb_clustered:
8+
parent: influxctl
9+
weight: 201
10+
---
11+
12+
The `influxctl auth` command and its subcommands let a user log in to and log out of an {{< product-name omit="Clustered" >}} cluster.
13+
14+
## Usage
15+
16+
```sh
17+
influxctl auth [subcommand] [subcommand options] [arguments...]
18+
```
19+
20+
## Subcommands
21+
22+
| Subcommand | Description |
23+
| :----------------------------------------------------------------- | :------------------------------ |
24+
| [login](/influxdb/clustered/reference/cli/influxctl/auth/login/) | Log in to an InfluxDB cluster using the cluster's identity provider |
25+
| [logout](/influxdb/clustered/reference/cli/influxctl/auth/logout/) | Remove local tokens |
26+
| help, h | Output command help |
27+
28+
## Flags
29+
30+
| Flag | | Description |
31+
| :--- | :------- | :------------------ |
32+
| `-h` | `--help` | Output command help |
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: influxctl auth login
3+
description: >
4+
The `influxctl auth login` command lets a user log in to an InfluxDB cluster
5+
using the cluster's configured identity provider.
6+
menu:
7+
influxdb_clustered:
8+
parent: influxctl auth
9+
weight: 301
10+
---
11+
12+
The `influxctl auth login` command lets a user log in to an {{< product-name omit="Clustered" >}}
13+
cluster using the cluster's configured identity provider.
14+
15+
## Usage
16+
17+
```sh
18+
influxctl auth login
19+
```
20+
21+
## Flags
22+
23+
| Flag | | Description |
24+
| :--- | :--------- | :-------------------------------------------- |
25+
| `-h` | `--help` | Output command help |
26+
27+
{{% caption %}}
28+
_Also see [`influxctl` global flags](/influxdb/clustered/reference/cli/influxctl/#global-flags)._
29+
{{% /caption %}}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: influxctl auth logout
3+
description: >
4+
The `influxctl auth logout` command lets a user log out of an InfluxDB
5+
cluster and removes the user's local authorization tokens.
6+
menu:
7+
influxdb_clustered:
8+
parent: influxctl auth
9+
weight: 301
10+
---
11+
12+
The `influxctl auth logout` command lets a user log out of an {{< product-name omit="Clustered" >}}
13+
cluster and removes the user's local authorization tokens.
14+
15+
## Usage
16+
17+
```sh
18+
influxctl auth logout
19+
```
20+
21+
## Flags
22+
23+
| Flag | | Description |
24+
| :--- | :--------- | :-------------------------------------------- |
25+
| `-h` | `--help` | Output command help |
26+
27+
{{% caption %}}
28+
_Also see [`influxctl` global flags](/influxdb/clustered/reference/cli/influxctl/#global-flags)._
29+
{{% /caption %}}

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

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

15+
## v2.9.6 {date="2024-08-15"}
16+
17+
### Bug Fixes
18+
19+
- Update query subcommand to wait for EOF on stdin instead of the first newline.
20+
21+
## v2.9.5 {date="2024-08-13"}
22+
23+
### Bug Fixes
24+
25+
- Introduce auth login and logout commands.
26+
- Attempt to refresh OAuth tokens when refresh token is present.
27+
28+
### Dependency Updates
29+
30+
- Update `github.com/urfave/cli/v2` from 2.27.2 to 2.27.4
31+
- Update `golang.org/x/mod` from 0.19.0 to 0.20.0
32+
- Update `golang.org/x/oauth2` from 0.21.0 to 0.22.0
33+
1534
## v2.9.4 {date="2024-07-25"}
1635

1736
### Bug Fixes

0 commit comments

Comments
 (0)