Bot API 7.1 to 7.6, updated dependencies

This commit is contained in:
Sys 2024-07-02 12:28:17 +02:00
parent 9d0cdff59b
commit 3eb29c5427
No known key found for this signature in database
GPG Key ID: 3CD2C29F8AB39BFD
3 changed files with 277 additions and 266 deletions

View File

@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [4.0.9] - 2024-07-02
### Added
- Support for bot API from 7.1.0 to 7.6.0.
### Changed
- Updated dependencies to their latest available version.
## [4.0.8] - 2024-01-05 ## [4.0.8] - 2024-01-05
### Added ### Added
- Support for bot API 6.9.0 and 7.0.0. - Support for bot API 6.9.0 and 7.0.0.
@ -200,7 +207,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- The parser is now more reliable, it no longer needs to be updated at every bot API release! - 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.8...HEAD [Unreleased]: https://github.com/Sysbot-org/tgscraper/compare/4.0.9...HEAD
[4.0.9]: https://github.com/Sysbot-org/tgscraper/compare/4.0.8...4.0.9
[4.0.8]: https://github.com/Sysbot-org/tgscraper/compare/4.0.7...4.0.8 [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.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.6]: https://github.com/Sysbot-org/tgscraper/compare/4.0.5...4.0.6

519
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -53,8 +53,14 @@ class Versions
public const V680 = '6.8.0'; public const V680 = '6.8.0';
public const V690 = '6.9.0'; public const V690 = '6.9.0';
public const V700 = '7.0.0'; public const V700 = '7.0.0';
public const V710 = '7.1.0';
public const V720 = '7.2.0';
public const V730 = '7.3.0';
public const V740 = '7.4.0';
public const V750 = '7.5.0';
public const V760 = '7.6.0';
public const LATEST = 'latest'; public const LATEST = 'latest';
public const STABLE = self::V700; public const STABLE = self::V760;
public const URLS = [ public const URLS = [
self::V100 => 'https://web.archive.org/web/20150714025308id_/https://core.telegram.org/bots/api/', self::V100 => 'https://web.archive.org/web/20150714025308id_/https://core.telegram.org/bots/api/',
@ -106,6 +112,12 @@ class Versions
self::V680 => 'https://web.archive.org/web/20230823081042id_/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::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::V700 => 'https://web.archive.org/web/20240101113402id_/https://core.telegram.org/bots/api',
self::V710 => 'https://web.archive.org/web/20240217084100id_/https://core.telegram.org/bots/api',
self::V720 => 'https://web.archive.org/web/20240402153812id_/https://core.telegram.org/bots/api',
self::V730 => 'https://web.archive.org/web/20240507163328id_/https://core.telegram.org/bots/api',
self::V740 => 'https://web.archive.org/web/20240529172355id_/https://core.telegram.org/bots/api',
self::V750 => 'https://web.archive.org/web/20240624102326id_/https://core.telegram.org/bots/api',
self::V760 => 'https://web.archive.org/web/20240702102244id_/https://core.telegram.org/bots/api',
self::LATEST => 'https://core.telegram.org/bots/api' self::LATEST => 'https://core.telegram.org/bots/api'
]; ];