8.1.1
woj-tek
released this
30 Mar 16:26
·
762 commits
to master
since this release
Tigase XMPP Server 8.1.1
This is a maintenance release of Tigase XMPP Server 8.1
Minor Features & Behaviour Changes
- #muc-134: Better MUC Converter log
Known issues
When upgrading from previous versions, MUC component schema version is stuck on version 3.1.0
. There was no schema changes in the MUC component, but upgrade-schema
requires additional file to properly update tig_schema_versions
, which is missing from the release. Given the lack of changes a mandatory workaround involves creating empty sql
MUC schema files before running upgrade-schema
for matching database, i.e.: <database>-muc-3.1.1.sql
. It can be easily done (under *nix operating system with touch
command):
$ touch database/mysql-muc-3.1.1.sql
$ touch database/derby-muc-3.1.1.sql
$ touch database/postgresql-muc-3.1.1.sql
$ touch database/sqlserver-muc-3.1.1.sql