kiroku-otel 0.2.0.0 → 0.2.0.1
raw patch · 3 files changed
+14/−3 lines, 3 filesdep ~kiroku-storePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: kiroku-store
API changes (from Hackage documentation)
Files
- CHANGELOG.md +10/−0
- kiroku-otel.cabal +3/−3
- src/Kiroku/Otel/Subscription.hs +1/−0
CHANGELOG.md view
@@ -2,6 +2,16 @@ ## Unreleased +## 0.2.0.1 — 2026-07-11++### Other Changes++* Requires `kiroku-store ^>=0.3`. The tracer matches exhaustively on+ `KirokuEvent`, so it now handles that release's new+ `KirokuEventPublisherLoopError` constructor; the event is ignored rather than+ turned into a span, since the publisher loop is not a per-subscription unit of+ work. No change to `kiroku-otel`'s own API.+ ## 0.2.0.0 — 2026-05-31 ### Breaking Changes
kiroku-otel.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: kiroku-otel-version: 0.2.0.0+version: 0.2.0.1 synopsis: OpenTelemetry W3C trace-context helpers for Kiroku event metadata @@ -50,7 +50,7 @@ , hs-opentelemetry-api ^>=1.0 , hs-opentelemetry-propagator-w3c ^>=1.0 , hs-opentelemetry-semantic-conventions ^>=1.40- , kiroku-store ^>=0.2+ , kiroku-store ^>=0.3 , lens >=5.2 && <5.4 , text >=2.0 && <2.2 , unordered-containers >=0.2 && <0.3@@ -76,7 +76,7 @@ , hs-opentelemetry-sdk ^>=1.0 , hspec >=2.10 && <2.12 , kiroku-otel- , kiroku-store ^>=0.2+ , kiroku-store ^>=0.3 , kiroku-test-support , lens >=5.2 && <5.4 , stm >=2.5 && <2.6
src/Kiroku/Otel/Subscription.hs view
@@ -359,6 +359,7 @@ KirokuEventNotifierReconnecting{} -> pure () KirokuEventNotifierReconnected -> pure () KirokuEventPublisherPoolError{} -> pure ()+ KirokuEventPublisherLoopError{} -> pure () KirokuEventHardDeleteIssued{} -> pure () -- Span / state-cell helpers ---------------------------------------------------