Skip to content

Commit eb6bdba

Browse files
v1.10.0
## [1.10.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.10.0) (2024-1-5) ## What's Changed - Fix reversed bot state reporting, Thanks [@grelca](https://github.com/grelca) [#207](#207) - Add support for Curtain 3, Thanks [@tsia](https://github.com/tsia) [#209](#209) - Housekeeping and update dependencies **Full Changelog**: v1.9.1...v1.10.0
1 parent aeda22c commit eb6bdba

File tree

9 files changed

+140
-72
lines changed

9 files changed

+140
-72
lines changed

.github/labeler.yml

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,38 @@
1-
# Add 'enhancement' label to any change to index.js file
1+
# Add 'branding' label to any changes within 'docs' folder or any subfolders
2+
branding:
3+
- changed-files:
4+
- any-glob-to-any-file: branding/**
5+
6+
# Add 'docs' label to any change to .md files within the entire repository
7+
docs:
8+
- changed-files:
9+
- any-glob-to-any-file: '**/*.md'
10+
11+
# Add 'enhancement' label to any change to src files within the source dir EXCEPT for the docs sub-folder
212
enhancement:
3-
- lib/*
4-
- package.json
5-
- pakcage-lock.json
13+
- changed-files:
14+
- any-glob-to-any-file: 'src/**/*'
15+
- any-glob-to-any-file: 'config.schema.json'
16+
17+
# Add 'dependencies' label to any change to src files within the source dir EXCEPT for the docs sub-folder
18+
dependencies:
19+
- changed-files:
20+
- any-glob-to-any-file: 'package.json'
21+
- any-glob-to-any-file: 'package-lock.json'
22+
23+
# Add 'beta' label to any PR that is opened against the `beta` branch
24+
beta:
25+
- base-branch: 'beta*'
26+
27+
# Add 'alpha' label to any PR that is opened against the `alpha` branch
28+
alpha:
29+
- base-branch: 'alpha*'
30+
31+
# Add 'latest' label to any PR that is opened against the `latest` branch
32+
latest:
33+
- base-branch: 'latest'
634

735
# Add 'workflow' to any changes within 'workflow' folder or any subfolders
836
workflow:
9-
- .github/workflows/*
37+
- changed-files:
38+
- any-glob-to-any-file: .github/**
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Changelog to Release
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
paths: [CHANGELOG.md]
7+
branches: [latest]
8+
9+
jobs:
10+
changerelease:
11+
uses: OpenWonderLabs/.github/.github/workflows/changerelease.yml@latest
12+
secrets:
13+
token: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 43 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,23 @@
22

33
All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/)
44

5-
## [Version 1.9.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.9.1) (2023-11-2)
5+
## [1.10.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.10.0) (2024-1-5)
6+
7+
## What's Changed
8+
- Fix reversed bot state reporting, Thanks [@grelca](https://github.com/grelca) [#207](https://github.com/OpenWonderLabs/node-switchbot/pull/207)
9+
- Add support for Curtain 3, Thanks [@tsia](https://github.com/tsia) [#209](https://github.com/OpenWonderLabs/node-switchbot/pull/209)
10+
- Housekeeping and update dependencies
11+
12+
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.9.1...v1.10.0
13+
14+
## [1.9.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.9.1) (2023-11-2)
615

716
## What's Changed
817
- Housekeeping and update dependencies
918

1019
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.9.0...v1.9.1
1120

12-
## [Version 1.9.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.9.0) (2023-09-16)
21+
## [1.9.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.9.0) (2023-09-16)
1322

1423
## What's Changed
1524
- Add support for the Indoor/Outdoor Thermo-Hygrometer (WoIOSensorTH), Thanks [@moritzmhmk](https://github.com/moritzmhmk) [#200](https://github.com/OpenWonderLabs/node-switchbot/pull/200)
@@ -18,7 +27,7 @@ All notable changes to this project will be documented in this file. This projec
1827

1928
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.8.2...v1.9.0
2029

21-
## [Version 1.8.2](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.8.2) (2023-07-25)
30+
## [1.8.2](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.8.2) (2023-07-25)
2231

2332
## What's Changed
2433
- Added Lint Script, Thanks [@dnicolson](https://github.com/dnicolson) [#195](https://github.com/OpenWonderLabs/node-switchbot/pull/195)
@@ -29,7 +38,7 @@ All notable changes to this project will be documented in this file. This projec
2938

3039
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.8.1...v1.8.2
3140

32-
## [Version 1.8.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.8.1) (2023-04-08)
41+
## [1.8.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.8.1) (2023-04-08)
3342

3443
## What's Changed
3544
- Use const keyword for immutable variables, Thanks [@dnicolson](https://github.com/dnicolson/). [#184](https://github.com/OpenWonderLabs/node-switchbot/pull/184)
@@ -38,7 +47,7 @@ All notable changes to this project will be documented in this file. This projec
3847

3948
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.8.0...v1.8.1
4049

41-
## [Version 1.8.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.8.0) (2023-01-28)
50+
## [1.8.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.8.0) (2023-01-28)
4251

4352
## What's Changed
4453

@@ -48,7 +57,7 @@ All notable changes to this project will be documented in this file. This projec
4857

4958
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.7.3...v1.8.0
5059

51-
## [Version 1.7.3](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.7.3) (2023-01-05)
60+
## [1.7.3](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.7.3) (2023-01-05)
5261

5362
## What's Changed
5463

@@ -57,39 +66,39 @@ All notable changes to this project will be documented in this file. This projec
5766

5867
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.7.2...v1.7.3
5968

60-
## [Version 1.7.2](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.7.2) (2022-12-26)
69+
## [1.7.2](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.7.2) (2022-12-26)
6170

6271
## What's Changed
6372

6473
- Fix for @abandonware/nobles breaking changes that cause: `TypeError: this.noble.once is not a function`.
6574

6675
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.7.1...v1.7.2
6776

68-
## [Version 1.7.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.7.1) (2022-12-20)
77+
## [1.7.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.7.1) (2022-12-20)
6978

7079
## What's Changed
7180

7281
- Fix for @abandonware/nobles breaking changes that cause: `TypeError: this.noble.once is not a function`.
7382

7483
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.7.0...v1.7.1
7584

76-
## [Version 1.7.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.7.0) (2022-12-08)
85+
## [1.7.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.7.0) (2022-12-08)
7786

7887
## What's Changed
7988

8089
- Add Read-only Support for Smart Lock.
8190

8291
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.6.1...v1.7.0
8392

84-
## [Version 1.6.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.6.1) (2022-10-18)
93+
## [1.6.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.6.1) (2022-10-18)
8594

8695
## What's Changed
8796

8897
- Fixed Issue where node-switchbot wouldn't be found.
8998

9099
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.6.0...v1.6.1
91100

92-
## [Version 1.6.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.6.0) (2022-10-18)
101+
## [1.6.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.6.0) (2022-10-18)
93102

94103
## What's Changed
95104

@@ -98,7 +107,7 @@ All notable changes to this project will be documented in this file. This projec
98107

99108
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.5.0...v1.6.0
100109

101-
## [Version 1.5.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.5.0) (2022-10-07)
110+
## [1.5.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.5.0) (2022-10-07)
102111

103112
## What's Changed
104113

@@ -108,7 +117,7 @@ All notable changes to this project will be documented in this file. This projec
108117

109118
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.4.1...v1.5.0
110119

111-
## [Version 1.4.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.4.1) (2022-08-27)
120+
## [1.4.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.4.1) (2022-08-27)
112121

113122
## What's Changed
114123

@@ -117,7 +126,7 @@ All notable changes to this project will be documented in this file. This projec
117126

118127
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.4.0...v1.4.1
119128

120-
## [Version 1.4.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.4.0) (2022-08-19)
129+
## [1.4.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.4.0) (2022-08-19)
121130

122131
## What's Changed
123132

@@ -126,7 +135,7 @@ All notable changes to this project will be documented in this file. This projec
126135

127136
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.3.0...v1.4.0
128137

129-
## [Version 1.3.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.3.0) (2022-06-25)
138+
## [1.3.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.3.0) (2022-06-25)
130139

131140
## What's Changed
132141

@@ -135,7 +144,7 @@ All notable changes to this project will be documented in this file. This projec
135144

136145
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.2.0...v1.3.0
137146

138-
## [Version 1.2.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.2.0) (2022-03-04)
147+
## [1.2.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.2.0) (2022-03-04)
139148

140149
## What's Changed
141150

@@ -145,23 +154,23 @@ All notable changes to this project will be documented in this file. This projec
145154

146155
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.1.2...v1.2.0
147156

148-
## [Version 1.1.2](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.1.2) (2021-11-13)
157+
## [1.1.2](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.1.2) (2021-11-13)
149158

150159
## What's Changed
151160

152161
- Housekeeping and update dependencies
153162

154163
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.1.1...v1.1.2
155164

156-
## [Version 1.1.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.1.1) (2021-11-02)
165+
## [1.1.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.1.1) (2021-11-02)
157166

158167
## What's Changed
159168

160169
- Change back from @node/noble to @abandonware/noble
161170

162171
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.1.0...v1.1.1
163172

164-
## [Version 1.1.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.1.0) (2021-10-26)
173+
## [1.1.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.1.0) (2021-10-26)
165174

166175
## What's Changed
167176

@@ -171,31 +180,31 @@ All notable changes to this project will be documented in this file. This projec
171180

172181
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.0.8...v1.1.0
173182

174-
## [Version 1.0.8](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.8) (2021-09-30)
183+
## [1.0.8](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.8) (2021-09-30)
175184

176185
## What's Changed
177186

178187
- fix extra trace of old noble from @abandonware/noble
179188

180189
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.0.7...v1.0.8
181190

182-
## [Version 1.0.7](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.7) (2021-09-24)
191+
## [1.0.7](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.7) (2021-09-24)
183192

184193
## What's Changed
185194

186195
- Change from @abandonware/noble to @homebridge/noble
187196

188197
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.0.6...v1.0.7
189198

190-
## [Version 1.0.6](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.6) (2021-08-29)
199+
## [1.0.6](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.6) (2021-08-29)
191200

192201
## What's Changed
193202

194203
- Fixes FATAL ERROR: ad_id is not defined
195204

196205
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.0.5...v1.0.6
197206

198-
## [Version 1.0.5](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.5) (2021-08-04)
207+
## [1.0.5](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.5) (2021-08-04)
199208

200209
## What's Changed
201210

@@ -204,55 +213,55 @@ All notable changes to this project will be documented in this file. This projec
204213

205214
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.0.4...v1.0.5
206215

207-
## [Version 1.0.4](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.4) (2021-08-03)
216+
## [1.0.4](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.4) (2021-08-03)
208217

209218
## What's Changed
210219

211220
- Support for the discover method with id on macOS
212221

213222
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.0.3...v1.0.4
214223

215-
## [Version 1.0.3](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.3) (2021-07-30)
224+
## [1.0.3](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.3) (2021-07-30)
216225

217226
## What's Changed
218227

219228
- Fixed misspelling.
220229

221230
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.0.2...v1.0.3
222231

223-
## [Version 1.0.2](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.2) (2021-07-29)
232+
## [1.0.2](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.2) (2021-07-29)
224233

225234
## What's Changed
226235

227236
- Housekeeping and update dependencies
228237

229238
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.0.1...v1.0.2
230239

231-
## [Version 1.0.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.1) (2021-07-29)
240+
## [1.0.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.1) (2021-07-29)
232241

233242
## What's Changed
234243

235244
- Fixed issue where after switching Bluetooth off and on, would not work properly.
236245

237246
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v1.0.0...v1.0.1
238247

239-
## [Version 1.0.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.0) (2021-01-21)
248+
## [1.0.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v1.0.0) (2021-01-21)
240249

241250
## What's Changed
242251

243252
- - fix "No device was found" in MacOS
244253

245254
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v0.2.0...v1.0.0
246255

247-
## [Version 0.2.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.2.0) (2020-11-05)
256+
## [0.2.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.2.0) (2020-11-05)
248257

249258
## What's Changed
250259

251260
- Modify Curtain's action command to support group and running mode. (Thanks to [@SwitchBot-Wonderlabs](https://github.com/OpenWonderLabs/node-switchbot/pull/7/))
252261

253262
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v0.1.0...v0.2.0
254263

255-
## [Version 0.1.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.1.0) (2020-10-28)
264+
## [0.1.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.1.0) (2020-10-28)
256265

257266
## What's Changed
258267

@@ -261,23 +270,23 @@ All notable changes to this project will be documented in this file. This projec
261270

262271
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v0.0.5...v0.1.0
263272

264-
## [Version 0.0.5](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.0.5) (2020-02-19)
273+
## [0.0.5](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.0.5) (2020-02-19)
265274

266275
## What's Changed
267276

268277
- Improved the stability of discovering the BLE characteristics. (Thanks to [@dnicolson](https://github.com/OpenWonderLabs/node-switchbot/issues/3))
269278

270279
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v0.0.4...v0.0.5
271280

272-
## [Version 0.0.4](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.0.4) (2020-02-11)
281+
## [0.0.4](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.0.4) (2020-02-11)
273282

274283
## What's Changed
275284

276285
- Fixed the bug that temperature value lower than 0 degC could not be handled. (Thanks to [@musimasami](https://github.com/OpenWonderLabs/node-switchbot/issues/2))
277286

278287
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v0.0.3...v0.0.4
279288

280-
## [Version 0.0.3](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.0.3) (2020-02-10)
289+
## [0.0.3](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.0.3) (2020-02-10)
281290

282291
## What's Changed
283292

@@ -286,7 +295,7 @@ All notable changes to this project will be documented in this file. This projec
286295

287296
**Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v0.0.2...v0.0.3
288297

289-
## [Version 0.0.2](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.0.2) (2019-11-20)
298+
## [0.0.2](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v0.0.2) (2019-11-20)
290299

291300
## What's Changed
292301

0 commit comments

Comments
 (0)