Releases: Robertof/perl-www-telegram-botapi
Releases · Robertof/perl-www-telegram-botapi
v0.12
Changelog:
- Fix a crash in debug mode when trying to dump undefined values.
- When using
Mojo::UserAgent
and in debug mode, print out the real reason of failure when a
connection fails due to a proxy error. Before, only an opaque "Proxy connection error" would
have been returned. See issue #29.
v0.11
v0.10
v0.09
v0.08
v0.07
v0.06
v0.05
v0.04
Changelog:
-
Major change to how requests are handled. Every request is now sent using
application/json
by default, except when uploading, wheremultipart/form-data
is used instead.This has the benefit of allowing the usage of complex objects with zero effort. It should not be a breaking change (except if dealing with the internals of this module).
-
Implement
parse_error
. This new method allows to parse errors and obtain information about them, such as their source or code. Please see the updated documentation. -
Asynchronous callbacks are no more mandatory when async mode is enabled. When the callback is missing, requests are simply executed synchronously.
v0.03 - The spookiest release ever!
Happy Halloween!
Changelog:
- Add new debugging mode, enabled by setting the
TELEGRAM_BOTAPI_DEBUG
environment variable
to a true value. api_request
now dies when, in the response,ok
is missing or set to a false value.
This means thatundef
can no longer be returned.
Consequently, error messages returned from Telegram - when available - are now shown when
dying (instead of showing just the HTTP response code).- Several improvements to the documentation and the code.