Horizon v0.18.0 Release Compatibility
See original GitHub issueHey @elucidsoft, we actually pushed back the renames mentioned in #168 to 0.19.0, but wanted to send this your way regarding the other deprecations present — feel free to close if you’re already good to go.
Horizon 0.18.0 Release
Horizon 0.18.0 has been released, which continues additional work for a better integration with Stellar Protocol 11. This release contains breaking changes from 0.17.*, including a requirement to use Postgres 9.5+, along with various changes, including deprecations, that further support the protocol changes presented in CAP-0005 and CAP-0006.
You can find the official release on Github; below are the release notes.
This issue has been filed as a reminder for compatibility — if your SDK is already compatible, feel free to just respond on the thread and close it out. Thank you, and let me know if you have any questions!
Breaking changes
- Horizon requires Postgres 9.5+.
- Removed
paging_tokenfield from/accounts/{id}endpoint. - Removed
/operation_fee_statsendpoint. Please use/fee_stats.
Deprecations
fee_paidfield on Transaction resource has been deprecated and will be removed in 0.19.0. Two new fields have been added:max_feethat defines the maximum fee the source account is willing to pay andfee_chargedthat defines the fee that was actually paid for a transaction. See CAP-0005 for more information.- The following operation type names have been deprecated:
manage_offerandcreate_passive_offer. The names will be changed to:manage_sell_offerandcreate_passive_sell_offerin 0.19.0.
Changes
- The following new config parameters were added. When old
max-db-connectionsconfig parameter is set, it has a priority over the the new params. Runhorizon helpfor more information.horizon-db-max-open-connectionshorizon-db-max-idle-connectionscore-db-max-open-connectionscore-db-max-idle-connections
- Fixed
fee_paidvalue in Transaction resource ( #1358 ). - Fix
int64: value out of rangeerrors in trade aggregations ( #1319 ). - Improved
horizon db reingestrange command.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (2 by maintainers)

Top Related StackOverflow Question
Hey @elucidsoft,
It’s in this PR: https://github.com/stellar/go/pull/1320
Essentially you were able to look at the history of an account in the past, but we actually ripped out that feature ages ago. However, we didn’t remove the
paging_tokenpart of the response; it just returned as empty. Now we’re finally cleaning it up. Essentially I would check to make sure the SDK doesn’t have any ability to page through a single account’s history, and if it does, just remove/deprecate that code.Awesome, thanks so much!