You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by dp...@apache.org on 2018/06/07 14:03:47 UTC

[cordova-fetch] branch master updated (26652f0 -> c862e2c)

This is an automated email from the ASF dual-hosted git repository.

dpogue pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-fetch.git.


    from 26652f0  Fix repo url in package.json (#20)
     new b0040a4  CB-14066: Drop support for Node 4
     new c862e2c  Add workaround for failing tests on AppVeyor/Node10

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml  | 2 +-
 appveyor.yml | 7 +++++--
 package.json | 4 ++--
 3 files changed, 8 insertions(+), 5 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
dpogue@apache.org.

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


[cordova-fetch] 01/02: CB-14066: Drop support for Node 4

Posted by dp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dpogue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-fetch.git

commit b0040a463b0f3f22fe03f17f79686d2b820b7e37
Author: Raphael von der Grün <ra...@gmail.com>
AuthorDate: Thu Jun 7 00:54:28 2018 +0200

    CB-14066: Drop support for Node 4
---
 .travis.yml  | 2 +-
 appveyor.yml | 4 ++--
 package.json | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 53f19a8..f50997f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,9 +3,9 @@ sudo: false
 git:
   depth: 10
 node_js:
-  - "4"
   - "6"
   - "8"
+  - "10"
 install:
   - "npm install"
 script:
diff --git a/appveyor.yml b/appveyor.yml
index ffe5194..f34dfbd 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -3,10 +3,10 @@
 
 environment:
   matrix:
-  - nodejs_version: "4"
   - nodejs_version: "6"
   - nodejs_version: "8"
-  
+  - nodejs_version: "10"
+
 install:
   - ps: Install-Product node $env:nodejs_version
   - npm install
diff --git a/package.json b/package.json
index 305030c..04ede01 100644
--- a/package.json
+++ b/package.json
@@ -45,7 +45,7 @@
     "jasmine": "jasmine spec/fetch.spec.js spec/fetch-unit.spec.js"
   },
   "engines": {
-    "node": ">=4.0.0",
-    "npm": ">= 2.5.1"
+    "node": ">= 6",
+    "npm": ">= 3"
   }
 }

-- 
To stop receiving notification emails like this one, please contact
dpogue@apache.org.

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


[cordova-fetch] 02/02: Add workaround for failing tests on AppVeyor/Node10

Posted by dp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dpogue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-fetch.git

commit c862e2ccf85c2ab1fc4bb95106b8b6034effc027
Author: Raphael von der Grün <ra...@gmail.com>
AuthorDate: Thu Jun 7 11:20:27 2018 +0200

    Add workaround for failing tests on AppVeyor/Node10
---
 appveyor.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/appveyor.yml b/appveyor.yml
index f34dfbd..eb430ca 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -16,4 +16,7 @@ build: off
 test_script:
   - node --version
   - npm --version
+  # Solution proposed in https://stackoverflow.com/questions/49256190/how-to-fix-git-sh-setup-file-not-found-in-windows#comment88245403_49256190
+  # to work around https://github.com/appveyor/ci/issues/2420
+  - set "PATH=%PATH%;C:\Program Files\Git\mingw64\libexec\git-core"
   - npm test

-- 
To stop receiving notification emails like this one, please contact
dpogue@apache.org.

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