jaguar 2.0.5 jaguar: ^2.0.5 copied to clipboard
Jaguar is a production ready HTTP server framework built for speed, simplicity and extensiblity
Changelog #
1.3.11 #
- Fixed
args
package dependency issue
1.3.10 #
- Work on websockets
1.3.9 #
- Better JSON decoding and encoding support
- Mutable
Jaguar
fields
1.3.8 #
- More stuff for
map
1.3.7 #
- Fixed RouteBuilder functions
1.3.6 #
- Fixed to
map
method inMuxable
1.3.5 #
- RouteBuilder functions
- Route
map
er forMuxable
1.3.2 #
- Uses Dart 2's void as type to FutureOr in Interceptor return type
1.3.1 #
- Faster streamlined request handling
1.2.10 #
- More streamlining of route handlers
1.2.9 #
- Stream lined request handling
- Removed global interceptors
- Removed debug streams
1.2.8 #
- Added
ResponseProcessor
Route
now hasresponseProcessor
to allow processing response outside handlersInterceptor.chain
usesresponseProcessor
- Added
GetJson
,PutJson
,PostJson
,DeleteJson
,GetHtml
route annotations - JSON route annotations and mux methods now use
responseProcessor
1.2.7 #
staticFiles
now respectsindex.html
1.2.6 #
Wrap
andWrapOne
take function orSymbol
as interceptor creator
1.2.2-dev #
- Loosened type of
WrapOne
1.2.1-dev #
Wrap
andWrapOne
take function as interceptor creatorparse
andwrite
methods ofSessionManager
takesContext
instead ofRequest
- Removed session related methods and fields from
Request
0.7.1 #
- Stripped out all mirror dependent elements to
jaguar_reflect
- Added
RouteChainSimple
to improve performance - Renamed
queryParams
toquery
0.6.27 #
- Widened dependency on meta package
0.6.27 #
- Widened dependency on args package
0.6.26 #
- Simplified request handling code
0.6.25 #
Context
gets session accessorssession
andparsedSession
0.6.24 #
- Fixed
RouteChain
building issue
0.6.23 #
- Added
staticFiles
method toJaguar
to serve static files! - Added
staticFile
method toJaguar
to serve a single static file!
Breaking Changed #
- Renamed
ReflectedRoute
toRouteChain
- Renamed
JaguarReflected
toReflectedApi
- Renamed
reflectJaguar
toreflectApi
0.6.22 #
- Added
html
,json
,getJson
,putJson
,postJson
,deleteJson
methods toMuxable
andRouteBuilder
0.6.21 #
- Added
socketHandler
to make WebSocket handling easier
0.6.20 #
- Preserve order of RequestHandlers
0.6.19 #
- Bug fix for
Session
0.6.18 #
- Sessions are now only written when necessary
- Added HMAC based signing to session data
0.6.14 #
Session
inRequest
SessionManager
inJaguar
to parse and write session data
0.6.13 #
bodyAsText
's encoding parameter is optional
0.6.12 #
- Upgraded intl dependency
0.6.11 #
- Bootstrapping root APIs using
bootstrap
method - Supports
package:dice
based DI during bootstrapping
0.6.10 #
- Jaguar shall log only unknown exceptions
0.6.9 #
- Return types of route handlers are now
FutureOr
0.6.8 #
- Mux methods now take response members
- Definition of
RouteHandlerFunc
0.6.7 #
wrap
method onJaguar
0.6.6 #
- XML rendering support
- New error rendering mechanism
- Debug stream
0.6.5 #
- Merged jaguar_reflect and jaguar_mux into jaguar core
0.6.1 #
- Global interceptors
0.6.0 #
Context
basedRequestHandler
0.5.10 #
- Expose Logger to
Interceptors
andRoutes
- Configurable
ErrorWriter
0.5.9 #
- Fixed writing headers to response by
Response
0.5.4 #
- Added
redirect
toResponse
class
0.5.0 #
- Removed RouteWrapper
- Removed injection
0.2.7 #
- Added properly handling
List<int>
response type - Implemented Route redirection
0.1.14 #
- Remove Settings from Configuration
0.1.13 #
- Removed isolate creation. Control is given to the programmer.
- Bug fix for "Page not found!" error
0.0.3 #
Breaking Changes:
Annotation to build annotation from annotated function has changed.
PreProcessorFunction
has changed toPreInterceptorFunction
PostProcessorFunction
has changed toPostInterceptorFunction
jaguar.yaml
parameters has also changed
pre_processors
has changed topre_interceptors
post_processors
has changed topost_interceptors