diff --git a/CHANGELOG.md b/CHANGELOG.md index 68b2f29..e3d324f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,31 @@ +## stable-7287-1 + +Based on stable release 7287-1. + +* 22e727c build: adapt release process to multiarch builds +* be422c7 jibri: update Chrome to M102 +* 1463df4 compose: add ability to override image versions +* 7c29b57 prosody: fix reservations API +* 8337c0b jicofo,prosody: migrate to new reservations system +* 70c5cbf misc: update dialin numbers url setup (#1298) +* 7790012 misc: define ENABLE_JAAS_COMPONENTS variable (#1297) +* 62ad172 misc: update env.example +* 74ef7de web,prosody: add support for JaaS components +* 902a673 misc: move security options in sample file +* 2a23095 misc: use the "unstable" tag between releases +* 741ec4a build: add native arch building support +* 68d97c8 ci: add GH action docker build caching +* 8b02b8a build,ci: add initial arm64 support +* 3b86df0 compose: add ability to change the JVB colibri REST API exposed port +* 458515c env: add link to handbook +* 261577c web: stop using the default config file +* ed6ef89 web: remove config option to control FLoC +* cb5a753 config: simplify configuration +* b505d58 misc: add stalebot +* 5ff2735 web: add e2eping support using env variables +* 6284167 web: add more audio quality options +* 515bd19 misc: working on latest + ## stable-7287 Based on stable release 7287. diff --git a/docker-compose.yml b/docker-compose.yml index ff9517c..476c0f8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ version: '3' services: # Frontend web: - image: jitsi/web:${JITSI_IMAGE_VERSION:-unstable} + image: jitsi/web:${JITSI_IMAGE_VERSION:-stable-7287-1} restart: ${RESTART_POLICY:-unless-stopped} ports: - '${HTTP_PORT}:80' @@ -140,7 +140,7 @@ services: # XMPP server prosody: - image: jitsi/prosody:${JITSI_IMAGE_VERSION:-unstable} + image: jitsi/prosody:${JITSI_IMAGE_VERSION:-stable-7287-1} restart: ${RESTART_POLICY:-unless-stopped} expose: - '${XMPP_PORT:-5222}' @@ -225,7 +225,7 @@ services: # Focus component jicofo: - image: jitsi/jicofo:${JITSI_IMAGE_VERSION:-unstable} + image: jitsi/jicofo:${JITSI_IMAGE_VERSION:-stable-7287-1} restart: ${RESTART_POLICY:-unless-stopped} volumes: - ${CONFIG}/jicofo:/config:Z @@ -275,7 +275,7 @@ services: # Video bridge jvb: - image: jitsi/jvb:${JITSI_IMAGE_VERSION:-unstable} + image: jitsi/jvb:${JITSI_IMAGE_VERSION:-stable-7287-1} restart: ${RESTART_POLICY:-unless-stopped} ports: - '${JVB_PORT:-10000}:${JVB_PORT:-10000}/udp' diff --git a/jibri.yml b/jibri.yml index e417979..2f84b62 100644 --- a/jibri.yml +++ b/jibri.yml @@ -2,7 +2,7 @@ version: '3' services: jibri: - image: jitsi/jibri:${JITSI_IMAGE_VERSION:-unstable} + image: jitsi/jibri:${JITSI_IMAGE_VERSION:-stable-7287-1} restart: ${RESTART_POLICY:-unless-stopped} volumes: - ${CONFIG}/jibri:/config:Z diff --git a/jigasi.yml b/jigasi.yml index 3ca4c84..7d84115 100644 --- a/jigasi.yml +++ b/jigasi.yml @@ -3,7 +3,7 @@ version: '3' services: # SIP gateway (audio) jigasi: - image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-unstable} + image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-stable-7287-1} restart: ${RESTART_POLICY:-unless-stopped} ports: - '${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}:${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}/udp'