Skip to content

v1.6.0-RC10

Compare
Choose a tag to compare
@dularion dularion released this 03 Dec 21:13
· 392 commits to master since this release
78414f6

What's New

image

image

image

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 to com.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)