Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -39,4 +40,4 @@ script:
after_script:
- kill $(ps aux | grep 'DynamoDBLocal.jar' | awk '{print $2}')
- rm -rf dynamodb
- rm -rf dynamodb_instance_2
- rm -rf dynamodb_instance_2
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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.
- Cache layer on top of token_balances.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.3
1.0.4
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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"
Expand Down