Skip to content

Commit

Permalink
7.5.0 (#283)
Browse files Browse the repository at this point in the history
* Supported Telegram API [8.0](https://core.telegram.org/bots/api-changelog#november-17-2024).
* Extend/add annotations for utility handler mechanisms (guard, rateLimits, argParser), add ability to tag a class to
  affect all methods within it.
* Added `autoAnswer` to `@CommandHandler.CallbackQuery`, to answer callback queries automatically before handler.
* Logging has been moved to the ktor logging utility (nothing much has changed, just removed some unnecessary
  dependencies).
* `WebApp.initData` check `String` extension function moved to `ktgram-utils` module.
  • Loading branch information
vendelieu authored Nov 21, 2024
1 parent cbfe1a8 commit e6eda86
Show file tree
Hide file tree
Showing 103 changed files with 2,422 additions and 621 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
run: ./gradlew koverXmlReport

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Telegram-bot (KtGram) Changelog

## 7.5.0

* Supported Telegram API [8.0](https://core.telegram.org/bots/api-changelog#november-17-2024).
* Extend/add annotations for utility handler mechanisms (guard, rateLimits, argParser), add ability to tag a class to
affect all methods within it.
* Added `autoAnswer` to `@CommandHandler.CallbackQuery`, to answer callback queries automatically before handler.
* Logging has been moved to the ktor logging utility (nothing much has changed, just removed some unnecessary
dependencies).
* `WebApp.initData` check `String` extension function moved to `ktgram-utils` module.

### 7.4.1

* Fixed KSP processor exception that was caused by new `KotlinPoet` version update.
Expand Down
Loading

0 comments on commit e6eda86

Please sign in to comment.