mirror of
https://github.com/Sysbot-org/tgscraper.git
synced 2024-11-12 14:39:30 +01:00
8.6 KiB
8.6 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
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.
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.
4.0.4 - 2022-11-05
Added
- Support for bot API 6.3.0.
4.0.3 - 2022-08-12
Added
- Support for bot API 6.2.0.
Changed
- Updated dependencies to their latest available version.
4.0.2 - 2022-06-21
Added
- Support for bot API 6.1.0.
4.0.1 - 2022-04-16
Added
- Support for bot API 6.0.0.
4.0.0 - 2022-04-15
Added
- Support for bot API 5.6.0 and 5.7.0.
- New
app:dump-schemas
command, used to generate schemas for all bot API versions. - New
default
property for fields, it contains their default values when they're unspecified.
Changed
- (Breaking change) Array format in custom schema has been changed from
Array<Foo, Bar, Baz>
toArray<Foo|Bar|Baz>
. - Updated dependencies to their latest available version.
Fixed
- Increased speed dramatically by replacing the DOM parser, it's a lot faster now!
- Huge refactoring, improved code quality and readability.
- Some minor bug fixes.
3.0.3 - 2021-12-11
Added
- Support for bot API 5.5.0.
Changed
- Updated dependencies to their latest available version.
3.0.2 - 2021-11-08
Added
- Support for bot API 5.4.0.
Fixed
- Fixed GitHub action arguments for schemas generation.
3.0.1 - 2021-08-24
Added
- Initial support for publishing on GitHub Pages using a GitHub action.
Fixed
- Target folder can now be a nested folder.
3.0.0 - 2021-08-23
Added
- Support for OpenAPI schema: you can now generate code in any language!
- Support for the new sysbot/tgscraper-cache package: if installed, TGScraper will be much faster (there is no need to always fetch the live webpages)!
- You can now validate a schema by using the
validateSchema
method, provided by theTgScraper
class. - New
Versions::STABLE
constant: it will automatically return the latest stable version instead of the live version (useful for the cache package). - Added the JSON schema specification for the custom format provided by TGScraper.
- Added this changelog.
- Added a workflow to automatically generate the bot API schema every day.
Changed
- The
Generator
class has now been renamedTgScraper
. - The
required
property in method fields has been replaced by the newoptional
property, for the sake of consistency. - You now need a schema in order to instantiate the
TgScraper
class (don't worry, you can use the new methodsTgScraper::fromUrl
andTgScraper::fromVersion
). - The
Versions
class constants have been replaced with an actual version string. If you still need the URLs, use the new class constantVersions::URLS
. - TGScraper will now only return arrays. If you still need JSON or YAML encoding, please use the new
Encoder
class. - Default inline value for YAML has been changed to 16.
Fixed
- Minor improvements to
StubCreator
. - Fixed an issue with the CLI where
autoload.php
couldn't be found. - When exporting the schema, the CLI will now make sure that the destination directory exists.
Security
- When a custom schema is used, only use
version
,types
andmethods
fields.
2.1.0 - 2021-07-31
Added
- New repo workflows: automatic package build (and push to the GitHub registry), and automatic notifications via Telegram.
- New
version
field for schemas: it contains the bot API version (if possible). - New
extended_by
field for types: if the current type is a parent one, it will contain its child types.
Changed
- Now all type stubs implement the base
TypeInterface
interface. - Children type stubs now extend their parent.
- Optional fields are now actually optional in the Postman collection (previously, you had to manually disable optional ones).
Fixed
- Minor improvements to the schema extractor.
2.0.1 - 2021-07-24
Changed
- The README now includes many CLI examples.
Fixed
- The link for the Bot API 5.2.0 snapshot was broken, it's working now.
2.0.0 - 2021-07-24
Added
- Support for Postman collection: now you can generate a JSON to use in Postman!
- New class for the URLs of various bot API snapshots:
TgScraper\Constants\Versions
.
Changed
- Moved
TgScraper\StubCreator
to the new namespaceTgScraper\Common\StubCreator
. - Moved scraping logic from
TgScraper\Generator
to the new classTgScraper\Common\SchemaExtractor
. - CLI has been completely reworked: it now uses the Symfony Console and it's much more reliable!
1.4.0 - 2021-06-23
Added
- YAML format is now supported.
- Docker support! The package is published on the GitHub registry.
1.3.0 - 2021-06-22
Added
- Badges in the README! They contain a lot of useful information about the project (such as the minimum PHP version, latest stable version, etc).
Fixed
- CLI now catches exceptions more reliably.
Security
- Dependency
paquettg/php-html-parser
has been upgraded to^3.1
.
1.2.2 - 2021-06-20
Fixed
- Fixed a typo in a property name of the
Response
class stub.
1.2.1 - 2021-06-19
Removed
- The abstract constructor for the
API
trait stub has now been removed.
1.2.0 - 2021-06-19
Changed
- The
API
class stub has been converted to a trait, and the constructor and thesendRequest
methods are now abstract.
Fixed
- Minor improvements to the CLI.
1.1.0 - 2021-06-18
Added
- New field for types:
optional
. It tells whether a value is always present or not. - Class stubs now have typed properties (with related PHPDoc comments).
Changed
- Variable names have been changed to
camelCase
.
1.0.2 - 2021-06-18
Fixed
- Improved argument parsing for the CLI.
1.0.1 - 2021-06-17
Changed
- Project license is now the GNU Lesser GPL.
1.0.0 - 2021-06-17
Added
- New CLI to easily generate JSON schema or class stubs!
- It's now possible to parse old bot API webpages! Pass the URL and it should work just fine.
- New API class stub, it implements all bot API methods (it's incomplete though, so you must add your custom logic).
Changed
- Renamed project to
tgscraper
. - Class namespace is now
TgScraper
, for the sake of consistency. StubProvider
class is now namedStubCreator
.- Reworked syntax for array of objects in field types:
Object[]
has been replaced byArray<Object>
.
Removed
- Method stubs will no longer be generated.
Fixed
- The parser is now more reliable, it no longer needs to be updated at every bot API release!