This repository has been 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
limit
of0
now 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_merge
operations in the response. - "Finished Request" log lines now include additional fields:
streaming
,path
,ip
, andhost
. - Responses now include a
Content-Disposition: inline
header.
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 clear
helper 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_security
has 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
info
command) on the root endpoint, and it reports the protocol version of each ledger resource. - Trade resources now include a
created_at
timestamp.
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_RECENT
config 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_tx
are the present values used for the respective signer types.
Changed
- The
public_key
field on signer effects and an account's signer summary has been renamed tokey
to reflect that new signer types are not necessarily specifying a public key anymore.
Deprecated
- The
public_key
field 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