Added
-
📌 #1 (💡 @longngn) - New API endpoint to get application's health,
GET v1/health
→ 📖 API Reference
-
📌 #1 (💡 @longngn) - New command
healthcheck
to perform a health check against a running server. Handy when combined with Docker's HEALTHCHECK feature. -
📌 #9 (💡 @cffls) - Add
header_hash
to each match, so that data can easily be queried from Ogmios using the chain-sync protocol (which requires points defined as both slot number and header hashes!). -
📌 #11 (💡 @Quantumplation) - Support for Ogmios as an alternative chain-sync provider. This is particularly interesting when used with remote instances. This is activated by providing the relevant command-line options instead of
--node-socket
and--node-config
:--ogmios-host
--ogmios-port
-
📌 #3 (💡 @Mercurial) - Support for dynamic management (via HTTP API) of patterns. It is now possible to add, remove and list existing patterns via the HTTP API:
GET v1/patterns
→ 📖 API ReferenceDELETE v1/patterns/{pattern-fragment}
→ 📖 API ReferenceDELETE v1/patterns/{pattern-fragment}/{pattern-fragment}
→ 📖 API ReferencePUT v1/patterns/{pattern-fragment}
→ 📖 API ReferencePUT v1/patterns/{pattern-fragment}/{pattern-fragment}
→ 📖 API Reference
-
📌 #10 - Allow purging old matches (via HTTP API). This is however only allowed if the provided pattern is strictly non overlapping with an existing (active) pattern.
DELETE v1/matches/{pattern-fragment}
→ 📖 API ReferenceDELETE v1/matches/{pattern-fragment}/{pattern-fragment}
→ 📖 API Reference
Changed
-
📌 #2 (🐛 @longngn) - The command-line is now more idempotent, restarting the server with the same options will no longer fail and simply resume syncing.
-
📌 #13 - Kupo no longer ignores Byron blocks internally and will now also synchronizes data from them.
-
📌 #8 (🐛 @james-iohk) - Protects against restarting with different, non-compatible patterns. In case one restart the server with different patterns that those previously provided, it'll abort and crash. Note however that it's possible to restart the server with an empty patterns set, in which case it uses the previously known ones.
Removed
N/A