Skip to content

Commit 674e385

Browse files
committed
v0.8.0
1 parent 53482fd commit 674e385

File tree

16 files changed

+117
-15
lines changed

16 files changed

+117
-15
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
<a name="0.8.0"></a>
7+
# [0.8.0](https://github.com/Syncano/syncano-node/compare/v0.7.1...v0.8.0) (2018-02-09)
8+
9+
10+
### Bug Fixes
11+
12+
* added missing await ([#126](https://github.com/Syncano/syncano-node/issues/126)) ([d78b1ca](https://github.com/Syncano/syncano-node/commit/d78b1ca))
13+
* **circleci:** proper deploy key ([c4ff73d](https://github.com/Syncano/syncano-node/commit/c4ff73d))
14+
* **cli:e2e:** turn on forgoten tests ([edbb9e9](https://github.com/Syncano/syncano-node/commit/edbb9e9))
15+
* **cli:e2e:registry:** fixing tests ([e528943](https://github.com/Syncano/syncano-node/commit/e528943))
16+
* **cli:init:** createInstance bug ([#121](https://github.com/Syncano/syncano-node/issues/121)) ([e3718bb](https://github.com/Syncano/syncano-node/commit/e3718bb))
17+
* **test:** package name ([b301bf3](https://github.com/Syncano/syncano-node/commit/b301bf3))
18+
* adding host ([53482fd](https://github.com/Syncano/syncano-node/commit/53482fd))
19+
* paths ([4a15344](https://github.com/Syncano/syncano-node/commit/4a15344))
20+
21+
22+
### Features
23+
24+
* installation guide ([c120e38](https://github.com/Syncano/syncano-node/commit/c120e38))
25+
* links update & windows guide draft ([8e006ca](https://github.com/Syncano/syncano-node/commit/8e006ca))
26+
* **cli:socket:** verifying socket compatibility ([c3003f8](https://github.com/Syncano/syncano-node/commit/c3003f8))
27+
28+
29+
30+
631
<a name="0.7.1"></a>
732
## [0.7.1](https://github.com/Syncano/syncano-node/compare/v0.7.0...v0.7.1) (2018-01-28)
833

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
]
1717
}
1818
},
19-
"version": "0.7.1",
19+
"version": "0.8.0",
2020
"changelog": {
2121
"repo": "syncano/syncano-node",
2222
"labels": {

packages/cli/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
<a name="0.8.0"></a>
7+
# [0.8.0](https://github.com/Syncano/syncano-node/compare/v0.7.1...v0.8.0) (2018-02-09)
8+
9+
10+
### Bug Fixes
11+
12+
* **cli:e2e:** turn on forgoten tests ([edbb9e9](https://github.com/Syncano/syncano-node/commit/edbb9e9))
13+
* **cli:e2e:registry:** fixing tests ([e528943](https://github.com/Syncano/syncano-node/commit/e528943))
14+
* **cli:init:** createInstance bug ([#121](https://github.com/Syncano/syncano-node/issues/121)) ([e3718bb](https://github.com/Syncano/syncano-node/commit/e3718bb))
15+
* added missing await ([#126](https://github.com/Syncano/syncano-node/issues/126)) ([d78b1ca](https://github.com/Syncano/syncano-node/commit/d78b1ca))
16+
17+
18+
### Features
19+
20+
* **cli:socket:** verifying socket compatibility ([c3003f8](https://github.com/Syncano/syncano-node/commit/c3003f8))
21+
22+
23+
24+
625
<a name="0.7.1"></a>
726
## [0.7.1](https://github.com/Syncano/syncano-node/compare/v0.7.0...v0.7.1) (2018-01-28)
827

packages/cli/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncano/cli",
3-
"version": "0.7.1",
3+
"version": "0.8.0",
44
"description": "CLI for Syncano",
55
"author": "Maciej Kucharz",
66
"license": "MIT",
@@ -32,10 +32,10 @@
3232
"url": "https://github.com/Syncano/syncano-node/issues"
3333
},
3434
"dependencies": {
35-
"@syncano/core": "0.7.1",
35+
"@syncano/core": "0.8.0",
3636
"@syncano/template-project-empty": "0.7.1",
3737
"@syncano/template-project-hello": "0.7.1",
38-
"@syncano/template-socket-es6": "0.7.1",
38+
"@syncano/template-socket-es6": "0.8.0",
3939
"@syncano/template-socket-vanilla": "0.7.1",
4040
"analytics-node": "^3.1.1",
4141
"archiver": "^2.1.0",
@@ -74,7 +74,7 @@
7474
"ws": "^4.0.0"
7575
},
7676
"devDependencies": {
77-
"@syncano/test-tools": "0.7.1",
77+
"@syncano/test-tools": "0.8.0",
7878
"babel-cli": "^6.26.0",
7979
"babel-plugin-add-module-exports": "^0.2.1",
8080
"babel-plugin-dynamic-import-node": "^1.0.2",

packages/lib-js-client/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
<a name="0.8.0"></a>
7+
# [0.8.0](https://github.com/Syncano/syncano-node/compare/v0.7.1...v0.8.0) (2018-02-09)
8+
9+
10+
### Bug Fixes
11+
12+
* **cli:init:** createInstance bug ([#121](https://github.com/Syncano/syncano-node/issues/121)) ([e3718bb](https://github.com/Syncano/syncano-node/commit/e3718bb))
13+
14+
15+
16+
617
<a name="0.7.1"></a>
718
## [0.7.1](https://github.com/Syncano/syncano-client-js/compare/v0.7.0...v0.7.1) (2018-01-28)
819

packages/lib-js-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncano/client",
3-
"version": "0.7.1",
3+
"version": "0.8.0",
44
"description": "Interact with your Syncano Sockets.",
55
"main": "lib/index.js",
66
"author": "Syncano Inc.",

packages/lib-js-core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
<a name="0.8.0"></a>
7+
# [0.8.0](https://github.com/Syncano/syncano-node/compare/v0.7.1...v0.8.0) (2018-02-09)
8+
9+
10+
### Features
11+
12+
* **cli:socket:** verifying socket compatibility ([c3003f8](https://github.com/Syncano/syncano-node/commit/c3003f8))
13+
14+
15+
16+
617
<a name="0.7.1"></a>
718
## [0.7.1](https://github.com/Syncano/syncano-server-js/compare/v0.7.0...v0.7.1) (2018-01-28)
819

packages/lib-js-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncano/core",
3-
"version": "0.7.1",
3+
"version": "0.8.0",
44
"description": "A library to intereact with the Syncano API on a server side.",
55
"main": "lib/index.js",
66
"author": "Syncano Inc.",
@@ -37,7 +37,7 @@
3737
"node-fetch": "2.0.0-alpha.9"
3838
},
3939
"devDependencies": {
40-
"@syncano/test-tools": "0.7.1",
40+
"@syncano/test-tools": "0.8.0",
4141
"babel-cli": "^6.26.0",
4242
"babel-eslint": "^8.0.1",
4343
"babel-plugin-add-module-exports": "^0.2.1",

packages/lib-js-test/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
<a name="0.8.0"></a>
7+
# [0.8.0](https://github.com/Syncano/syncano-node/compare/v0.7.1...v0.8.0) (2018-02-09)
8+
9+
10+
### Bug Fixes
11+
12+
* **cli:init:** createInstance bug ([#121](https://github.com/Syncano/syncano-node/issues/121)) ([e3718bb](https://github.com/Syncano/syncano-node/commit/e3718bb))
13+
* **test:** package name ([b301bf3](https://github.com/Syncano/syncano-node/commit/b301bf3))
14+
15+
16+
17+
618
<a name="0.7.1"></a>
719
## [0.7.1](https://github.com/Syncano/syncano-node/compare/v0.7.0...v0.7.1) (2018-01-28)
820

packages/lib-js-test/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"name": "@syncano/test",
33
"description": "Testing tools for Syncano Sockets",
4-
"version": "0.7.1",
4+
"version": "0.8.0",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"publishConfig": {
88
"access": "public"
99
},
1010
"dependencies": {
11+
"@syncano/validate": "0.8.0",
1112
"babel-cli": "^6.26.0",
1213
"babel-preset-env": "^1.6.1",
1314
"babel-register": "^6.26.0",
@@ -16,8 +17,7 @@
1617
"js-yaml": "^3.10.0",
1718
"lodash": "^4.17.4",
1819
"lodash.merge": "^4.6.0",
19-
"proxyquire": "^1.8.0",
20-
"@syncano/validate": "0.7.1"
20+
"proxyquire": "^1.8.0"
2121
},
2222
"devDependencies": {
2323
"rimraf": "^2.6.2",

0 commit comments

Comments
 (0)