Skip to content

v3.3.0 (#458)

Compare
Choose a tag to compare
@abuiles abuiles released this 13 Nov 23:31
· 324 commits to master since this release
4a9b656

Deprecated ⚠️

  • Horizon 0.25.0 will change the data type for multiple attributes from Int64 to
    string. When the JSON payload includes an Int64, there are
    scenarios where large number data can be incorrectly parsed, since JavaScript doesn't support
    Int64 values. You can read more about it in #1363.

    This release extends the data types for the following attributes to be of type string or number:

    • EffectRecord#offer_id
    • EffectRecord#new_seq
    • OfferRecord#id
    • TradeAggregationRecord#timestamp
    • TradeAggregationRecord#trade_count
    • ManageOfferOperationResponse#offer_id
    • PassiveOfferOperationResponse#offer_id

    We recommend you update your code to handle both string or number in
    the fields listed above, so that once Horizon 0.25.0 is released, your application
    will be able to handle the new type without breaking.