@calebcall/camera-ui-notify 0.5.4 → 0.5.6
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 +53 -0
- package/bundle.zip +0 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,59 @@ 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.6] - 2026-08-01
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **`@camera.ui/cli` `~0.0.75`** (from `~0.0.74`) — picks up the fix for the bug this project reported
|
|
13
|
+
upstream as [cameraui/cli#31](https://github.com/cameraui/cli/issues/31) (tracked here as #16):
|
|
14
|
+
`cui bundle` was writing an `optionalDependencies` block into the plugin repo's own `package.json` on
|
|
15
|
+
every run, pinned to a version that does not exist on npm until the release publishes it — so
|
|
16
|
+
`package-lock.json` could never resolve it and `npm ci` failed, breaking the release workflow at its
|
|
17
|
+
"Install dependencies" step. 0.0.75 stops touching the repo's `package.json` entirely, which also
|
|
18
|
+
removes the merge-vs-replace inconsistency and the whole-file reformatting reported alongside it.
|
|
19
|
+
Verified: `package.json` is byte-identical before and after `npm run bundle`, and the published bundle
|
|
20
|
+
still carries all 8 platform `optionalDependencies` at the right version.
|
|
21
|
+
- **`PUBLISHING.md`** — replaced the "Never commit the `optionalDependencies` block" workaround with a
|
|
22
|
+
short explanation of where that block legitimately comes from (`bundle/package.json`, regenerated from
|
|
23
|
+
the Go targets each run) and why it must not appear in the repo's own `package.json`, noting the CLI
|
|
24
|
+
versions affected and that 0.0.75 fixes it.
|
|
25
|
+
|
|
26
|
+
No change to the plugin itself — this release is build tooling and documentation only, and the published
|
|
27
|
+
artifact is functionally identical to 0.5.5. Every other dependency was already current: `@camera.ui/sdk`
|
|
28
|
+
1.2.3, `github.com/cameraui/sdk/go` v1.2.6, `github.com/cameraui/rpc/go` v1.0.7, camera.ui floor 2.0.24.
|
|
29
|
+
|
|
30
|
+
## [0.5.5] - 2026-08-01
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- **Go SDK pinned to `v1.2.6`** (from `v1.2.4`) — routine catch-up on two upstream patches. No source
|
|
35
|
+
change required; `go build`, `go test` and the full 8-target bundle all pass untouched.
|
|
36
|
+
- **`@camera.ui/cli` `~0.0.74`** (from `~0.0.73`) — routine. Still writes an `optionalDependencies` block
|
|
37
|
+
into the repo's own `package.json` on every bundle, so the `PUBLISHING.md` guidance from #16 continues
|
|
38
|
+
to apply: discard that hunk, never commit it.
|
|
39
|
+
- **Minimum camera.ui raised to `2.0.24`** (from `2.0.23`) — 2.0.24 carries three host-side fixes that
|
|
40
|
+
directly affect plugin settings: panels getting permanently stuck on "No configuration available" when
|
|
41
|
+
a settings request was superseded, a camera's plugin toggle deleting that plugin's stored per-camera
|
|
42
|
+
settings, and cleared settings becoming `undefined` instead of falling back to their default. The
|
|
43
|
+
plugin wire protocol is unchanged from 2.0.23 (`protocolLevel` is still 1), so this floor is about
|
|
44
|
+
guaranteeing Notify's own configuration behaves, not about protocol compatibility.
|
|
45
|
+
- **`typescript` `7.0.2`** (from `5.9.3`) — moves off the 5.x line onto the native compiler. Safe here
|
|
46
|
+
because npm nests `typescript@5.9.3` under `@camera.ui/cli`'s copy of `ts-import`, which still declares
|
|
47
|
+
`peerDependencies: { typescript: "5" }`; the CLI's `cameraui.config.ts` loader therefore keeps running
|
|
48
|
+
on TS 5 while the repo's own pin moves to 7. Verified: `cui bundle` still bundles and validates the
|
|
49
|
+
contract, and `contract.ts`/`cameraui.config.ts` type-check clean under 7.0.2. Two consequences worth
|
|
50
|
+
knowing: `node_modules` now holds two TypeScript installs, and because TS 7 ships as a native binary
|
|
51
|
+
the lockfile gains 20 optional `@typescript/typescript-<platform>` packages (only the host's own is
|
|
52
|
+
installed). Nothing in the build consumes the root pin — there is no `tsconfig.json` and no `tsc` in
|
|
53
|
+
any script — so it serves ad-hoc type-checking only.
|
|
54
|
+
|
|
55
|
+
### Fixed
|
|
56
|
+
|
|
57
|
+
- **`package-lock.json` now records the correct version** — it still said `0.5.3` through the 0.5.4
|
|
58
|
+
release because the lockfile was last written before that version bump. Harmless (npm does not publish
|
|
59
|
+
from it) but misleading; regenerated here.
|
|
60
|
+
|
|
8
61
|
## [0.5.4] - 2026-07-31
|
|
9
62
|
|
|
10
63
|
### 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.6",
|
|
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",
|
|
@@ -44,19 +44,19 @@
|
|
|
44
44
|
},
|
|
45
45
|
"os": [],
|
|
46
46
|
"cpu": [],
|
|
47
|
-
"optionalDependencies": {
|
|
48
|
-
"@calebcall/camera-ui-notify-darwin-arm64": "0.5.4",
|
|
49
|
-
"@calebcall/camera-ui-notify-darwin-amd64": "0.5.4",
|
|
50
|
-
"@calebcall/camera-ui-notify-linux-amd64": "0.5.4",
|
|
51
|
-
"@calebcall/camera-ui-notify-linux-arm64": "0.5.4",
|
|
52
|
-
"@calebcall/camera-ui-notify-windows-amd64": "0.5.4",
|
|
53
|
-
"@calebcall/camera-ui-notify-windows-arm64": "0.5.4",
|
|
54
|
-
"@calebcall/camera-ui-notify-linux-amd64-musl": "0.5.4",
|
|
55
|
-
"@calebcall/camera-ui-notify-linux-arm64-musl": "0.5.4"
|
|
56
|
-
},
|
|
57
47
|
"cameraui": {
|
|
58
48
|
"protocolLevel": 1
|
|
59
49
|
},
|
|
50
|
+
"optionalDependencies": {
|
|
51
|
+
"@calebcall/camera-ui-notify-darwin-arm64": "0.5.6",
|
|
52
|
+
"@calebcall/camera-ui-notify-darwin-amd64": "0.5.6",
|
|
53
|
+
"@calebcall/camera-ui-notify-linux-amd64": "0.5.6",
|
|
54
|
+
"@calebcall/camera-ui-notify-linux-arm64": "0.5.6",
|
|
55
|
+
"@calebcall/camera-ui-notify-windows-amd64": "0.5.6",
|
|
56
|
+
"@calebcall/camera-ui-notify-windows-arm64": "0.5.6",
|
|
57
|
+
"@calebcall/camera-ui-notify-linux-amd64-musl": "0.5.6",
|
|
58
|
+
"@calebcall/camera-ui-notify-linux-arm64-musl": "0.5.6"
|
|
59
|
+
},
|
|
60
60
|
"files": [
|
|
61
61
|
"bundle.zip",
|
|
62
62
|
"CHANGELOG.md"
|