Skip to content

Commit

Permalink
chore(release): v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fussel178 committed Feb 5, 2021
1 parent 599b1d0 commit 0425f3a
Show file tree
Hide file tree
Showing 18 changed files with 154 additions and 12 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,36 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.0](https://github.com/TelestionTeam/telestion-client/compare/v0.3.3...v0.4.0) (2021-02-05)


### ⚠ BREAKING CHANGES

* **cli:** For previously generated PSCs to work with the new CLI, the // IMPORT_INSERT_MARK and // ARRAY_FIRST_ELEMENT_INSERT_MARK comments have to retrospectively be placed below all imports and at the beginning of the projectWidgets array, respectively
* **event-bus:** The types for the event bus are now accessible in the @wuespace/telestion-client-types package.

### Features

* **cli:** Add `tc-cli docs` to open the telestion-client documentation page ([85a2e03](https://github.com/TelestionTeam/telestion-client/commit/85a2e03f05bf0bdd3887240339a8a15912ea8dd2))
* **cli:** Add `tc-cli generate widget` command ([4305e09](https://github.com/TelestionTeam/telestion-client/commit/4305e09d45204607bba7fa7fd41360824ce2b112)), closes [#263](https://github.com/TelestionTeam/telestion-client/issues/263)
* **cli:** Add `tc-cli stats` command implementation ([#279](https://github.com/TelestionTeam/telestion-client/issues/279)) ([35dbf26](https://github.com/TelestionTeam/telestion-client/commit/35dbf263f820a01deff7a9cf228ba44abf6aaeb3)), closes [#263](https://github.com/TelestionTeam/telestion-client/issues/263)
* **core:** Returned data of event bus abstraction hooks now typable and update documentation ([3b12717](https://github.com/TelestionTeam/telestion-client/commit/3b127176f6d87f64463362eac57c8bb993a4ab04))
* **event-bus:** Remove types and import them from types package instead ([40788b2](https://github.com/TelestionTeam/telestion-client/commit/40788b251dc4dc3060a414092b75eb069cde7438))
* **template:** Add npm scripts and local CLI instance to template ([4c7c503](https://github.com/TelestionTeam/telestion-client/commit/4c7c5035d833d886a6b73fdff268227279ffb669))
* **types:** Add channel address as type and integrate it into message types ([b9569d7](https://github.com/TelestionTeam/telestion-client/commit/b9569d736ca52672516031ace56d1dd8c1aa3b98))
* **types:** Import types from vertx-event-bus ([90fd513](https://github.com/TelestionTeam/telestion-client/commit/90fd513937a2cb628bc15b120ea88ffff11b8e01))


### Bug Fixes

* **cli:** Fix `tc-cli generate` command (and subsequent, broken, CLI) ([a2a25fc](https://github.com/TelestionTeam/telestion-client/commit/a2a25fc9770835b43ea289a8c3006384c42ec3d0))
* **core:** Small type change in implementation for callback in event bus abstraction hooks ([1277d8f](https://github.com/TelestionTeam/telestion-client/commit/1277d8f8895be913bcb72f68dc73df2137036daa))
* **template:** Add .eslintcache to template gitignore ([ccd9c35](https://github.com/TelestionTeam/telestion-client/commit/ccd9c358bf76da0f02368728ac3ccd688033b571))
* **template:** Add React Spectrum Tabs dependency ([ff8a30e](https://github.com/TelestionTeam/telestion-client/commit/ff8a30e41b8c64cac7469643dec17fc2323f80a9))
* **types:** Change type definition for Json serializable data from Map to mapped object ([3fff598](https://github.com/TelestionTeam/telestion-client/commit/3fff59873ca7f6f17af86cda3004eca7cf38d08e))



## 0.3.4 (2021-02-04)

**Note:** Version bump only for package telestion-client
Expand Down
14 changes: 10 additions & 4 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"version": "0.3.4",
"version": "0.4.0",
"npmClient": "npm",
"packages": ["packages/*"],
"packages": [
"packages/*"
],
"changelogPreset": {
"name": "conventionalcommits",
"types": [
Expand Down Expand Up @@ -38,7 +40,9 @@
"hidden": true
}
],
"issuePrefixes": ["#"],
"issuePrefixes": [
"#"
],
"issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}",
"commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commit/{{hash}}",
"compareUrlFormat": "{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}",
Expand All @@ -50,5 +54,7 @@
"message": "chore(release): %s"
}
},
"ignoreChanges": ["**/cypress/**"]
"ignoreChanges": [
"**/cypress/**"
]
}
20 changes: 20 additions & 0 deletions packages/telestion-client-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.0](https://github.com/TelestionTeam/telestion-client/compare/v0.3.3...v0.4.0) (2021-02-05)


### ⚠ BREAKING CHANGES

* **cli:** For previously generated PSCs to work with the new CLI, the // IMPORT_INSERT_MARK and // ARRAY_FIRST_ELEMENT_INSERT_MARK comments have to retrospectively be placed below all imports and at the beginning of the projectWidgets array, respectively

### Features

* **cli:** Add `tc-cli docs` to open the telestion-client documentation page ([85a2e03](https://github.com/TelestionTeam/telestion-client/commit/85a2e03f05bf0bdd3887240339a8a15912ea8dd2))
* **cli:** Add `tc-cli generate widget` command ([4305e09](https://github.com/TelestionTeam/telestion-client/commit/4305e09d45204607bba7fa7fd41360824ce2b112)), closes [#263](https://github.com/TelestionTeam/telestion-client/issues/263)
* **cli:** Add `tc-cli stats` command implementation ([#279](https://github.com/TelestionTeam/telestion-client/issues/279)) ([35dbf26](https://github.com/TelestionTeam/telestion-client/commit/35dbf263f820a01deff7a9cf228ba44abf6aaeb3)), closes [#263](https://github.com/TelestionTeam/telestion-client/issues/263)


### Bug Fixes

* **cli:** Fix `tc-cli generate` command (and subsequent, broken, CLI) ([a2a25fc](https://github.com/TelestionTeam/telestion-client/commit/a2a25fc9770835b43ea289a8c3006384c42ec3d0))



## 0.3.4 (2021-02-04)

**Note:** Version bump only for package @wuespace/telestion-client-cli
Expand Down
2 changes: 1 addition & 1 deletion packages/telestion-client-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@wuespace/telestion-client-cli",
"description": "The command line interface for the Telestion Client development",
"version": "0.3.4",
"version": "0.4.0",
"homepage": "https://github.com/TelestionTeam/telestion-client#readme",
"bin": {
"tc-cli": "./bin/cli.js"
Expand Down
8 changes: 8 additions & 0 deletions packages/telestion-client-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.0](https://github.com/TelestionTeam/telestion-client/compare/v0.3.3...v0.4.0) (2021-02-05)

**Note:** Version bump only for package @wuespace/telestion-client-common





## 0.3.4 (2021-02-04)

**Note:** Version bump only for package @wuespace/telestion-client-common
Expand Down
2 changes: 1 addition & 1 deletion packages/telestion-client-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@wuespace/telestion-client-common",
"description": "The common components of the Telestion Client",
"license": "MIT",
"version": "0.3.4",
"version": "0.4.0",
"homepage": "https://github.com/TelestionTeam/telestion-client#readme",
"main": "build/index.js",
"module": "build/index.es.js",
Expand Down
14 changes: 14 additions & 0 deletions packages/telestion-client-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.0](https://github.com/TelestionTeam/telestion-client/compare/v0.3.3...v0.4.0) (2021-02-05)


### Features

* **core:** Returned data of event bus abstraction hooks now typable and update documentation ([3b12717](https://github.com/TelestionTeam/telestion-client/commit/3b127176f6d87f64463362eac57c8bb993a4ab04))


### Bug Fixes

* **core:** Small type change in implementation for callback in event bus abstraction hooks ([1277d8f](https://github.com/TelestionTeam/telestion-client/commit/1277d8f8895be913bcb72f68dc73df2137036daa))



## 0.3.4 (2021-02-04)

**Note:** Version bump only for package @wuespace/telestion-client-core
Expand Down
2 changes: 1 addition & 1 deletion packages/telestion-client-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@wuespace/telestion-client-core",
"description": "The core components of the Telestion Client",
"license": "MIT",
"version": "0.3.4",
"version": "0.4.0",
"homepage": "https://github.com/TelestionTeam/telestion-client#readme",
"main": "build/index.js",
"module": "build/index.es.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/telestion-client-prop-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.0](https://github.com/TelestionTeam/telestion-client/compare/v0.3.3...v0.4.0) (2021-02-05)

**Note:** Version bump only for package @wuespace/telestion-client-prop-types





## 0.3.4 (2021-02-04)

**Note:** Version bump only for package @wuespace/telestion-client-prop-types
Expand Down
2 changes: 1 addition & 1 deletion packages/telestion-client-prop-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@wuespace/telestion-client-prop-types",
"description": "PropTypes for Telestion Client types",
"license": "MIT",
"version": "0.3.4",
"version": "0.4.0",
"homepage": "https://github.com/TelestionTeam/telestion-client#readme",
"main": "build/index.js",
"module": "build/index.es.js",
Expand Down
20 changes: 20 additions & 0 deletions packages/telestion-client-template/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.0](https://github.com/TelestionTeam/telestion-client/compare/v0.3.3...v0.4.0) (2021-02-05)


### ⚠ BREAKING CHANGES

* **cli:** For previously generated PSCs to work with the new CLI, the // IMPORT_INSERT_MARK and // ARRAY_FIRST_ELEMENT_INSERT_MARK comments have to retrospectively be placed below all imports and at the beginning of the projectWidgets array, respectively

### Features

* **cli:** Add `tc-cli generate widget` command ([4305e09](https://github.com/TelestionTeam/telestion-client/commit/4305e09d45204607bba7fa7fd41360824ce2b112)), closes [#263](https://github.com/TelestionTeam/telestion-client/issues/263)
* **template:** Add npm scripts and local CLI instance to template ([4c7c503](https://github.com/TelestionTeam/telestion-client/commit/4c7c5035d833d886a6b73fdff268227279ffb669))


### Bug Fixes

* **template:** Add .eslintcache to template gitignore ([ccd9c35](https://github.com/TelestionTeam/telestion-client/commit/ccd9c358bf76da0f02368728ac3ccd688033b571))
* **template:** Add React Spectrum Tabs dependency ([ff8a30e](https://github.com/TelestionTeam/telestion-client/commit/ff8a30e41b8c64cac7469643dec17fc2323f80a9))



## 0.3.4 (2021-02-04)

**Note:** Version bump only for package @wuespace/telestion-client-template
Expand Down
2 changes: 1 addition & 1 deletion packages/telestion-client-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@wuespace/telestion-client-template",
"description": "The template for a Telestion Client project",
"license": "MIT",
"version": "0.3.4",
"version": "0.4.0",
"homepage": "https://github.com/TelestionTeam/telestion-client#readme",
"repository": {
"type": "git",
Expand Down
15 changes: 15 additions & 0 deletions packages/telestion-client-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.0](https://github.com/TelestionTeam/telestion-client/compare/v0.3.3...v0.4.0) (2021-02-05)


### Features

* **types:** Add channel address as type and integrate it into message types ([b9569d7](https://github.com/TelestionTeam/telestion-client/commit/b9569d736ca52672516031ace56d1dd8c1aa3b98))
* **types:** Import types from vertx-event-bus ([90fd513](https://github.com/TelestionTeam/telestion-client/commit/90fd513937a2cb628bc15b120ea88ffff11b8e01))


### Bug Fixes

* **types:** Change type definition for Json serializable data from Map to mapped object ([3fff598](https://github.com/TelestionTeam/telestion-client/commit/3fff59873ca7f6f17af86cda3004eca7cf38d08e))



## 0.3.4 (2021-02-04)

**Note:** Version bump only for package @wuespace/telestion-client-types
Expand Down
2 changes: 1 addition & 1 deletion packages/telestion-client-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@wuespace/telestion-client-types",
"description": "Types for Telestion Client and their projects",
"license": "MIT",
"version": "0.3.4",
"version": "0.4.0",
"homepage": "https://github.com/TelestionTeam/telestion-client#readme",
"types": "types/index.d.ts",
"files": [
Expand Down
13 changes: 13 additions & 0 deletions packages/vertx-event-bus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.0](https://github.com/TelestionTeam/telestion-client/compare/v0.3.3...v0.4.0) (2021-02-05)


### ⚠ BREAKING CHANGES

* **event-bus:** The types for the event bus are now accessible in the @wuespace/telestion-client-types package.

### Features

* **event-bus:** Remove types and import them from types package instead ([40788b2](https://github.com/TelestionTeam/telestion-client/commit/40788b251dc4dc3060a414092b75eb069cde7438))



## 0.3.4 (2021-02-04)

**Note:** Version bump only for package @wuespace/vertx-event-bus
Expand Down
2 changes: 1 addition & 1 deletion packages/vertx-event-bus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@wuespace/vertx-event-bus",
"description": "The Vert.x event bus client for Telestion Client",
"license": "MIT",
"version": "0.3.4",
"version": "0.4.0",
"homepage": "https://github.com/TelestionTeam/telestion-client#readme",
"main": "build/index.js",
"module": "build/index.es.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/vertx-mock-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.0](https://github.com/TelestionTeam/telestion-client/compare/v0.3.3...v0.4.0) (2021-02-05)

**Note:** Version bump only for package @wuespace/vertx-mock-server





## 0.3.4 (2021-02-04)

**Note:** Version bump only for package @wuespace/vertx-mock-server
Expand Down
2 changes: 1 addition & 1 deletion packages/vertx-mock-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@wuespace/vertx-mock-server",
"description": "The Vert.x event bus mock server for Telestion Client",
"license": "MIT",
"version": "0.3.4",
"version": "0.4.0",
"homepage": "https://github.com/TelestionTeam/telestion-client#readme",
"main": "build/index.js",
"module": "build/index.es.js",
Expand Down

0 comments on commit 0425f3a

Please sign in to comment.