v71.44.0
brandur-stripe
released this
10 Aug 21:07
·
903 commits
to master
since this release
- #1148 Make original list object accessible on iterators
- This change is technically breaking in that an exported type,
stripe.Query
, changes fromtype Query func(*Params, *form.Values) ([]interface{}, ListMeta, error)
totype Query func(*Params, *form.Values) ([]interface{}, ListContainer, error)
. We've opted to ship this as a minor version anyway because although exported,Query
is meant for internal use in other stripe-go packages and the vast majority of users are unlikely to be referencing it. If you are, please refer to the diff in #1148 for how to update callsites accordingly. If you think there is a major use ofQuery
that we've likely overlooked, please open an issue.
- This change is technically breaking in that an exported type,