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

Update dependencies-non-major-updates #145

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 8, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@slack/bolt (source) 3.12.1 -> 3.22.0 age adoption passing confidence
axios (source) ^0.28.0 -> ^0.29.0 age adoption passing confidence
eslint (source) 8.24.0 -> 8.57.1 age adoption passing confidence

Release Notes

slackapi/bolt (@​slack/bolt)

v3.22.0

Compare Source

What's new

This release adds support for the assistant.threads.* API methods introduced in @slack/[email protected] 🤖 as well as improvements to documentation at the new https://tools.slack.dev/bolt-js site and patches to dependencies 🔒

Example usage

More details about these endpoints can be discovered in the documentation, and listeners can be added to code to respond to incoming events like so:

app.event('assistant_thread_started', async ({ client, event, logger }) => {
  logger.info('A new thread started');
  logger.debug(event);
  const now = new Date();
  const title = await client.assistant.threads.setTitle({
    title: `Chats from ${now.toISOString()}`,
    channel_id: event.assistant_thread.channel_id,
    thread_ts: event.assistant_thread.thread_ts,
  });
  logger.debug(title);
  const suggestions = await client.assistant.threads.setSuggestedPrompts({
    channel_id: event.assistant_thread.channel_id,
    thread_ts: event.assistant_thread.thread_ts,
    title: 'Ask the computer for answers',
    prompts: [
      {
        title: 'Find the time',
        message: `What happens at ${Math.floor(now.getTime() / 1000)}`,
      },
    ],
  });
  logger.debug(suggestions);
});

app.event('assistant_thread_context_changed', async ({ client, event, logger }) => {
  logger.info('The channel of focus changed');
  logger.debug(event);
  const response = client.chat.postMessage({
    thread_ts: event.assistant_thread.thread_ts,
    channel: event.assistant_thread.channel_id,
    text: `Now visiting <#${event.assistant_thread.context.channel_id}>`,
  });
  logger.debug(response);
});

app.message(async ({ client, message, logger }) => {
  logger.info('A new message was received');
  logger.debug(message);
  if (message.subtype === 'message_changed' || message.subtype === 'message_deleted') {
    return;
  }
  const status = await client.assistant.threads.setStatus({
    channel_id: message.channel,
    thread_ts: message.thread_ts,
    status: 'is thinking...',
  });
  logger.debug(status);
  /**
    * Actual response generation could happen here!
    */
  setTimeout(async () => {
    const response = await client.chat.postMessage({
      channel: message.channel,
      thread_ts: message.thread_ts,
      text: 'How insightful!',
    });
    logger.debug(response);
  }, 3000);
});
Changes
📚 Documentation
📦 Dependencies

🎉 New contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.4...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).22.0

v3.21.4

Compare Source

What's Changed

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.3...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.4

v3.21.3

Compare Source

What's Changed

Woops! We (coughfilmajcough) removed the EnvelopedEvent export in a recent change. We are adding it back in in this patch release. Please accept our sincere apologies for this temporary breaking change in bolt 3.21.2.

Changelog

New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.2...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.3

v3.21.2

Compare Source

What's Changed

The main change in this patch release is creating an npm release for the change in #​2223, where exported event payload types were moved from bolt-js to @slack/types. If you see errors compiling your TypeScript-based application that look like:

Module './types' has already exported a member

.. then upgrading to this release should address the issue (see #​2233 and #​2234 for issue details).

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.1...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.2

v3.21.1

Compare Source

What's Changed

This patch release brings improvements to documentation and sureness in our CI, as well as security updates to certain @slack packages - see CVE-2024-39338 and [email protected] for more details!

Changes

📚 Documentation
🔒 Security
🧰 Maintenance

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.0...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.1

v3.21.0

Compare Source

What's Changed

Bolt-JS now supports Custom Steps! That's right, your trusty Bolt app now let's you expose Custom Steps in Bolt, allowing you to provide steps for use in Workflow Builder.

You can now use the new function() method to register handlers for the function_executed event. Check out our API docs on the topic to get started.

Changelog

New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).20.0...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).21.0

v3.20.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).19.0...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).20.0

v3.19.0

Compare Source

What's Changed

More customizations for the AwsLambdaReceiver have landed as well as a few touchups to typings and documented details!

With this release, the signature verification for AwsLambdaReceiver can now be turned off if that's something you're interested in! Perhaps you have your own stylish way of verifying these signatures. The following can be added to your receiver to unlock this:

const { App, AwsLambdaReceiver } = require('@&#8203;slack/bolt');

const app = new App({
  ...
  receiver: new AwsLambdaReceiver({
    signatureVerification: false,
  }),
});

Read on and browse around for more details on all of the changes included!

🎁 Enhancments
🐛 Fixes
📚 Documentation
🧰 Maintenance
📦 Dependencies

New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).18.0...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).19.0

v3.18.0

Compare Source

What's Changed
New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).17.1...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).18.0

v3.17.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).17.0...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).17.1

v3.17.0

Compare Source

What's Changed

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).16.0...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).17.0

v3.16.0

Compare Source

What's Changed
Enhancements 🎁
Maintainers
New Contributors 👋

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).15.0...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).16.0

v3.15.0

Compare Source

What's Changed

This minor release includes support for the new File Input Block Kit Element, which allows for users to submit files using Block Kit. It also removes all traces of vulnerable versions of the axios dependency.

Enhancements
Bug Fixes
Dependencies
Other

New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).14.0...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).15.0

v3.14.0

Compare Source

What's Changed

Enhancements
Bug Fixes
Dependencies

New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).13.3...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).14.0

v3.13.3

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).13.2...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).13.3

v3.13.2

Compare Source

What's Changed

Enhancements
Bug fixes
Documentation
Dependencies

New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).13.1...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).13.2

v3.13.1

Compare Source

Enhancements
Bug fixes
Documentation
Dependencies

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).13.0...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).13.1

v3.13.0

Compare Source

What's Changed

Enhancements
Bug fixes
Tests
Documentation
Dependencies
Chores

New Contributors

Full Changelog: https://github.com/slackapi/bolt-js/compare/[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).12.2...[@&#8203;slack/bolt](https://redirect.github.com/slack/bolt)[@&#8203;3](https://redirect.github.com/3).13.0

v3.12.2

Compare Source

What's Changed


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from 5193669 to 16f3c92 Compare October 21, 2022 23:40
@renovate renovate bot changed the title Update dependency eslint to v8.25.0 Update dependency eslint to v8.26.0 Oct 21, 2022
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from 16f3c92 to 0e2e441 Compare November 6, 2022 07:17
@renovate renovate bot changed the title Update dependency eslint to v8.26.0 Update dependency eslint to v8.27.0 Nov 6, 2022
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from 0e2e441 to d33fa05 Compare November 18, 2022 22:29
@renovate renovate bot changed the title Update dependency eslint to v8.27.0 Update dependency eslint to v8.28.0 Nov 18, 2022
@renovate renovate bot changed the title Update dependency eslint to v8.28.0 Update dependencies-non-major-updates Mar 16, 2023
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from d33fa05 to 15ee3b8 Compare March 16, 2023 07:03
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from 15ee3b8 to 64415ab Compare April 3, 2023 15:08
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from 64415ab to 8d45fde Compare April 17, 2023 11:24
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 2 times, most recently from e0a78b8 to cd8c1bb Compare May 28, 2023 09:53
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 2 times, most recently from 9880aea to c518e55 Compare June 4, 2023 11:50
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 4 times, most recently from 2ab8589 to 3538744 Compare June 19, 2023 07:00
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 2 times, most recently from 5a165b0 to 555f75a Compare July 1, 2023 14:11
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 3 times, most recently from 71bf1da to 44da63e Compare July 13, 2023 01:20
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 3 times, most recently from 297eadd to 3231e3e Compare July 19, 2023 10:47
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 3 times, most recently from bfe0668 to 8b08103 Compare August 1, 2023 13:28
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from 8b08103 to 9c134e8 Compare August 4, 2023 17:06
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 3 times, most recently from 2bac3fb to 83a4ac1 Compare April 25, 2024 17:49
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from 83a4ac1 to cb31a9f Compare June 4, 2024 15:07
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from cb31a9f to 78b361d Compare June 20, 2024 01:25
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from 78b361d to f6b350e Compare July 21, 2024 11:18
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 4 times, most recently from f6de5ee to ab6100b Compare August 12, 2024 23:41
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 3 times, most recently from a81c9ec to 0b0a302 Compare August 16, 2024 05:01
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 6 times, most recently from 2cce028 to b651523 Compare September 4, 2024 05:37
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 4 times, most recently from a1fdaa8 to 0b6178b Compare September 11, 2024 22:43
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from 0b6178b to b76acff Compare September 16, 2024 17:35
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch 2 times, most recently from 494751c to 2c66122 Compare September 27, 2024 22:09
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from 2c66122 to 9cd3138 Compare October 9, 2024 11:08
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from 9cd3138 to df76d91 Compare November 21, 2024 18:11
@renovate renovate bot force-pushed the renovate/dependencies-non-major-updates branch from df76d91 to fe49a34 Compare December 2, 2024 11:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants