Skip to content

Releases: nuxt-modules/apollo

v4.0.0-rc.4.1

13 May 08:52
a3ee673
Compare
Choose a tag to compare
  • Update vue-apollo and vue-cli-plugin-apollo dependencies (9196cc8)
  • fix produdction deps (#189)
  • test: change unauthorized code to 403 (#206)

Compatibility with Vue 2.6.6 and all updated dependencies

15 Feb 01:56
Compare
Choose a tag to compare

Fixed SSR issues and updated dependencies. Important notice:
Make sure to run most recent Nuxt and Vue (2.6.6) because that shipped SSR support for the vue-apollo plugin.

Updated to most recent version of vue-apollo and minor bugfixes

06 Oct 16:57
Compare
Choose a tag to compare

This release starts with compatibility for Nuxt v2 and includes several minor bugfixes and updates to the most recent version of vue-apollo and other dependencies

Important note:
Due to an issue in vue-apollo the rc3 might break on SSR. Please use the version rc2 in the meantime as long there is no fix for it.

Fixed vue-apollo version

12 Sep 17:54
Compare
Choose a tag to compare
Pre-release

Currently there is WIP on vue-apollo with breaking changes. This is a temporary release until the work is done

Bugfix release

25 Jul 13:42
Compare
Choose a tag to compare
Bugfix release Pre-release
Pre-release

Minor bugfix relase thanks for the contributions!

Updates of dependencies and cleanup

16 Jul 01:08
Compare
Choose a tag to compare
Pre-release

Thanks to #128 we got some bugfixing and updates of dependencies.

Bugfix release of missing cache

13 Jul 03:23
Compare
Choose a tag to compare
Pre-release

Bugfix of missing cache setting for each endpoint. Thanks @kieusonlam for your PR

Add possibility to extend options with path to config file

08 Jul 06:52
Compare
Choose a tag to compare

To fix most recent issues additionally to a simple object based setup you can now add a path to a config file to have full support to provide your own functions (which wasn't possible before this release)

// nuxt.config.js
apollo:{
  clientConfigs:{
    default: '~/plugins/apollo-default-config.js'
  }
}
// plugins/apollo-default-config.js
export default function(context){
  return {
   httpEndpoint: 'localhost:4000/graphql',
   getAuth: () => 'Bearer my-static-api-token'
 }
}

This is partly a breaking change. In case you passed a getAuth function as options you need to change your config to a plugin based config shown above.

Bugfix multi-client setup

27 Jun 07:48
fdbb5a6
Compare
Choose a tag to compare
Pre-release

Bugfix in case of multiple clients

Bugfix release

20 Jun 00:54
Compare
Choose a tag to compare
Bugfix release Pre-release
Pre-release

Evaluate correctly if getAuth function is set in options