Skip to content

4.0.1 "Spectral"

Latest
Compare
Choose a tag to compare
@brunobuddy brunobuddy released this 02 Oct 12:34
· 16 commits to master since this release

🌟 Highlights

📝 Validation

Server-side validation for your individual properties:

entities:
  Dog:
    properties:
      - name
      - { name: age, type: number }
    validation:
      name: { minLength: 3 } # The name should have at least 3 characters.
      age: { min: 1, max: 30 } # Age should be a number between 1 and 30.

🔗 Many-to-many relationships

They are finally here !

  Player 🤾:
    properties:
      - name
    belongsTo:
      - Team
    belongsToMany:
      - Skill

📤 Uploads

File and image upload, including built-in image optimization and resize feature. Checkout the docs.

What's Changed

New Contributors

Full Changelog: 4.0.0-beta...4.0.1