Merge pull request #4 from dart-backend/feature/v8

Updated body_parser
This commit is contained in:
Thomas Hii 2023-05-26 23:07:40 +08:00 committed by GitHub
commit 819e030a32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 5 deletions

View file

@ -1,5 +1,10 @@
# Change Log # Change Log
## 5.1.0
* Updated `belatuk_http_server` to 4.1.1
* Updated `http` to 1.0.0
## 5.0.0 ## 5.0.0
* Require Dart >= 3.0 * Require Dart >= 3.0

View file

@ -30,7 +30,7 @@ A benefit of this is that primitive types are automatically deserialized correct
To install Body Parser for your Dart project, simply add body_parser to your pub dependencies. To install Body Parser for your Dart project, simply add body_parser to your pub dependencies.
dependencies: dependencies:
belatuk_body_parser: ^5.0.0 belatuk_body_parser: ^5.1.0
### Usage ### Usage

View file

@ -1,14 +1,14 @@
name: belatuk_body_parser name: belatuk_body_parser
version: 5.0.0 version: 5.1.0
description: Parse request bodies and query strings in Dart. Supports JSON, URL-encoded, and multi-part bodies. description: Parse request bodies and query strings in Dart. Supports JSON, URL-encoded, and multi-part bodies.
homepage: https://github.com/dart-backend/belatuk-common-utilities/tree/main/packages/body_parser homepage: https://github.com/dart-backend/belatuk-common-utilities/tree/main/packages/body_parser
environment: environment:
sdk: '>=3.0.0 <4.0.0' sdk: '>=3.0.0 <4.0.0'
dependencies: dependencies:
http_parser: ^4.0.0 http_parser: ^4.0.0
belatuk_http_server: ^4.0.0 belatuk_http_server: ^4.1.0
mime: ^1.0.0 mime: ^1.0.0
dev_dependencies: dev_dependencies:
http: ^0.13.0 http: ^1.0.0
test: ^1.24.0 test: ^1.24.0
lints: ^2.0.0 lints: ^2.1.0