homebridge-withings-environment-data 0.3.3 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +92 -0
  2. package/README.md +3 -3
  3. package/package.json +16 -4
package/CHANGELOG.md ADDED
@@ -0,0 +1,92 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
5
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## Unreleased
8
+
9
+ ## [1.0.0] - 2026-07-26
10
+
11
+ ### Changed
12
+ - README's license/changelog links now point to full GitHub URLs instead
13
+ of relative paths
14
+ - package.json now sets `author`, `homepage`, `bugs`, and `repository`, and
15
+ includes README/LICENSE/CHANGELOG in `files`
16
+
17
+ ## [0.3.3] - 2026-07-26
18
+
19
+ ### Added
20
+ - CHANGELOG.md (this file)
21
+
22
+ ### Changed
23
+ - README restructured to match project conventions (versioned title,
24
+ Requirements/Usage sections, license/changelog links, Configuration/How
25
+ authentication works/When it stops working/Getting the trust cookie
26
+ nested under Usage)
27
+
28
+ ### Fixed
29
+ - LICENSE copyright name typo
30
+
31
+ ## [0.3.2] - 2026-07-26
32
+
33
+ ### Fixed
34
+ - Removed an inaccurate claim from the ntfy notification body about the
35
+ Home app continuing to show the last known reading
36
+
37
+ ## [0.3.1] - 2026-07-25
38
+
39
+ ### Added
40
+ - Optional `ntfyTopic` config field: sends a push notification via
41
+ ntfy.sh the first time a poll fails, not repeated on every failure in
42
+ the same streak
43
+
44
+ ### Changed
45
+ - Broadened package.json keywords for discoverability
46
+ - Simplified the README's authentication section wording
47
+
48
+ ## [0.2.0] - 2026-07-25
49
+
50
+ ### Added
51
+ - CO2/AirQuality/Temperature characteristics now use `onGet` handlers
52
+ backed by a cached last-known reading; the Home app shows "No Response"
53
+ once consecutive failures exceed a configurable threshold
54
+ (`noResponseAfterMissedPolls`, default 2, minimum 0), instead of relying
55
+ on `StatusFault`, which isn't reliably surfaced by the stock Home app
56
+
57
+ ### Changed
58
+ - Replaced per-poll email/password login with a long-lived `session_key`
59
+ reused across polls and persisted across Homebridge restarts, falling
60
+ back to a full login only when that session actually expires (fixes an
61
+ account lockout caused by logging in fresh every 30 minutes)
62
+
63
+ ## [0.1.5] - 2026-07-23
64
+
65
+ ### Changed
66
+ - Replaced `.npmignore` with an explicit `"files"` whitelist in
67
+ package.json
68
+
69
+ ## [0.1.4] - 2026-07-23
70
+
71
+ ### Added
72
+ - `.npmignore` to keep editor/session folders and repo-only files out of
73
+ the published npm package
74
+
75
+ ## [0.1.3] - 2026-07-23
76
+
77
+ ### Added
78
+ - Homebridge platform plugin exposing CO2 (CarbonDioxideSensor +
79
+ AirQualitySensor) and room temperature (TemperatureSensor) as HomeKit
80
+ sensors, replacing the standalone scraper script
81
+ - Config UI based configuration instead of a `.env` file
82
+
83
+ ### Changed
84
+ - Simplified required config: dropped `w_uuid`, `deviceId`, `userId`, and
85
+ `appliver`; device/user IDs are now auto-discovered after login
86
+ - README cleaned up: deduplicated trust-cookie capture instructions,
87
+ added a plain-text credential storage warning, updated install
88
+ instructions for npm
89
+
90
+ ### Fixed
91
+ - Corrected the real "trusted device" marker to the `2fa_token_<hash>`
92
+ cookie instead of `w_uuid`
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Homebridge Withings Environment Data v0.3.3
1
+ # Homebridge Withings Environment Data v1.0.0
2
2
 
3
3
  **This Homebridge plugin has been 100% vibe coded with Claude.**
4
4
 
@@ -126,5 +126,5 @@ it once via DevTools:
126
126
 
127
127
  ## License and changelog
128
128
 
129
- - [LICENSE](LICENSE)
130
- - [CHANGELOG](CHANGELOG.md)
129
+ - [LICENSE](https://github.com/LuudJacobs/homebridge-withings-environment-data/blob/main/LICENSE)
130
+ - [CHANGELOG](https://github.com/LuudJacobs/homebridge-withings-environment-data/blob/main/CHANGELOG.md)
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "homebridge-withings-environment-data",
3
- "version": "0.3.3",
3
+ "version": "1.0.0",
4
4
  "description": "Homebridge plugin exposing ambient CO2/air-quality and room temperature readings from a Withings WS-50 scale as HomeKit sensors",
5
5
  "main": "index.js",
6
6
  "files": [
7
7
  "index.js",
8
8
  "lib",
9
- "config.schema.json"
9
+ "config.schema.json",
10
+ "README.md",
11
+ "LICENSE",
12
+ "CHANGELOG.md"
10
13
  ],
11
14
  "keywords": [
12
15
  "homebridge-plugin",
@@ -18,9 +21,18 @@
18
21
  "air-quality",
19
22
  "homekit"
20
23
  ],
24
+ "author": "Luud Jacobs",
25
+ "license": "MIT",
26
+ "homepage": "https://github.com/LuudJacobs/homebridge-withings-environment-data#readme",
27
+ "bugs": {
28
+ "url": "https://github.com/LuudJacobs/homebridge-withings-environment-data/issues"
29
+ },
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/LuudJacobs/homebridge-withings-environment-data.git"
33
+ },
21
34
  "engines": {
22
35
  "homebridge": ">=1.6.0",
23
36
  "node": ">=18"
24
- },
25
- "license": "MIT"
37
+ }
26
38
  }