@graphcommerce/graphql-mesh 4.1.0 → 4.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1439](https://github.com/graphcommerce-org/graphcommerce/pull/1439) [`25ef6cf08`](https://github.com/graphcommerce-org/graphcommerce/commit/25ef6cf08c278105307d6f604b7135d637e9046c) Thanks [@paales](https://github.com/paales)! - Updated dependencies
8
+
9
+ ## 4.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#1429](https://github.com/graphcommerce-org/graphcommerce/pull/1429) [`ba8cd4d34`](https://github.com/graphcommerce-org/graphcommerce/commit/ba8cd4d3480a7ec7e555b051cfd0fbc809c7aa12) Thanks [@paales](https://github.com/paales)! - mesh couldn’t be generated properly in a non-monorepo setup
14
+
15
+ ## 4.1.1
16
+
17
+ ### Patch Changes
18
+
19
+ - [#1427](https://github.com/graphcommerce-org/graphcommerce/pull/1427) [`06f7bdff8`](https://github.com/graphcommerce-org/graphcommerce/commit/06f7bdff882396f2b0e1a2873fbb718c7b06fab4) Thanks [@paales](https://github.com/paales)! - Use playground title provided by the config
20
+
21
+ * [#1426](https://github.com/graphcommerce-org/graphcommerce/pull/1426) [`100f4c38c`](https://github.com/graphcommerce-org/graphcommerce/commit/100f4c38c8fcda4bc6e0425e38028b550b60adc2) Thanks [@paales](https://github.com/paales)! - Upgrade packages
22
+
3
23
  ## 4.1.0
4
24
 
5
25
  ### Minor Changes
@@ -6,7 +6,7 @@ export async function createServer(endpoint: string) {
6
6
  // retrieve the mesh instance (with configured Envelop plugins)
7
7
  const mesh = await getBuiltMesh()
8
8
 
9
- const { cors } = rawConfig.serve ?? {}
9
+ const { cors, playgroundTitle } = rawConfig.serve ?? {}
10
10
 
11
11
  // pass the Mesh instance to Yoga and configure GraphiQL
12
12
  const server = createYogaServer({
@@ -22,7 +22,7 @@ export async function createServer(endpoint: string) {
22
22
  context: ({ req }) => ({ ...req, ...mesh.meshContext }),
23
23
  graphiql: {
24
24
  endpoint,
25
- title: 'GraphCommerce® Mesh',
25
+ title: playgroundTitle,
26
26
  },
27
27
  maskedErrors: false,
28
28
  parserCache: false,
package/package.json CHANGED
@@ -2,27 +2,27 @@
2
2
  "name": "@graphcommerce/graphql-mesh",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.1.0",
5
+ "version": "4.1.3",
6
6
  "author": "",
7
7
  "license": "MIT",
8
8
  "main": "index.ts",
9
9
  "dependencies": {
10
- "@graphql-mesh/config": "0.34.4",
11
- "@graphql-mesh/graphql": "0.23.6",
12
- "@graphql-mesh/merger-stitching": "0.15.36",
13
- "@graphql-mesh/runtime": "0.33.13",
14
- "@graphql-mesh/store": "0.7.5",
15
- "@graphql-mesh/transform-cache": "0.11.43",
16
- "@graphql-mesh/transform-federation": "0.8.44",
17
- "@graphql-mesh/transform-filter-schema": "0.14.43",
18
- "@graphql-mesh/types": "0.70.5",
19
- "@graphql-mesh/utils": "0.33.5",
20
- "@graphql-yoga/node": "^2.3.0",
21
- "graphql": "16.3.0",
10
+ "@graphql-mesh/config": "0.36.1",
11
+ "@graphql-mesh/graphql": "0.25.2",
12
+ "@graphql-mesh/merger-stitching": "0.15.45",
13
+ "@graphql-mesh/runtime": "0.34.6",
14
+ "@graphql-mesh/store": "0.8.4",
15
+ "@graphql-mesh/transform-cache": "0.12.6",
16
+ "@graphql-mesh/transform-federation": "0.8.52",
17
+ "@graphql-mesh/transform-filter-schema": "0.14.51",
18
+ "@graphql-mesh/types": "0.72.1",
19
+ "@graphql-mesh/utils": "0.34.6",
20
+ "@graphql-yoga/node": "^2.5.0",
21
+ "graphql": "16.4.0",
22
22
  "next": "12.1.5"
23
23
  },
24
24
  "devDependencies": {
25
- "@graphcommerce/eslint-config-pwa": "^4.1.5",
25
+ "@graphcommerce/eslint-config-pwa": "^4.1.6",
26
26
  "@graphcommerce/prettier-config-pwa": "^4.0.6",
27
27
  "@graphcommerce/typescript-config-pwa": "^4.0.2",
28
28
  "@playwright/test": "^1.21.1",
package/tsconfig.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "exclude": ["**/node_modules", "**/.*/"],
3
3
  "include": ["**/*.ts", "**/*.tsx"],
4
- "extends": "@graphcommerce/typescript-config-pwa/nextjs.json"
4
+ "extends": "@graphcommerce/typescript-config-pwa/node.json"
5
5
  }