Skip to content

Commit 180518f

Browse files
committed
v3.3.0
1 parent 0d55a18 commit 180518f

File tree

8 files changed

+72
-5
lines changed

8 files changed

+72
-5
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,35 @@
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+
# [3.3.0](https://github.com/streamdevs/lights/compare/v3.2.0...v3.3.0) (2020-10-25)
7+
8+
9+
### Bug Fixes
10+
11+
* 'TurnOffAndOnLights' spec ([455cbfd](https://github.com/streamdevs/lights/commit/455cbfd214be2fa01a273a3ba8bcaa4472072471))
12+
* restore default color in 'LifxLightService' ([d4d600c](https://github.com/streamdevs/lights/commit/d4d600c6597e2de49964fed689797cce23a37212))
13+
14+
15+
### Features
16+
17+
* add 'changeColor' to 'LightService' ([4b6208c](https://github.com/streamdevs/lights/commit/4b6208cc8dceeb0fa61fd19b305fb07d602ec176))
18+
* add 'GET /twitch/auth' route ([cb489b6](https://github.com/streamdevs/lights/commit/cb489b6c766c3d4b1e849e10c3f19b333b87c5b9))
19+
* add message to reward ([d01243e](https://github.com/streamdevs/lights/commit/d01243e2f3be56549b0a39a76e0b871749394465))
20+
* allow users to configure reward id ([622c66d](https://github.com/streamdevs/lights/commit/622c66dbc744f2081c7c7811e7b0e38acd275db5))
21+
* allow users to configure the lights ids ([62a9fc8](https://github.com/streamdevs/lights/commit/62a9fc81484721a2b97fe81467129aa5a982f7d1))
22+
* App Engine deploy configuration ([55ebf47](https://github.com/streamdevs/lights/commit/55ebf4788c69e8f0d70b06734b92445e288217dd))
23+
* handle new reward in the '/twitch/rewards' route ([f8d894f](https://github.com/streamdevs/lights/commit/f8d894fb378f074b68e28db4ea925e0466155afd))
24+
* handle twitch callback ([a7136f6](https://github.com/streamdevs/lights/commit/a7136f6876d6b0d412ab20b4b38ceb5ce0ef1290))
25+
* keep the connection with Twitch PubSub alive ([87c452f](https://github.com/streamdevs/lights/commit/87c452f9b84dcc1d8e280abca1b56265854d3b4b))
26+
* new 'ChangeLightColor' use case ([574c7b3](https://github.com/streamdevs/lights/commit/574c7b377add21e548828d6e50bbcf74b629432f))
27+
* refresh hue token ([56a961c](https://github.com/streamdevs/lights/commit/56a961cabda96cacb47d2648118d5bca05f51f7b))
28+
* refresh twitch token ([477d576](https://github.com/streamdevs/lights/commit/477d576ccfb65760bc85cdcaa676bbc2dd904951))
29+
* store Twitch and Hue configuration in Firestore ([fd9d87c](https://github.com/streamdevs/lights/commit/fd9d87c9a725909cacd9b8a02a1194eb029181a5))
30+
31+
32+
33+
34+
635
# 3.2.0 (2020-10-25)
736

837

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"services/*",
44
"packages/*"
55
],
6-
"version": "3.2.0",
6+
"version": "3.3.0",
77
"npmClient": "yarn",
88
"useWorkspaces": true,
99
"command": {

packages/lul/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
# [3.3.0](https://github.com/streamdevs/lights/compare/v3.2.0...v3.3.0) (2020-10-25)
7+
8+
**Note:** Version bump only for package @streamdevs/lights-lul
9+
10+
11+
12+
13+
614
# 3.2.0 (2020-10-25)
715

816
**Note:** Version bump only for package @streamdevs/lights-lul

packages/lul/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@streamdevs/lights-lul",
3-
"version": "3.2.0",
3+
"version": "3.3.0",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"repository": "https://github.com/streamdevs/lights.git",

services/kappa/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+
# [3.3.0](https://github.com/streamdevs/lights/compare/v3.2.0...v3.3.0) (2020-10-25)
7+
8+
9+
### Features
10+
11+
* add message to reward ([d01243e](https://github.com/streamdevs/lights/commit/d01243e2f3be56549b0a39a76e0b871749394465))
12+
13+
14+
15+
16+
617
# 3.2.0 (2020-10-25)
718

819

services/kappa/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "streamdevs-lights-kappa",
3-
"version": "3.2.0",
3+
"version": "3.3.0",
44
"repository": "https://github.com/streamdevs/lights.git",
55
"author": "streamdevs",
66
"contributors": [

services/light/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+
# [3.3.0](https://github.com/streamdevs/lights/compare/v3.2.0...v3.3.0) (2020-10-25)
7+
8+
9+
### Bug Fixes
10+
11+
* restore default color in 'LifxLightService' ([d4d600c](https://github.com/streamdevs/lights/commit/d4d600c6597e2de49964fed689797cce23a37212))
12+
13+
14+
### Features
15+
16+
* add 'changeColor' to 'LightService' ([4b6208c](https://github.com/streamdevs/lights/commit/4b6208cc8dceeb0fa61fd19b305fb07d602ec176))
17+
* add message to reward ([d01243e](https://github.com/streamdevs/lights/commit/d01243e2f3be56549b0a39a76e0b871749394465))
18+
* handle new reward in the '/twitch/rewards' route ([f8d894f](https://github.com/streamdevs/lights/commit/f8d894fb378f074b68e28db4ea925e0466155afd))
19+
* new 'ChangeLightColor' use case ([574c7b3](https://github.com/streamdevs/lights/commit/574c7b377add21e548828d6e50bbcf74b629432f))
20+
21+
22+
23+
24+
625
# 3.2.0 (2020-10-25)
726

827

services/light/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "streamdevs-lights-light",
3-
"version": "3.2.0",
3+
"version": "3.3.0",
44
"main": "index.js",
55
"repository": "https://github.com/streamdevs/lights.git",
66
"author": "streamdevs",
@@ -43,7 +43,7 @@
4343
"@google-cloud/firestore": "^4.4.0",
4444
"@hapi/hapi": "^20.0.1",
4545
"@hapi/joi": "^17.1.1",
46-
"@streamdevs/lights-lul": "^3.2.0",
46+
"@streamdevs/lights-lul": "^3.3.0",
4747
"dotenv": "^8.2.0",
4848
"luxon": "^1.25.0",
4949
"node-fetch": "^2.6.1",

0 commit comments

Comments
 (0)