Skip to content

Commit 77aafe0

Browse files
committed
release: stable-5142
* 7ab45bb web: add ability to configure prejoin page * 0c95794 jvb: regenerate config on every boot * 3ef2221 jvb: add ability to set the WS domain with an env var * 79d2601 jvb: add ability to specify set the WS_SERVER_ID with an env var * b277926 jvb: make colibri websocket endpoints dynamic for multiple jvbs * 991f695 web: remove no longer needed settings * 8b7cbc3 revert "jicofo: no auth URL in JWT auth mode" * 33b386b jvb: add missing variable to docker-compose * 087f024 web: configure brandingDataUrl with env variables * a404653 web: configure startAudioOnly using environment variable * e195cbf jvb: make jvb apis available from outside the container * 409cade web: configure Matomo using environment variables * b731c60 doc: update CHANGELOG * 0fbf3b7 misc: working on latest
1 parent 7ab45bb commit 77aafe0

File tree

5 files changed

+26
-7
lines changed

5 files changed

+26
-7
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## stable-5142
2+
3+
Based on stable release 5142.
4+
5+
* 7ab45bb web: add ability to configure prejoin page
6+
* 0c95794 jvb: regenerate config on every boot
7+
* 3ef2221 jvb: add ability to set the WS domain with an env var
8+
* 79d2601 jvb: add ability to specify set the WS_SERVER_ID with an env var
9+
* b277926 jvb: make colibri websocket endpoints dynamic for multiple jvbs
10+
* 991f695 web: remove no longer needed settings
11+
* 8b7cbc3 revert "jicofo: no auth URL in JWT auth mode"
12+
* 33b386b jvb: add missing variable to docker-compose
13+
* 087f024 web: configure brandingDataUrl with env variables
14+
* a404653 web: configure startAudioOnly using environment variable
15+
* e195cbf jvb: make jvb apis available from outside the container
16+
* 409cade web: configure Matomo using environment variables
17+
* b731c60 doc: update CHANGELOG
18+
* 0fbf3b7 misc: working on latest
19+
120
## stable-5076
221

322
**Important:** Starting with this release config.js is autogenerated with every container boot.

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
# Frontend
55
web:
6-
image: jitsi/web:latest
6+
image: jitsi/web:stable-5142
77
restart: ${RESTART_POLICY}
88
ports:
99
- '${HTTP_PORT}:80'
@@ -96,7 +96,7 @@ services:
9696

9797
# XMPP server
9898
prosody:
99-
image: jitsi/prosody:latest
99+
image: jitsi/prosody:stable-5142
100100
restart: ${RESTART_POLICY}
101101
expose:
102102
- '5222'
@@ -162,7 +162,7 @@ services:
162162

163163
# Focus component
164164
jicofo:
165-
image: jitsi/jicofo:latest
165+
image: jitsi/jicofo:stable-5142
166166
restart: ${RESTART_POLICY}
167167
volumes:
168168
- ${CONFIG}/jicofo:/config:Z
@@ -191,7 +191,7 @@ services:
191191

192192
# Video bridge
193193
jvb:
194-
image: jitsi/jvb:latest
194+
image: jitsi/jvb:stable-5142
195195
restart: ${RESTART_POLICY}
196196
ports:
197197
- '${JVB_PORT}:${JVB_PORT}/udp'

etherpad.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
# Etherpad: real-time collaborative document editing
55
etherpad:
6-
image: jitsi/etherpad:latest
6+
image: jitsi/etherpad:stable-5142
77
restart: ${RESTART_POLICY}
88
networks:
99
meet.jitsi:

jibri.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
jibri:
5-
image: jitsi/jibri:latest
5+
image: jitsi/jibri:stable-5142
66
restart: ${RESTART_POLICY}
77
volumes:
88
- ${CONFIG}/jibri:/config:Z

jigasi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
# SIP gateway (audio)
55
jigasi:
6-
image: jitsi/jigasi:latest
6+
image: jitsi/jigasi:stable-5142
77
restart: ${RESTART_POLICY}
88
ports:
99
- '${JIGASI_PORT_MIN}-${JIGASI_PORT_MAX}:${JIGASI_PORT_MIN}-${JIGASI_PORT_MAX}/udp'

0 commit comments

Comments
 (0)