From a2403ec99fb14e05fe1460066c3389bf4d894c33 Mon Sep 17 00:00:00 2001 From: David Duponchel Date: Mon, 14 Mar 2016 22:26:42 +0100 Subject: [PATCH] [breaking change] drop node 0.8 support. Since nodejs 0.10.26 (npm 1.4.3), the default when doing a `npm install --save` is to use caret ranges (`^1.2.3`). It is now nearly impossible to use nodejs 0.8 with recent version of libs because of this: if a transitive dependency uses a caret, we get a "No compatible version found" error. We can't use Travis to test nodejs 0.8: because of these dependencies, the `npm install` phase failed. From [here][0], nodejs 0.10 still has a lot of users while nodejs 0.8 doesn't even appears on the chart. [0]: https://semaphoreci.com/blog/2015/12/15/nodejs-version-usage-in-commercial-projects-2015-edition.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 33e52ff7..a2bb1dd6 100644 --- a/index.html +++ b/index.html @@ -121,7 +121,7 @@

Support

Tested with the latest version Tested with the latest version Tested with IE 6 / 7 / 8 / 9 / 10 - Tested with node.js 0.8 and 0.10 + Tested with node.js 0.10 / latest version