archery 1.4.0
archery: ^1.4.0 copied to clipboard
Archery is a high-performance, full-featured web framework for Dart.
0.1.0 #
- Initial version.
1.0.0 #
- First Release.
- ORM, Error Pages,
1.0.4 #
- Form Inputs
- Body Parsing
1.0.5 #
- Formatting
1.1.0 #
- Stable v1
1.1.1 #
- dart docs
1.2.0 #
- Auth
1.2.1 #
- Sessions
1.2.2 #
- Body Parser -> FormRequest
1.3.0 #
- Redesign of FormRequest to address request body stream consumption
- @csrf directive for view templates
- csrf token
1.3.1 #
- Postgres and s3 models
- minor fixes for file uploads
- cors middleware
1.3.2 #
- types safe Request/Route Model binding
- s3 client provider
- update landing pages
1.3.3 #
- mixin for Model instance db operations
- rm default pgsql init in App boot
1.3.4 #
- HasOne, HasMany, BelongsTo on Model
1.4.0 #
- Hashing API changes
- Hasher.hasherPassword -> Hasher.make()
- Hasher.verifyPassword -> Hasher.check()
- Hashing Ext on Auth -> Auth.hashPassword
- Hashing Ext on Auth -> Auth.verifyPassword Sessions
- Sessions
- {{ session }} available to all views
- session.user -> nullable
- session.errors -> empty
- use request.thisSession.errors.addAll()
- Templates API changes
- {{ user }} -> {{ session.user }}
- errors -> {{ session.errors }}
- data -> {{ session.data }}