Skip to content

January 23, 2025

Compare
Choose a tag to compare
@theguild-bot theguild-bot released this 23 Jan 16:18
· 61 commits to master since this release
709000e

@graphql-mesh/cache-cfw-kv@0.104.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/cache-file@0.103.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/cache-inmemory-lru@0.0.8

Patch Changes

@graphql-mesh/cache-localforage@0.103.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    f1b5e8e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/cache-inmemory-lru@0.0.8

@graphql-mesh/cache-redis@0.103.13

Patch Changes

  • #8268
    f1b5e8e
    Thanks @ardatan! - Use PX instead of EX to handle milliseconds
    as TTL

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:

    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/compose-cli@1.3.6

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    f1b5e8e,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/fusion-composition@0.7.18
    • @graphql-mesh/string-interpolation@0.5.8
    • @graphql-mesh/include@0.2.11

@graphql-mesh/fusion-composition@0.7.18

Patch Changes

  • #8268
    f1b5e8e
    Thanks @ardatan! - Respect other @composeDirective definitions
    other than Mesh

  • Updated dependencies
    [5180b06]:

    • @graphql-mesh/utils@0.103.12

@graphql-mesh/include@0.2.11

Patch Changes

  • Updated dependencies
    [5180b06]:
    • @graphql-mesh/utils@0.103.12

@graphql-mesh/apollo-link@0.105.13

Patch Changes

  • Updated dependencies
    [5180b06]:
    • @graphql-mesh/runtime@0.105.13

@graphql-mesh/cli@0.98.18

Patch Changes

  • #8272
    25d9ea7
    Thanks @renovate! - dependencies updates:
  • Updated dependencies
    [5180b06,
    5180b06,
    c54e361]:
    • @graphql-mesh/runtime@0.105.13
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/config@0.106.18
    • @graphql-mesh/http@0.105.13
    • @graphql-mesh/include@0.2.11
    • @graphql-mesh/store@0.103.12

@graphql-mesh/config@0.106.18

Patch Changes

  • Updated dependencies
    [5180b06,
    5180b06,
    c54e361]:
    • @graphql-mesh/runtime@0.105.13
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/cache-localforage@0.103.13
    • @graphql-mesh/merger-bare@0.104.15
    • @graphql-mesh/merger-stitching@0.104.12
    • @graphql-mesh/store@0.103.12

@graphql-mesh/graphql@0.103.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8
    • @graphql-mesh/store@0.103.12

@graphql-mesh/grpc@0.107.3

Patch Changes

  • #8289
    c54e361
    Thanks @ardatan! - New option selectQueryOrMutationField to decide
    which field belongs to which root type explicitly.

    import { defineConfig } from '@graphql-mesh/compose-cli'
    import loadGrpcSubgraph from '@omnigraph/grpc'
    
    export const composeConfig = defineConfig({
      subgraphs: [
        {
          sourceHandler: loadGrpcSubgraph('MyGrpcApi', {
            /** .. **/
    
            // Prefix to collect Query method default: list, get
            prefixQueryMethod: ['list', 'get'],
    
            // Select certain fields as Query or Mutation
            // This overrides `prefixQueryMethod`
            selectQueryOrMutationField: [
              {
                // You can use a pattern matching with *
                fieldName: '*RetrieveMovies',
                type: 'Query'
              },
              // Or you can use a specific field name
              // This will make the field GetMovie available as a Mutation
              // Because it would be Query because of `prefixQueryMethod`
              {
                fieldName: 'GetMovie',
                type: 'Mutation'
              }
            ]
          })
        }
      ]
    })
  • Updated dependencies
    [5180b06,
    c54e361,
    c54e361]:

    • @graphql-mesh/utils@0.103.12
    • @omnigraph/grpc@0.2.2
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/store@0.103.12
    • @graphql-mesh/transport-grpc@0.2.2

@graphql-mesh/json-schema@0.108.14

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8
    • @graphql-mesh/store@0.103.12
    • @omnigraph/json-schema@0.108.13

@graphql-mesh/mongoose@0.103.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/mysql@0.104.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/store@0.103.12
    • @omnigraph/mysql@0.8.12

@graphql-mesh/neo4j@0.105.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/store@0.103.12
    • @omnigraph/neo4j@0.9.12

@graphql-mesh/odata@0.105.12

Patch Changes

  • Updated dependencies
    [c54e361]:
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/store@0.103.12
    • @omnigraph/odata@0.1.12

@graphql-mesh/openapi@0.108.15

Patch Changes

  • #8289
    c54e361
    Thanks @ardatan! - New option selectQueryOrMutationField to decide
    which field belongs to which root type explicitly.

    import { defineConfig } from '@graphql-mesh/compose-cli'
    import loadGrpcSubgraph from '@omnigraph/grpc'
    
    export const composeConfig = defineConfig({
      subgraphs: [
        {
          sourceHandler: loadGrpcSubgraph('MyGrpcApi', {
            /** .. **/
    
            // Prefix to collect Query method default: list, get
            prefixQueryMethod: ['list', 'get'],
    
            // Select certain fields as Query or Mutation
            // This overrides `prefixQueryMethod`
            selectQueryOrMutationField: [
              {
                // You can use a pattern matching with *
                fieldName: '*RetrieveMovies',
                type: 'Query'
              },
              // Or you can use a specific field name
              // This will make the field GetMovie available as a Mutation
              // Because it would be Query because of `prefixQueryMethod`
              {
                fieldName: 'GetMovie',
                type: 'Mutation'
              }
            ]
          })
        }
      ]
    })
  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:

    • @graphql-mesh/utils@0.103.12
    • @omnigraph/openapi@0.108.15
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8
    • @graphql-mesh/store@0.103.12

@graphql-mesh/postgraphile@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8
    • @graphql-mesh/store@0.103.12

@graphql-mesh/raml@0.108.13

Patch Changes

  • #8289
    c54e361
    Thanks @ardatan! - New option selectQueryOrMutationField to decide
    which field belongs to which root type explicitly.

    import { defineConfig } from '@graphql-mesh/compose-cli'
    import loadGrpcSubgraph from '@omnigraph/grpc'
    
    export const composeConfig = defineConfig({
      subgraphs: [
        {
          sourceHandler: loadGrpcSubgraph('MyGrpcApi', {
            /** .. **/
    
            // Prefix to collect Query method default: list, get
            prefixQueryMethod: ['list', 'get'],
    
            // Select certain fields as Query or Mutation
            // This overrides `prefixQueryMethod`
            selectQueryOrMutationField: [
              {
                // You can use a pattern matching with *
                fieldName: '*RetrieveMovies',
                type: 'Query'
              },
              // Or you can use a specific field name
              // This will make the field GetMovie available as a Mutation
              // Because it would be Query because of `prefixQueryMethod`
              {
                fieldName: 'GetMovie',
                type: 'Mutation'
              }
            ]
          })
        }
      ]
    })
  • Updated dependencies
    [5180b06,
    c54e361]:

    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @omnigraph/raml@0.108.13
    • @graphql-mesh/store@0.103.12

@graphql-mesh/soap@0.105.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    40274c3,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @omnigraph/soap@0.105.12
    • @graphql-mesh/string-interpolation@0.5.8
    • @graphql-mesh/store@0.103.12

@graphql-mesh/supergraph@0.9.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8
    • @graphql-mesh/store@0.103.12

@graphql-mesh/thrift@0.105.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/store@0.103.12
    • @omnigraph/thrift@0.8.12

@graphql-mesh/tuql@0.104.12

Patch Changes

  • Updated dependencies
    [c54e361]:
    • @graphql-mesh/types@0.103.12
    • @omnigraph/sqlite@0.7.12

@graphql-mesh/http@0.105.13

Patch Changes

  • Updated dependencies
    [5180b06,
    5180b06,
    c54e361]:
    • @graphql-mesh/runtime@0.105.13
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/merger-bare@0.104.15

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/merger-stitching@0.104.12

@graphql-mesh/merger-stitching@0.104.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/store@0.103.12

@graphql-mesh/migrate-config-cli@1.4.10

Patch Changes

  • Updated dependencies
    [25d9ea7,
    5180b06,
    c54e361]:
    • @graphql-mesh/cli@0.98.18
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/config@0.106.18
    • @graphql-mesh/compose-cli@1.3.6

@graphql-mesh/runtime@0.105.13

Patch Changes

@graphql-mesh/store@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/transform-cache@0.103.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/transform-encapsulate@0.103.12

Patch Changes

@graphql-mesh/transform-extend@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/transform-federation@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/transform-filter-schema@0.103.12

Patch Changes

@graphql-mesh/transform-hive@0.103.15

Patch Changes

  • Updated dependencies
    [c54e361,
    78c202e]:
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/transform-hoist-field@0.103.13

Patch Changes

@graphql-mesh/transform-naming-convention@0.103.14

Patch Changes

@graphql-mesh/transform-prefix@0.103.14

Patch Changes

@graphql-mesh/transform-prune@0.103.12

Patch Changes

  • Updated dependencies
    [c54e361]:
    • @graphql-mesh/types@0.103.12

@graphql-mesh/transform-rate-limit@0.103.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/transform-rename@0.103.13

Patch Changes

@graphql-mesh/transform-replace-field@0.103.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/transform-resolvers-composition@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/transform-transfer-schema@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/transform-type-merging@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/types@0.103.12

Patch Changes

  • #8289
    c54e361
    Thanks @ardatan! - New option selectQueryOrMutationField to decide
    which field belongs to which root type explicitly.

    import { defineConfig } from '@graphql-mesh/compose-cli'
    import loadGrpcSubgraph from '@omnigraph/grpc'
    
    export const composeConfig = defineConfig({
      subgraphs: [
        {
          sourceHandler: loadGrpcSubgraph('MyGrpcApi', {
            /** .. **/
    
            // Prefix to collect Query method default: list, get
            prefixQueryMethod: ['list', 'get'],
    
            // Select certain fields as Query or Mutation
            // This overrides `prefixQueryMethod`
            selectQueryOrMutationField: [
              {
                // You can use a pattern matching with *
                fieldName: '*RetrieveMovies',
                type: 'Query'
              },
              // Or you can use a specific field name
              // This will make the field GetMovie available as a Mutation
              // Because it would be Query because of `prefixQueryMethod`
              {
                fieldName: 'GetMovie',
                type: 'Mutation'
              }
            ]
          })
        }
      ]
    })
  • Updated dependencies []:

    • @graphql-mesh/store@0.103.12

@graphql-mesh/urql-exchange@0.105.13

Patch Changes

  • Updated dependencies
    [5180b06]:
    • @graphql-mesh/runtime@0.105.13

@graphql-mesh/utils@0.103.12

Patch Changes

@omnigraph/grpc@0.2.2

Patch Changes

  • #8289
    c54e361
    Thanks @ardatan! - dependencies updates:

  • #8289
    c54e361
    Thanks @ardatan! - New option selectQueryOrMutationField to decide
    which field belongs to which root type explicitly.

    import { defineConfig } from '@graphql-mesh/compose-cli'
    import loadGrpcSubgraph from '@omnigraph/grpc'
    
    export const composeConfig = defineConfig({
      subgraphs: [
        {
          sourceHandler: loadGrpcSubgraph('MyGrpcApi', {
            /** .. **/
    
            // Prefix to collect Query method default: list, get
            prefixQueryMethod: ['list', 'get'],
    
            // Select certain fields as Query or Mutation
            // This overrides `prefixQueryMethod`
            selectQueryOrMutationField: [
              {
                // You can use a pattern matching with *
                fieldName: '*RetrieveMovies',
                type: 'Query'
              },
              // Or you can use a specific field name
              // This will make the field GetMovie available as a Mutation
              // Because it would be Query because of `prefixQueryMethod`
              {
                fieldName: 'GetMovie',
                type: 'Mutation'
              }
            ]
          })
        }
      ]
    })
  • Updated dependencies
    [78c202e]:

    • @graphql-mesh/string-interpolation@0.5.8

@omnigraph/json-schema@0.108.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8
    • @graphql-mesh/transport-rest@0.8.13

@omnigraph/mysql@0.8.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8
    • @graphql-mesh/transport-mysql@0.8.12

@omnigraph/neo4j@0.9.12

Patch Changes

  • Updated dependencies
    [c54e361]:
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/transport-neo4j@0.8.12

@omnigraph/odata@0.1.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8
    • @graphql-mesh/store@0.103.12

@omnigraph/openapi@0.108.15

Patch Changes

  • #8289
    c54e361
    Thanks @ardatan! - New option selectQueryOrMutationField to decide
    which field belongs to which root type explicitly.

    import { defineConfig } from '@graphql-mesh/compose-cli'
    import loadGrpcSubgraph from '@omnigraph/grpc'
    
    export const composeConfig = defineConfig({
      subgraphs: [
        {
          sourceHandler: loadGrpcSubgraph('MyGrpcApi', {
            /** .. **/
    
            // Prefix to collect Query method default: list, get
            prefixQueryMethod: ['list', 'get'],
    
            // Select certain fields as Query or Mutation
            // This overrides `prefixQueryMethod`
            selectQueryOrMutationField: [
              {
                // You can use a pattern matching with *
                fieldName: '*RetrieveMovies',
                type: 'Query'
              },
              // Or you can use a specific field name
              // This will make the field GetMovie available as a Mutation
              // Because it would be Query because of `prefixQueryMethod`
              {
                fieldName: 'GetMovie',
                type: 'Mutation'
              }
            ]
          })
        }
      ]
    })
  • Updated dependencies
    [5180b06,
    c54e361,
    f1b5e8e,
    78c202e]:

    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/fusion-composition@0.7.18
    • @graphql-mesh/string-interpolation@0.5.8
    • @omnigraph/json-schema@0.108.13

@omnigraph/raml@0.108.13

Patch Changes

  • #8289
    c54e361
    Thanks @ardatan! - New option selectQueryOrMutationField to decide
    which field belongs to which root type explicitly.

    import { defineConfig } from '@graphql-mesh/compose-cli'
    import loadGrpcSubgraph from '@omnigraph/grpc'
    
    export const composeConfig = defineConfig({
      subgraphs: [
        {
          sourceHandler: loadGrpcSubgraph('MyGrpcApi', {
            /** .. **/
    
            // Prefix to collect Query method default: list, get
            prefixQueryMethod: ['list', 'get'],
    
            // Select certain fields as Query or Mutation
            // This overrides `prefixQueryMethod`
            selectQueryOrMutationField: [
              {
                // You can use a pattern matching with *
                fieldName: '*RetrieveMovies',
                type: 'Query'
              },
              // Or you can use a specific field name
              // This will make the field GetMovie available as a Mutation
              // Because it would be Query because of `prefixQueryMethod`
              {
                fieldName: 'GetMovie',
                type: 'Mutation'
              }
            ]
          })
        }
      ]
    })
  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:

    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8
    • @omnigraph/json-schema@0.108.13

@omnigraph/soap@0.105.12

Patch Changes

  • #8282
    40274c3
    Thanks @ardatan! - Some SOAP API endpoints need SOAPAction HTTP
    header that points to the action path defined in the WSDL. This fixes that issue for those
    endpoints.
    Learn more about SOAPAction header
  • Updated dependencies
    [5180b06,
    c54e361,
    40274c3,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/transport-soap@0.8.12
    • @graphql-mesh/string-interpolation@0.5.8

@omnigraph/sqlite@0.7.12

Patch Changes

  • Updated dependencies
    [c54e361]:
    • @graphql-mesh/types@0.103.12

@omnigraph/thrift@0.8.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/transport-thrift@0.8.12

@graphql-mesh/plugin-deduplicate-request@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/plugin-hive@0.103.13

Patch Changes

  • Updated dependencies
    [c54e361,
    78c202e]:
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/plugin-http-cache@0.104.0

Minor Changes

Patch Changes

@graphql-mesh/plugin-http-details-extensions@0.103.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/plugin-jit@0.1.12

Patch Changes

  • Updated dependencies
    [5180b06]:
    • @graphql-mesh/utils@0.103.12

@graphql-mesh/plugin-jwt-auth@1.4.2

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/plugin-live-query@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/plugin-mock@0.103.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/plugin-newrelic@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/plugin-operation-field-permissions@0.103.12

Patch Changes

  • Updated dependencies
    [c54e361]:
    • @graphql-mesh/types@0.103.12

@graphql-mesh/plugin-operation-headers@1.3.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/plugin-rate-limit@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/plugin-response-cache@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/plugin-snapshot@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/plugin-statsd@0.103.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/string-interpolation@0.5.8

Patch Changes

  • #8301
    78c202e
    Thanks @ardatan! - Avoid logging sensitive data directly. Instead,
    log a generic error message without including the potentially sensitive str variable. This way, it
    still notifies of errors without risking the exposure of sensitive information.

    • Replace the logging statement on line 176 in packages/string-interpolation/src/interpolator.js
      to avoid logging the str variable.
    • Ensure that the new logging statement provides enough information to debug the issue without
      exposing sensitive data.

@graphql-mesh/transport-grpc@0.2.2

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/transport-mysql@0.8.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/transport-neo4j@0.8.12

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12

@graphql-mesh/transport-odata@0.1.12

Patch Changes

  • Updated dependencies []:
    • @omnigraph/odata@0.1.12

@graphql-mesh/transport-rest@0.8.13

Patch Changes

  • Updated dependencies
    [5180b06,
    c54e361,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/types@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8

@graphql-mesh/transport-soap@0.8.12

Patch Changes

@graphql-mesh/transport-sqlite@0.8.12

Patch Changes

  • Updated dependencies []:
    • @omnigraph/sqlite@0.7.12

@graphql-mesh/transport-thrift@0.8.12

Patch Changes

  • Updated dependencies
    [5180b06,
    78c202e]:
    • @graphql-mesh/utils@0.103.12
    • @graphql-mesh/string-interpolation@0.5.8