Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 9f72a59585 | |||
| 42e070e154 | |||
| 56211959fd | |||
| 63264242c3 | |||
| 95fadb2f72 | |||
| 602e2e867a |
@@ -1,3 +1,49 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 25 09:49:33 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
- update to 3.36.0
|
||||||
|
* add support for python 3.13
|
||||||
|
* add Asyncio SQLAlchemy support
|
||||||
|
* add channels param to files.upload v2 method
|
||||||
|
* support pathlike objects in upload util
|
||||||
|
* WebClient/AsyncWebClient expose logger property
|
||||||
|
* add support for elevate methods
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 30 19:53:08 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 3.33.2:
|
||||||
|
* Fix #1571 initial_value for RichTextInputElement should
|
||||||
|
also accept type RichTextBlock
|
||||||
|
* Switch canvases.* APIs to application/json format for
|
||||||
|
- update to 3.33.1:
|
||||||
|
* Enable WebClient#assistant_threads_setSuggestedPrompts to
|
||||||
|
skip title param - Thanks @seratch
|
||||||
|
- update to 3.33.0:
|
||||||
|
* #1563 Add assistant.threads.* APIs
|
||||||
|
* #1560 Fix RichTextElementParts.Date.timestamp to be an int -
|
||||||
|
- update to 3.32.0:
|
||||||
|
* feat: add support for `conversations.requestShared`
|
||||||
|
`approve`, `deny` & `list`
|
||||||
|
* feat: add interactivity_pointer as trigger_id alias to
|
||||||
|
views.* APIs
|
||||||
|
* feat: support all possible fields for
|
||||||
|
RichTextElementParts.Date
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Aug 6 04:12:57 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.31.0:
|
||||||
|
* feat: add new conversations.externalInvitePermissions.set API
|
||||||
|
* feat: add team.externalTeams.disconnect
|
||||||
|
* fix: redact bot_access_tokens from the debug logs of socket mode
|
||||||
|
* feat: add team.externalTeams.list
|
||||||
|
* Add canvases APIs and users.discoverableContacts.lookup API
|
||||||
|
* Added deprecation warnings to Steps from Apps methods
|
||||||
|
* Fix base url according to official documentation
|
||||||
|
* Fix AttributeError on SocketModeClient.is_connected (aiohttp) when
|
||||||
|
enabling debug-level logging
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 10 07:58:03 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Mon Jun 10 07:58:03 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-slack-sdk
|
# spec file for package python-slack-sdk
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: python-slack-sdk
|
Name: python-slack-sdk
|
||||||
Version: 3.27.2
|
Version: 3.36.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python SDKs for the Slack API
|
Summary: Python SDKs for the Slack API
|
||||||
License: MIT
|
License: MIT
|
||||||
@@ -35,6 +35,7 @@ BuildArch: noarch
|
|||||||
BuildRequires: %{python_module aiohttp}
|
BuildRequires: %{python_module aiohttp}
|
||||||
BuildRequires: %{python_module Flask}
|
BuildRequires: %{python_module Flask}
|
||||||
BuildRequires: %{python_module Werkzeug}
|
BuildRequires: %{python_module Werkzeug}
|
||||||
|
BuildRequires: %{python_module aiosqlite}
|
||||||
BuildRequires: %{python_module boto3}
|
BuildRequires: %{python_module boto3}
|
||||||
BuildRequires: %{python_module itsdangerous}
|
BuildRequires: %{python_module itsdangerous}
|
||||||
BuildRequires: %{python_module moto}
|
BuildRequires: %{python_module moto}
|
||||||
@@ -63,8 +64,11 @@ seamlessly when used together, too.
|
|||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
# Tests needs to be importable
|
||||||
|
export PYTHONPATH=$(pwd)
|
||||||
# No flask_sockets in Tumbleweed; TestRTMClient requires network
|
# No flask_sockets in Tumbleweed; TestRTMClient requires network
|
||||||
%pytest --ignore-glob '*/socket_mode/*' -k 'not TestRTMClient' tests
|
# test_issue_1441_mixing_user_and_bot_installations broken upstream
|
||||||
|
%pytest --ignore-glob '*/socket_mode/*' -k 'not (TestRTMClient or test_issue_1441_mixing_user_and_bot_installations)' tests
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.md
|
%doc README.md
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fa107940a406e606abb0829d44b2b7615b0224617c32132ccc6e28deb8f2061b
|
|
||||||
size 4166274
|
|
||||||
3
slack-sdk-3.36.0.tar.gz
Normal file
3
slack-sdk-3.36.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b87f33ab07dc899954134274ae8a4367269f6a6508a34f75d8a6a35c9353c512
|
||||||
|
size 4859987
|
||||||
Reference in New Issue
Block a user