This is an automated email from the ASF dual-hosted git repository. willholley pushed a commit to branch wh/couchdb-3.5.1 in repository https://gitbox.apache.org/repos/asf/couchdb-helm.git
commit 24bc1f0c716ab91745cc9f95abe62be05512fc4e Author: Will Holley <[email protected]> AuthorDate: Thu Nov 20 14:59:49 2025 +0000 feat: update CouchDB to 3.5.1 Updates CouchDB to 3.5.1. Release notes https://docs.couchdb.org/en/stable/whatsnew/3.5.html#version-3-5-1 --- couchdb/Chart.yaml | 4 ++-- couchdb/NEWS.md | 3 +++ couchdb/README.md | 12 ++++++------ couchdb/README.md.gotmpl | 2 +- couchdb/values.yaml | 2 +- 5 files changed, 13 insertions(+), 10 deletions(-) diff --git a/couchdb/Chart.yaml b/couchdb/Chart.yaml index 0f8b711..a2ad72f 100644 --- a/couchdb/Chart.yaml +++ b/couchdb/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: couchdb -version: 4.6.2 -appVersion: 3.5.0 +version: 4.6.3 +appVersion: 3.5.1 description: A database featuring seamless multi-master sync, that scales from big data to mobile, with an intuitive HTTP/JSON API and designed for reliability. diff --git a/couchdb/NEWS.md b/couchdb/NEWS.md index bf134f6..050f9c4 100644 --- a/couchdb/NEWS.md +++ b/couchdb/NEWS.md @@ -1,5 +1,8 @@ # NEWS +## 4.6.3 +- Update default CouchDB version to 3.5.1 + ## 4.6.2 - Added options to specify `erlangCookie` and `cookieAuthSecret` within the extra secret diff --git a/couchdb/README.md b/couchdb/README.md index 5389ed6..4a2cf65 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -1,6 +1,6 @@ # CouchDB -  +  Apache CouchDB is a database featuring seamless multi-master sync, that scales from big data to mobile, with an intuitive HTTP/JSON API and designed for @@ -18,7 +18,7 @@ storage volumes to each Pod in the Deployment. ```bash $ helm repo add couchdb https://apache.github.io/couchdb-helm $ helm install couchdb/couchdb \ - --version=4.6.2 \ + --version=4.6.3 \ --set allowAdminParty=true \ --set couchdbConfig.couchdb.uuid=$(curl https://www.uuidgenerator.net/api/version4 2>/dev/null | tr -d -) ``` @@ -44,7 +44,7 @@ Afterwards install the chart replacing the UUID ```bash $ helm install \ --name my-release \ - --version=4.6.2 \ + --version=4.6.3 \ --set couchdbConfig.couchdb.uuid=decafbaddecafbaddecafbaddecafbad \ couchdb/couchdb ``` @@ -78,7 +78,7 @@ and then install the chart while overriding the `createAdminSecret` setting: ```bash $ helm install \ --name my-release \ - --version=4.6.2 \ + --version=4.6.3 \ --set createAdminSecret=false \ --set couchdbConfig.couchdb.uuid=decafbaddecafbaddecafbaddecafbad \ couchdb/couchdb @@ -133,7 +133,7 @@ version semantics. You can upgrade directly from `stable/couchdb` to this chart ```bash $ helm repo add couchdb https://apache.github.io/couchdb-helm -$ helm upgrade my-release --version=4.6.2 couchdb/couchdb +$ helm upgrade my-release --version=4.6.3 couchdb/couchdb ``` ## Configuration @@ -178,7 +178,7 @@ A variety of other parameters are also configurable. See the comments in the | `cookieAuthSecret` | auto-generated | | `extraPorts` | [] (a list of ContainerPort objects) | | `image.repository` | couchdb | -| `image.tag` | 3.5.0 | +| `image.tag` | 3.5.1 | | `image.pullPolicy` | IfNotPresent | | `searchImage.repository` | kocolosk/couchdb-search | | `searchImage.tag` | 0.1.0 | diff --git a/couchdb/README.md.gotmpl b/couchdb/README.md.gotmpl index dda7188..1d56537 100644 --- a/couchdb/README.md.gotmpl +++ b/couchdb/README.md.gotmpl @@ -163,7 +163,7 @@ A variety of other parameters are also configurable. See the comments in the | `adminHash` | | | `cookieAuthSecret` | auto-generated | | `image.repository` | couchdb | -| `image.tag` | 3.5.0 | +| `image.tag` | 3.5.1 | | `image.pullPolicy` | IfNotPresent | | `searchImage.repository` | kocolosk/couchdb-search | | `searchImage.tag` | 0.1.0 | diff --git a/couchdb/values.yaml b/couchdb/values.yaml index c4a7cac..1b18421 100644 --- a/couchdb/values.yaml +++ b/couchdb/values.yaml @@ -94,7 +94,7 @@ persistentVolumeClaimRetentionPolicy: ## The CouchDB image image: repository: couchdb - tag: 3.5.0 + tag: 3.5.1 pullPolicy: IfNotPresent ## Experimental integration with Lucene-powered fulltext search
