diff --git a/rebar.config b/rebar.config index 7442030..a92c190 100644 --- a/rebar.config +++ b/rebar.config @@ -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"} ]}. @@ -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"} ]} ]} ]}. diff --git a/rebar.lock b/rebar.lock index 13774ec..6e14a0a 100644 --- a/rebar.lock +++ b/rebar.lock @@ -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">>}]} ]. diff --git a/test/apns_meta_SUITE.erl b/test/apns_meta_SUITE.erl index 70983cd..6f72829 100644 --- a/test/apns_meta_SUITE.erl +++ b/test/apns_meta_SUITE.erl @@ -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.