Skip to content

Commit 6b29cef

Browse files
authored
InfluxDB Enterprise 1.11.7 (#5641)
* InfluxDB Enterprise 1.11.7 * added items to enterprise 1.11.7 release notes
1 parent 9ecceb5 commit 6b29cef

File tree

3 files changed

+53
-6
lines changed

3 files changed

+53
-6
lines changed

content/enterprise_influxdb/v1/about-the-project/release-notes.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,30 @@ InfluxDB Enterprise builds are available. For more information, see
1919
[FIPS-compliant InfluxDB Enterprise builds](/enterprise_influxdb/v1/introduction/installation/fips-compliant/).
2020
{{% /note %}}
2121

22+
## v1.11.7 {date"2024-09-19"}
23+
24+
### Bug Fixes
25+
26+
- Log errors when RPC calls fail for `MetaExecutor` operations like
27+
`SHOW TAG VALUES` and `SHOW TAG KEYS`.
28+
- Prevent `GROUP BY` queries with an offset that crossed a DST boundary from failing.
29+
- Ensure `range()` filters correctly for all years.
30+
31+
### Features
32+
33+
- Run the `FIPS POST` if available and log the result.
34+
- Add support for LDAP over SSL (LDAPS).
35+
- Improve performance of `SHOW TAG VALUES` when using FGA by optimizing queries
36+
to be limited to only tag values the user has permission to access.
37+
38+
### Other
39+
40+
- Upgrade to Go 1.22.7.
41+
- Upgrade `jwt-go`.
42+
- Upgrade `dvsekhvalnov/jose2go` to v1.6.0.
43+
44+
---
45+
2246
## v1.11.6 {date="2024-08-02"}
2347

2448
### Bug Fixes

content/enterprise_influxdb/v1/administration/configure/security/ldap.md

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,35 @@ enabled = true
164164
port = 389
165165
166166
# Security mode for LDAP connection to this server.
167-
# The recommended security is set "starttls" by default. This uses an initial unencrypted connection
168-
# and upgrades to TLS as the first action against the server,
169-
# per the LDAPv3 standard.
170-
# Other options are "starttls+insecure" to behave the same as starttls
171-
# but skip server certificate verification, or "none" to use an unencrypted connection.
167+
# Valid settings: none, starttls, starttls+insecure, ldaps, ldaps+insecure.
168+
# The recommended security is "starttls", which is the default. This uses
169+
# an initial unencrypted connection and upgrades to TLS as the first action
170+
# against the server, per the LDAPv3 standard.
171+
# Another secure option is "ldaps", which starts the connection over
172+
# TLS instead of upgrading like "starttls". This generally requires a
173+
# dedicated port (usually 636). "starttls" is generally preferred
174+
# to "ldaps".
175+
# Other options are "starttls+insecure" and "ldaps+insecure" which behave
176+
# the same as "starttls" and and "ldaps" respectively, except they ignore
177+
# server certificate verification errors.
178+
# Finally, "none" does not use TLS. This is not recommended for
179+
# production systems.
172180
security = "starttls"
181+
182+
# Client certificates to present to the LDAP server are supported with
183+
# "client-tls-certificate" and "client-tls-private-key" configurations.
184+
# These are paths to the X.509 client certificate and corresponding private
185+
# key, respectively. If "client-tls-certificate" is set but
186+
# "client-tls-private-key" is not, then "client-tls-certificate" is assumed
187+
# to bundle both the certificate and private key.
188+
# The LDAP server may request and require valid client certificates
189+
# even when InfluxDB is configured with an insecure TLS mode that ignores
190+
# LDAP server certificate errors.
191+
# Not all LDAP servers will request a client certificate. It is not
192+
# necessary to set "client-tls-certificate" and "client-tls-private-key"
193+
# if the LDAP server does not require client certificates.
194+
client-tls-certificate = "/var/run/secrets/ldapClient.pem"
195+
client-tls-private-key = "/var/run/secrets/ldapClient.key"
173196
174197
# Credentials to use when searching for a user or group.
175198
bind-dn = "cn=read-only-admin,dc=example,dc=com"

data/products.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ enterprise_influxdb:
113113
- v1.7
114114
latest: v1.11
115115
latest_patches:
116-
v1: 1.11.6
116+
v1: 1.11.7
117117

118118
flux:
119119
name: Flux

0 commit comments

Comments
 (0)