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

Commit 5ebf15a

Browse files
committed
bump to 0.9.4-beta.4
1 parent c0a6ee6 commit 5ebf15a

File tree

3 files changed

+6
-34
lines changed

3 files changed

+6
-34
lines changed

README.md

+4-32
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# react-native-fetch-blob
1+
# react-native-fetch-blob
22
[![release](https://img.shields.io/github/release/wkh237/react-native-fetch-blob.svg?style=flat-square)](https://github.com/wkh237/react-native-fetch-blob/releases) [![npm](https://img.shields.io/npm/v/react-native-fetch-blob.svg?style=flat-square)](https://www.npmjs.com/package/react-native-fetch-blob) ![](https://img.shields.io/badge/PR-Welcome-brightgreen.svg?style=flat-square) [![](https://img.shields.io/badge/Wiki-Public-brightgreen.svg?style=flat-square)](https://github.com/wkh237/react-native-fetch-blob/wiki) [![npm](https://img.shields.io/npm/l/react-native-fetch-blob.svg?maxAge=2592000&style=flat-square)]()
33

44

@@ -25,6 +25,7 @@ A project committed to make file acess and data transfer easier, efficient for R
2525
* [Cancel HTTP request](#user-content-cancel-request)
2626
* [Android Media Scanner, and Download Manager Support](#user-content-android-media-scanner-and-download-manager-support)
2727
* [Self-Signed SSL Server](#user-content-self-signed-ssl-server)
28+
* [Transfer Encoding](#user-content-transfer-encoding)
2829
* [RNFetchBlob as Fetch](#user-content-rnfetchblob-as-fetch)
2930
* [File System](#user-content-file-system)
3031
* [File access](#user-content-file-access)
@@ -68,7 +69,7 @@ pod 'react-native-fetch-blob,
6869

6970
If rnpm link command failed to link the package automatically, you might try manually link the package.
7071

71-
Open `android/app/build.gradle`, add this line
72+
Open `android/app/build.gradle`, add this line
7273

7374
```diff
7475
dependencies {
@@ -737,36 +738,7 @@ If you're going to concatenate files, you don't have to read the data to JS cont
737738

738739
## Changes
739740

740-
| Version | |
741-
|---|---|
742-
| 0.9.2 | Add Blob.slice() method implementation #89 |
743-
| 0.9.1 | Fix Android Blob constructor asynchronous issue caused by 0.9.0 fs change |
744-
| 0.9.0 | Fix unicode response data format issue #73. Improve Android performance by using thread pool instead of async task. Add Fetch replacement #70. Add Android only API `actionViewIntent` to open file or install APK in app |
745-
| 0.8.1 | Remove Web API log and fix ios progress report function. |
746-
| 0.8.0 | Added Web API polyfills, support regular request, added timeout option. |
747-
| 0.7.5 | Fix installation script that make it compatible to react-native < 0.28 |
748-
| 0.7.4 | Fix app crash problem in version > 0.27 |
749-
| 0.7.3 | Fix OkHttp dependency issue in version < 0.29 |
750-
| 0.7.2 | Fix cancel request bug |
751-
| 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
752-
| 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |
753-
| 0.6.4 | Fix rnpm link script. |
754-
| 0.6.3 | Fix performance issue on IOS, increase max concurrent request limitation from 1. |
755-
| 0.6.2 | Add support of asset file and camera roll files, Support custom MIME type when sending multipart request, thanks @smartt |
756-
| 0.6.1 | Fix #37 progress report API issue on IOS |
757-
| 0.6.0 | Add readFile and writeFile API for easier file access, also added Android download manager support. |
758-
| 0.5.8 | Fix #33 PUT request will always be sent as POST on Android |
759-
| 0.5.7 | Fix #31 #30 Xcode pre 7.3 build error |
760-
| 0.5.6 | Add support for IOS network status indicator. Fix file stream ASCII reader bug. |
761-
| 0.5.5 | Remove work in progress code added in 0.5.2 which may cause memory leaks. |
762-
| 0.5.4 | Fix #30 #31 build build error, and improve memory efficiency. |
763-
| 0.5.3 | Add API for access untrusted SSL server |
764-
| 0.5.2 | Fix improper url params bug [#26](https://github.com/wkh237/react-native-fetch-blob/issues/26) and change IOS HTTP implementation from NSURLConnection to NSURLSession |
765-
| 0.5.0 | Upload/download with direct access to file storage, and also added file access APIs |
766-
| 0.4.2 | Supports upload/download progress |
767-
| 0.4.1 | Fix upload form-data missing file extension problem on Android |
768-
| 0.4.0 | Add base-64 encode/decode library and API |
769-
| ~0.3.0 | Upload/Download octet-stream and form-data |
741+
See [release notes](https://github.com/wkh237/react-native-fetch-blob/releases)
770742

771743
### Development
772744

package.json

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

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.9.4-beta.3",
3+
"version": "0.9.4-beta.4",
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)