Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump com.slack.api:slack-api-client from 1.40.3 to 1.44.2 #230

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 21, 2024

Bumps com.slack.api:slack-api-client from 1.40.3 to 1.44.2.

Release notes

Sourced from com.slack.api:slack-api-client's releases.

version 1.44.2

Changes

  • [slack-api-client] #1397 NumberFormatException when using conversations.history - Thanks @​rasharab @​seratch
  • [slack-api-client] #1390 Add title to EventContext#setSuggestedPrompts argument list - Thanks @​seratch

version 1.44.1

Changes

  • [bolt] #1389 Fix a bug where parsing assistant thread message event fails for beta feature enabled apps - Thanks @​seratch

version 1.44.0

New Features

Agents & Assistants

A better Agents & Assistants support in Bolt is now available!

While you already can implement your agents using app.event(...) listeners for assistant_thread_started, assistant_thread_context_changed, and message events, Bolt offers a simpler approach. You just need to create an Assistant instance, attach the needed event handlers to it, and then add the assistant to your App instance.

App app = new App();
Assistant assistant = new Assistant(app.executorService());
assistant.threadStarted((req, ctx) -> {
try {
ctx.say(r -> r.text("Hi, how can I help you today?"));
ctx.setSuggestedPrompts(Collections.singletonList(
SuggestedPrompt.create("What does SLACK stand for?")
));
} catch (Exception e) {
ctx.logger.error("Failed to handle assistant thread started event: {e}", e);
}
});
assistant.userMessage((req, ctx) -> {
try {
ctx.setStatus("is typing...");
Thread.sleep(500L);
if (ctx.getThreadContext() != null) {
String contextChannel = ctx.getThreadContext().getChannelId();
ctx.say(r -> r.text("I am ware of the channel context: <#" + contextChannel + ">"));
</tr></table>

... (truncated)

Commits
  • 3ade5d9 version 1.44.2
  • 6c49b9f Upgrade Lombok patch version and other optional ones
  • e43f3d7 Fix tests
  • dd6bc6f Run all the integration tests - 2024-11-20 PT
  • f84a5c5 Run all the integration tests - 2024-11-19 PT
  • ac3ede2 Run all the integration tests - 2024-11-15 PT
  • 61b8607 Run all the integration tests - 2024-11-12 PT
  • e4cd0e1 Run all the integration tests - 2024-11-08 PT
  • 73c84ff Run all the integration tests - 2024-11-07 PT
  • e359171 Run all the integration tests - 2024-11-06 PT
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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 [com.slack.api:slack-api-client](https://github.com/slackapi/java-slack-sdk) from 1.40.3 to 1.44.2.
- [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.40.3...v1.44.2)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from Jojoooo1 as a code owner November 21, 2024 15:40
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Nov 21, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 10, 2025

Superseded by #236.

@dependabot dependabot bot closed this Jan 10, 2025
@dependabot dependabot bot deleted the dependabot/maven/develop/com.slack.api-slack-api-client-1.44.2 branch January 10, 2025 16:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants