Releases: slackapi/node-slack-sdk
@slack/[email protected]
Final 1.x Release
Please note that this will be the final planned release of @slack/socket-mode
in the 1.x line. The next release will be 2.0, which will include a few breaking changes.
What's Changed
A few bug fixes and stability improvements were landed in this release:
- WebSocket messages of
type:disconnect
coming from the Slack backend should now consistently force-reconnect the socket mode client; previously certaintype:disconnect
messages (containing a specificreason
property) were not treated in this way. - All
type:disconnect
messages from the Slack backend now do not raise aslack_event
event; this led to problems, particularly for users of bolt-js. - Calling
disconnect()
if the client is already disconnected no longer raises an exception.
Full Changelog
dc48959 socket-mode: do not throw if calling disconnect()
and already disconnected, and do not raise slack_event
if message received is of type: disconnect
@slack/[email protected]
What's Changed
We released a fix for the oauth.v2.exchange
method argument type; previously it did not require a token
, which was incorrect. It now requires a token
parameter, which matches the expectations of this API method.
Full Changelog
ae755dc web-api(fix): oauth.v2.exchange
method requires a token
parameter (#1779) - thanks for reporting @iggyray!
@slack/[email protected]
What's Changed
We've deprecated the files.upload
method. Check out our announcement on the topic here. Instead, use the uploadV2
method provided by the client.
Full Changelog
ae9ace8 web-api(fix): fix node-retry types (#1772) - thanks @cotsupa!
fec4895 web-api(docs): Add deprecation JSdoc to files.upload
method (#1773)
8bff32f web-api(fix): Fix typo in error throwing for rate limit exceeded (#1755) - thanks @WhiteKiwi!
@slack/[email protected]
What's Changed
This major release bumps dependencies to their latest versions and sets the minimum node version is to v18, the current LTS node.js. While the library should work with older versions of node, we no longer test the library against versions of node older than 18, so we cannot guarantee compatibility.
In addition, calling disconnect()
when already disconnected should no longer throw an exception (fixed #842).
@slack/[email protected]
What's Changed
A new doctor
hook was added to surface certain runtime dependencies depended upon by your project! Stay tuned for an upcoming CLI release to find out how it'll be used. Hint: It's related to the doctor
command 😉
Full Changelog
@slack/[email protected]
What's Changed
We added some more debug-level logging to the underlying socket connections used in this package. Now both primary and backup secondary websocket connections are identified in logs, and websocket-level events (like open
and close
) are logged out at the debug level.
Full Changelog
e3bf5cd socket-mode: add more debug logging to low level websocket event handlers (#1757)
@slack/[email protected]
What's Changed
Nothing major or even minor in this release! Just a few patches:
- web-api: prevent apps.event.authorizations.list API from ever sending token in the body by @filmaj in #1737
- web-api(fix): include file or contents types in file_uploads arguments by @zimeg in #1744
- web-api(fix): share tokens provided as arguments in files upload to upload jobs by @zimeg in #1745
- web-api(chore): release @slack/[email protected] by @zimeg in #1746
Full Changelog: https://github.com/slackapi/node-slack-sdk/compare/@slack/[email protected]...@slack/[email protected]
@slack/[email protected]
What's Changed
A new package has been introduced to enable inter-process communication between the Slack CLI and applications built with Bolt for JavaScript. That's this @slack/cli-hooks
package!
More information on this package can be found on the package's README.md
and releases are currently available on NPM.
Full Changelog
f3dff4d Introduce a @slack/cli-hooks
package that implements Slack CLI hooks in #1714 - Thanks @zimeg @misscoded @WilliamBergamin @filmaj
@slack/[email protected]
What's Changed
The following methods were added to the web client to support functions.*
methods:
Full Changelog
4f39371 Add support for functions.* (complete) methods in #1702 - Thanks @misscoded!
@slack/[email protected]
What's Changed
Only relevant to consumers in TypeScript projects: we mistakenly removed the types for method arguments as exports in the 7.0.0 major release (e.g. ViewsPushArguments
, etc. - any of the types listed in this file). These were available for consumers to import
in the 6.x versions of web-api
. Woops! This release simply adds these back in.