summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md10
-rw-r--r--Dockerfile2
-rw-r--r--snapcraft.yaml16
3 files changed, 21 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 57e538b9..58da6d0c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+# Upcoming Wekan release
+
+This release adds the following new features:
+
+* Update to Node 4.8.7
+
+Thanks to GitHub user xet7 for contributions.
+
# v0.62 2017-12-12 Wekan release
This release fixes the following bugs:
@@ -17,7 +25,7 @@ This release adds the following new features:
* [Make it easier to see the Add Card button at top of list](https://github.com/wekan/wekan/pull/1392);
* [Add mixmax:smart-disconnect to lower CPU usage when browser tab is not selected](https://github.com/wekan/wekan-mongodb/issues/2);
* Update tranlations. Add Latvian language;
-* Update to Node 4.8.4 and MongoDB 3.2.18.
+* Update to Node 4.8.6 and MongoDB 3.2.18.
and fixes the following bugs:
diff --git a/Dockerfile b/Dockerfile
index f8027594..70f1af2f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,7 +15,7 @@ ARG SRC_PATH
# paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303
ENV BUILD_DEPS="wget curl bzip2 build-essential python git ca-certificates gcc-4.9 paxctl"
ENV GOSU_VERSION=1.10
-ENV NODE_VERSION ${NODE_VERSION:-v4.8.6}
+ENV NODE_VERSION ${NODE_VERSION:-v4.8.7}
ENV METEOR_RELEASE ${METEOR_RELEASE:-1.4.4.1}
ENV USE_EDGE ${USE_EDGE:-false}
ENV METEOR_EDGE ${METEOR_EDGE:-1.5-beta.17}
diff --git a/snapcraft.yaml b/snapcraft.yaml
index 59e786d8..18b980f8 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -54,7 +54,7 @@ apps:
parts:
mongodb:
- source: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-3.2.16.tgz
+ source: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-3.2.18.tgz
plugin: dump
stage-packages: [libssl1.0.0]
filesets:
@@ -70,23 +70,29 @@ parts:
wekan:
source: .
plugin: nodejs
- node-engine: 4.8.4
+ node-engine: 4.8.7
node-packages:
+ - n
- npm@4.6.1
- node-gyp
- node-pre-gyp
- fibers@1.0.15
build-packages:
+ - ca-certificates
- python
- g++
- capnproto
- - nodejs
- - nodejs-legacy
+ - npm
- curl
+ - paxctl
prepare: |
echo "Cleaning environment first"
rm -rf ~/.meteor ~/.npm /usr/local/lib/node_modules
- echo "installing meteor first"
+ echo "Installing node"
+ n 4.8.7
+ echo "Applying paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303"
+ paxctl -mC `which node`
+ echo "Installing meteor"
curl https://install.meteor.com/ -o install_meteor.sh
sed -i "s|RELEASE=.*|RELEASE=\"1.4.4.1\"|g" install_meteor.sh
chmod +x install_meteor.sh