Skip to content

Commit

Permalink
[deploy_website] chore(release): update monorepo packages versions (#…
Browse files Browse the repository at this point in the history
…2139)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
2 people authored and ardatan committed Oct 27, 2020
1 parent 6f47166 commit b9d75d2
Show file tree
Hide file tree
Showing 17 changed files with 76 additions and 44 deletions.
5 changes: 0 additions & 5 deletions .changeset/cool-ads-sin.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/itchy-pillows-trade.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/new-pears-compete.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/odd-moons-hunt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thin-ways-wave.md

This file was deleted.

4 changes: 2 additions & 2 deletions packages/batch-delegate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"input": "./src/index.ts"
},
"dependencies": {
"@graphql-tools/delegate": "^7.0.0",
"@graphql-tools/delegate": "^7.0.1",
"dataloader": "2.0.0",
"tslib": "~2.0.1"
},
"devDependencies": {
"@graphql-tools/schema": "7.0.0",
"@graphql-tools/stitch": "7.0.1",
"@graphql-tools/utils": "7.0.0"
"@graphql-tools/utils": "7.0.1"
},
"publishConfig": {
"access": "public",
Expand Down
9 changes: 9 additions & 0 deletions packages/delegate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @graphql-tools/delegate

## 7.0.1

### Patch Changes

- 294dedda: fix(delegate): Fix type error with `arguments` being undefined
- Updated dependencies [8133a907]
- Updated dependencies [2b6c813e]
- @graphql-tools/utils@7.0.1

## 7.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/delegate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/delegate",
"version": "7.0.0",
"version": "7.0.1",
"description": "A set of utils for faster development of GraphQL tools",
"repository": "git@github.com:ardatan/graphql-tools.git",
"license": "MIT",
Expand All @@ -20,7 +20,7 @@
"dependencies": {
"@graphql-tools/batch-execute": "^7.0.0",
"@graphql-tools/schema": "^7.0.0",
"@graphql-tools/utils": "^7.0.0",
"@graphql-tools/utils": "^7.0.1",
"@ardatan/aggregate-error": "0.0.6",
"dataloader": "2.0.0",
"is-promise": "4.0.0",
Expand Down
6 changes: 5 additions & 1 deletion packages/graphql-tag-pluck/src/visitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,11 @@ export default (code: string, out: any, options: GraphQLTagPluckOptions = {}) =>
}

// When it's a named import that matches registered package's identifier
if (isImportSpecifier(importSpecifier) && importSpecifier.imported.name === moduleNode.identifier) {
if (
isImportSpecifier(importSpecifier) &&
'name' in importSpecifier.imported &&
importSpecifier.imported.name === moduleNode.identifier
) {
return true;
}

Expand Down
14 changes: 14 additions & 0 deletions packages/graphql-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# graphql-tools

## 7.0.1

### Patch Changes

- Updated dependencies [294dedda]
- Updated dependencies [294dedda]
- Updated dependencies [2b6c813e]
- Updated dependencies [8133a907]
- Updated dependencies [2b6c813e]
- @graphql-tools/delegate@7.0.1
- @graphql-tools/url-loader@6.3.2
- @graphql-tools/links@7.0.0
- @graphql-tools/utils@7.0.1

## 7.0.0

### Major Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/graphql-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-tools",
"version": "7.0.0",
"version": "7.0.1",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"repository": "git@github.com:ardatan/graphql-tools.git",
"license": "MIT",
Expand All @@ -21,26 +21,26 @@
"dependencies": {
"@graphql-tools/batch-delegate": "^7.0.0",
"@graphql-tools/batch-execute": "^7.0.0",
"@graphql-tools/delegate": "^7.0.0",
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/graphql-tag-pluck": "^6.2.6",
"@graphql-tools/import": "^6.2.4",
"@graphql-tools/links": "^6.2.5",
"@graphql-tools/links": "^7.0.0",
"@graphql-tools/load": "^6.2.5",
"@graphql-tools/code-file-loader": "^6.2.5",
"@graphql-tools/git-loader": "^6.2.5",
"@graphql-tools/github-loader": "^6.2.5",
"@graphql-tools/graphql-file-loader": "^6.2.5",
"@graphql-tools/json-file-loader": "^6.2.5",
"@graphql-tools/module-loader": "^6.2.5",
"@graphql-tools/url-loader": "^6.3.1",
"@graphql-tools/url-loader": "^6.3.2",
"@graphql-tools/load-files": "^6.2.4",
"@graphql-tools/merge": "^6.2.5",
"@graphql-tools/mock": "^7.0.0",
"@graphql-tools/relay-operation-optimizer": "^6.2.5",
"@graphql-tools/resolvers-composition": "^6.2.5",
"@graphql-tools/schema": "^7.0.0",
"@graphql-tools/stitch": "^7.0.1",
"@graphql-tools/utils": "^7.0.0",
"@graphql-tools/utils": "^7.0.1",
"@graphql-tools/wrap": "^7.0.0",
"tslib": "~2.0.1"
}
Expand Down
15 changes: 15 additions & 0 deletions packages/links/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @graphql-tools/links

## 7.0.0

### Major Changes

- 2b6c813e: feat(links): AC3 support

`apollo-link` has been deprecated so this package now uses `@apollo/client` as peer dependency;
You can [see more on migration guide.](https://www.apollographql.com/docs/react/migrating/apollo-client-3-migration/#apollo-link-and-apollo-link-http)

### Patch Changes

- Updated dependencies [8133a907]
- Updated dependencies [2b6c813e]
- @graphql-tools/utils@7.0.1

## 6.2.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/links/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/links",
"version": "6.2.5",
"version": "7.0.0",
"description": "A set of utils for faster development of GraphQL tools",
"repository": "git@github.com:ardatan/graphql-tools.git",
"license": "MIT",
Expand Down Expand Up @@ -30,7 +30,7 @@
"graphql-upload": "11.0.0"
},
"dependencies": {
"@graphql-tools/utils": "7.0.0",
"@graphql-tools/utils": "7.0.1",
"apollo-upload-client": "14.1.2",
"cross-fetch": "3.0.6",
"form-data": "3.0.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/loaders/url/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @graphql-tools/url-loader

## 6.3.2

### Patch Changes

- 294dedda: fix(url-loader): fix typing mismatch
- Updated dependencies [294dedda]
- Updated dependencies [8133a907]
- Updated dependencies [2b6c813e]
- @graphql-tools/delegate@7.0.1
- @graphql-tools/utils@7.0.1

## 6.3.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/loaders/url/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/url-loader",
"version": "6.3.1",
"version": "6.3.2",
"description": "A set of utils for faster development of GraphQL tools",
"repository": "git@github.com:ardatan/graphql-tools.git",
"author": "Dotan Simha <dotansimha@gmail.com>",
Expand All @@ -23,9 +23,9 @@
"supertest": "5.0.0"
},
"dependencies": {
"@graphql-tools/delegate": "^7.0.0",
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/wrap": "^7.0.0",
"@graphql-tools/utils": "^7.0.0",
"@graphql-tools/utils": "^7.0.1",
"@types/websocket": "1.0.1",
"cross-fetch": "3.0.6",
"tslib": "~2.0.1",
Expand Down
7 changes: 7 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @graphql-tools/utils

## 7.0.1

### Patch Changes

- 8133a907: fix(utils): Remove \$ from invalidPathRegex
- 2b6c813e: fix(utils): fix typing mismatch between linkToSubscriber and observableToAsyncIterable

## 7.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/utils",
"version": "7.0.0",
"version": "7.0.1",
"description": "Common package containting utils and types for GraphQL tools",
"repository": "git@github.com:ardatan/graphql-tools.git",
"author": "Dotan Simha <dotansimha@gmail.com>",
Expand Down

0 comments on commit b9d75d2

Please sign in to comment.