v5.1.0
Added
-
New
LocalTxMonitor
support in Ogmios. See The user guide for more details. (:bulb: @mmahut)⚠️ This new protocol is NOT enabled in[email protected].*
. Until its inclusion in a next release, a custom build of cardano-node is required to include a more recent version ofouroboros-network
which adds support for that protocol to the Ouroboros' mini-protocols; namely:32af9168
.A version of
[email protected]
patched with the necessary commits can be found at CardanoSolutions/[email protected]+local-tx-monitor. -
New fields in the health object:
connectionStatus
→"connected"
or"disconnected"
, to reflect status with the node. #154 (:bulb: @gitmachtl)currentEpoch
→ which returns the current known epoch of the linked node #164 (:bulb: @ray-robot)slotInEpoch
→ which returns the relative number of slots elapsed in the current epoch.
-
New
ogmios health-check
command, useful to perform simple health check on a running server. For example, to monitor a container via Docker health check mechanism:HEALTHCHECK --interval=10s --timeout=5s --retries=1 CMD /bin/ogmios health-check
-
Bumped internal dependencies to Cardano's 1.33.* eco-system.
Changed
-
networkSynchronization
andcurrentEra
can benull
when the server isn't connected to a node. #154 -
The
Metrics
trace is now correctly tagged withMetricsRuntimeStatsDisabled
. -
Fixed an issue with the Docker monitoring scripts of cardano-node-ogmios, causing issues on restart. #159 (:hammer: @jacquesvcritien)
-
Relax upper-bound constraint on required node.js engine. This should make it possible to install the TypeScript packages on more recent versions on node.js than the one specified on the repository.
Removed
N/A