Skip to content

Commit 617fb59

Browse files
committed
release: stable-9823
* 51a1214 feat(jibri) bump Chrome to version 130 * 345f8c2 fix(prosody,jicofo,jigasi,jibri) rename recorder domain to hidden domain * 47d974d feat(jibri,jicofo,jvb): custom hocon support via include for components that support it (#1960) * 6443c6f feat(transcriber): fix exposing transcript path in web * 74d913f feat(transcriber): flag to enable translations (#1953) * 8909050 feat(transcriber): remote config auth parameters (#1951) * bb17a29 feat(prosody): enable muc_max_participants in lobby component (#1950) * 26b6f27 fix(prosody): remove admin_adhoc module from defaults (#1948) * 4ae7438 feat(prosody): move external_services module and config to global prosody.cfg.lua (#1949) * 74a536e misc: working on unstable
1 parent 51a1214 commit 617fb59

5 files changed

+22
-7
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## stable-9823
2+
3+
Based on stable release 9823.
4+
5+
* 51a1214 feat(jibri) bump Chrome to version 130
6+
* 345f8c2 fix(prosody,jicofo,jigasi,jibri) rename recorder domain to hidden domain
7+
* 47d974d feat(jibri,jicofo,jvb): custom hocon support via include for components that support it (#1960)
8+
* 6443c6f feat(transcriber): fix exposing transcript path in web
9+
* 74d913f feat(transcriber): flag to enable translations (#1953)
10+
* 8909050 feat(transcriber): remote config auth parameters (#1951)
11+
* bb17a29 feat(prosody): enable muc_max_participants in lobby component (#1950)
12+
* 26b6f27 fix(prosody): remove admin_adhoc module from defaults (#1948)
13+
* 4ae7438 feat(prosody): move external_services module and config to global prosody.cfg.lua (#1949)
14+
* 74a536e misc: working on unstable
15+
116
## stable-9779
217

318
Based on stable release 9779.

docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.5'
33
services:
44
# Frontend
55
web:
6-
image: jitsi/web:${JITSI_IMAGE_VERSION:-unstable}
6+
image: jitsi/web:${JITSI_IMAGE_VERSION:-stable-9823}
77
restart: ${RESTART_POLICY:-unless-stopped}
88
ports:
99
- '${HTTP_PORT}:80'
@@ -184,7 +184,7 @@ services:
184184

185185
# XMPP server
186186
prosody:
187-
image: jitsi/prosody:${JITSI_IMAGE_VERSION:-unstable}
187+
image: jitsi/prosody:${JITSI_IMAGE_VERSION:-stable-9823}
188188
restart: ${RESTART_POLICY:-unless-stopped}
189189
expose:
190190
- '${XMPP_PORT:-5222}'
@@ -329,7 +329,7 @@ services:
329329

330330
# Focus component
331331
jicofo:
332-
image: jitsi/jicofo:${JITSI_IMAGE_VERSION:-unstable}
332+
image: jitsi/jicofo:${JITSI_IMAGE_VERSION:-stable-9823}
333333
restart: ${RESTART_POLICY:-unless-stopped}
334334
ports:
335335
- '127.0.0.1:${JICOFO_REST_PORT:-8888}:8888'
@@ -416,7 +416,7 @@ services:
416416

417417
# Video bridge
418418
jvb:
419-
image: jitsi/jvb:${JITSI_IMAGE_VERSION:-unstable}
419+
image: jitsi/jvb:${JITSI_IMAGE_VERSION:-stable-9823}
420420
restart: ${RESTART_POLICY:-unless-stopped}
421421
ports:
422422
- '${JVB_PORT:-10000}:${JVB_PORT:-10000}/udp'

jibri.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.5'
22

33
services:
44
jibri:
5-
image: jitsi/jibri:${JITSI_IMAGE_VERSION:-unstable}
5+
image: jitsi/jibri:${JITSI_IMAGE_VERSION:-stable-9823}
66
restart: ${RESTART_POLICY:-unless-stopped}
77
volumes:
88
- ${CONFIG}/jibri:/config:Z

jigasi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.5'
33
services:
44
# SIP gateway (audio)
55
jigasi:
6-
image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-unstable}
6+
image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-stable-9823}
77
restart: ${RESTART_POLICY:-unless-stopped}
88
ports:
99
- '${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}:${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}/udp'

transcriber.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.5'
22

33
services:
44
transcriber:
5-
image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-unstable}
5+
image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-stable-9823}
66
restart: ${RESTART_POLICY:-unless-stopped}
77
volumes:
88
- ${CONFIG}/transcriber:/config:Z

0 commit comments

Comments
 (0)