-
Notifications
You must be signed in to change notification settings - Fork 883
Commit 161ead7
authored
Update module github.com/slack-go/slack to v0.16.0 (#1962)
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/slack-go/slack](https://redirect.github.com/slack-go/slack)
| require | minor | `v0.9.0` -> `v0.16.0` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Release Notes
<details>
<summary>slack-go/slack (github.com/slack-go/slack)</summary>
###
[`v0.16.0`](https://redirect.github.com/slack-go/slack/releases/tag/v0.16.0)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.15.0...v0.16.0)
> \[!WARNING]\
> This release may mean a breaking change! Read below for more although
for most folks this should all be fine.
👋 Hi folks,
I've tried my best to keep this version to just non-breaking changes
*but* there are a couple of changes that might introduce breaking
changes in rare circumstances.
If you're upgrading, please pay special attention to:
- Add ID() to the Block interface by
[@​samstarling](https://redirect.github.com/samstarling) in
[https://github.com/slack-go/slack/pull/1359](https://redirect.github.com/slack-go/slack/pull/1359)
If you were using only what we provide in the library, this is a
non-breaking change, but if not, it may be considered a breaking change.
Next release will likely bring a few required breaking changes (hard
deprecations for example).
Thank you to everyone that contributed to this release 🥳
#### What's Changed
- feat: Slack AI & Assistants Compatibility by
[@​MattDavisRV](https://redirect.github.com/MattDavisRV) in
[https://github.com/slack-go/slack/pull/1331](https://redirect.github.com/slack-go/slack/pull/1331)
- fix: Assistant Prompts and Status, send channel_id with request by
[@​MattDavisRV](https://redirect.github.com/MattDavisRV) in
[https://github.com/slack-go/slack/pull/1344](https://redirect.github.com/slack-go/slack/pull/1344)
- fix: Don't require `skin_tone` for rich text emoji element by
[@​calebmckay](https://redirect.github.com/calebmckay) in
[https://github.com/slack-go/slack/pull/1341](https://redirect.github.com/slack-go/slack/pull/1341)
- fix: ScheduleMessage not returning scheduled_message_id by
[@​hussachai](https://redirect.github.com/hussachai) in
[https://github.com/slack-go/slack/pull/1153](https://redirect.github.com/slack-go/slack/pull/1153)
- chore: Contributing Guide - Codification of Project Norms by
[@​lorenzoaiello](https://redirect.github.com/lorenzoaiello) in
[https://github.com/slack-go/slack/pull/1340](https://redirect.github.com/slack-go/slack/pull/1340)
- chore: Add parse channel context and host for shared channel by
[@​fahmizulhasymi](https://redirect.github.com/fahmizulhasymi) in
[https://github.com/slack-go/slack/pull/1353](https://redirect.github.com/slack-go/slack/pull/1353)
- chore: Adding A Deprecation Notice for rtm.start (no-op) by
[@​lorenzoaiello](https://redirect.github.com/lorenzoaiello) in
[https://github.com/slack-go/slack/pull/1351](https://redirect.github.com/slack-go/slack/pull/1351)
- Additional field to the File structure by
[@​rntk](https://redirect.github.com/rntk) in
[https://github.com/slack-go/slack/pull/1370](https://redirect.github.com/slack-go/slack/pull/1370)
- add enable_section option for UserGroup API by
[@​sivchari](https://redirect.github.com/sivchari) in
[https://github.com/slack-go/slack/pull/1364](https://redirect.github.com/slack-go/slack/pull/1364)
- Add ID() to the Block interface by
[@​samstarling](https://redirect.github.com/samstarling) in
[https://github.com/slack-go/slack/pull/1359](https://redirect.github.com/slack-go/slack/pull/1359)
- Add assistant app thread message subtype by
[@​dorkauf](https://redirect.github.com/dorkauf) in
[https://github.com/slack-go/slack/pull/1368](https://redirect.github.com/slack-go/slack/pull/1368)
#### New Contributors
- [@​fahmizulhasymi](https://redirect.github.com/fahmizulhasymi)
made their first contribution in
[https://github.com/slack-go/slack/pull/1353](https://redirect.github.com/slack-go/slack/pull/1353)
- [@​rntk](https://redirect.github.com/rntk) made their first
contribution in
[https://github.com/slack-go/slack/pull/1370](https://redirect.github.com/slack-go/slack/pull/1370)
- [@​samstarling](https://redirect.github.com/samstarling) made
their first contribution in
[https://github.com/slack-go/slack/pull/1359](https://redirect.github.com/slack-go/slack/pull/1359)
- [@​dorkauf](https://redirect.github.com/dorkauf) made their
first contribution in
[https://github.com/slack-go/slack/pull/1368](https://redirect.github.com/slack-go/slack/pull/1368)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.15.0...v0.16.0
###
[`v0.15.0`](https://redirect.github.com/slack-go/slack/releases/tag/v0.15.0)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.14.0...v0.15.0)
> \[!WARNING]\
> This release includes a breaking change since the last release.
#### What's Changed
v0.15.0 is now available. It **does contain minor breaking changes** to
two Block Kit elements along with a lot of new functionality.
##### Breaking Changes
**Block Kit - Rich Text Section Date Element**
If you are using the `RichTextSectionDateElement` block kit element,
there is a new field `Format` which is now required. It previously did
not exist, but was marked as required in the [Block Kit
Documentation](https://api.slack.com/reference/block-kit/blocks#date-element-type).
Similarly, the function `NewRichTextSectionDateElement` function
signature has been updated to require the new parameter. While this *may
not* have previously worked, the non-backwards compatible signature
change prompts it to be identified as breaking change.
**Block Kit - Rich Text input Block Element**
If you are using the `RichTextInputBlockElement` block kit element, the
`InitialValue` field type has been changed from `string` to
`*RichTextBlock` to provide a more strongly typed experience. If you
were previously passing a pre-formatted JSON object you will need to
update your input to use the `RichTextBlock` struct instead.
##### Enhancements
- Added support for publishing a message to a specific thread by
[@​Nikolo](https://redirect.github.com/Nikolo) in
[https://github.com/slack-go/slack/pull/1309](https://redirect.github.com/slack-go/slack/pull/1309)
- Added support for unicode parameter in emoji type of rich text blocks
by [@​YutoKashiwagi](https://redirect.github.com/YutoKashiwagi) in
[https://github.com/slack-go/slack/pull/1319](https://redirect.github.com/slack-go/slack/pull/1319)
- Added endpoints for `calls.*` apis and `Type: call` in blockkit by
[@​winston-stripe](https://redirect.github.com/winston-stripe) in
[https://github.com/slack-go/slack/pull/1190](https://redirect.github.com/slack-go/slack/pull/1190)
- Added Convenience Methods to Block Elements by
[@​obed-sj](https://redirect.github.com/obed-sj) in
[https://github.com/slack-go/slack/pull/1279](https://redirect.github.com/slack-go/slack/pull/1279)
- Added functions.completeError and functions.completeSuccess by
[@​gideonw](https://redirect.github.com/gideonw) in
[https://github.com/slack-go/slack/pull/1328](https://redirect.github.com/slack-go/slack/pull/1328)
- Added support for external_limited option of inviteShared by
[@​bamo](https://redirect.github.com/bamo) in
[https://github.com/slack-go/slack/pull/1330](https://redirect.github.com/slack-go/slack/pull/1330)
- Added support for Canvas API methods by
[@​jarospisak-unity](https://redirect.github.com/jarospisak-unity)
in
[https://github.com/slack-go/slack/pull/1334](https://redirect.github.com/slack-go/slack/pull/1334)
##### Bug Fixes
- Added required `format` field to rich text date blocks by
[@​luke-josh](https://redirect.github.com/luke-josh) in
[https://github.com/slack-go/slack/pull/1317](https://redirect.github.com/slack-go/slack/pull/1317)
- Updated RichTextInputBlockElement InitialValue data type by
[@​Manjish](https://redirect.github.com/Manjish) in
[https://github.com/slack-go/slack/pull/1320](https://redirect.github.com/slack-go/slack/pull/1320)
##### Chores
- Added go v1.23 to test matrix (test.yml) by
[@​nemuvski](https://redirect.github.com/nemuvski) in
[https://github.com/slack-go/slack/pull/1315](https://redirect.github.com/slack-go/slack/pull/1315)
- Bumped GitHub Actions to Latest Versions by
[@​shogo82148](https://redirect.github.com/shogo82148) in
[https://github.com/slack-go/slack/pull/1314](https://redirect.github.com/slack-go/slack/pull/1314)
- Updated deprecated comment for UploadFile and UploadFileContext by
[@​shogo82148](https://redirect.github.com/shogo82148) in
[https://github.com/slack-go/slack/pull/1316](https://redirect.github.com/slack-go/slack/pull/1316)
#### New Contributors
- [@​shogo82148](https://redirect.github.com/shogo82148) made
their first contribution in
[https://github.com/slack-go/slack/pull/1314](https://redirect.github.com/slack-go/slack/pull/1314)
- [@​Nikolo](https://redirect.github.com/Nikolo) made their first
contribution in
[https://github.com/slack-go/slack/pull/1309](https://redirect.github.com/slack-go/slack/pull/1309)
- [@​luke-josh](https://redirect.github.com/luke-josh) made their
first contribution in
[https://github.com/slack-go/slack/pull/1317](https://redirect.github.com/slack-go/slack/pull/1317)
- [@​Manjish](https://redirect.github.com/Manjish) made their
first contribution in
[https://github.com/slack-go/slack/pull/1320](https://redirect.github.com/slack-go/slack/pull/1320)
- [@​YutoKashiwagi](https://redirect.github.com/YutoKashiwagi)
made their first contribution in
[https://github.com/slack-go/slack/pull/1319](https://redirect.github.com/slack-go/slack/pull/1319)
- [@​obed-sj](https://redirect.github.com/obed-sj) made their
first contribution in
[https://github.com/slack-go/slack/pull/1279](https://redirect.github.com/slack-go/slack/pull/1279)
- [@​gideonw](https://redirect.github.com/gideonw) made their
first contribution in
[https://github.com/slack-go/slack/pull/1328](https://redirect.github.com/slack-go/slack/pull/1328)
- [@​bamo](https://redirect.github.com/bamo) made their first
contribution in
[https://github.com/slack-go/slack/pull/1330](https://redirect.github.com/slack-go/slack/pull/1330)
-
[@​jarospisak-unity](https://redirect.github.com/jarospisak-unity)
made their first contribution in
[https://github.com/slack-go/slack/pull/1334](https://redirect.github.com/slack-go/slack/pull/1334)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.14.0...v0.15.0
###
[`v0.14.0`](https://redirect.github.com/slack-go/slack/releases/tag/v0.14.0)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.13.1...v0.14.0)
#### What's Changed
v0.14.0 is now available. It contains **no breaking changes** but does
include several pieces of new functionality and long-standing bug fixes.
##### Enhancements
- Added Support for receiving `metadata` when receiving a `MessageEvent`
over WebSocket by [@​rfratto](https://redirect.github.com/rfratto)
in
[https://github.com/slack-go/slack/pull/1307](https://redirect.github.com/slack-go/slack/pull/1307)
- Added a new field to expose file data when receiving a `File` event
from a Slack Connect Channel by
[@​zFlabmonsta](https://redirect.github.com/zFlabmonsta) in
[https://github.com/slack-go/slack/pull/1312](https://redirect.github.com/slack-go/slack/pull/1312)
- Added support for the `slack_file` in the image block by
[@​rhysm](https://redirect.github.com/rhysm) in
[https://github.com/slack-go/slack/pull/1311](https://redirect.github.com/slack-go/slack/pull/1311)
- Added 35 missing Websocket event types by
[@​Aryakoste](https://redirect.github.com/Aryakoste) in
[https://github.com/slack-go/slack/pull/1306](https://redirect.github.com/slack-go/slack/pull/1306)
- Added support for parsing `AppRateLimited` events in the `ParseEvent`
function by [@​nemuvski](https://redirect.github.com/nemuvski) in
[https://github.com/slack-go/slack/pull/1308](https://redirect.github.com/slack-go/slack/pull/1308)
- Added newly documented Channel Canvas properties to the
`conversations.info` Web API method by
[@​ku](https://redirect.github.com/ku) in
[https://github.com/slack-go/slack/pull/1228](https://redirect.github.com/slack-go/slack/pull/1228)
##### Bug Fixes
- Fixed an edge case when using `UpdateRemoteFileContext` and
`UpdateRemoteFile` and Image Previews would return an `invalid_auth`
error by [@​EkeMinusYou](https://redirect.github.com/EkeMinusYou)
in
[https://github.com/slack-go/slack/pull/1117](https://redirect.github.com/slack-go/slack/pull/1117)
##### Chores / Code Cleanup
- Replaced deprecated `ioutil` with `io` and `os` packages by
[@​nakamasato](https://redirect.github.com/nakamasato) in
[https://github.com/slack-go/slack/pull/1310](https://redirect.github.com/slack-go/slack/pull/1310)
#### New Contributors
- [@​rfratto](https://redirect.github.com/rfratto) made their
first contribution in
[https://github.com/slack-go/slack/pull/1307](https://redirect.github.com/slack-go/slack/pull/1307)
- [@​nakamasato](https://redirect.github.com/nakamasato) made
their first contribution in
[https://github.com/slack-go/slack/pull/1310](https://redirect.github.com/slack-go/slack/pull/1310)
- [@​rhysm](https://redirect.github.com/rhysm) made their first
contribution in
[https://github.com/slack-go/slack/pull/1311](https://redirect.github.com/slack-go/slack/pull/1311)
- [@​Aryakoste](https://redirect.github.com/Aryakoste) made their
first contribution in
[https://github.com/slack-go/slack/pull/1306](https://redirect.github.com/slack-go/slack/pull/1306)
- [@​nemuvski](https://redirect.github.com/nemuvski) made their
first contribution in
[https://github.com/slack-go/slack/pull/1308](https://redirect.github.com/slack-go/slack/pull/1308)
- [@​ku](https://redirect.github.com/ku) made their first
contribution in
[https://github.com/slack-go/slack/pull/1228](https://redirect.github.com/slack-go/slack/pull/1228)
- [@​EkeMinusYou](https://redirect.github.com/EkeMinusYou) made
their first contribution in
[https://github.com/slack-go/slack/pull/1117](https://redirect.github.com/slack-go/slack/pull/1117)
- [@​jjjjeeffff](https://redirect.github.com/jjjjeeffff) was
instrumental in the successful resolution of
[https://github.com/slack-go/slack/pull/1117](https://redirect.github.com/slack-go/slack/pull/1117)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.13.1...v0.14.0
###
[`v0.13.1`](https://redirect.github.com/slack-go/slack/releases/tag/v0.13.1)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.13.0...v0.13.1)
#### What's Changed
v0.13.1 is now available. It contains **no breaking changes** but does
expose some new fields previously unavailable.
##### Enhancements
- Added `UnfurlLinks` and `UnfurlMedia` to `WebhookMessage` by
[@​lheiskan](https://redirect.github.com/lheiskan) in
[https://github.com/slack-go/slack/pull/1208](https://redirect.github.com/slack-go/slack/pull/1208)
- Added `isReadOnly` property to `Conversation` struct by
[@​GGonryun](https://redirect.github.com/GGonryun) in
[https://github.com/slack-go/slack/pull/1232](https://redirect.github.com/slack-go/slack/pull/1232)
##### Bug Fixes
- Fixed `UploadFileV2` when using text content by
[@​calebmckay](https://redirect.github.com/calebmckay) in
[https://github.com/slack-go/slack/pull/1291](https://redirect.github.com/slack-go/slack/pull/1291)
- Made `Channel` optional on `UploadFileV2` by
[@​0xdeafcafe](https://redirect.github.com/0xdeafcafe) in
[https://github.com/slack-go/slack/pull/1293](https://redirect.github.com/slack-go/slack/pull/1293)
##### Chores / Code Cleanup
- Replace a Loop with Slice by
[@​testwill](https://redirect.github.com/testwill) in
[https://github.com/slack-go/slack/pull/1211](https://redirect.github.com/slack-go/slack/pull/1211)
- Added Deprecation Notice for `files.upload` by
[@​lorenzoaiello](https://redirect.github.com/lorenzoaiello) in
[https://github.com/slack-go/slack/pull/1300](https://redirect.github.com/slack-go/slack/pull/1300)
- Added Go Test Coverage for 1.21 and 1.22 by
[@​lorenzoaiello](https://redirect.github.com/lorenzoaiello) in
[https://github.com/slack-go/slack/pull/1298](https://redirect.github.com/slack-go/slack/pull/1298)
##### Documentation Updates
- Updated Inline Docs and API References by
[@​lorenzoaiello](https://redirect.github.com/lorenzoaiello) in
[https://github.com/slack-go/slack/pull/1299](https://redirect.github.com/slack-go/slack/pull/1299)
- Added an example for `Pagination` by
[@​adamrothman](https://redirect.github.com/adamrothman) in
[https://github.com/slack-go/slack/pull/1201](https://redirect.github.com/slack-go/slack/pull/1201)
- Added an example for `ConversationHistory` by
[@​lorenzoaiello](https://redirect.github.com/lorenzoaiello) in
[https://github.com/slack-go/slack/pull/1302](https://redirect.github.com/slack-go/slack/pull/1302)
- Added an example for `AddRemoteFile` and `DeleteFile` by
[@​lorenzoaiello](https://redirect.github.com/lorenzoaiello) in
[https://github.com/slack-go/slack/pull/1303](https://redirect.github.com/slack-go/slack/pull/1303)
#### New Contributors
- [@​calebmckay](https://redirect.github.com/calebmckay) made
their first contribution in
[https://github.com/slack-go/slack/pull/1291](https://redirect.github.com/slack-go/slack/pull/1291)
- [@​lheiskan](https://redirect.github.com/lheiskan) made their
first contribution in
[https://github.com/slack-go/slack/pull/1208](https://redirect.github.com/slack-go/slack/pull/1208)
- [@​GGonryun](https://redirect.github.com/GGonryun) made their
first contribution in
[https://github.com/slack-go/slack/pull/1232](https://redirect.github.com/slack-go/slack/pull/1232)
- [@​0xdeafcafe](https://redirect.github.com/0xdeafcafe) made
their first contribution in
[https://github.com/slack-go/slack/pull/1293](https://redirect.github.com/slack-go/slack/pull/1293)
- [@​lorenzoaiello](https://redirect.github.com/lorenzoaiello)
made their first contribution in
[https://github.com/slack-go/slack/pull/1300](https://redirect.github.com/slack-go/slack/pull/1300)
- [@​adamrothman](https://redirect.github.com/adamrothman) made
their first contribution in
[https://github.com/slack-go/slack/pull/1201](https://redirect.github.com/slack-go/slack/pull/1201)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.13.0...v0.13.1
###
[`v0.13.0`](https://redirect.github.com/slack-go/slack/releases/tag/v0.13.0)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.12.5...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](https://redirect.github.com/candiduslynx) in
[https://github.com/slack-go/slack/pull/1283](https://redirect.github.com/slack-go/slack/pull/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 params |
| `Client.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-](https://redirect.github.com/Chagui-) in
[https://github.com/slack-go/slack/pull/1273](https://redirect.github.com/slack-go/slack/pull/1273)
- fix some typos by [@​yutasb](https://redirect.github.com/yutasb)
in
[https://github.com/slack-go/slack/pull/1281](https://redirect.github.com/slack-go/slack/pull/1281)
##### Enhancements
- Add missing message option for link_names by
[@​robbydyer](https://redirect.github.com/robbydyer) in
[https://github.com/slack-go/slack/pull/1278](https://redirect.github.com/slack-go/slack/pull/1278)
- Expose `team_id` parameter for use with org-wide app by
[@​candiduslynx](https://redirect.github.com/candiduslynx) in
[https://github.com/slack-go/slack/pull/1283](https://redirect.github.com/slack-go/slack/pull/1283)
#### New Contributors
- [@​Chagui-](https://redirect.github.com/Chagui-) made their
first contribution in
[https://github.com/slack-go/slack/pull/1273](https://redirect.github.com/slack-go/slack/pull/1273)
- [@​robbydyer](https://redirect.github.com/robbydyer) made their
first contribution in
[https://github.com/slack-go/slack/pull/1278](https://redirect.github.com/slack-go/slack/pull/1278)
- [@​yutasb](https://redirect.github.com/yutasb) made their first
contribution in
[https://github.com/slack-go/slack/pull/1281](https://redirect.github.com/slack-go/slack/pull/1281)
- [@​candiduslynx](https://redirect.github.com/candiduslynx) made
their first contribution in
[https://github.com/slack-go/slack/pull/1283](https://redirect.github.com/slack-go/slack/pull/1283)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.12.5...v0.13.0
###
[`v0.12.5`](https://redirect.github.com/slack-go/slack/releases/tag/v0.12.5)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.12.4...v0.12.5)
#### What's Changed
BUGFIX - deal with "true", true, "false", false.
- Parse string or boolean for SlashCommand.IsEnterpriseInstall by
[@​kpaulisse](https://redirect.github.com/kpaulisse) in
[https://github.com/slack-go/slack/pull/1266](https://redirect.github.com/slack-go/slack/pull/1266)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.12.4...v0.12.5
###
[`v0.12.4`](https://redirect.github.com/slack-go/slack/releases/tag/v0.12.4):
Non-breaking updates roll-up
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.12.3...v0.12.4)
#### What's Changed
- chore: unnecessary use of fmt.Sprintf by
[@​testwill](https://redirect.github.com/testwill) in
[https://github.com/slack-go/slack/pull/1212](https://redirect.github.com/slack-go/slack/pull/1212)
- Add Video Block by
[@​walkure](https://redirect.github.com/walkure) in
[https://github.com/slack-go/slack/pull/1210](https://redirect.github.com/slack-go/slack/pull/1210)
- Add connected_team_ids optional field to Conversation by
[@​zFlabmonsta](https://redirect.github.com/zFlabmonsta) in
[https://github.com/slack-go/slack/pull/1253](https://redirect.github.com/slack-go/slack/pull/1253)
- Add blocks in slackevents.MessageEvent by
[@​invzhi](https://redirect.github.com/invzhi) in
[https://github.com/slack-go/slack/pull/1227](https://redirect.github.com/slack-go/slack/pull/1227)
- Add support for Rich Text Lists by
[@​daniel-pieper-personio](https://redirect.github.com/daniel-pieper-personio)
in
[https://github.com/slack-go/slack/pull/1155](https://redirect.github.com/slack-go/slack/pull/1155)
- Add support for Rich Text Input by
[@​peimanja](https://redirect.github.com/peimanja) in
[https://github.com/slack-go/slack/pull/1240](https://redirect.github.com/slack-go/slack/pull/1240)
- Fix: always add context to errors during block serde by
[@​yunginnanet](https://redirect.github.com/yunginnanet) in
[https://github.com/slack-go/slack/pull/1259](https://redirect.github.com/slack-go/slack/pull/1259)
- Edited field in the app mention event by
[@​IbirbyZh](https://redirect.github.com/IbirbyZh) in
[https://github.com/slack-go/slack/pull/1256](https://redirect.github.com/slack-go/slack/pull/1256)
- Expose is_enterprise_install field by
[@​7ail](https://redirect.github.com/7ail) in
[https://github.com/slack-go/slack/pull/1255](https://redirect.github.com/slack-go/slack/pull/1255)
- feat: Add the ability to set `URL` on `NewButtonBlockElement` via
`.WithURL()` by
[@​joshbranham](https://redirect.github.com/joshbranham) in
[https://github.com/slack-go/slack/pull/1250](https://redirect.github.com/slack-go/slack/pull/1250)
- Add block element type FileInput by
[@​elct9620](https://redirect.github.com/elct9620) in
[https://github.com/slack-go/slack/pull/1249](https://redirect.github.com/slack-go/slack/pull/1249)
- Openid connect by
[@​danielmichaels](https://redirect.github.com/danielmichaels) in
[https://github.com/slack-go/slack/pull/1242](https://redirect.github.com/slack-go/slack/pull/1242)
- Add is_enterprise_install flag for org wide installation support by
[@​hussachai](https://redirect.github.com/hussachai) in
[https://github.com/slack-go/slack/pull/1225](https://redirect.github.com/slack-go/slack/pull/1225)
- Add an example of updating modal by
[@​KouWakai](https://redirect.github.com/KouWakai) in
[https://github.com/slack-go/slack/pull/1142](https://redirect.github.com/slack-go/slack/pull/1142)
- add deleted timestamp for deleted msg events by
[@​zFlabmonsta](https://redirect.github.com/zFlabmonsta) in
[https://github.com/slack-go/slack/pull/1261](https://redirect.github.com/slack-go/slack/pull/1261)
- Add slack connect events & tests by
[@​Birtato](https://redirect.github.com/Birtato) in
[https://github.com/slack-go/slack/pull/1262](https://redirect.github.com/slack-go/slack/pull/1262)
- Add rich_text_quote and rich_text_preformatted by
[@​rusq](https://redirect.github.com/rusq) in
[https://github.com/slack-go/slack/pull/1260](https://redirect.github.com/slack-go/slack/pull/1260)
#### New Contributors
- [@​testwill](https://redirect.github.com/testwill) made their
first contribution in
[https://github.com/slack-go/slack/pull/1212](https://redirect.github.com/slack-go/slack/pull/1212)
- [@​walkure](https://redirect.github.com/walkure) made their
first contribution in
[https://github.com/slack-go/slack/pull/1210](https://redirect.github.com/slack-go/slack/pull/1210)
- [@​zFlabmonsta](https://redirect.github.com/zFlabmonsta) made
their first contribution in
[https://github.com/slack-go/slack/pull/1253](https://redirect.github.com/slack-go/slack/pull/1253)
- [@​invzhi](https://redirect.github.com/invzhi) made their first
contribution in
[https://github.com/slack-go/slack/pull/1227](https://redirect.github.com/slack-go/slack/pull/1227)
-
[@​daniel-pieper-personio](https://redirect.github.com/daniel-pieper-personio)
made their first contribution in
[https://github.com/slack-go/slack/pull/1155](https://redirect.github.com/slack-go/slack/pull/1155)
- [@​peimanja](https://redirect.github.com/peimanja) made their
first contribution in
[https://github.com/slack-go/slack/pull/1240](https://redirect.github.com/slack-go/slack/pull/1240)
- [@​yunginnanet](https://redirect.github.com/yunginnanet) made
their first contribution in
[https://github.com/slack-go/slack/pull/1259](https://redirect.github.com/slack-go/slack/pull/1259)
- [@​IbirbyZh](https://redirect.github.com/IbirbyZh) made their
first contribution in
[https://github.com/slack-go/slack/pull/1256](https://redirect.github.com/slack-go/slack/pull/1256)
- [@​joshbranham](https://redirect.github.com/joshbranham) made
their first contribution in
[https://github.com/slack-go/slack/pull/1250](https://redirect.github.com/slack-go/slack/pull/1250)
- [@​elct9620](https://redirect.github.com/elct9620) made their
first contribution in
[https://github.com/slack-go/slack/pull/1249](https://redirect.github.com/slack-go/slack/pull/1249)
- [@​danielmichaels](https://redirect.github.com/danielmichaels)
made their first contribution in
[https://github.com/slack-go/slack/pull/1242](https://redirect.github.com/slack-go/slack/pull/1242)
- [@​KouWakai](https://redirect.github.com/KouWakai) made their
first contribution in
[https://github.com/slack-go/slack/pull/1142](https://redirect.github.com/slack-go/slack/pull/1142)
- [@​Birtato](https://redirect.github.com/Birtato) made their
first contribution in
[https://github.com/slack-go/slack/pull/1262](https://redirect.github.com/slack-go/slack/pull/1262)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.12.3...v0.12.4
###
[`v0.12.3`](https://redirect.github.com/slack-go/slack/releases/tag/v0.12.3)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.12.2...v0.12.3)
#### What's Changed
##### Bug fixes
- Safer socketmode by
[@​iaburton](https://redirect.github.com/iaburton) in
[https://github.com/slack-go/slack/pull/1150](https://redirect.github.com/slack-go/slack/pull/1150)
- add `omitempty` to ConfirmationBlockObject.Deny by
[@​kamil-gwozdz](https://redirect.github.com/kamil-gwozdz) in
[https://github.com/slack-go/slack/pull/1224](https://redirect.github.com/slack-go/slack/pull/1224)
##### Security
- Redact tokens in SendMessage debug log by
[@​daabr](https://redirect.github.com/daabr) in
[https://github.com/slack-go/slack/pull/1215](https://redirect.github.com/slack-go/slack/pull/1215)
##### Enhancements / Improvements
- socketmode example: use embedded api client in socketmode client by
[@​kittydoor](https://redirect.github.com/kittydoor) in
[https://github.com/slack-go/slack/pull/1164](https://redirect.github.com/slack-go/slack/pull/1164)
- Sends an invitation to a Slack Connect channel by
[@​nopcoder](https://redirect.github.com/nopcoder) in
[https://github.com/slack-go/slack/pull/1216](https://redirect.github.com/slack-go/slack/pull/1216)
- Add support for manifests and config tokens by
[@​stijndcl](https://redirect.github.com/stijndcl) in
[https://github.com/slack-go/slack/pull/1220](https://redirect.github.com/slack-go/slack/pull/1220)
#### New Contributors
- [@​daabr](https://redirect.github.com/daabr) made their first
contribution in
[https://github.com/slack-go/slack/pull/1215](https://redirect.github.com/slack-go/slack/pull/1215)
- [@​kamil-gwozdz](https://redirect.github.com/kamil-gwozdz) made
their first contribution in
[https://github.com/slack-go/slack/pull/1224](https://redirect.github.com/slack-go/slack/pull/1224)
- [@​nopcoder](https://redirect.github.com/nopcoder) made their
first contribution in
[https://github.com/slack-go/slack/pull/1216](https://redirect.github.com/slack-go/slack/pull/1216)
- [@​stijndcl](https://redirect.github.com/stijndcl) made their
first contribution in
[https://github.com/slack-go/slack/pull/1220](https://redirect.github.com/slack-go/slack/pull/1220)
- [@​iaburton](https://redirect.github.com/iaburton) made their
first contribution in
[https://github.com/slack-go/slack/pull/1150](https://redirect.github.com/slack-go/slack/pull/1150)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.12.2...v0.12.3
###
[`v0.12.2`](https://redirect.github.com/slack-go/slack/releases/tag/v0.12.2)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.12.1...v0.12.2)
#### What's Changed
##### Bug fixes
- fix: change period to comma by
[@​yokishava](https://redirect.github.com/yokishava) in
[https://github.com/slack-go/slack/pull/1147](https://redirect.github.com/slack-go/slack/pull/1147)
##### Enhancements / Improvements
- add datetimepicker component by
[@​hussachai](https://redirect.github.com/hussachai) in
[https://github.com/slack-go/slack/pull/1145](https://redirect.github.com/slack-go/slack/pull/1145)
- add 2FA type to slack user by
[@​imilchev](https://redirect.github.com/imilchev) in
[https://github.com/slack-go/slack/pull/1183](https://redirect.github.com/slack-go/slack/pull/1183)
- add support for user_profile_changed callback event by
[@​verygoodsoftwarenotvirus](https://redirect.github.com/verygoodsoftwarenotvirus)
in
[https://github.com/slack-go/slack/pull/1182](https://redirect.github.com/slack-go/slack/pull/1182)
- Export the Binder type in slacktest by
[@​kpaulisse](https://redirect.github.com/kpaulisse) in
[https://github.com/slack-go/slack/pull/1177](https://redirect.github.com/slack-go/slack/pull/1177)
- socketmode remove duplicate debug logging by
[@​kittydoor](https://redirect.github.com/kittydoor) in
[https://github.com/slack-go/slack/pull/1165](https://redirect.github.com/slack-go/slack/pull/1165)
- Implement context-aware RunEventLoop by
[@​lololozhkin](https://redirect.github.com/lololozhkin) in
[https://github.com/slack-go/slack/pull/1169](https://redirect.github.com/slack-go/slack/pull/1169)
- Add ReplyUsers to Msg Struct by
[@​aleksa11010](https://redirect.github.com/aleksa11010) in
[https://github.com/slack-go/slack/pull/1180](https://redirect.github.com/slack-go/slack/pull/1180)
##### Misc
- Test with Go 1.18~1.20 by
[@​kanata2](https://redirect.github.com/kanata2) in
[https://github.com/slack-go/slack/pull/1186](https://redirect.github.com/slack-go/slack/pull/1186)
- Update README for slacktest by
[@​kanata2](https://redirect.github.com/kanata2) in
[https://github.com/slack-go/slack/pull/1187](https://redirect.github.com/slack-go/slack/pull/1187)
- Add actions/stale action by
[@​kanata2](https://redirect.github.com/kanata2) in
[https://github.com/slack-go/slack/pull/1188](https://redirect.github.com/slack-go/slack/pull/1188)
- Increase operations-per-run by
[@​kanata2](https://redirect.github.com/kanata2) in
[https://github.com/slack-go/slack/pull/1189](https://redirect.github.com/slack-go/slack/pull/1189)
- Bump up golangci-lint and its action to latest by
[@​kanata2](https://redirect.github.com/kanata2) in
[https://github.com/slack-go/slack/pull/1193](https://redirect.github.com/slack-go/slack/pull/1193)
- gofmt by [@​kanata2](https://redirect.github.com/kanata2) in
[https://github.com/slack-go/slack/pull/1194](https://redirect.github.com/slack-go/slack/pull/1194)
#### New Contributors
- [@​hussachai](https://redirect.github.com/hussachai) made their
first contribution in
[https://github.com/slack-go/slack/pull/1145](https://redirect.github.com/slack-go/slack/pull/1145)
- [@​imilchev](https://redirect.github.com/imilchev) made their
first contribution in
[https://github.com/slack-go/slack/pull/1183](https://redirect.github.com/slack-go/slack/pull/1183)
-
[@​verygoodsoftwarenotvirus](https://redirect.github.com/verygoodsoftwarenotvirus)
made their first contribution in
[https://github.com/slack-go/slack/pull/1182](https://redirect.github.com/slack-go/slack/pull/1182)
- [@​kpaulisse](https://redirect.github.com/kpaulisse) made their
first contribution in
[https://github.com/slack-go/slack/pull/1177](https://redirect.github.com/slack-go/slack/pull/1177)
- [@​kittydoor](https://redirect.github.com/kittydoor) made their
first contribution in
[https://github.com/slack-go/slack/pull/1165](https://redirect.github.com/slack-go/slack/pull/1165)
- [@​lololozhkin](https://redirect.github.com/lololozhkin) made
their first contribution in
[https://github.com/slack-go/slack/pull/1169](https://redirect.github.com/slack-go/slack/pull/1169)
- [@​aleksa11010](https://redirect.github.com/aleksa11010) made
their first contribution in
[https://github.com/slack-go/slack/pull/1180](https://redirect.github.com/slack-go/slack/pull/1180)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.12.1...v0.12.2
###
[`v0.12.1`](https://redirect.github.com/slack-go/slack/releases/tag/v0.12.1)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.12.0...v0.12.1)
#### What's Changed
##### Enhancements
- Add FileUploadV2 function to avoid server side file timeouts by
[@​kanata2](https://redirect.github.com/kanata2) in
[https://github.com/slack-go/slack/pull/1148](https://redirect.github.com/slack-go/slack/pull/1148)
- Added new FileUploadV2 function to avoid server side file timeouts by
[@​sarthakkothari](https://redirect.github.com/sarthakkothari) in
[https://github.com/slack-go/slack/pull/1130](https://redirect.github.com/slack-go/slack/pull/1130)
#### New Contributors
- [@​sarthakkothari](https://redirect.github.com/sarthakkothari)
made their first contribution in
[https://github.com/slack-go/slack/pull/1130](https://redirect.github.com/slack-go/slack/pull/1130)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.12.0...v0.12.1
###
[`v0.12.0`](https://redirect.github.com/slack-go/slack/releases/tag/v0.12.0)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.11.4...v0.12.0)
Thank you for all the contributions!
#### What's Changed
This release contains several backward incompatible changes.
##### Fixes
- Fix WorkflowStepCompletedRequest options handling by
[@​CedricFinance](https://redirect.github.com/CedricFinance) in
[https://github.com/slack-go/slack/pull/1129](https://redirect.github.com/slack-go/slack/pull/1129)
- fix: change type of timestamp by
[@​yokishava](https://redirect.github.com/yokishava) in
[https://github.com/slack-go/slack/pull/1131](https://redirect.github.com/slack-go/slack/pull/1131)
##### Enhancements
- add include_all_metadata to conversations.replies API by
[@​ebkn](https://redirect.github.com/ebkn) in
[https://github.com/slack-go/slack/pull/1139](https://redirect.github.com/slack-go/slack/pull/1139)
- Add team_id as a parameter to the users.conversations API method by
[@​ctennis](https://redirect.github.com/ctennis) in
[https://github.com/slack-go/slack/pull/1134](https://redirect.github.com/slack-go/slack/pull/1134)
- feat: add number input block element by
[@​snpkx](https://redirect.github.com/snpkx) in
[https://github.com/slack-go/slack/pull/1132](https://redirect.github.com/slack-go/slack/pull/1132)
- add GetOtherTeam method by
[@​johanmcos](https://redirect.github.com/johanmcos) in
[https://github.com/slack-go/slack/pull/1118](https://redirect.github.com/slack-go/slack/pull/1118)
- add block elements for email_text_input and url_text_input by
[@​ameliagapin](https://redirect.github.com/ameliagapin) in
[https://github.com/slack-go/slack/pull/1140](https://redirect.github.com/slack-go/slack/pull/1140)
- Expose reactionItem and reactionEvent by
[@​grimmy](https://redirect.github.com/grimmy) in
[https://github.com/slack-go/slack/pull/1095](https://redirect.github.com/slack-go/slack/pull/1095)
- Support team.profile.get method by
[@​MattDavisRV](https://redirect.github.com/MattDavisRV) in
[https://github.com/slack-go/slack/pull/1097](https://redirect.github.com/slack-go/slack/pull/1097)
- add GetOtherTeamInfoContext method by
[@​johanmcos](https://redirect.github.com/johanmcos) in
[https://github.com/slack-go/slack/pull/1143](https://redirect.github.com/slack-go/slack/pull/1143)
- Add include_num_members support to conversation.info request by
[@​Yohan460](https://redirect.github.com/Yohan460) in
[https://github.com/slack-go/slack/pull/989](https://redirect.github.com/slack-go/slack/pull/989)
- Add ListTeams and TeamAccess{Granted,Revoked}Events and fix missing
enterprise ID by
[@​stephenwan-opal](https://redirect.github.com/stephenwan-opal)
in
[https://github.com/slack-go/slack/pull/1119](https://redirect.github.com/slack-go/slack/pull/1119)
#### New Contributors
- [@​CedricFinance](https://redirect.github.com/CedricFinance)
made their first contribution in
[https://github.com/slack-go/slack/pull/1129](https://redirect.github.com/slack-go/slack/pull/1129)
- [@​ebkn](https://redirect.github.com/ebkn) made their first
contribution in
[https://github.com/slack-go/slack/pull/1139](https://redirect.github.com/slack-go/slack/pull/1139)
- [@​ctennis](https://redirect.github.com/ctennis) made their
first contribution in
[https://github.com/slack-go/slack/pull/1134](https://redirect.github.com/slack-go/slack/pull/1134)
- [@​snpkx](https://redirect.github.com/snpkx) made their first
contribution in
[https://github.com/slack-go/slack/pull/1132](https://redirect.github.com/slack-go/slack/pull/1132)
- [@​johanmcos](https://redirect.github.com/johanmcos) made their
first contribution in
[https://github.com/slack-go/slack/pull/1118](https://redirect.github.com/slack-go/slack/pull/1118)
- [@​grimmy](https://redirect.github.com/grimmy) made their first
contribution in
[https://github.com/slack-go/slack/pull/1095](https://redirect.github.com/slack-go/slack/pull/1095)
- [@​Yohan460](https://redirect.github.com/Yohan460) made their
first contribution in
[https://github.com/slack-go/slack/pull/989](https://redirect.github.com/slack-go/slack/pull/989)
- [@​stephenwan-opal](https://redirect.github.com/stephenwan-opal)
made their first contribution in
[https://github.com/slack-go/slack/pull/1119](https://redirect.github.com/slack-go/slack/pull/1119)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.11.4...v0.12.0
###
[`v0.11.4`](https://redirect.github.com/slack-go/slack/releases/tag/v0.11.4)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.11.3...v0.11.4)
#### What's Changed
##### Enhancements
- sharedLinks struct should be exported by
[@​pmenglund](https://redirect.github.com/pmenglund) in
[https://github.com/slack-go/slack/pull/1080](https://redirect.github.com/slack-go/slack/pull/1080)
- Support slack events about file by
[@​andyhaskell](https://redirect.github.com/andyhaskell) in
[https://github.com/slack-go/slack/pull/1115](https://redirect.github.com/slack-go/slack/pull/1115)
- Add support for status_emoji_display_info by
[@​paultyng](https://redirect.github.com/paultyng) in
[https://github.com/slack-go/slack/pull/1120](https://redirect.github.com/slack-go/slack/pull/1120)
##### Fixes
- fix: remove omitempty from replace_original and delete_orginal by
[@​yokishava](https://redirect.github.com/yokishava) in
[https://github.com/slack-go/slack/pull/1122](https://redirect.github.com/slack-go/slack/pull/1122)
#### New Contributors
- [@​pmenglund](https://redirect.github.com/pmenglund) made their
first contribution in
[https://github.com/slack-go/slack/pull/1080](https://redirect.github.com/slack-go/slack/pull/1080)
- [@​andyhaskell](https://redirect.github.com/andyhaskell) made
their first contribution in
[https://github.com/slack-go/slack/pull/1115](https://redirect.github.com/slack-go/slack/pull/1115)
- [@​paultyng](https://redirect.github.com/paultyng) made their
first contribution in
[https://github.com/slack-go/slack/pull/1120](https://redirect.github.com/slack-go/slack/pull/1120)
- [@​yokishava](https://redirect.github.com/yokishava) made their
first contribution in
[https://github.com/slack-go/slack/pull/1122](https://redirect.github.com/slack-go/slack/pull/1122)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.11.3...v0.11.4
###
[`v0.11.3`](https://redirect.github.com/slack-go/slack/releases/tag/v0.11.3)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.11.2...v0.11.3)
#### What's Changed
##### Enhancements/Refactoring
- Add metadata related event types by
[@​hrkskov](https://redirect.github.com/hrkskov) in
[https://github.com/slack-go/slack/pull/1096](https://redirect.github.com/slack-go/slack/pull/1096)
- fix: UploadFileContext not calling api.AuthTestContext by
[@​kevin-faliam](https://redirect.github.com/kevin-faliam) in
[https://github.com/slack-go/slack/pull/1109](https://redirect.github.com/slack-go/slack/pull/1109)
##### Bugfixes
- Handle null value in JSONTime by
[@​rusq](https://redirect.github.com/rusq) in
[https://github.com/slack-go/slack/pull/1106](https://redirect.github.com/slack-go/slack/pull/1106)
- Honor deadman timer, fixes
[#​1093](https://redirect.github.com/slack-go/slack/issues/1093)
by [@​parsley42](https://redirect.github.com/parsley42) in
[https://github.com/slack-go/slack/pull/1094](https://redirect.github.com/slack-go/slack/pull/1094)
##### Docs
- fix some simple typos by
[@​lpmi-13](https://redirect.github.com/lpmi-13) in
[https://github.com/slack-go/slack/pull/1098](https://redirect.github.com/slack-go/slack/pull/1098)
- Fix GoDoc grammers by
[@​kanata2](https://redirect.github.com/kanata2) in
[https://github.com/slack-go/slack/pull/1099](https://redirect.github.com/slack-go/slack/pull/1099)
##### Misc
- Update workflow for testing by
[@​kanata2](https://redirect.github.com/kanata2) in
[https://github.com/slack-go/slack/pull/1100](https://redirect.github.com/slack-go/slack/pull/1100)
#### New Contributors
- [@​lpmi-13](https://redirect.github.com/lpmi-13) made their
first contribution in
[https://github.com/slack-go/slack/pull/1098](https://redirect.github.com/slack-go/slack/pull/1098)
- [@​hrkskov](https://redirect.github.com/hrkskov) made their
first contribution in
[https://github.com/slack-go/slack/pull/1096](https://redirect.github.com/slack-go/slack/pull/1096)
- [@​kevin-faliam](https://redirect.github.com/kevin-faliam) made
their first contribution in
[https://github.com/slack-go/slack/pull/1109](https://redirect.github.com/slack-go/slack/pull/1109)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.11.2...v0.11.3
###
[`v0.11.2`](https://redirect.github.com/slack-go/slack/releases/tag/v0.11.2)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.11.1...v0.11.2)
Thank you for all the contributions!
#### What's Changed
##### Enhancements
- add: workflows.stepCompleted and workflwows.stepFailed support by
[@​nakatanakatana](https://redirect.github.com/nakatanakatana) in
[https://github.com/slack-go/slack/pull/1060](https://redirect.github.com/slack-go/slack/pull/1060)
##### Fixes
- Fixes updateUserGroup cannot clear the description and the default
channels by [@​jmatsu](https://redirect.github.com/jmatsu) in
[https://github.com/slack-go/slack/pull/1082](https://redirect.github.com/slack-go/slack/pull/1082)
#### New Contributors
- [@​nakatanakatana](https://redirect.github.com/nakatanakatana)
made their first contribution in
[https://github.com/slack-go/slack/pull/1060](https://redirect.github.com/slack-go/slack/pull/1060)
- [@​jmatsu](https://redirect.github.com/jmatsu) made their first
contribution in
[https://github.com/slack-go/slack/pull/1082](https://redirect.github.com/slack-go/slack/pull/1082)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.11.1...v0.11.2
###
[`v0.11.1`](https://redirect.github.com/slack-go/slack/releases/tag/v0.11.1)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.11.0...v0.11.1)
Thank you for all the contributions!
#### What's Changed
##### Enhancements
- Add `Permalink` to Msg struct by
[@​jreinstra](https://redirect.github.com/jreinstra) in
[https://github.com/slack-go/slack/pull/1069](https://redirect.github.com/slack-go/slack/pull/1069)
- Added GetUsersOptionTeamID so that a team ID can be passed in for use
by [@​antonylucisano](https://redirect.github.com/antonylucisano)
in
[https://github.com/slack-go/slack/pull/1077](https://redirect.github.com/slack-go/slack/pull/1077)
- Metadata Support by
[@​H3rby7](https://redirect.github.com/H3rby7) in
[https://github.com/slack-go/slack/pull/1083](https://redirect.github.com/slack-go/slack/pull/1083)
- Add option to detect unmapped error by
[@​mszostok](https://redirect.github.com/mszostok) in
[https://github.com/slack-go/slack/pull/1086](https://redirect.github.com/slack-go/slack/pull/1086)
#### New Contributors
- [@​jreinstra](https://redirect.github.com/jreinstra) made their
first contribution in
[https://github.com/slack-go/slack/pull/1069](https://redirect.github.com/slack-go/slack/pull/1069)
- [@​antonylucisano](https://redirect.github.com/antonylucisano)
made their first contribution in
[https://github.com/slack-go/slack/pull/1077](https://redirect.github.com/slack-go/slack/pull/1077)
- [@​H3rby7](https://redirect.github.com/H3rby7) made their first
contribution in
[https://github.com/slack-go/slack/pull/1083](https://redirect.github.com/slack-go/slack/pull/1083)
- [@​mszostok](https://redirect.github.com/mszostok) made their
first contribution in
[https://github.com/slack-go/slack/pull/1086](https://redirect.github.com/slack-go/slack/pull/1086)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.11.0...v0.11.1
###
[`v0.11.0`](https://redirect.github.com/slack-go/slack/releases/tag/v0.11.0)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.10.3...v0.11.0)
Thank you for all the contributions!
In this release, some changes are backward incompatible, so please be
careful when upgrading.
#### What's Changed
##### New Feature
- Socketmode Middleware Design Pattern by
[@​xNok](https://redirect.github.com/xNok) in
[https://github.com/slack-go/slack/pull/904](https://redirect.github.com/slack-go/slack/pull/904)
- This is an experimental feature. please give us your feedback 🙏
##### Enhancements
- Add `bookmarks.<add|edit|remove|list>` support by
[@​winston-stripe](https://redirect.github.com/winston-stripe) in
[https://github.com/slack-go/slack/pull/1044](https://redirect.github.com/slack-go/slack/pull/1044)
- Support remote files API by
[@​dleviminzi](https://redirect.github.com/dleviminzi) in
[https://github.com/slack-go/slack/pull/1058](https://redirect.github.com/slack-go/slack/pull/1058)
- Support remote files API by
[@​ledmonster](https://redirect.github.com/ledmonster) in
[https://github.com/slack-go/slack/pull/859](https://redirect.github.com/slack-go/slack/pull/859)
- \[breaking changes] Add field to inputblock by
[@​deepoil](https://redirect.github.com/deepoil) in
[https://github.com/slack-go/slack/pull/970](https://redirect.github.com/slack-go/slack/pull/970)
- Add missing conversion to EventsAPIType by
[@​puskunalis](https://redirect.github.com/puskunalis) in
[https://github.com/slack-go/slack/pull/1074](https://redirect.github.com/slack-go/slack/pull/1074)
- interactions: parse AppInstalledTeamID by
[@​7ail](https://redirect.github.com/7ail) in
[https://github.com/slack-go/slack/pull/1073](https://redirect.github.com/slack-go/slack/pull/1073)
- Support "reply_broadcast" parameter in webhook API by
[@​OnePunMan](https://redirect.github.com/OnePunMan) in
[https://github.com/slack-go/slack/pull/1068](https://redirect.github.com/slack-go/slack/pull/1068)
##### API Cleanup/Fixes
- webhooks: discarding body after http requests in order to allow reusi…
by [@​gosom](https://redirect.github.com/gosom) in
[https://github.com/slack-go/slack/pull/1061](https://redirect.github.com/slack-go/slack/pull/1061)
- \[breaking changes] Fix field types in `SubteamMembersChangedEvent` by
[@​youdofoo](https://redirect.github.com/youdofoo) in
[https://github.com/slack-go/slack/pull/1064](https://redirect.github.com/slack-go/slack/pull/1064)
- \[breaking changes] Uniformize event_ts support on inner events by
[@​abustany](https://redirect.github.com/abustany) in
[https://github.com/slack-go/slack/pull/1052](https://redirect.github.com/slack-go/slack/pull/1052)
- Expose StatusCodeError by
[@​photown](https://redirect.github.com/photown) in
[https://github.com/slack-go/slack/pull/1071](https://redirect.github.com/slack-go/slack/pull/1071)
- Remove full event details from UnmarshallingErrorEvent by
[@​pkosiec](https://redirect.github.com/pkosiec) in
[https://github.com/slack-go/slack/pull/1067](https://redirect.github.com/slack-go/slack/pull/1067)
##### Documentations/Examples
- Update GetUserGroups call in README by
[@​photown](https://redirect.github.com/photown) in
[https://github.com/slack-go/slack/pull/1065](https://redirect.github.com/slack-go/slack/pull/1065)
- Add missing panic in socket mode handler example by
[@​puskunalis](https://redirect.github.com/puskunalis) in
[https://github.com/slack-go/slack/pull/1075](https://redirect.github.com/slack-go/slack/pull/1075)
- fix: broken examples, style by
[@​kanata2](https://redirect.github.com/kanata2) in
[https://github.com/slack-go/slack/pull/1072](https://redirect.github.com/slack-go/slack/pull/1072)
##### Misc
- Goodbye vendor dir by
[@​kanata2](https://redirect.github.com/kanata2) in
[https://github.com/slack-go/slack/pull/1059](https://redirect.github.com/slack-go/slack/pull/1059)
#### New Contributors
- [@​winston-stripe](https://redirect.github.com/winston-stripe)
made their first contribution in
[https://github.com/slack-go/slack/pull/1044](https://redirect.github.com/slack-go/slack/pull/1044)
- [@​dleviminzi](https://redirect.github.com/dleviminzi) made
their first contribution in
[https://github.com/slack-go/slack/pull/1058](https://redirect.github.com/slack-go/slack/pull/1058)
- [@​ledmonster](https://redirect.github.com/ledmonster) made
their first contribution in
[https://github.com/slack-go/slack/pull/859](https://redirect.github.com/slack-go/slack/pull/859)
- [@​photown](https://redirect.github.com/photown) made their
first contribution in
[https://github.com/slack-go/slack/pull/1065](https://redirect.github.com/slack-go/slack/pull/1065)
- [@​gosom](https://redirect.github.com/gosom) made their first
contribution in
[https://github.com/slack-go/slack/pull/1061](https://redirect.github.com/slack-go/slack/pull/1061)
- [@​youdofoo](https://redirect.github.com/youdofoo) made their
first contribution in
[https://github.com/slack-go/slack/pull/1064](https://redirect.github.com/slack-go/slack/pull/1064)
- [@​abustany](https://redirect.github.com/abustany) made their
first contribution in
[https://github.com/slack-go/slack/pull/1052](https://redirect.github.com/slack-go/slack/pull/1052)
- [@​puskunalis](https://redirect.github.com/puskunalis) made
their first contribution in
[https://github.com/slack-go/slack/pull/1074](https://redirect.github.com/slack-go/slack/pull/1074)
- [@​7ail](https://redirect.github.com/7ail) made their first
contribution in
[https://github.com/slack-go/slack/pull/1073](https://redirect.github.com/slack-go/slack/pull/1073)
- [@​OnePunMan](https://redirect.github.com/OnePunMan) made their
first contribution in
[https://github.com/slack-go/slack/pull/1068](https://redirect.github.com/slack-go/slack/pull/1068)
- [@​pkosiec](https://redirect.github.com/pkosiec) made their
first contribution in
[https://github.com/slack-go/slack/pull/1067](https://redirect.github.com/slack-go/slack/pull/1067)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.10.3...v0.11.0
###
[`v0.10.3`](https://redirect.github.com/slack-go/slack/releases/tag/v0.10.3)
[Compare
Source](https://redirect.github.com/slack-go/slack/compare/v0.10.2...v0.10.3)
Thank you for all the contributions!
#### What's Changed
##### API Cleanup
- Support pass context.Context to all methods by
[@​zchee](https://redirect.github.com/zchee) in
[https://github.com/slack-go/slack/pull/1034](https://redirect.github.com/slack-go/slack/pull/1034)
- Optimize NewSafeID using atomic by
[@​zchee](https://redirect.github.com/zchee) in
[https://github.com/slack-go/slack/pull/1035](https://redirect.github.com/slack-go/slack/pull/1035)
- optimize slackutilsx.EscapeMessage function by
[@​brainexe](https://redirect.github.com/brainexe) in
[https://github.com/slack-go/slack/pull/1041](https://redirect.github.com/slack-go/slack/pull/1041)
- Add fluent `WithConfirm` for `ButtonBlockElement`s by
[@​liftM](https://redirect.github.com/liftM) in
[https://github.com/slack-go/slack/pull/1055](https://redirect.github.com/slack-go/slack/pull/1055)
- `WithStyle` for `ConfirmationBlockObject`s should be fluent by
[@​liftM](https://redirect.github.com/liftM) in
[https://github.com/slack-go/slack/pull/1054](https://redirect.github.com/slack-go/slack/pull/1054)
##### Enhancement
- \[experimental] introduction of Slack workflow steps by
[@​SteffenMahler](https://redirect.github.com/SteffenMahler) in
[https://github.com/slack-go/slack/pull/1027](https://redirect.github.com/slack-go/slack/pull/1027)
- workflow_step: add SaveWorkflowStepConfigurationConetxt & fix return
err by [@​zchee](https://redirect.github.com/zchee) in
[https://github.com/slack-go/slack/pull/1042](https://redirect.github.com/slack-go/slack/pull/1042)
- Added Details field to Audit event entries by
[@​JustinJudd](https://redirect.github.com/JustinJudd) in
[https://github.com/slack-go/slack/pull/1047](https://redirect.github.com/slack-go/slack/pull/1047)
##### Misc
- github/workflow: drop go1.15 and add go1.18 by
[@​zchee](https://redirect.github.com/zchee) in
[https://github.com/slack-go/slack/pull/1048](https://redirect.github.com/slack-go/slack/pull/1048)
#### New Contributors
- [@​SteffenMahler](https://redirect.github.com/SteffenMahler)
made their first contribution in
[https://github.com/slack-go/slack/pull/1027](https://redirect.github.com/slack-go/slack/pull/1027)
- [@​brainexe](https://redirect.github.com/brainexe) made their
first contribution in
[https://github.com/slack-go/slack/pull/1041](https://redirect.github.com/slack-go/slack/pull/1041)
- [@​liftM](https://redirect.github.com/liftM) made their first
contribution in
[https://github.com/slack-go/slack/pull/1055](https://redirect.github.com/slack-go/slack/pull/1055)
**Full Changelog**:
https://github.com/slack-go/slack/compare/v0.10.2...v0.10.3
###
[`v0.10.2`](https://redirect.github.com/slack-go/slack/releases/tag/v0.10.2)
[Compare Source](https://redirect.github.com/slack-go/slack/compare/v0.1
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - "every weekday" (UTC).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzkuMTkuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJpbXBhY3Qvbm8tY2hhbmdlbG9nLXJlcXVpcmVkIl19-->
Co-authored-by: pulumi-renovate[bot] <189166143+pulumi-renovate[bot]@users.noreply.github.com>1 parent a1fb9a5 commit 161ead7Copy full SHA for 161ead7
Expand file treeCollapse file tree
2 files changed
+4
-4
lines changed+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
12 |
| - | |
| 12 | + | |
13 | 13 |
| |
14 | 14 |
| |
15 | 15 |
| |
|
+3-3Lines changed: 3 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
77 | 77 |
| |
78 | 78 |
| |
79 | 79 |
| |
| 80 | + | |
80 | 81 |
| |
81 | 82 |
| |
82 | 83 |
| |
| |||
150 | 151 |
| |
151 | 152 |
| |
152 | 153 |
| |
153 |
| - | |
154 | 154 |
| |
155 | 155 |
| |
156 | 156 |
| |
| |||
181 | 181 |
| |
182 | 182 |
| |
183 | 183 |
| |
184 |
| - | |
185 |
| - | |
| 184 | + | |
| 185 | + | |
186 | 186 |
| |
187 | 187 |
| |
188 | 188 |
| |
|
0 commit comments