Skip to content

1.14.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 11 Jun 19:52
· 155 commits to refs/heads/master since this release

What’s Changed

This release includes Czech language and moves the code base from Scala 2 to Scala 3, including many dependency updates.

Note updating to 1.14.0 requires to adopt the config file. There are two sections that changed from being an array of objects to a nested object.

backend {
  auth {
    oauth = [ 
      { id = "x"
        …
      }]

to

backend {
  auth {
    oauth = {
      x = { … }
    }
  }
}

So the id property inside the object is removed and put as an attribute key into the outer object. The same applies to database-domain-checks. If you don't use (have overriden) any of this, you don't need to do anything (here you can just use any unique id as there is no such property). You can have a look at the reference.conf file in this repository for details.

🚀 Features

💚 Maintenance

  • Move codebase to scala 3 (+allow env vars for configuration) @eikek (#1430)
  • Fix renamed elm package @eikek (#1359)

🧱 Dependencies