File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v1.5.6
4+
5+ - Bug Fix: [ Handle invalid batch request structure] ( https://github.com/absinthe-graphql/absinthe_plug/pull/255 )
6+
37## v1.5.5
48
59- Bug Fix: [ Don't wipe out an existing pubsub value in context] ( https://github.com/absinthe-graphql/absinthe_plug/pull/249 )
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ defmodule Absinthe.Plug.Request do
5656 # Plug puts parsed params under the "_json" key when the
5757 # structure is not a map; otherwise it's just the keys themselves,
5858 # and they may sit in the body or in the params
59+
5960 defp is_batch? ( params ) do
6061 Map . has_key? ( params , "_json" ) && is_list ( params [ "_json" ] )
6162 end
Original file line number Diff line number Diff line change 11defmodule Absinthe.Plug.Mixfile do
22 use Mix.Project
33
4- @ version "1.5.5 "
4+ @ version "1.5.6 "
55
66 def project do
77 [
You can’t perform that action at this time.
0 commit comments