From 3ec0b9b70ec8e23cc5a21ff20de39a1c6cf19186 Mon Sep 17 00:00:00 2001 From: Ketut Sandiarsa Date: Sun, 9 Apr 2023 20:26:10 +0800 Subject: [PATCH] chore: Create production release - @graphql-directive/auth@1.0.2 - @graphql-directive/core@1.0.2 - @graphql-directive/validator@2.0.2 --- packages/auth/CHANGELOG.md | 8 ++++++++ packages/auth/package.json | 4 ++-- packages/core/CHANGELOG.md | 6 ++++++ packages/core/package.json | 2 +- packages/validator/CHANGELOG.md | 6 ++++++ packages/validator/package.json | 4 ++-- 6 files changed, 25 insertions(+), 5 deletions(-) diff --git a/packages/auth/CHANGELOG.md b/packages/auth/CHANGELOG.md index 11ae080..8cc5e93 100644 --- a/packages/auth/CHANGELOG.md +++ b/packages/auth/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.2](https://github.com/ktutnik/graphql-directive/compare/@graphql-directive/auth@1.0.1...@graphql-directive/auth@1.0.2) (2023-04-09) + +### Bug Fixes + +- **auth:** Mutation should always throw error ([#40](https://github.com/ktutnik/graphql-directive/issues/40)) ([0869a38](https://github.com/ktutnik/graphql-directive/commit/0869a385c1259443dec3d72d1a45947be84b6976)) +- **auth:** Query resolution Filter doesn't followed properly on mutation result ([#38](https://github.com/ktutnik/graphql-directive/issues/38)) ([8fc73ac](https://github.com/ktutnik/graphql-directive/commit/8fc73ac74a28c8e4719797b007400ff8ed51f690)) +- Fix thrown GraphQLError error message ([#39](https://github.com/ktutnik/graphql-directive/issues/39)) ([9d52b52](https://github.com/ktutnik/graphql-directive/commit/9d52b521fb9e759f6824b8e0f5ceee5d43e20f31)) + ## [1.0.1](https://github.com/ktutnik/graphql-directive/compare/@graphql-directive/auth@1.0.0...@graphql-directive/auth@1.0.1) (2023-04-08) ### Bug Fixes diff --git a/packages/auth/package.json b/packages/auth/package.json index dc76c7f..ed980e3 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-directive/auth", - "version": "1.0.1", + "version": "1.0.2", "description": "GraphQL authorization directive", "main": "lib/index.js", "types": "lib/index.d.ts", @@ -23,7 +23,7 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" }, "dependencies": { - "@graphql-directive/core": "^1.0.1" + "@graphql-directive/core": "^1.0.2" }, "funding": [ "https://github.com/sponsors/ktutnik" diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 1487f6d..39e78c8 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.2](https://github.com/ktutnik/graphql-directive/compare/@graphql-directive/core@1.0.1...@graphql-directive/core@1.0.2) (2023-04-09) + +### Bug Fixes + +- Fix thrown GraphQLError error message ([#39](https://github.com/ktutnik/graphql-directive/issues/39)) ([9d52b52](https://github.com/ktutnik/graphql-directive/commit/9d52b521fb9e759f6824b8e0f5ceee5d43e20f31)) + ## [1.0.1](https://github.com/ktutnik/graphql-directive/compare/@graphql-directive/core@1.0.0...@graphql-directive/core@1.0.1) (2023-04-08) ### Bug Fixes diff --git a/packages/core/package.json b/packages/core/package.json index c1904ff..eced066 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-directive/core", - "version": "1.0.1", + "version": "1.0.2", "description": "GraphQL directive core functions", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/packages/validator/CHANGELOG.md b/packages/validator/CHANGELOG.md index 9ff8822..0d3851f 100644 --- a/packages/validator/CHANGELOG.md +++ b/packages/validator/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.2](https://github.com/ktutnik/graphql-directive/compare/@graphql-directive/validator@2.0.1...@graphql-directive/validator@2.0.2) (2023-04-09) + +### Bug Fixes + +- Fix thrown GraphQLError error message ([#39](https://github.com/ktutnik/graphql-directive/issues/39)) ([9d52b52](https://github.com/ktutnik/graphql-directive/commit/9d52b521fb9e759f6824b8e0f5ceee5d43e20f31)) + ## [2.0.1](https://github.com/ktutnik/graphql-directive/compare/@graphql-directive/validator@2.0.0...@graphql-directive/validator@2.0.1) (2023-04-08) ### Bug Fixes diff --git a/packages/validator/package.json b/packages/validator/package.json index 54c98ac..96b6d68 100644 --- a/packages/validator/package.json +++ b/packages/validator/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-directive/validator", - "version": "2.0.1", + "version": "2.0.2", "description": "A validator.js wrapper for GraphQL validation directive", "main": "lib/index.js", "types": "lib/index.d.ts", @@ -23,7 +23,7 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" }, "dependencies": { - "@graphql-directive/core": "^1.0.1", + "@graphql-directive/core": "^1.0.2", "@types/validator": "^13.7.14", "validator": "^13.9.0" },