Kazuhiro Sera
Kazuhiro Sera
Python 3.6 is already EOL-ed: >3.6 will receive [bugfix updates](https://devguide.python.org/devcycle/#maintenance-branches) approximately every 3 months for about 24 months. Sometime after the release of 3.7.0 final, a final 3.6 bugfix update...
We are refitting to use the v2 RTM client and still observe some stale Django connection issues. Ie, new DB connections are made for each message that gets processed (thread),...
Now that we have a built-in retry handler for rate limited errors in v3.9, retrying a request after getting rate-limited is much easier than before. * https://github.com/slackapi/python-slack-sdk/releases/tag/v3.9.0 * https://github.com/slackapi/python-slack-sdk/blob/v3.9.1/slack_sdk/http_retry/builtin_handlers.py#L52-L91 *...
As a few Socket Mode related tests started failing only in the GitHub Actions environment, I've disabled them by this commit: https://github.com/slackapi/python-slack-sdk/commit/75b554a5e9c746641aa1805fce0584e0577f378b We would like to get the tests back...
As mentioned at https://github.com/slackapi/bolt-js/issues/1550 , debugging the web-api client ca be hard as its debug-level does not provide sufficient information. When your app performs an `apps.connections.open` API call, the only...
If you pass an app-level token to `WebClient`'s `apps.event.authorizations.list` method call, it results in invalid_auth error code. A workaround is to pass the token to `WebClient` constructor instead. This fails...
### Description This issue is for the discussion about @raycharius's suggestions described at https://github.com/slackapi/node-slack-sdk/pull/1226 : >Also, I think there are some opportunities for refactoring that would make this package even...
The `message` argument in `app.message` listeners does not provide sufficient properties in TypeScript. >Property 'user' does not exist on type 'KnownEventFromType'. Property 'user' does not exist on type 'MessageChangedEvent'.ts(2339) A...
### Description We forgot to add the document section for the `customPropertiesExtractor`, which was added in v3.8.0 * https://github.com/slackapi/bolt-js/pull/1177 * https://github.com/slackapi/bolt-js/tree/main/examples/custom-properties ### What type of issue is this? (place an...
### Proposal As described at #463, `app.message(...)`'s behavior with the latest payloads is not intuitive for developers. It's surprising for developers to receive more events than the number of messages...