Releases: EdJoPaTo/grammy-inline-menu
Releases · EdJoPaTo/grammy-inline-menu
v7.0.0-beta.1
v6.3.0
v6.2.1
v6.2.0
v6.1.0
v6.0 - Migrate to telegraf v4
- migrate to telegraf v4
Migrate from version 5 to version 6
Version 6 switched from telegraf 3.38 to 4.0. See the telegraf migration guide for this set of changes.
telegraf-inline-menu is relativly unaffected by this.
The only change required besides the telegraf changes is the change of ctx.match
.
Simply add match
to your MyContext
type:
export interface MyContext extends TelegrafContext {
readonly match: RegExpExecArray | undefined;
…
}
telegraf knows when match is available or not.
The default Context does not have match anymore.
telegraf-inline-menu should also know this in a future release.