Skip to content

Commit 71ece76

Browse files
committed
v4.0.0-beta.5
1 parent cf7917e commit 71ece76

File tree

7 files changed

+57
-6
lines changed

7 files changed

+57
-6
lines changed

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1+
# Changelog
2+
3+
## v4.0.0-beta.5
4+
5+
6+
### 🚀 Enhancements
7+
8+
- UseLazyQuery load returns boolean to make is easier to refetch (dcb1768)
9+
- **ts:** Update types to account for changes in TypeScript 4.8 (#1454)
10+
- Allow global tracking outside of components (5967e16)
11+
12+
### 🩹 Fixes
13+
14+
- Don't call variables if query is disabled + fix enabling race conditions, fix #1243, fix #1422 (#1243, #1422)
15+
- Events not registered in case of immediate trigger, fix #1154 (#1154)
16+
- @vue/apollo-composable ESM settings, fix #1462 (#1463, #1462)
17+
- Avoid multiple on error calls without usage of errorPolicy 'all' (#1461)
18+
- Ssr export paths, fix #1469 (#1469)
19+
- Initialize currentDocument early, fix #1325 (#1325)
20+
- **ts:** Allow null on `userLazyQuery` `load` fn, fix #1386 (#1386)
21+
- **ssr:** Handle result/error set before serverPrefetch call, fix #1429 (#1429)
22+
23+
### 📖 Documentation
24+
25+
- Subscriptions configuration docs updated to describe graphql-ws configuration. (#1449)
26+
27+
### 🏡 Chore
28+
29+
- Update lockfile to v6.0 (81ea32c)
30+
- Update sheep/release-tag (cf7917e)
31+
32+
### ✅ Tests
33+
34+
- Config cypress downloads (32c95de)
35+
- Demo useLazyQuery with immediate load (53554b8)
36+
- Enabled (db7d79c)
37+
38+
### 🤖 CI
39+
40+
- Switch to github actions (25c31d2)
41+
- Enable on v4 branch (bc3d80c)
42+
43+
### ❤️ Contributors
44+
45+
- Guillaume Chau ([@Akryum](http://github.com/Akryum))
46+
- Gibran Amparan ([@gibranamparan](http://github.com/gibranamparan))
47+
- Alessia Bellisario <alessia@apollographql.com>
48+
- Dominik Klein <dk@zammad.com>
49+
- Changwan Jun ([@wan2land](http://github.com/wan2land))
50+
51+
152
# [4.0.0-beta.4](https://github.com/vuejs/vue-apollo/compare/v4.0.0-beta.3...v4.0.0-beta.4) (2023-02-22)
253

354

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-apollo-monorepo",
3-
"version": "4.0.0-beta.4",
3+
"version": "4.0.0-beta.5",
44
"private": true,
55
"scripts": {
66
"build": "pnpm run -r --filter \"vue-apollo*\" --filter \"@vue/apollo*\" build",

packages/vue-apollo-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/apollo-components",
3-
"version": "4.0.0-beta.4",
3+
"version": "4.0.0-beta.5",
44
"description": "Apollo GraphQL components for Vue.js",
55
"main": "dist/vue-apollo-components.umd.js",
66
"module": "dist/vue-apollo-components.esm.js",

packages/vue-apollo-composable/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/apollo-composable",
3-
"version": "4.0.0-beta.4",
3+
"version": "4.0.0-beta.5",
44
"description": "Apollo GraphQL for Vue Composition API",
55
"repository": {
66
"type": "git",

packages/vue-apollo-option/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/apollo-option",
3-
"version": "4.0.0-beta.4",
3+
"version": "4.0.0-beta.5",
44
"description": "Use Apollo and GraphQL with Vue.js using the `apollo` option",
55
"main": "dist/vue-apollo-option.umd.js",
66
"module": "dist/vue-apollo-option.esm.js",

packages/vue-apollo-ssr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/apollo-ssr",
3-
"version": "4.0.0-beta.4",
3+
"version": "4.0.0-beta.5",
44
"description": "Apollo GraphQL for Vue - Server Side Rendering utilities",
55
"repository": {
66
"type": "git",

packages/vue-apollo-util/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/apollo-util",
3-
"version": "4.0.0-beta.4",
3+
"version": "4.0.0-beta.5",
44
"description": "Apollo GraphQL for Vue - Utilities",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)