From f9dbb760074697de1605ac00d31953bdcbb6f548 Mon Sep 17 00:00:00 2001 From: Kamil Kisiela Date: Fri, 24 May 2019 17:12:46 +0200 Subject: [PATCH] Release v1.19.0 (#304) --- CHANGELOG.md | 6 ++++++ Dockerfile | 4 ++-- lerna.json | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10bc9d1628..01f470b461 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ### vNEXT +### v1.19.0 + +- **core**: include Interfaces in schema coverage [PR #271](https://github.com/kamilkisiela/graphql-inspector/pull/271) - thanks to [@alx13](http://github.com/alx13) +- **cli**: add http headers [PR #281](https://github.com/kamilkisiela/graphql-inspector/pull/281) +- **cli**: support gql and graphqls files as an introspect output [PR #295](https://github.com/kamilkisiela/graphql-inspector/pull/295) + ### v1.18.1 - **action**: show more details after file load failed [PR #223](https://github.com/kamilkisiela/graphql-inspector/pull/223) diff --git a/Dockerfile b/Dockerfile index 044909ad43..f4aadabcc5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:10-slim -LABEL version="1.18.1" +LABEL version="1.19.0" LABEL repository="http://github.com/kamilkisiela/graphql-inspector" LABEL homepage="http://github.com/kamilkisiela/graphql-inspector" LABEL maintainer="Kamil Kisiela " @@ -12,7 +12,7 @@ LABEL com.github.actions.color="orange" ENV LOG_LEVEL "debug" -RUN yarn global add @graphql-inspector/actions@1.18.1 +RUN yarn global add @graphql-inspector/actions@1.19.0 COPY entrypoint.sh /entrypoint.sh diff --git a/lerna.json b/lerna.json index a1a6091683..04371717a4 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { "npmClient": "yarn", "useWorkspaces": true, - "version": "1.18.1" + "version": "1.19.0" }