Skip to content

Commit 35550f7

Browse files
committed
Changelog and version bump
1 parent 70919df commit 35550f7

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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)

lib/absinthe/plug/request.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule 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
[

0 commit comments

Comments
 (0)