diff --git a/packages/doltlab/content/SUMMARY.md b/packages/doltlab/content/SUMMARY.md index 985ab606..816f95b1 100644 --- a/packages/doltlab/content/SUMMARY.md +++ b/packages/doltlab/content/SUMMARY.md @@ -35,6 +35,7 @@ - [Configuration file reference](reference/installer/configuration-file.md) - [Command line reference](reference/installer/cli.md) - [Release Notes](reference/release-notes/README.md) + - [v2.4.2](reference/release-notes/v2.4.2.md) - [v2.4.1](reference/release-notes/v2.4.1.md) - [v2.4.0](reference/release-notes/v2.4.0.md) - [v2.3.14](reference/release-notes/v2.3.14.md) diff --git a/packages/doltlab/content/reference/installer/cli.md b/packages/doltlab/content/reference/installer/cli.md index 0194fcd3..06c6c85c 100644 --- a/packages/doltlab/content/reference/installer/cli.md +++ b/packages/doltlab/content/reference/installer/cli.md @@ -643,10 +643,16 @@ Configuration file equivalent [super_admins](./configuration-file.md#super_admin ## tls-cert-chain -_String_. Absolute path to TLS certificate chain with `.pem` extension. DoltLab Enterprise only. +_String_. Deprecated, use `tls-full-chain-cert` instead. Absolute path to a TLS full chain certificate with `.pem` extension. DoltLab Enterprise only. Configuration file equivalent [cert_chain](./configuration-file.md#cert_chain). +## tls-full-chain-cert + +_String_. Absolute path to a TLS full chain certificate with `.pem` extension. DoltLab Enterprise only. + +Configuration file equivalent [full_chain_cert](./configuration-file.md#full_chain_cert). + ## tls-private-key _String_. Absolute path to TLS private key with `.pem` extension. DoltLab Enterprise only. diff --git a/packages/doltlab/content/reference/installer/configuration-file.md b/packages/doltlab/content/reference/installer/configuration-file.md index 207a62d1..e657165a 100644 --- a/packages/doltlab/content/reference/installer/configuration-file.md +++ b/packages/doltlab/content/reference/installer/configuration-file.md @@ -117,7 +117,8 @@ enterprise: no_multihost_default_placement_preferences_spreads: false scheme: "http" tls: - cert_chain: "/path/to/cert.pem" + cert_chain: "/path/to/cert.pem" # Deprecated: use `full_chain_cert` instead. + full_chain_cert: "/path/to/cert.pem" private_key: "/path/to/key.pem" smtp: host: "smtp.email.com" @@ -1305,12 +1306,13 @@ Command line equivalent [scheme](./cli.md#scheme). _Dictionary_. TLS configuration options. DoltLab Enterprise only. _Optional_. See [serving DoltLab natively over HTTPS](../../guides/enterprise.md#serve-doltlab-over-https-natively) for more information. -- [cert_chain](#cert_chain) +- [cert_chain](#cert_chain) Deprecated, use `full_chain_cert` instead. +- [full_chain_cert](#full_chain_cert) - [private_key](#private_key) ### cert_chain -_String_. The absolute path to a TLS certificate chain with `.pem` extension. _Required_. +_String_. Deprecated, use `full_chain_cert` instead. The absolute path to a TLS full chain certificate with `.pem` extension. _Required_. ```yaml # example installer_config.yaml @@ -1321,6 +1323,19 @@ enterprise: Command line equivalent [tls-cert-chain](./cli.md#tls-cert-chain). +### full_chain_cert + +_String_. The absolute path to a TLS full chain certificate with `.pem` extension. _Required_. + +```yaml +# example installer_config.yaml +enterprise: + tls: + full_chain_cert: /path/to/tls/cert/chain.pem +``` + +Command line equivalent [tls-full-chain-cert](./cli.md#tls-full-chain-cert). + ### private_key _String_. The absolute path to a TLS private key with `.pem` extension. _Required_. diff --git a/packages/doltlab/content/reference/release-notes/README.md b/packages/doltlab/content/reference/release-notes/README.md index f25a4a52..13ca9049 100644 --- a/packages/doltlab/content/reference/release-notes/README.md +++ b/packages/doltlab/content/reference/release-notes/README.md @@ -6,6 +6,7 @@ DoltLab is currently closed-source, but the [dolthub/doltlab-issues](https://git The following is a list of release notes for available DoltLab versions >= `v2.0.0`. DoltLab and DoltHub share the same source code. For this reason, we list fixes related to DoltLab issues in the `DoltLab Features/Bug Fixes` section of the release notes, and fixes corresponding to DoltHub issuers in the `DoltLab Features/Bug Fixes` section. +- [DoltLab v2.4.2](./v2.4.2.md) - [DoltLab v2.4.1](./v2.4.1.md) - [DoltLab v2.4.0](./v2.4.0.md) - [DoltLab v2.3.14](./v2.3.14.md) diff --git a/packages/doltlab/content/reference/release-notes/v2.4.2.md b/packages/doltlab/content/reference/release-notes/v2.4.2.md new file mode 100644 index 00000000..97ecfeb1 --- /dev/null +++ b/packages/doltlab/content/reference/release-notes/v2.4.2.md @@ -0,0 +1,17 @@ +--- +title: DoltLab v2.4.2 Release Notes +--- + +Download at [https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-v2.4.2.zip](https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-v2.4.2.zip) + +Service images can be downloaded at [https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-service-images-v2.4.2.zip](https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-service-images-v2.4.2.zip) + +## DoltLab Features/Bug Fixes +* [Fixes issue](https://github.com/dolthub/doltlab-issues/issues/129) where host TLS cert bundle was not mounted to `doltlabapi` container. +* [Fixes long retry time](https://github.com/dolthub/doltlab-issues/issues/134) for failed OIDC provider connections. +* [Deprecates `cert_chain` field in favor of `full_chain_cert` TLS field in `installer_config.yaml`](https://github.com/dolthub/doltlab-issues/issues/127). +* Bump version of Dolt in Jobs to v1.59.5. + +## DoltHub Features/Bug Fixes +* Misc. UI design changes and bug fixes. +