Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
68 changes: 68 additions & 0 deletions content/shared/influxctl/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,71 @@
## 2.12.0 {date="2025-12-09"}

### Features

- Add 'influxdata-archive-keyring' as a suggested package to simplify future repository key rotations for the end user
- Add a new `--perf-debug` flag to the `query` command that outputs performance statistics and gRPC response trailers instead of query results

Example Output for `--perf-debug`:

```
$ ./influxctl query --perf-debug --format table --token REDACTED --database testdb --language influxql "SELECT SUM(i), non_negative_difference(SUM(i)) as diff_i FROM data WHERE time > '2025-11-07T01:20:00Z' AND time < '2025-11-07T03:00:00Z' AND runid = '540cd752bb6411f0a23e30894adea878' GROUP BY time(5m)"
+--------------------------+----------+
| Metric | Value |
+--------------------------+----------+
| Client Duration | 1.222 s |
| Output Rows | 20 |
| Output Size | 647 B |
+--------------------------+----------+
| Compute Duration | 37.2 ms |
| Execution Duration | 243.8 ms |
| Ingester Latency Data | 0 |
| Ingester Latency Plan | 0 |
| Ingester Partition Count | 0 |
| Ingester Response | 0 B |
| Ingester Response Rows | 0 |
| Max Memory | 70 KiB |
| Parquet Files | 1 |
| Partitions | 1 |
| Planning Duration | 9.6 ms |
| Queue Duration | 286.6 µs |
+--------------------------+----------+

$ ./influxctl query --perf-debug --format json --token REDACTED --database testdb --language influxql "SELECT SUM(i), non_negative_difference(SUM(i)) as diff_i FROM data WHERE time > '2025-11-07T01:20:00Z' AND time < '2025-11-07T03:00:00Z' AND runid = '540cd752bb6411f0a23e30894adea878' GROUP BY time(5m)"
{
"client_duration_secs": 1.101,
"compute_duration_secs": 0.037,
"execution_duration_secs": 0.247,
"ingester_latency_data": 0,
"ingester_latency_plan": 0,
"ingester_partition_count": 0,
"ingester_response_bytes": 0,
"ingester_response_rows": 0,
"max_memory_bytes": 71744,
"output_bytes": 647,
"output_rows": 20,
"parquet_files": 1,
"partitions": 1,
"planning_duration_secs": 0.009,
"queue_duration_secs": 0
}
```
```

### Dependency updates

- Update Go to 1.25.5.
- Update `github.com/containerd/containerd` from 1.7.27 to 1.7.29
- Update `github.com/go-git/go-git/v5` from 5.16.3 to 5.16.4
- Update `github.com/jedib0t/go-pretty/v6` from 6.6.8 to 6.7.5
- Update `github.com/ovechkin-dm/mockio/v2` from 2.0.3 to 2.0.4
- Update `go.uber.org/zap` from 1.27.0 to 1.27.1
- Update `golang.org/x/crypto` from 0.43.0 to 0.45.0
- Update `golang.org/x/mod` from 0.29.0 to 0.30.0
- Update `golang.org/x/oauth2` from 0.32.0 to 0.33.0
- Update `google.golang.org/grpc` from 1.76.0 to 1.77.0

---

## 2.11.0 {date="2025-10-17"}

### Features
Expand Down
2 changes: 1 addition & 1 deletion data/products.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ influxdb3_cloud_dedicated:
list_order: 3
latest: cloud-dedicated
link: "https://www.influxdata.com/contact-sales-cloud-dedicated/"
latest_cli: 2.11.0
latest_cli: 2.12.0
placeholder_host: cluster-id.a.influxdb.io
detector_config:
query_languages:
Expand Down
Loading