Skip to content
This repository was archived by the owner on Jun 23, 2022. It is now read-only.

chore(deps): bump slack-api-model from 1.6.1 to 1.7.0 - #80

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/maven/com.slack.api-slack-api-model-1.7.0
Closed

chore(deps): bump slack-api-model from 1.6.1 to 1.7.0#80
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/maven/com.slack.api-slack-api-model-1.7.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 16, 2021

Copy link
Copy Markdown
Contributor

Bumps slack-api-model from 1.6.1 to 1.7.0.

Release notes

Sourced from slack-api-model's releases.

version 1.7.0

New Features

Built-in Token Revocation Event Handlers

For secure data management for your customers and end-users, properly handling tokens_revoked and app_uninstalled events is crucial. Since v1.7.0, Bolt for Java provides the built-in event handlers for these events, which seamlessly integrated with your InstallationService’s deletion methods.

App app = new App();
InstallationService installationService = new MyInstallationService();
app.service(installationService);
// Turn the event handlers on
app.enableTokenRevocationHandlers();

The above code is equivalent to the following:

App app = new App();
InstallationService installationService = new MyInstallationService();
app.service(installationService);
// Turn the event handlers on
app.event(TokensRevokedEvent.class, app.defaultTokensRevokedEventHandler());
app.event(AppUninstalledEvent.class, app.defaultAppUninstalledEventHandler());

Refer to the document for more details.

Changes


version 1.6.2

Changes

  • [slack-app-backend] #694 Add "channel_posting_permissions" message event support - Thanks @​seratch
  • [slack-api-client] #696 Add public_channel type support in admin.analytics.getFile API - Thanks @​seratch
  • [slack-api-model] #691 Correct javadoc for GoodbyeEvent - Thanks @​KingBuzzer
  • [all] #695 Maven duplicates removals - Thanks @​KingBuzzer
  • [all] #697 Bump dependency versions for v1.6.2 release - Thanks @​seratch

... (truncated)

Commits
  • f299719 version 1.7.0
  • 4447c3e Add note about Spring Boot versions in the documents
  • 85fff9f Bump dependency versions for v1.7 release
  • 1debfc2 Fix #698 Check fallback in attachments for missing fallback text warning
  • 6672b45 Fix errors in getting started guide with socket mode
  • cccacad Set 1.7.0 SNAPSHOT version
  • cdddb15 Run all the integration tests - 2021-03-11 PT
  • f75f72f Add an integration test for apps.connections.open
  • 2b923ff Bump dependencies in v1.7
  • 7594eb6 Add built-in tokens_revoked/app_uninstalled event handlers
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot @github

dependabot Bot commented on behalf of github Mar 31, 2021

Copy link
Copy Markdown
Contributor Author

Superseded by #85.

@dependabot dependabot Bot closed this Mar 31, 2021
@dependabot
dependabot Bot deleted the dependabot/maven/com.slack.api-slack-api-model-1.7.0 branch March 31, 2021 05:58
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Check fallback in attachments for missing fallback text warning

0 participants