Hi Folks! Platformatic v0.15.0 is out with a new feature and plenty of fixes!
Thanks to everybody that contributed!

Docker image

Did you know that we have a Docker Image that you can use to test Platformatic or use as a base image for your production systems? You can find it at hub.docker.com/r/platformatic/platformatic.

Platformatic v0.15.0 ships with all the security updates from the Node.js February 2023 Security Releases.

Allow specifying multiple entities per authorization rules

Very often, we end up writing the same authorization rules over and over again.
Instead, it’s possible to condense the rule for multiple entities on a single entry:

 {
    "authorization": {
      "jwt": {
        "secret": "supersecret"
      },
      "roleKey": "X-PLATFORMATIC-ROLE",
      "anonymousRole": "anonymous",
      "rules": [{
        "role": "anonymous",
        "entities": ["category", "page"],
        "find": true,
        "delete": false,
        "save": false
      }]
  }
}

This new feature was implemented at github.com/platformatic/platformatic/pull/660.

Multiple bugfixes

Full Changelog: github.com/platformatic/platformatic/compar..

Read More