Skip to content

Commit b4dd230

Browse files
committed
2.0.0-rc.14
1 parent 0b3d689 commit b4dd230

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

.travis.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ matrix:
3232

3333
script:
3434
- npm run test
35-
- curl -o package.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/v4/scripts/connector/package-connector.sh
35+
- npm run tsc
36+
- curl -o package.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/master/scripts/connector/package-connector.sh
3637
- chmod 555 package.sh
3738
- ./package.sh
3839

@@ -42,15 +43,22 @@ deploy:
4243
api_key: ${GITHUB_TOKEN}
4344
file_glob: true
4445
file:
45-
- "build/*.tar.gz"
46-
- "build/*.zip"
46+
- "build/*/*.tar.gz"
47+
- "build/*/*.zip"
4748
on:
4849
tags: true
50+
- provider: npm
51+
52+
api_key: ${NPM_TOKEN}
53+
skip_cleanup: true
54+
on:
55+
tags: true
56+
node_js: '10'
57+
condition: $TRAVIS_OS_NAME = linux
4958

5059
after_deploy:
51-
- curl -o test.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/v4/scripts/connector/test-connector.sh
52-
- chmod 555 test.sh
53-
- ./test.sh
60+
- curl -o test.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/master/scripts/connector/test-connector.sh
61+
- bash ./test.sh
5462

5563
after_script:
5664
- "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [2.0.0] - 2019-07-30
2+
3+
### Feature
4+
5+
Using the new V4 API, allowing versions to be stored seperately from the data for faster withdrawal times.
6+
17
## [1.2.2] - 2019-05-30
28

39
### Fix

src/connector.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import { DeepstreamPlugin, DeepstreamCache, StorageReadCallback, StorageWriteCal
1616
* @constructor
1717
*/
1818
export class CacheConnector extends DeepstreamPlugin implements DeepstreamCache {
19-
public apiVersion = 2
2019
public isReady = false
2120
public description = `Redis Cache Connector ${pkg.version}`
2221
private readBuffer: Map<string, StorageReadCallback> = new Map()

0 commit comments

Comments
 (0)