Skip to content

Commit

Permalink
chore: Release %s
Browse files Browse the repository at this point in the history
 - @graphql-directive/auth@1.0.0
 - @graphql-directive/core@1.0.0
 - @graphql-directive/validator@2.0.0
  • Loading branch information
ktutnik committed Apr 7, 2023
1 parent e4a6302 commit 280f220
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 7 deletions.
10 changes: 10 additions & 0 deletions packages/auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0 (2023-04-07)

### Features

- Add authorization directive ([#33](https://github.com/ktutnik/graphql-directive/issues/33)) ([a46d4a2](https://github.com/ktutnik/graphql-directive/commit/a46d4a2211ad9117b33eaeffb0670d87167c7c24))
4 changes: 2 additions & 2 deletions packages/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-directive/auth",
"version": "0.0.0",
"version": "1.0.0",
"description": "GraphQL authorization directive",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -23,7 +23,7 @@
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"@graphql-directive/core": "^0.0.0"
"@graphql-directive/core": "^1.0.0"
},
"funding": [
"https://github.com/sponsors/ktutnik"
Expand Down
12 changes: 12 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0 (2023-04-07)

### Features

- Add authorization directive ([#33](https://github.com/ktutnik/graphql-directive/issues/33)) ([a46d4a2](https://github.com/ktutnik/graphql-directive/commit/a46d4a2211ad9117b33eaeffb0670d87167c7c24))
- Add validate directive ([#2](https://github.com/ktutnik/graphql-directive/issues/2)) ([8955fd4](https://github.com/ktutnik/graphql-directive/commit/8955fd478a2007cedbe6c668fc3fd0a3b4c0d3e9))
- **validator:** Create core logic that is reusable for validator and authorizer ([#31](https://github.com/ktutnik/graphql-directive/issues/31)) ([48cd65f](https://github.com/ktutnik/graphql-directive/commit/48cd65f681aacf4f3d42acb98864af828e8f52d9))
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-directive/core",
"version": "0.0.0",
"version": "1.0.0",
"description": "GraphQL directive core functions",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down Expand Up @@ -32,12 +32,12 @@
"devDependencies": {
"@graphql-tools/schema": "^9.0.16",
"@types/jest": "^29.4.0",
"@types/validator": "^13.7.12",
"graphql": "^16.6.0",
"jest": "^29.4.3",
"trash-cli": "^5.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"@types/validator": "^13.7.12",
"validator": "^13.9.0"
},
"bugs": {
Expand All @@ -49,4 +49,4 @@
"publishConfig": {
"access": "public"
}
}
}
6 changes: 6 additions & 0 deletions packages/validator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0](https://github.com/ktutnik/graphql-directive/compare/@graphql-directive/validator@1.0.0...@graphql-directive/validator@2.0.0) (2023-04-07)

### Features

- **validator:** Create core logic that is reusable for validator and authorizer ([#31](https://github.com/ktutnik/graphql-directive/issues/31)) ([48cd65f](https://github.com/ktutnik/graphql-directive/commit/48cd65f681aacf4f3d42acb98864af828e8f52d9))

# 1.0.0 (2023-03-10)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/validator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-directive/validator",
"version": "1.0.0",
"version": "2.0.0",
"description": "A validator.js wrapper for GraphQL validation directive",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -23,7 +23,7 @@
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"@graphql-directive/core": "^0.0.0",
"@graphql-directive/core": "^1.0.0",
"@types/validator": "^13.7.12",
"validator": "^13.9.0"
},
Expand Down

0 comments on commit 280f220

Please sign in to comment.