@calebcall/camera-ui-notify 0.5.5 → 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 +22 -0
- package/bundle.zip +0 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,28 @@ 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
|
+
|
|
8
30
|
## [0.5.5] - 2026-08-01
|
|
9
31
|
|
|
10
32
|
### 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",
|
|
@@ -44,19 +44,19 @@
|
|
|
44
44
|
},
|
|
45
45
|
"os": [],
|
|
46
46
|
"cpu": [],
|
|
47
|
-
"optionalDependencies": {
|
|
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
|
-
},
|
|
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"
|