webfetch 0.1.0 webfetch: ^0.1.0 copied to clipboard
A Dart implementation of the Web Fetch API that allows you to make requests and process results just like using fetch in a browser.
v0.1.0 #
- deps: Upgrade
web
package to1.0.0
version - SDK: Upgrade Dart SDK min version to
3.4.0
Web Fetch v0.0.17 #
What's Changed #
- Fix the error that
body
is a stream and cannot be read repeatedly.
0.0.16 #
- fix exported
Client
.
0.0.15 #
- fix headers not copy
set-cookie
headers. - fix
Request
andResponse
fromdata parse not supportx-www-form-urlencoded
format.
0.0.14 #
- fix
Response
andRequest
clone failure. - fix that the response fully complies with MDN Response conventions, and now all attributes are read-only
- fix request compies with MDN Request conventions, and now all attributes are read-only
- support nullable
Request
body - support nullable
Response
body
0.0.13 #
- Fix Flutter project cannot rely on the latest version
- Update dart sdk version to
^3.2.0
0.0.12 #
- Remove
http
package dependency. - Support custom HTTP client.
- Fix
window
not found.
0.0.11 #
- BUG: Fix stream data conversion failure when request body is empty.
0.0.10 #
- feat: Support
TypedData
body encoding request/response.
0.0.9 #
- feat:
Response
supportURLSearchParams
body encoding.
0.0.8 #
Fix the response properties are not set correctly.
0.0.7 #
It's not important to improve the rating
0.0.6 #
- feat: Add
Response.redirect
factory constructor. - fix: Fix
Response
not supportnull
body.
0.0.5 #
A Dart implementation of the Web Fetch API that allows you to make requests and process results just like using fetch in a browser.
0.0.4 #
Update http package.
0.0.3 #
- Fix
Response.json
to returns type defined.
0.0.2 #
- Fix
decodeURIComponent
anddecodeURI
to returns type defined. - Fix
Headers`` not filtering
set-cookie`.