mirror of
https://github.com/Sysbot-org/tgscraper.git
synced 2024-11-23 03:56:48 +01:00
Bot API 7.1 to 7.6, updated dependencies
This commit is contained in:
parent
9d0cdff59b
commit
3eb29c5427
10
CHANGELOG.md
10
CHANGELOG.md
@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [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
|
||||
### Added
|
||||
- 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
|
||||
- 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.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
|
||||
|
519
composer.lock
generated
519
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -53,8 +53,14 @@ class Versions
|
||||
public const V680 = '6.8.0';
|
||||
public const V690 = '6.9.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 STABLE = self::V700;
|
||||
public const STABLE = self::V760;
|
||||
|
||||
public const URLS = [
|
||||
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::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::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'
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user