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.10.0 - #100

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

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 13, 2021

Copy link
Copy Markdown
Contributor

Bumps slack-api-model from 1.6.1 to 1.10.0.

Release notes

Sourced from slack-api-model's releases.

version 1.10.0

New Features

Sign in with Slack (OpenID Connect)

Sign in with Slack helps users log into your service using their Slack profile. The platform feature was recently upgraded to be compatible with the standard OpenID Connect specification. With Bolt for Java v1.10 or higher, implementing the auth flow is much easier.

The following app is a simple example demonstrating how to handle the OpenID Connect flow with Bolt in Kotlin:

import com.auth0.jwt.JWT
import com.slack.api.bolt.App
import com.slack.api.bolt.jetty.SlackAppServer
fun main() {
val app = App().asOpenIDConnectApp(true)
app.openIDConnectSuccess { request, response, token ->
val claims = JWT.decode(token.idToken).claims
request.context.logger.info("id_token claims: {}", claims)
// Store the data in your database
// Redirect the user to the next step
response.statusCode = 302
response.headers["Location"] = listOf("https://slack.com/")
response

}
val apps = mutableMapOf("/slack/" to app)
val server = SlackAppServer(apps)
server.start() // http://localhost:3000/slack/install
// export SLACK_CLIENT_ID=
// export SLACK_CLIENT_SECRET=
// export SLACK_USER_SCOPES=openid,email,profile
// export SLACK_INSTALL_PATH=install
// export SLACK_REDIRECT_URI_PATH=oauth_redirect
// export SLACK_REDIRECT_URI=https://{your-domain-here}/slack/oauth_redirect
// gradle run
}

Refer to the document for more details.

Changes

... (truncated)

Commits
  • e74a07c version 1.10.0
  • fbfc939 Bump optional module patch versions
  • 21afe34 Add slack_huddles_count to admin.analytics.getFile result data
  • 72d4a18 Run all the integration tests - 2021-08-11 PT
  • 3c3bff0 Update the slash command listener documents (#809)
  • 39de1ab version 1.10.0-RC2
  • 8c02b4d Fix #784 by adding the gson adapter (#808)
  • 16a738f version 1.10.0-RC1
  • 8301631 Bump optional module patch/minor versions
  • e576c52 Improve the error caused in the #792 scenario (#807)
  • 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.10.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.10.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 Aug 26, 2021

Copy link
Copy Markdown
Contributor Author

Superseded by #106.

@dependabot dependabot Bot closed this Aug 26, 2021
@dependabot
dependabot Bot deleted the dependabot/maven/com.slack.api-slack-api-model-1.10.0 branch August 26, 2021 14:03
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