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

chore(deps): update all non-major dependencies #5183

Merged
merged 3 commits into from
Feb 27, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 27, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cloudflare/workers-types 4.20230215.0 -> 4.20230221.0 age adoption passing confidence
@graphql-codegen/core (source) 3.0.0 -> 3.1.0 age adoption passing confidence
@graphql-codegen/typed-document-node 3.0.0 -> 3.0.1 age adoption passing confidence
@graphql-tools/batch-delegate 8.4.20 -> 8.4.21 age adoption passing confidence
@graphql-tools/delegate 9.0.27 -> 9.0.28 age adoption passing confidence
@graphql-tools/stitch 8.7.41 -> 8.7.42 age adoption passing confidence
@graphql-tools/stitching-directives 2.3.30 -> 2.3.31 age adoption passing confidence
@graphql-tools/wrap 9.3.6 -> 9.3.7 age adoption passing confidence
@graphql-typed-document-node/core 3.1.1 -> 3.1.2 age adoption passing confidence
@grpc/grpc-js (source) 1.8.9 -> 1.8.11 age adoption passing confidence
@neo4j/graphql (source) 3.16.1 -> 3.17.0 age adoption passing confidence
@types/node (source) 18.14.0 -> 18.14.2 age adoption passing confidence
@whatwg-node/router 0.2.7 -> 0.3.0 age adoption passing confidence
cosmiconfig 8.0.0 -> 8.1.0 age adoption passing confidence
esbuild 0.17.9 -> 0.17.10 age adoption passing confidence
eslint (source) 8.34.0 -> 8.35.0 age adoption passing confidence
fast-xml-parser 4.1.2 -> 4.1.3 age adoption passing confidence
minimatch 7.0.0 -> 7.2.0 age adoption passing confidence
mongoose (source) 6.9.2 -> 6.10.0 age adoption passing confidence
neo4j-driver 5.5.0 -> 5.6.0 age adoption passing confidence
vite (source) 4.1.3 -> 4.1.4 age adoption passing confidence
wrangler 2.10.0 -> 2.11.1 age adoption passing confidence
yargs (source) 17.7.0 -> 17.7.1 age adoption passing confidence

Release Notes

cloudflare/workerd

v4.20230221.0

Compare Source

dotansimha/graphql-code-generator (@​graphql-codegen/core)

v3.1.0

Compare Source

Minor Changes
  • #​8723 a3309e63e Thanks @​kazekyo! - Introduce a new feature called DocumentTransform.

    DocumentTransform is a functionality that allows you to modify documents before they are processed by plugins. You can use functions passed to the documentTransforms option to make changes to GraphQL documents.

    To use this feature, you can write documentTransforms as follows:

    import type { CodegenConfig } from '@​graphql-codegen/cli';
    
    const config: CodegenConfig = {
      schema: 'https://localhost:4000/graphql',
      documents: ['src/**/*.tsx'],
      generates: {
        './src/gql/': {
          preset: 'client',
          documentTransforms: [
            {
              transform: ({ documents }) => {
                // Make some changes to the documents
                return documents;
              },
            },
          ],
        },
      },
    };
    export default config;

    For instance, to remove a @localOnlyDirective directive from documents, you can write the following code:

    import type { CodegenConfig } from '@​graphql-codegen/cli';
    import { visit } from 'graphql';
    
    const config: CodegenConfig = {
      schema: 'https://localhost:4000/graphql',
      documents: ['src/**/*.tsx'],
      generates: {
        './src/gql/': {
          preset: 'client',
          documentTransforms: [
            {
              transform: ({ documents }) => {
                return documents.map(documentFile => {
                  documentFile.document = visit(documentFile.document, {
                    Directive: {
                      leave(node) {
                        if (node.name.value === 'localOnlyDirective') return null;
                      },
                    },
                  });
                  return documentFile;
                });
              },
            },
          ],
        },
      },
    };
    export default config;

    DocumentTransform can also be specified by file name. You can create a custom file for a specific transformation and pass it to documentTransforms.

    Let's create the document transform as a file:

    module.exports = {
      transform: ({ documents }) => {
        // Make some changes to the documents
        return documents;
      },
    };

    Then, you can specify the file name as follows:

    import type { CodegenConfig } from '@​graphql-codegen/cli';
    
    const config: CodegenConfig = {
      schema: 'https://localhost:4000/graphql',
      documents: ['src/**/*.tsx'],
      generates: {
        './src/gql/': {
          preset: 'client',
          documentTransforms: ['./my-document-transform.js'],
        },
      },
    };
    export default config;
Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/typed-document-node)

v3.0.1

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/batch-delegate)

v8.4.21

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/delegate)

v9.0.28

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/stitch)

v8.7.42

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/stitching-directives)

v2.3.31

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/wrap)

v9.3.7

Compare Source

Patch Changes
dotansimha/graphql-typed-document-node

v3.1.2

Compare Source

grpc/grpc-node

v1.8.11: @​grpc/grpc-js 1.8.11

Compare Source

  • Avoid accumulating placeholder objects when sending many messages on a long-running stream (#​2372)

v1.8.10: @​grpc/grpc-js 1.8.10

Compare Source

  • Fix bugs in "pick first" load balancing policy that caused incorrect reconnection behavior (#​2369)
neo4j/graphql

v3.17.0

Compare Source

Minor Changes
  • #​2442 6f0d9c06d Thanks @​darrellwarde! - Experimental support for Apollo Federation. Call getSubgraphSchema() to allow the schema to be used in a supergraph. The API is still being refined and will be subject to breaking changes.
Patch Changes
ardatan/whatwg-node

v0.3.0

Compare Source

Minor Changes
Patch Changes
cosmiconfig/cosmiconfig

v8.1.0

Compare Source

  • Added: always look at .config.{yml,yaml,json,js,cjs} file to configure cosmiconfig itself, and look for tool configuration in it using packageProp (similar to package.json)
evanw/esbuild

v0.17.10

Compare Source

  • Update esbuild's handling of CSS nesting to match the latest specification changes (#​1945)

    The syntax for the upcoming CSS nesting feature has recently changed. The @nest prefix that was previously required in some cases is now gone, and nested rules no longer have to start with & (as long as they don't start with an identifier or function token).

    This release updates esbuild's pass-through handling of CSS nesting syntax to match the latest specification changes. So you can now use esbuild to bundle CSS containing nested rules and try them out in a browser that supports CSS nesting (which includes nightly builds of both Chrome and Safari).

    However, I'm not implementing lowering of nested CSS to non-nested CSS for older browsers yet. While the syntax has been decided, the semantics are still in flux. In particular, there is still some debate about changing the fundamental way that CSS nesting works. For example, you might think that the following CSS is equivalent to a .outer .inner button { ... } rule:

    .inner button {
      .outer & {
        color: red;
      }
    }

    But instead it's actually equivalent to a .outer :is(.inner button) { ... } rule which unintuitively also matches the following DOM structure:

    <div class="inner">
      <div class="outer">
        <button></button>
      </div>
    </div>

    The :is() behavior is preferred by browser implementers because it's more memory-efficient, but the straightforward translation into a .outer .inner button { ... } rule is preferred by developers used to the existing CSS preprocessing ecosystem (e.g. SASS). It seems premature to commit esbuild to specific semantics for this syntax at this time given the ongoing debate.

  • Fix cross-file CSS rule deduplication involving url() tokens (#​2936)

    Previously cross-file CSS rule deduplication didn't handle url() tokens correctly. These tokens contain references to import paths which may be internal (i.e. in the bundle) or external (i.e. not in the bundle). When comparing two url() tokens for equality, the underlying import paths should be compared instead of their references. This release of esbuild fixes url() token comparisons. One side effect is that @font-face rules should now be deduplicated correctly across files:

    /* Original code */
    @&#8203;import "data:text/css, \
      @&#8203;import 'http://example.com/style.css'; \
      @&#8203;font-face { src: url(http://example.com/font.ttf) }";
    @&#8203;import "data:text/css, \
      @&#8203;font-face { src: url(http://example.com/font.ttf) }";
    
    /* Old output (with --bundle --minify) */
    @&#8203;import"http://example.com/style.css";@&#8203;font-face{src:url(http://example.com/font.ttf)}@&#8203;font-face{src:url(http://example.com/font.ttf)}
    
    /* New output (with --bundle --minify) */
    @&#8203;import"http://example.com/style.css";@&#8203;font-face{src:url(http://example.com/font.ttf)}
eslint/eslint

v8.35.0

Compare Source

Features

  • 8e34a04 feat: add afterHashbangComment option to lines-around-comment rule (#​16920) (SUZUKI Sosuke)
  • c8c0c71 feat: Move all and recommended configs into package. (#​16844) (Nicholas C. Zakas)
  • 71f6f0d feat: report more cases with ?? in no-constant-binary-expression (#​16826) (Daiki Nishikawa)

Bug Fixes

Documentation

Chores

NaturalIntelligence/fast-xml-parser

v4.1.3

Compare Source

isaacs/minimatch

v7.2.0

Compare Source

v7.1.4

Compare Source

v7.1.3

Compare Source

v7.1.2

Compare Source

v7.1.1

Compare Source

v7.1.0

Compare Source

v7.0.1

Compare Source

Automattic/mongoose

v6.10.0

Compare Source

===================

v6.9.3

Compare Source

==================

neo4j/neo4j-javascript-driver

v5.6.0

Compare Source

See release notes on the wiki

vitejs/vite

v4.1.4

Compare Source

cloudflare/workers-sdk

v2.11.1

Compare Source

Patch Changes
  • #​2795 ec3e181e Thanks @​penalosa! - fix: Adds a duplex: "half" property to R2 fetch requests with stream bodies in order to be compatible with undici v5.20
  • #​2789 4ca8c0b0 Thanks @​GregBrimble! - fix: Support overriding the next URL in subsequent executions with next("/new-path") from within a Pages Plugin

v2.11.0

Compare Source

Minor Changes
  • #​2651 a9adfbe7 Thanks @​penalosa! - Previously, wrangler dev would not work if the root of your zone wasn't behind Cloudflare. This behaviour has changed so that now only the route which your Worker is exposed on has to be behind Cloudflare.
  • #​2708 b3346cfb Thanks @​Skye-31! - Feat: Pages now supports Proxying (200 status) redirects in it's _redirects file

    This will look something like the following, where a request to /users/123 will appear as that in the browser, but will internally go to /users/[id].html.

    /users/:id /users/[id] 200
    
Patch Changes
  • #​2766 7912e63a Thanks @​mrbbot! - fix: correctly detect service-worker format when using typeof module

    Wrangler automatically detects whether your code is a modules or service-worker format Worker based on the presence of a default export. This check currently works by building your entrypoint with esbuild and looking at the output metafile.

    Previously, we were passing format: "esm" to esbuild when performing this check, which enables format conversion. This may introduce export default into the built code, even if it wasn't there to start with, resulting in incorrect format detections.

    This change removes format: "esm" which disables format conversion when bundling is disabled. See https://esbuild.github.io/api/#format for more details.

  • #​2780 80f1187a Thanks @​GregBrimble! - fix: Ensure we don't mangle internal constructor names in the wrangler bundle when building with esbuild

    Undici changed how they referenced FormData, which meant that when used in our bundle process, we were failing to upload multipart/form-data bodies. This affected wrangler pages publish and wrangler publish.

  • #​2720 de0cb57a Thanks @​JacobMGEvans! - Fix: Upgraded to ES2022 for improved compatibility
    Upgraded worker code target version from ES2020 to ES2022 for better compatibility and unblocking of a workaround related to issue #​2029. The worker runtime now uses the same V8 version as recent Chrome and is 99% ES2016+ compliant. The only thing we don't support on the Workers runtime, the remaining 1%, is the ES2022 RegEx feature as seen in the compat table for the latest Chrome version.

    Compatibility table: https://kangax.github.io/compat-table/es2016plus/

    resolves #​2716

yargs/yargs

v17.7.1

Compare Source

Bug Fixes

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 has been generated by Mend Renovate. View repository job log here.

@changeset-bot
Copy link

changeset-bot bot commented Feb 27, 2023

🦋 Changeset detected

Latest commit: 3cf6a30

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 105 packages
Name Type
@graphql-mesh/cli Patch
@graphql-mesh/graphql Patch
@graphql-mesh/http Patch
@graphql-mesh/merger-federation Patch
@graphql-mesh/merger-stitching Patch
@graphql-mesh/mysql Patch
@graphql-mesh/neo4j Patch
@graphql-mesh/odata Patch
@graphql-mesh/plugin-rate-limit Patch
@graphql-mesh/plugin-snapshot Patch
@graphql-mesh/postgraphile Patch
@graphql-mesh/runtime Patch
@graphql-mesh/transform-encapsulate Patch
@graphql-mesh/transform-federation Patch
@graphql-mesh/transform-filter-schema Patch
@graphql-mesh/transform-hive Patch
@graphql-mesh/transform-hoist-field Patch
@graphql-mesh/transform-naming-convention Patch
@graphql-mesh/transform-prefix Patch
@graphql-mesh/transform-rename Patch
@graphql-mesh/transform-type-merging Patch
@graphql-mesh/types Patch
@graphql-mesh/utils Patch
@omnigraph/soap Patch
auth0-example Patch
cloudflare-workers Patch
example-gcp Patch
graphql-file-upload-example Patch
grpc-example Patch
grpc-reflection-example Patch
hasura-openbrewery-geodb Patch
hello-world-esm Patch
json-schema-hello-world Patch
covid-mesh Patch
json-schema-example Patch
json-schema-fhir Patch
json-schema-file-upload Patch
json-schema-subscriptions Patch
mongoose-example Patch
mysql-employees Patch
mysql-rfam Patch
neo4j-example Patch
nextjs-apollo-example Patch
nextjs-sdk-example Patch
odata-microsoft-graph-example Patch
odata-msgraph-programmatic-ts Patch
odata-msgraph-programmatic Patch
odata-trippin-example Patch
javascript-wiki Patch
typescript-location-weather-example Patch
openapi-meilisearch Patch
openapi-stackexchange Patch
openapi-stripe Patch
openapi-subscriptions Patch
openapi-youtrack Patch
openwhisk-example Patch
postgres-geodb-example Patch
programmatic-batching-example Patch
reddit-example Patch
country-info-example Patch
soap-demo Patch
soap-netsuite Patch
spacex-cfw Patch
chinook Patch
thrift-calculator Patch
type-merging-batching-example Patch
federation-gateway Patch
gateway-example Patch
@graphql-mesh/config Patch
@graphql-mesh/merger-bare Patch
@graphql-mesh/jit-executor Patch
json-machete Patch
@graphql-mesh/store Patch
@graphql-mesh/cache-cfw-kv Patch
@graphql-mesh/cache-file Patch
@graphql-mesh/cache-localforage Patch
@graphql-mesh/cache-redis Patch
@graphql-mesh/grpc Patch
@graphql-mesh/json-schema Patch
@graphql-mesh/mongoose Patch
@graphql-mesh/openapi Patch
@graphql-mesh/raml Patch
@graphql-mesh/soap Patch
@graphql-mesh/thrift Patch
@graphql-mesh/tuql Patch
@graphql-mesh/transform-cache Patch
@graphql-mesh/transform-extend Patch
@graphql-mesh/transform-prune Patch
@graphql-mesh/transform-rate-limit Patch
@graphql-mesh/transform-replace-field Patch
@graphql-mesh/transform-resolvers-composition Patch
@graphql-mesh/plugin-deduplicate-request Patch
@graphql-mesh/plugin-hive Patch
@graphql-mesh/plugin-http-cache Patch
@graphql-mesh/plugin-http-details-extensions Patch
@graphql-mesh/plugin-live-query Patch
@graphql-mesh/plugin-mock Patch
@graphql-mesh/plugin-newrelic Patch
@graphql-mesh/plugin-operation-field-permissions Patch
@graphql-mesh/plugin-prometheus Patch
@graphql-mesh/plugin-response-cache Patch
@graphql-mesh/plugin-statsd Patch
@omnigraph/json-schema Patch
@omnigraph/openapi Patch
@omnigraph/raml Patch

Not sure what this means? Click here to learn what changesets are.

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

@github-actions
Copy link
Contributor

github-actions bot commented Feb 27, 2023

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets):

Package Version Info
@graphql-mesh/cache-cfw-kv 0.1.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-file 0.10.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-localforage 0.7.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-redis 0.11.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/cli 0.82.24-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/config 10.1.7-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/graphql 0.34.7-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/grpc 0.29.11-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/json-schema 0.37.16-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/mongoose 0.13.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/mysql 0.19.13-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/neo4j 0.22.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/odata 0.22.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/openapi 0.35.18-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/postgraphile 0.22.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/raml 0.10.16-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/soap 0.17.16-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/thrift 0.12.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/tuql 0.8.13-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/http 0.3.20-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/jit-executor 0.1.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
json-machete 0.18.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@omnigraph/json-schema 0.38.16-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@omnigraph/openapi 0.19.18-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@omnigraph/raml 0.9.16-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@omnigraph/soap 0.4.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-bare 0.16.16-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-federation 0.13.16-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-stitching 0.18.16-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-deduplicate-request 0.1.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-hive 0.1.4-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-http-cache 0.1.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-http-details-extensions 0.1.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-live-query 0.2.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-mock 0.1.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-newrelic 0.3.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-operation-field-permissions 0.1.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-prometheus 0.5.2-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-rate-limit 0.2.16-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-response-cache 0.2.16-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-snapshot 0.1.17-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-statsd 0.1.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/runtime 0.46.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/store 0.9.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-cache 0.13.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-encapsulate 0.4.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-extend 0.11.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-federation 0.11.7-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-filter-schema 0.15.17-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-hive 0.0.20-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-hoist-field 0.2.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-naming-convention 0.13.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-prefix 0.12.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-prune 0.1.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-rate-limit 0.2.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-rename 0.14.15-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-replace-field 0.4.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-resolvers-composition 0.13.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-type-merging 0.5.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/types 0.91.6-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎
@graphql-mesh/utils 0.43.14-alpha-20230227101937-3cf6a306b npm ↗︎ unpkg ↗︎

@github-actions
Copy link
Contributor

github-actions bot commented Feb 27, 2023

💻 Website Preview

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

@ardatan ardatan merged commit 0b438c3 into master Feb 27, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Feb 27, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

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