Packages
Plug to cache requests declaratively for either GraphQL or Phoenix, this plug is intended to short circuit all json/decoding or parsing a server would normally do
Current section
25 Versions
Jump to
Current section
25 Versions
Compare versions
4
files changed
+7
additions
-5
deletions
| @@ -1,2 +1,5 @@ | |
| 1 | + # 0.1.1 |
| 2 | + - Lower absinthe version requirement |
| 3 | + |
| 1 4 | # 0.1.0 |
| 2 5 | - Initial Release |
| @@ -21,7 +21,7 @@ | |
| 21 21 | {<<"name">>,<<"absinthe">>}, |
| 22 22 | {<<"optional">>,true}, |
| 23 23 | {<<"repository">>,<<"hexpm">>}, |
| 24 | - {<<"requirement">>,<<"~> 1.7">>}], |
| 24 | + {<<"requirement">>,<<"~> 1.4">>}], |
| 25 25 | [{<<"app">>,<<"absinthe_plug">>}, |
| 26 26 | {<<"name">>,<<"absinthe_plug">>}, |
| 27 27 | {<<"optional">>,true}, |
| @@ -37,4 +37,4 @@ | |
| 37 37 | {<<"optional">>,false}, |
| 38 38 | {<<"repository">>,<<"hexpm">>}, |
| 39 39 | {<<"requirement">>,<<"~> 1.13">>}]]}. |
| 40 | - {<<"version">>,<<"0.1.0">>}. |
| 40 | + {<<"version">>,<<"0.1.1">>}. |
| @@ -34,4 +34,3 @@ if RequestCache.Application.dependency_found?(:absinthe) and RequestCache.Applic | |
| 34 34 | end |
| 35 35 | end |
| 36 36 | end |
| 37 | - |
| @@ -4,7 +4,7 @@ defmodule RequestCache.MixProject do | |
| 4 4 | def project do |
| 5 5 | [ |
| 6 6 | app: :request_cache_plug, |
| 7 | - version: "0.1.0", |
| 7 | + version: "0.1.1", |
| 8 8 | elixir: "~> 1.12", |
| 9 9 | description: "Plug to cache requests declaratively for either GraphQL or Phoenix, this plug is intended to short circuit all json/decoding or parsing a server would normally do", |
| 10 10 | start_permanent: Mix.env() == :prod, |
| @@ -26,7 +26,7 @@ defmodule RequestCache.MixProject do | |
| 26 26 | # Run "mix help deps" to learn about dependencies. |
| 27 27 | defp deps do |
| 28 28 | [ |
| 29 | - {:absinthe, "~> 1.7", optional: true}, |
| 29 | + {:absinthe, "~> 1.4", optional: true}, |
| 30 30 | {:absinthe_plug, "~> 1.5", optional: true}, |
| 31 31 | {:con_cache, "~> 1.0", optional: true}, |
| 32 32 | {:plug, "~> 1.13"}, |