Skip to content

Commit

Permalink
Revert "Downgrade graphql dependency version (#3134)"
Browse files Browse the repository at this point in the history
This reverts commit 0aa9c18.
  • Loading branch information
emmenko authored Jul 17, 2023
1 parent 0aa9c18 commit a6c72ba
Show file tree
Hide file tree
Showing 12 changed files with 234 additions and 493 deletions.
10 changes: 0 additions & 10 deletions .changeset/fair-peas-pull.md

This file was deleted.

4 changes: 0 additions & 4 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@
{
"matchPackageNames": ["@types/react"],
"allowedVersions": "<17.0.57"
},
{
"matchPackageNames": ["graphql"],
"allowedVersions": "<16"
}
],
"lockFileMaintenance": {
Expand Down
2 changes: 1 addition & 1 deletion application-templates/starter-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"eslint-formatter-pretty": "4.1.0",
"eslint-plugin-graphql": "^4.0.0",
"formik": "2.2.9",
"graphql": "^15.8.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"jest": "29.5.0",
"jest-runner-eslint": "2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion application-templates/starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"eslint-formatter-pretty": "4.1.0",
"eslint-plugin-graphql": "^4.0.0",
"formik": "2.2.9",
"graphql": "^15.8.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"jest": "29.5.0",
"jest-runner-eslint": "2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"eslint-formatter-pretty": "4.1.0",
"eslint-plugin-graphql": "^4.0.0",
"find-up": "5.0.0",
"graphql": "15.8.0",
"graphql": "16.6.0",
"husky": "7.0.4",
"jest": "29.5.0",
"jest-each": "29.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/application-shell-connectors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@types/lodash": "^4.14.191",
"@types/prop-types": "^15.7.5",
"@types/react": "^17.0.53",
"graphql": "15.8.0",
"graphql": "16.6.0",
"lodash": "4.17.21",
"moment-timezone": "^0.5.40",
"prop-types": "15.8.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/application-shell/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"debounce-async": "0.0.2",
"downshift": "6.1.12",
"fuse.js": "6.6.2",
"graphql": "15.8.0",
"graphql": "16.6.0",
"history": "4.10.1",
"is-retina": "1.0.3",
"jwt-decode": "3.1.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -404,17 +404,11 @@ describe('when loading user fails with an unauthorized graphql error', () => {
graphql.query('FetchLoggedInUser', (req, res, ctx) =>
res(
ctx.errors([
new GraphQLError(
'User is not authorized',
undefined,
undefined,
undefined,
undefined,
undefined,
{
new GraphQLError('User is not authorized', {
extensions: {
code: 'UNAUTHENTICATED',
}
),
},
}),
])
)
)
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-preset-mc-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"babel-preset-jest": "29.5.0",
"colors": "1.4.0",
"cosmiconfig": "7.1.0",
"graphql": "15.8.0",
"graphql": "16.6.0",
"graphql-tag": "^2.12.6",
"identity-obj-proxy": "3.0.0",
"intl": "1.2.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/mc-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"dotenv": "16.0.3",
"dotenv-expand": "8.0.3",
"fs-extra": "10.1.0",
"graphql": "15.8.0",
"graphql": "16.6.0",
"graphql-request": "5.2.0",
"graphql-tag": "^2.12.6",
"html-webpack-plugin": "5.5.1",
Expand Down
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@commercetools-uikit/text": "16.4.0",
"@emotion/react": "11.11.0",
"apollo-link-rest": "^0.9.0",
"graphql": "15.8.0",
"graphql": "16.6.0",
"graphql-anywhere": "^4.2.8",
"moment": "^2.29.4",
"moment-timezone": "^0.5.40",
Expand Down
Loading

0 comments on commit a6c72ba

Please sign in to comment.