NodeRSSBot icon indicating copy to clipboard operation
NodeRSSBot copied to clipboard

build(deps): bump telegraf from 4.15.3 to 4.16.3

Open dependabot[bot] opened this issue 11 months ago • 0 comments

Bumps telegraf from 4.15.3 to 4.16.3.

Release notes

Sourced from telegraf's releases.

v4.16.3

  • Fix: bug with link_preview_options.url caused client to try sending it as media
  • Fix: add CommandContextExtn type to Composer::{start|help|settings} (adds ctx.command, payload, args)

v4.16.1

Fixed Context::from: now uses callbackQuery.from instead of msg.from

v4.16.0

Phew, what a feature-packed release! 🎉

*tsk tsk* There's a big announcement at the end of this release!

  • Support for API 7.0. Highlights are Reactions, Replies 2.0, Link Previews, Blockquotes, and Chat Boosts.
  • Support for API 7.1.
  • All methods and update types from these API versions are now fully supported.
  • To listen on reaction addition and removal, use Composer.reaction:

    bot.reaction("👍", (ctx) => {
      // user added a 👍 reaction
    });
    

    // prefix with - to listen to reaction removal bot.reaction("-👍", (ctx) => { // user removed a 👍 reaction });

    This also just works with custom emoji IDs.

    bot.reaction("5368742036629364794", (ctx) => {
      // user added a reaction with the given custom emoji ID
    });
    

    bot.reaction("-5368742036629364794", (ctx) => { // user removed a reaction with the given custom emoji ID });

  • You can probe and inspect the reaction list with the ctx.reactions smart object:

... (truncated)

Commits
  • c591338 chore: lint fix
  • a0f65f4 fix: includesMedia fix was incorrect
  • 0e3b59f ver: 4.16.3
  • 6a1d6cf fix: add CommandContextExtn to start, help, settings
  • b68b961 tempfix: except link_preview_options in includesMedia:
  • e881fa6 ver: 4.16.2
  • 7f2a081 fix: Context::text is undefined when message has only text but no entities ...
  • d180036 ver: 4.16.1
  • 5bb62ee fix: use callbackQuery.from instead of msg.from
  • 096dd01 merge: #1949 from telegraf/feat/api-7.0
  • 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)

dependabot[bot] avatar Feb 29 '24 21:02 dependabot[bot]