Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Brujo Benavides committed Jul 4, 2018
1 parent 74acc72 commit 3f43c84
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
10 changes: 5 additions & 5 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
%% == Dependencies ==

{deps, [
{chatterbox, "0.5.0"},
{jsx, "2.8.2"},
{chatterbox, "0.7.0"},
{jsx, "2.9.0"},
{base64url, "0.0.1"}
]}.

Expand All @@ -33,10 +33,10 @@
{profiles, [
{test, [
{deps, [
{katana_test, "0.1.1"},
{katana_test, "1.0.0"},
{katana, "0.4.0"},
{mixer, "0.1.5", {pkg, inaka_mixer}},
{meck, "0.8.7"}
{mixer, "1.0.0", {pkg, inaka_mixer}},
{meck, "0.8.10"}
]}
]}
]}.
Expand Down
12 changes: 4 additions & 8 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
{"1.1.0",
[{<<"base64url">>,{pkg,<<"base64url">>,<<"0.0.1">>},0},
{<<"chatterbox">>,{pkg,<<"chatterbox">>,<<"0.5.0">>},0},
{<<"goldrush">>,{pkg,<<"goldrush">>,<<"0.1.9">>},2},
{<<"chatterbox">>,{pkg,<<"chatterbox">>,<<"0.7.0">>},0},
{<<"hpack">>,{pkg,<<"hpack_erl">>,<<"0.2.3">>},1},
{<<"jsx">>,{pkg,<<"jsx">>,<<"2.8.2">>},0},
{<<"lager">>,{pkg,<<"lager">>,<<"3.2.4">>},1}]}.
{<<"jsx">>,{pkg,<<"jsx">>,<<"2.9.0">>},0}]}.
[
{pkg_hash,[
{<<"base64url">>, <<"36A90125F5948E3AFD7BE97662A1504B934DD5DAC78451CA6E9ABF85A10286BE">>},
{<<"chatterbox">>, <<"69F5A1F36F905472B7662A301E67309DD3CAE7D0CA1B2E52C14D43EE7DF4C3A3">>},
{<<"goldrush">>, <<"F06E5D5F1277DA5C413E84D5A2924174182FB108DABB39D5EC548B27424CD106">>},
{<<"chatterbox">>, <<"8036197E00C42B3AC401DABDA722FD211071B27CBD59A7CEA471185F5D1F573A">>},
{<<"hpack">>, <<"17670F83FF984AE6CD74B1C456EDDE906D27FF013740EE4D9EFAA4F1BF999633">>},
{<<"jsx">>, <<"7ACC7D785B5ABE8A6E9ADBDE926A24E481F29956DD8B4DF49E3E4E7BCC92A018">>},
{<<"lager">>, <<"A6DEB74DAE7927F46BD13255268308EF03EB206EC784A94EAF7C1C0F3B811615">>}]}
{<<"jsx">>, <<"D2F6E5F069C00266CAD52FB15D87C428579EA4D7D73A33669E12679E203329DD">>}]}
].
8 changes: 7 additions & 1 deletion test/apns_meta_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@
-type config() :: [{atom(), term()}].

-spec init_per_suite(config()) -> config().
init_per_suite(Config) -> [{application, apns} | Config].
init_per_suite(Config) ->
[ {application, apns}
%% Until the next version of katana-test fixes the missing test deps in plt
%% issue, we can't use the default warnings that include 'unknown' here.
, {dialyzer_warnings, [error_handling, race_conditions, unmatched_returns]}
| Config
].

-spec end_per_suite(config()) -> config().
end_per_suite(Config) -> Config.

0 comments on commit 3f43c84

Please sign in to comment.