Skip to content

Commit 2de3b6a

Browse files
committed
Update to Zulip Server 10.2.
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent 042ee46 commit 2de3b6a

File tree

8 files changed

+16
-12
lines changed

8 files changed

+16
-12
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ WORKDIR /home/zulip
2727
# You can specify these in docker-compose.yml or with
2828
# docker build --build-arg "ZULIP_GIT_REF=git_branch_name" .
2929
ARG ZULIP_GIT_URL=https://github.com/zulip/zulip.git
30-
ARG ZULIP_GIT_REF=10.1
30+
ARG ZULIP_GIT_REF=10.2
3131

3232
RUN git clone "$ZULIP_GIT_URL" && \
3333
cd zulip && \

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
Hub](https://hub.docker.com/r/zulip/docker-zulip):
99

1010
```console
11-
$ docker pull zulip/docker-zulip:10.1-0
11+
$ docker pull zulip/docker-zulip:10.2-0
1212
```
1313

14-
Current Zulip version: `10.1`
15-
Current Docker image version: `10.1-0`
14+
Current Zulip version: `10.2`
15+
Current Docker image version: `10.2-0`
1616

1717
We recommend using the Docker image if your organization has a
1818
preference for deploying services using Docker. Deploying with Docker

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ services:
4848
volumes:
4949
- "redis:/data:rw"
5050
zulip:
51-
image: "zulip/docker-zulip:10.1-0"
51+
image: "zulip/docker-zulip:10.2-0"
5252
restart: unless-stopped
5353
build:
5454
context: .
5555
args:
5656
## Change these if you want to build zulip from a different repo/branch
5757
ZULIP_GIT_URL: https://github.com/zulip/zulip.git
58-
ZULIP_GIT_REF: "10.1"
58+
ZULIP_GIT_REF: "10.2"
5959
## Set this up if you plan to use your own CA certificate bundle for building
6060
# CUSTOM_CA_CERTIFICATES:
6161
ports:

kubernetes/chart/zulip/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.10.2] - 2025-04-15
2+
3+
- Update to Zulip Server 10.2
4+
15
## [0.10.1] - 2025-03-28
26

37
- Update to Zulip Server 10.1

kubernetes/chart/zulip/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ icon: https://raw.githubusercontent.com/zulip/zulip/main/static/images/logo/zuli
77
## incremented each time you make changes to the chart and its
88
## templates, including the app version. Versions are expected to
99
## follow Semantic Versioning (https://semver.org/)
10-
version: 0.10.1
10+
version: 0.10.2
1111

1212
## This is the version number of the application being deployed. This
1313
## version number should be incremented each time you make changes to
1414
## the application. Versions are not expected to follow Semantic
1515
## Versioning. They should reflect the version the application is
1616
## using. It is recommended to use it with quotes.
17-
appVersion: "10.1-0"
17+
appVersion: "10.2-0"
1818
dependencies:
1919
- name: memcached
2020
repository: oci://registry-1.docker.io/bitnamicharts

kubernetes/chart/zulip/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Zulip
22

3-
![Version: 0.10.1](https://img.shields.io/badge/Version-0.10.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.1-0](https://img.shields.io/badge/AppVersion-10.1--0-informational?style=flat-square)
3+
![Version: 0.10.2](https://img.shields.io/badge/Version-0.10.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.2-0](https://img.shields.io/badge/AppVersion-10.2--0-informational?style=flat-square)
44

55
[Zulip](https://zulip.com/) is an open source threaded team chat that helps teams stay productive and focused.
66

@@ -72,7 +72,7 @@ Now you're ready to follow [the installation instructions above](#installation).
7272
| fullnameOverride | string | `""` | |
7373
| image.pullPolicy | string | `"IfNotPresent"` | |
7474
| image.repository | string | `"zulip/docker-zulip"` | |
75-
| image.tag | string | `"10.1-0"` | |
75+
| image.tag | string | `"10.2-0"` | |
7676
| imagePullSecrets | list | `[]` | |
7777
| ingress.annotations | object | `{}` | |
7878
| ingress.enabled | bool | `false` | |

kubernetes/chart/zulip/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ image:
1717
## Ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
1818
pullPolicy: IfNotPresent
1919
## Zulip image tag (immutable tags are recommended)
20-
tag: "10.1-0"
20+
tag: "10.2-0"
2121

2222
## Global Docker registry secret names as an array.
2323
imagePullSecrets: []

kubernetes/manual/zulip-rc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ spec:
8686
- name: postgresql-persistent-storage
8787
mountPath: /var/lib/postgresql/data
8888
- name: zulip
89-
image: zulip/docker-zulip:10.1-0
89+
image: zulip/docker-zulip:10.2-0
9090
resources:
9191
limits:
9292
cpu: 100m

0 commit comments

Comments
 (0)