spry 3.3.1
spry: ^3.3.1 copied to clipboard
Spry is an HTTP middleware framework for Dart to make web applications and APIs server more enjoyable to write.
Spry v3.3.1 #
To install Spry v3.3.1 run the following command:
dart pub add spry:3.3.1
or update your pubspec.yaml file:
dependencies:
spry: ^3.3.1
What's Changed #
- fix(request): Fetch client using mook request
Spry v3.3.0 #
To install Spry v3.3.0 run the following command:
dart pub add spry:3.3.0
or update your pubspec.yaml file:
dependencies:
spry: ^3.3.0
What's Changed #
- Feature: Support
request.fetch, seewebfetchfetch function.
Spry v3.2.3 #
To install Spry v3.2.3 run the following command:
dart pub add spry:3.2.3
Or update your pubspec.yaml file:
dependencies:
spry: ^3.2.3
What's Changed #
- fix
request.json()being incorrectly set to not lock (false).
Spry v3.2.2 #
To install Spry v3.2.2 run the following command:
dart pub add spry:3.2.2
Or update your pubspec.yaml file:
dependencies:
spry: ^3.2.2
What's Changed #
- fix response not using encoding
- fix
FormDataresponse charset ResponsesiblesupportHttpClientResponseofdart:ioResponsesiblesupportHttpResponseofdart:ioResponsesiblesupportTypedData
Spry v3.2.1 #
To install Spry v3.2.1 run the following command:
dart pub add spry:3.2.1
Or update your pubspec.yaml file:
dependencies:
spry: ^3.2.1
What's Changed #
- fix type version information
Spry v3.2.0 #
To install Spry v3.2.0 run the following command:
dart pub add spry:3.2.0
Or update your pubspec.yaml file:
dependencies:
spry: ^3.2.0
What's Changed #
- Docs: fix
route.pathtoroute.segments, Thanks @utamori - Feature: Support
RethrowEception, Catch exception to next filter process - Feature:
request.jsonsupports implicit type conversion - Feature: Added built-in
Blobexport - Feature: Support closure-style middleware
- Feature: Support custom
x-powered-byheader value inapp.poweredBy
Credits #
- @utamori - GitHub Profile
Spry v3.1.2 #
To install Spry v3.1.2 run the following command:
dart pub add spry:3.1.2
Or update your pubspec.yaml file:
dependencies:
spry: ^3.1.2
What's Changed #
- BUG: Fixed Iterable responsible cannot be correctly JSON serialized.
- BUG: Fixed middleware handler not being able to call next correctly.
app.groupadds closure suggested parameter name
Spry v3.1.1 #
To install Spry v3.1.1 run the following command:
dart pub add spry:3.1.1
Or update your pubspec.yaml file:
dependencies:
spry: ^3.1.1
What's Changed #
- Bug: Fix global middleware not being used
- Feature: Support a
IterableofMiddlewarestack support making handler. - Feature: Public
ClosureHandlerclass.
Spry 3.1.0 #
To install Spry 3.1.0 run the following command:
dart pub add spry
Or update your pubspec.yaml file:
dependencies:
spry: ^3.1.0
What's Changed #
- Feature:
Applicationsupport late initialization HTTP server - Feature:
Applicationsupport with HTTP server factory. - Docs: Add
Applicationdocument. - Bug: Fix
addRoutewithout parameter signature ofTtype. - Feature: Support web socket.
- Docs: Add web socket document.
Spry 3.0.0 #
To install Spry 3.0.0 run the following command:
dart pub add spry
Or update your pubspec.yaml file:
dependencies:
spry: ^3.0.0
What's Changed #
- Breaking Change: Rewrite the entire design of the framework, and the API is completely different from the previous version.
- Cancel the request dialect and use
HttpRequestofdart:io - Cancel the response dialect and use
HttpResponseofdart:io - perform magic on the
HttpRequestandHttpResponseobjects to make them easier to use and more powerful - Better performing router
- Let you learn less, you only need to know
dart:io