From 18a614afec180ac7550a622db990469644ab2d08 Mon Sep 17 00:00:00 2001 From: urvisavla Date: Tue, 12 Nov 2024 13:41:52 -0800 Subject: [PATCH 1/3] services/horizon: Update changelog (#5524) --- services/horizon/CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/services/horizon/CHANGELOG.md b/services/horizon/CHANGELOG.md index 4b48c6c46d..f419ef0976 100644 --- a/services/horizon/CHANGELOG.md +++ b/services/horizon/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 22.0.1 + +### Fixed +- Fix the issue where the skip-txmeta flag is not being applied in `/transactions/{tx-id}` endpoint ([5523](https://github.com/stellar/go/pull/5523)). + ## 22.0.0-rc2 From dd8a9b473a303cfcdd383d1db45dace93ea0861c Mon Sep 17 00:00:00 2001 From: tamirms Date: Wed, 13 Nov 2024 16:34:07 +0100 Subject: [PATCH 2/3] services/horizon/internal/ingest: Fix total lookup table rows deleted metric (#5528) --- services/horizon/CHANGELOG.md | 1 + services/horizon/internal/ingest/reap.go | 1 + 2 files changed, 2 insertions(+) diff --git a/services/horizon/CHANGELOG.md b/services/horizon/CHANGELOG.md index f419ef0976..77d5021791 100644 --- a/services/horizon/CHANGELOG.md +++ b/services/horizon/CHANGELOG.md @@ -7,6 +7,7 @@ file. This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Fix the issue where the skip-txmeta flag is not being applied in `/transactions/{tx-id}` endpoint ([5523](https://github.com/stellar/go/pull/5523)). +- Fix `horizon_ingest_reap_lookup_tables_duration_seconds` metric which reports the total number of lookup table rows which were reaped ([5528](https://github.com/stellar/go/pull/5528)). ## 22.0.0-rc2 diff --git a/services/horizon/internal/ingest/reap.go b/services/horizon/internal/ingest/reap.go index 63b56de993..01c304c080 100644 --- a/services/horizon/internal/ingest/reap.go +++ b/services/horizon/internal/ingest/reap.go @@ -331,6 +331,7 @@ func (r *lookupTableReaper) deleteOrphanedRows(ctx context.Context) error { } deleteDuration := time.Since(deleteStartTime) totalDeleteDuration += deleteDuration + totalDeleted += rowsDeleted r.rowsReapedByLookupTable.With(prometheus.Labels{"table": table}). Observe(float64(rowsDeleted)) From f09f3e438519c02de8c26a85d317fec89853b4a6 Mon Sep 17 00:00:00 2001 From: tamirms Date: Wed, 13 Nov 2024 17:45:17 +0100 Subject: [PATCH 3/3] Update changelog (#5529) --- services/horizon/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/horizon/CHANGELOG.md b/services/horizon/CHANGELOG.md index 77d5021791..729068b64a 100644 --- a/services/horizon/CHANGELOG.md +++ b/services/horizon/CHANGELOG.md @@ -9,6 +9,9 @@ file. This project adheres to [Semantic Versioning](http://semver.org/). - Fix the issue where the skip-txmeta flag is not being applied in `/transactions/{tx-id}` endpoint ([5523](https://github.com/stellar/go/pull/5523)). - Fix `horizon_ingest_reap_lookup_tables_duration_seconds` metric which reports the total number of lookup table rows which were reaped ([5528](https://github.com/stellar/go/pull/5528)). +### Removed +- Removed defunct `init-genesis-state` command ([5504](https://github.com/stellar/go/pull/5504)). + ## 22.0.0-rc2