Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.

Commit 1df66d6

Browse files
committed
bump to 0.7.3
1 parent 02dd486 commit 1df66d6

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ A project committed to make file acess and transfer easier and effiecient for Re
2323

2424
## About
2525

26-
This project was initially for solving the issue [facebook/react-native#854](https://github.com/facebook/react-native/issues/854), because React Native does not support `Blob` object and it will cause some problem when sending and receiving binary data. There's aleady [a PR ](https://github.com/facebook/react-native/pull/8324) merged into RN master branch which will probably solving the issue in the near future.
26+
This project was initially for solving the issue [facebook/react-native#854](https://github.com/facebook/react-native/issues/854), because React Native does not support `Blob` object and it will cause some problem when sending and receiving binary data. There's aleady [a PR ](https://github.com/facebook/react-native/pull/8324) merged into RN master branch which will probably solving the issue in the near future.
2727

28-
Now, this project is committed to make file acess and transfer more easier and more effiecient for React Native developers. We've implemented lot of file access function which plays well with our network module. For example, it can upload and download data directly into/from file system, which is much more performant than converting data to BASE64 string and sending them through React JS Bridge, and file stream support so that you can read large file without causing OOM error.
28+
Now, this project is committed to make file acess and transfer more easier and more effiecient for React Native developers. We've implemented lot of file access function which plays well with our network module. For example, it can upload and download data directly into/from file system, which is much more performant than converting data to BASE64 string and sending them through React JS Bridge, and file stream support so that you can read large file without causing OOM error.
2929

3030
## Backward Compatible
3131

@@ -614,6 +614,7 @@ RNFetchBlob.config({
614614

615615
| Version | |
616616
|---|---|
617+
| 0.7.3 | Fix OkHttp dependency issue in version < 0.29 |
617618
| 0.7.2 | Fix cancel request bug |
618619
| 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
619620
| 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fetchblob",
3-
"version": "0.7.2",
3+
"version": "0.7.3",
44
"private": true,
55
"scripts": {
66
"start": "node node_modules/react-native/local-cli/cli.js start",

src/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,7 @@ RNFetchBlob.config({
618618

619619
| Version | |
620620
|---|---|
621+
| 0.7.3 | Fix OkHttp dependency issue in version < 0.29 |
621622
| 0.7.2 | Fix cancel request bug |
622623
| 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
623624
| 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |

src/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-fetch-blob",
3-
"version": "0.7.2",
3+
"version": "0.7.3",
44
"description": "A module provides upload, download, and files access API. Supports file stream read/write for process large files.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)