Skip to content

v1.1.32

Compare
Choose a tag to compare
@github-actions github-actions released this 23 Nov 10:20
· 226 commits to master since this release
adf591e

Important upgrade!

We upgrade to Apollo Server 3. In order to switch to the new version, the following changes were necessary:

  1. Different instances for ApolloServer and SubscriptionServer
  2. Graphql Playground IDE have been removed in favor of a landing page that links to Apollo Sandbox in non-production environments. In production, it serves a simplified landing page instead. You can continue to use GraphQL Playground by installing its associated plugin (https://www.apollographql.com/docs/apollo-server/migration/#reenabling-graphql-playground), but we strongly recommend to use the new landing page because Graphql Playground IDE isn't maintain anymore.
  3. Apollo Server 2 exports every symbol exported from graphql-tools, graphql-subscriptions and graphql-upload. In the new version, these symbols aren't exported by apollo server (eg: const { PubSub } = require('apollo-server') -> const { PubSub } = require('graphql-subscriptions')). To see the full list of symbols which are now exported from graphql-tools, graphql-subscriptions and graphql-upload, access this link https://www.apollographql.com/docs/apollo-server/migration/#removed-exports
    To see all the changes in the new version, check this link: https://www.apollographql.com/docs/apollo-server/migration/

Changes