Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 9fd38f3

Browse files
darahayeswtrocki
authored andcommitted
chore: release 0.15.0
1 parent 831d42e commit 9fd38f3

File tree

15 files changed

+589
-22
lines changed

15 files changed

+589
-22
lines changed

docs/ref-release-notes.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ title: What is new in Offix
44
sidebar_label: Release notes
55
---
66

7+
# 0.15.0
8+
9+
feat: allow for adding conflict listeners after client creation (#393)
10+
11+
Adds `addConflictListener` and `removeConflictListener` methods to `ApolloOfflineClient`.
12+
13+
# 0.14.0
14+
15+
fix: persist queue entries after updating optimistic ids (#389)
16+
fix: improve queue handling of optimistic ids + InputMapper (#381)
17+
fix: react example app build issue (#387)
18+
breaking: refactor offline mutate (#378)
19+
breaking: refactor network status interface (#368)
20+
chore: Stop generating source maps (#375)
21+
722
# 0.13.2
823

924
Add useNetworkStatus React hook which can be used to build components that render differently depending on the network state.

examples/react/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "offix-react-example",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"main": "index.js",
55
"license": "Apache-2.0",
66
"private": true,
@@ -19,11 +19,11 @@
1919
"apollo-link-ws": "^1.0.19",
2020
"graphql": "^14.3.1",
2121
"graphql-tag": "^2.10.1",
22-
"offix-cache": "0.14.0",
23-
"offix-client": "0.14.0",
22+
"offix-cache": "0.15.0",
23+
"offix-client": "0.15.0",
2424
"react": "^16.13.0",
2525
"react-dom": "^16.8.0",
26-
"react-offix-hooks": "0.14.0",
26+
"react-offix-hooks": "0.15.0",
2727
"spectre.css": "^0.5.8",
2828
"subscriptions-transport-ws": "^0.9.16"
2929
},

examples/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apollo-runtime-template",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "",
55
"private": true,
66
"license": "Apache 2.0",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"npmClient": "yarn",
88
"useWorkspaces": true,
9-
"version": "0.14.0",
9+
"version": "0.15.0",
1010
"command": {
1111
"publish": {
1212
"exact": true

packages/offix-cache/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "offix-cache",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "GraphQL Mutation and Subscription Helpers",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",

packages/offix-client-boost/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "offix-client-boost",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "simplifies setup and usage of offix-client",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",
@@ -24,8 +24,8 @@
2424
"apollo-link-retry": "2.2.15",
2525
"apollo-link-ws": "1.0.19",
2626
"apollo-upload-client": "12.1.0",
27-
"offix-client": "0.14.0",
28-
"offix-conflicts-client": "0.14.0",
27+
"offix-client": "0.15.0",
28+
"offix-conflicts-client": "0.15.0",
2929
"subscriptions-transport-ws": "0.9.16"
3030
},
3131
"devDependencies": {

packages/offix-client/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "offix-client",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "Offix GraphQL Offline Client",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",
@@ -50,10 +50,10 @@
5050
"apollo-link-error": "1.1.12",
5151
"apollo-link-http": "1.5.16",
5252
"apollo-link-retry": "2.2.15",
53-
"offix-cache": "0.14.0",
54-
"offix-conflicts-client": "0.14.0",
55-
"offix-offline": "0.14.0",
56-
"offix-scheduler": "0.14.0",
53+
"offix-cache": "0.15.0",
54+
"offix-conflicts-client": "0.15.0",
55+
"offix-offline": "0.15.0",
56+
"offix-scheduler": "0.15.0",
5757
"traverse": "0.6.6"
5858
},
5959
"peerDependencies": {

packages/offix-conflicts-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "offix-conflicts-client",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "adds client side conflict detection and resolution",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",

packages/offix-conflicts-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "offix-conflicts-server",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "Offix GraphQL server",
55
"main": "dist/index.js",
66
"scripts": {

packages/offix-offline/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "offix-offline",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "Offix package that exposes network interfaces",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",

0 commit comments

Comments
 (0)