File tree 4 files changed +13
-5
lines changed
4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
- - " 4.6.0"
3
+ - " 4.7"
4
+ - " 6.9"
4
5
services :
5
6
- docker
6
7
script : ./travis-scripts/script.sh
Original file line number Diff line number Diff line change
1
+ # Change Log
2
+
3
+ ## Unreleased
4
+ - [ 2017-01-24] * patch* [ TM-4000] ( https://jiralabone.atlassian.net/browse/TM-4000 ) ** Update to Node.js 6**
5
+
6
+ ## v1.0.0
7
+ - [ 2016-08-31] * major* ** Initial version**
Original file line number Diff line number Diff line change 31
31
"async" : " ^0.9.0" ,
32
32
"cassandra-driver" : " ^3.0.0" ,
33
33
"commander" : " ^2.8.1" ,
34
- "itaas-nodejs-tools" : " git+https://github.com/UUX-Brasil/itaas-nodejs-tools.git#master " ,
34
+ "itaas-nodejs-tools" : " git+https://github.com/UUX-Brasil/itaas-nodejs-tools.git#2.1.0 " ,
35
35
"mkdirp" : " ^0.5.1" ,
36
36
"uuid" : " ^2.0.3"
37
37
},
47
47
"author" : " " ,
48
48
"license" : " MIT" ,
49
49
"homepage" : " https://github.com/UUX-Brasil/cassandra-migrate#readme"
50
- }
50
+ }
Original file line number Diff line number Diff line change 1
1
set -ev
2
2
3
3
# Run a cassandra container
4
- docker run --name cassandra -d -p 9042:9042 cassandra:2.2.5
4
+ docker run --name cassandra -d -p 9042:9042 cassandra:3.0.9
5
5
6
6
# Wait Cassandra to create its internal database
7
7
echo " Waiting Cassandra to be available"
8
- until docker run --link cassandra:cassandra --rm cassandra:2.2.5 cqlsh cassandra 2> /dev/null
8
+ until docker run --link cassandra:cassandra --rm cassandra:3.0.9 cqlsh cassandra 2> /dev/null
9
9
do
10
10
echo -n " ."
11
11
sleep 1
You can’t perform that action at this time.
0 commit comments