Bot API 6.9 and 7.0

This commit is contained in:
Sys 2024-01-05 22:44:32 +01:00
parent 1dd06c155b
commit 9d0cdff59b
No known key found for this signature in database
GPG Key ID: 3CD2C29F8AB39BFD
3 changed files with 262 additions and 257 deletions

View File

@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [4.0.8] - 2024-01-05
### Added
- Support for bot API 6.9.0 and 7.0.0.
## [4.0.7] - 2023-08-23
### Added
- Support for bot API 6.8.0.
@ -196,7 +200,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- The parser is now more reliable, it no longer needs to be updated at every bot API release!
[Unreleased]: https://github.com/Sysbot-org/tgscraper/compare/4.0.7...HEAD
[Unreleased]: https://github.com/Sysbot-org/tgscraper/compare/4.0.8...HEAD
[4.0.8]: https://github.com/Sysbot-org/tgscraper/compare/4.0.7...4.0.8
[4.0.7]: https://github.com/Sysbot-org/tgscraper/compare/4.0.6...4.0.7
[4.0.6]: https://github.com/Sysbot-org/tgscraper/compare/4.0.5...4.0.6
[4.0.5]: https://github.com/Sysbot-org/tgscraper/compare/4.0.4...4.0.5

506
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -51,8 +51,10 @@ class Versions
public const V660 = '6.6.0';
public const V670 = '6.7.0';
public const V680 = '6.8.0';
public const V690 = '6.9.0';
public const V700 = '7.0.0';
public const LATEST = 'latest';
public const STABLE = self::V680;
public const STABLE = self::V700;
public const URLS = [
self::V100 => 'https://web.archive.org/web/20150714025308id_/https://core.telegram.org/bots/api/',
@ -102,6 +104,8 @@ class Versions
self::V660 => 'https://web.archive.org/web/20230314174834id_/https://core.telegram.org/bots/api',
self::V670 => 'https://web.archive.org/web/20230422225636id_/https://core.telegram.org/bots/api',
self::V680 => 'https://web.archive.org/web/20230823081042id_/https://core.telegram.org/bots/api',
self::V690 => 'https://web.archive.org/web/20230923182249id_/https://core.telegram.org/bots/api',
self::V700 => 'https://web.archive.org/web/20240101113402id_/https://core.telegram.org/bots/api',
self::LATEST => 'https://core.telegram.org/bots/api'
];