You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
3
3
*[#549](https://github.com/slack-ruby/slack-ruby-client/pull/549): Add group ID formatting support for message mentions - [@n0h0](https://github.com/n0h0).
4
4
*[#553](https://github.com/slack-ruby/slack-ruby-client/pull/553): Use `secure_compare` during signature verification - [@hieuk09](https://github.com/hieuk09).
5
+
*[#555](https://github.com/slack-ruby/slack-ruby-client/pull/555): Make page size in resolving IDs configurable - [@eizengan](https://github.com/eizengan).
user_agent | User-agent, defaults to _Slack Ruby Client/version_.
288
+
proxy | Optional HTTP proxy.
289
+
ca_path | Optional SSL certificates path.
290
+
ca_file | Optional SSL certificates file.
291
+
endpoint | Slack endpoint, default is _https://slack.com/api_.
292
+
logger | Optional `Logger` instance that logs HTTP requests.
293
+
timeout | Optional open/read timeout in seconds.
294
+
open_timeout | Optional connection open timeout in seconds.
295
+
default_page_size | Optional page size for paginated requests, default is _100_.
296
+
conversations_id_page_size | Optional page size for conversations_list requests made when calculating conversation id from a conversation name, default is _nil_, which will use the default_page_size.
297
+
users_id_page_size | Optional page size for users_list requests made when calculating user id from a user name, default is _nil_, which will use the default_page_size.
298
+
default_max_retries | Optional number of retries for paginated requests, default is _100_.
299
+
adapter | Optional HTTP adapter to use, defaults to `Faraday.default_adapter`.
298
300
299
301
You can also pass request options, including `timeout` and `open_timeout` into individual calls.
0 commit comments