diff --git a/.travis.yml b/.travis.yml index 273dec1..8cc83d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,15 +17,16 @@ env: - OS_CACHING_ENGINE=memcached - OST_MEMCACHE_SERVERS=127.0.0.1:11211 node_js: - - "8" + - "12" + - "10" services: - memcached before_install: - - sudo apt-get update - - sudo apt-get install nodejs - - sudo apt-get install npm + - sudo apt-get update + - sudo apt-get install nodejs + - sudo apt-get install npm install: - - npm install + - npm install before_script: - mkdir -p dynamodb - wget https://s3.ap-south-1.amazonaws.com/dynamodb-local-mumbai/dynamodb_local_latest.zip -O ./dynamodb/dynamodb_local_latest.zip @@ -39,4 +40,4 @@ script: after_script: - kill $(ps aux | grep 'DynamoDBLocal.jar' | awk '{print $2}') - rm -rf dynamodb - - rm -rf dynamodb_instance_2 \ No newline at end of file + - rm -rf dynamodb_instance_2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8efd0e1..bd3e15d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Storage v1.0.4 +- Upgraded node version to 10.x +- Version bump for dependencies. + ## Storage v1.0.3 - Integrated with new Instance Composer. - Migrated to ES6. @@ -23,4 +27,4 @@ - Auto Scale services to scale read/write capacity of DynamoDB tables. - Cache layer on top of Shard management services. - Model layer for token_balances and transaction_logs to support respective queries to DynamoDB. -- Cache layer on top of token_balances. \ No newline at end of file +- Cache layer on top of token_balances. diff --git a/VERSION b/VERSION index 21e8796..ee90284 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.3 +1.0.4 diff --git a/package.json b/package.json index 1c966f9..01b8bcf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ostdotcom/storage", - "version": "1.0.4-beta.1", + "version": "1.0.4", "description": "OST storage provides data storage and sharding services.", "main": "index.js", "scripts": { @@ -24,7 +24,7 @@ }, "homepage": "https://github.com/ostdotcom/storage#readme", "dependencies": { - "@ostdotcom/base": "1.0.0", + "@ostdotcom/base": "^2.0.0", "aws-sdk": "2.263.1", "amazon-dax-client": "1.1.3", "bignumber.js": "4.1.0"