Skip to content

Commit

Permalink
chore(release): update monorepo packages versions (#668)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Sep 9, 2021
1 parent 8e14fd2 commit c00e536
Show file tree
Hide file tree
Showing 17 changed files with 92 additions and 52 deletions.
5 changes: 0 additions & 5 deletions .changeset/friendly-adults-sleep.md

This file was deleted.

26 changes: 0 additions & 26 deletions .changeset/many-trainers-wait.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/neat-years-enjoy.md

This file was deleted.

11 changes: 11 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,16 @@
# @n1ru4l/graphql-live-query-patch-jsondiffpatch

## 0.5.0

### Minor Changes

- 8e14fd2: improve ESM support by using export fields and .mjs file extensions

### Patch Changes

- Updated dependencies [8e14fd2]
- @n1ru4l/graphql-live-query-patch@0.5.0

## 0.4.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 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.4.0",
"version": "0.5.0",
"author": "n1ru4l <laurinquast@googlemail.com>",
"license": "MIT",
"repository": {
Expand All @@ -20,7 +20,7 @@
],
"dependencies": {
"jsondiffpatch": "^0.4.1",
"@n1ru4l/graphql-live-query-patch": "^0.4.0"
"@n1ru4l/graphql-live-query-patch": "^0.5.0"
},
"devDependencies": {
"graphql": "15.4.0-experimental-stream-defer.1",
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.5.0

### Minor Changes

- 8e14fd2: improve ESM support by using export fields and .mjs file extensions

### Patch Changes

- Updated dependencies [8e14fd2]
- @n1ru4l/graphql-live-query-patch@0.5.0

## 0.4.0

### Minor 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.4.0",
"version": "0.5.0",
"author": "n1ru4l <laurinquast@googlemail.com>",
"license": "MIT",
"repository": {
Expand All @@ -19,7 +19,7 @@
"real-time"
],
"dependencies": {
"@n1ru4l/graphql-live-query-patch": "^0.4.0",
"@n1ru4l/graphql-live-query-patch": "^0.5.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.5.0

### Minor Changes

- 8e14fd2: improve ESM support by using export fields and .mjs file extensions

## 0.4.0

### Minor 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.4.0",
"version": "0.5.0",
"author": "n1ru4l <laurinquast@googlemail.com>",
"license": "MIT",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions packages/graphql-live-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @n1ru4l/graphql-live-query

## 0.8.0

### Minor Changes

- e893ecc: Add `throttle` argument for the `@live` directive for negotiating a throttle between the server and the client. This is useful for preventing the server to spam the client for data that might be updating too frequently.
- 8e14fd2: improve ESM support by using export fields and .mjs file extensions

## 0.7.1

### Patch 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.7.1",
"version": "0.8.0",
"author": "n1ru4l <laurinquast@googlemail.com>",
"license": "MIT",
"repository": {
Expand Down
35 changes: 35 additions & 0 deletions packages/in-memory-live-query-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# @n1ru4l/in-memory-live-query-store

## 0.7.0

### Minor Changes

- e893ecc: Add support for the `@live(throttle:)` directive argument for negotiating a throttle between the server and the client. This is useful for preventing the server to spam the client for data that might be updating too frequently.

The `InMemoryLiveQueryStore` now accepts a `validateThrottleValue` option that can be used to validate the incoming throttle value sent from clients.

```ts
const store = new InMemoryLiveQueryStore({
validateThrottleValue: (value /* value as sent by client */) => {
// value can either be null/undefined or a number
// returning a string from this function will treat the provided value as invalid
// and send an error back to the client.
if (value == null || value > 1000) {
return "Must provide throttle value in the range from 0-1000";
}
// returning a number will replace the user sent throttle value
if (value === 420) {
return 690;
}
// returning null or undefined will result in no throttle being used.
return null;
}
});
```

- 8e14fd2: improve ESM support by using export fields and .mjs file extensions

### Patch Changes

- Updated dependencies [e893ecc]
- Updated dependencies [8e14fd2]
- @n1ru4l/graphql-live-query@0.8.0

## 0.6.6

### Patch 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.6.6",
"version": "0.7.0",
"author": "n1ru4l <laurinquast@googlemail.com>",
"license": "MIT",
"repository": {
Expand All @@ -23,7 +23,7 @@
},
"dependencies": {
"@graphql-tools/utils": "^8.0.0",
"@n1ru4l/graphql-live-query": "0.7.1",
"@n1ru4l/graphql-live-query": "0.8.0",
"@n1ru4l/push-pull-async-iterable-iterator": "^3.0.0"
},
"peerDependencies": {
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.10.0

### Minor Changes

- 8e14fd2: improve ESM support by using export fields and .mjs file extensions

## 0.9.5

### 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.9.5",
"version": "0.10.0",
"author": "n1ru4l <laurinquast@googlemail.com>",
"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.10.0

### Minor Changes

- 8e14fd2: improve ESM support by using export fields and .mjs file extensions

## 0.9.2

### Patch 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.9.2",
"version": "0.10.0",
"author": "n1ru4l <laurinquast@googlemail.com>",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit c00e536

Please sign in to comment.