@calebcall/camera-ui-notify 0.5.4 → 0.5.5
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.
- package/CHANGELOG.md +31 -0
- package/bundle.zip +0 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,37 @@ All notable changes to **Notify** are documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.5.5] - 2026-08-01
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Go SDK pinned to `v1.2.6`** (from `v1.2.4`) — routine catch-up on two upstream patches. No source
|
|
13
|
+
change required; `go build`, `go test` and the full 8-target bundle all pass untouched.
|
|
14
|
+
- **`@camera.ui/cli` `~0.0.74`** (from `~0.0.73`) — routine. Still writes an `optionalDependencies` block
|
|
15
|
+
into the repo's own `package.json` on every bundle, so the `PUBLISHING.md` guidance from #16 continues
|
|
16
|
+
to apply: discard that hunk, never commit it.
|
|
17
|
+
- **Minimum camera.ui raised to `2.0.24`** (from `2.0.23`) — 2.0.24 carries three host-side fixes that
|
|
18
|
+
directly affect plugin settings: panels getting permanently stuck on "No configuration available" when
|
|
19
|
+
a settings request was superseded, a camera's plugin toggle deleting that plugin's stored per-camera
|
|
20
|
+
settings, and cleared settings becoming `undefined` instead of falling back to their default. The
|
|
21
|
+
plugin wire protocol is unchanged from 2.0.23 (`protocolLevel` is still 1), so this floor is about
|
|
22
|
+
guaranteeing Notify's own configuration behaves, not about protocol compatibility.
|
|
23
|
+
- **`typescript` `7.0.2`** (from `5.9.3`) — moves off the 5.x line onto the native compiler. Safe here
|
|
24
|
+
because npm nests `typescript@5.9.3` under `@camera.ui/cli`'s copy of `ts-import`, which still declares
|
|
25
|
+
`peerDependencies: { typescript: "5" }`; the CLI's `cameraui.config.ts` loader therefore keeps running
|
|
26
|
+
on TS 5 while the repo's own pin moves to 7. Verified: `cui bundle` still bundles and validates the
|
|
27
|
+
contract, and `contract.ts`/`cameraui.config.ts` type-check clean under 7.0.2. Two consequences worth
|
|
28
|
+
knowing: `node_modules` now holds two TypeScript installs, and because TS 7 ships as a native binary
|
|
29
|
+
the lockfile gains 20 optional `@typescript/typescript-<platform>` packages (only the host's own is
|
|
30
|
+
installed). Nothing in the build consumes the root pin — there is no `tsconfig.json` and no `tsc` in
|
|
31
|
+
any script — so it serves ad-hoc type-checking only.
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
- **`package-lock.json` now records the correct version** — it still said `0.5.3` through the 0.5.4
|
|
36
|
+
release because the lockfile was last written before that version bump. Harmless (npm does not publish
|
|
37
|
+
from it) but misleading; regenerated here.
|
|
38
|
+
|
|
8
39
|
## [0.5.4] - 2026-07-31
|
|
9
40
|
|
|
10
41
|
### Changed
|
package/bundle.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Notify",
|
|
3
3
|
"name": "@calebcall/camera-ui-notify",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.5",
|
|
5
5
|
"description": "A fully-local, multi-backend camera.ui notifier plugin: delivers notifications to ntfy, Gotify, or a generic webhook, entirely on your own hardware with no cloud dependency.",
|
|
6
6
|
"author": "calebcall (https://github.com/calebcall/camera-ui-notify)",
|
|
7
7
|
"main": "./main.go",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"url": "https://github.com/calebcall/camera-ui-notify/issues"
|
|
26
26
|
},
|
|
27
27
|
"engines": {
|
|
28
|
-
"camera.ui": ">=2.0.
|
|
28
|
+
"camera.ui": ">=2.0.24",
|
|
29
29
|
"node": ">=22.0.0"
|
|
30
30
|
},
|
|
31
31
|
"homepage": "https://github.com/calebcall/camera-ui-notify/tree/main#readme",
|
|
@@ -45,14 +45,14 @@
|
|
|
45
45
|
"os": [],
|
|
46
46
|
"cpu": [],
|
|
47
47
|
"optionalDependencies": {
|
|
48
|
-
"@calebcall/camera-ui-notify-darwin-arm64": "0.5.
|
|
49
|
-
"@calebcall/camera-ui-notify-darwin-amd64": "0.5.
|
|
50
|
-
"@calebcall/camera-ui-notify-linux-amd64": "0.5.
|
|
51
|
-
"@calebcall/camera-ui-notify-linux-arm64": "0.5.
|
|
52
|
-
"@calebcall/camera-ui-notify-windows-amd64": "0.5.
|
|
53
|
-
"@calebcall/camera-ui-notify-windows-arm64": "0.5.
|
|
54
|
-
"@calebcall/camera-ui-notify-linux-amd64-musl": "0.5.
|
|
55
|
-
"@calebcall/camera-ui-notify-linux-arm64-musl": "0.5.
|
|
48
|
+
"@calebcall/camera-ui-notify-darwin-arm64": "0.5.5",
|
|
49
|
+
"@calebcall/camera-ui-notify-darwin-amd64": "0.5.5",
|
|
50
|
+
"@calebcall/camera-ui-notify-linux-amd64": "0.5.5",
|
|
51
|
+
"@calebcall/camera-ui-notify-linux-arm64": "0.5.5",
|
|
52
|
+
"@calebcall/camera-ui-notify-windows-amd64": "0.5.5",
|
|
53
|
+
"@calebcall/camera-ui-notify-windows-arm64": "0.5.5",
|
|
54
|
+
"@calebcall/camera-ui-notify-linux-amd64-musl": "0.5.5",
|
|
55
|
+
"@calebcall/camera-ui-notify-linux-arm64-musl": "0.5.5"
|
|
56
56
|
},
|
|
57
57
|
"cameraui": {
|
|
58
58
|
"protocolLevel": 1
|