Skip to content

Commit 96f0014

Browse files
chore(release): bump version to v2.5.3 (#290)
* chore(release): bump version to v2.5.3 Signed-off-by: Gentleelephant <1132960613@qq.com> * build: upgrade cache action to v3 Signed-off-by: Gentleelephant <1132960613@qq.com> * docs: update README with version 2.5.3 links Signed-off-by: Gentleelephant <1132960613@qq.com> --------- Signed-off-by: Gentleelephant <1132960613@qq.com>
1 parent b48ad4e commit 96f0014

10 files changed

Lines changed: 22 additions & 16 deletions

File tree

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
go-version: 1.20.x
3636

37-
- uses: actions/cache@v2
37+
- uses: actions/cache@v3
3838
with:
3939
path: ~/go/pkg/mod
4040
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -65,7 +65,7 @@ jobs:
6565
with:
6666
go-version: 1.20.x
6767

68-
- uses: actions/cache@v2
68+
- uses: actions/cache@v3
6969
with:
7070
path: ~/go/pkg/mod
7171
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -88,7 +88,7 @@ jobs:
8888
with:
8989
go-version: 1.20.x
9090

91-
- uses: actions/cache@v2
91+
- uses: actions/cache@v3
9292
with:
9393
path: ~/go/pkg/mod
9494
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

.github/workflows/push-nm-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
go-version: 1.20.x
4545

46-
- uses: actions/cache@v2
46+
- uses: actions/cache@v3
4747
with:
4848
path: ~/go/pkg/mod
4949
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

.github/workflows/push-operator-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
go-version: 1.20.x
4646

47-
- uses: actions/cache@v2
47+
- uses: actions/cache@v3
4848
with:
4949
path: ~/go/pkg/mod
5050
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

.github/workflows/push-sidecar-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
go-version: 1.20.x
4545

46-
- uses: actions/cache@v2
46+
- uses: actions/cache@v3
4747
with:
4848
path: ~/go/pkg/mod
4949
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

CHANGLOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v2.5.3 / 2025-03-10
2+
3+
### Bugfix
4+
- update template (#280) @Gentleelephant
5+
16
## v2.5.2 / 2024-05-14
27

38
### Enhancements

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,17 @@ We assume you already have a Kubernetes cluster (v1.16+). You can install one us
8282

8383
```shell
8484
# Deploy CRDs and the Notification Manager Operator:
85-
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2/bundle.yaml
85+
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.3/bundle.yaml
8686
# Deploy default template:
87-
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2/template.yaml
87+
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.3/template.yaml
8888
# Deploy built-in language packs.
89-
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2/zh-cn.yaml
89+
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.3/zh-cn.yaml
9090
```
9191

9292
#### Install with helm
9393

9494
```shell
95-
helm install notification-manager --create-namespace -n kubesphere-monitoring-system https://github.com/kubesphere/notification-manager/releases/download/v2.5.2/notification-manager.tgz
95+
helm install notification-manager --create-namespace -n kubesphere-monitoring-system https://github.com/kubesphere/notification-manager/releases/download/v2.5.3/notification-manager.tgz
9696
```
9797

9898
### Configure NotificationManager
@@ -103,7 +103,7 @@ ensures a deployment meeting the resource requirements is running.
103103
We should create a NotificationManager CR first, skip this when using helm install.
104104

105105
```shell
106-
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.2/notification_manager.yaml
106+
kubectl apply -f https://github.com/kubesphere/notification-manager/releases/download/v2.5.3/notification_manager.yaml
107107
```
108108

109109
### Configure sender

RELEASE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ This page describes the release process and the currently planned schedule for u
2020
| v2.5.0 | 2024-03-21 | leiwanjun (GitHub: @leiwanjun) |
2121
| v2.5.1 | 2024-04-03 | leiwanjun (GitHub: @leiwanjun) |
2222
| v2.5.2 | 2024-04-14 | leiwanjun (GitHub: @leiwanjun) |
23+
| v2.5.3 | 2025-03-10 | Gentleelephant (GitHub: @Gentleelephant) |
2324

2425

2526
# How to cut a new release

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.5.3-alpha.0
1+
v2.5.3

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: 2.5.3-alpha.0
2+
appVersion: 2.5.3
33
description: Notification Manager manages notifications in multi-tenant K8s environment. It receives alerts or notifications from different senders and then send notifications to various tenant receivers based on alerts/notifications' tenant label like "namespace".
44
name: notification-manager
5-
version: 2.5.3-alpha.0
5+
version: 2.5.3

helm/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ operator:
2828
operator:
2929
image:
3030
repo: kubesphere/notification-manager-operator
31-
tag: v2.5.2
31+
tag: v2.5.3
3232
pullPolicy: IfNotPresent
3333
resources:
3434
limits:
@@ -46,7 +46,7 @@ operator:
4646
notificationmanager:
4747
image:
4848
repo: kubesphere/notification-manager
49-
tag: v2.5.3-alpha.0
49+
tag: v2.5.3
5050
pullPolicy: IfNotPresent
5151
sidecar:
5252
image:

0 commit comments

Comments
 (0)