mirror of
https://github.com/Sysbot-org/tgscraper.git
synced 2025-02-02 05:57:51 +01:00
Bot API 6.1
This commit is contained in:
parent
bcaa0f7f13
commit
91a5162c56
@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [4.0.2] - 2022-06-21
|
||||||
|
### Added
|
||||||
|
- Support for bot API 6.1.0
|
||||||
|
|
||||||
## [4.0.1] - 2022-04-16
|
## [4.0.1] - 2022-04-16
|
||||||
### Added
|
### Added
|
||||||
- Support for bot API 6.0.0
|
- Support for bot API 6.0.0
|
||||||
@ -169,7 +173,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.1...HEAD
|
[Unreleased]: https://github.com/Sysbot-org/tgscraper/compare/4.0.2...HEAD
|
||||||
|
[4.0.2]: https://github.com/Sysbot-org/tgscraper/compare/4.0.1...4.0.2
|
||||||
[4.0.1]: https://github.com/Sysbot-org/tgscraper/compare/4.0...4.0.1
|
[4.0.1]: https://github.com/Sysbot-org/tgscraper/compare/4.0...4.0.1
|
||||||
[4.0.0]: https://github.com/Sysbot-org/tgscraper/compare/3.0.3...4.0
|
[4.0.0]: https://github.com/Sysbot-org/tgscraper/compare/3.0.3...4.0
|
||||||
[3.0.3]: https://github.com/Sysbot-org/tgscraper/compare/3.0.2...3.0.3
|
[3.0.3]: https://github.com/Sysbot-org/tgscraper/compare/3.0.2...3.0.3
|
||||||
|
3209
composer.lock
generated
3209
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -43,8 +43,9 @@ class Versions
|
|||||||
public const V560 = '5.6.0';
|
public const V560 = '5.6.0';
|
||||||
public const V570 = '5.7.0';
|
public const V570 = '5.7.0';
|
||||||
public const V600 = '6.0.0';
|
public const V600 = '6.0.0';
|
||||||
|
public const V610 = '6.1.0';
|
||||||
public const LATEST = 'latest';
|
public const LATEST = 'latest';
|
||||||
public const STABLE = self::V600;
|
public const STABLE = self::V610;
|
||||||
|
|
||||||
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/',
|
||||||
@ -86,6 +87,7 @@ class Versions
|
|||||||
self::V560 => 'https://web.archive.org/web/20220105131529id_/https://core.telegram.org/bots/api',
|
self::V560 => 'https://web.archive.org/web/20220105131529id_/https://core.telegram.org/bots/api',
|
||||||
self::V570 => 'https://web.archive.org/web/20220206103922id_/https://core.telegram.org/bots/api',
|
self::V570 => 'https://web.archive.org/web/20220206103922id_/https://core.telegram.org/bots/api',
|
||||||
self::V600 => 'https://web.archive.org/web/20220416143511id_/https://core.telegram.org/bots/api',
|
self::V600 => 'https://web.archive.org/web/20220416143511id_/https://core.telegram.org/bots/api',
|
||||||
|
self::V610 => 'https://web.archive.org/web/20220621093855id_/https://core.telegram.org/bots/api',
|
||||||
self::LATEST => 'https://core.telegram.org/bots/api'
|
self::LATEST => 'https://core.telegram.org/bots/api'
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user