Skip to content

Commit ca6e271

Browse files
committed
Update to Zulip Server 11.3.
1 parent b049777 commit ca6e271

File tree

9 files changed

+32
-12
lines changed

9 files changed

+32
-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=11.2
30+
ARG ZULIP_GIT_REF=11.3
3131

3232
RUN git clone "$ZULIP_GIT_URL" -b "$ZULIP_GIT_REF" && \
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:11.2-0
11+
$ docker pull zulip/docker-zulip:11.3-0
1212
```
1313

14-
Current Zulip version: `11.2`
15-
Current Docker image version: `11.2-0`
14+
Current Zulip version: `11.3`
15+
Current Docker image version: `11.3-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:11.2-0"
51+
image: "zulip/docker-zulip:11.3-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: "11.2"
58+
ZULIP_GIT_REF: "11.3"
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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [0.11.3] - 2025-10-22
2+
3+
- Update to Zulip Server 11.3
4+
- Support valueFrom in both SECRETS_ and SETTING_ values
5+
- Support `PROXY_ALLOW_*` settings for outgoing proxy rules
6+
- Support `DB_NAME` / `DB_USER` settings.
7+
18
## [0.11.2] - 2025-09-16
29

310
- Update to Zulip Server 11.2

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.11.2
10+
version: 0.11.3
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: "11.2-0"
17+
appVersion: "11.3-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.11.2](https://img.shields.io/badge/Version-0.11.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 11.2-0](https://img.shields.io/badge/AppVersion-11.2--0-informational?style=flat-square)
3+
![Version: 0.11.3](https://img.shields.io/badge/Version-0.11.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 11.3-0](https://img.shields.io/badge/AppVersion-11.3--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 | `"11.2-0"` | |
75+
| image.tag | string | `"11.3-0"` | |
7676
| imagePullSecrets | list | `[]` | |
7777
| ingress.annotations | object | `{}` | |
7878
| ingress.enabled | bool | `false` | |

kubernetes/chart/zulip/README.md.gotmpl

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,19 @@ variables are forwarded to the Docker container, you can read more about
7676
configuring Zulip through environment variables
7777
[here](https://github.com/zulip/docker-zulip/#configuration).
7878

79+
Variables can be either a plain scalar value (i.e., a string or
80+
integer), or a projected value from a secret or configmap. For
81+
example:
82+
83+
```yaml
84+
SETTING_EXTERNAL_HOST: zulip.example.com
85+
SECRETS_email_password:
86+
valueFrom:
87+
secretKeyRef:
88+
name: email
89+
key: password
90+
```
91+
7992
### Dependencies
8093

8194
The chart uses Memcached, RabbitMQ and Redis helm charts defined in

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/concepts/containers/images/#pre-pulled-images
1818
pullPolicy: IfNotPresent
1919
## Zulip image tag (immutable tags are recommended)
20-
tag: "11.2-0"
20+
tag: "11.3-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:11.2-0
89+
image: zulip/docker-zulip:11.3-0
9090
resources:
9191
limits:
9292
cpu: 100m

0 commit comments

Comments
 (0)