domjtalbot / nx-mesh

GraphQL Mesh support for Nx
https://www.npmjs.com/package/nx-mesh
MIT License
24 stars 1 forks source link

fix(deps): update dependency @graphql-mesh/cli to v0.82.22 [security] - autoclosed #129

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-mesh/cli 0.79.3 -> 0.82.22 age adoption passing confidence

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.

GitHub Vulnerability Alerts

GHSA-j2wh-wrv3-4x4g

Summary

Missing check vulnerability in the static file handler allows any client to access the files in the server's file system

Details

When staticFiles is set in the serve settings in the configuration file, the following handler doesn't check if absolutePath is still under the directory provided as staticFiles;

  if (staticFiles) {
    router.get('/:relativePath+', async request => {
      let { relativePath } = request.params;
      if (!relativePath) {
        relativePath = 'index.html';
      }
      const absolutePath = path.join(baseDir, staticFiles, relativePath);
      if (absolutePath.includes(staticFiles) && (await pathExists(absolutePath))) {
        const readStream = fs.createReadStream(absolutePath);
        return new Response(readStream as any, {
          status: 200,
        });
      }
      return undefined;
    });

Example scenario

To reproduce it, set staticFiles to the relative path of a directory in .meshrc.yml;

serve:
   staticFiles: ./public

Then start the server with mesh dev, and browse to /..%2fpackage.json then you will see the content of package.json. You can even go deeper to see sensitive data; /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd

Impact and solution

If staticFiles is set under serve in the configuration file. you have two options to fix vulnerability;

Credits

Thanks alanwillms@gmail.com for reporting this vulnerability with details


Release Notes

Urigo/graphql-mesh ### [`v0.82.22`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08222) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.21...@graphql-mesh/cli@0.82.22) ##### Patch Changes - [#​5153](https://togithub.com/Urigo/graphql-mesh/pull/5153) [`5c19f8d6f`](https://togithub.com/Urigo/graphql-mesh/commit/5c19f8d6f79f2d9bfbeb6458c8dc7a1729c37db9) Thanks [@​ardatan](https://togithub.com/ardatan)! - Fix `createBuiltMeshHTTPHandler`'s context generic - Updated dependencies \[[`95d93e7c1`](https://togithub.com/Urigo/graphql-mesh/commit/95d93e7c140c2995b37e9d822aa3fe4e24ed2e78), [`5c19f8d6f`](https://togithub.com/Urigo/graphql-mesh/commit/5c19f8d6f79f2d9bfbeb6458c8dc7a1729c37db9)]: - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.19 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).91.5 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).1.6 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.14 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.13 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.13 ### [`v0.82.21`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08221) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/af00412e14688465347ada7878060519d837c63d...@graphql-mesh/cli@0.82.21) ##### Patch Changes - Updated dependencies \[[`63ab17f0b`](https://togithub.com/Urigo/graphql-mesh/commit/63ab17f0bd402b5a3923d752ba715f556f3beadd)]: - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).91.4 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).1.5 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.18 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.13 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.12 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.12 ### [`v0.82.20`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08220) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.19...af00412e14688465347ada7878060519d837c63d) ##### Patch Changes - Updated dependencies \[[`4d61de74e`](https://togithub.com/Urigo/graphql-mesh/commit/4d61de74ee4bc288eb488c55ae2597b1cb5654a1)]: - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.17 ### [`v0.82.19`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08219) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/8f3c06226a1940e00b8cd50514e4d553e3431be5...@graphql-mesh/cli@0.82.19) ##### Patch Changes - Updated dependencies \[[`1129efbb4`](https://togithub.com/Urigo/graphql-mesh/commit/1129efbb4cb17ec088d48ebfcc9610823085d025)]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.12 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.16 ### [`v0.82.17`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08217) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.16...8f3c06226a1940e00b8cd50514e4d553e3431be5) ##### Patch Changes - [#​5130](https://togithub.com/Urigo/graphql-mesh/pull/5130) [`743caf3c8`](https://togithub.com/Urigo/graphql-mesh/commit/743caf3c8a0f3ebcaae1e4525b2c10b281cdc3aa) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`ws@8.12.1` ↗︎](https://www.npmjs.com/package/ws/v/8.12.1) (from `8.12.0`, in `dependencies`) - Updated dependencies \[[`975715275`](https://togithub.com/Urigo/graphql-mesh/commit/9757152751e37062bca4ba114bee65a0c79a3d4d), [`989a47802`](https://togithub.com/Urigo/graphql-mesh/commit/989a478027b703ab969d529f09bc83071fe4f96f), [`3f4ca5b6b`](https://togithub.com/Urigo/graphql-mesh/commit/3f4ca5b6b39b1946fa7bd10f0de2a69b8b414376)]: - [@​graphql-mesh/cross-helpers](https://togithub.com/graphql-mesh/cross-helpers)[@​0](https://togithub.com/0).3.3 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).91.2 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.10 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).1.3 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.14 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.10 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.10 ### [`v0.82.16`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08216) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.15...@graphql-mesh/cli@0.82.16) ##### Patch Changes - Updated dependencies \[[`d694ccc1f`](https://togithub.com/Urigo/graphql-mesh/commit/d694ccc1f5a2cbc3ed97778a3210594005f2830b)]: - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.9 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).1.2 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.13 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.9 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.9 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).91.1 ### [`v0.82.15`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08215) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.14...@graphql-mesh/cli@0.82.15) ##### Patch Changes - [#​5091](https://togithub.com/Urigo/graphql-mesh/pull/5091) [`89bb72165`](https://togithub.com/Urigo/graphql-mesh/commit/89bb7216580a05740a377962ae988a3674b6282e) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-tools/utils@9.2.1` ↗︎](https://www.npmjs.com/package/@​graphql-tools/utils/v/9.2.1) (from `9.1.4`, in `dependencies`) - Updated dependency [`graphql-ws@5.11.3` ↗︎](https://www.npmjs.com/package/graphql-ws/v/5.11.3) (from `5.11.2`, in `dependencies`) - [#​5108](https://togithub.com/Urigo/graphql-mesh/pull/5108) [`de470cf42`](https://togithub.com/Urigo/graphql-mesh/commit/de470cf42c466d0ca3ca4ef911c4956e9a0d366a) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-codegen/core@3.0.0` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/core/v/3.0.0) (from `2.6.8`, in `dependencies`) - Updated dependency [`@graphql-codegen/typed-document-node@3.0.0` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typed-document-node/v/3.0.0) (from `2.3.12`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript@3.0.0` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript/v/3.0.0) (from `2.8.8`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-operations@3.0.0` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-operations/v/3.0.0) (from `2.5.13`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-resolvers@3.0.0` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-resolvers/v/3.0.0) (from `2.7.13`, in `dependencies`) - Updated dependencies \[[`89bb72165`](https://togithub.com/Urigo/graphql-mesh/commit/89bb7216580a05740a377962ae988a3674b6282e), [`89bb72165`](https://togithub.com/Urigo/graphql-mesh/commit/89bb7216580a05740a377962ae988a3674b6282e), [`89bb72165`](https://togithub.com/Urigo/graphql-mesh/commit/89bb7216580a05740a377962ae988a3674b6282e), [`89bb72165`](https://togithub.com/Urigo/graphql-mesh/commit/89bb7216580a05740a377962ae988a3674b6282e), [`89bb72165`](https://togithub.com/Urigo/graphql-mesh/commit/89bb7216580a05740a377962ae988a3674b6282e), [`89bb72165`](https://togithub.com/Urigo/graphql-mesh/commit/89bb7216580a05740a377962ae988a3674b6282e), [`89bb72165`](https://togithub.com/Urigo/graphql-mesh/commit/89bb7216580a05740a377962ae988a3674b6282e), [`7e8bb87dd`](https://togithub.com/Urigo/graphql-mesh/commit/7e8bb87ddf4cb1210db6873334bdd18007cc0552)]: - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).1.1 - [@​graphql-mesh/cross-helpers](https://togithub.com/graphql-mesh/cross-helpers)[@​0](https://togithub.com/0).3.2 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.12 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.8 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.8 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).91.0 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.8 ### [`v0.82.14`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08214) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.13...@graphql-mesh/cli@0.82.14) ##### Patch Changes - [#​5092](https://togithub.com/Urigo/graphql-mesh/pull/5092) [`a5fbc9562`](https://togithub.com/Urigo/graphql-mesh/commit/a5fbc95627c156208e7f3891ea871d6c9d4ecfe6) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-codegen/typescript@2.8.8` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript/v/2.8.8) (from `2.8.7`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-operations@2.5.13` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-operations/v/2.5.13) (from `2.5.12`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-resolvers@2.7.13` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-resolvers/v/2.7.13) (from `2.7.12`, in `dependencies`) - [#​5094](https://togithub.com/Urigo/graphql-mesh/pull/5094) [`a249250a7`](https://togithub.com/Urigo/graphql-mesh/commit/a249250a77eacb93751d2f17f2f19e3f6f176ee1) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`typescript@4.9.5` ↗︎](https://www.npmjs.com/package/typescript/v/4.9.5) (from `4.9.4`, in `dependencies`) - Updated dependencies \[[`93692213a`](https://togithub.com/Urigo/graphql-mesh/commit/93692213a7397110a4ad87cb7d4c752f947f2013), [`2005d2b28`](https://togithub.com/Urigo/graphql-mesh/commit/2005d2b2864b13ae163e86b9ea6627f2a4b2ff72), [`2005d2b28`](https://togithub.com/Urigo/graphql-mesh/commit/2005d2b2864b13ae163e86b9ea6627f2a4b2ff72), [`2005d2b28`](https://togithub.com/Urigo/graphql-mesh/commit/2005d2b2864b13ae163e86b9ea6627f2a4b2ff72), [`74124248e`](https://togithub.com/Urigo/graphql-mesh/commit/74124248ea73e8e75abdd9f02d471eb45e481013), [`bcf29dfd0`](https://togithub.com/Urigo/graphql-mesh/commit/bcf29dfd02d19cf5c770b83fc627f059569a0fac)]: - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.11 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.7 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).90.0 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.7 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).1.0 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.7 ### [`v0.82.13`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08213) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.12...@graphql-mesh/cli@0.82.13) ##### Patch Changes - Updated dependencies \[[`ed5843d8a`](https://togithub.com/Urigo/graphql-mesh/commit/ed5843d8a771045eed61cdad33b72734666577d5), [`ed5843d8a`](https://togithub.com/Urigo/graphql-mesh/commit/ed5843d8a771045eed61cdad33b72734666577d5), [`ed5843d8a`](https://togithub.com/Urigo/graphql-mesh/commit/ed5843d8a771045eed61cdad33b72734666577d5), [`ed5843d8a`](https://togithub.com/Urigo/graphql-mesh/commit/ed5843d8a771045eed61cdad33b72734666577d5)]: - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).0.7 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.6 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).89.5 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.6 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.10 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.6 ### [`v0.82.12`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08212) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.11...@graphql-mesh/cli@0.82.12) ##### Patch Changes - [#​5067](https://togithub.com/Urigo/graphql-mesh/pull/5067) [`9d5c92245`](https://togithub.com/Urigo/graphql-mesh/commit/9d5c92245f6d7ff937ddb950dca38b20f5fabe4c) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`rimraf@4.1.2` ↗︎](https://www.npmjs.com/package/rimraf/v/4.1.2) (from `4.1.1`, in `dependencies`) - [#​5061](https://togithub.com/Urigo/graphql-mesh/pull/5061) [`cd389e465`](https://togithub.com/Urigo/graphql-mesh/commit/cd389e465c12e24cfb443ffb843a03843c4028ec) Thanks [@​ardatan](https://togithub.com/ardatan)! - Clarify the error message in case of an invalid configuration - Updated dependencies \[[`a4ccf07fc`](https://togithub.com/Urigo/graphql-mesh/commit/a4ccf07fca48813878284d335d7ef8a37a89dacb)]: - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.9 ### [`v0.82.11`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08211) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.10...@graphql-mesh/cli@0.82.11) ##### Patch Changes - [#​5049](https://togithub.com/Urigo/graphql-mesh/pull/5049) [`cb7e2c568`](https://togithub.com/Urigo/graphql-mesh/commit/cb7e2c568dbf027c0023b4a933f5b8f748ac90be) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`mkdirp@2.1.3` ↗︎](https://www.npmjs.com/package/mkdirp/v/2.1.3) (from `2.1.1`, in `dependencies`) - Updated dependency [`rimraf@4.1.1` ↗︎](https://www.npmjs.com/package/rimraf/v/4.1.1) (from `4.1.0`, in `dependencies`) ### [`v0.82.10`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08210) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.9...@graphql-mesh/cli@0.82.10) ##### Patch Changes - [#​4984](https://togithub.com/Urigo/graphql-mesh/pull/4984) [`5c8622ead`](https://togithub.com/Urigo/graphql-mesh/commit/5c8622ead5588302fa84b0d40e7b25068c17fde1) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`json5@​2.2.3` ↗︎](https://www.npmjs.com/package/json5/v/2.2.3) (from `2.2.2`, in `dependencies`) - [#​4986](https://togithub.com/Urigo/graphql-mesh/pull/4986) [`0710f10c7`](https://togithub.com/Urigo/graphql-mesh/commit/0710f10c7197b57403835edb0678eaff6b4daeca) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`tsconfig-paths@4.1.2` ↗︎](https://www.npmjs.com/package/tsconfig-paths/v/4.1.2) (from `4.1.1`, in `dependencies`) - [#​4991](https://togithub.com/Urigo/graphql-mesh/pull/4991) [`bb5abc15d`](https://togithub.com/Urigo/graphql-mesh/commit/bb5abc15d8ff9227f5fc9fafe78d1befc7ae0797) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`ajv@8.12.0` ↗︎](https://www.npmjs.com/package/ajv/v/8.12.0) (from `8.11.2`, in `dependencies`) - [#​4996](https://togithub.com/Urigo/graphql-mesh/pull/4996) [`e91e1640c`](https://togithub.com/Urigo/graphql-mesh/commit/e91e1640ce084a2b3eda4c2f64433c0baf5dda06) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-codegen/typescript@2.8.7` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript/v/2.8.7) (from `2.8.6`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-operations@2.5.12` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-operations/v/2.5.12) (from `2.5.11`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-resolvers@2.7.12` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-resolvers/v/2.7.12) (from `2.7.11`, in `dependencies`) - [#​4997](https://togithub.com/Urigo/graphql-mesh/pull/4997) [`ffe384441`](https://togithub.com/Urigo/graphql-mesh/commit/ffe384441539625048b850abb58721cfae885acd) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-codegen/typed-document-node@2.3.12` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typed-document-node/v/2.3.12) (from `2.3.11`, in `dependencies`) - [#​5005](https://togithub.com/Urigo/graphql-mesh/pull/5005) [`07365e684`](https://togithub.com/Urigo/graphql-mesh/commit/07365e684a52d5a72d3e3dfbd292efb9289a0239) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`ws@8.12.0` ↗︎](https://www.npmjs.com/package/ws/v/8.12.0) (from `8.11.0`, in `dependencies`) - [#​5028](https://togithub.com/Urigo/graphql-mesh/pull/5028) [`994813331`](https://togithub.com/Urigo/graphql-mesh/commit/99481333186e8471207e21ad14c7883f7215ce1c) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-tools/utils@9.1.4` ↗︎](https://www.npmjs.com/package/@​graphql-tools/utils/v/9.1.4) (from `9.1.3`, in `dependencies`) - [#​5031](https://togithub.com/Urigo/graphql-mesh/pull/5031) [`46d1c8623`](https://togithub.com/Urigo/graphql-mesh/commit/46d1c86239f7bfe5b0f0e2d50907aa797bf92da5) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`rimraf@4.0.7` ↗︎](https://www.npmjs.com/package/rimraf/v/4.0.7) (from `3.0.2`, in `dependencies`) - [#​5042](https://togithub.com/Urigo/graphql-mesh/pull/5042) [`2f0c312df`](https://togithub.com/Urigo/graphql-mesh/commit/2f0c312dfd4880896d2c084c985bca85130d7bd9) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`mkdirp@2.0.0` ↗︎](https://www.npmjs.com/package/mkdirp/v/2.0.0) (from `1.0.4`, in `dependencies`) - [#​5044](https://togithub.com/Urigo/graphql-mesh/pull/5044) [`bc28f678e`](https://togithub.com/Urigo/graphql-mesh/commit/bc28f678ef3f11fd3270b330150861d3f310ca22) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`mkdirp@2.1.1` ↗︎](https://www.npmjs.com/package/mkdirp/v/2.1.1) (from `2.0.0`, in `dependencies`) - Updated dependency [`rimraf@4.1.0` ↗︎](https://www.npmjs.com/package/rimraf/v/4.1.0) (from `4.0.7`, in `dependencies`) - [#​4930](https://togithub.com/Urigo/graphql-mesh/pull/4930) [`c015b02a1`](https://togithub.com/Urigo/graphql-mesh/commit/c015b02a1aa50e4d760c3fd59f76dc5dfe587664) Thanks [@​gilgardosh](https://togithub.com/gilgardosh)! - Prettier fixes - [#​4971](https://togithub.com/Urigo/graphql-mesh/pull/4971) [`8429bf234`](https://togithub.com/Urigo/graphql-mesh/commit/8429bf23457aea19969dab246fc4f0517644bf12) Thanks [@​gilgardosh](https://togithub.com/gilgardosh)! - Enhance ESM/CJS distinction on artifacts generation - Updated dependencies \[[`ad938f485`](https://togithub.com/Urigo/graphql-mesh/commit/ad938f485a9b881a0379284ac582c6c599aa1117), [`994813331`](https://togithub.com/Urigo/graphql-mesh/commit/99481333186e8471207e21ad14c7883f7215ce1c), [`994813331`](https://togithub.com/Urigo/graphql-mesh/commit/99481333186e8471207e21ad14c7883f7215ce1c), [`ad938f485`](https://togithub.com/Urigo/graphql-mesh/commit/ad938f485a9b881a0379284ac582c6c599aa1117), [`bb5abc15d`](https://togithub.com/Urigo/graphql-mesh/commit/bb5abc15d8ff9227f5fc9fafe78d1befc7ae0797), [`d573d203f`](https://togithub.com/Urigo/graphql-mesh/commit/d573d203f8bb04ff75cb4d83ba0deaa2bf9818a7), [`d17b6d09d`](https://togithub.com/Urigo/graphql-mesh/commit/d17b6d09d0f7ddfd529736ea4371f66feafe64ac), [`ad938f485`](https://togithub.com/Urigo/graphql-mesh/commit/ad938f485a9b881a0379284ac582c6c599aa1117), [`994813331`](https://togithub.com/Urigo/graphql-mesh/commit/99481333186e8471207e21ad14c7883f7215ce1c), [`994813331`](https://togithub.com/Urigo/graphql-mesh/commit/99481333186e8471207e21ad14c7883f7215ce1c), [`994813331`](https://togithub.com/Urigo/graphql-mesh/commit/99481333186e8471207e21ad14c7883f7215ce1c), [`994813331`](https://togithub.com/Urigo/graphql-mesh/commit/99481333186e8471207e21ad14c7883f7215ce1c), [`c015b02a1`](https://togithub.com/Urigo/graphql-mesh/commit/c015b02a1aa50e4d760c3fd59f76dc5dfe587664), [`4f0b102dd`](https://togithub.com/Urigo/graphql-mesh/commit/4f0b102ddb093a14c8dec613c3b59db88ba1069e), [`d573d203f`](https://togithub.com/Urigo/graphql-mesh/commit/d573d203f8bb04ff75cb4d83ba0deaa2bf9818a7)]: - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).0.6 - [@​graphql-mesh/cross-helpers](https://togithub.com/graphql-mesh/cross-helpers)[@​0](https://togithub.com/0).3.1 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.8 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.5 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.5 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).89.4 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.5 ### [`v0.82.9`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0829) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.8...@graphql-mesh/cli@0.82.9) ##### Patch Changes - Updated dependencies \[[`e701041f3`](https://togithub.com/Urigo/graphql-mesh/commit/e701041f315e918e74719e2f89e946f56320157e)]: - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.7 ### [`v0.82.8`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0828) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.7...@graphql-mesh/cli@0.82.8) ##### Patch Changes - [#​4965](https://togithub.com/Urigo/graphql-mesh/pull/4965) [`06db3cd64`](https://togithub.com/Urigo/graphql-mesh/commit/06db3cd6479853e536e36cc2619c94dea9c7e5ed) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-codegen/typed-document-node@2.3.11` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typed-document-node/v/2.3.11) (from `2.3.10`, in `dependencies`) - [#​4976](https://togithub.com/Urigo/graphql-mesh/pull/4976) [`f5f5dbb33`](https://togithub.com/Urigo/graphql-mesh/commit/f5f5dbb33e2b5249b9dff53ca80d12758e7f8ff8) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-codegen/typescript@2.8.6` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript/v/2.8.6) (from `2.8.5`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-operations@2.5.11` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-operations/v/2.5.11) (from `2.5.10`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-resolvers@2.7.11` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-resolvers/v/2.7.11) (from `2.7.10`, in `dependencies`) - Updated dependencies \[[`06db3cd64`](https://togithub.com/Urigo/graphql-mesh/commit/06db3cd6479853e536e36cc2619c94dea9c7e5ed)]: - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.6 ### [`v0.82.7`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0827) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.6...@graphql-mesh/cli@0.82.7) ##### Patch Changes - [#​4975](https://togithub.com/Urigo/graphql-mesh/pull/4975) [`c6aef2bc8`](https://togithub.com/Urigo/graphql-mesh/commit/c6aef2bc8f69c857d8b71f9afcbb37b110c9fb6d) Thanks [@​ardatan](https://togithub.com/ardatan)! - Better process cleanup strategy to prevent unexpected errors from WS instance - Updated dependencies \[[`292c4fa45`](https://togithub.com/Urigo/graphql-mesh/commit/292c4fa4520457d4b206872f24d1254173856ecb), [`99f4c84e6`](https://togithub.com/Urigo/graphql-mesh/commit/99f4c84e619996bc4f392bc81c33022b8678e0d9), [`99f4c84e6`](https://togithub.com/Urigo/graphql-mesh/commit/99f4c84e619996bc4f392bc81c33022b8678e0d9), [`99f4c84e6`](https://togithub.com/Urigo/graphql-mesh/commit/99f4c84e619996bc4f392bc81c33022b8678e0d9), [`292c4fa45`](https://togithub.com/Urigo/graphql-mesh/commit/292c4fa4520457d4b206872f24d1254173856ecb)]: - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.5 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.4 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).89.3 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.4 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).0.5 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.4 ### [`v0.82.6`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0826) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.5...@graphql-mesh/cli@0.82.6) ##### Patch Changes - [#​4952](https://togithub.com/Urigo/graphql-mesh/pull/4952) [`df511ade0`](https://togithub.com/Urigo/graphql-mesh/commit/df511ade01315bcfe07fd7e482a28128f9df2845) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`json5@​2.2.2` ↗︎](https://www.npmjs.com/package/json5/v/2.2.2) (from `2.2.1`, in `dependencies`) - Updated dependencies \[[`0a4a77135`](https://togithub.com/Urigo/graphql-mesh/commit/0a4a771353c2fa1700afaeb54561c078df5229ec)]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.3 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).0.4 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.4 ### [`v0.82.5`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0825) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.4...@graphql-mesh/cli@0.82.5) ##### Patch Changes - [#​4916](https://togithub.com/Urigo/graphql-mesh/pull/4916) [`13e1c1382`](https://togithub.com/Urigo/graphql-mesh/commit/13e1c1382bcfb31192d903afd8b09421c82a6186) Thanks [@​ardatan](https://togithub.com/ardatan)! - Use package reference in bin script ### [`v0.82.4`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0824) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.3...@graphql-mesh/cli@0.82.4) ##### Patch Changes - [#​4914](https://togithub.com/Urigo/graphql-mesh/pull/4914) [`839e2458f`](https://togithub.com/Urigo/graphql-mesh/commit/839e2458f57fb57105a6b35c9b9a777c53c834f0) Thanks [@​ardatan](https://togithub.com/ardatan)! - Avoid '.' imports for ESM support ### [`v0.82.3`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0823) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.2...@graphql-mesh/cli@0.82.3) ##### Patch Changes - Updated dependencies \[[`deb9912e0`](https://togithub.com/Urigo/graphql-mesh/commit/deb9912e0bc2ae782c9570b60a7224b47af341eb)]: - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).89.2 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.2 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.3 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).0.3 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.3 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.3 ### [`v0.82.2`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08227) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.1...@graphql-mesh/cli@0.82.2) ##### Patch Changes - Updated dependencies \[[`a272fdbca`](https://togithub.com/Urigo/graphql-mesh/commit/a272fdbca655b17119fb1dcb1c44498f387b1edc)]: - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).91.9 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).1.10 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.23 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.18 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.17 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.17 ### [`v0.82.1`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​08219) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.82.0...@graphql-mesh/cli@0.82.1) ##### Patch Changes - Updated dependencies \[[`1129efbb4`](https://togithub.com/Urigo/graphql-mesh/commit/1129efbb4cb17ec088d48ebfcc9610823085d025)]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.12 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.16 ### [`v0.82.0`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0820) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.81.0...@graphql-mesh/cli@0.82.0) ##### Minor Changes - [#​4767](https://togithub.com/Urigo/graphql-mesh/pull/4767) [`3edaa00ac`](https://togithub.com/Urigo/graphql-mesh/commit/3edaa00ac772d519e351e620bfa670514db886e5) Thanks [@​ardatan](https://togithub.com/ardatan)! - *BREAKING* - Neo4J handler's `url` changed to `endpoint` to be consistent with other handlers *BREAKING* - Neo4J handler's `typeDefs` changed to `source` to be consistent with other handlers *BREAKING* - OData handler's `url` changed to `endpoint` to be consistent with other handlers *BREAKING* - OData handler's `metadata` changed to `source` to be consistent with other handlers *BREAKING* - OpenAPI handler's `baseUrl` changed to `endpoint` to be consistent with other handlers *BREAKING* - RAML handler's `baseUrl` changed to `endpoint` to be consistent with other handlers *BREAKING* - RAML handler's `ramlFilePath` changed to `source` to be consistent with other handlers ##### Patch Changes - Updated dependencies \[[`3edaa00ac`](https://togithub.com/Urigo/graphql-mesh/commit/3edaa00ac772d519e351e620bfa670514db886e5)]: - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​10](https://togithub.com/10).0.0 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).46.0 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).89.0 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.1 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.1 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.1 ### [`v0.81.0`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0810) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.80.4...@graphql-mesh/cli@0.81.0) ##### Minor Changes - [#​4821](https://togithub.com/Urigo/graphql-mesh/pull/4821) [`1a28c92c2`](https://togithub.com/Urigo/graphql-mesh/commit/1a28c92c2d67b89b48581b7bb1414d1404428cdb) Thanks [@​ardatan](https://togithub.com/ardatan)! - Update build flow to fully support both CommonJS and ESM ##### Patch Changes - [#​4821](https://togithub.com/Urigo/graphql-mesh/pull/4821) [`1a28c92c2`](https://togithub.com/Urigo/graphql-mesh/commit/1a28c92c2d67b89b48581b7bb1414d1404428cdb) Thanks [@​ardatan](https://togithub.com/ardatan)! - dependencies updates: - Updated dependency [`@graphql-codegen/typescript@2.8.2` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript/v/2.8.2) (from `2.8.1`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-operations@2.5.7` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-operations/v/2.5.7) (from `2.5.6`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-resolvers@2.7.7` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-resolvers/v/2.7.7) (from `2.7.6`, in `dependencies`) - [#​4874](https://togithub.com/Urigo/graphql-mesh/pull/4874) [`ad07d13c9`](https://togithub.com/Urigo/graphql-mesh/commit/ad07d13c974f090b59339ed9710b1f1b2b336084) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`tsconfig-paths@4.1.1` ↗︎](https://www.npmjs.com/package/tsconfig-paths/v/4.1.1) (from `4.1.0`, in `dependencies`) - [#​4878](https://togithub.com/Urigo/graphql-mesh/pull/4878) [`c047b3088`](https://togithub.com/Urigo/graphql-mesh/commit/c047b3088e91fec2265dc84ce82d5d45d3429609) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-codegen/typed-document-node@2.3.8` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typed-document-node/v/2.3.8) (from `2.3.7`, in `dependencies`) - [#​4879](https://togithub.com/Urigo/graphql-mesh/pull/4879) [`87ce9338d`](https://togithub.com/Urigo/graphql-mesh/commit/87ce9338de46314db3840b93bd56388de3c72b54) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-codegen/typescript@2.8.3` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript/v/2.8.3) (from `2.8.2`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-operations@2.5.8` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-operations/v/2.5.8) (from `2.5.7`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-resolvers@2.7.8` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-resolvers/v/2.7.8) (from `2.7.7`, in `dependencies`) - [#​4901](https://togithub.com/Urigo/graphql-mesh/pull/4901) [`500a4504c`](https://togithub.com/Urigo/graphql-mesh/commit/500a4504c734ee1eaf55daa2296789096034513f) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-tools/utils@9.1.3` ↗︎](https://www.npmjs.com/package/@​graphql-tools/utils/v/9.1.3) (from `9.1.1`, in `dependencies`) - Updated dependencies \[[`500a4504c`](https://togithub.com/Urigo/graphql-mesh/commit/500a4504c734ee1eaf55daa2296789096034513f), [`500a4504c`](https://togithub.com/Urigo/graphql-mesh/commit/500a4504c734ee1eaf55daa2296789096034513f), [`c047b3088`](https://togithub.com/Urigo/graphql-mesh/commit/c047b3088e91fec2265dc84ce82d5d45d3429609), [`500a4504c`](https://togithub.com/Urigo/graphql-mesh/commit/500a4504c734ee1eaf55daa2296789096034513f), [`500a4504c`](https://togithub.com/Urigo/graphql-mesh/commit/500a4504c734ee1eaf55daa2296789096034513f), [`500a4504c`](https://togithub.com/Urigo/graphql-mesh/commit/500a4504c734ee1eaf55daa2296789096034513f), [`500a4504c`](https://togithub.com/Urigo/graphql-mesh/commit/500a4504c734ee1eaf55daa2296789096034513f), [`1a28c92c2`](https://togithub.com/Urigo/graphql-mesh/commit/1a28c92c2d67b89b48581b7bb1414d1404428cdb)]: - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​9](https://togithub.com/9).0.0 - [@​graphql-mesh/cross-helpers](https://togithub.com/graphql-mesh/cross-helpers)[@​0](https://togithub.com/0).3.0 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).3.0 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).45.0 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).9.0 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).88.0 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).43.0 ### [`v0.80.4`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0804) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.80.3...@graphql-mesh/cli@0.80.4) ##### Patch Changes - Updated dependencies \[[`3ced82c45`](https://togithub.com/Urigo/graphql-mesh/commit/3ced82c45ed50eefe238c569a1eefdac164dff77)]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).44.37 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​8](https://togithub.com/8).0.36 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).2.20 ### [`v0.80.3`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0803) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.80.2...@graphql-mesh/cli@0.80.3) ##### Patch Changes - [#​4836](https://togithub.com/Urigo/graphql-mesh/pull/4836) [`0f77d4da9`](https://togithub.com/Urigo/graphql-mesh/commit/0f77d4da986ef7228079afdf4afa1c6838f7cd83) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`cosmiconfig@8.0.0` ↗︎](https://www.npmjs.com/package/cosmiconfig/v/8.0.0) (from `7.1.0`, in `dependencies`) ### [`v0.80.2`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0802) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.80.1...@graphql-mesh/cli@0.80.2) ##### Patch Changes - Updated dependencies \[[`eba73c626`](https://togithub.com/Urigo/graphql-mesh/commit/eba73c6261a2fdde8ece31915202203b70ff0e5f)]: - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).42.9 - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​8](https://togithub.com/8).0.35 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).2.19 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).44.36 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).8.65 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).87.1 ### [`v0.80.1`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0801) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.80.0...@graphql-mesh/cli@0.80.1) ##### Patch Changes - Updated dependencies \[[`8b25eb578`](https://togithub.com/Urigo/graphql-mesh/commit/8b25eb578c293ef72de70301f2e24dc0c22ba75b)]: - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).2.18 ### [`v0.80.0`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0800) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.79.7...@graphql-mesh/cli@0.80.0) ##### Minor Changes - [`686b3301b`](https://togithub.com/Urigo/graphql-mesh/commit/686b3301b2441bc095a379d95e77686b4f5ceb70) Thanks [@​ardatan](https://togithub.com/ardatan)! - **BREAKING** - Drop `customServerHandler` ##### Patch Changes - [`686b3301b`](https://togithub.com/Urigo/graphql-mesh/commit/686b3301b2441bc095a379d95e77686b4f5ceb70) Thanks [@​ardatan](https://togithub.com/ardatan)! - Fix CF compatibility issues - Updated dependencies \[[`0d9771428`](https://togithub.com/Urigo/graphql-mesh/commit/0d97714284a6eea31c2c9420addd4a1518584924), [`686b3301b`](https://togithub.com/Urigo/graphql-mesh/commit/686b3301b2441bc095a379d95e77686b4f5ceb70), [`686b3301b`](https://togithub.com/Urigo/graphql-mesh/commit/686b3301b2441bc095a379d95e77686b4f5ceb70)]: - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​8](https://togithub.com/8).0.34 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).87.0 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).2.17 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).44.35 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).8.64 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).42.8 ### [`v0.79.7`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0797) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.79.6...@graphql-mesh/cli@0.79.7) ##### Patch Changes - Updated dependencies \[[`7df7c644d`](https://togithub.com/Urigo/graphql-mesh/commit/7df7c644d85c00c0c0c3f8907854bbef50d298eb), [`968bb382e`](https://togithub.com/Urigo/graphql-mesh/commit/968bb382e40674adb85e7a3a53e94683dd070aae), [`7df7c644d`](https://togithub.com/Urigo/graphql-mesh/commit/7df7c644d85c00c0c0c3f8907854bbef50d298eb), [`7df7c644d`](https://togithub.com/Urigo/graphql-mesh/commit/7df7c644d85c00c0c0c3f8907854bbef50d298eb)]: - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​8](https://togithub.com/8).0.33 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).2.16 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).44.34 ### [`v0.79.6`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0796) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.79.5...@graphql-mesh/cli@0.79.6) ##### Patch Changes - Updated dependencies \[[`ef6cc3b25`](https://togithub.com/Urigo/graphql-mesh/commit/ef6cc3b2565b8efd0c6c0dfbc8040747b8d80573), [`b0adaa48c`](https://togithub.com/Urigo/graphql-mesh/commit/b0adaa48cf9f389ead587a23decd4750a74d8f55)]: - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).2.15 ### [`v0.79.5`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0795) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.79.4...@graphql-mesh/cli@0.79.5) ##### Patch Changes - Updated dependencies \[[`3d8f23adb`](https://togithub.com/Urigo/graphql-mesh/commit/3d8f23adb28ca102b19433eca5baf8d341ac7305)]: - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).44.33 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).2.14 ### [`v0.79.4`](https://togithub.com/Urigo/graphql-mesh/blob/HEAD/packages/cli/CHANGELOG.md#​0794) [Compare Source](https://togithub.com/Urigo/graphql-mesh/compare/@graphql-mesh/cli@0.79.3...@graphql-mesh/cli@0.79.4) ##### Patch Changes - [#​4790](https://togithub.com/Urigo/graphql-mesh/pull/4790) [`8c7d96cff`](https://togithub.com/Urigo/graphql-mesh/commit/8c7d96cff868095216520bafebe989ec94a9df65) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-tools/utils@9.1.0` ↗︎](https://www.npmjs.com/package/@​graphql-tools/utils/v/9.1.0) (from `9.0.1`, in `dependencies`) - [#​4807](https://togithub.com/Urigo/graphql-mesh/pull/4807) [`65c2a85b7`](https://togithub.com/Urigo/graphql-mesh/commit/65c2a85b7a564840f455ac2afe39505706e46e62) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`cosmiconfig@7.1.0` ↗︎](https://www.npmjs.com/package/cosmiconfig/v/7.1.0) (from `7.0.1`, in `dependencies`) - [#​4809](https://togithub.com/Urigo/graphql-mesh/pull/4809) [`db95881b5`](https://togithub.com/Urigo/graphql-mesh/commit/db95881b530053064425f476ccac7d552d44af33) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`ajv@8.11.2` ↗︎](https://www.npmjs.com/package/ajv/v/8.11.2) (from `8.11.0`, in `dependencies`) - Updated dependency [`@graphql-codegen/core@2.6.6` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/core/v/2.6.6) (from `2.6.5`, in `dependencies`) - Updated dependency [`@graphql-codegen/typed-document-node@2.3.7` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typed-document-node/v/2.3.7) (from `2.3.6`, in `dependencies`) - Updated dependency [`@graphql-tools/utils@9.1.1` ↗︎](https://www.npmjs.com/package/@​graphql-tools/utils/v/9.1.1) (from `9.1.0`, in `dependencies`) - [#​4813](https://togithub.com/Urigo/graphql-mesh/pull/4813) [`9cbcd1baa`](https://togithub.com/Urigo/graphql-mesh/commit/9cbcd1baa3725a78b0c82b5d12df7afb7ddd9631) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-codegen/typescript@2.8.2` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript/v/2.8.2) (from `2.8.1`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-operations@2.5.7` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-operations/v/2.5.7) (from `2.5.6`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-resolvers@2.7.7` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-resolvers/v/2.7.7) (from `2.7.6`, in `dependencies`) - [#​4814](https://togithub.com/Urigo/graphql-mesh/pull/4814) [`7390ca341`](https://togithub.com/Urigo/graphql-mesh/commit/7390ca341c9135625f89f1e03a9d15938880154e) Thanks [@​renovate](https://togithub.com/apps/renovate)! - dependencies updates: - Updated dependency [`@graphql-codegen/typescript@2.8.2` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript/v/2.8.2) (from `2.8.1`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-operations@2.5.7` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-operations/v/2.5.7) (from `2.5.6`, in `dependencies`) - Updated dependency [`@graphql-codegen/typescript-resolvers@2.7.7` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/typescript-resolvers/v/2.7.7) (from `2.7.6`, in `dependencies`) - Updated dependency [`typescript@4.9.3` ↗︎](https://www.npmjs.com/package/typescript/v/4.9.3) (from `4.8.4`, in `dependencies`) - Updated dependencies \[[`8c7d96cff`](https://togithub.com/Urigo/graphql-mesh/commit/8c7d96cff868095216520bafebe989ec94a9df65), [`db95881b5`](https://togithub.com/Urigo/graphql-mesh/commit/db95881b530053064425f476ccac7d552d44af33), [`8c7d96cff`](https://togithub.com/Urigo/graphql-mesh/commit/8c7d96cff868095216520bafebe989ec94a9df65), [`db95881b5`](https://togithub.com/Urigo/graphql-mesh/commit/db95881b530053064425f476ccac7d552d44af33), [`990f649ef`](https://togithub.com/Urigo/graphql-mesh/commit/990f649ef8832bc786b89b0c15744d49a422bb03), [`8c7d96cff`](https://togithub.com/Urigo/graphql-mesh/commit/8c7d96cff868095216520bafebe989ec94a9df65), [`990f649ef`](https://togithub.com/Urigo/graphql-mesh/commit/990f649ef8832bc786b89b0c15744d49a422bb03), [`db95881b5`](https://togithub.com/Urigo/graphql-mesh/commit/db95881b530053064425f476ccac7d552d44af33), [`8c7d96cff`](https://togithub.com/Urigo/graphql-mesh/commit/8c7d96cff868095216520bafebe989ec94a9df65), [`db95881b5`](https://togithub.com/Urigo/graphql-mesh/commit/db95881b530053064425f476ccac7d552d44af33), [`8c7d96cff`](https://togithub.com/Urigo/graphql-mesh/commit/8c7d96cff868095216520bafebe989ec94a9df65), [`990f649ef`](https://togithub.com/Urigo/graphql-mesh/commit/990f649ef8832bc786b89b0c15744d49a422bb03), [`db95881b5`](https://togithub.com/Urigo/graphql-mesh/commit/db95881b530053064425f476ccac7d552d44af33), [`8c7d96cff`](https://togithub.com/Urigo/graphql-mesh/commit/8c7d96cff868095216520bafebe989ec94a9df65), [`990f649ef`](https://togithub.com/Urigo/graphql-mesh/commit/990f649ef8832bc786b89b0c15744d49a422bb03), [`db95881b5`](https://togithub.com/Urigo/graphql-mesh/commit/db95881b530053064425f476ccac7d552d44af33), [`76deb32d1`](https://togithub.com/Urigo/graphql-mesh/commit/76deb32d1c036bc8da171be55582ec3f7b9c5015), [`baa4fbf82`](https://togithub.com/Urigo/graphql-mesh/commit/baa4fbf82af4a8787b9cab8c99e9177e3491ecf8), [`7390ca341`](https://togithub.com/Urigo/graphql-mesh/commit/7390ca341c9135625f89f1e03a9d15938880154e), [`cf9c6d5e0`](https://togithub.com/Urigo/graphql-mesh/commit/cf9c6d5e00e41f2403bcb9ad1a6e403390ff3ec6)]: - [@​graphql-mesh/config](https://togithub.com/graphql-mesh/config)[@​8](https://togithub.com/8).0.32 - [@​graphql-mesh/cross-helpers](https://togithub.com/graphql-mesh/cross-helpers)[@​0](https://togithub.com/0).2.10 - [@​graphql-mesh/http](https://togithub.com/graphql-mesh/http)[@​0](https://togithub.com/0).2.13 - [@​graphql-mesh/runtime](https://togithub.com/graphql-mesh/runtime)[@​0](https://togithub.com/0).44.32 - [@​graphql-mesh/store](https://togithub.com/graphql-mesh/store)[@​0](https://togithub.com/0).8.63 - [@​graphql-mesh/types](https://togithub.com/graphql-mesh/types)[@​0](https://togithub.com/0).86.0 - [@​graphql-mesh/utils](https://togithub.com/graphql-mesh/utils)[@​0](https://togithub.com/0).42.7

Configuration

📅 Schedule: Branch creation - "" in timezone Europe/London, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

changeset-bot[bot] commented 1 year ago

⚠️ No Changeset found

Latest commit: 3718f7bc480ff8d765aa5de49fca4d02a8c16c96

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

nx-cloud[bot] commented 1 year ago

☁️ Nx Cloud Report

CI is running/has finished running commands for commit 3718f7bc480ff8d765aa5de49fca4d02a8c16c96. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.

📂 See all runs for this branch


✅ Successfully ran 21 targets - [`node_v18.15.0__pnpm_7.29.3 nx run nx-mesh:lint --configuration=codeql`](https://cloud.nx.app/runs/lCDIZhFVrp) - [`node_v18.15.0__pnpm_7.29.3 nx run-many --target=test --parallel=3 --all --configuration=reports`](https://cloud.nx.app/runs/UGscYVraTO) - [`node_v18.15.0__pnpm_7.29.3 nx run-many --target=lint --parallel=4 --all --configuration=reports`](https://cloud.nx.app/runs/1rfrC7jj5m) - [`node_v18.15.0__pnpm_7.29.3 nx affected --target=build --parallel=2 --configuration=production`](https://cloud.nx.app/runs/SOnrFMhoLs) - [`node_v19.8.1__pnpm_7.29.3 nx affected --target=test --parallel=3 --configuration=reports`](https://cloud.nx.app/runs/kaEhgfRHr0) - [`node_v19.8.1__pnpm_7.29.3 nx affected --target=test --parallel=3`](https://cloud.nx.app/runs/jfwlBYOCuo) - [`node_v19.8.1__pnpm_7.29.3 nx affected --target=e2e-serve-dev --parallel=1`](https://cloud.nx.app/runs/5DFfbt1pwO) - [`node_v19.8.1__pnpm_7.29.3 nx affected --target=e2e --parallel=1`](https://cloud.nx.app/runs/C92iIil8dm) - [`node_v19.8.1__pnpm_7.29.3 nx affected --target=e2e-start --parallel=1`](https://cloud.nx.app/runs/JfAgSrIkIY) - [`node_v19.8.1__pnpm_7.29.3 nx affected --target=e2e-serve --parallel=1`](https://cloud.nx.app/runs/HQx9pbmCpF) - [`node_v18.15.0__pnpm_7.29.3 nx affected --target=test --parallel=3 --configuration=reports`](https://cloud.nx.app/runs/Qrb4ZwJivN) - [`node_v18.15.0__pnpm_7.29.3 nx affected --target=test --parallel=3`](https://cloud.nx.app/runs/xbMzoAz3fQ) - [`node_v18.15.0__pnpm_7.29.3 nx affected --target=e2e-start --parallel=1`](https://cloud.nx.app/runs/2KdeKoRLmR) - [`node_v18.15.0__pnpm_7.29.3 nx affected --target=e2e-serve --parallel=1`](https://cloud.nx.app/runs/Oap3sLZqeA) - [`node_v18.15.0__pnpm_7.29.3 nx affected --target=e2e --parallel=1`](https://cloud.nx.app/runs/K5pYbbhvUz) - [`node_v18.15.0__pnpm_7.29.3 nx affected --target=e2e-serve-dev --parallel=1`](https://cloud.nx.app/runs/R7JWvB7Um3) - [`node_v19.8.1__pnpm_7.29.3 nx affected --target=build --parallel=2 --configuration=production`](https://cloud.nx.app/runs/HTmjyhjrpN) - [`node_v18.15.0__pnpm_7.29.3 nx affected --target=build --parallel=2`](https://cloud.nx.app/runs/W15tmXKsoC) - [`node_v19.8.1__pnpm_7.29.3 nx affected --target=build --parallel=2`](https://cloud.nx.app/runs/3Q07QqeCmd) - [`node_v18.15.0__pnpm_7.29.3 nx affected --target=lint --parallel=4`](https://cloud.nx.app/runs/GQ9f7JD40g) - [`nx-cloud record -- npx nx format:check`](https://cloud.nx.app/runs/e7DYjWdQ7v)

Sent with 💌 from NxCloud.

socket-security[bot] commented 1 year ago

Socket Security Pull Request Report

👍 No new dependency issues detected in pull request

Pull request report summary
Issue Status
Install scripts ✅ 0 issues
Native code ✅ 0 issues
Bin script shell injection ✅ 0 issues
Unresolved require ✅ 0 issues
Invalid package.json ✅ 0 issues
HTTP dependency ✅ 0 issues
Git dependency ✅ 0 issues
Potential typo squat ✅ 0 issues
Known Malware ✅ 0 issues
Telemetry ✅ 0 issues
Protestware/Troll package ✅ 0 issues
Bot Commands

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of package-name@version specifiers. e.g. @SocketSecurity ignore foo@1.0.0 bar@* or ignore all packages with @SocketSecurity ignore-all

Powered by socket.dev

github-actions[bot] commented 1 year ago

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets): Package Version Info
nx-mesh 4.0.0-alpha-20230318120119 npm ↗︎ unpkg ↗︎
codeclimate[bot] commented 1 year ago

Code Climate has analyzed commit 3718f7bc and detected 0 issues on this pull request.

View more on Code Climate.

sonarcloud[bot] commented 1 year ago

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

github-actions[bot] commented 1 year ago

This pull request has been deployed to Vercel.

Latest commit: 3718f7b
✅ Preview: https://nx-mesh-7prs4mlst-domjtalbot.vercel.app
🔍 Inspect: https://vercel.com/domjtalbot/nx-mesh/GAB5XBfQWATXezDbjcbonWosw94Q

View Workflow Logs