v0.13.0
Warning
This release includes a breaking change since the last release
What's Changed
Breaking changes
- Expose
team_id
parameter for use with org-wide app by @candiduslynx in #1283:
Changed interface:Old New Client.GetBotInfo(bot string) (*Bot, error)
Client.GetBotInfo(parameters GetBotInfoParameters) (*Bot, error)
Client.GetBotInfoContext(ctx context.Context, bot string)
Client.GetBotInfoContext(ctx context.Context, parameters GetBotInfoParameters)
Client.GetTeamProfile() (*TeamProfile, error)
GetTeamProfile(teamID ...string) (*TeamProfile, error)
GetTeamProfileContext(ctx context.Context) (*TeamProfile, error)
GetTeamProfileContext(ctx context.Context, teamID ...string) (*TeamProfile, error)
Client.GetBillableInfo(user string) (map[string]BillingActive, error)
Client.GetBillableInfo(params GetBillableInfoParams) (map[string]BillingActive, error)
Client.GetBillableInfoContext(ctx context.Context, user string) (map[string]BillingActive, error)
Client.GetBillableInfoContext(ctx context.Context, params GetBillableInfoParams) (map[string]BillingActive, error)
Client.GetBillableInfoForTeam() (map[string]BillingActive, error)
dropped, use Client.GetBillableInfo
with empty paramsClient.GetBillableInfoForTeamContext(ctx context.Context) (map[string]BillingActive, error)
dropped, use Client.GetBillableInfoContext
with empty params
Bug fixes
- Block Object: Validate text min and max length by @Chagui- in #1273
- fix some typos by @yutasb in #1281
Enhancements
- Add missing message option for link_names by @robbydyer in #1278
- Expose
team_id
parameter for use with org-wide app by @candiduslynx in #1283
New Contributors
- @Chagui- made their first contribution in #1273
- @robbydyer made their first contribution in #1278
- @yutasb made their first contribution in #1281
- @candiduslynx made their first contribution in #1283
Full Changelog: v0.12.5...v0.13.0