🌟 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
- 📝 Validation by @brunobuddy in #142
- feat: use @use rule instead of @import on side-menu component by @SebConejo in #151
- Fixes 'Trailing whitespace by @DhanushNehru in #184
- 🔗 Many-to-many relationships by @brunobuddy in #185
- Fix readme typos by @LuciaSheel in #188
- Uploads by @brunobuddy in #189
New Contributors
- @DhanushNehru made their first contribution in #184
- @LuciaSheel made their first contribution in #188
Full Changelog: 4.0.0-beta...4.0.1