Skip to content

Commit 0de329b

Browse files
committed
release: stable-9909
* 9098202 feat(lint): add tpl lint step for each project (#1983) * 70b75f5 feat(build): Checks config.js syntax. (#1981) * f18b182 fix(web): config.js syntax errors (#1980) * eea18b1 feat: Add an option to enable VLA. (#1979) * 9527545 feat(web) Add defaults and env variables for codec preference. (#1978) * 6ae3414 feat(prosody): Sets recorder prefixes. * 07ea79a feat(prosody): Enables connection resumption for jicofo and jvb. * 5341065 Update docker-compose.yml (#1968) * 5e8b702 fix(prosody-visitors): proper variable for transcriber jid in rate limit (#1967) * d3db3a5 fix(jibri,jicofo,jigasi,prosody,web): respect previous XMPP_RECORDER_DOMAIN value if set (#1966) * 2d9c3cc feat(web): allow comment at the top of config.js to be overridden (#1964) * 9fe5b8b fix(web) Remove no longer used config setting. Av1 has already been enabled by default. * a53775c misc: working on unstable
1 parent 9098202 commit 0de329b

File tree

5 files changed

+25
-7
lines changed

5 files changed

+25
-7
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## stable-9909
2+
3+
Based on stable release 9909.
4+
5+
* 9098202 feat(lint): add tpl lint step for each project (#1983)
6+
* 70b75f5 feat(build): Checks config.js syntax. (#1981)
7+
* f18b182 fix(web): config.js syntax errors (#1980)
8+
* eea18b1 feat: Add an option to enable VLA. (#1979)
9+
* 9527545 feat(web) Add defaults and env variables for codec preference. (#1978)
10+
* 6ae3414 feat(prosody): Sets recorder prefixes.
11+
* 07ea79a feat(prosody): Enables connection resumption for jicofo and jvb.
12+
* 5341065 Update docker-compose.yml (#1968)
13+
* 5e8b702 fix(prosody-visitors): proper variable for transcriber jid in rate limit (#1967)
14+
* d3db3a5 fix(jibri,jicofo,jigasi,prosody,web): respect previous XMPP_RECORDER_DOMAIN value if set (#1966)
15+
* 2d9c3cc feat(web): allow comment at the top of config.js to be overridden (#1964)
16+
* 9fe5b8b fix(web) Remove no longer used config setting. Av1 has already been enabled by default.
17+
* a53775c misc: working on unstable
18+
119
## stable-9823
220

321
Based on stable release 9823.

docker-compose.yml

Lines changed: 4 additions & 4 deletions
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-9909}
77
restart: ${RESTART_POLICY:-unless-stopped}
88
ports:
99
- '${HTTP_PORT}:80'
@@ -190,7 +190,7 @@ services:
190190

191191
# XMPP server
192192
prosody:
193-
image: jitsi/prosody:${JITSI_IMAGE_VERSION:-unstable}
193+
image: jitsi/prosody:${JITSI_IMAGE_VERSION:-stable-9909}
194194
restart: ${RESTART_POLICY:-unless-stopped}
195195
expose:
196196
- '${XMPP_PORT:-5222}'
@@ -337,7 +337,7 @@ services:
337337

338338
# Focus component
339339
jicofo:
340-
image: jitsi/jicofo:${JITSI_IMAGE_VERSION:-unstable}
340+
image: jitsi/jicofo:${JITSI_IMAGE_VERSION:-stable-9909}
341341
restart: ${RESTART_POLICY:-unless-stopped}
342342
ports:
343343
- '127.0.0.1:${JICOFO_REST_PORT:-8888}:8888'
@@ -425,7 +425,7 @@ services:
425425

426426
# Video bridge
427427
jvb:
428-
image: jitsi/jvb:${JITSI_IMAGE_VERSION:-unstable}
428+
image: jitsi/jvb:${JITSI_IMAGE_VERSION:-stable-9909}
429429
restart: ${RESTART_POLICY:-unless-stopped}
430430
ports:
431431
- '${JVB_PORT:-10000}:${JVB_PORT:-10000}/udp'

jibri.yml

Lines changed: 1 addition & 1 deletion
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-9909}
66
restart: ${RESTART_POLICY:-unless-stopped}
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.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-9909}
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

Lines changed: 1 addition & 1 deletion
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-9909}
66
restart: ${RESTART_POLICY:-unless-stopped}
77
volumes:
88
- ${CONFIG}/transcriber:/config:Z

0 commit comments

Comments
 (0)