Skip to content

Releases: adriankumpf/logger-telegram-backend

v3.0.0

12 Aug 18:58
v3.0.0
77c14e6
Compare
Choose a tag to compare

Breaking Changes

  • Migrate built-in HTTP from hackney to Finch
  • Replace the:adapter with the :client option
  • Remove the :proxy option

Changes

  • Log a warning if sending fails
  • Allow messages to be filtered by a metadata key

Bug fixes

  • Escape metadata fields when sending messages
  • Fix deprecation warnings on Elixir 1.15

Upgrade Instructions

Dependencies

Add :finch to your list of dependencies in mix.exs:

def deps do
  [
    {:logger_telegram_backend, "~> 3.0"},
    {:finch, "~> 0.16"},
  ]
end

Adding the backend

  1. In your Application.start/2 callback, add the LoggerTelegramBackend backend:

    def start(_type, _args) do
    +  LoggerTelegramBackend.attach()
  2. Remove the :backends configuration from :logger:

    config :logger,
    - backends: [LoggerTelegramBackend, :console]

Config

Configuration is now done via the LoggerTelegramBackend key:

- config :logger, :telegram,
+ config :logger, LoggerTelegramBackend,
    # ...

HTTP client (optional)

  1. Remove the :adapter configuration

  2. Add the :client option and pass your own module that implements the LoggerTelegramBackend.HTTPClient behaviour

    config :logger, LoggerTelegramBackend,
    -  adapter: {Tesla.Adapter.Gun, []}
    +  client: MyGunAdapter

    See the documentation for LoggerTelegramBackend.HTTPClient for more information.

Proxy (optional)

  1. Remove the :proxy configuration

  2. Add the :client_pool_opts configuration

    config :logger, LoggerTelegramBackend,
    -  proxy: "socks5://127.0.0.1:9050"
    +  client_pool_opts: [conn_opts: [proxy: {:http, "127.0.0.1", 9050, []}]]

    See Pool Configuration Options for further information.

Full Changelog: v2.0.1...v3.0.0

v2.0.1

06 Aug 16:44
v2.0.1
ebdf096
Compare
Choose a tag to compare

Fixed

  • Don't crash if sending an event does not succeed

Full Changelog: v1.2.1...v2.0.1

v2.0.0

22 Dec 14:38
Compare
Choose a tag to compare

Changed

  • Use tesla to make the underlying HTTP client configurable

Breaking Changes

  • Make hackney an optional dependency. To use the default hackney based adatper, add it to the list of dependencies:

    def deps do
      [
        {:logger_telegram_backend, "~> 2.0.0"},
        {:hackney, "~> 1.17"}
      ]
    end

v1.3.0

22 Dec 14:38
Compare
Choose a tag to compare

Changed

v1.2.1

22 Dec 14:37
Compare
Choose a tag to compare

Changed

  • Bump httpoison from 1.4.0 to 1.5.1
  • Bump ex_doc from 0.19.1 to 0.20.2

v1.2.0

22 Dec 14:37
Compare
Choose a tag to compare

Added

v1.1.0

22 Dec 14:37
Compare
Choose a tag to compare

Changed

  • Remove dependency on Poison: the success of a request is now solely determined by the HTTP status code.
  • Remove GenStage and simplify the overall event handling logic
  • Update dependencies

v1.0.3

22 Dec 14:37
Compare
Choose a tag to compare

Added

  • Add @impl attributes

Changed

  • Update dependencies
  • Format code

Fixed

  • Fix typo in README

v1.0.2

22 Dec 14:37
Compare
Choose a tag to compare

Changed

  • Update httpoison to 1.0

v1.0.1

22 Dec 14:36
Compare
Choose a tag to compare

Changed

  • Update Dependencies