-
Notifications
You must be signed in to change notification settings - Fork 307
feat(influxdb3): add v3.3.0 release notes and admin token recovery do… #6266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR documents the v3.3.0 release for InfluxDB 3 Core and Enterprise, adding comprehensive release notes and documenting a new admin token recovery feature. The changes include version bumps, detailed release notes categorized by Core and Enterprise features/fixes, and complete documentation for the new admin token recovery server functionality.
Key Changes
- Version updates to 3.3.0 for Core/Enterprise and 1.1.0 for Explorer
- Comprehensive v3.3.0 release notes with grouped categories for features and bug fixes
- Complete documentation of the admin token recovery server feature including CLI options, configuration, and usage examples
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
File | Description |
---|---|
data/products.yml |
Bumps version numbers for Core (3.3.0), Enterprise (3.3.0), and Explorer (1.1.0) |
content/shared/v3-core-enterprise-release-notes/_index.md |
Adds comprehensive v3.3.0 release notes with categorized Core and Enterprise features/fixes, plus minor formatting corrections |
content/shared/influxdb3-admin/tokens/admin/regenerate.md |
Updates admin token regeneration documentation with lost token recovery instructions and security warnings |
content/influxdb3/enterprise/reference/config-options.md |
Documents the new admin-token-recovery-http-bind configuration option with usage examples and security warnings |
content/influxdb3/enterprise/reference/cli/influxdb3/serve.md |
Adds admin-token-recovery-http-bind option to CLI serve command reference table |
content/influxdb3/core/reference/config-options.md |
Documents the new admin-token-recovery-http-bind configuration option for Core version |
content/influxdb3/core/reference/cli/influxdb3/serve.md |
Adds admin-token-recovery-http-bind option to Core CLI serve command reference table |
✅ Link Validation PassedAll links in the changed files are valid! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just questions about the new recovery option.
|
||
```bash | ||
# Start server with recovery endpoint | ||
influxdb3 serve --admin-token-recovery-http-bind |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, this option appears to work differently than other options. If you include just the option, does it default to 127.0.0.1:8182
, or do you have to specify a value? AFAIK, options either require a value or are a boolean option.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, this option appears to work differently than other options. If you include just the option, does it default to
127.0.0.1:8182
, or do you have to specify a value? AFAIK, options either require a value or are a boolean option.
This option can be used with or without specifying an address:
- Without value: Uses default address
127.0.0.1:8182
- With value: Uses the specified address
data/products.yml
Outdated
@@ -35,7 +35,7 @@ influxdb3_explorer: | |||
menu_category: tools | |||
list_order: 1 | |||
latest: explorer | |||
latest_patch: 1.0.0 | |||
latest_patch: 1.1.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have this in the Explorer 1.1 PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have this in the Explorer 1.1 PR.
Undid my Explorer version bump
…cumentation - Add v3.3.0 release notes with grouped categories for Core and Enterprise features/fixes - Document admin token recovery server feature (--admin-token-recovery-http-bind) - Add recovery server option to CLI serve command reference (alphabetically sorted) - Add configuration details for admin token recovery in config options - Update regenerate token documentation with lost token recovery instructions - Include security warnings about unauthenticated recovery endpoint - Fix Vale linting issues (Parquet capitalization, remove exclamation point) Related to influxdb PR #26594
736d1b6
to
ad7ee87
Compare
…roll docs analytics into the Master property with other subdomains
3c85a15
to
172b9d7
Compare
…cumentation
Related to influxdb PR #26594, influxdata/influxdb#26646