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

deps(deps): update dependencies-non-major #3

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 27, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@netlify/functions 1.3.0 -> 1.6.0 age adoption passing confidence
@slack/bolt (source) 3.12.2 -> 3.22.0 age adoption passing confidence
@types/aws-lambda (source) 8.10.75 -> 8.10.145 age adoption passing confidence
@types/node (source) 18.11.18 -> 18.19.54 age adoption passing confidence
@types/node-fetch (source) 2.6.2 -> 2.6.11 age adoption passing confidence
dotenv 16.0.3 -> 16.4.5 age adoption passing confidence
node-fetch 3.3.0 -> 3.3.2 age adoption passing confidence
typescript (source) 4.2.4 -> 4.9.5 age adoption passing confidence

Release Notes

netlify/functions (@​netlify/functions)

v1.6.0

Compare Source

Features

v1.5.0

Compare Source

Features

v1.4.0

Compare Source

Features
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 === 'assistant_app_thread' || 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

Configuration

📅 Schedule: Branch creation - "every 2 weeks on Monday before 7am" in timezone Europe/Berlin, 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 requested a review from Lisa-Stubert as a code owner March 27, 2023 01:48
@netlify
Copy link

netlify bot commented Mar 27, 2023

Deploy Preview for sensational-cupcake-14667f ready!

Name Link
🔨 Latest commit 92c1e15
🔍 Latest deploy log https://app.netlify.com/sites/sensational-cupcake-14667f/deploys/66f78eea6a83580008aff4a6
😎 Deploy Preview https://deploy-preview-3--sensational-cupcake-14667f.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@socket-security
Copy link

socket-security bot commented Mar 27, 2023

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 94b8b2e to 4f824a2 Compare March 29, 2023 04:37
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 4f824a2 to 81e102b Compare April 5, 2023 22:24
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 5 times, most recently from 66b9b9b to b5b3839 Compare April 26, 2023 00:57
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 4 times, most recently from bdbb875 to 9dd6632 Compare May 3, 2023 06:18
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 6 times, most recently from 0b563a6 to b40b167 Compare May 11, 2023 20:49
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 5 times, most recently from f21d7ad to 509c158 Compare May 18, 2023 16:52
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 3 times, most recently from 7ba982d to d61aaea Compare May 27, 2023 00:12
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from d61aaea to ba68640 Compare June 9, 2023 02:57
@socket-security
Copy link

socket-security bot commented Jun 9, 2023

Updated dependencies detected. Learn more about Socket for GitHub ↗︎

Packages Version New capabilities Transitives Size Publisher
@types/node-fetch 2.6.2...2.6.9 None +2/-2 3.91 MB types
@types/aws-lambda 8.10.75...8.10.130 None +0/-0 138 kB types
@types/node 18.11.18...18.19.2 None +1/-0 3.9 MB types
node-fetch 3.3.0...3.3.2 None +0/-0 107 kB node-fetch-bot
@slack/bolt 3.12.2...3.16.0 None +13/-10 8.88 MB slackhq
axios 1.2.2...1.6.2 None +0/-0 1.8 MB jasonsaayman
dotenv 16.0.3...16.3.1 None +0/-0 71.6 kB motdotla
@netlify/functions 1.3.0...1.6.0 None +0/-0 17.7 kB netlify-bot
typescript 4.2.4...4.9.5 None +0/-0 66.8 MB typescript-bot

@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 2 times, most recently from 97a4ba1 to 897b48f Compare May 9, 2024 06:00
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 897b48f to 8a80f7f Compare May 24, 2024 02:56
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 8a80f7f to edfe031 Compare June 4, 2024 17:52
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 4 times, most recently from 46d9dc2 to 2f4f1c9 Compare June 23, 2024 14:57
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 2f4f1c9 to 523cb7f Compare July 10, 2024 05:07
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 3 times, most recently from f7af6f1 to 309e8ed Compare July 25, 2024 20:44
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 2 times, most recently from 5ce474d to 846ce7d Compare August 7, 2024 23:44
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 4 times, most recently from 055ba18 to 5021e58 Compare August 16, 2024 08:43
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 2 times, most recently from d99f9d3 to b848478 Compare August 27, 2024 08:53
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 2 times, most recently from a19abdb to a2d2e77 Compare September 2, 2024 08:48
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 2 times, most recently from 1e0402c to bea9eda Compare September 5, 2024 20:39
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 2 times, most recently from db66508 to 9b66131 Compare September 12, 2024 05:19
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 2 times, most recently from c33a0e8 to 455369d Compare September 26, 2024 11:56
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 455369d to 92c1e15 Compare September 28, 2024 05:06
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