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 Jul 12, 2022
1 parent 2d80246 commit 46de2c0
Show file tree
Hide file tree
Showing 18 changed files with 97 additions and 48 deletions.
24 changes: 0 additions & 24 deletions .changeset/satan-goats-sacrifice.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/warm-moles-remember.md

This file was deleted.

12 changes: 12 additions & 0 deletions packages/graphql-live-query-patch-json-diff/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @n1ru4l/graphql-live-query-patch-jsondiffpatch

## 0.8.0

### Minor Changes

- f585fb3: Support TypeScript ESM module resolution. More information on https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js

### Patch Changes

- Updated dependencies [f585fb3]
- @n1ru4l/graphql-live-query-patch@0.7.0
- @n1ru4l/json-patch-plus@0.2.0

## 0.7.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/graphql-live-query-patch-json-diff/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@n1ru4l/graphql-live-query-patch-jsondiffpatch",
"version": "0.7.0",
"version": "0.8.0",
"author": "n1ru4l <[email protected]>",
"license": "MIT",
"repository": {
Expand All @@ -19,8 +19,8 @@
"real-time"
],
"dependencies": {
"@n1ru4l/json-patch-plus": "^0.1.4",
"@n1ru4l/graphql-live-query-patch": "^0.6.1"
"@n1ru4l/json-patch-plus": "^0.2.0",
"@n1ru4l/graphql-live-query-patch": "^0.7.0"
},
"devDependencies": {
"graphql": "16.0.0-experimental-stream-defer.5",
Expand Down
11 changes: 11 additions & 0 deletions packages/graphql-live-query-patch-json-patch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @n1ru4l/graphql-live-query-patch-json-patch

## 0.7.0

### Minor Changes

- f585fb3: Support TypeScript ESM module resolution. More information on https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js

### Patch Changes

- Updated dependencies [f585fb3]
- @n1ru4l/graphql-live-query-patch@0.7.0

## 0.6.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql-live-query-patch-json-patch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@n1ru4l/graphql-live-query-patch-json-patch",
"version": "0.6.1",
"version": "0.7.0",
"author": "n1ru4l <[email protected]>",
"license": "MIT",
"repository": {
Expand All @@ -19,7 +19,7 @@
"real-time"
],
"dependencies": {
"@n1ru4l/graphql-live-query-patch": "^0.6.1",
"@n1ru4l/graphql-live-query-patch": "^0.7.0",
"fast-json-patch": "^3.1.0"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/graphql-live-query-patch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @n1ru4l/graphql-live-query-patch

## 0.7.0

### Minor Changes

- f585fb3: Support TypeScript ESM module resolution. More information on https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js

## 0.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-live-query-patch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@n1ru4l/graphql-live-query-patch",
"version": "0.6.1",
"version": "0.7.0",
"author": "n1ru4l <[email protected]>",
"license": "MIT",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions packages/graphql-live-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @n1ru4l/graphql-live-query

## 0.10.0

### Minor Changes

- f585fb3: Support TypeScript ESM module resolution. More information on https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js

## 0.9.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-live-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@n1ru4l/graphql-live-query",
"version": "0.9.0",
"version": "0.10.0",
"author": "n1ru4l <[email protected]>",
"license": "MIT",
"repository": {
Expand Down
32 changes: 32 additions & 0 deletions packages/in-memory-live-query-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# @n1ru4l/in-memory-live-query-store

## 0.10.0

### Minor Changes

- 93239dc: Drop the `execute` constructor argument option.
Please use `InMemoryLiveQueryStore.makeExecute` instead.

**Old**

```ts
import { InMemoryLiveQueryStore } from "@n1ru4l/in-memory-live-query-store";
import { execute as executeImplementation } from "graphql";
const liveQueryStore = new InMemoryLiveQueryStore({ execute });
const execute = liveQueryStore.execute;
```

**New**

```ts
import { InMemoryLiveQueryStore } from "@n1ru4l/in-memory-live-query-store";
import { execute as executeImplementation } from "graphql";
const liveQueryStore = new InMemoryLiveQueryStore();
const execute = liveQueryStore.makeExecute(executeImplementation);
```

- f585fb3: Support TypeScript ESM module resolution. More information on https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js

### Patch Changes

- Updated dependencies [f585fb3]
- @n1ru4l/graphql-live-query@0.10.0

## 0.9.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions 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.9.0",
"version": "0.10.0",
"author": "n1ru4l <[email protected]>",
"license": "MIT",
"repository": {
Expand All @@ -23,7 +23,7 @@
},
"dependencies": {
"@graphql-tools/utils": "^8.5.2",
"@n1ru4l/graphql-live-query": "0.9.0",
"@n1ru4l/graphql-live-query": "0.10.0",
"@repeaterjs/repeater": "^3.0.4"
},
"peerDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/json-patch-plus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @n1ru4l/json-patch-plus

## 0.2.0

### Minor Changes

- f585fb3: Support TypeScript ESM module resolution. More information on https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js

## 0.1.4

### 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.4",
"version": "0.2.0",
"author": "n1ru4l <[email protected]>",
"license": "MIT",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions packages/socket-io-graphql-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @n1ru4l/socket-io-graphql-client

## 0.13.0

### Minor Changes

- f585fb3: Support TypeScript ESM module resolution. More information on https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js

## 0.11.1

### Patch 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.11.1",
"version": "0.13.0",
"author": "n1ru4l <[email protected]>",
"license": "MIT",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions packages/socket-io-graphql-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @n1ru4l/socket-io-graphql-server

## 0.13.0

### Minor Changes

- f585fb3: Support TypeScript ESM module resolution. More information on https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js

## 0.12.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.12.0",
"version": "0.13.0",
"author": "n1ru4l <[email protected]>",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit 46de2c0

Please sign in to comment.