Releases: slack-go/slack
v0.25.0
Important
See CHANGELOG.md for details. Breaking change: TableBlock.Rows is now [][]TableCell (#1558).
What's Changed
- chore(deps): bump actions/stale from 10.2.0 to 10.3.0 by @dependabot[bot] in #1556
- chore(deps): bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 by @dependabot[bot] in #1557
- fix!: preserve all cell types in
TableBlockby @nlopes in #1560 - refactor: replace interface{} with any (Go 1.18+) by @MD-Mushfiqur123 in #1559
- chore: fix a bunch of issues detected by golangci-lint by @nlopes in #1561
New Contributors
- @MD-Mushfiqur123 made their first contribution in #1559
Full Changelog: v0.24.0...v0.25.0
v0.24.0
What's Changed
- docs: format go get command in code block by @akhil-ge0rge in #1554
- feat: add new block kit block Data Table by @nlopes in #1555
Important
NewTaskCardBlock and NewPlanBlock now guard against nil variadic options so if you were doing that (which you shouldn't) this is a breaking change.
New Contributors
- @akhil-ge0rge made their first contribution in #1554
Full Changelog: v0.23.1...v0.24.0
v0.23.1
Important
Even though this is a [security] patch release, if you were using an empty secret, this is a breaking change due to a change in behaviour. That's on purpose, to ensure you fix your approach so that there are no footguns.
Fixed
NewSecretsVerifiernow rejects empty signing secrets to avoid accepting forged request
signatures when applications are misconfigured.
Full Changelog: v0.23.0...v0.23.1
v0.23.0
Added
- feat(socketmode): expose socketmode handler
dispatchermethod by @nlopes in #1550 - feat(block): add card and carousel blocks by @nlopes in #1551
- feat(assistant): add username and icon to status update by @charleenwang in #1553
- feat(block): add alert block by @nlopes in #1552
New Contributors
- @charleenwang made their first contribution in #1553
Full Changelog: v0.22.0...v0.23.0
v0.22.0
What's Changed
Added
- OAuth PKCE support -
OAuthOptionCodeVerifieroption forGetOAuthV2Response, plusGenerateCodeVerifier()andGenerateCodeChallenge()helpers (RFC 7636).client_secretis now conditionally omitted when empty in bothGetOAuthV2ResponseContextandRefreshOAuthV2TokenContext. - Manifest scope fields -
BotOptionalandUserOptionalonOAuthScopes. - Rich text styles -
Underline,Highlight,ClientHighlight, andUnlinkonRichTextSectionTextStyle.Stylefield onRichTextSectionUserGroupElement. - Assistant search context -
Sort,SortDir,Before,After,Highlight,IncludeContextMessages,IncludeDeletedUsers,IncludeMessageBlocks,IncludeArchivedChannels,DisableSemanticSearch,Modifiers,TermClausesparameters and new response types (AssistantSearchContextFile,AssistantSearchContextChannel,AssistantSearchContextMessageContext).
Fixed
- socketmode: malformed JSON no longer forces reconnect -
json.SyntaxErrorandjson.UnmarshalTypeErrornow emit anEventTypeIncomingErrorevent and continue reading instead of killing the WebSocket connection. - socketmode:
debug_reconnectsquery param applied correctly - the parameter was silently discarded due to a missingurl.RawQueryassignment. ChannelTypesandContentTypesnow send comma-separated values instead of repeated form keys, matching the convention used by every other method in the library.
Docs
assistant:writescope marked as deprecated in favour ofchat:write.
Full Changelog: v0.21.1...v0.22.0
v0.21.1
v0.21.1
Added
MessageEventchannel type helpers β NewChannelTypeChannel,ChannelTypeGroup,
ChannelTypeIM, andChannelTypeMPIMconstants plusIsChannel(),IsGroup(),IsIM(), and
IsMpIM()convenience methods onMessageEvent. No more comparing raw strings to figure out where a
message came from:
if ev.IsIM() {
// handle direct message
}Fixed
- MessageEvent doc typo β ChannelType documentation listed "mim" instead of the correct "mpim".
- Duplicate attachment/block serialization β MsgOptionAttachments and MsgOptionBlocks were serializing
payloads twice (once for the response-URL JSON path, once for the form POST path). Serialization now
happens once inside formSender.BuildRequestContext. (#1547)
Note
UnsafeApplyMsgOptions no longer includes attachments/blocks keys in the returned values, since marshalling is deferred to send time. This function is documented as unsupported.
v0.21.0
Warning
This release contains multiple breaking changes. Please review the sections below before upgrading.
Breaking changes
Removed APIs
IMstruct removed β UseConversationinstead.IsUserDeletedhas been moved there.Info.GetBotByID,GetUserByID,GetChannelByID,GetGroupByID,GetIMByIDremoved β These were deprecated and returnednilunconditionally. Remove any calls to them.
Signature changes
-
ListReactionsnow uses cursor-based pagination β Returns([]ReactedItem, string, error)instead of([]ReactedItem, *Paging, error).ListReactionsParametersreplacesCount/PagewithCursor/Limit.// Before items, paging, err := api.ListReactions(params) // After items, nextCursor, err := api.ListReactions(params)
-
ListStars/GetStarrednow use cursor-based pagination β Same pattern: returnsstring(next cursor) instead of*Paging.StarsParametersreplacesCount/PagewithCursor/Limit. -
GetAccessLogsnow uses cursor-based pagination β Same pattern: returnsstring(next cursor) instead of*Paging.AccessLogParametersreplacesCount/PagewithCursor/Limit. -
Ack()andSend()now returnerror(Socket Mode) β Large payloads (β₯20KB) that Slack silently dropped are now rejected with an error. Existing call sites that ignore the return value still compile.
Type changes
-
WebhookMessage.UnfurlLinks/UnfurlMediaβ*boolβ Required to distinguish "omit" from "false".// Before msg := slack.WebhookMessage{UnfurlLinks: true} // After t := true msg := slack.WebhookMessage{UnfurlLinks: &t}
-
User.Has2FAβ*boolβnilmeans absent/unknown (bot tokens),falsemeans explicitly disabled.
Behavior changes
MsgOptionBlocks()with no arguments now sendsblocks=[]β Previously a silent no-op. If you relied on that, remove the option entirely.adminerror strings now start with lowercase β If you match error content in your code, update your comparisons.
Added
admin.teams.settings.*API support β Full suite:AdminTeamsSettingsInfo,SetDefaultChannels,SetDescription,SetDiscoverability,SetIcon,SetName([#960])BlockFromJSON/MustBlockFromJSONβ Create blocks from raw JSON strings, enabling direct use of output from Slack's Block Kit Builder ([#1497])GetOpenIDConnectUserInfoβ Returns identity info viaopenid.connect.userInfo([#967])OAuthOptionAPIURLfor package-level OAuth functions β Override the Slack API URL for testing ([#744])- HTTP response headers β Access Slack response headers (
X-OAuth-Scopes,X-Ratelimit-*, etc.) viaOptionOnResponseHeaderscallback ([#1076]) - API warning callbacks β Register
OptionWarnings(func(warnings []string))to receive Slack deprecation notices ([#1540]) DNDOptionTeamIDβ Passteam_idtoGetDNDInfo/GetDNDTeamInfo, required after workspace migration ([#1157])UpdateUserGroupMembersListβ Accepts[]stringinstead of comma-separated string ([#1172])SetUserProfileβ Set multiple profile fields in a single API call ([#1158])- RTM events β
user_status_changed,user_huddle_changed,user_profile_changed,sh_room_join,sh_room_leave,sh_room_update,channel_updated([#1541], [#858]) - Socket Mode handlers β
HandleShortcut,HandleViewSubmission,HandleViewClosedfor Level 3 dispatch byCallbackID([#1161]) - New fields β
UsernameonUser([#1218]),Blocks/Attachments/Files/UploadonAppMentionEvent([#961]),BlocksonMessageEvent([#1257]),IsConnectorBot/IsWorkflowBotonUser,GuestInvitedByonUserProfile,CacheTS/EventTSonUserChangeEvent
Fixed
UnknownBlockround-trip data loss β Unrecognized block types now preserve their full JSON through unmarshal/marshal cyclesWorkflowButtonBlockElementmissing fromUnmarshalJSONβ Plus missingmulti_*_selectandfile_inputcases ([#1539])NewBlockHeadernil pointer dereference β Passing a nil text object no longer panics ([#1236])ValidateUniqueBlockIDfalse positives β Emptyblock_idstrings no longer flagged as duplicates ([#1184])- Socket Mode: large Ack payloads silently failing β Now uses 32KB write buffer and rejects payloads β₯20KB with an error ([#1196])
Deprecated
slackevents.ParseActionEventβ Cannot parseblock_actions. Useslack.InteractionCallbackwithjson.Unmarshalinstead ([#596])slackevents.MessageAction,MessageActionEntity,MessageActionResponseβ Legacyinteractive_messagetypes only
Full Changelog: v0.20.0...v0.21.0
v0.20.0
Warning
trigger_id and workflow_id are NOT in any documentation or in any of the official
libraries, so exercise caution if you use these.
Added
workflow_idandtrigger_idinMessageβ It seems that some types of messages,
e.g:bot_message, can carrytrigger_idandworkflow_id.WorkflowIDwas added by @clayallsopp in #1537RichTextQuote.Borderfield β optional border toggle (matches the docs now)RichTextPreformatted.Languagefield β enables syntax highlighting for preformatted
blocks
Fixed
- Remove embedding of
RichTextSectionβRichTextQuoteandRichTextPreformatted
are now flattened as they should have always been. This is a breaking change for anyone
using these structs directly.
New Contributors
- @clayallsopp made their first contribution in #1537
Full Changelog: v0.19.0...v0.20.0
v0.19.0
Added
- Add support for task_card and plan agent blocks by @nlopes in #1536
- Add optional HTTP retry for Web API (429, 5xx, connection errors) by @olegbespalov in #1532
Full Changelog: v0.18.0...v0.19.0
v0.18.0
This is the first stable release in the 0.18.x series β it includes everything from rc1 and rc2 plus a handful of new features and fixes that landed since.
There are a few breaking changes in this one. I tried to keep them to the minimum necessary but some were long overdue. Here's what you need to know.
Breaking changes
File upload API cleanup (#1481)
Slack discontinued the old files.upload API back in November 2025, so we finally removed the deprecated UploadFile, UploadFileContext, and FileUploadParameters. The V2 variants have been renamed to drop the suffix:
UploadFileV2βUploadFileUploadFileV2ContextβUploadFileContextUploadFileV2ParametersβUploadFileParameters
Should be a quick search-and-replace for most codebases.
GetReactions return type (#1480)
GetReactions now returns ReactedItem instead of []ItemReaction. This aligns with what the Slack API actually returns β the item itself (message, file, or file_comment) alongside its reactions. To migrate, use resp.Reactions to get at the slice.
Settings pointer fields (#1461)
Settings.Interactivity and Settings.EventSubscriptions are now pointers so they can be properly omitted when empty. You'll need nil checks if you're accessing these directly.
Minimum Go version is now 1.25
Up from 1.22 in v0.17.x. The go.mod directive is go 1.25.
Added
- Admin Conversations API β Full
admin.conversations.*support: core operations, bulk operations, preferences, retention, restrict access, and EKM channel info. (#1329) admin.roles.*API methods βlistAssignments,addAssignments, andremoveAssignments. (#1520)- Chat Streaming API β Real-time chat streaming with example usage. (#1506)
- Data Access API β Full support with example implementation. (#1439)
- Work Objects β Chat unfurl with Work Object metadata, entity details (flexpane),
entity_details_requestedevent, and associated types. (#1529) - Huddle support β
HuddleRoom,HuddleParticipantEvent, andHuddleRecordingtypes for huddle events. - Table blocks β Parse and create table blocks. (#1490, #1511)
- Context actions block β
context_actionsblock type. (#1495) - Workflow button β
workflow_buttonblock element. (#1499) - Call block data β
CallBlocknow includes full call data. (#897) - Cursor-based
GetUserspagination (#1465) GetAllConversationswith pagination β Automatic pagination with rate limit handling. (#1463)focus_on_loadfor remaining block elements β selects, multi-selects, datepicker, timepicker, plain_text_input, checkboxes, radio_buttons, number_input. (#1519)- Missing
User/UserProfile/EnterpriseUserfields βwho_can_share_contact_card,always_active,pronouns,image_1024, and more. (#1526) PlainText/PreviewPlainTextonFileβ Email file objects now include plain text body fields. (#1522)- Attachment image fields β
ImageBytes,ImageHeight,ImageWidth. (#1516) RecordChannelconversation property (#1513)- Title for
CreateChannelCanvas(#1483) loading_messagesforSetAssistantThreadsStatus(#1489)PostEphemeralhandler for slacktest (#1517)PreviewImageNamefor remote files- Audit Logs example (#1144)
Fixed
- File upload error wrapping β
UploadFilenow tells you which of the three upload steps failed. (#1491) - Audit Logs API endpoint β
GetAuditLogswas hitting the wrong endpoint; now usesapi.slack.com. AddedOptionAuditAPIURLfor testing. (#1144) - Socket mode dial debugging β Debug logging for custom dialer failures. Helps with proxy/TLS issues. (#1360)
MsgOptionPostMessageParametersmetadata β Was silently droppingMetaData. (#1343)UserProfile.SkypeJSON tag β Fixed typo"skyp"β"skype". (#1524)assistant.threads.setSuggestedPromptstitle β Now actually sent when non-empty. (#1528)PublishViewempty hash β No longer sends empty hash in payload. (#1515)ImageBlockElementvalidation β Properly validatesimageURLorSlackFile. (#1488)- Rich text section channel return (#1472)
KickUserFromConversationerror handling β Errors now parsed as a map. (#1471)
Changed
- CI test matrix: dropped Go 1.24, added Go 1.26; bumped golangci-lint to v2.10.1. (#1530)
Full Changelog: v0.17.3...v0.18.0