Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .uplift.yml

This file was deleted.

9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog

## Unreleased
## [currents-0.6.0](https://github.com/currents-dev/helm-charts/releases/tag/currents-0.6.0) - 2026-03-26


### Features
- [`5b1e3f9`](https://github.com/currents-dev/helm-charts/commit/5b1e3f91c7e2de4f7e93823dd596010136d5cbed) Replace elasticsearch with clickhouse in the EKS setup docs (#38)
- [`be331f0`](https://github.com/currents-dev/helm-charts/commit/be331f0f74091f1240c7a06a3542f801588f3f8f) Swap minio for rustfs (#39)
- [`6b5ff24`](https://github.com/currents-dev/helm-charts/commit/6b5ff24b89ec2696b5fbc8ea6da79f69fabe60c9) Better auth (#40)


## [currents-0.5.0](https://github.com/currents-dev/helm-charts/releases/tag/currents-0.5.0) - 2025-10-02

Expand Down
4 changes: 2 additions & 2 deletions charts/currents/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ home: https://currents.dev
type: application
# The chart version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.5.0
version: 0.6.0
# Version number of the application being deployed.
# Versions are not expected to follow Semantic Versioning. They should reflect the version the application is using.
appVersion: "2025-10-02-001"
appVersion: "2026-01-26-001"
maintainers:
- name: Currents-dev
url: https://currents.dev
Expand Down
2 changes: 1 addition & 1 deletion charts/currents/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ currents:
# @section -- Frequently Used
key: password
# -- The image tag to use for the Currents images
imageTag: 2025-10-02-001
imageTag: 2026-01-26-001
email:
smtp:
# -- The SMTP server port to use
Expand Down
24 changes: 24 additions & 0 deletions cliff.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[changelog]
header = "# Changelog\n"
body = """
## [{{ version }}](https://github.com/currents-dev/helm-charts/releases/tag/{{ version }}) - {{ timestamp | date(format="%Y-%m-%d") }}
{% for group, commits in commits | group_by(attribute="group") %}

### {{ group }}
{% for commit in commits -%}
- [`{{ commit.id | truncate(length=7, end="") }}`](https://github.com/currents-dev/helm-charts/commit/{{ commit.id }}) {{ commit.message | split(pat="\n") | first | trim }}
{% endfor %}
{%- endfor %}
"""
footer = ""
trim = false

[git]
conventional_commits = true
filter_unconventional = true
commit_parsers = [
{ message = "^feat", group = "Features" },
{ message = "^fix", group = "Bug Fixes" },
]
filter_commits = true
tag_pattern = "currents-[0-9].*"
4 changes: 2 additions & 2 deletions docs/configuration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Configuration Reference

![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2025-10-02-001](https://img.shields.io/badge/AppVersion-2025--10--02--001-informational?style=flat-square)
![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2026-01-26-001](https://img.shields.io/badge/AppVersion-2026--01--26--001-informational?style=flat-square)

## Requirements

Expand Down Expand Up @@ -73,7 +73,7 @@ The following table lists the configurable parameters of the `currents` chart an
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| currents.rootUser.email | string | `"admin@{{ .Values.currents.domains.appHost }}"` | The email address of the root user |
| currents.imageTag | string | `"2025-10-02-001"` | The image tag to use for the Currents images |
| currents.imageTag | string | `"2026-01-26-001"` | The image tag to use for the Currents images |
| currents.email.smtp.port | int | `587` | The SMTP server port to use |
| currents.email.smtp.from | tpl/string | `"Currents Report <report@{{ .Values.currents.domains.appHost }}>"` | The email address to send from |
| currents.email.smtp.tls | bool | `false` | Whether the SMTP server uses TLS |
Expand Down
6 changes: 5 additions & 1 deletion scripts/update-changelog.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/bash

docker run --rm -v $PWD:/opt/currents -e "GIT_CONFIG_PARAMETERS='safe.directory'='/opt/currents'" -w /opt/currents gembaadvantage/uplift changelog --no-stage
VERSION=$(grep '^version:' charts/currents/Chart.yaml | awk '{print $2}')

docker run --rm -v "$PWD:/app" \
-e "GIT_CONFIG_PARAMETERS='safe.directory'='/app'" \
-w /app ghcr.io/orhun/git-cliff/git-cliff --tag "currents-${VERSION}" -u --prepend CHANGELOG.md
Loading