slack-ruby-client 0.12.0 → 0.14.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.rubocop.yml +21 -9
- data/.rubocop_todo.yml +64 -56
- data/.travis.yml +5 -3
- data/CHANGELOG.md +90 -32
- data/Dangerfile +2 -0
- data/Gemfile +10 -4
- data/LICENSE.md +1 -1
- data/README.md +176 -32
- data/Rakefile +2 -1
- data/UPGRADING.md +27 -1
- data/bin/commands.rb +21 -0
- data/bin/commands/admin_apps.rb +27 -0
- data/bin/commands/admin_apps_approved.rb +17 -0
- data/bin/commands/admin_apps_requests.rb +16 -0
- data/bin/commands/admin_apps_restricted.rb +17 -0
- data/bin/commands/admin_conversations.rb +17 -0
- data/bin/commands/admin_emoji.rb +54 -0
- data/bin/commands/admin_inviteRequests.rb +36 -0
- data/bin/commands/admin_inviteRequests_approved.rb +16 -0
- data/bin/commands/admin_inviteRequests_denied.rb +16 -0
- data/bin/commands/admin_teams.rb +27 -0
- data/bin/commands/admin_teams_admins.rb +16 -0
- data/bin/commands/admin_teams_owners.rb +16 -0
- data/bin/commands/admin_teams_settings.rb +64 -0
- data/bin/commands/admin_users.rb +97 -0
- data/bin/commands/admin_users_session.rb +16 -0
- data/bin/commands/api.rb +1 -0
- data/bin/commands/apps.rb +15 -0
- data/bin/commands/apps_permissions.rb +1 -0
- data/bin/commands/apps_permissions_resources.rb +1 -0
- data/bin/commands/apps_permissions_scopes.rb +1 -0
- data/bin/commands/apps_permissions_users.rb +1 -0
- data/bin/commands/auth.rb +1 -0
- data/bin/commands/bots.rb +1 -0
- data/bin/commands/channels.rb +3 -1
- data/bin/commands/chat.rb +48 -9
- data/bin/commands/chat_scheduledMessages.rb +18 -0
- data/bin/commands/conversations.rb +4 -2
- data/bin/commands/dialog.rb +1 -0
- data/bin/commands/dnd.rb +4 -3
- data/bin/commands/emoji.rb +1 -0
- data/bin/commands/files.rb +4 -14
- data/bin/commands/files_comments.rb +1 -21
- data/bin/commands/files_remote.rb +78 -0
- data/bin/commands/groups.rb +2 -1
- data/bin/commands/im.rb +2 -1
- data/bin/commands/migration.rb +1 -0
- data/bin/commands/mpim.rb +2 -1
- data/bin/commands/oauth.rb +2 -1
- data/bin/commands/oauth_v2.rb +17 -0
- data/bin/commands/pins.rb +1 -2
- data/bin/commands/reactions.rb +2 -3
- data/bin/commands/reminders.rb +1 -0
- data/bin/commands/rtm.rb +1 -0
- data/bin/commands/search.rb +2 -1
- data/bin/commands/stars.rb +1 -0
- data/bin/commands/team.rb +2 -0
- data/bin/commands/team_profile.rb +1 -0
- data/bin/commands/usergroups.rb +2 -1
- data/bin/commands/usergroups_users.rb +1 -0
- data/bin/commands/users.rb +2 -2
- data/bin/commands/users_admin.rb +1 -0
- data/bin/commands/users_prefs.rb +1 -0
- data/bin/commands/users_profile.rb +1 -0
- data/bin/commands/views.rb +48 -0
- data/bin/slack +2 -3
- data/examples/hi_real_time/Gemfile +1 -0
- data/examples/hi_real_time/hi.rb +7 -3
- data/examples/hi_real_time_and_web/Gemfile +1 -0
- data/examples/hi_real_time_and_web/hi.rb +7 -3
- data/examples/hi_real_time_async_async/Gemfile +7 -0
- data/examples/hi_real_time_async_async/Procfile +2 -0
- data/examples/hi_real_time_async_async/hi.rb +41 -0
- data/examples/hi_real_time_async_celluloid/Gemfile +1 -0
- data/examples/hi_real_time_async_celluloid/hi.rb +7 -3
- data/examples/hi_real_time_async_eventmachine/Gemfile +1 -0
- data/examples/hi_real_time_async_eventmachine/hi.rb +7 -3
- data/examples/hi_web/Gemfile +1 -0
- data/examples/hi_web/hi.rb +1 -0
- data/examples/new_ticket/Gemfile +1 -0
- data/examples/new_ticket/new_ticket.rb +1 -0
- data/lib/slack-ruby-client.rb +8 -2
- data/lib/slack.rb +1 -0
- data/lib/slack/config.rb +1 -0
- data/lib/slack/events/config.rb +32 -0
- data/lib/slack/events/request.rb +66 -0
- data/lib/slack/logger.rb +6 -5
- data/lib/slack/messages/formatting.rb +1 -0
- data/lib/slack/messages/message.rb +1 -0
- data/lib/slack/real_time/api/message.rb +3 -1
- data/lib/slack/real_time/api/message_id.rb +1 -0
- data/lib/slack/real_time/api/ping.rb +5 -2
- data/lib/slack/real_time/api/typing.rb +3 -1
- data/lib/slack/real_time/client.rb +97 -28
- data/lib/slack/real_time/concurrency.rb +2 -0
- data/lib/slack/real_time/concurrency/async.rb +142 -0
- data/lib/slack/real_time/concurrency/celluloid.rb +33 -9
- data/lib/slack/real_time/concurrency/eventmachine.rb +32 -7
- data/lib/slack/real_time/config.rb +7 -2
- data/lib/slack/real_time/models.rb +1 -0
- data/lib/slack/real_time/models/base.rb +1 -0
- data/lib/slack/real_time/models/bot.rb +1 -0
- data/lib/slack/real_time/models/channel.rb +1 -0
- data/lib/slack/real_time/models/group.rb +1 -0
- data/lib/slack/real_time/models/im.rb +1 -0
- data/lib/slack/real_time/models/team.rb +1 -0
- data/lib/slack/real_time/models/user.rb +1 -0
- data/lib/slack/real_time/socket.rb +42 -13
- data/lib/slack/real_time/stores.rb +1 -0
- data/lib/slack/real_time/stores/base.rb +1 -0
- data/lib/slack/real_time/stores/starter.rb +11 -0
- data/lib/slack/real_time/stores/store.rb +28 -25
- data/lib/slack/version.rb +2 -1
- data/lib/slack/web/api/endpoints.rb +41 -0
- data/lib/slack/web/api/endpoints/admin_apps.rb +42 -0
- data/lib/slack/web/api/endpoints/admin_apps_approved.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_apps_requests.rb +33 -0
- data/lib/slack/web/api/endpoints/admin_apps_restricted.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_conversations.rb +30 -0
- data/lib/slack/web/api/endpoints/admin_emoji.rb +88 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests.rb +61 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests_approved.rb +33 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests_denied.rb +33 -0
- data/lib/slack/web/api/endpoints/admin_teams.rb +50 -0
- data/lib/slack/web/api/endpoints/admin_teams_admins.rb +34 -0
- data/lib/slack/web/api/endpoints/admin_teams_owners.rb +34 -0
- data/lib/slack/web/api/endpoints/admin_teams_settings.rb +99 -0
- data/lib/slack/web/api/endpoints/admin_users.rb +163 -0
- data/lib/slack/web/api/endpoints/admin_users_session.rb +28 -0
- data/lib/slack/web/api/endpoints/api.rb +1 -0
- data/lib/slack/web/api/endpoints/apps.rb +27 -0
- data/lib/slack/web/api/endpoints/apps_permissions.rb +1 -0
- data/lib/slack/web/api/endpoints/apps_permissions_resources.rb +1 -0
- data/lib/slack/web/api/endpoints/apps_permissions_scopes.rb +1 -0
- data/lib/slack/web/api/endpoints/apps_permissions_users.rb +1 -0
- data/lib/slack/web/api/endpoints/auth.rb +1 -0
- data/lib/slack/web/api/endpoints/bots.rb +1 -0
- data/lib/slack/web/api/endpoints/channels.rb +3 -0
- data/lib/slack/web/api/endpoints/chat.rb +99 -12
- data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +38 -0
- data/lib/slack/web/api/endpoints/conversations.rb +4 -1
- data/lib/slack/web/api/endpoints/dialog.rb +1 -0
- data/lib/slack/web/api/endpoints/dnd.rb +3 -1
- data/lib/slack/web/api/endpoints/emoji.rb +1 -0
- data/lib/slack/web/api/endpoints/files.rb +4 -13
- data/lib/slack/web/api/endpoints/files_comments.rb +1 -33
- data/lib/slack/web/api/endpoints/files_remote.rb +127 -0
- data/lib/slack/web/api/endpoints/groups.rb +1 -0
- data/lib/slack/web/api/endpoints/im.rb +1 -0
- data/lib/slack/web/api/endpoints/migration.rb +1 -0
- data/lib/slack/web/api/endpoints/mpim.rb +1 -0
- data/lib/slack/web/api/endpoints/oauth.rb +2 -1
- data/lib/slack/web/api/endpoints/oauth_v2.rb +30 -0
- data/lib/slack/web/api/endpoints/pins.rb +2 -4
- data/lib/slack/web/api/endpoints/reactions.rb +5 -6
- data/lib/slack/web/api/endpoints/reminders.rb +1 -0
- data/lib/slack/web/api/endpoints/rtm.rb +1 -0
- data/lib/slack/web/api/endpoints/search.rb +1 -0
- data/lib/slack/web/api/endpoints/stars.rb +1 -0
- data/lib/slack/web/api/endpoints/team.rb +3 -0
- data/lib/slack/web/api/endpoints/team_profile.rb +1 -0
- data/lib/slack/web/api/endpoints/usergroups.rb +1 -0
- data/lib/slack/web/api/endpoints/usergroups_users.rb +1 -0
- data/lib/slack/web/api/endpoints/users.rb +1 -2
- data/lib/slack/web/api/endpoints/users_admin.rb +1 -0
- data/lib/slack/web/api/endpoints/users_prefs.rb +1 -0
- data/lib/slack/web/api/endpoints/users_profile.rb +1 -0
- data/lib/slack/web/api/endpoints/views.rb +97 -0
- data/lib/slack/web/api/error.rb +1 -0
- data/lib/slack/web/api/errors.rb +566 -0
- data/lib/slack/web/api/errors/slack_error.rb +14 -1
- data/lib/slack/web/api/errors/too_many_requests_error.rb +1 -0
- data/lib/slack/web/api/mixins.rb +1 -0
- data/lib/slack/web/api/mixins/channels.id.rb +1 -0
- data/lib/slack/web/api/mixins/groups.id.rb +1 -0
- data/lib/slack/web/api/mixins/ids.id.rb +4 -1
- data/lib/slack/web/api/mixins/users.id.rb +1 -0
- data/lib/slack/web/api/mixins/users.search.rb +1 -0
- data/lib/slack/web/api/patches/chat.5.postEphemeral-text-or-attachments.patch +5 -3
- data/lib/slack/web/api/patches/chat.6.block-kit-support.patch +69 -0
- data/lib/slack/web/api/patches/views.1.view-json.patch +40 -0
- data/lib/slack/web/api/patches/views.1.views-published.patch +16 -0
- data/lib/slack/web/api/templates/command.erb +1 -0
- data/lib/slack/web/api/templates/commands.erb +1 -0
- data/lib/slack/web/api/templates/endpoints.erb +1 -0
- data/lib/slack/web/api/templates/errors.erb +20 -0
- data/lib/slack/web/api/templates/method.erb +1 -0
- data/lib/slack/web/api/templates/method_spec.erb +1 -0
- data/lib/slack/web/client.rb +2 -1
- data/lib/slack/web/config.rb +1 -0
- data/lib/slack/web/faraday/connection.rb +1 -0
- data/lib/slack/web/faraday/request.rb +1 -0
- data/lib/slack/web/faraday/response/raise_error.rb +10 -6
- data/lib/slack/web/pagination/cursor.rb +4 -0
- data/lib/slack_ruby_client.rb +1 -0
- data/lib/tasks/git.rake +1 -0
- data/lib/tasks/real_time.rake +15 -5
- data/lib/tasks/update.rake +1 -0
- data/lib/tasks/web.rake +28 -7
- data/screenshots/create-app.png +0 -0
- data/slack-ruby-client.gemspec +6 -2
- data/spec/fixtures/slack/web/views_open_error.yml +76 -0
- data/spec/integration/integration_spec.rb +116 -48
- data/spec/slack/config_spec.rb +2 -0
- data/spec/slack/events/config_spec.rb +33 -0
- data/spec/slack/events/request_spec.rb +179 -0
- data/spec/slack/messages/formatting_spec.rb +25 -13
- data/spec/slack/real_time/api/message_spec.rb +6 -1
- data/spec/slack/real_time/api/ping_spec.rb +2 -0
- data/spec/slack/real_time/api/typing_spec.rb +5 -1
- data/spec/slack/real_time/client_spec.rb +212 -31
- data/spec/slack/real_time/concurrency/celluloid_spec.rb +15 -5
- data/spec/slack/real_time/concurrency/eventmachine_spec.rb +11 -1
- data/spec/slack/real_time/concurrency/it_behaves_like_a_realtime_socket.rb +2 -0
- data/spec/slack/real_time/event_handlers/bot_spec.rb +2 -1
- data/spec/slack/real_time/event_handlers/channel_spec.rb +9 -6
- data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +2 -1
- data/spec/slack/real_time/event_handlers/group_spec.rb +5 -4
- data/spec/slack/real_time/event_handlers/im_spec.rb +4 -3
- data/spec/slack/real_time/event_handlers/team_spec.rb +3 -1
- data/spec/slack/real_time/event_handlers/user_spec.rb +1 -0
- data/spec/slack/real_time/rtm_connect_spec.rb +1 -0
- data/spec/slack/real_time/rtm_start_spec.rb +1 -0
- data/spec/slack/real_time/store_spec.rb +2 -1
- data/spec/slack/slack_spec.rb +37 -5
- data/spec/slack/version_spec.rb +2 -1
- data/spec/slack/web/api/endpoints/admin_apps_approved_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_requests_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_restricted_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_conversations_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_emoji_spec.rb +37 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_approved_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_denied_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_spec.rb +18 -0
- data/spec/slack/web/api/endpoints/admin_teams_admins_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_teams_owners_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_teams_settings_spec.rb +53 -0
- data/spec/slack/web/api/endpoints/admin_teams_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/admin_users_session_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_users_spec.rb +75 -0
- data/spec/slack/web/api/endpoints/api_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_permissions_resources_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_permissions_scopes_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +3 -2
- data/spec/slack/web/api/endpoints/apps_permissions_users_spec.rb +4 -3
- data/spec/slack/web/api/endpoints/apps_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/bots_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/chat_scheduledMessages_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/conversations_spec.rb +2 -1
- data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +5 -1
- data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +2 -0
- data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +112 -36
- data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +12 -4
- data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +2 -0
- data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +6 -1
- data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +95 -0
- data/spec/slack/web/api/endpoints/dnd_spec.rb +6 -0
- data/spec/slack/web/api/endpoints/emoji_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/files_comments_spec.rb +1 -19
- data/spec/slack/web/api/endpoints/files_remote_spec.rb +24 -0
- data/spec/slack/web/api/endpoints/files_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/im_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/migration_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/mpim_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/oauth_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/pins_spec.rb +5 -1
- data/spec/slack/web/api/endpoints/reactions_spec.rb +8 -1
- data/spec/slack/web/api/endpoints/reminders_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/rtm_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/search_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/stars_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/team_profile_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/team_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/usergroups_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_admin_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_prefs_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_profile_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/views_spec.rb +29 -0
- data/spec/slack/web/api/error_spec.rb +4 -2
- data/spec/slack/web/api/errors/service_unavailable_spec.rb +6 -3
- data/spec/slack/web/api/errors/slack_error_spec.rb +26 -2
- data/spec/slack/web/api/mixins/channels_spec.rb +17 -7
- data/spec/slack/web/api/mixins/groups_spec.rb +17 -7
- data/spec/slack/web/api/mixins/users_spec.rb +17 -8
- data/spec/slack/web/api/pagination/cursor_spec.rb +40 -10
- data/spec/slack/web/client_spec.rb +45 -18
- data/spec/slack/web/faraday/response/raise_error_spec.rb +41 -7
- data/spec/spec_helper.rb +8 -1
- data/spec/support/queue_with_timeout.rb +5 -4
- data/spec/support/real_time/concurrency/mock.rb +1 -0
- data/spec/support/real_time/connected_client.rb +9 -3
- data/spec/support/real_time/event.rb +1 -0
- data/spec/support/token.rb +1 -0
- data/spec/support/vcr.rb +1 -0
- metadata +149 -9
- data/screenshots/register-bot.png +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24883016f639f51e34aa4026ff203ef1cb6fa66abac9c0017d5653508f9169c7
|
|
4
|
+
data.tar.gz: 49bf4585f49dba526c764e018150ed9e884161c67529e442ef9e5df104d48345
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db889eac4fbc7effec2f2f8bd319523f4e3c646ad0be8b52e2221a444d79cca38bae6fed8d0b6aac100c4869f862f6cfddb4644407d305977ad8b2a3fc1da670
|
|
7
|
+
data.tar.gz: 636f316d2e9efba1f663ccf0691fcf715b4f6a16d80bb98d8e5676d5479d6536beaa9a5c4de0452319a166ef50f9c7e6cddf451e6898600b3a57897b862472d2
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
|
@@ -1,18 +1,30 @@
|
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
|
2
|
+
|
|
3
|
+
require:
|
|
4
|
+
- rubocop-performance
|
|
5
|
+
- rubocop-rspec
|
|
6
|
+
|
|
1
7
|
AllCops:
|
|
8
|
+
DisplayCopNames: true
|
|
2
9
|
Exclude:
|
|
10
|
+
- bin/**/*
|
|
3
11
|
- vendor/**/*
|
|
4
12
|
- lib/slack/web/api/slack-api-ref/**/*
|
|
5
|
-
|
|
6
|
-
|
|
13
|
+
- lib/slack/web/api/endpoints/* # Auto-generated
|
|
14
|
+
- lib/slack/web/api/errors.rb # Auto-generated
|
|
15
|
+
- spec/slack/web/api/endpoints/* # Auto-generated
|
|
16
|
+
Layout/EmptyLineAfterMagicComment:
|
|
7
17
|
Enabled: false
|
|
8
|
-
|
|
18
|
+
Metrics/BlockLength:
|
|
19
|
+
Max: 250
|
|
20
|
+
Metrics/ClassLength:
|
|
21
|
+
Max: 250
|
|
9
22
|
Metrics/LineLength:
|
|
10
|
-
Max:
|
|
11
|
-
|
|
23
|
+
Max: 100
|
|
12
24
|
Style/Documentation:
|
|
13
25
|
Enabled: false
|
|
14
|
-
|
|
15
|
-
Naming/MethodName:
|
|
26
|
+
Style/ModuleFunction:
|
|
16
27
|
Enabled: false
|
|
17
|
-
|
|
18
|
-
|
|
28
|
+
Naming/FileName:
|
|
29
|
+
Exclude:
|
|
30
|
+
- lib/slack-ruby-client.rb # Required to match gemspec name
|
data/.rubocop_todo.yml
CHANGED
|
@@ -1,86 +1,94 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on
|
|
3
|
+
# on 2019-12-23 15:50:03 -0500 using RuboCop version 0.73.0.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
|
8
8
|
|
|
9
|
-
# Offense count:
|
|
9
|
+
# Offense count: 3
|
|
10
|
+
# Configuration parameters: AllowComments.
|
|
10
11
|
Lint/HandleExceptions:
|
|
11
12
|
Exclude:
|
|
12
|
-
- 'lib/slack
|
|
13
|
+
- 'lib/slack/real_time/concurrency/async.rb'
|
|
13
14
|
- 'spec/slack/real_time/concurrency/celluloid_spec.rb'
|
|
14
15
|
- 'spec/slack/real_time/concurrency/eventmachine_spec.rb'
|
|
15
16
|
|
|
17
|
+
# Offense count: 10
|
|
18
|
+
Metrics/AbcSize:
|
|
19
|
+
Max: 39
|
|
20
|
+
|
|
16
21
|
# Offense count: 1
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
Naming/MemoizedInstanceVariableName:
|
|
20
|
-
Exclude:
|
|
21
|
-
- 'lib/slack/logger.rb'
|
|
22
|
+
Metrics/CyclomaticComplexity:
|
|
23
|
+
Max: 9
|
|
22
24
|
|
|
23
|
-
# Offense count:
|
|
24
|
-
# Configuration parameters:
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
Exclude:
|
|
28
|
-
- 'spec/support/queue_with_timeout.rb'
|
|
25
|
+
# Offense count: 14
|
|
26
|
+
# Configuration parameters: CountComments, ExcludedMethods.
|
|
27
|
+
Metrics/MethodLength:
|
|
28
|
+
Max: 32
|
|
29
29
|
|
|
30
30
|
# Offense count: 1
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
- 'lib/slack/real_time/client.rb'
|
|
31
|
+
Metrics/PerceivedComplexity:
|
|
32
|
+
Max: 9
|
|
34
33
|
|
|
35
|
-
# Offense count:
|
|
36
|
-
|
|
37
|
-
# SupportedStyles: inline, group
|
|
38
|
-
Style/AccessModifierDeclarations:
|
|
34
|
+
# Offense count: 1
|
|
35
|
+
RSpec/AnyInstance:
|
|
39
36
|
Exclude:
|
|
40
|
-
- '
|
|
41
|
-
- 'lib/slack/real_time/socket.rb'
|
|
37
|
+
- 'spec/slack/real_time/concurrency/celluloid_spec.rb'
|
|
42
38
|
|
|
43
|
-
# Offense count:
|
|
44
|
-
#
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
- 'slack-ruby-client.gemspec'
|
|
39
|
+
# Offense count: 70
|
|
40
|
+
# Configuration parameters: Prefixes.
|
|
41
|
+
# Prefixes: when, with, without
|
|
42
|
+
RSpec/ContextWording:
|
|
43
|
+
Enabled: false
|
|
49
44
|
|
|
50
|
-
# Offense count:
|
|
51
|
-
# Configuration parameters:
|
|
52
|
-
|
|
45
|
+
# Offense count: 64
|
|
46
|
+
# Configuration parameters: Max.
|
|
47
|
+
RSpec/ExampleLength:
|
|
53
48
|
Enabled: false
|
|
54
49
|
|
|
55
|
-
# Offense count:
|
|
56
|
-
# Configuration parameters:
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
- 'lib/slack/real_time/stores/store.rb'
|
|
60
|
-
- 'lib/slack/web/faraday/response/raise_error.rb'
|
|
50
|
+
# Offense count: 17
|
|
51
|
+
# Configuration parameters: CustomTransform, IgnoreMethods.
|
|
52
|
+
RSpec/FilePath:
|
|
53
|
+
Enabled: false
|
|
61
54
|
|
|
62
|
-
# Offense count:
|
|
63
|
-
|
|
55
|
+
# Offense count: 13
|
|
56
|
+
# Configuration parameters: AssignmentOnly.
|
|
57
|
+
RSpec/InstanceVariable:
|
|
64
58
|
Exclude:
|
|
65
|
-
- '
|
|
59
|
+
- 'spec/integration/integration_spec.rb'
|
|
60
|
+
- 'spec/slack/real_time/client_spec.rb'
|
|
61
|
+
- 'spec/slack/slack_spec.rb'
|
|
62
|
+
|
|
63
|
+
# Offense count: 75
|
|
64
|
+
# Configuration parameters: .
|
|
65
|
+
# SupportedStyles: have_received, receive
|
|
66
|
+
RSpec/MessageSpies:
|
|
67
|
+
EnforcedStyle: receive
|
|
68
|
+
|
|
69
|
+
# Offense count: 93
|
|
70
|
+
# Configuration parameters: AggregateFailuresByDefault.
|
|
71
|
+
RSpec/MultipleExpectations:
|
|
72
|
+
Max: 5
|
|
73
|
+
|
|
74
|
+
# Offense count: 34
|
|
75
|
+
RSpec/NestedGroups:
|
|
76
|
+
Max: 6
|
|
66
77
|
|
|
67
78
|
# Offense count: 3
|
|
68
|
-
|
|
69
|
-
# Configuration parameters: EnforcedStyle.
|
|
70
|
-
# SupportedStyles: module_function, extend_self
|
|
71
|
-
Style/ModuleFunction:
|
|
79
|
+
RSpec/SubjectStub:
|
|
72
80
|
Exclude:
|
|
73
|
-
- '
|
|
74
|
-
- '
|
|
75
|
-
- '
|
|
81
|
+
- 'spec/slack/web/api/mixins/channels_spec.rb'
|
|
82
|
+
- 'spec/slack/web/api/mixins/groups_spec.rb'
|
|
83
|
+
- 'spec/slack/web/api/mixins/users_spec.rb'
|
|
76
84
|
|
|
77
|
-
# Offense count:
|
|
78
|
-
|
|
85
|
+
# Offense count: 16
|
|
86
|
+
# Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
|
|
87
|
+
RSpec/VerifiedDoubles:
|
|
79
88
|
Exclude:
|
|
89
|
+
- 'spec/slack/events/request_spec.rb'
|
|
90
|
+
- 'spec/slack/real_time/client_spec.rb'
|
|
91
|
+
- 'spec/slack/real_time/concurrency/celluloid_spec.rb'
|
|
92
|
+
- 'spec/slack/real_time/concurrency/eventmachine_spec.rb'
|
|
93
|
+
- 'spec/slack/web/faraday/response/raise_error_spec.rb'
|
|
80
94
|
- 'spec/support/real_time/connected_client.rb'
|
|
81
|
-
|
|
82
|
-
# Offense count: 1
|
|
83
|
-
# Cop supports --auto-correct.
|
|
84
|
-
Style/RandomWithOffset:
|
|
85
|
-
Exclude:
|
|
86
|
-
- 'spec/integration/integration_spec.rb'
|
data/.travis.yml
CHANGED
|
@@ -3,9 +3,9 @@ language: ruby
|
|
|
3
3
|
cache: bundler
|
|
4
4
|
|
|
5
5
|
rvm:
|
|
6
|
-
- 2.
|
|
7
|
-
- 2.3
|
|
8
|
-
- 2.
|
|
6
|
+
- 2.3.8
|
|
7
|
+
- 2.5.3
|
|
8
|
+
- 2.6.0
|
|
9
9
|
- ruby-head
|
|
10
10
|
- jruby-head
|
|
11
11
|
|
|
@@ -18,6 +18,8 @@ matrix:
|
|
|
18
18
|
env: CONCURRENCY=celluloid-io
|
|
19
19
|
- rvm: 2.4.1
|
|
20
20
|
env: CONCURRENCY=faye-websocket
|
|
21
|
+
- rvm: 2.5.3
|
|
22
|
+
env: CONCURRENCY=async-websocket
|
|
21
23
|
allow_failures:
|
|
22
24
|
- rvm: ruby-head
|
|
23
25
|
- rvm: jruby-head
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,62 @@
|
|
|
1
|
-
### 0.
|
|
1
|
+
### 0.14.6 (2020/3/28)
|
|
2
|
+
|
|
3
|
+
* [#305](https://github.com/slack-ruby/slack-ruby-client/pull/305): Added `admin_inviteRequests_approve`, `admin_inviteRequests_deny`, `admin_inviteRequests_list`, `admin_inviteRequests_approved_list`, `admin_inviteRequests_denied_list`, `admin_teams_create`, `admin_teams_list`, `admin_teams_admins_list`, `admin_teams_owners_list`, `admin_teams_settings`, `admin_teams_settings_setIcon`, `admin_teams_settings_setName`, `admin_teams_settings_setDescription`, `admin_users_assign`, `admin_users_invite`, `admin_users_remove`, `admin_users_setAdmin`, `admin_users_setOwner` and `admin_users_setRegular` endpoints - [@manuelmeurer](https://github.com/manuelmeurer).
|
|
4
|
+
* [#311](https://github.com/slack-ruby/slack-ruby-client/pull/311): Made Web API `response_metadata` more accessible in errors - [@jmanian](https://github.com/jmanian).
|
|
5
|
+
* [#312](https://github.com/slack-ruby/slack-ruby-client/pull/312): Added specific error classes for Web API - [@jmanian](https://github.com/jmanian).
|
|
6
|
+
* [#313](https://github.com/slack-ruby/slack-ruby-client/pull/313): Added `admin_teams_settings_info`, `admin_users_list`, `admin_users_setExpiration`, `admin_apps_approved_list`, `admin_apps_restricted_list`, `admin_conversations_setTeams`, `admin_emoji_add`, `admin_emoji_addAlias`, `admin_emoji_list`, `admin_emoji_remove` and `admin_emoji_rename` endpoints - [@dblock](https://github.com/dblock).
|
|
7
|
+
|
|
8
|
+
### 0.14.5 (2019/12/23)
|
|
9
|
+
|
|
10
|
+
* [#293](https://github.com/slack-ruby/slack-ruby-client/pull/293): Rubocop auto-correct and comprehensive todo - [@jcraigk](https://github.com/jcraigk).
|
|
11
|
+
* [#297](https://github.com/slack-ruby/slack-ruby-client/pull/297): Various Rubocop fixes - [@jcraigk](https://github.com/jcraigk).
|
|
12
|
+
* [#298](https://github.com/slack-ruby/slack-ruby-client/pull/298): Added `admin_apps`, `admin_app_requests` and `views` endpoints - [@jmanian](https://github.com/jmanian).
|
|
13
|
+
* [#303](https://github.com/slack-ruby/slack-ruby-client/pull/303): Added `oauth_v2_access` and `views_publish` endpoints - [@jwright](https://github.com/jwright).
|
|
14
|
+
* [#309](https://github.com/slack-ruby/slack-ruby-client/pull/309): Stop ping on `inactive_account` and `invalid_auth` - [@dblock](https://github.com/dblock).
|
|
15
|
+
|
|
16
|
+
### 0.14.4 (2019/7/28)
|
|
17
|
+
|
|
18
|
+
* [#289](https://github.com/slack-ruby/slack-ruby-client/pull/289): Fix reconnects when ping timers under/overshoot - [@georgyangelov](https://github.com/georgyangelov).
|
|
19
|
+
* [#290](https://github.com/slack-ruby/slack-ruby-client/pull/290): Expose Slack::RealTime::Client.logger accessor publicly - [@jcraigk](https://github.com/jcraigk).
|
|
20
|
+
|
|
21
|
+
### 0.14.3 (2019/7/23)
|
|
22
|
+
|
|
23
|
+
* [#279](https://github.com/slack-ruby/slack-ruby-client/pull/279): Prevent ping worker from dying on unexpected errors - [@dblock](https://github.com/dblock).
|
|
24
|
+
* [#281](https://github.com/slack-ruby/slack-ruby-client/pull/281): Added `admin_users_session_reset` to Web API - [@dblock](https://github.com/dblock).
|
|
25
|
+
* [#283](https://github.com/slack-ruby/slack-ruby-client/pull/283): Fail when used with incompatible async-websocket > 0.8.0 - [@dblock](https://github.com/dblock).
|
|
26
|
+
* [#284](https://github.com/slack-ruby/slack-ruby-client/pull/284): Include team id, name and domain in log output - [@dblock](https://github.com/dblock).
|
|
27
|
+
|
|
28
|
+
### 0.14.2 (2019/4/12)
|
|
29
|
+
|
|
30
|
+
* [#256](https://github.com/slack-ruby/slack-ruby-client/pull/256): Added support for specifying signing secrets on a per-request basis via optional parameters to the `Slack::Events::Request` constructor - [@gabrielmdeal](https://github.com/gabrielmdeal).
|
|
31
|
+
* [#257](https://github.com/slack-ruby/slack-ruby-client/pull/257), [#262](https://github.com/slack-ruby/slack-ruby-client/pull/262): Fixed occasional failures to reconnect - [@ioquatix](https://github.com/ioquatix), [@dblock](https://github.com/dblock).
|
|
32
|
+
* [#264](https://github.com/slack-ruby/slack-ruby-client/pull/264): Added `chat_scheduleMessage`, `chat_deleteScheduledMessage` and `chat_scheduledMessages_list` - [@dblock](https://github.com/dblock).
|
|
33
|
+
* [#264](https://github.com/slack-ruby/slack-ruby-client/pull/264): Removed `files_comments_add` and `files_comments_edit` - [@dblock](https://github.com/dblock).
|
|
34
|
+
|
|
35
|
+
### 0.14.1 (2019/2/26)
|
|
36
|
+
|
|
37
|
+
* [#254](https://github.com/slack-ruby/slack-ruby-client/issues/254): Fix: celluloid infinite reconnect loop - [@dblock](https://github.com/dblock).
|
|
38
|
+
|
|
39
|
+
### 0.14.0 (2019/2/25)
|
|
40
|
+
|
|
41
|
+
* [#238](https://github.com/slack-ruby/slack-ruby-client/issues/238): Added `Slack::Events::Request#verify!` to check whether an event request is coming from Slack - [@dblock](https://github.com/dblock).
|
|
42
|
+
* [#226](https://github.com/slack-ruby/slack-ruby-client/pull/226), [#232](https://github.com/slack-ruby/slack-ruby-client/pull/232), [#236](https://github.com/slack-ruby/slack-ruby-client/pull/236), [#234](https://github.com/slack-ruby/slack-ruby-client/pull/234): Added periodic ping that reconnects on failure - [@RodneyU215](https://github.com/RodneyU215), [@dblock](https://github.com/dblock), [@ioquatix](https://github.com/ioquatix).
|
|
43
|
+
* [#242](https://github.com/slack-ruby/slack-ruby-client/pull/242): Added `thread_ts` option to `chat_postEphemeral` - [@dblock](https://github.com/dblock).
|
|
44
|
+
* [#242](https://github.com/slack-ruby/slack-ruby-client/pull/242): Added `apps_uninstall` to Web API - [@dblock](https://github.com/dblock).
|
|
45
|
+
* [#244](https://github.com/slack-ruby/slack-ruby-client/pull/244): Implementing #restart for the celluloid socket class - [@RodneyU215](https://github.com/RodneyU215).
|
|
46
|
+
* [#246](https://github.com/slack-ruby/slack-ruby-client/pull/246): Added TOC to README and danger-toc - [@dblock](https://github.com/dblock).
|
|
47
|
+
* [#253](https://github.com/slack-ruby/slack-ruby-client/pull/253): Support for Block Kit - [@JrmKrb](https://github.com/JrmKrb).
|
|
48
|
+
|
|
49
|
+
### 0.13.1 (2018/9/30)
|
|
50
|
+
|
|
51
|
+
* [#228](https://github.com/slack-ruby/slack-ruby-client/pull/228): Replace `Thread` with `Actor` in Celluloid async support - [@dblock](https://github.com/dblock).
|
|
52
|
+
|
|
53
|
+
### 0.13.0 (2018/9/8)
|
|
54
|
+
|
|
55
|
+
* [#219](https://github.com/slack-ruby/slack-ruby-client/pull/219): Added support for `async-websocket` - [@dblock](https://github.com/dblock), [@ioquatix](https://github.com/ioquatix).
|
|
56
|
+
* [#224](https://github.com/slack-ruby/slack-ruby-client/pull/224): Celluloid async support now uses a thread per client - [@dblock](https://github.com/dblock).
|
|
57
|
+
* [#224](https://github.com/slack-ruby/slack-ruby-client/pull/224): Attempt to shutdown EventMachine if a reactor wasn't already running on start - [@dblock](https://github.com/dblock).
|
|
58
|
+
|
|
59
|
+
### 0.12.0 (2018/8/20)
|
|
2
60
|
|
|
3
61
|
* [#216](https://github.com/slack-ruby/slack-ruby-client/pull/216): Handle `Errno::ECONNRESET` and empty buffer reads with celluloid-io - [@dblock](https://github.com/dblock).
|
|
4
62
|
* [#215](https://github.com/slack-ruby/slack-ruby-client/pull/215): Web API `groups_list`, `files_info`, `mpim_list`, `reactions_list` and `stars_list` now support cursor pagination - [@hotwatermorning](https://github.com/hotwatermorning).
|
|
@@ -10,14 +68,14 @@
|
|
|
10
68
|
* [#217](https://github.com/slack-ruby/slack-ruby-client/pull/217): Upgraded RuboCop to 0.58.2 - [@dblock](https://github.com/dblock).
|
|
11
69
|
* [#217](https://github.com/slack-ruby/slack-ruby-client/pull/217): No longer tested with Ruby 2.1, added 2.5 - [@dblock](https://github.com/dblock).
|
|
12
70
|
|
|
13
|
-
### 0.11.1 (1/23
|
|
71
|
+
### 0.11.1 (2018/1/23)
|
|
14
72
|
|
|
15
73
|
* [#187](https://github.com/slack-ruby/slack-ruby-client/pull/187): Concatenate error message when multiple errors present - [@chrislopresto](https://github.com/chrislopresto).
|
|
16
74
|
* [#188](https://github.com/slack-ruby/slack-ruby-client/pull/188): Fixed `NoMethodError` when Slack is unavailable - [@sonicdoe](https://github.com/sonicdoe).
|
|
17
75
|
* [#196](https://github.com/slack-ruby/slack-ruby-client/pull/196): Added `users_lookupByEmail` - [@manuelmeurer](https://github.com/manuelmeurer).
|
|
18
76
|
* [#185](https://github.com/slack-ruby/slack-ruby-client/pull/185): Calling undocumented endpoints will now produce a warning - [@aviflombaum](https://github.com/aviflombaum).
|
|
19
77
|
|
|
20
|
-
### 0.11.0 (11/25
|
|
78
|
+
### 0.11.0 (2017/11/25)
|
|
21
79
|
|
|
22
80
|
* [#173](https://github.com/slack-ruby/slack-ruby-client/issues/173): Added dialog support - [@alexagranov](https://github.com/alexagranov).
|
|
23
81
|
* [#176](https://github.com/slack-ruby/slack-ruby-client/issues/176): Drop dependency on `json` gem - [@seuros](https://github.com/seuros).
|
|
@@ -26,7 +84,7 @@
|
|
|
26
84
|
* [#181](https://github.com/slack-ruby/slack-ruby-client/pull/181): Added `chat_getPermalink`, `migration_exchange` - [@dblock](https://github.com/dblock).
|
|
27
85
|
* [#182](https://github.com/slack-ruby/slack-ruby-client/pull/182): Added undocumented methods support with `channels_delete`, `chat_command`, `files_edit`, `files_share`, `users_admin_invite`, `users_admin_setInactive` and `users_prefs_get` - [@dblock](https://github.com/dblock).
|
|
28
86
|
|
|
29
|
-
### 0.10.0 (9/19
|
|
87
|
+
### 0.10.0 (2017/9/19)
|
|
30
88
|
|
|
31
89
|
* [#169](https://github.com/slack-ruby/slack-ruby-client/pull/169): Added [Conversations API](https://api.slack.com/docs/conversations-api) - [@jmanian](https://github.com/jmanian).
|
|
32
90
|
* [#169](https://github.com/slack-ruby/slack-ruby-client/pull/169): Added `include_locale` parameter to several methods (`channels_info`, `groups_info`, `im_open`, `rtm_start`, `users_info`, `users_list`) - [@jmanian](https://github.com/jmanian).
|
|
@@ -37,25 +95,25 @@
|
|
|
37
95
|
* [#162](https://github.com/slack-ruby/slack-ruby-client/pull/162): Gracefully close websocket on `Errno::EPIPE` - [@johanoskarsson](https://github.com/johanoskarsson).
|
|
38
96
|
* [#172](https://github.com/slack-ruby/slack-ruby-client/pull/172): Use `rtm.start` when store is a subclass of `Slack::RealTime::Stores::Store` (default) - [@kstole](https://github.com/kstole).
|
|
39
97
|
|
|
40
|
-
### 0.9.1 (8/24
|
|
98
|
+
### 0.9.1 (2017/8/24)
|
|
41
99
|
|
|
42
100
|
* [#158](https://github.com/slack-ruby/slack-ruby-client/issues/158): Updated to latest slack-api-ref; Updated chat.3.update patch to reflect argument reordering; Added chat.4.postEphemeral patch to apply the attachments JSON fix (whitespace last line of diff matters! ;-) - [@alexagranov](https://github.com/alexagranov).
|
|
43
101
|
|
|
44
|
-
### 0.9.0 (8/6
|
|
102
|
+
### 0.9.0 (2017/8/6)
|
|
45
103
|
|
|
46
104
|
* [#146](https://github.com/slack-ruby/slack-ruby-client/issues/146): Fix: `undefined method running?` and `ThreadError: Target thread must not be current thread` with `Celluloid::IO` - [@dblock](https://github.com/dblock).
|
|
47
105
|
* [#145](https://github.com/slack-ruby/slack-ruby-client/pull/145): Automatically select `rtm_connect` vs. `rtm_start` - [@dblock](https://github.com/dblock).
|
|
48
106
|
* [#154](https://github.com/slack-ruby/slack-ruby-client/pull/154): Raise a dedicated error class with 429 responses - [@greggroth](https://github.com/greggroth).
|
|
49
107
|
* [#154](https://github.com/slack-ruby/slack-ruby-client/pull/154): Namespace error classes under `Slack::Web::Api::Errors` module - [@greggroth](https://github.com/greggroth).
|
|
50
108
|
|
|
51
|
-
### 0.8.1 (4/28
|
|
109
|
+
### 0.8.1 (2017/4/28)
|
|
52
110
|
|
|
53
111
|
* Added `exclude_members` option to `channels_list` Web API - [@dblock](https://github.com/dblock).
|
|
54
112
|
* Added `chat_unfurl` to Web API - [@dblock](https://github.com/dblock).
|
|
55
113
|
* Added `rtm_connect` to RTM API - [@dblock](https://github.com/dblock).
|
|
56
114
|
* Added `no_latest` support to `rm_start` RTM API - [@dblock](https://github.com/dblock).
|
|
57
115
|
|
|
58
|
-
### 0.8.0 (3/12
|
|
116
|
+
### 0.8.0 (2017/3/12)
|
|
59
117
|
|
|
60
118
|
* [#135](https://github.com/slack-ruby/slack-ruby-client/issues/135): Added `timeout` and `open_timeout` options to Web API - [@dblock](https://github.com/dblock).
|
|
61
119
|
* [#134](https://github.com/slack-ruby/slack-ruby-client/issues/134): Set `start_options[:request][:timeout]`, used with `rtm.start` in `Slack::RealTime::Client`, to 180 seconds - [@dblock](https://github.com/dblock).
|
|
@@ -64,11 +122,11 @@
|
|
|
64
122
|
* [#138](https://github.com/slack-ruby/slack-ruby-client/pull/138): Added `validate` option to `channels_create`, `channels_join`, `channels_rename`, `groups_create` and `groups_rename` Web APIs - [@dblock](https://github.com/dblock).
|
|
65
123
|
* [#138](https://github.com/slack-ruby/slack-ruby-client/pull/138): Removed `channel` option from `files_comments_add` Web API - [@dblock](https://github.com/dblock).
|
|
66
124
|
|
|
67
|
-
### 0.7.9 (2/9
|
|
125
|
+
### 0.7.9 (2017/2/9)
|
|
68
126
|
|
|
69
127
|
* [#132](https://github.com/slack-ruby/slack-ruby-client/issues/132): Fix: you are setting a key that conflicts with a built-in method Slack::Messages::Message#presence - [@dblock](https://github.com/dblock).
|
|
70
128
|
|
|
71
|
-
### 0.7.8 (1/23
|
|
129
|
+
### 0.7.8 (2017/1/23)
|
|
72
130
|
|
|
73
131
|
* [#127](https://github.com/slack-ruby/slack-ruby-client/pull/127): Added `thread_ts` and `reply_broadcast` options to `chat_postMessage` in Web API - [@dblock](https://github.com/dblock).
|
|
74
132
|
* [#127](https://github.com/slack-ruby/slack-ruby-client/pull/127): Added `channels_replies`, `groups_replies` and `im_replies` to Web API - [@dblock](https://github.com/dblock).
|
|
@@ -80,18 +138,18 @@
|
|
|
80
138
|
* [#81](https://github.com/slack-ruby/slack-ruby-client/pull/81): Require faraday 0.9.0 or newer - [@leppert](https://github.com/leppert).
|
|
81
139
|
* [#123](https://github.com/slack-ruby/slack-ruby-client/pull/123): Fix a warning about duplicate definitions - [@michaelherold](https://github.com/michaelherold).
|
|
82
140
|
|
|
83
|
-
### 0.7.7 (8/29
|
|
141
|
+
### 0.7.7 (2016/8/29)
|
|
84
142
|
|
|
85
143
|
* [#103](https://github.com/slack-ruby/slack-ruby-client/pull/103): Added Danger, PR linting - [@dblock](https://github.com/dblock).
|
|
86
144
|
* [#101](https://github.com/slack-ruby/slack-ruby-client/issues/101): Fix: protected method `close` called with EventMachine - [@dblock](https://github.com/dblock).
|
|
87
145
|
* [#104](https://github.com/slack-ruby/slack-ruby-client/issues/104): Fix: thread leak in `start_async` with Celluloid - [@dblock](https://github.com/dblock).
|
|
88
146
|
|
|
89
|
-
### 0.7.6 (8/7
|
|
147
|
+
### 0.7.6 (2016/8/7)
|
|
90
148
|
|
|
91
149
|
* Added `url_verification`, `message.mpim`, `message.im`, `message.groups` and `message.channels` RealTime events - [@dblock](https://github.com/dblock).
|
|
92
150
|
* The `im_open` method accepts `return_im` - [@dblock](https://github.com/dblock).
|
|
93
151
|
|
|
94
|
-
### 0.7.5 (6/27
|
|
152
|
+
### 0.7.5 (2016/6/27)
|
|
95
153
|
|
|
96
154
|
* Added `bots_info` to Web API - [@dblock](https://github.com/dblock).
|
|
97
155
|
* Added `team_profile_get` and `team_billableInfo` to Web API - [@dblock](https://github.com/dblock).
|
|
@@ -99,30 +157,30 @@
|
|
|
99
157
|
* Added `users_profile_get` and `users_profile_set` to Web API - [@dblock](https://github.com/dblock).
|
|
100
158
|
* The `stars_list` method no longer takes a user - [@dblock](https://github.com/dblock).
|
|
101
159
|
|
|
102
|
-
### 0.7.4 (5/28
|
|
160
|
+
### 0.7.4 (2016/5/28)
|
|
103
161
|
|
|
104
162
|
* [#93](https://github.com/slack-ruby/slack-ruby-client/pull/93): Fix: When using Celluloid concurrency, handle input from the TCP socket asynchronously from reading more - [@benzrf](https://github.com/benzrf).
|
|
105
163
|
* Added `auth_revoke` and `users_identity` to Web API - [@dblock](https://github.com/dblock).
|
|
106
164
|
* Added `channel` parameter to `files_comments_add` Web API - [@dblock](https://github.com/dblock).
|
|
107
165
|
|
|
108
|
-
### 0.7.3 (5/14
|
|
166
|
+
### 0.7.3 (2016/5/14)
|
|
109
167
|
|
|
110
168
|
* [#90](https://github.com/slack-ruby/slack-ruby-client/issues/90): Fix: Celluloid concurrency handles server-side connection closing - [@dblock](https://github.com/dblock).
|
|
111
169
|
|
|
112
|
-
### 0.7.2 (5/5
|
|
170
|
+
### 0.7.2 (2016/5/5)
|
|
113
171
|
|
|
114
172
|
* [#84](https://github.com/slack-ruby/slack-ruby-client/issues/84): Fix: Celluloid concurrency doesn't parallelize the connection setup - [@dblock](https://github.com/dblock).
|
|
115
173
|
|
|
116
|
-
### 0.7.1 (5/2
|
|
174
|
+
### 0.7.1 (2016/5/2)
|
|
117
175
|
|
|
118
176
|
* [#82](https://github.com/slack-ruby/slack-ruby-client/pull/82): Fix `usergroups.users.{list,update}` and `files.comments.{add,edit,delete}` APIs - [@masatomo](https://github.com/masatomo).
|
|
119
|
-
* [#73](https://github.com/slack-ruby/slack-ruby-client/issues/73):
|
|
120
|
-
* [#69](https://github.com/slack-ruby/slack-ruby-client/issues/69):
|
|
177
|
+
* [#73](https://github.com/slack-ruby/slack-ruby-client/issues/73): Added a `closed` event - [@rkadyb](https://github.com/rkadyb).
|
|
178
|
+
* [#69](https://github.com/slack-ruby/slack-ruby-client/issues/69): Added attachments support for `Slack::Web::Api::Endpoints::Chat.chat_update` - [@nicka](https://github.com/nicka).
|
|
121
179
|
* [#85](https://github.com/slack-ruby/slack-ruby-client/issues/85): Compatibility with WebMock 2.0 - [@dblock](https://github.com/dblock).
|
|
122
180
|
* Added `as_user` to `chat_delete` Web API - [@dblock](https://github.com/dblock).
|
|
123
181
|
* Added `reminders_add`, `reminders_complete`, `reminders_delete`, `reminders_info` and `reminders_list` to Web API - [@dblock](https://github.com/dblock).
|
|
124
182
|
|
|
125
|
-
### 0.7.0 (3/6
|
|
183
|
+
### 0.7.0 (2016/3/6)
|
|
126
184
|
|
|
127
185
|
* [#68](https://github.com/slack-ruby/slack-ruby-client/issues/68): The `Slack::RealTime::Config#store_class` is now globally configurable - [@dblock](https://github.com/dblock).
|
|
128
186
|
* [#67](https://github.com/slack-ruby/slack-ruby-client/pull/67): Make `logger` configurable and log HTTP requests and responses as well as RealTime events and socket data - [@mikz](https://github.com/mikz), [@dblock](https://github.com/dblock).
|
|
@@ -130,35 +188,35 @@
|
|
|
130
188
|
* Added `files_revokePublicURL` and `files_sharedPublicURL` to Web API - [@dblock](https://github.com/dblock).
|
|
131
189
|
* [#60](https://github.com/slack-ruby/slack-ruby-client/issues/60): Exceptions in event handlers and commands are no longer fatal - [@dblock](https://github.com/dblock).
|
|
132
190
|
|
|
133
|
-
### 0.6.0 (2/4
|
|
191
|
+
### 0.6.0 (2016/2/4)
|
|
134
192
|
|
|
135
193
|
* [#54](https://github.com/slack-ruby/slack-ruby-client/issues/54): RealTime client maintains a local store of team data for `client.self`, `team`, `users`, `channels`, `groups`, `ims` and `bots` data - [@dblock](https://github.com/dblock).
|
|
136
194
|
* [#56](https://github.com/slack-ruby/slack-ruby-client/issues/56): API responses in both Web and RealTime clients are now instances of [Slack::Messages::Message](lib/slack/messages/message), which provides method access to properties - [@dblock](https://github.com/dblock).
|
|
137
195
|
* [#57](https://github.com/slack-ruby/slack-ruby-client/issues/57): Configure arguments to pass to `rtm.start` via `config.start_options` - [@dblock](https://github.com/dblock).
|
|
138
196
|
* [#52](https://github.com/slack-ruby/slack-ruby-client/issues/52): Added `users_search` - [@dblock](https://github.com/dblock).
|
|
139
197
|
|
|
140
|
-
### 0.5.4 (1/23
|
|
198
|
+
### 0.5.4 (2016/1/23)
|
|
141
199
|
|
|
142
200
|
* [#45](https://github.com/slack-ruby/slack-ruby-client/issues/45): Added `channels_id`, `groups_id` and `users_id` - [@dblock](https://github.com/dblock).
|
|
143
201
|
* [#45](https://github.com/slack-ruby/slack-ruby-client/issues/45): Automatically lookup channel, group and user ID in Web API methods when Slack API doesn't accept #channel or @user names - [@dblock](https://github.com/dblock).
|
|
144
202
|
* [#49](https://github.com/slack-ruby/slack-ruby-client/pull/49): Fix: Celluloid `#connected?` method - [@mikz](https://github.com/mikz), [@kandadaboggu](https://github.com/kandadaboggu).
|
|
145
203
|
|
|
146
|
-
### 0.5.3 (1/11
|
|
204
|
+
### 0.5.3 (2016/1/11)
|
|
147
205
|
|
|
148
206
|
* [#47](https://github.com/slack-ruby/slack-ruby-client/pull/47): Fix: default to Celluloid newer API - [@jlyonsmith](https://github.com/jlyonsmith), [@dblock](https://github.com/dblock).
|
|
149
207
|
* Fixed JRuby file encoding regression - [@dblock](https://github.com/dblock).
|
|
150
208
|
|
|
151
|
-
### 0.5.2 (1/8
|
|
209
|
+
### 0.5.2 (2016/1/8)
|
|
152
210
|
|
|
153
211
|
* [#41](https://github.com/slack-ruby/slack-ruby-client/issues/41): Added `Slack::Messages::Formatting#unescape` - [@dblock](https://github.com/dblock).
|
|
154
212
|
* Added `files_comments` to Web API - [@dblock](https://github.com/dblock).
|
|
155
213
|
|
|
156
|
-
### 0.5.1 (1/4
|
|
214
|
+
### 0.5.1 (2016/1/4)
|
|
157
215
|
|
|
158
216
|
* Added `dnd_teamInfo`, `dnd_setSnooze`, `dnd_info`, `dnd_endSnooze` and `dnd_endDnd` to Web API - [@dblock](https://github.com/dblock).
|
|
159
217
|
* The `files_upload` method now requires both `file` and `filename` to Web API - [@dblock](https://github.com/dblock).
|
|
160
218
|
|
|
161
|
-
### 0.5.0 (12/7
|
|
219
|
+
### 0.5.0 (2015/12/7)
|
|
162
220
|
|
|
163
221
|
* Added `usergroups_create`, `usergroups_disable`, `usergroups_enable`, `usergroups_list`, `usergroups_update` and `usergroups_users` to Web API - [@dblock](https://github.com/dblock).
|
|
164
222
|
* Added command-line `slack` client - [@dblock](https://github.com/dblock).
|
|
@@ -169,7 +227,7 @@
|
|
|
169
227
|
* [#22](https://github.com/slack-ruby/slack-ruby-client/issues/22): Added `Slack::Web::Api::Error#response` - [@dblock](https://github.com/dblock).
|
|
170
228
|
* Added `logger` to `Slack::Web::Client` configuration that logs HTTP requests - [@dblock](https://github.com/dblock).
|
|
171
229
|
|
|
172
|
-
### 0.4.0 (11/8
|
|
230
|
+
### 0.4.0 (2015/11/8)
|
|
173
231
|
|
|
174
232
|
* Added `team_integrationLogs` to Web API - [@dblock](https://github.com/dblock).
|
|
175
233
|
* [#11](https://github.com/slack-ruby/slack-ruby-client/pull/11): Web API `chat_postMessage` errors only if both `attachments` and `text` are missing - [@dblock](https://github.com/dblock).
|
|
@@ -179,12 +237,12 @@
|
|
|
179
237
|
* Added `unreads` to `channels_history`, `groups_history` and `im_history` to Web API - [@dblock](https://github.com/dblock).
|
|
180
238
|
* Added `stars_add` and `stars_remove` to Web API - [@dblock](https://github.com/dblock).
|
|
181
239
|
|
|
182
|
-
### 0.3.1 (10/16
|
|
240
|
+
### 0.3.1 (2015/10/16)
|
|
183
241
|
|
|
184
242
|
* Added `stars_list`, `stars_add` and `stars_remove` to Web API - [@dblock](https://github.com/dblock).
|
|
185
243
|
* Added `attachments`, `parse` and `link_names` to `chat_update` in Web API - [@dblock](https://github.com/dblock).
|
|
186
244
|
|
|
187
|
-
### 0.3.0 (9/1
|
|
245
|
+
### 0.3.0 (2015/9/1)
|
|
188
246
|
|
|
189
247
|
* Added `team.info` and `accessLogs` to Web API - [@dblock](https://github.com/dblock).
|
|
190
248
|
* Removed obsolete `presence` Web API - [@dblock](https://github.com/dblock).
|
|
@@ -197,12 +255,12 @@
|
|
|
197
255
|
* Use API reference schema from [github.com/dblock/slack-api-ref](https://github.com/dblock/slack-api-ref) - [@dblock](https://github.com/dblock).
|
|
198
256
|
* Added `reactions_add`, `reactions_list`, `reactions_get` and `reactions_remove` to Web API - [@jakedahn](https://github.com/jakedahn).
|
|
199
257
|
|
|
200
|
-
### 0.2.1 (8/2
|
|
258
|
+
### 0.2.1 (2015/8/2)
|
|
201
259
|
|
|
202
260
|
* Set Slack API token via `Slack::RealTime::Client.new(token: 'token')` and `Slack::Web::Client.new(token: 'token')` - [@dblock](https://github.com/dblock).
|
|
203
261
|
* Set Slack API token via `Slack::RealTime::Client.configure` and `Slack::Web::Client.configure` - [@dblock](https://github.com/dblock).
|
|
204
262
|
|
|
205
|
-
### 0.2.0 (7/31
|
|
263
|
+
### 0.2.0 (2015/7/31)
|
|
206
264
|
|
|
207
265
|
* [#2](https://github.com/slack-ruby/slack-ruby-client/pull/2): `Slack::RealTime::Socket` now pings frames every 30s, as recommended by Slack - [@samdoiron](https://github.com/samdoiron).
|
|
208
266
|
* [#3](https://github.com/slack-ruby/slack-ruby-client/issues/3): RealTime client WebSocket frame ping frequency is now configurable with `Slack::RealTime::Client.websocket_ping` - [@dblock](https://github.com/dblock).
|
|
@@ -212,6 +270,6 @@
|
|
|
212
270
|
* Default user-agent for `Slack::Web::Client` now includes a slash, eg. _Slack Ruby Client/0.1.1_ - [@dblock](https://github.com/dblock).
|
|
213
271
|
* Fix: set `Slack::Web::Client` connection options for `ca_path`, `ca_file`, and `proxy` - [@dblock](https://github.com/dblock).
|
|
214
272
|
|
|
215
|
-
### 0.1.0 (7/25
|
|
273
|
+
### 0.1.0 (2015/7/25)
|
|
216
274
|
|
|
217
275
|
* Initial public release with Web and RealTime Messaging API support - [@dblock](https://github.com/dblock).
|