Skip to content

Releases: gqty-dev/gqty

@gqty/[email protected]

21 Dec 17:31
fea2619
Compare
Choose a tag to compare

3.0.1

Patch Changes

  • 3ac7bee: Use "import * as" to prevent esm-cjs interop issues

@gqty/[email protected]

13 Dec 05:02
635c2e7
Compare
Choose a tag to compare

2.0.2

Patch Changes

  • 5ed4951: Remove "serialize-error" dependency

@gqty/[email protected]

13 Dec 05:02
635c2e7
Compare
Choose a tag to compare

3.0.0

Major Changes

  • c7b80c8: Minimize npm dependencies

Minor Changes

  • f9fd0b9: Added the ability to use fast-glob patterns in the schema generate endpoint to be able to use and combine multiple gql/graphql schema files

@gqty/[email protected]

29 Nov 23:57
6e713a7
Compare
Choose a tag to compare

2.3.1

Patch Changes

  • 96ab370: Change export syntax to fix bundling issues, show a warning on existent generated clients with export const { syntax.

    Closes #292

@gqty/[email protected]

11 Nov 22:21
5d6f6e2
Compare
Choose a tag to compare

2.1.0

Minor Changes

  • 6ced359: New "$state.error" property in "useQuery" which gives the last scheduler Error, for more in-depth error management it's still recommended to use useMetaState hook

    Closes #111

Patch Changes

[email protected]

05 Nov 17:34
b6f4fb3
Compare
Choose a tag to compare

2.1.0

Minor Changes

  • 6df0318: Add new Core configuration "depthLimit" (by default is 15), needed to prevent possible infinite recursion, after the specified depth is reached, the proxy creation is stopped returning null.

@gqty/[email protected]

05 Nov 17:34
b6f4fb3
Compare
Choose a tag to compare

2.3.0

Minor Changes

  • 0b1860a: lexicographic sort GraphQL Schema before generating
  • 82fd259: Use ESM for CLI

Patch Changes

[email protected]

03 Nov 03:28
6fb3b0f
Compare
Choose a tag to compare

2.0.4

Patch Changes

  • d6d0a22: Fix check Error.captureStackTrace before calling it

@gqty/[email protected]

03 Nov 03:29
6fb3b0f
Compare
Choose a tag to compare

2.0.1

Patch Changes

@gqty/[email protected]

29 Oct 20:46
19d1a01
Compare
Choose a tag to compare

2.2.0

Minor Changes

  • cba5c43: Don't skip config read on NODE_ENV === "test"

  • a4fc294: New Envelop / graphql-ez plugin that automatically generates gqty code based on schema and gqty.config.cjs

    // graphql-ez
    
    // ...
    import { useGenerateGQty } from '@gqty/cli/envelop';
    
    const ezApp = CreateApp({
      // ...
      envelop: {
        plugins: [
          // ...
          useGenerateGQty({
            // ...
          }),
        ],
      },
    });
    // Envelop
    
    import { envelop } from '@envelop/core';
    import { useGenerateGQty } from '@gqty/cli/envelop';
    
    //...
    
    const getEnveloped = envelop({
      plugins: [
        // ...
        useGenerateGQty({
          // ...
        }),
      ],
    });

Patch Changes

  • aab8e48: Fix: don't put invalid default generate endpoint

  • f72aa23: GraphQL v16 compatibility

    closes #268