Skip to content

Release v1.3.0

Compare
Choose a tag to compare
@spijet spijet released this 22 Nov 16:31
· 123 commits to main since this release
v1.3.0
91396e7

⚠️ BREAKING CHANGES ⚠️

This release removes the old-style options located in .Values.jvb.websockets.
Now, if you want to add WebSockets support, instead of doing this:

jvb:
  websockets:
    enabled: true
    serverID: <...>

you must do this:

websockets:
  colibri:
    enabled: true
    serverID: <...>
  ## New option for Prosody/XMPP:
  xmpp:
    enabled: true

Also, now disabled WS support explicitly sets required ENV variables to 'false', resulting in all Jitsi Meet containers actually using HTTP polling instead of WebSocket-based signalling.

What's Changed

  • Fix helm test for prosody connection test by @hhewei in #51;
  • Introduce separate node port value for JVB for Node by @luclu and @mmarquez999 in #25 and #54;
  • Bump default Jitsi Meet version to stable-8044:
    • jitsi/web:stable-8044 and newer can properly auto-detect the nameserver IP by reading /etc/resolv.conf
    • …so now there's no need to explicitly set .Values.web.resolverIP unless you really need to override it.
  • Bump Jitsi Meet Prometheus Exporter to v1.2.1;

New Contributors

Full Changelog: v1.2.3...v1.3.0