Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upcoming Release Changes #8236

Merged
merged 1 commit into from
Jan 8, 2025
Merged

Upcoming Release Changes #8236

merged 1 commit into from
Jan 8, 2025

Conversation

theguild-bot
Copy link
Collaborator

@theguild-bot theguild-bot commented Jan 7, 2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.

Releases

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

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 '@graphql-mesh/compose-cli'
    import { loadSOAPSubgraph } from '@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 []:

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@omnigraph/[email protected]

Patch Changes

@omnigraph/[email protected]

Patch Changes

@omnigraph/[email protected]

Patch Changes

@omnigraph/[email protected]

Patch Changes

@omnigraph/[email protected]

Patch Changes

@omnigraph/[email protected]

Patch Changes

@omnigraph/[email protected]

Patch Changes

  • #8196
    3fc1f3e
    Thanks @ardatan! - dependencies updates:

  • #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 '@graphql-mesh/compose-cli'
    import { loadSOAPSubgraph } from '@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]:

@omnigraph/[email protected]

Patch Changes

@omnigraph/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

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 '@graphql-mesh/compose-cli'
    import { loadSOAPSubgraph } from '@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]:

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

@theguild-bot theguild-bot force-pushed the changeset-release/master branch from 10a52aa to 167ee43 Compare January 7, 2025 23:19
Copy link
Contributor

github-actions bot commented Jan 7, 2025

💻 Website Preview

The latest changes are available as preview in: https://40801d99.graphql-mesh.pages.dev

@theguild-bot theguild-bot force-pushed the changeset-release/master branch from 167ee43 to f91d5b0 Compare January 7, 2025 23:22
Copy link
Contributor

github-actions bot commented Jan 7, 2025

Apollo Federation Subgraph Compatibility Results

Federation 1 Support Federation 2 Support
_service🟢
@key (single)🟢
@key (multi)🟢
@key (composite)🟢
repeatable @key🟢
@requires🟢
@provides🟢
federated tracing🟢
@link🟢
@shareable🟢
@tag🟢
@override🟢
@inaccessible🟢
@composeDirective🟢
@interfaceObject🟢

Learn more:

@theguild-bot theguild-bot force-pushed the changeset-release/master branch from f91d5b0 to cd81958 Compare January 8, 2025 09:31
@theguild-bot theguild-bot force-pushed the changeset-release/master branch from cd81958 to 2b0c465 Compare January 8, 2025 09:34
@ardatan ardatan merged commit 980f8cb into master Jan 8, 2025
15 checks passed
@ardatan ardatan deleted the changeset-release/master branch January 8, 2025 09:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants