Skip to content

Commit a25feac

Browse files
authored
Bump version to 1.5.0 (#669)
Signed-off-by: Sergio Castaño Arteaga <tegioz@icloud.com>
1 parent ffa2714 commit a25feac

4 files changed

Lines changed: 17 additions & 13 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gitvote"
33
description = "GitVote server"
4-
version = "1.4.0"
4+
version = "1.5.0"
55
license = "Apache-2.0"
66
edition = "2024"
77
rust-version = "1.90.0"

charts/gitvote/Chart.yaml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: gitvote
33
description: GitVote is a GitHub application that allows holding a vote on issues and pull requests
44
type: application
5-
version: 1.4.1
6-
appVersion: 1.4.0
5+
version: 1.5.0
6+
appVersion: 1.5.0
77
kubeVersion: ">= 1.19.0-0"
88
home: https://gitvote.dev
99
icon: https://raw.githubusercontent.com/cncf/gitvote/main/docs/logo/logo.png
@@ -25,25 +25,27 @@ annotations:
2525
artifacthub.io/category: skip-prediction
2626
artifacthub.io/changes: |
2727
- kind: added
28-
description: Minimum wait support to close on passing
28+
description: Audit page
2929
- kind: added
30-
description: Display percentage of voters against the vote
30+
description: Extra location for config: .github directory
31+
- kind: added
32+
description: Some tests for templates
3133
- kind: changed
32-
description: Migrate service config to figment
34+
description: Improve vote labeling
3335
- kind: changed
34-
description: Some refactoring in votes processor
36+
description: Move images to ghcr.io
3537
- kind: changed
36-
description: Bump Alpine to 3.21.0
38+
description: Bump Alpine to 3.22.2
3739
- kind: changed
38-
description: Bump Rust to 1.83
40+
description: Bump Rust to 1.90
3941
- kind: changed
4042
description: Upgrade dependencies
4143
artifacthub.io/containsSecurityUpdates: "true"
4244
artifacthub.io/images: |
4345
- name: dbmigrator
44-
image: ghcr.io/cncf/gitvote/dbmigrator:v1.4.1
46+
image: ghcr.io/cncf/gitvote/dbmigrator:v1.5.0
4547
- name: gitvote
46-
image: ghcr.io/cncf/gitvote/server:v1.4.1
48+
image: ghcr.io/cncf/gitvote/server:v1.5.0
4749
artifacthub.io/links: |
4850
- name: source
4951
url: https://github.com/cncf/gitvote

charts/gitvote/templates/gitvote_deployment.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ spec:
2828
- {{- include "chart.checkDbIsReadyInitContainer" . | nindent 10 }}
2929
{{- if .Release.IsInstall }}
3030
- name: check-dbmigrator-run
31-
image: "bitnami/kubectl:{{ template "chart.KubernetesVersion" . }}"
31+
{{ $kubeVersion := include "chart.KubernetesVersion" . }}
32+
{{ $kubectlImageVersion := ternary "1.33" $kubeVersion (semverCompare ">=1.34.0-0" (printf "%s.0" $kubeVersion)) }}
33+
image: "docker.io/bitnamilegacy/kubectl:{{ $kubectlImageVersion }}"
3234
imagePullPolicy: IfNotPresent
3335
command: ['kubectl', 'wait', '--namespace={{ .Release.Namespace }}', '--for=condition=complete', 'job/{{ include "chart.resourceNamePrefix" . }}dbmigrator-install', '--timeout=60s']
3436
{{- end }}

0 commit comments

Comments
 (0)