Bot API 6.7

This commit is contained in:
Sys 2023-04-30 12:02:18 +02:00
parent b15594076f
commit 917dfb1cc8
No known key found for this signature in database
GPG Key ID: 3CD2C29F8AB39BFD
3 changed files with 373 additions and 323 deletions

View File

@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [4.0.6] - 2023-03-30
### Added
- Support for bot API 6.7.0.
## [4.0.5] - 2023-03-18
### Added
- Support for bot API 6.4.0, 6.5.0 and 6.6.0.
@ -188,7 +192,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.5...HEAD
[Unreleased]: https://github.com/Sysbot-org/tgscraper/compare/4.0.6...HEAD
[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
[4.0.4]: https://github.com/Sysbot-org/tgscraper/compare/4.0.3...4.0.4
[4.0.3]: https://github.com/Sysbot-org/tgscraper/compare/4.0.2...4.0.3

685
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -49,8 +49,9 @@ class Versions
public const V640 = '6.4.0';
public const V650 = '6.5.0';
public const V660 = '6.6.0';
public const V670 = '6.7.0';
public const LATEST = 'latest';
public const STABLE = self::V660;
public const STABLE = self::V670;
public const URLS = [
self::V100 => 'https://web.archive.org/web/20150714025308id_/https://core.telegram.org/bots/api/',
@ -98,6 +99,7 @@ class Versions
self::V640 => 'https://web.archive.org/web/20221230181046id_/https://core.telegram.org/bots/api',
self::V650 => 'https://web.archive.org/web/20230204145800id_/https://core.telegram.org/bots/api',
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::LATEST => 'https://core.telegram.org/bots/api'
];