github mnfst/manifest 4.0.1
4.0.1 "Spectral"

latest releases: manifest@4.17.8, create-manifest@1.3.4, manifest@4.17.7...
11 months ago

🌟 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

Don't miss a new manifest release

NewReleases is sending notifications on new releases.