dest-nft / dest.sh

https://dest.sh
2 stars 3 forks source link

⬆️ Bump telegraf from 4.15.3 to 4.16.2 #212

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps telegraf from 4.15.3 to 4.16.2.

Release notes

Sourced from telegraf's releases.

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:

    bot.on("message_reaction", async (ctx) => {
      // remember that ctx.reactions is a smart object, but not an array
    

... (truncated)

Commits
  • 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
  • 9e1b5ad chore: add recent fix to release notes
  • 3e2b5df fix: support thumbnail uploads
  • f7df523 feat: ctx.match for Composer.command
  • 728eec1 chore: expose session import and docs additions
  • 5c06980 chore: fix misworded message
  • 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 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)
vercel[bot] commented 6 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
dest-landing-page ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 29, 2024 6:16am
dependabot[bot] commented 6 months ago

Superseded by #213.