From b441f2c49a43c54670302be4ff40bd4d4b953d49 Mon Sep 17 00:00:00 2001 From: Ahmed Elywa Date: Thu, 4 Jul 2024 13:17:48 +0300 Subject: [PATCH] Update @paljs packages to version 7.0.2 Several packages including @paljs/nexus, @paljs/cli, and @paljs/admin have been updated to version 7.0.2. This update fixes sdl TypeScript issues across multiple packages and has updated dependencies from other packages such as @paljs/types and @paljs/utils to the same version. --- packages/admin/CHANGELOG.md | 8 ++++++++ packages/admin/package.json | 2 +- packages/cli/CHANGELOG.md | 13 +++++++++++++ packages/cli/package.json | 2 +- packages/create/CHANGELOG.md | 9 +++++++++ .../examples/apollo-nexus-schema/package.json | 4 ++-- .../create/examples/apollo-sdl-first/package.json | 4 ++-- .../examples/full-stack-nextjs/multi_package.json | 6 +++--- .../create/examples/full-stack-nextjs/package.json | 6 +++--- .../create/examples/graphql-modules/package.json | 4 ++-- packages/create/package.json | 2 +- packages/display/CHANGELOG.md | 6 ++++++ packages/display/package.json | 2 +- packages/generator/CHANGELOG.md | 10 ++++++++++ packages/generator/package.json | 2 +- packages/nexus/CHANGELOG.md | 10 ++++++++++ packages/nexus/package.json | 2 +- packages/plugins/CHANGELOG.md | 9 +++++++++ packages/plugins/package.json | 2 +- packages/schema/CHANGELOG.md | 10 ++++++++++ packages/schema/package.json | 2 +- packages/types/CHANGELOG.md | 6 ++++++ packages/types/package.json | 2 +- packages/utils/CHANGELOG.md | 9 +++++++++ packages/utils/package.json | 2 +- 25 files changed, 112 insertions(+), 22 deletions(-) diff --git a/packages/admin/CHANGELOG.md b/packages/admin/CHANGELOG.md index 6a776a94..deb32141 100644 --- a/packages/admin/CHANGELOG.md +++ b/packages/admin/CHANGELOG.md @@ -1,5 +1,13 @@ # @paljs/admin +## 7.0.6 + +### Patch Changes + +- fixing sdl typescript +- Updated dependencies + - @paljs/types@7.0.2 + ## 7.0.5 ### Patch Changes diff --git a/packages/admin/package.json b/packages/admin/package.json index d5cbc79b..4c2652e0 100644 --- a/packages/admin/package.json +++ b/packages/admin/package.json @@ -1,6 +1,6 @@ { "name": "@paljs/admin", - "version": "7.0.5", + "version": "7.0.6", "main": "index.js", "module": "./esm/index.js", "types": "index.d.ts", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index d377fc0e..fd00dffd 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,18 @@ # @paljs/cli +## 7.0.2 + +### Patch Changes + +- fixing sdl typescript +- Updated dependencies + - @paljs/create@7.0.2 + - @paljs/display@7.0.2 + - @paljs/generator@7.0.2 + - @paljs/schema@7.0.2 + - @paljs/types@7.0.2 + - @paljs/utils@7.0.2 + ## 7.0.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 7f61a870..a5425a73 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@paljs/cli", "description": "Pal cli will be your friend in developing nodejs full-stack projects to auto generate everything for you", - "version": "7.0.1", + "version": "7.0.2", "author": "Ahmed Elewa @AhmedElywa", "bin": { "pal": "./bin/run" diff --git a/packages/create/CHANGELOG.md b/packages/create/CHANGELOG.md index 4d20c278..c62f2a40 100644 --- a/packages/create/CHANGELOG.md +++ b/packages/create/CHANGELOG.md @@ -1,5 +1,14 @@ # @paljs/create +## 7.0.2 + +### Patch Changes + +- fixing sdl typescript +- Updated dependencies + - @paljs/display@7.0.2 + - @paljs/types@7.0.2 + ## 7.0.1 ### Patch Changes diff --git a/packages/create/examples/apollo-nexus-schema/package.json b/packages/create/examples/apollo-nexus-schema/package.json index 80bee85c..475c4cac 100644 --- a/packages/create/examples/apollo-nexus-schema/package.json +++ b/packages/create/examples/apollo-nexus-schema/package.json @@ -18,14 +18,14 @@ "dependencies": { "nexus": "1.x", "@prisma/client": "5.x", - "@paljs/nexus": "7.0.1", + "@paljs/nexus": "7.0.2", "apollo-server": "3.x", "graphql": "16.x" }, "devDependencies": { "prisma": "5.x", "@types/node": "20.x", - "@paljs/cli": "7.0.1", + "@paljs/cli": "7.0.2", "prettier": "2.x", "ts-node": "10.x", "ts-node-dev": "2.x", diff --git a/packages/create/examples/apollo-sdl-first/package.json b/packages/create/examples/apollo-sdl-first/package.json index 06999eee..4b212192 100644 --- a/packages/create/examples/apollo-sdl-first/package.json +++ b/packages/create/examples/apollo-sdl-first/package.json @@ -16,7 +16,7 @@ "dependencies": { "@graphql-tools/merge": "8.x", "@graphql-tools/schema": "9.x", - "@paljs/plugins": "7.0.1", + "@paljs/plugins": "7.0.2", "@prisma/client": "5.x", "apollo-server": "3.x", "graphql": "16.x", @@ -25,7 +25,7 @@ "devDependencies": { "prisma": "5.x", "@types/node": "20.x", - "@paljs/cli": "7.0.1", + "@paljs/cli": "7.0.2", "prettier": "2.x", "ts-node": "10.x", "ts-node-dev": "2.x", diff --git a/packages/create/examples/full-stack-nextjs/multi_package.json b/packages/create/examples/full-stack-nextjs/multi_package.json index 60f71280..7e01be55 100644 --- a/packages/create/examples/full-stack-nextjs/multi_package.json +++ b/packages/create/examples/full-stack-nextjs/multi_package.json @@ -24,8 +24,8 @@ "@heroicons/react": "1.x", "@material-ui/core": "4.x", "@material-ui/icons": "4.x", - "@paljs/admin": "7.0.5", - "@paljs/nexus": "7.0.1", + "@paljs/admin": "7.0.6", + "@paljs/nexus": "7.0.2", "@prisma/client": "3.x", "apollo-server-micro": "3.x", "bcryptjs": "2.x", @@ -46,7 +46,7 @@ "@graphql-codegen/typescript": "2.x", "@graphql-codegen/typescript-operations": "2.x", "@graphql-codegen/typescript-react-apollo": "3.x", - "@paljs/cli": "7.0.1", + "@paljs/cli": "7.0.2", "@types/bcryptjs": "2.x", "@types/cookie": "0.x", "@types/graphql": "14.x", diff --git a/packages/create/examples/full-stack-nextjs/package.json b/packages/create/examples/full-stack-nextjs/package.json index 24aa337d..1617e467 100644 --- a/packages/create/examples/full-stack-nextjs/package.json +++ b/packages/create/examples/full-stack-nextjs/package.json @@ -25,8 +25,8 @@ "@heroicons/react": "1.x", "@material-ui/core": "4.x", "@material-ui/icons": "4.x", - "@paljs/admin": "7.0.5", - "@paljs/nexus": "7.0.1", + "@paljs/admin": "7.0.6", + "@paljs/nexus": "7.0.2", "@prisma/client": "5.x", "apollo-server-micro": "3.x", "bcryptjs": "2.x", @@ -47,7 +47,7 @@ "@graphql-codegen/typescript": "2.x", "@graphql-codegen/typescript-operations": "2.x", "@graphql-codegen/typescript-react-apollo": "3.x", - "@paljs/cli": "7.0.1", + "@paljs/cli": "7.0.2", "@types/bcryptjs": "2.x", "@types/cookie": "0.x", "@types/graphql": "14.x", diff --git a/packages/create/examples/graphql-modules/package.json b/packages/create/examples/graphql-modules/package.json index e1fb967d..1e33ef52 100644 --- a/packages/create/examples/graphql-modules/package.json +++ b/packages/create/examples/graphql-modules/package.json @@ -15,7 +15,7 @@ }, "dependencies": { "graphql-modules": "1.x", - "@paljs/plugins": "7.0.1", + "@paljs/plugins": "7.0.2", "@prisma/client": "5.x", "apollo-server": "3.x", "graphql": "16.x", @@ -24,7 +24,7 @@ "devDependencies": { "prisma": "5.x", "@types/node": "20.x", - "@paljs/cli": "7.0.1", + "@paljs/cli": "7.0.2", "prettier": "2.x", "ts-node": "10.x", "ts-node-dev": "2.x", diff --git a/packages/create/package.json b/packages/create/package.json index 5c8cb221..746e27e3 100644 --- a/packages/create/package.json +++ b/packages/create/package.json @@ -1,6 +1,6 @@ { "name": "@paljs/create", - "version": "7.0.1", + "version": "7.0.2", "main": "dist/index.js", "module": "dist/create.esm.js", "types": "dist/index.d.ts", diff --git a/packages/display/CHANGELOG.md b/packages/display/CHANGELOG.md index 40fbd1b8..5ee9bf9c 100644 --- a/packages/display/CHANGELOG.md +++ b/packages/display/CHANGELOG.md @@ -1,5 +1,11 @@ # @paljs/display +## 7.0.2 + +### Patch Changes + +- fixing sdl typescript + ## 7.0.1 ### Patch Changes diff --git a/packages/display/package.json b/packages/display/package.json index fe4f9aff..9951965e 100644 --- a/packages/display/package.json +++ b/packages/display/package.json @@ -1,6 +1,6 @@ { "name": "@paljs/display", - "version": "7.0.1", + "version": "7.0.2", "description": "Display package for the paljs CLI", "homepage": "https://paljs.com", "license": "MIT", diff --git a/packages/generator/CHANGELOG.md b/packages/generator/CHANGELOG.md index b6680ed3..26773339 100644 --- a/packages/generator/CHANGELOG.md +++ b/packages/generator/CHANGELOG.md @@ -1,5 +1,15 @@ # @paljs/generator +## 7.0.2 + +### Patch Changes + +- fixing sdl typescript +- Updated dependencies + - @paljs/schema@7.0.2 + - @paljs/types@7.0.2 + - @paljs/utils@7.0.2 + ## 7.0.1 ### Patch Changes diff --git a/packages/generator/package.json b/packages/generator/package.json index 05bbcd1d..0aa9ba93 100644 --- a/packages/generator/package.json +++ b/packages/generator/package.json @@ -1,6 +1,6 @@ { "name": "@paljs/generator", - "version": "7.0.1", + "version": "7.0.2", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { diff --git a/packages/nexus/CHANGELOG.md b/packages/nexus/CHANGELOG.md index 42e50cfe..2522a049 100644 --- a/packages/nexus/CHANGELOG.md +++ b/packages/nexus/CHANGELOG.md @@ -1,5 +1,15 @@ # @paljs/nexus +## 7.0.2 + +### Patch Changes + +- fixing sdl typescript +- Updated dependencies + - @paljs/plugins@7.0.2 + - @paljs/types@7.0.2 + - @paljs/utils@7.0.2 + ## 7.0.1 ### Patch Changes diff --git a/packages/nexus/package.json b/packages/nexus/package.json index 323b7f17..e8d1b2a2 100644 --- a/packages/nexus/package.json +++ b/packages/nexus/package.json @@ -1,6 +1,6 @@ { "name": "@paljs/nexus", - "version": "7.0.1", + "version": "7.0.2", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { diff --git a/packages/plugins/CHANGELOG.md b/packages/plugins/CHANGELOG.md index f75e34e6..c8110396 100644 --- a/packages/plugins/CHANGELOG.md +++ b/packages/plugins/CHANGELOG.md @@ -1,5 +1,14 @@ # @paljs/plugins +## 7.0.2 + +### Patch Changes + +- fixing sdl typescript +- Updated dependencies + - @paljs/types@7.0.2 + - @paljs/utils@7.0.2 + ## 7.0.1 ### Patch Changes diff --git a/packages/plugins/package.json b/packages/plugins/package.json index 74560778..531a30cc 100644 --- a/packages/plugins/package.json +++ b/packages/plugins/package.json @@ -1,6 +1,6 @@ { "name": "@paljs/plugins", - "version": "7.0.1", + "version": "7.0.2", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { diff --git a/packages/schema/CHANGELOG.md b/packages/schema/CHANGELOG.md index 2b74f521..ec5aac15 100644 --- a/packages/schema/CHANGELOG.md +++ b/packages/schema/CHANGELOG.md @@ -1,5 +1,15 @@ # @paljs/schema +## 7.0.2 + +### Patch Changes + +- fixing sdl typescript +- Updated dependencies + - @paljs/display@7.0.2 + - @paljs/types@7.0.2 + - @paljs/utils@7.0.2 + ## 7.0.1 ### Patch Changes diff --git a/packages/schema/package.json b/packages/schema/package.json index dad27384..6871e358 100644 --- a/packages/schema/package.json +++ b/packages/schema/package.json @@ -1,6 +1,6 @@ { "name": "@paljs/schema", - "version": "7.0.1", + "version": "7.0.2", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 9376f3fe..d9afa361 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,5 +1,11 @@ # @paljs/types +## 7.0.2 + +### Patch Changes + +- fixing sdl typescript + ## 7.0.1 ### Patch Changes diff --git a/packages/types/package.json b/packages/types/package.json index ac4c7d89..a9b5d091 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@paljs/types", - "version": "7.0.1", + "version": "7.0.2", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 6cd847e6..a9206f12 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,14 @@ # @paljs/utils +## 7.0.2 + +### Patch Changes + +- fixing sdl typescript +- Updated dependencies + - @paljs/display@7.0.2 + - @paljs/types@7.0.2 + ## 7.0.1 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index 15a144c5..1150c632 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@paljs/utils", - "version": "7.0.1", + "version": "7.0.2", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": {