Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 8, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-mesh/cache-cfw-kv (source) 0.104.10 -> 0.104.11 age adoption passing confidence
@graphql-mesh/cache-localforage (source) 0.103.11 -> 0.103.12 age adoption passing confidence
@graphql-mesh/cache-redis (source) 0.103.11 -> 0.103.12 age adoption passing confidence
@graphql-mesh/compose-cli (source) 1.3.4 -> 1.3.5 age adoption passing confidence
@graphql-mesh/fusion-composition (source) 0.7.16 -> 0.7.17 age adoption passing confidence
@graphql-mesh/include (source) 0.2.9 -> 0.2.10 age adoption passing confidence
@graphql-mesh/plugin-deduplicate-request (source) 0.103.10 -> 0.103.11 age adoption passing confidence
@graphql-mesh/plugin-hive (source) 0.103.10 -> 0.103.11 age adoption passing confidence
@graphql-mesh/plugin-http-cache (source) 0.103.11 -> 0.103.12 age adoption passing confidence
@graphql-mesh/plugin-jit (source) 0.1.10 -> 0.1.11 age adoption passing confidence
@graphql-mesh/plugin-jwt-auth (source) 1.4.0 -> 1.4.1 age adoption passing confidence
@graphql-mesh/plugin-live-query (source) 0.103.10 -> 0.103.11 age adoption passing confidence
@graphql-mesh/plugin-mock (source) 0.103.11 -> 0.103.12 age adoption passing confidence
@graphql-mesh/plugin-rate-limit (source) 0.103.10 -> 0.103.11 age adoption passing confidence
@graphql-mesh/plugin-response-cache (source) 0.103.10 -> 0.103.11 age adoption passing confidence
@graphql-mesh/plugin-snapshot (source) 0.103.10 -> 0.103.11 age adoption passing confidence
@graphql-mesh/transport-rest (source) 0.8.10 -> 0.8.11 age adoption passing confidence
@graphql-mesh/transport-soap (source) 0.8.10 -> 0.8.11 age adoption passing confidence
@graphql-mesh/types (source) 0.103.10 -> 0.103.11 age adoption passing confidence
@graphql-mesh/utils (source) 0.103.10 -> 0.103.11 age adoption passing confidence
@omnigraph/json-schema (source) 0.108.10 -> 0.108.11 age adoption passing confidence
@omnigraph/openapi (source) 0.108.12 -> 0.108.13 age adoption passing confidence

Release Notes

ardatan/graphql-mesh (@​graphql-mesh/cache-cfw-kv)

v0.104.11

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/cache-localforage)

v0.103.12

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/cache-redis)

v0.103.12

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/compose-cli)

v1.3.5

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/fusion-composition)

v0.7.17

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/include)

v0.2.10

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/plugin-deduplicate-request)

v0.103.11

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/plugin-hive)

v0.103.11

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/plugin-http-cache)

v0.103.12

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/plugin-jit)

v0.1.11

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/plugin-jwt-auth)

v1.4.1

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/plugin-live-query)

v0.103.11

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/plugin-mock)

v0.103.12

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/plugin-rate-limit)

v0.103.11

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/plugin-snapshot)

v0.103.11

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/transport-rest)

v0.8.11

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/transport-soap)

v0.8.11

Compare Source

Patch Changes
  • #​8196
    3fc1f3e
    Thanks @​ardatan! - - You can now choose the name of the alias you
    want to use for SOAP body;

    import { defineConfig } from '@​graphql-mesh/compose-cli'
    
    export const composeConfig = defineConfig({
      sources: [
        {
          sourceHandler: loadSOAPSubgraph('CountryInfo', {
            source:
              'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
            bodyAlias: 'my-body'
          })
        }
      ]
    })
    • Then it will generate a body like below by using the alias;
    <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:my-body="http://foo.com/">
       <soap:Body>
          <my-body:Foo>
              <my-body:Bar>baz</my-body:Bar>
          </my-body:Foo>
       </soap:Body>
    </soap:Envelope>

    If you want to add SOAP headers to the request body like below;

    <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:header="http://foo.com/">
       <soap:Header>
          <header:MyHeader>
             <header:UserName>user</header:UserName>
             <header:Password>password</header:Password>
          </header:MyHeader>
       </soap:Header>

    You can add the headers to the configuration like below;

    import { defineConfig } from '@&#8203;graphql-mesh/compose-cli'
    import { loadSOAPSubgraph } from '@&#8203;omnigraph/soap'
    
    export const composeConfig = defineConfig({
      subgraphs: [
        {
          sourceHandler: loadSOAPSubgraph('CountryInfo', {
            source:
              'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
            soapHeaders: {
              alias: 'header',
              namespace: 'http://foo.com',
              headers: {
                MyHeader: {
                  UserName: 'user',
                  Password: 'password'
                }
              }
            }
          })
        }
      ]
    })
  • Updated dependencies
    [3fc1f3e,
    4011203]:

ardatan/graphql-mesh (@​graphql-mesh/types)

v0.103.11

Compare Source

Patch Changes
  • #​8196
    3fc1f3e
    Thanks @​ardatan! - - You can now choose the name of the alias you
    want to use for SOAP body;

    import { defineConfig } from '@&#8203;graphql-mesh/compose-cli'
    
    export const composeConfig = defineConfig({
      sources: [
        {
          sourceHandler: loadSOAPSubgraph('CountryInfo', {
            source:
              'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
            bodyAlias: 'my-body'
          })
        }
      ]
    })
    • Then it will generate a body like below by using the alias;
    <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:my-body="http://foo.com/">
       <soap:Body>
          <my-body:Foo>
              <my-body:Bar>baz</my-body:Bar>
          </my-body:Foo>
       </soap:Body>
    </soap:Envelope>

    If you want to add SOAP headers to the request body like below;

    <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:header="http://foo.com/">
       <soap:Header>
          <header:MyHeader>
             <header:UserName>user</header:UserName>
             <header:Password>password</header:Password>
          </header:MyHeader>
       </soap:Header>

    You can add the headers to the configuration like below;

    import { defineConfig } from '@&#8203;graphql-mesh/compose-cli'
    import { loadSOAPSubgraph } from '@&#8203;omnigraph/soap'
    
    export const composeConfig = defineConfig({
      subgraphs: [
        {
          sourceHandler: loadSOAPSubgraph('CountryInfo', {
            source:
              'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
            soapHeaders: {
              alias: 'header',
              namespace: 'http://foo.com',
              headers: {
                MyHeader: {
                  UserName: 'user',
                  Password: 'password'
                }
              }
            }
          })
        }
      ]
    })
  • Updated dependencies []:

ardatan/graphql-mesh (@​graphql-mesh/utils)

v0.103.11

Compare Source

Patch Changes
ardatan/graphql-mesh (@​omnigraph/json-schema)

v0.108.11

Compare Source

Patch Changes
ardatan/graphql-mesh (@​omnigraph/openapi)

v0.108.13

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Jan 8, 2025
@ardatan ardatan merged commit 6aed37b into main Jan 8, 2025
52 checks passed
@ardatan ardatan deleted the renovate/all-graphql-mesh-dependencies branch January 8, 2025 10:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant