Skip to content

Releases: vuejs/apollo

v2.1.0-beta.1

02 Apr 23:07
Compare
Choose a tag to compare
v2.1.0-beta.1 Pre-release
Pre-release

Breaking changes

  • Starting with this release, you need to create an apollo provider and inject it into your root components (like vue-router or vuex), instead of passing the apollo client into the plugin directly. More info in the docs. This breaking change was necessary for the two main new features below.

New features

Misc

  • Tested with [email protected]
  • Better error messages
  • Bumped graphql-tag to 2.0.0
  • Code cleaning

v2.0.0-beta.2

27 Mar 00:29
Compare
Choose a tag to compare
v2.0.0-beta.2 Pre-release
Pre-release
  • [BREAKING] subscribe option is deprecated. Use the $subscribe option instead.
  • [BREAKING] watchLoading was incorrectly named loadingChangeCb in the code. It is now watchLoading as it was stated in the doc.
  • [BREAKING] Removed addGraphQLSubscriptions from the package, since it is now exposed in subscriptions-transport-ws.
  • Compatibility with [email protected].
  • New subscribeToMore feature on queries.
  • Data properties implicitly created in the apollo options are now shown in the vue devtools.

v1.4.0

20 Feb 15:44
Compare
Choose a tag to compare

v1.3.0

08 Jan 02:18
Compare
Choose a tag to compare

New

  • The throttle and debounce options apply lodash throttle and debounce on the query when Vue variables change. Specify either a number of milliseconds or an object with the wait option (in milliseconds) and the lodash options.

Fixes

  • When the query was rerun after variables change, the apollo cache was not used; apollo setVariables has been replaced with setOptions.
  • Misc. loading count fix.

1.1.0-beta.2 - Pagination

01 Nov 23:05
Compare
Choose a tag to compare
Pre-release
  • Access declarative queries with this.$apollo.queries.<name>
  • Access declarative subscriptions with this.$apollo.subscriptions.<name>
  • Pagniation with fetchMore documentation

1.1.0-beta.1 - Subscriptions

01 Nov 17:13
Compare
Choose a tag to compare
Pre-release
  • Basic graphql subscriptions support (doc)

1.0.0-rc.2

01 Nov 12:26
Compare
Choose a tag to compare
1.0.0-rc.2 Pre-release
Pre-release
  • Fix #10 (simple queries not working)
  • Better compatibility with [email protected]
  • It's no longer necessary to initialize the properties in the component data hook.

1.0.0-rc.1

02 Oct 15:34
Compare
Choose a tag to compare
1.0.0-rc.1 Pre-release
Pre-release
Bumped version to rc.1

v1.0.0-beta.11

22 Sep 17:11
Compare
Choose a tag to compare
v1.0.0-beta.11 Pre-release
Pre-release
  • Compiled with babel before publishing to npm
  • Fixes for compatibility with Vue 1.x

v1.0.0-beta.8

21 Sep 09:50
Compare
Choose a tag to compare
v1.0.0-beta.8 Pre-release
Pre-release
  • Fix data & loadingKey
  • Apollo "hello world" example app