spry 2.1.1 copy "spry: ^2.1.1" to clipboard
spry: ^2.1.1 copied to clipboard

Spry is an HTTP middleware framework for Dart to make web applications and APIs server more enjoyable to write.

Changelog #

2.1.1 (2023-03-24) #

Bug Fixes #

  • Response: Fix close to not allow just closing the connection (173f571)

2.1.0 (2023-03-23) #

Features #

  • Session: Redesign Session (e414f9d)

Bug Fixes #

  • Core: Fix redirect not sending data (d95568a)
  • core: Spry write response using deprecated (5036589)
  • Fix incorrect exposure of original response (7a9d910)
  • Fixed custom powered By not taking effect (55ca9eb)
  • Not store context self it. (3f8ba84)
  • Request incorrectly exposes the original http request (32e597a)
  • response: Avoid calling raw response cookies too late (a17a339)
  • Response: Avoid content-type calling raw response prematurely (22b1e6f)
  • Response: fix called http response to after (a2df5bf)

2.0.2 (2023-03-21) #

Bug Fixes #

  • cookie: Fix cookie not written to http response (297eb71)

2.0.1 (2023-03-18) #

Bug Fixes #

2.0.0 (2023-03-17) #

⚠ BREAKING CHANGES #

  • Move spry interceptor in framework:

    - import "package:spry_interceptor/spry_interceptor.dart";
    + import "package:spry/interceptor.dart";
    
  • Move spry multer in framework, migration guide:

    - import "package:spry_multer/spry_multer.dart";
    + import "package:spry/multer.dart";
    
  • Move the spry_json into spry:

    - import "package:spry_json/spry_json.dart";
    + import "package:spry/json.dart";
      ...
    - final json = SpryJson(...);
    - spry.use(json);
    
  • Move spry session in framework, mgration guide:

    - import "package:spry_session/spry_session.dart";
    + import "package:spry/session.dart";
    
  • Remove package:spry_urlencoded/spry_urlencoded.dart, moved into package:spry/urlencoded.dart.

Migration guide

- import "package:spry_urlencoded/spry_urlencoded.dart"
+ import "package:spry/urlencoded.dart"

Features #

  • merge spry_urlencoded into spry package (d62f6f3)

Code Refactoring #

  • Move json into spry (d73b978)
  • Move spry interceptor in framework (b7361c7)
  • Move spry multer in framework (70b2884)
  • Move spry session in framework (a264f99)

1.0.0 (2023-03-17) #

⚠ BREAKING CHANGES #

  • Refactor spry core impl

Bug Fixes #

  • Deprecated constants (06f2e63)
  • Fix late context in request/response (f5a6a19)

Code Refactoring #

  • Refactor spry core impl (724ac31)

0.5.0 (2023-03-14) #

Features #

  • MiddlewareNext -> Next (80b3da7)
  • spry: Add redirect and close method in response (d6cb359)
  • spry: Add get spry app in context extension (08fc0d5)
  • spry: Export ContextImpl to package:spry/impl.dart. (ef14385)
  • spry: Request add stream and text method (048e989)
  • spry: request/response text encoding set in global (2e0eadb)
  • spry: Store spry application in context. (2ecbab3)

Bug Fixes #

  • spry: Fix eager close response not written to body (bff8774)
  • spry: Fix no tag to close response after redirection (250483d), closes #28
  • spry: Fix the HttpException is not exported. (5f8f90c)

0.4.1 #

Bug fixes #

  • Fix HttpException.badRequest status code is 400.

0.4.0 #

Breaking changes #

  1. package://spry/extension.dart changed to package://spry/extensions.dart.
  2. Remove Response.send method.
  3. Remove Response.isBodyReady property.
  4. Remove Response encoding parameter.
  5. Add write a Stream<List<int>> to the response body method Response.stream.
  6. Add write a String to the response body method Response.text.
  7. Add write a List<int> to the response body method Response.raw.
  8. Add read the request body as a Stream<List<int>> method Request.stream().
  9. Add read the request body as a String method Request.text().
  10. Request/Response global encoding in Spry instance.

0.3.0 #

Breaking changes #

request.raw getter changed to request.raw()

0.2.0 #

Breaking changes #

request.body is changed to request.raw.

0.1.4 #

  1. Fix eager close response not written to body.

0.1.3 #

  1. Store spry application in context.
  2. Export ContextImpl to package:spry/impl.dart.
  3. The MiddlewareNext type is changed to Next, this will be removed in 0.2 release.

0.1.2 #

  1. request store in context
  2. response store in context
  3. ⚠️ SPRY_HTTP_REQUEST -> SPRY_HTTP_ORIGIN_REQUEST store origin store http request

0.1.1 #

  • Add redirect method to Response.
  • Add close method to Response.

0.1.0 #

Publish a beta version.

0.0.12 #

Fix the HttpException is not exported.

0.0.11 #

Exception interception to prevent accidental program interruption.

0.0.10 #

  • Add SpryException

0.0.9 #

  • Revert response headers not set.

0.0.8 #

  • Fix response headers not set.

0.0.7 #

  1. Add context to response.
  2. Context store add contains method.
  3. Context add map style getter and setter operations.
  4. Remove response.json() method.

0.0.6 #

  • Apply context to request.

0.0.5 #

  • Remove spry.constants exported in spry library.

0.0.4 #

  • Move spryHttpRequest to spry.constants library.
  • Add moddleware extension.

0.0.3 #

  • Public HttpRequest store key.
10
likes
0
pub points
54%
popularity

Publisher

verified publisherodroe.dev

Spry is an HTTP middleware framework for Dart to make web applications and APIs server more enjoyable to write.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

meta, mime

More

Packages that depend on spry