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.17.0 - #134

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

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jan 21, 2022

Copy link
Copy Markdown
Contributor

Bumps slack-api-model from 1.6.1 to 1.17.0.

Release notes

Sourced from slack-api-model's releases.

version 1.17.0

New Features

Customize ExecutorService used inside the SDK

f you desire to pass your own ExecutorService to this SDK, now ExecutorServiceProvider interface is available for you.

You can implement the interface with your own factory methods and pass its instance to either SlackConfig (for API clients) or AppConfig (for Bolt apps).

var config = new SlackConfig();
config.setExecutorServiceProvider(new MyExecutorServiceProvider())
var slack = Slack.getInstance(config);
// ExecutorService will be provided by MyExecutorServiceProvider
var future = slack.methodsAsync().authTest(r -> r.token(System.getenv("SLACK_BOT_TOKEN"));

If you pass it to AppConfig, all the underlying API clients use the same ExecutorServiceProvider.

var config = AppConfig.builder()
  .signingSecret(System.getenv("SLACK_SIGNING_SECRET"))
  .singleTeamBotToken(System.getenv("SLACK_BOT_TOKEN"))
  .executorServiceProvider(new MyExecutorServiceProvider())
  .build();
var app = new App(config);
var server = new SlackAppServer(app);
server.start();

Refer to #915 and #916 for more details.

Changes

  • [all] #916 Fix #915 by adding ExecutorServiceProvider to enable developers to use their own ExecutorService - Thanks @​seratch @​jahlbornG
  • [all] Upgrade minor/patch versions of the optional dependencies. - Thanks @​seratch

version 1.16.1

Changes


... (truncated)

Commits
  • 606aeb6 version 1.17.0
  • 05d59c8 Run all the integration tests - 2022-01-20 PT
  • e44ff6f Upgrade the optional dependencies
  • 4dbaaac Fix #915 by adding ExecutorServiceProvider to enable developers to use their ...
  • 6fcff1c Run all the integration tests - 2022-01-18 PT
  • 2ad32c7 Start 1.17.0 development
  • 31051a5 version 1.16.1
  • be692d0 Fix #913 user-scope only OAuth does not work since v1.10 (#914)
  • 004efab Adjust JSON data generator in Events API tests
  • 8a8b327 Update the JSON files and rtm.start response class
  • 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)

Bumps [slack-api-model](https://github.com/slackapi/java-slack-sdk) from 1.6.1 to 1.17.0.
- [Release notes](https://github.com/slackapi/java-slack-sdk/releases)
- [Changelog](https://github.com/slackapi/java-slack-sdk/blob/main/jSlack_changelog.md)
- [Commits](slackapi/java-slack-sdk@v1.6.1...v1.17.0)

---
updated-dependencies:
- dependency-name: com.slack.api:slack-api-model
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jan 26, 2022

Copy link
Copy Markdown
Contributor Author

Superseded by #138.

@dependabot dependabot Bot closed this Jan 26, 2022
@dependabot
dependabot Bot deleted the dependabot/maven/com.slack.api-slack-api-model-1.17.0 branch January 26, 2022 14:04
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.

0 participants