This repository was archived by the owner on Jan 22, 2020. It is now read-only.
Releases: stellar-deprecated/horizon
Releases · stellar-deprecated/horizon
Horizon - v0.11.1
Horizon - v0.11.0
Bug fixes
- The ingestion system can now properly import envelopes that contain signatures that are zero-length strings.
- BREAKING CHANGE: specifying a
limitof0now triggers an error instead of interpreting the value to mean "use the default limit". - Requests that ask for more records than the maximum page size now trigger a bad request error, instead of an internal server error.
- Upstream bug fixes to xdr decoding from
github.com/stellar/go.
Changed
- BREAKING CHANGE: The payments endpoint now includes
account_mergeoperations in the response. - "Finished Request" log lines now include additional fields:
streaming,path,ip, andhost. - Responses now include a
Content-Disposition: inlineheader.
Horizon v0.10.2
This release is a rebuild of v0.10.1 using version 1.8 of the go toolchain
Horizon v0.10.1
Fixed
- Ingestion was fixed to protect against text memos that contain null bytes. While memos with null bytes are legal in stellar-core, PostgreSQL does not support such values in string columns. Horizon now strips those null bytes to fix the issue.
Horizon v0.10.0
This is a fix release for v0.9.0 and v0.9.1
Added
- Added
horizon db clearhelper command to clear previously ingested history.
Fixed
- Embedded sql files for the database schema have been fixed agsain to be compatible with postgres 9.5. The configuration setting
row_securityhas been removed from the dumped files.
RETRACTED - Horizon v0.9.0
Note: This release has a known issue with postgres 9.5 and cannot properly instantiate the DB.
Added
- Horizon now exposes the stellar network protocol in several places: It shows the currently reported protocol version (as returned by the stellar-core
infocommand) on the root endpoint, and it reports the protocol version of each ledger resource. - Trade resources now include a
created_attimestamp.
Fixed
- BREAKING CHANGE: The reingestion process has been updated. Prior versions of horizon would enter a failed state when a gap between the imported history and the stellar-core database formed or when a previously imported ledger was no longer found in the stellar-core database. This usually occurs when running stellar-core with the
CATCHUP_RECENTconfig option. With these changed, horizon will automatically trim "abandonded" ledgers: ledgers that are older than the core elder ledger.
Horizon v0.8.0
Added
- account signer resources now contain a type specifying the type of the signer:
ed25519_public_key,sha256_hash, andpreauth_txare the present values used for the respective signer types.
Changed
- The
public_keyfield on signer effects and an account's signer summary has been renamed tokeyto reflect that new signer types are not necessarily specifying a public key anymore.
Deprecated
- The
public_keyfield on account signers and signer effects are deprecated
Horizon v0.7.1
Bug fixes
- Trade resources now include "bought_amount" and "sold_amount" fields when being viewed through the "Orderbook Trades" endpoint.
- Fixes #322: orderbook summaries with over 20 bids now return the correct price levels, starting with the closest to the spread.
Horizon v0.7.0
Added
- The account resource now includes links to the account's trades and data values.
Bug fixes
Horizon v0.6.2
Bug fixes
- Fixes streaming (SSE) requests, which were broken in v0.6.0