Skip to content

v0.13.2

Compare
Choose a tag to compare
@JakeUrban JakeUrban released this 24 Aug 20:46

Includes migrations, bug fixes, and a previously-missing feature.

Features

  • SEP-24 has an optional amount parameter that can be specified in POST /transactions/interactive/deposit API calls. Polaris now supports this parameter.
    • Previously wallets would have to append the amount field to the provided interactive URL.

Migrations

  • Increases the maximum character limit for Transaction.status from 30 to 31.
    • pending_transaction_info_update is 31 characters, so if this status were assigned it would raise an error, effectively blocking transaction info updates.
  • Removes the default value for Asset.code and makes the column nullable

Bug Fixes

  • The first migration mentioned above
  • When information submitted in forms is invalid, the evaluated form is not re-rendered in the template. Now, forms are re-rendered as expected
    • This bug was introduced with the form_for_transaction() integration function.