kitto v0.7.0 Release Notes

Release Date: 2017-10-18 // over 6 years ago
  • โž• Added

    • ๐Ÿ‘ Kitto.Notifier.broadcast!/2 supports railroading.

    Example:

    job :ci_status, every: :minute do
      # All the combinations below will do the expected thing and infer which
      parameter is the topic and which is the message
    
      CI.status(:awesome_project) |> broadcast!
      CI.status(:awesome_project) |> broadcast!(:projects)
      CI.status(:awesome_project) |> broadcast!(:projects)
      broadcast!(:projects, CI.status(:awesome_project))
    end
    

    ๐Ÿ›  Fixed

    • mix.kitto new <name> check for valid name in OTP 20
    • Font loading in development, due to webpack-dev-server not setting CORS headers