MAJOR BREAKING CHANGES
This release has a few major breaking changes. And a couple require developers to pay a bit of attention, else their programs will break.
I am sorry this is the case but such is life sometimes.
In order to give people a bit of a heads up here, and to make sure people do pay attention, I'm releasing a release candidate (-rc
) version and give it some time, before I do a final v0.17.0
.
See below for the most important, and trickier breaking changes.
Breaking changes
- Fix message event struct by @paprikati in #1391
OurMessageEvent
has been quite wrong for a while. This should fix it but it does mean folks will have to change their code to cope with this new structure. Please be extra vigilant in areas of your code that usesMessageEvent
. - Function execution events now correctly accept interfaces not strings by @ProjectBarks in #1357
FunctionExecutedEvent
hadInputs
set asmap[string]string
but that didn't allow enough flexibility - that has been changed tomap[string]interface
. - Allow
emoji
value in plain text blocks to be null by @calebmckay in #1354
TheEmoji
field inTextBlockObject
is now a pointer to ensure we can make a distinction betweennil
andfalse
. Only affects when unmarshalling. - Remove Legacy Workflows by @lorenzoaiello in #1350
Slack has deprecated legacy workflows for a long time, and beginning September 26, 2024, Slack stopped executing workflows containing a "step from app." See more at https://api.slack.com/changelog/2023-08-workflow-steps-from-apps-step-back. - Implement PublishViewContext to keep hash optional by @ishitamundhra in #1322
PublishViewContext()
now requires people to pass aPublishViewContextRequest
which became a public type. If you callPublishViewContext()
in your code, please adjust accordingly.
Features added
- Add markdown block by @nlopes in #1372
- Add filter in
MultiSelectBlockElement
by @quantumsheep in #1373 - Support unmarshalling markdown blocks by @carlaurr in #1381
- Expose private File Upload V2 methods to support multiple file uploads in a single message by @YutoKashiwagi in #1376
- Add
Headers
field to theFile
structure by @rntk in #1380 - Add
RichTextValue
(rich_text_value
) toBlockAction
by @borisputerka in #1385 - Add '&debug_reconnects=true' to websocket url when in
debug
mode by @nlopes in #1393
Fixes
- Fix
slacktest
GetSeenOutboundMessages
race condition by @askreet in #1362 - Return a StatusCodeError when a workspace's message limit is exceeded by @greysteil in #1383
Other changes
- Configure Dependabot to maintain GitHub Actions by @sgerrand in #1374
- chore(deps): bump actions/stale from 9.0.0 to 9.1.0 by @dependabot in #1377
- chore(deps): bump golangci/golangci-lint-action from 6.1.0 to 6.5.0 by @dependabot in #1378
- chore: remove unused GO111MODULE from the tests by @nlopes in #1382
- chore: bump golangci to 1.63.4 by @nlopes in #1386
- chore: bump testing ubuntu runner to 24.04 by @nlopes in #1387
- Create FUNDING.yml by @nlopes in #1388
- chore(deps): bump golangci/golangci-lint-action from 6.5.0 to 6.5.1 by @dependabot in #1389
- ci: add Go version 1.24 to test matrix by @nemuvski in #1390
- chore: sort out a couple minor niggles by @nlopes in #1392
New Contributors
- @sgerrand made their first contribution in #1374
- @quantumsheep made their first contribution in #1373
- @dependabot made their first contribution in #1377
- @carlaurr made their first contribution in #1381
- @ProjectBarks made their first contribution in #1357
- @askreet made their first contribution in #1362
- @ishitamundhra made their first contribution in #1322
- @greysteil made their first contribution in #1383
- @borisputerka made their first contribution in #1385
Full Changelog: v0.16.0...v0.17.0-rc2