Giter Site home page Giter Site logo

graphql-auto-federate's Introduction

graphql-auto-federate

Automatically federate a GraphQL service

Quick Start

const fastify = require('fastify')
const mercurius = require('mercurius')
const { buildFederatedService } = require('graphql-auto-federate')

const federated = await buildFederatedService({
  url: `http://original-service:1234/graphql`
})

const federatedService = fastify()
federatedService.register(mercurius, {
  ...federated,
  federationMetadata: true,
  jit: 1
})
await federatedService.listen(3001)

const gateway = fastify()
gateway.register(mercurius, {
  services: [{ name: 'auto', url: `http://localhost:3001/graphql` }],
  jit: 1
})
await gateway.listen(3000)

// query the gateway @ port 3000
// curl -X POST -H 'content-type: application/json' -d '{ "query": "{ hello(greeting: \"ciao\") }" }' localhost:3000/graphql

How it works

Given an existing GraphQL service, graphql-auto-federate reads the schema and builds a new service with federation information that acts as a proxy, forwarding requests to the original service:

( gateway ) --> ( federated "proxy" service ) --> ( original service )

graphql-auto-federate discovers as much information as possible from the original service schema, but additional information is typically required for a working federated service.

This can be achieved by specifying __resolveReference resolvers and directives for entity types (see options).

__resolveReference

The __resolveReference resolver is critical for a working federated service. Implementing __resolveReference for entities in this context (a "proxy" to federate an existing service) is not trivial and strongly depends on the schema and entities provided by the original service.

A special forward function is provided along with the regular resolver arguments to facilitate querying the original service (errors are already managed).

Example

options: {
  resolvers: {
    User: {
      __resolveReference: async (self, args, context, info, forward) => {
        const response = await forward({
          query: `{ getUser (id: ${self.id}) { name, fullName } }`
        })

        return {
          ...response.getUser,
          ...self
        }
      }
    }
  }
}

Note: in some cases, __resolveReference is redundant, for example in Query resolvers, the original service provides all of the required information without needing to call __resolveReference again.


API

buildFederatedService

buildFederatedService ({ url, options }) => { schema, resolvers }

Creates the { schema, resolvers } information to build the federated service.

It performs an introspection query to the original service, then augments the schema to produce a federated schema and resolvers.

options should contain additional information for type and resolvers, that are merged and override those that are discovered.

Example

From the original service schema:

type Query {
  getUser(id: ID!): User
  getUsers: [User]!
}

type Mutation {
  createUser(user: InputUser): User
  updateUser(id: ID!, user: InputUser): User
  deleteUser(id: ID!): ID
}

input InputUser {
  name: String!
}

type User {
  id: ID!
  name: String!
  fullName: String
  friends: [User]
}
const { schema, resolvers } = await buildFederatedService({
  url: `http://original-service:1234/graphql`
})

Generated federated schema is:

extend type Query {
  getUser(id: ID!): User
  getUsers: [User]!
}
extend type Mutation {
  createUser(user: InputUser): User
  updateUser(id: ID!, user: InputUser): User
  deleteUser(id: ID!): ID
}
input InputUser {
  name: String!
}
type User @key(fields: "id") {
  id: ID!
  name: String!
  fullName: String
  friends: [User]
}

Generated federated resolvers are:

{
  Query: {
    getUser: (...) => // forward query
    getUsers: (...) => // forward query
  },
  Mutation: {
    createUser: (...) => // forward query
    updateUser: (...) => // forward query
    deleteUser: (...) => // forward query
  },
  User: {
    __resolveReference: (self) => { console.warn('__resolveReference called', self) }
  }
}

url

the url of the original GraphQL service

options

  • auto (boolean)

auto option discovers the schema from the original service and builds the relative federated schema and resolvers (default: true)

  • type

Inject information to the type definition schema, adding @extend or @directives for entity types. These are merged with (and override) the auto discovered ones if any.

  • @extend (boolean) add "extend" to the type
  • @directives (string) add directives as a string to the type, see federation spec for supported directives

Example

From original service schema:

type Query {
  getUser(id: ID!): User
  getUsers: [User]!
}
type User {
  id: ID!
  name: String!
  fullName: String
}

Using options:

options: {
  auto: false,
  type: {
    Query: {
      '@extend': true
    },
    User: {
      '@directives': '@key(fields: "id") @external'
    }
  }
}

Generated federated schema:

extend type Query {
  getUser(id: ID!): User
  getUsers: [User]!
}
type User @key(fields: "id") @external {
  id: ID!
  name: String!
  fullName: String
}
  • resolvers

Provide resolvers, these are merged with (and override) the auto discovered ones if any.


Supported features

Automatic generation of federated schema supports

  • queries
  • mutations
  • entities
  • scalar types
  • enums
  • unions
  • directives

TODO

  • options.loaders
  • headers in graphqlRequest
  • improve __resolveReference resolution
    • provide fields that need to be resolved (from context.__currentQuery?)
    • (from mercurius gateway) do not query __resolveReference if not necessary
  • 100% test coverage
  • use a model for __resolveReference - { query, variables, transform (jsonata) }
  • more advanced examples in "How it works" section
  • support subscriptions in schema/resolvers
  • comments in federated schema
  • jsdoc and type check
  • expose buildFederatedInfo and document it
  • field aliasing on forwarded queries

graphql-auto-federate's People

Contributors

bredikhin avatar davideroffo avatar dependabot[bot] avatar grantmorrison avatar guilhermelimak avatar ianlnf avatar ilteoood avatar krisgrint avatar mahenrique94 avatar marco-ippolito avatar melkornemesis avatar optic-release-automation[bot] avatar sameer-coder avatar simoneb avatar synapse avatar williamlines avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

graphql-auto-federate's Issues

Release pending!

Pending commits since release v0.3.7

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • c850b2e chore(deps-dev): bump @commitlint/cli from 18.4.4 to 18.6.0 (#387)
  • 6d62620 chore(deps): bump undici from 6.4.0 to 6.5.0 (#386)
  • 45ebcb0 chore(deps-dev): bump @commitlint/config-conventional (#385)
  • 793019e chore(deps): bump undici from 6.3.0 to 6.4.0 (#384)
  • 749708e chore(deps): bump rfdc from 1.3.0 to 1.3.1 (#382)
  • 8c73c4b chore(deps): bump undici from 6.2.1 to 6.3.0 (#381)
  • e430c93 chore(deps-dev): bump prettier from 3.1.1 to 3.2.2 (#380)
  • c1d372b chore(deps-dev): bump eslint-plugin-prettier from 5.1.2 to 5.1.3 (#379)
  • 56e8fa1 chore(deps-dev): bump @commitlint/config-conventional (#378)
  • 1776f7c chore(deps-dev): bump @commitlint/cli from 18.4.3 to 18.4.4 (#377)
  • 77c1c05 chore(deps): bump undici from 6.0.1 to 6.2.1 (#372)
  • 36af6a5 chore(deps-dev): bump mercurius from 13.3.2 to 13.3.3 (#375)
  • 8691e4a chore(deps-dev): bump @mercuriusjs/gateway from 2.1.0 to 2.2.0 (#374)
  • a2496d1 chore(deps-dev): bump fastify from 4.25.1 to 4.25.2 (#373)
  • 7385b66 chore(deps-dev): bump eslint from 8.55.0 to 8.56.0 (#367)
  • 16ea331 chore(deps-dev): bump eslint-config-prettier from 9.0.0 to 9.1.0 (#369)
  • f5af820 chore(deps-dev): bump eslint-plugin-prettier from 5.0.1 to 5.1.2 (#371)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.6

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 5caaaf9 chore(deps-dev): bump @commitlint/cli from 18.4.2 to 18.4.3 (#360)
  • b76f40e chore(deps-dev): bump lint-staged from 15.1.0 to 15.2.0 (#359)
  • 2628dbe chore(deps): bump undici from 5.28.0 to 5.28.2 (#358)
  • 68dd03d chore(deps-dev): bump @commitlint/config-conventional (#356)
  • 80d45fd chore(deps): bump undici from 5.27.2 to 5.28.0 (#355)
  • ed8b2c9 chore(deps-dev): bump eslint from 8.53.0 to 8.54.0 (#354)
  • 53304af chore(deps-dev): bump @commitlint/cli from 18.2.0 to 18.4.2 (#353)
  • f0a0b6b chore(deps-dev): bump prettier from 3.0.3 to 3.1.0 (#351)
  • ee737bd chore(deps-dev): bump @commitlint/config-conventional (#350)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 61a19c6 chore(deps-dev): bump eslint from 8.40.0 to 8.41.0 (#234)
  • f6e2da4 chore(deps): bump undici from 5.22.0 to 5.22.1 (#232)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.2.1

Unreleased commits have been found which are pending release, please publish the changes.

  • 6170076 chore(deps-dev): bump mercurius from 10.4.0 to 10.5.0 (#92)
  • 7ad7648 chore(deps-dev): bump @commitlint/cli from 17.1.1 to 17.1.2 (#91)
  • 2200994 chore(deps-dev): bump mercurius from 10.3.0 to 10.4.0 (#90)
  • 1fe7463 chore(deps-dev): bump @commitlint/cli from 17.0.3 to 17.1.1 (#89)
  • c1aaa71 chore(deps-dev): bump mercurius from 10.2.0 to 10.3.0 (#88)
  • 3d272f9 chore(deps-dev): bump eslint from 8.22.0 to 8.23.0 (#87)
  • b7737bd chore(deps-dev): bump fastify from 4.5.2 to 4.5.3 (#86)
  • bd86a3c chore(deps-dev): bump @commitlint/config-conventional (#85)
  • 1b7a657 chore(deps-dev): bump mercurius from 10.1.1 to 10.2.0 (#84)
  • e968a16 chore(deps): bump undici from 5.9.1 to 5.10.0 (#83)

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 5292a5c chore(deps): bump undici from 5.24.0 to 5.25.2 (#303)
  • ceab95a chore(deps-dev): bump eslint from 8.49.0 to 8.50.0 (#302)
  • 094010f chore(deps): bump graphql from 16.8.0 to 16.8.1 (#301)
  • e10339e chore(deps-dev): bump fastify from 4.22.2 to 4.23.2 (#298)
  • 7c34eb8 chore(deps): bump undici from 5.23.0 to 5.24.0 (#296)
  • fea0bf0 chore(deps-dev): bump eslint from 8.48.0 to 8.49.0 (#295)
  • 1d165ce chore(deps): bump actions/checkout from 3 to 4 (#294)
  • 838e701 chore(deps-dev): bump prettier from 3.0.2 to 3.0.3 (#292)
  • 2a6b35b chore(deps-dev): bump fastify from 4.22.0 to 4.22.2 (#291)
  • fd2231c chore(deps-dev): bump fastify from 4.21.0 to 4.22.0 (#288)
  • 1b1c55c chore(deps-dev): bump lint-staged from 14.0.0 to 14.0.1 (#289)
  • 737df70 chore(deps-dev): bump eslint from 8.47.0 to 8.48.0 (#287)
  • 641777c chore(deps): bump graphql from 16.7.1 to 16.8.0 (#286)
  • c07babd chore(deps-dev): bump prettier from 3.0.1 to 3.0.2 (#285)
  • 4e83832 chore(deps-dev): bump prettier from 2.8.8 to 3.0.1 (#276)
  • 25dd69f chore(deps-dev): bump lint-staged from 13.2.3 to 14.0.0 (#283)
  • 1a56d0b chore(deps-dev): bump eslint from 8.46.0 to 8.47.0 (#282)
  • 51460dd chore(deps-dev): bump @commitlint/config-conventional (#281)
  • 75c1ffd chore(deps-dev): bump @commitlint/cli from 17.6.7 to 17.7.1 (#280)
  • e266ff5 chore(deps-dev): bump dedent from 1.5.0 to 1.5.1 (#278)
  • 31114c9 chore(deps): bump undici from 5.22.1 to 5.23.0 (#277)
  • bc97234 chore(deps-dev): bump eslint-config-prettier from 8.9.0 to 9.0.0 (#275)
  • fe4e414 chore(deps-dev): bump dedent from 1.2.0 to 1.5.0 (#273)
  • aad4ce0 chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#272)
  • e2e3d0e chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 (#271)
  • b18ed6b chore(deps-dev): bump tap from 16.3.7 to 16.3.8 (#270)
  • bcc23d5 chore(deps-dev): bump fastify from 4.19.2 to 4.21.0 (#269)
  • 21a102f chore(deps-dev): bump dedent from 1.0.2 to 1.2.0 (#266)
  • 26a17e3 chore(deps-dev): bump @commitlint/cli from 17.6.6 to 17.6.7 (#265)
  • c088f46 chore(deps-dev): bump @commitlint/config-conventional (#264)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.4

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 9c38d25 chore(deps-dev): bump lint-staged from 15.0.1 to 15.1.0 (#345)
  • 3eb7775 chore(deps-dev): bump @commitlint/config-conventional (#346)
  • 18a55bf chore(deps-dev): bump @mercuriusjs/gateway from 2.0.0 to 2.1.0 (#344)
  • 6bfc78d chore(deps-dev): bump eslint from 8.52.0 to 8.53.0 (#341)
  • bcf891d chore(deps-dev): bump mercurius from 13.1.0 to 13.2.2 (#338)
  • c98c56c chore(deps): bump undici from 5.27.0 to 5.27.2 (#339)
  • 489fd2e chore(deps-dev): bump eslint from 8.51.0 to 8.52.0 (#323)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.2.0

Unreleased commits have been found which are pending release, please publish the changes.

  • 55b7d21 chore(deps-dev): bump mercurius from 10.1.0 to 10.1.1 (#81)
  • 09b61de chore(deps-dev): bump fastify from 4.4.0 to 4.5.2 (#80)
  • b2bd2a3 chore(deps): bump undici from 5.8.2 to 5.9.1 (#79)
  • 73cedea chore(deps): bump graphql from 16.5.0 to 16.6.0 (#78)
  • a692312 chore(deps-dev): bump eslint from 8.21.0 to 8.22.0 (#77)
  • 850f968 chore(deps): bump undici from 5.8.1 to 5.8.2 (#76)
  • 36442d0 chore(deps-dev): bump fastify from 4.3.0 to 4.4.0 (#75)
  • c268520 chore(deps): bump undici from 5.8.0 to 5.8.1 (#74)
  • 3cfd93a chore(deps-dev): bump eslint from 8.20.0 to 8.21.0 (#73)
  • 299e4bb chore(deps-dev): bump fastify from 4.2.1 to 4.3.0 (#72)
  • 843db1e chore(deps): bump undici from 5.6.1 to 5.8.0 (#71)
  • 8d4af83 chore(deps-dev): bump eslint from 8.19.0 to 8.20.0 (#70)
  • 8966b52 chore(deps-dev): bump fastify from 4.2.0 to 4.2.1 (#68)
  • 90bf474 chore(deps): bump undici from 5.6.0 to 5.6.1 (#67)
  • 0482eee chore(deps-dev): bump mercurius from 10.0.0 to 10.1.0 (#66)
  • d65c12a chore(deps): bump undici from 5.5.1 to 5.6.0 (#65)
  • 095e614 chore(deps-dev): bump eslint from 8.18.0 to 8.19.0 (#64)
  • c6244a9 chore(deps-dev): bump eslint-plugin-prettier from 4.2.0 to 4.2.1 (#63)
  • 6952c8a chore(deps-dev): bump eslint-plugin-prettier from 4.1.0 to 4.2.0 (#62)
  • 6bed035 chore(deps-dev): bump fastify from 4.1.0 to 4.2.0 (#60)
  • 0a71f52 chore(deps-dev): bump eslint-plugin-prettier from 4.0.0 to 4.1.0 (#59)
  • bcdbe19 chore(deps-dev): bump @commitlint/cli from 17.0.2 to 17.0.3 (#58)
  • e3adbfa chore(deps-dev): bump @commitlint/config-conventional (#57)
  • cfa0b88 chore(deps-dev): bump lint-staged from 13.0.2 to 13.0.3 (#56)
  • 969ec76 chore(deps): bump nearform/optic-release-automation-action from 2 to 3 (#55)
  • d316902 chore(deps-dev): bump fastify from 4.0.3 to 4.1.0 (#54)

Issue generated by github-actions-notify-release.

Implement aliasing for fields

Relates to #11 and the discussion in PR #22

Aliasing of fields in forwarded queries does not appear to be supported out of the box.

Consider the following addition to the test cases in test/proxy.test.js. The first test cases passes, but the second two fail:

{
    name: 'should federate a basic service with queries with aliases on fields',
    services: [
      {
        schema: dedent`
        type Query {
          me: User
        }
        type User {
          id: ID!
          name: String!
          address: String
        }
      `,
        resolvers: {
          Query: {
            me: () => db.users[1]
          },
          User: {
            address: () => 'Banbury'
          }
        }
      }
    ],
    queries: [
      {
        query: '{ me { userId: id, name } }',
        expected: {
          me: {
            userId: '1', // returns the correct aliased field
            name: 'Jimmy'
          }
        }
      },
      {
        query: '{ me { id, firstName: name } }',
        expected: {
          me: {
            userId: '1',
            firstName: 'Jimmy' // returns null for entire me object
          }
        }
      },
      {
        query: '{ me { id, location: address } }',
        expected: {
          me: {
            id: '1',
            location: 'Banbury' // returns null for location
          }
        }
      }
    ]
  }

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 641777c chore(deps): bump graphql from 16.7.1 to 16.8.0 (#286)
  • c07babd chore(deps-dev): bump prettier from 3.0.1 to 3.0.2 (#285)
  • 4e83832 chore(deps-dev): bump prettier from 2.8.8 to 3.0.1 (#276)
  • 25dd69f chore(deps-dev): bump lint-staged from 13.2.3 to 14.0.0 (#283)
  • 1a56d0b chore(deps-dev): bump eslint from 8.46.0 to 8.47.0 (#282)
  • 51460dd chore(deps-dev): bump @commitlint/config-conventional (#281)
  • 75c1ffd chore(deps-dev): bump @commitlint/cli from 17.6.7 to 17.7.1 (#280)
  • e266ff5 chore(deps-dev): bump dedent from 1.5.0 to 1.5.1 (#278)
  • 31114c9 chore(deps): bump undici from 5.22.1 to 5.23.0 (#277)
  • bc97234 chore(deps-dev): bump eslint-config-prettier from 8.9.0 to 9.0.0 (#275)
  • fe4e414 chore(deps-dev): bump dedent from 1.2.0 to 1.5.0 (#273)
  • aad4ce0 chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#272)
  • e2e3d0e chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 (#271)
  • b18ed6b chore(deps-dev): bump tap from 16.3.7 to 16.3.8 (#270)
  • bcc23d5 chore(deps-dev): bump fastify from 4.19.2 to 4.21.0 (#269)
  • 21a102f chore(deps-dev): bump dedent from 1.0.2 to 1.2.0 (#266)
  • 26a17e3 chore(deps-dev): bump @commitlint/cli from 17.6.6 to 17.6.7 (#265)
  • c088f46 chore(deps-dev): bump @commitlint/config-conventional (#264)
  • ef74974 chore(deps-dev): bump mercurius from 13.0.0 to 13.1.0 (#263)
  • 49ee54d chore(deps-dev): bump eslint from 8.44.0 to 8.45.0 (#262)
  • 1f9be98 chore(deps-dev): bump dedent from 0.7.0 to 1.0.2 (#261)
  • 506f442 chore(deps-dev): bump fastify from 4.19.1 to 4.19.2 (#258)
  • 2b25260 chore(deps-dev): bump eslint from 8.43.0 to 8.44.0 (#256)
  • 7c01b5d chore(deps-dev): bump lint-staged from 13.2.2 to 13.2.3 (#255)
  • 28fefbd chore(deps-dev): bump fastify from 4.18.0 to 4.19.1 (#254)
  • c048c6e chore: update dependabot config (#252)
  • 553d3a0 chore(deps-dev): bump @commitlint/cli from 17.6.5 to 17.6.6 (#251)
  • 71eea99 chore(deps-dev): bump @commitlint/config-conventional (#250)
  • cd56331 chore(deps): bump graphql from 16.7.0 to 16.7.1 (#249)
  • 0726d84 chore(deps-dev): bump tap from 16.3.6 to 16.3.7 (#248)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 7a22f95 chore(deps): bump actions/setup-node from 3 to 4 (#334)
  • 75cedcc chore(deps): bump undici from 5.26.4 to 5.27.0 (#333)
  • 9433295 chore(deps-dev): bump @commitlint/config-conventional (#331)
  • 2e26a7a chore(deps-dev): bump @commitlint/cli from 18.0.0 to 18.2.0 (#330)
  • b8c9d0c chore(deps-dev): bump fastify from 4.24.2 to 4.24.3 (#326)
  • f129719 chore(deps-dev): bump @commitlint/cli from 17.8.0 to 18.0.0 (#324)
  • b9792ac chore(deps): bump undici from 5.26.2 to 5.26.4 (#322)
  • e0031c5 chore(deps): bump @babel/traverse (#320)
  • 582612c chore(deps): bump undici from 5.25.4 to 5.26.2 (#319)
  • 412bbb3 chore(deps-dev): bump @commitlint/cli from 17.7.1 to 17.8.0 (#318)
  • 6d3943f chore(deps-dev): bump lint-staged from 14.0.1 to 15.0.1 (#317)
  • 3003f9c chore(deps-dev): bump fastify from 4.23.2 to 4.24.2 (#316)
  • ef50434 chore(deps-dev): bump eslint-plugin-prettier from 5.0.0 to 5.0.1 (#314)
  • 4d037ed chore(deps-dev): bump @commitlint/config-conventional (#313)
  • c36bb09 chore(deps-dev): bump eslint from 8.50.0 to 8.51.0 (#311)
  • 67da6a6 chore(deps): bump undici from 5.25.3 to 5.25.4 (#310)
  • 680b463 chore(deps): bump undici from 5.25.2 to 5.25.3 (#307)
  • 5292a5c chore(deps): bump undici from 5.24.0 to 5.25.2 (#303)
  • ceab95a chore(deps-dev): bump eslint from 8.49.0 to 8.50.0 (#302)
  • 094010f chore(deps): bump graphql from 16.8.0 to 16.8.1 (#301)
  • e10339e chore(deps-dev): bump fastify from 4.22.2 to 4.23.2 (#298)
  • 7c34eb8 chore(deps): bump undici from 5.23.0 to 5.24.0 (#296)
  • fea0bf0 chore(deps-dev): bump eslint from 8.48.0 to 8.49.0 (#295)
  • 1d165ce chore(deps): bump actions/checkout from 3 to 4 (#294)
  • 838e701 chore(deps-dev): bump prettier from 3.0.2 to 3.0.3 (#292)
  • 2a6b35b chore(deps-dev): bump fastify from 4.22.0 to 4.22.2 (#291)
  • fd2231c chore(deps-dev): bump fastify from 4.21.0 to 4.22.0 (#288)
  • 1b1c55c chore(deps-dev): bump lint-staged from 14.0.0 to 14.0.1 (#289)
  • 737df70 chore(deps-dev): bump eslint from 8.47.0 to 8.48.0 (#287)
  • 641777c chore(deps): bump graphql from 16.7.1 to 16.8.0 (#286)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 2b25260 chore(deps-dev): bump eslint from 8.43.0 to 8.44.0 (#256)
  • 7c01b5d chore(deps-dev): bump lint-staged from 13.2.2 to 13.2.3 (#255)
  • 28fefbd chore(deps-dev): bump fastify from 4.18.0 to 4.19.1 (#254)
  • c048c6e chore: update dependabot config (#252)
  • 553d3a0 chore(deps-dev): bump @commitlint/cli from 17.6.5 to 17.6.6 (#251)
  • 71eea99 chore(deps-dev): bump @commitlint/config-conventional (#250)
  • cd56331 chore(deps): bump graphql from 16.7.0 to 16.7.1 (#249)
  • 0726d84 chore(deps-dev): bump tap from 16.3.6 to 16.3.7 (#248)
  • c81c06b chore(deps): bump graphql from 16.6.0 to 16.7.0 (#247)
  • 4ccffd8 chore(deps-dev): bump eslint from 8.42.0 to 8.43.0 (#245)
  • c8cef0a chore(deps-dev): bump @mercuriusjs/gateway from 1.2.0 to 2.0.0 (#244)
  • 41a16c9 chore(deps-dev): bump fastify from 4.17.0 to 4.18.0 (#242)
  • 49e7589 chore(deps-dev): bump tap from 16.3.4 to 16.3.6 (#240)
  • 64bfe78 chore(deps-dev): bump get-port from 6.1.2 to 7.0.0 (#239)
  • c6f084f chore(deps-dev): bump eslint from 8.41.0 to 8.42.0 (#238)
  • 5c61b5f chore(deps-dev): bump @commitlint/config-conventional (#237)
  • 2abab9b chore(deps-dev): bump @commitlint/cli from 17.6.3 to 17.6.5 (#236)
  • 61a19c6 chore(deps-dev): bump eslint from 8.40.0 to 8.41.0 (#234)
  • f6e2da4 chore(deps): bump undici from 5.22.0 to 5.22.1 (#232)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.0

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 3fad4fa chore(deps-dev): bump @mercuriusjs/federation from 1.0.1 to 2.0.0 (#218)
  • 960dce5 chore(deps-dev): bump fastify from 4.16.3 to 4.17.0 (#219)
  • 43478c6 chore(deps-dev): bump mercurius from 12.2.0 to 13.0.0 (#217)
  • 291b0d0 chore(deps-dev): bump fastify from 4.15.0 to 4.16.3 (#216)
  • 8fa5b4e chore(deps-dev): bump lint-staged from 13.2.1 to 13.2.2 (#215)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.2.4

Based on the following commits, a minor release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 0f28c74 chore(deps-dev): bump eslint from 8.38.0 to 8.39.0 (#212)
  • 2cde7d1 chore(deps-dev): bump prettier from 2.8.7 to 2.8.8 (#211)
  • 4119d1d chore(deps): bump undici from 5.21.2 to 5.22.0 (#210)
  • 94559de chore(deps-dev): bump @commitlint/cli from 17.6.0 to 17.6.1 (#209)
  • fb03181 chore(deps-dev): bump @commitlint/config-conventional (#208)
  • f3db97d chore(deps-dev): bump @commitlint/cli from 17.5.1 to 17.6.0 (#207)
  • 6b04145 chore(deps-dev): bump @commitlint/config-conventional (#206)
  • a4035c2 ci: update notify-release action permissions (#205)
  • ff31e4b switch the org for github-action-notify-release (#204)
  • d3aa0db chore(deps): bump undici from 5.21.0 to 5.21.2 (#203)
  • e687bc6 chore(deps-dev): bump lint-staged from 13.2.0 to 13.2.1 (#202)
  • 3552b33 chore(deps-dev): bump eslint from 8.37.0 to 8.38.0 (#201)
  • b79951b switch the org and fix permissions for github-action-notify-release (#200)
  • 0db6b79 ci: update check-linked-issues job permissions (#199)
  • 34d50c3 switch the org for optic-release-automation-action (#198)
  • cbeb43d chore(deps-dev): bump @commitlint/cli from 17.5.0 to 17.5.1 (#197)
  • a057d8a chore(deps-dev): bump eslint from 8.36.0 to 8.37.0 (#196)
  • 10837d0 chore(deps-dev): bump prettier from 2.8.6 to 2.8.7 (#195)
  • 87f08ae chore(deps-dev): bump @commitlint/cli from 17.4.4 to 17.5.0 (#194)
  • 794b2ea chore(deps-dev): bump prettier from 2.8.5 to 2.8.6 (#193)
  • 03050f7 chore(deps-dev): bump eslint-config-prettier from 8.7.0 to 8.8.0 (#192)
  • d315af6 chore(deps-dev): bump fastify from 4.14.1 to 4.15.0 (#191)
  • 1c721da chore(deps-dev): bump prettier from 2.8.4 to 2.8.5 (#190)
  • 802f7e8 chore(deps): bump undici from 5.20.0 to 5.21.0 (#189)
  • d10b8d1 chore(deps-dev): bump eslint from 8.35.0 to 8.36.0 (#188)
  • 81e0138 chore(deps-dev): bump lint-staged from 13.1.2 to 13.2.0 (#187)
  • c5fd601 chore(deps-dev): bump eslint-config-prettier from 8.6.0 to 8.7.0 (#186)
  • 241d26f chore(deps-dev): bump fastify from 4.14.0 to 4.14.1 (#185)
  • a259711 chore(deps-dev): bump fastify from 4.13.0 to 4.14.0 (#184)
  • 4829f94 chore(deps-dev): bump eslint from 8.34.0 to 8.35.0 (#183)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • c048c6e chore: update dependabot config (#252)
  • 553d3a0 chore(deps-dev): bump @commitlint/cli from 17.6.5 to 17.6.6 (#251)
  • 71eea99 chore(deps-dev): bump @commitlint/config-conventional (#250)
  • cd56331 chore(deps): bump graphql from 16.7.0 to 16.7.1 (#249)
  • 0726d84 chore(deps-dev): bump tap from 16.3.6 to 16.3.7 (#248)
  • c81c06b chore(deps): bump graphql from 16.6.0 to 16.7.0 (#247)
  • 4ccffd8 chore(deps-dev): bump eslint from 8.42.0 to 8.43.0 (#245)
  • c8cef0a chore(deps-dev): bump @mercuriusjs/gateway from 1.2.0 to 2.0.0 (#244)
  • 41a16c9 chore(deps-dev): bump fastify from 4.17.0 to 4.18.0 (#242)
  • 49e7589 chore(deps-dev): bump tap from 16.3.4 to 16.3.6 (#240)
  • 64bfe78 chore(deps-dev): bump get-port from 6.1.2 to 7.0.0 (#239)
  • c6f084f chore(deps-dev): bump eslint from 8.41.0 to 8.42.0 (#238)
  • 5c61b5f chore(deps-dev): bump @commitlint/config-conventional (#237)
  • 2abab9b chore(deps-dev): bump @commitlint/cli from 17.6.3 to 17.6.5 (#236)
  • 61a19c6 chore(deps-dev): bump eslint from 8.40.0 to 8.41.0 (#234)
  • f6e2da4 chore(deps): bump undici from 5.22.0 to 5.22.1 (#232)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 49e7589 chore(deps-dev): bump tap from 16.3.4 to 16.3.6 (#240)
  • 64bfe78 chore(deps-dev): bump get-port from 6.1.2 to 7.0.0 (#239)
  • c6f084f chore(deps-dev): bump eslint from 8.41.0 to 8.42.0 (#238)
  • 5c61b5f chore(deps-dev): bump @commitlint/config-conventional (#237)
  • 2abab9b chore(deps-dev): bump @commitlint/cli from 17.6.3 to 17.6.5 (#236)
  • 61a19c6 chore(deps-dev): bump eslint from 8.40.0 to 8.41.0 (#234)
  • f6e2da4 chore(deps): bump undici from 5.22.0 to 5.22.1 (#232)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.8

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 16d61c7 chore(deps): bump undici from 6.16.1 to 6.17.0 (#438)
  • e6eee05 chore(deps-dev): bump fastify from 4.26.2 to 4.27.0 (#436)
  • 93dba30 chore(deps): bump undici from 6.15.0 to 6.16.1 (#435)
  • 9e3034e chore(deps): bump undici from 6.13.0 to 6.15.0 (#434)
  • b397a56 chore(deps-dev): bump mercurius from 14.0.0 to 14.1.0 (#432)
  • e491435 chore(deps-dev): bump @commitlint/cli from 19.2.2 to 19.3.0 (#431)
  • 799e410 chore(deps-dev): bump @mercuriusjs/gateway from 3.0.0 to 3.0.1 (#430)
  • 1e8a5b3 chore(deps-dev): bump @commitlint/config-conventional (#427)
  • 4bebab7 chore(deps): bump undici from 6.11.1 to 6.13.0 (#426)
  • 091a0cc chore(deps-dev): bump dedent from 1.5.1 to 1.5.3 (#425)
  • 2dd3e25 chore(deps-dev): bump @commitlint/cli from 19.2.1 to 19.2.2 (#424)
  • 88d23a5 chore(deps): bump undici from 6.10.2 to 6.11.1 (#422)
  • c6ecbc9 chore(deps): bump undici from 6.10.1 to 6.10.2 (#421)
  • 02b097a Husky bump to version ^9.0.11 (#419)
  • 0eeb4d7 Husky bump to version ^9.0.11 (#418)
  • 9cfe496 chore(deps-dev): bump mercurius from 13.4.0 to 14.0.0 (#416)
  • 35b2f07 chore(deps-dev): bump @commitlint/cli from 19.2.0 to 19.2.1 (#417)
  • 696cba9 chore(deps-dev): bump @mercuriusjs/federation from 2.0.0 to 3.0.0 (#415)
  • 8fb5191 chore(deps): bump undici from 6.9.0 to 6.10.1 (#414)
  • 92d4fb7 chore(deps-dev): bump @mercuriusjs/gateway from 2.2.0 to 3.0.0 (#413)
  • 0d40d49 chore(deps-dev): bump get-port from 7.0.0 to 7.1.0 (#412)
  • e3e2829 chore(deps-dev): bump @commitlint/cli from 19.0.3 to 19.2.0 (#411)
  • 51fed66 chore(deps-dev): bump @commitlint/config-conventional (#410)
  • 2ac5840 chore(deps): bump undici from 6.7.1 to 6.9.0 (#409)
  • 72d8949 chore(deps): bump undici from 6.7.0 to 6.7.1 (#408)
  • e72d940 chore(deps-dev): bump mercurius from 13.3.3 to 13.4.0 (#407)
  • 97a6dfa chore(deps-dev): bump @commitlint/config-conventional (#404)
  • 22625e2 chore(deps): bump undici from 6.6.2 to 6.7.0 (#405)
  • 8f473a2 chore(deps-dev): bump @commitlint/cli from 18.6.1 to 19.0.3 (#403)
  • 0af79bd chore(deps-dev): bump fastify from 4.26.1 to 4.26.2 (#402)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • e0031c5 chore(deps): bump @babel/traverse (#320)
  • 582612c chore(deps): bump undici from 5.25.4 to 5.26.2 (#319)
  • 412bbb3 chore(deps-dev): bump @commitlint/cli from 17.7.1 to 17.8.0 (#318)
  • 6d3943f chore(deps-dev): bump lint-staged from 14.0.1 to 15.0.1 (#317)
  • 3003f9c chore(deps-dev): bump fastify from 4.23.2 to 4.24.2 (#316)
  • ef50434 chore(deps-dev): bump eslint-plugin-prettier from 5.0.0 to 5.0.1 (#314)
  • 4d037ed chore(deps-dev): bump @commitlint/config-conventional (#313)
  • c36bb09 chore(deps-dev): bump eslint from 8.50.0 to 8.51.0 (#311)
  • 67da6a6 chore(deps): bump undici from 5.25.3 to 5.25.4 (#310)
  • 680b463 chore(deps): bump undici from 5.25.2 to 5.25.3 (#307)
  • 5292a5c chore(deps): bump undici from 5.24.0 to 5.25.2 (#303)
  • ceab95a chore(deps-dev): bump eslint from 8.49.0 to 8.50.0 (#302)
  • 094010f chore(deps): bump graphql from 16.8.0 to 16.8.1 (#301)
  • e10339e chore(deps-dev): bump fastify from 4.22.2 to 4.23.2 (#298)
  • 7c34eb8 chore(deps): bump undici from 5.23.0 to 5.24.0 (#296)
  • fea0bf0 chore(deps-dev): bump eslint from 8.48.0 to 8.49.0 (#295)
  • 1d165ce chore(deps): bump actions/checkout from 3 to 4 (#294)
  • 838e701 chore(deps-dev): bump prettier from 3.0.2 to 3.0.3 (#292)
  • 2a6b35b chore(deps-dev): bump fastify from 4.22.0 to 4.22.2 (#291)
  • fd2231c chore(deps-dev): bump fastify from 4.21.0 to 4.22.0 (#288)
  • 1b1c55c chore(deps-dev): bump lint-staged from 14.0.0 to 14.0.1 (#289)
  • 737df70 chore(deps-dev): bump eslint from 8.47.0 to 8.48.0 (#287)
  • 641777c chore(deps): bump graphql from 16.7.1 to 16.8.0 (#286)
  • c07babd chore(deps-dev): bump prettier from 3.0.1 to 3.0.2 (#285)
  • 4e83832 chore(deps-dev): bump prettier from 2.8.8 to 3.0.1 (#276)
  • 25dd69f chore(deps-dev): bump lint-staged from 13.2.3 to 14.0.0 (#283)
  • 1a56d0b chore(deps-dev): bump eslint from 8.46.0 to 8.47.0 (#282)
  • 51460dd chore(deps-dev): bump @commitlint/config-conventional (#281)
  • 75c1ffd chore(deps-dev): bump @commitlint/cli from 17.6.7 to 17.7.1 (#280)
  • e266ff5 chore(deps-dev): bump dedent from 1.5.0 to 1.5.1 (#278)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Enable NPM Provenance

Integration with beta NPM Provenance integration when publishing new versions to NPM registry.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 838e701 chore(deps-dev): bump prettier from 3.0.2 to 3.0.3 (#292)
  • 2a6b35b chore(deps-dev): bump fastify from 4.22.0 to 4.22.2 (#291)
  • fd2231c chore(deps-dev): bump fastify from 4.21.0 to 4.22.0 (#288)
  • 1b1c55c chore(deps-dev): bump lint-staged from 14.0.0 to 14.0.1 (#289)
  • 737df70 chore(deps-dev): bump eslint from 8.47.0 to 8.48.0 (#287)
  • 641777c chore(deps): bump graphql from 16.7.1 to 16.8.0 (#286)
  • c07babd chore(deps-dev): bump prettier from 3.0.1 to 3.0.2 (#285)
  • 4e83832 chore(deps-dev): bump prettier from 2.8.8 to 3.0.1 (#276)
  • 25dd69f chore(deps-dev): bump lint-staged from 13.2.3 to 14.0.0 (#283)
  • 1a56d0b chore(deps-dev): bump eslint from 8.46.0 to 8.47.0 (#282)
  • 51460dd chore(deps-dev): bump @commitlint/config-conventional (#281)
  • 75c1ffd chore(deps-dev): bump @commitlint/cli from 17.6.7 to 17.7.1 (#280)
  • e266ff5 chore(deps-dev): bump dedent from 1.5.0 to 1.5.1 (#278)
  • 31114c9 chore(deps): bump undici from 5.22.1 to 5.23.0 (#277)
  • bc97234 chore(deps-dev): bump eslint-config-prettier from 8.9.0 to 9.0.0 (#275)
  • fe4e414 chore(deps-dev): bump dedent from 1.2.0 to 1.5.0 (#273)
  • aad4ce0 chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#272)
  • e2e3d0e chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 (#271)
  • b18ed6b chore(deps-dev): bump tap from 16.3.7 to 16.3.8 (#270)
  • bcc23d5 chore(deps-dev): bump fastify from 4.19.2 to 4.21.0 (#269)
  • 21a102f chore(deps-dev): bump dedent from 1.0.2 to 1.2.0 (#266)
  • 26a17e3 chore(deps-dev): bump @commitlint/cli from 17.6.6 to 17.6.7 (#265)
  • c088f46 chore(deps-dev): bump @commitlint/config-conventional (#264)
  • ef74974 chore(deps-dev): bump mercurius from 13.0.0 to 13.1.0 (#263)
  • 49ee54d chore(deps-dev): bump eslint from 8.44.0 to 8.45.0 (#262)
  • 1f9be98 chore(deps-dev): bump dedent from 0.7.0 to 1.0.2 (#261)
  • 506f442 chore(deps-dev): bump fastify from 4.19.1 to 4.19.2 (#258)
  • 2b25260 chore(deps-dev): bump eslint from 8.43.0 to 8.44.0 (#256)
  • 7c01b5d chore(deps-dev): bump lint-staged from 13.2.2 to 13.2.3 (#255)
  • 28fefbd chore(deps-dev): bump fastify from 4.18.0 to 4.19.1 (#254)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • b8c9d0c chore(deps-dev): bump fastify from 4.24.2 to 4.24.3 (#326)
  • f129719 chore(deps-dev): bump @commitlint/cli from 17.8.0 to 18.0.0 (#324)
  • b9792ac chore(deps): bump undici from 5.26.2 to 5.26.4 (#322)
  • e0031c5 chore(deps): bump @babel/traverse (#320)
  • 582612c chore(deps): bump undici from 5.25.4 to 5.26.2 (#319)
  • 412bbb3 chore(deps-dev): bump @commitlint/cli from 17.7.1 to 17.8.0 (#318)
  • 6d3943f chore(deps-dev): bump lint-staged from 14.0.1 to 15.0.1 (#317)
  • 3003f9c chore(deps-dev): bump fastify from 4.23.2 to 4.24.2 (#316)
  • ef50434 chore(deps-dev): bump eslint-plugin-prettier from 5.0.0 to 5.0.1 (#314)
  • 4d037ed chore(deps-dev): bump @commitlint/config-conventional (#313)
  • c36bb09 chore(deps-dev): bump eslint from 8.50.0 to 8.51.0 (#311)
  • 67da6a6 chore(deps): bump undici from 5.25.3 to 5.25.4 (#310)
  • 680b463 chore(deps): bump undici from 5.25.2 to 5.25.3 (#307)
  • 5292a5c chore(deps): bump undici from 5.24.0 to 5.25.2 (#303)
  • ceab95a chore(deps-dev): bump eslint from 8.49.0 to 8.50.0 (#302)
  • 094010f chore(deps): bump graphql from 16.8.0 to 16.8.1 (#301)
  • e10339e chore(deps-dev): bump fastify from 4.22.2 to 4.23.2 (#298)
  • 7c34eb8 chore(deps): bump undici from 5.23.0 to 5.24.0 (#296)
  • fea0bf0 chore(deps-dev): bump eslint from 8.48.0 to 8.49.0 (#295)
  • 1d165ce chore(deps): bump actions/checkout from 3 to 4 (#294)
  • 838e701 chore(deps-dev): bump prettier from 3.0.2 to 3.0.3 (#292)
  • 2a6b35b chore(deps-dev): bump fastify from 4.22.0 to 4.22.2 (#291)
  • fd2231c chore(deps-dev): bump fastify from 4.21.0 to 4.22.0 (#288)
  • 1b1c55c chore(deps-dev): bump lint-staged from 14.0.0 to 14.0.1 (#289)
  • 737df70 chore(deps-dev): bump eslint from 8.47.0 to 8.48.0 (#287)
  • 641777c chore(deps): bump graphql from 16.7.1 to 16.8.0 (#286)
  • c07babd chore(deps-dev): bump prettier from 3.0.1 to 3.0.2 (#285)
  • 4e83832 chore(deps-dev): bump prettier from 2.8.8 to 3.0.1 (#276)
  • 25dd69f chore(deps-dev): bump lint-staged from 13.2.3 to 14.0.0 (#283)
  • 1a56d0b chore(deps-dev): bump eslint from 8.46.0 to 8.47.0 (#282)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 41a16c9 chore(deps-dev): bump fastify from 4.17.0 to 4.18.0 (#242)
  • 49e7589 chore(deps-dev): bump tap from 16.3.4 to 16.3.6 (#240)
  • 64bfe78 chore(deps-dev): bump get-port from 6.1.2 to 7.0.0 (#239)
  • c6f084f chore(deps-dev): bump eslint from 8.41.0 to 8.42.0 (#238)
  • 5c61b5f chore(deps-dev): bump @commitlint/config-conventional (#237)
  • 2abab9b chore(deps-dev): bump @commitlint/cli from 17.6.3 to 17.6.5 (#236)
  • 61a19c6 chore(deps-dev): bump eslint from 8.40.0 to 8.41.0 (#234)
  • f6e2da4 chore(deps): bump undici from 5.22.0 to 5.22.1 (#232)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 21a102f chore(deps-dev): bump dedent from 1.0.2 to 1.2.0 (#266)
  • 26a17e3 chore(deps-dev): bump @commitlint/cli from 17.6.6 to 17.6.7 (#265)
  • c088f46 chore(deps-dev): bump @commitlint/config-conventional (#264)
  • ef74974 chore(deps-dev): bump mercurius from 13.0.0 to 13.1.0 (#263)
  • 49ee54d chore(deps-dev): bump eslint from 8.44.0 to 8.45.0 (#262)
  • 1f9be98 chore(deps-dev): bump dedent from 0.7.0 to 1.0.2 (#261)
  • 506f442 chore(deps-dev): bump fastify from 4.19.1 to 4.19.2 (#258)
  • 2b25260 chore(deps-dev): bump eslint from 8.43.0 to 8.44.0 (#256)
  • 7c01b5d chore(deps-dev): bump lint-staged from 13.2.2 to 13.2.3 (#255)
  • 28fefbd chore(deps-dev): bump fastify from 4.18.0 to 4.19.1 (#254)
  • c048c6e chore: update dependabot config (#252)
  • 553d3a0 chore(deps-dev): bump @commitlint/cli from 17.6.5 to 17.6.6 (#251)
  • 71eea99 chore(deps-dev): bump @commitlint/config-conventional (#250)
  • cd56331 chore(deps): bump graphql from 16.7.0 to 16.7.1 (#249)
  • 0726d84 chore(deps-dev): bump tap from 16.3.6 to 16.3.7 (#248)
  • c81c06b chore(deps): bump graphql from 16.6.0 to 16.7.0 (#247)
  • 4ccffd8 chore(deps-dev): bump eslint from 8.42.0 to 8.43.0 (#245)
  • c8cef0a chore(deps-dev): bump @mercuriusjs/gateway from 1.2.0 to 2.0.0 (#244)
  • 41a16c9 chore(deps-dev): bump fastify from 4.17.0 to 4.18.0 (#242)
  • 49e7589 chore(deps-dev): bump tap from 16.3.4 to 16.3.6 (#240)
  • 64bfe78 chore(deps-dev): bump get-port from 6.1.2 to 7.0.0 (#239)
  • c6f084f chore(deps-dev): bump eslint from 8.41.0 to 8.42.0 (#238)
  • 5c61b5f chore(deps-dev): bump @commitlint/config-conventional (#237)
  • 2abab9b chore(deps-dev): bump @commitlint/cli from 17.6.3 to 17.6.5 (#236)
  • 61a19c6 chore(deps-dev): bump eslint from 8.40.0 to 8.41.0 (#234)
  • f6e2da4 chore(deps): bump undici from 5.22.0 to 5.22.1 (#232)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 4ccffd8 chore(deps-dev): bump eslint from 8.42.0 to 8.43.0 (#245)
  • c8cef0a chore(deps-dev): bump @mercuriusjs/gateway from 1.2.0 to 2.0.0 (#244)
  • 41a16c9 chore(deps-dev): bump fastify from 4.17.0 to 4.18.0 (#242)
  • 49e7589 chore(deps-dev): bump tap from 16.3.4 to 16.3.6 (#240)
  • 64bfe78 chore(deps-dev): bump get-port from 6.1.2 to 7.0.0 (#239)
  • c6f084f chore(deps-dev): bump eslint from 8.41.0 to 8.42.0 (#238)
  • 5c61b5f chore(deps-dev): bump @commitlint/config-conventional (#237)
  • 2abab9b chore(deps-dev): bump @commitlint/cli from 17.6.3 to 17.6.5 (#236)
  • 61a19c6 chore(deps-dev): bump eslint from 8.40.0 to 8.41.0 (#234)
  • f6e2da4 chore(deps): bump undici from 5.22.0 to 5.22.1 (#232)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.6

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 1fc38ba chore(deps-dev): bump fastify from 4.24.3 to 4.25.1 (#368)
  • f4a968b chore(deps-dev): bump mercurius from 13.3.1 to 13.3.2 (#366)
  • 8839644 chore(deps-dev): bump mercurius from 13.2.2 to 13.3.1 (#352)
  • b1b721b chore(deps-dev): bump prettier from 3.1.0 to 3.1.1 (#364)
  • 2f7cf9a chore(deps-dev): bump eslint from 8.54.0 to 8.55.0 (#363)
  • ddcdd65 chore(deps): bump undici from 5.28.2 to 6.0.1 (#362)
  • 5caaaf9 chore(deps-dev): bump @commitlint/cli from 18.4.2 to 18.4.3 (#360)
  • b76f40e chore(deps-dev): bump lint-staged from 15.1.0 to 15.2.0 (#359)
  • 2628dbe chore(deps): bump undici from 5.28.0 to 5.28.2 (#358)
  • 68dd03d chore(deps-dev): bump @commitlint/config-conventional (#356)
  • 80d45fd chore(deps): bump undici from 5.27.2 to 5.28.0 (#355)
  • ed8b2c9 chore(deps-dev): bump eslint from 8.53.0 to 8.54.0 (#354)
  • 53304af chore(deps-dev): bump @commitlint/cli from 18.2.0 to 18.4.2 (#353)
  • f0a0b6b chore(deps-dev): bump prettier from 3.0.3 to 3.1.0 (#351)
  • ee737bd chore(deps-dev): bump @commitlint/config-conventional (#350)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • c36bb09 chore(deps-dev): bump eslint from 8.50.0 to 8.51.0 (#311)
  • 67da6a6 chore(deps): bump undici from 5.25.3 to 5.25.4 (#310)
  • 680b463 chore(deps): bump undici from 5.25.2 to 5.25.3 (#307)
  • 5292a5c chore(deps): bump undici from 5.24.0 to 5.25.2 (#303)
  • ceab95a chore(deps-dev): bump eslint from 8.49.0 to 8.50.0 (#302)
  • 094010f chore(deps): bump graphql from 16.8.0 to 16.8.1 (#301)
  • e10339e chore(deps-dev): bump fastify from 4.22.2 to 4.23.2 (#298)
  • 7c34eb8 chore(deps): bump undici from 5.23.0 to 5.24.0 (#296)
  • fea0bf0 chore(deps-dev): bump eslint from 8.48.0 to 8.49.0 (#295)
  • 1d165ce chore(deps): bump actions/checkout from 3 to 4 (#294)
  • 838e701 chore(deps-dev): bump prettier from 3.0.2 to 3.0.3 (#292)
  • 2a6b35b chore(deps-dev): bump fastify from 4.22.0 to 4.22.2 (#291)
  • fd2231c chore(deps-dev): bump fastify from 4.21.0 to 4.22.0 (#288)
  • 1b1c55c chore(deps-dev): bump lint-staged from 14.0.0 to 14.0.1 (#289)
  • 737df70 chore(deps-dev): bump eslint from 8.47.0 to 8.48.0 (#287)
  • 641777c chore(deps): bump graphql from 16.7.1 to 16.8.0 (#286)
  • c07babd chore(deps-dev): bump prettier from 3.0.1 to 3.0.2 (#285)
  • 4e83832 chore(deps-dev): bump prettier from 2.8.8 to 3.0.1 (#276)
  • 25dd69f chore(deps-dev): bump lint-staged from 13.2.3 to 14.0.0 (#283)
  • 1a56d0b chore(deps-dev): bump eslint from 8.46.0 to 8.47.0 (#282)
  • 51460dd chore(deps-dev): bump @commitlint/config-conventional (#281)
  • 75c1ffd chore(deps-dev): bump @commitlint/cli from 17.6.7 to 17.7.1 (#280)
  • e266ff5 chore(deps-dev): bump dedent from 1.5.0 to 1.5.1 (#278)
  • 31114c9 chore(deps): bump undici from 5.22.1 to 5.23.0 (#277)
  • bc97234 chore(deps-dev): bump eslint-config-prettier from 8.9.0 to 9.0.0 (#275)
  • fe4e414 chore(deps-dev): bump dedent from 1.2.0 to 1.5.0 (#273)
  • aad4ce0 chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#272)
  • e2e3d0e chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 (#271)
  • b18ed6b chore(deps-dev): bump tap from 16.3.7 to 16.3.8 (#270)
  • bcc23d5 chore(deps-dev): bump fastify from 4.19.2 to 4.21.0 (#269)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.1.6

Unreleased commits have been found which are pending release, please publish the changes.

  • f3680da chore(deps-dev): bump eslint from 8.17.0 to 8.18.0 (#51)
  • d1f47d2 chore(deps-dev): bump tap from 16.2.0 to 16.3.0 (#50)
  • cda2625 chore(deps-dev): bump prettier from 2.7.0 to 2.7.1 (#49)
  • 1ff4b22 chore(deps-dev): bump lint-staged from 13.0.0 to 13.0.2 (#48)
  • 37ab561 chore(deps-dev): bump prettier from 2.6.2 to 2.7.0 (#46)
  • 8576311 chore(deps): bump undici from 5.4.0 to 5.5.1 (#44)
  • fadf265 chore(deps-dev): bump eslint from 8.16.0 to 8.17.0 (#38)
  • 2ec9038 chore(deps-dev): bump mercurius from 9.7.0 to 9.8.0 (#37)
  • bcceb32 chore(deps-dev): bump lint-staged from 12.5.0 to 13.0.0 (#36)
  • d4731fa chore(deps-dev): bump @commitlint/cli from 17.0.1 to 17.0.2 (#35)
  • 38dff3e chore(deps-dev): bump lint-staged from 12.4.3 to 12.5.0 (#34)
  • 36e8f3d chore(deps-dev): bump @commitlint/config-conventional (#33)
  • 8596167 chore(deps): bump undici from 5.3.0 to 5.4.0 (#32)
  • 3da804d chore(deps-dev): bump mercurius from 9.6.0 to 9.7.0 (#31)

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • f6e2da4 chore(deps): bump undici from 5.22.0 to 5.22.1 (#232)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Unreleased commits have been found which are pending release, please publish the changes.

  • e10339e chore(deps-dev): bump fastify from 4.22.2 to 4.23.2 (#298)
  • 7c34eb8 chore(deps): bump undici from 5.23.0 to 5.24.0 (#296)
  • fea0bf0 chore(deps-dev): bump eslint from 8.48.0 to 8.49.0 (#295)
  • 1d165ce chore(deps): bump actions/checkout from 3 to 4 (#294)
  • 838e701 chore(deps-dev): bump prettier from 3.0.2 to 3.0.3 (#292)
  • 2a6b35b chore(deps-dev): bump fastify from 4.22.0 to 4.22.2 (#291)
  • fd2231c chore(deps-dev): bump fastify from 4.21.0 to 4.22.0 (#288)
  • 1b1c55c chore(deps-dev): bump lint-staged from 14.0.0 to 14.0.1 (#289)
  • 737df70 chore(deps-dev): bump eslint from 8.47.0 to 8.48.0 (#287)
  • 641777c chore(deps): bump graphql from 16.7.1 to 16.8.0 (#286)
  • c07babd chore(deps-dev): bump prettier from 3.0.1 to 3.0.2 (#285)
  • 4e83832 chore(deps-dev): bump prettier from 2.8.8 to 3.0.1 (#276)
  • 25dd69f chore(deps-dev): bump lint-staged from 13.2.3 to 14.0.0 (#283)
  • 1a56d0b chore(deps-dev): bump eslint from 8.46.0 to 8.47.0 (#282)
  • 51460dd chore(deps-dev): bump @commitlint/config-conventional (#281)
  • 75c1ffd chore(deps-dev): bump @commitlint/cli from 17.6.7 to 17.7.1 (#280)
  • e266ff5 chore(deps-dev): bump dedent from 1.5.0 to 1.5.1 (#278)
  • 31114c9 chore(deps): bump undici from 5.22.1 to 5.23.0 (#277)
  • bc97234 chore(deps-dev): bump eslint-config-prettier from 8.9.0 to 9.0.0 (#275)
  • fe4e414 chore(deps-dev): bump dedent from 1.2.0 to 1.5.0 (#273)
  • aad4ce0 chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#272)
  • e2e3d0e chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 (#271)
  • b18ed6b chore(deps-dev): bump tap from 16.3.7 to 16.3.8 (#270)
  • bcc23d5 chore(deps-dev): bump fastify from 4.19.2 to 4.21.0 (#269)
  • 21a102f chore(deps-dev): bump dedent from 1.0.2 to 1.2.0 (#266)
  • 26a17e3 chore(deps-dev): bump @commitlint/cli from 17.6.6 to 17.6.7 (#265)
  • c088f46 chore(deps-dev): bump @commitlint/config-conventional (#264)
  • ef74974 chore(deps-dev): bump mercurius from 13.0.0 to 13.1.0 (#263)
  • 49ee54d chore(deps-dev): bump eslint from 8.44.0 to 8.45.0 (#262)
  • 1f9be98 chore(deps-dev): bump dedent from 0.7.0 to 1.0.2 (#261)

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • e266ff5 chore(deps-dev): bump dedent from 1.5.0 to 1.5.1 (#278)
  • 31114c9 chore(deps): bump undici from 5.22.1 to 5.23.0 (#277)
  • bc97234 chore(deps-dev): bump eslint-config-prettier from 8.9.0 to 9.0.0 (#275)
  • fe4e414 chore(deps-dev): bump dedent from 1.2.0 to 1.5.0 (#273)
  • aad4ce0 chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#272)
  • e2e3d0e chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 (#271)
  • b18ed6b chore(deps-dev): bump tap from 16.3.7 to 16.3.8 (#270)
  • bcc23d5 chore(deps-dev): bump fastify from 4.19.2 to 4.21.0 (#269)
  • 21a102f chore(deps-dev): bump dedent from 1.0.2 to 1.2.0 (#266)
  • 26a17e3 chore(deps-dev): bump @commitlint/cli from 17.6.6 to 17.6.7 (#265)
  • c088f46 chore(deps-dev): bump @commitlint/config-conventional (#264)
  • ef74974 chore(deps-dev): bump mercurius from 13.0.0 to 13.1.0 (#263)
  • 49ee54d chore(deps-dev): bump eslint from 8.44.0 to 8.45.0 (#262)
  • 1f9be98 chore(deps-dev): bump dedent from 0.7.0 to 1.0.2 (#261)
  • 506f442 chore(deps-dev): bump fastify from 4.19.1 to 4.19.2 (#258)
  • 2b25260 chore(deps-dev): bump eslint from 8.43.0 to 8.44.0 (#256)
  • 7c01b5d chore(deps-dev): bump lint-staged from 13.2.2 to 13.2.3 (#255)
  • 28fefbd chore(deps-dev): bump fastify from 4.18.0 to 4.19.1 (#254)
  • c048c6e chore: update dependabot config (#252)
  • 553d3a0 chore(deps-dev): bump @commitlint/cli from 17.6.5 to 17.6.6 (#251)
  • 71eea99 chore(deps-dev): bump @commitlint/config-conventional (#250)
  • cd56331 chore(deps): bump graphql from 16.7.0 to 16.7.1 (#249)
  • 0726d84 chore(deps-dev): bump tap from 16.3.6 to 16.3.7 (#248)
  • c81c06b chore(deps): bump graphql from 16.6.0 to 16.7.0 (#247)
  • 4ccffd8 chore(deps-dev): bump eslint from 8.42.0 to 8.43.0 (#245)
  • c8cef0a chore(deps-dev): bump @mercuriusjs/gateway from 1.2.0 to 2.0.0 (#244)
  • 41a16c9 chore(deps-dev): bump fastify from 4.17.0 to 4.18.0 (#242)
  • 49e7589 chore(deps-dev): bump tap from 16.3.4 to 16.3.6 (#240)
  • 64bfe78 chore(deps-dev): bump get-port from 6.1.2 to 7.0.0 (#239)
  • c6f084f chore(deps-dev): bump eslint from 8.41.0 to 8.42.0 (#238)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • fe4e414 chore(deps-dev): bump dedent from 1.2.0 to 1.5.0 (#273)
  • aad4ce0 chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#272)
  • e2e3d0e chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 (#271)
  • b18ed6b chore(deps-dev): bump tap from 16.3.7 to 16.3.8 (#270)
  • bcc23d5 chore(deps-dev): bump fastify from 4.19.2 to 4.21.0 (#269)
  • 21a102f chore(deps-dev): bump dedent from 1.0.2 to 1.2.0 (#266)
  • 26a17e3 chore(deps-dev): bump @commitlint/cli from 17.6.6 to 17.6.7 (#265)
  • c088f46 chore(deps-dev): bump @commitlint/config-conventional (#264)
  • ef74974 chore(deps-dev): bump mercurius from 13.0.0 to 13.1.0 (#263)
  • 49ee54d chore(deps-dev): bump eslint from 8.44.0 to 8.45.0 (#262)
  • 1f9be98 chore(deps-dev): bump dedent from 0.7.0 to 1.0.2 (#261)
  • 506f442 chore(deps-dev): bump fastify from 4.19.1 to 4.19.2 (#258)
  • 2b25260 chore(deps-dev): bump eslint from 8.43.0 to 8.44.0 (#256)
  • 7c01b5d chore(deps-dev): bump lint-staged from 13.2.2 to 13.2.3 (#255)
  • 28fefbd chore(deps-dev): bump fastify from 4.18.0 to 4.19.1 (#254)
  • c048c6e chore: update dependabot config (#252)
  • 553d3a0 chore(deps-dev): bump @commitlint/cli from 17.6.5 to 17.6.6 (#251)
  • 71eea99 chore(deps-dev): bump @commitlint/config-conventional (#250)
  • cd56331 chore(deps): bump graphql from 16.7.0 to 16.7.1 (#249)
  • 0726d84 chore(deps-dev): bump tap from 16.3.6 to 16.3.7 (#248)
  • c81c06b chore(deps): bump graphql from 16.6.0 to 16.7.0 (#247)
  • 4ccffd8 chore(deps-dev): bump eslint from 8.42.0 to 8.43.0 (#245)
  • c8cef0a chore(deps-dev): bump @mercuriusjs/gateway from 1.2.0 to 2.0.0 (#244)
  • 41a16c9 chore(deps-dev): bump fastify from 4.17.0 to 4.18.0 (#242)
  • 49e7589 chore(deps-dev): bump tap from 16.3.4 to 16.3.6 (#240)
  • 64bfe78 chore(deps-dev): bump get-port from 6.1.2 to 7.0.0 (#239)
  • c6f084f chore(deps-dev): bump eslint from 8.41.0 to 8.42.0 (#238)
  • 5c61b5f chore(deps-dev): bump @commitlint/config-conventional (#237)
  • 2abab9b chore(deps-dev): bump @commitlint/cli from 17.6.3 to 17.6.5 (#236)
  • 61a19c6 chore(deps-dev): bump eslint from 8.40.0 to 8.41.0 (#234)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • ef74974 chore(deps-dev): bump mercurius from 13.0.0 to 13.1.0 (#263)
  • 49ee54d chore(deps-dev): bump eslint from 8.44.0 to 8.45.0 (#262)
  • 1f9be98 chore(deps-dev): bump dedent from 0.7.0 to 1.0.2 (#261)
  • 506f442 chore(deps-dev): bump fastify from 4.19.1 to 4.19.2 (#258)
  • 2b25260 chore(deps-dev): bump eslint from 8.43.0 to 8.44.0 (#256)
  • 7c01b5d chore(deps-dev): bump lint-staged from 13.2.2 to 13.2.3 (#255)
  • 28fefbd chore(deps-dev): bump fastify from 4.18.0 to 4.19.1 (#254)
  • c048c6e chore: update dependabot config (#252)
  • 553d3a0 chore(deps-dev): bump @commitlint/cli from 17.6.5 to 17.6.6 (#251)
  • 71eea99 chore(deps-dev): bump @commitlint/config-conventional (#250)
  • cd56331 chore(deps): bump graphql from 16.7.0 to 16.7.1 (#249)
  • 0726d84 chore(deps-dev): bump tap from 16.3.6 to 16.3.7 (#248)
  • c81c06b chore(deps): bump graphql from 16.6.0 to 16.7.0 (#247)
  • 4ccffd8 chore(deps-dev): bump eslint from 8.42.0 to 8.43.0 (#245)
  • c8cef0a chore(deps-dev): bump @mercuriusjs/gateway from 1.2.0 to 2.0.0 (#244)
  • 41a16c9 chore(deps-dev): bump fastify from 4.17.0 to 4.18.0 (#242)
  • 49e7589 chore(deps-dev): bump tap from 16.3.4 to 16.3.6 (#240)
  • 64bfe78 chore(deps-dev): bump get-port from 6.1.2 to 7.0.0 (#239)
  • c6f084f chore(deps-dev): bump eslint from 8.41.0 to 8.42.0 (#238)
  • 5c61b5f chore(deps-dev): bump @commitlint/config-conventional (#237)
  • 2abab9b chore(deps-dev): bump @commitlint/cli from 17.6.3 to 17.6.5 (#236)
  • 61a19c6 chore(deps-dev): bump eslint from 8.40.0 to 8.41.0 (#234)
  • f6e2da4 chore(deps): bump undici from 5.22.0 to 5.22.1 (#232)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 7c34eb8 chore(deps): bump undici from 5.23.0 to 5.24.0 (#296)
  • fea0bf0 chore(deps-dev): bump eslint from 8.48.0 to 8.49.0 (#295)
  • 1d165ce chore(deps): bump actions/checkout from 3 to 4 (#294)
  • 838e701 chore(deps-dev): bump prettier from 3.0.2 to 3.0.3 (#292)
  • 2a6b35b chore(deps-dev): bump fastify from 4.22.0 to 4.22.2 (#291)
  • fd2231c chore(deps-dev): bump fastify from 4.21.0 to 4.22.0 (#288)
  • 1b1c55c chore(deps-dev): bump lint-staged from 14.0.0 to 14.0.1 (#289)
  • 737df70 chore(deps-dev): bump eslint from 8.47.0 to 8.48.0 (#287)
  • 641777c chore(deps): bump graphql from 16.7.1 to 16.8.0 (#286)
  • c07babd chore(deps-dev): bump prettier from 3.0.1 to 3.0.2 (#285)
  • 4e83832 chore(deps-dev): bump prettier from 2.8.8 to 3.0.1 (#276)
  • 25dd69f chore(deps-dev): bump lint-staged from 13.2.3 to 14.0.0 (#283)
  • 1a56d0b chore(deps-dev): bump eslint from 8.46.0 to 8.47.0 (#282)
  • 51460dd chore(deps-dev): bump @commitlint/config-conventional (#281)
  • 75c1ffd chore(deps-dev): bump @commitlint/cli from 17.6.7 to 17.7.1 (#280)
  • e266ff5 chore(deps-dev): bump dedent from 1.5.0 to 1.5.1 (#278)
  • 31114c9 chore(deps): bump undici from 5.22.1 to 5.23.0 (#277)
  • bc97234 chore(deps-dev): bump eslint-config-prettier from 8.9.0 to 9.0.0 (#275)
  • fe4e414 chore(deps-dev): bump dedent from 1.2.0 to 1.5.0 (#273)
  • aad4ce0 chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#272)
  • e2e3d0e chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 (#271)
  • b18ed6b chore(deps-dev): bump tap from 16.3.7 to 16.3.8 (#270)
  • bcc23d5 chore(deps-dev): bump fastify from 4.19.2 to 4.21.0 (#269)
  • 21a102f chore(deps-dev): bump dedent from 1.0.2 to 1.2.0 (#266)
  • 26a17e3 chore(deps-dev): bump @commitlint/cli from 17.6.6 to 17.6.7 (#265)
  • c088f46 chore(deps-dev): bump @commitlint/config-conventional (#264)
  • ef74974 chore(deps-dev): bump mercurius from 13.0.0 to 13.1.0 (#263)
  • 49ee54d chore(deps-dev): bump eslint from 8.44.0 to 8.45.0 (#262)
  • 1f9be98 chore(deps-dev): bump dedent from 0.7.0 to 1.0.2 (#261)
  • 506f442 chore(deps-dev): bump fastify from 4.19.1 to 4.19.2 (#258)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.3

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • fd2231c chore(deps-dev): bump fastify from 4.21.0 to 4.22.0 (#288)
  • 1b1c55c chore(deps-dev): bump lint-staged from 14.0.0 to 14.0.1 (#289)
  • 737df70 chore(deps-dev): bump eslint from 8.47.0 to 8.48.0 (#287)
  • 641777c chore(deps): bump graphql from 16.7.1 to 16.8.0 (#286)
  • c07babd chore(deps-dev): bump prettier from 3.0.1 to 3.0.2 (#285)
  • 4e83832 chore(deps-dev): bump prettier from 2.8.8 to 3.0.1 (#276)
  • 25dd69f chore(deps-dev): bump lint-staged from 13.2.3 to 14.0.0 (#283)
  • 1a56d0b chore(deps-dev): bump eslint from 8.46.0 to 8.47.0 (#282)
  • 51460dd chore(deps-dev): bump @commitlint/config-conventional (#281)
  • 75c1ffd chore(deps-dev): bump @commitlint/cli from 17.6.7 to 17.7.1 (#280)
  • e266ff5 chore(deps-dev): bump dedent from 1.5.0 to 1.5.1 (#278)
  • 31114c9 chore(deps): bump undici from 5.22.1 to 5.23.0 (#277)
  • bc97234 chore(deps-dev): bump eslint-config-prettier from 8.9.0 to 9.0.0 (#275)
  • fe4e414 chore(deps-dev): bump dedent from 1.2.0 to 1.5.0 (#273)
  • aad4ce0 chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#272)
  • e2e3d0e chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 (#271)
  • b18ed6b chore(deps-dev): bump tap from 16.3.7 to 16.3.8 (#270)
  • bcc23d5 chore(deps-dev): bump fastify from 4.19.2 to 4.21.0 (#269)
  • 21a102f chore(deps-dev): bump dedent from 1.0.2 to 1.2.0 (#266)
  • 26a17e3 chore(deps-dev): bump @commitlint/cli from 17.6.6 to 17.6.7 (#265)
  • c088f46 chore(deps-dev): bump @commitlint/config-conventional (#264)
  • ef74974 chore(deps-dev): bump mercurius from 13.0.0 to 13.1.0 (#263)
  • 49ee54d chore(deps-dev): bump eslint from 8.44.0 to 8.45.0 (#262)
  • 1f9be98 chore(deps-dev): bump dedent from 0.7.0 to 1.0.2 (#261)
  • 506f442 chore(deps-dev): bump fastify from 4.19.1 to 4.19.2 (#258)
  • 2b25260 chore(deps-dev): bump eslint from 8.43.0 to 8.44.0 (#256)
  • 7c01b5d chore(deps-dev): bump lint-staged from 13.2.2 to 13.2.3 (#255)
  • 28fefbd chore(deps-dev): bump fastify from 4.18.0 to 4.19.1 (#254)
  • c048c6e chore: update dependabot config (#252)
  • 553d3a0 chore(deps-dev): bump @commitlint/cli from 17.6.5 to 17.6.6 (#251)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.3.6

Based on the following commits, a patch release is recommended.

Unreleased commits have been found which are pending release, please publish the changes.

  • 68dd03d chore(deps-dev): bump @commitlint/config-conventional (#356)
  • 80d45fd chore(deps): bump undici from 5.27.2 to 5.28.0 (#355)
  • ed8b2c9 chore(deps-dev): bump eslint from 8.53.0 to 8.54.0 (#354)
  • 53304af chore(deps-dev): bump @commitlint/cli from 18.2.0 to 18.4.2 (#353)
  • f0a0b6b chore(deps-dev): bump prettier from 3.0.3 to 3.1.0 (#351)
  • ee737bd chore(deps-dev): bump @commitlint/config-conventional (#350)

If you close the issue as Not Planned

  • The notification will be snoozed for 7 days, starting when the issue is closed. After this period has passed, a new notification issue will be created the next time this action is run.

Issue generated by github-actions-notify-release.

Release pending!

Pending commits since release v0.1.0

Unreleased commits have been found which are pending release, please publish the changes.

  • c7e46d1 test: add tests for queries with fragments and aliases (#22)
  • 3dfc95d chore(deps-dev): bump lint-staged from 12.4.2 to 12.4.3 (#27)
  • 312a1f4 chore: release v0.1.3 (#25)
  • 3db7bca fix: add -y flag to npx husky prepare script
  • 0df6984 chore: release v0.1.2 (#24)
  • 37e9417 chore(deps-dev): bump @commitlint/cli from 17.0.0 to 17.0.1 (#23)
  • 2b0722c feat: add options validation (#10)
  • 277a670 chore(deps): bump undici from 5.2.0 to 5.3.0 (#21)
  • 64a9bdf chore(deps-dev): bump lint-staged from 12.4.1 to 12.4.2 (#20)
  • fbead4e chore(deps-dev): bump get-port from 5.1.1 to 6.1.2 (#4)
  • 9c8842a chore(deps-dev): bump mercurius from 9.5.0 to 9.6.0 (#19)
  • 1b06e80 chore(deps-dev): bump eslint from 8.15.0 to 8.16.0 (#18)
  • 93b451c chore(deps-dev): bump @commitlint/config-conventional (#16)
  • e642a1d chore(deps-dev): bump @commitlint/cli from 16.3.0 to 17.0.0 (#15)
  • 309e166 chore(deps-dev): bump @commitlint/cli from 16.2.4 to 16.3.0 (#14)
  • 64a45a5 chore: npx husky
  • bba03bd chore: release v0.1.1 (#13)
  • 65fa6dd chore(deps): bump undici from 5.1.1 to 5.2.0 (#12)

Issue generated by github-actions-notify-release.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.