v1.6.0-RC10
What's New
- New and shiny Multi-Profile Feature #678 (thanks @Maximbndrnk)
Breaking Changes
- update mysqlConnector plugin version (thanks @DrEthan77)
This requires that you make two changes to your application.yml in case you are using mysql: - you need to change the driverclass from
com.mysql.jdbc.Driver
tocom.mysql.cj.jdbc.Driver
- you need to add some new options to your url:
useLegacyDatetimeCode=false
serverTimezone=UTC
useSSL=false
So the result should look something like this:
environments:
production:
dataSource:
#For mysql database
driverClassName: 'com.mysql.cj.jdbc.Driver'
url: jdbc:mysql://localhost/streama?useLegacyDatetimeCode=false&serverTimezone=UTC&useSSL=false
username: root
password:
Other Changes
- improvements to mouse-wheel volume control (thanks @fuji44 )
- some grammar fixes (thanks @imronras)
- updates to Dutch language (thanks @SmitBe)
- add control over downloads by adding trustedUser role (thanks @DrEthan77)