From 739560f8667ea4ef98f2b77664ccaec9ff834c79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coffeegoddd=E2=98=95=EF=B8=8F=E2=9C=A8?= Date: Fri, 5 Sep 2025 14:21:01 -0700 Subject: [PATCH 1/3] /packages/doltlab/content/reference/installer: update docs for deprecated and new field --- .../content/reference/installer/cli.md | 8 ++++++- .../reference/installer/configuration-file.md | 21 ++++++++++++++++--- 2 files changed, 25 insertions(+), 4 deletions(-) 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_. From b5b2aacd87277ceb78c5098503d41f30cd3328e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coffeegoddd=E2=98=95=EF=B8=8F=E2=9C=A8?= Date: Tue, 9 Sep 2025 15:23:17 -0700 Subject: [PATCH 2/3] /packages/doltlab/content: updates for doltlab v2.4.2 --- packages/doltlab/content/SUMMARY.md | 1 + .../content/reference/release-notes/README.md | 1 + .../content/reference/release-notes/v2.4.2.md | 17 +++++++++++++++++ 3 files changed, 19 insertions(+) create mode 100644 packages/doltlab/content/reference/release-notes/v2.4.2.md 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/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..ce1646b1 --- /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.1.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.1.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. + From 4c97d9e9bd169e8c22755f7d7f6b1bbda455f2cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coffeegoddd=E2=98=95=EF=B8=8F=E2=9C=A8?= Date: Wed, 10 Sep 2025 11:58:46 -0700 Subject: [PATCH 3/3] /packages/doltlab/content/reference/release-notes/v2.4.2.md: fix links --- packages/doltlab/content/reference/release-notes/v2.4.2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/doltlab/content/reference/release-notes/v2.4.2.md b/packages/doltlab/content/reference/release-notes/v2.4.2.md index ce1646b1..97ecfeb1 100644 --- a/packages/doltlab/content/reference/release-notes/v2.4.2.md +++ b/packages/doltlab/content/reference/release-notes/v2.4.2.md @@ -2,9 +2,9 @@ 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.1.zip) +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.1.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.