Skip to content

Commit

Permalink
chore(release): update monorepo packages versions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 23, 2021
1 parent cf552ec commit eecb7a1
Show file tree
Hide file tree
Showing 12 changed files with 64 additions and 45 deletions.
17 changes: 0 additions & 17 deletions .changeset/heavy-steaks-smile.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/lazy-dots-yawn.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/odd-years-sniff.md

This file was deleted.

2 changes: 1 addition & 1 deletion packages/graphql-live-query-patch-json-diff/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"real-time"
],
"dependencies": {
"@n1ru4l/json-patch-plus": "^0.1.1",
"@n1ru4l/json-patch-plus": "^0.1.3",
"@n1ru4l/graphql-live-query-patch": "^0.5.0"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/in-memory-live-query-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @n1ru4l/in-memory-live-query-store

## 0.7.3

### Patch Changes

- cf552ec: use the correct `execute` function for executing live queries.

When using the `InMemoryLiveQueryStore.makeExecute` API the returned function did not properly use the provided `execute` function. Instead the `execute` function provided to the `InMemoryLiveQueryStore` constructor was used. This issue caused unexpected behavior when using this library with envelop.

## 0.7.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/in-memory-live-query-store/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@n1ru4l/in-memory-live-query-store",
"version": "0.7.2",
"version": "0.7.3",
"author": "n1ru4l <laurinquast@googlemail.com>",
"license": "MIT",
"repository": {
Expand Down
17 changes: 17 additions & 0 deletions packages/json-patch-plus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @n1ru4l/json-patch-plus

## 0.1.3

### Patch Changes

- 108970b: Remove keys from the object instead of setting them to undefined.

```ts
const result = patch({
left: { a: { a: 2 } },
delta: { a: [null, 0, 0] }
});
// Previously result was
// { a: undefined }
// Now it is
// {}
```

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/json-patch-plus/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@n1ru4l/json-patch-plus",
"version": "0.1.2",
"version": "0.1.3",
"author": "n1ru4l <laurinquast@googlemail.com>",
"license": "MIT",
"repository": {
Expand Down
17 changes: 17 additions & 0 deletions packages/socket-io-graphql-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @n1ru4l/socket-io-graphql-client

## 0.11.0

### Minor Changes

- c2dee5a: Support sending extensions from the client to the server.

```ts
client.execute({
operation,
extensions: {
secret: "I like turtles!"
}
});
```

The GraphQL over HTTP specification allows to send a extensions object as part of a GraphQL request to the server. This is now also supported. Possible use-cases might be [access tokens](https://github.com/n1ru4l/graphql-live-query/discussions/735) or protocol extensions such as [Automatic Persisted Queries](https://github.com/apollographql/apollo-link-persisted-queries#protocol).

## 0.10.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/socket-io-graphql-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@n1ru4l/socket-io-graphql-client",
"version": "0.10.0",
"version": "0.11.0",
"author": "n1ru4l <laurinquast@googlemail.com>",
"license": "MIT",
"repository": {
Expand Down
17 changes: 17 additions & 0 deletions packages/socket-io-graphql-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @n1ru4l/socket-io-graphql-server

## 0.11.0

### Minor Changes

- c2dee5a: Support sending extensions from the client to the server.

```ts
client.execute({
operation,
extensions: {
secret: "I like turtles!"
}
});
```

The GraphQL over HTTP specification allows to send a extensions object as part of a GraphQL request to the server. This is now also supported. Possible use-cases might be [access tokens](https://github.com/n1ru4l/graphql-live-query/discussions/735) or protocol extensions such as [Automatic Persisted Queries](https://github.com/apollographql/apollo-link-persisted-queries#protocol).

## 0.10.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/socket-io-graphql-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@n1ru4l/socket-io-graphql-server",
"version": "0.10.0",
"version": "0.11.0",
"author": "n1ru4l <laurinquast@googlemail.com>",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit eecb7a1

Please sign in to comment.