You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2016/01/16 02:12:28 UTC

[1/2] cordova-plugin-file-transfer git commit: CB-10368 Updated version and RELEASENOTES.md for release 1.5.0

Repository: cordova-plugin-file-transfer
Updated Branches:
  refs/heads/master 333dd7ec1 -> 6ae9af436


CB-10368 Updated version and RELEASENOTES.md for release 1.5.0


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/commit/3540af43
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/tree/3540af43
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/diff/3540af43

Branch: refs/heads/master
Commit: 3540af439ed0a91885ff2cbf5e0a3d42c7fd05ed
Parents: 333dd7e
Author: Steve Gill <st...@gmail.com>
Authored: Fri Jan 15 16:35:05 2016 -0800
Committer: Steve Gill <st...@gmail.com>
Committed: Fri Jan 15 16:35:05 2016 -0800

----------------------------------------------------------------------
 RELEASENOTES.md  | 19 +++++++++++++++++++
 package.json     |  2 +-
 plugin.xml       |  4 ++--
 tests/plugin.xml |  2 +-
 4 files changed, 23 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/3540af43/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 10c7022..86c5d8b 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -20,6 +20,25 @@
 -->
 # Release Notes
                                               
+### 1.5.0 (Jan 15, 2016)
+* CB-10208 Fix `file-transfer` multipart form data upload format on **Windows**
+* CB-9837 Add data `URI` support to `file-transfer` upload on **iOS**
+* CB-9600 `FileUploadOptions` params not posted on **iOS**
+* CB-9840 Fallback `file-transfer` `uploadResponse` encoding to `latin1` in case not encoded with `UTF-8` on **iOS**
+* CB-9840 Fallback `file-transfer` upload/download response encoding to `latin1` in case not encoded with `UTF-8` on **iOS**
+* CB-8641 **Windows Phone 8.1** Some `file-transfer` plugin tests occasionally fail in `mobilespec`
+* Adding linting and fixing linter warnings. Reducing timeouts to 7 seconds.
+* CB-10100 updated file dependency to not grab new majors
+* CB-7006 Empty file is created on file transfer if server response is 304
+* CB-10098 `filetransfer.spec.33` is faulty
+* CB-9969 Filetransfer upload error deletes original file
+* CB-10088 `filetransfer spec.10` and `spec.11` test is faulty
+* CB-9969 Filetransfer upload error deletes original file
+* CB-10086 There are two `spec.31` tests for `file-transfer` tests
+* CB-10037 Add progress indicator to file-transfer manual tests
+* CB-9563 Mulptipart form data is used even a header named `Content-Type` is present
+* CB-8863 fix block usage of self
+
 ### 1.4.0 (Nov 18, 2015)
 * [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Updated `RELEASENOTES` to be newest to oldest
 * [CB-9879](https://issues.apache.org/jira/browse/CB-9879) `getCookie`s can cause unhandled `NullPointerException`

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/3540af43/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index d735bbe..6ab324f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-file-transfer",
-  "version": "1.4.1-dev",
+  "version": "1.5.0",
   "description": "Cordova File Transfer Plugin",
   "cordova": {
     "id": "cordova-plugin-file-transfer",

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/3540af43/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 865a19b..bb732ee 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -21,7 +21,7 @@
 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
     xmlns:android="http://schemas.android.com/apk/res/android"
     id="cordova-plugin-file-transfer"
-    version="1.4.1-dev">
+    version="1.5.0">
     <name>File Transfer</name>
     <description>Cordova File Transfer Plugin</description>
     <license>Apache 2.0</license>
@@ -29,7 +29,7 @@
     <repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git</repo>
     <issue>https://issues.apache.org/jira/browse/CB/component/12320650</issue>
 
-    <dependency id="cordova-plugin-file" version="^3.0.0" />
+    <dependency id="cordova-plugin-file" version="^4.0.0" />
 
     <js-module src="www/FileTransferError.js" name="FileTransferError">
         <clobbers target="window.FileTransferError" />

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/3540af43/tests/plugin.xml
----------------------------------------------------------------------
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 5fa2119..855a7cd 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -21,7 +21,7 @@
 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
     xmlns:android="http://schemas.android.com/apk/res/android"
     id="cordova-plugin-file-transfer-tests"
-    version="1.4.1-dev">
+    version="1.5.0">
     <name>Cordova File Transfer Plugin Tests</name>
     <license>Apache 2.0</license>
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[2/2] cordova-plugin-file-transfer git commit: CB-10368 Incremented plugin version.

Posted by st...@apache.org.
CB-10368 Incremented plugin version.


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/commit/6ae9af43
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/tree/6ae9af43
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/diff/6ae9af43

Branch: refs/heads/master
Commit: 6ae9af436ce2a1b44bd9379364d650f49a1f19b1
Parents: 3540af4
Author: Steve Gill <st...@gmail.com>
Authored: Fri Jan 15 16:58:32 2016 -0800
Committer: Steve Gill <st...@gmail.com>
Committed: Fri Jan 15 16:58:32 2016 -0800

----------------------------------------------------------------------
 package.json     | 2 +-
 plugin.xml       | 2 +-
 tests/plugin.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/6ae9af43/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 6ab324f..9dfec32 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-file-transfer",
-  "version": "1.5.0",
+  "version": "1.5.1-dev",
   "description": "Cordova File Transfer Plugin",
   "cordova": {
     "id": "cordova-plugin-file-transfer",

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/6ae9af43/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index bb732ee..b7cd6fe 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -21,7 +21,7 @@
 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
     xmlns:android="http://schemas.android.com/apk/res/android"
     id="cordova-plugin-file-transfer"
-    version="1.5.0">
+    version="1.5.1-dev">
     <name>File Transfer</name>
     <description>Cordova File Transfer Plugin</description>
     <license>Apache 2.0</license>

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/6ae9af43/tests/plugin.xml
----------------------------------------------------------------------
diff --git a/tests/plugin.xml b/tests/plugin.xml
index 855a7cd..9cb77c9 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -21,7 +21,7 @@
 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
     xmlns:android="http://schemas.android.com/apk/res/android"
     id="cordova-plugin-file-transfer-tests"
-    version="1.5.0">
+    version="1.5.1-dev">
     <name>Cordova File Transfer Plugin Tests</name>
     <license>Apache 2.0</license>
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org