From 17e1acc6ba990b62b3c364a30ad9d866e562c56e Mon Sep 17 00:00:00 2001 From: urvisavla Date: Thu, 18 Apr 2024 18:24:57 -0700 Subject: [PATCH 1/2] services/horizon: Update Changelog (#5286) Co-authored-by: shawn --- services/horizon/CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/services/horizon/CHANGELOG.md b/services/horizon/CHANGELOG.md index 003bab1d5a..244a8c15c2 100644 --- a/services/horizon/CHANGELOG.md +++ b/services/horizon/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased + +## 2.30.0 + +### Added + +- Bump XDR for [protocol 21](https://github.com/stellar/stellar-xdr/releases/tag/v21.0) +- Make reaping batch sizes configurable via `--history-retention-reap-count` ([5272](https://github.com/stellar/go/pull/5272)) +- Log tx meta when ingestion failures occur ([5268](https://github.com/stellar/go/pull/5268)) +- Add deprecation warning for `--captive-core-use-db` ([5231](https://github.com/stellar/go/pull/5231)) + +### Fixed +- Optimized reingestion by addressing performance slowdown due to unnecessary operations on `history_transactions_filtered_tmp`. Removed obsolete `EnableIngestionFiltering` flag. ([5283](https://github.com/stellar/go/pull/5283)) +- Fix deadlock in parallel ingestion ([5263](https://github.com/stellar/go/pull/5263)) +- Add missing tables to TruncateIngestStateTables() ([5253](https://github.com/stellar/go/pull/5253)) +- Performance improvements in ingest library + - Reduce memory consumption of CheckpointChangeReader during state verification and state rebuild ([5270](https://github.com/stellar/go/pull/5270)) + - Remove unnecessary use of ChangeCompactor to reduce memory bloat during ingestion ([5252](https://github.com/stellar/go/pull/5252)) ## 2.29.0 From dd9cdb3c0bf18d797a3f0d8264b6f87cf9edebd7 Mon Sep 17 00:00:00 2001 From: Urvi Date: Wed, 24 Apr 2024 12:59:09 -0700 Subject: [PATCH 2/2] Update changelog to highlight protocol 21 support --- services/horizon/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/horizon/CHANGELOG.md b/services/horizon/CHANGELOG.md index 244a8c15c2..1d44eb5ec0 100644 --- a/services/horizon/CHANGELOG.md +++ b/services/horizon/CHANGELOG.md @@ -7,6 +7,8 @@ file. This project adheres to [Semantic Versioning](http://semver.org/). ## 2.30.0 +**This release adds support for Protocol 21** + ### Added - Bump XDR for [protocol 21](https://github.com/stellar/stellar-xdr/releases/tag/v21.0)