Update dependency slack-sdk to v3.34.0 #1952
Merged
+1
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==3.5.0
->==3.34.0
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
slackapi/python-slack-sdk (slack-sdk)
v3.34.0
: version 3.34.0Compare Source
Changes
Dependabot
v3.33.5
: version 3.33.5Compare Source
Changes
v3.33.4
: version 3.33.4Compare Source
Changes
v3.33.3
: version 3.33.3Compare Source
Changes
v3.33.2
: version 3.33.2Compare Source
Changes
v3.33.1
: version 3.33.1Compare Source
Changes
v3.33.0
: version 3.33.0Compare Source
Changes
v3.32.0
: version 3.32.0Compare Source
What's Changed
Features and Fixes
conversations.requestShared
approve
,deny
&list
by @WilliamBergamin in https://github.com/slackapi/python-slack-sdk/pull/1530Documentation
Misc
Dependabot
New Contributors
v3.31.0
: version 3.31.0Compare Source
What's Changed
conversations.externalInvitePermissions.set
API by @WilliamBergamin in https://github.com/slackapi/python-slack-sdk/pull/1517team.externalTeams.disconnect
by @WilliamBergamin in https://github.com/slackapi/python-slack-sdk/pull/1526bot_access_tokens
from the debug logs of socket mode by @WilliamBergamin in https://github.com/slackapi/python-slack-sdk/pull/1519v3.30.0
: version 3.30.0Compare Source
Changes
All issues/pull requests: https://github.com/slackapi/python-slack-sdk/milestone/99?closed=1
Full Changelog: slackapi/python-slack-sdk@v3.29.0...v3.30.0
v3.29.0
: version 3.29.0Compare Source
Changes
v3.28.0
: version 3.28.0Compare Source
What's Changed
New Contributors
All issues/pull requests: https://github.com/slackapi/python-slack-sdk/milestone/95?closed=1
Full Changelog: slackapi/python-slack-sdk@v3.27.2...v3.28.0
v3.27.2
: version 3.27.2Compare Source
Changes
RichTextElement.elements
items are never promoted to a proper Python object type - Thanks @k1e1n04 @kezabellev3.27.1
: version 3.27.1Compare Source
Changes
v3.27.0
: version 3.27.0Compare Source
Changes
v3.26.2
: version 3.26.2Compare Source
Changes
v3.26.1
: version 3.26.1Compare Source
Changes
force
argument toconversations.invite
API method - Thanks @filmajv3.26.0
: version 3.26.0Compare Source
Changes
v3.25.0
: version 3.25.0Compare Source
Changes
v3.24.0
: version 3.24.0Compare Source
Changes
v3.23.1
: version 3.23.1Compare Source
Changes
v3.23.0
: version 3.23.0Compare Source
Changes
RichTextInputElement
toslack_sdk.models
- Thanks @seratchfiles.upload
v2 method in correspondence with server-side changes - Thanks @seratchSince this version, developers no longer need
files:read
permission forfiles_upload_v2
method. To learn more aboutfiles_upload_v2
, please refer to v3.19.0 release notes: https://github.com/slackapi/python-slack-sdk/releases/tag/v3.19.0v3.22.0
: version 3.22.0Compare Source
Changes
admin.*
APIs for managing automation platform apps - Thanks @seratchworkflow_button
block element to theslack_sdk.models
package - Thanks @seratchmetadata
argument support to Incoming Webhooks - Thanks @seratchteam.accessLogs
API - Thanks @seratchServerErrorRetryHandler
, renaming_can_retry_async
->_can_retry
- Thanks @maximkir-flImageBlock
's title parsing fails when given a string - Thanks @seratch @kezabelleauthor_subname
toattachment
model class - Thanks @seratchcreate_tables()
toSQLAlchemyOAuthStateStore
- Thanks @raphaelhuefnerstars.*
API methods as deprecated - Thanks @seratchcodecov/codecov-action@v3
to upload code coverage - Thanks @zimegv3.21.3
: version 3.21.3Compare Source
Changes
v3.21.2
: version 3.21.2Compare Source
Changes
v3.21.1
: version 3.21.1Compare Source
Changes
v3.21.0
: verison 3.21.0Compare Source
Changes
v3.20.2
: version 3.20.2Compare Source
Changes
v3.20.1
: version 3.20.1Compare Source
Changes
v3.20.0
: version 3.20.0Compare Source
Changes
admin.conversations.bulk{Archive|Delete|Move}
API method support - Thanks @WilliamBergaminchat.postMessage
method - Thanks @seratch @mwbrooksemoji.list
API args - Thanks @seratchDocument Changes
v3.19.5
: version 3.19.5Compare Source
Changes
v3.19.4
: version 3.19.4Compare Source
Changes
v3.19.3
: version 3.19.3Compare Source
Changes
v3.19.2
: version 3.19.2Compare Source
Changes
v3.19.1
: version 3.19.1Compare Source
Changes
WebClient#files_upload_v2()
to use given filename as the default title value - Thanks @seratch @mattprv3.19.0
: version 3.19.0Compare Source
New Features
files.upload v2 in
WebClient
/AsyncWebClient
We've received many reports on the performance issue of the existing
files.upload
API (refer to #1191 #1165 for details). So, to cope with the problem, our platform team decided to unlock a new way to upload files to Slack via public APIs. To utilize the new approach, developers need to implement the following steps on their code side:WebClient#files_getUploadURLExternal()
method to receive a URL to use for each fileWebClient#files_completeUploadExternal()
method with the pairs of file ID and title to complete the whole process, plus share the files in a channelWebClient#files_info()
method for each file~~ UPDATE: Since v3.23.0, this API call is no longer requiredWe do understand that writing the above code requires many lines of code. Also, the existing
WebClient#files_upload()
users have to take a certain amount of time for migration. To mitigate the pain, we've added a wrapper method namedWebClient#files_upload_v2()
on the SDK side.Also, in addition to the performance improvements, another good news is that 3rd party apps can now upload multiple files at a time!
See the following code examples demonstrating how the wrapper method works:
~~When migrating to the v2 method, please note that the new method requires both
files:write
andfiles:read
scopes. If your existing apps have onlyfiles:write
scope for uploading files, you need to addfiles:read
to the scopes plus re-install the app to issue an updated token.~~ UPDATE: Since v3.23.0,files:read
scope is no longer required.Changes
v3.18.5
: version 3.18.5Compare Source
Changes
v3.18.4
: version 3.18.4Compare Source
Changes
v3.18.3
: version 3.18.3Compare Source
Changes
v3.18.2
: version 3.18.2Compare Source
Changes
v3.18.1
: version 3.18.1Compare Source
Changes
Document Changes
v3.18.0
: version 3.18.0Compare Source
Changes
v3.17.2
: version 3.17.2Compare Source
Changes
v3.17.1
: version 3.17.1Compare Source
Changes
v3.17.0
: version 3.17.0Compare Source
Changes
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.
This PR has been generated by Renovate Bot.