v0.16.0
❗ This release includes some breaking changes
What's Changed
- add pagination and sorting options to tickets from view API by @paoloromolini in #281
- Custom objects v2 by @paoloromolini in #280
breaking changes
GetTicketsFromView()
takes *TicketListOptions
as third argument from this release.
// ~v0.15.x
GetTicketsFromView(context.Context, int64) ([]Ticket, error)
// v0.16.0~
GetTicketsFromView(context.Context, int64, *TicketListOptions) ([]Ticket, Page, error)
Full Changelog: v0.15.1...v0.16.0