signalk-webhook-bridge 2.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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,52 @@
1
+ # Changelog
2
+
3
+ All notable changes to Webhook Bridge will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/),
6
+ and this project uses [Semantic Versioning](https://semver.org/).
7
+
8
+ ## [2.0.0] - 2026-09-13
9
+
10
+ ### Added
11
+
12
+ - Completely rebuilt Webhook Bridge plugin.
13
+ - Custom Signal K configuration interface.
14
+ - Automatic discovery of available Signal K data paths.
15
+ - Custom webhook field names for configured paths.
16
+ - Unit selection based on Signal K path metadata.
17
+ - Conversion between supported speed, angle, distance, temperature and pressure units.
18
+ - Persistent SQLite delivery queue.
19
+ - Store-first queueing to protect snapshots before webhook delivery is attempted.
20
+ - FIFO delivery of queued webhook updates.
21
+ - Automatic replay of queued data after connectivity returns.
22
+ - Queue persistence across Signal K and system restarts.
23
+ - Optional Bearer token authentication.
24
+ - Configurable snapshot interval.
25
+ - Live webhook delivery status.
26
+ - Live queue count.
27
+ - Last capture and last successful delivery information.
28
+ - Delivery error reporting.
29
+ - Manual **Retry Now** control.
30
+ - Configuration save confirmation and error feedback.
31
+ - Unit information included in outgoing webhook payloads.
32
+
33
+ ### Changed
34
+
35
+ - Renamed the user-facing plugin from **Signal K Webhook Bridge** to **Webhook Bridge**.
36
+ - Reworked webhook payloads to contain simple field values rather than Signal K value objects.
37
+ - Converted values retain their available precision rather than being deliberately rounded.
38
+ - Plugin data is stored using the Signal K plugin data directory.
39
+
40
+ ### Reliability
41
+
42
+ - Webhook entries are removed from the queue only after successful HTTP delivery.
43
+ - Failed deliveries remain queued for later retry.
44
+ - New snapshots continue to be queued while the receiving webhook is unavailable.
45
+ - Plugin shutdown safely handles an in-progress delivery.
46
+ - Queue storage errors are reported rather than silently discarding data.
47
+
48
+ ## [1.x]
49
+
50
+ Earlier versions were published as **MSP Webhook** and used the original webhook implementation.
51
+
52
+ Version 2.0.0 represents a substantial rebuild of the plugin architecture and configuration interface.