Skip to content

Commit

Permalink
fix: bumped kadabra version to v0.3.4
Browse files Browse the repository at this point in the history
New version fixes critical settings update bug with Kadabra, causing FCM
to fail if too many pushes are sent too quickly.
  • Loading branch information
hpopp committed Oct 31, 2017
1 parent d3631a5 commit c2c3036
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## v1.1.1
* Bumped minimum Kadabra version to `v0.3.4`

## v1.1.0
* Minimum requirements now Elixir v1.4 and OTP 19.2 (Kadabra bumped to `v0.3.0`)
* Runtime worker configs. Create a functions that return config
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Add pigeon and kadabra as `mix.exs` dependencies:
```elixir
def deps do
[
{:pigeon, "~> 1.1.0"},
{:kadabra, "~> 0.3.3"}
{:pigeon, "~> 1.1.1"},
{:kadabra, "~> 0.3.4"}
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions docs/Getting Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Add pigeon and kadabra as `mix.exs` dependencies:
```elixir
def deps do
[
{:pigeon, "~> 1.1.0"},
{:kadabra, "~> 0.3.3"}
{:pigeon, "~> 1.1.1"},
{:kadabra, "~> 0.3.4"}
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Pigeon.Mixfile do
use Mix.Project

@version "1.1.0"
@version "1.1.1"

def project do
[
Expand Down Expand Up @@ -53,7 +53,7 @@ defmodule Pigeon.Mixfile do
[
{:poison, "~> 2.0 or ~> 3.0"},
{:httpoison, "~> 0.7"},
{:kadabra, "~> 0.3.2", optional: true},
{:kadabra, "~> 0.3.4", optional: true},
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.2", only: :dev},
{:excoveralls, "~> 0.5", only: :test},
Expand Down
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"httpoison": {:hex, :httpoison, "0.13.0", "bfaf44d9f133a6599886720f3937a7699466d23bb0cd7a88b6ba011f53c6f562", [:mix], [{:hackney, "~> 1.8", [hex: :hackney, optional: false]}]},
"idna": {:hex, :idna, "5.1.0", "d72b4effeb324ad5da3cab1767cb16b17939004e789d8c0ad5b70f3cea20c89a", [:rebar3], [{:unicode_util_compat, "0.3.1", [hex: :unicode_util_compat, optional: false]}]},
"jsx": {:hex, :jsx, "2.8.2", "7acc7d785b5abe8a6e9adbde926a24e481f29956dd8b4df49e3e4e7bcc92a018", [:mix, :rebar3], []},
"kadabra": {:hex, :kadabra, "0.3.2", "d7afbcfac044ceffdcfa7ffdef5c41a5c8c984cfacb1b1bb62a8011c280d89b2", [:mix], [{:hpack, "~> 0.2.3", [hex: :hpack_erl, repo: "hexpm", optional: false]}, {:scribe, "~> 0.4", [hex: :scribe, repo: "hexpm", optional: true]}], "hexpm"},
"kadabra": {:hex, :kadabra, "0.3.4", "677d0c5d28a016c7dec167b3f969fe72b4bf18e9568a399cc262efa1ef124925", [:mix], [{:hpack, "~> 0.2.3", [hex: :hpack_erl, repo: "hexpm", optional: false]}, {:scribe, "~> 0.4", [hex: :scribe, repo: "hexpm", optional: true]}], "hexpm"},
"metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], []},
"mimerl": {:hex, :mimerl, "1.0.2", "993f9b0e084083405ed8252b99460c4f0563e41729ab42d9074fd5e52439be88", [:rebar3], []},
"pane": {:hex, :pane, "0.1.1", "4a9b46957a02991acbce012169ab7e8ecff74ad24886f94b142680062b10f167", [], [], "hexpm"},
Expand Down

0 comments on commit c2c3036

Please sign in to comment.