Skip to content

Commit

Permalink
chore(release): update monorepo packages versions (#1498)
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 Aug 31, 2022
1 parent f248f66 commit cea2df2
Show file tree
Hide file tree
Showing 70 changed files with 1,043 additions and 134 deletions.
57 changes: 0 additions & 57 deletions .changeset/itchy-days-roll.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tasty-swans-allow.md

This file was deleted.

32 changes: 32 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# @envelop/core

## 2.6.0

### Minor Changes

- [#1499](https://github.com/n1ru4l/envelop/pull/1499) [`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6) Thanks [@viniciuspalma](https://github.com/viniciuspalma)! - Adding tslib to package dependencies

Projects that currently are using yarn Berry with PnP or any strict dependency
resolver, that requires that all dependencies are specified on
package.json otherwise it would endue in an error if not treated correct

Since https://www.typescriptlang.org/tsconfig#importHelpers is currently
being used, tslib should be exported as a dependency to external runners
get the proper import.

Change on each package:

```json
// package.json
{
"dependencies": {
"tslib": "^2.4.0"
}
}
```

### Patch Changes

- [#1496](https://github.com/n1ru4l/envelop/pull/1496) [`ae7bc9a3`](https://github.com/n1ru4l/envelop/commit/ae7bc9a36abd595b0a91f7b4e133017d3eb99a4a) Thanks [@ardatan](https://github.com/ardatan)! - Fix isIntrospectionDocument and isIntrospectionOperation for fragment tricks

- Updated dependencies [[`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6)]:
- @envelop/types@2.4.0

## 2.5.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@envelop/core",
"version": "2.5.0",
"version": "2.6.0",
"author": "Dotan Simha <dotansimha@gmail.com>",
"license": "MIT",
"sideEffects": false,
Expand Down Expand Up @@ -56,7 +56,7 @@
"definition": "dist/typings/index.d.ts"
},
"dependencies": {
"@envelop/types": "2.3.1",
"@envelop/types": "2.4.0",
"tslib": "2.4.0"
},
"devDependencies": {
Expand Down
28 changes: 28 additions & 0 deletions packages/plugins/apollo-datasources/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @envelop/apollo-datasources

## 1.3.0

### Minor Changes

- [#1499](https://github.com/n1ru4l/envelop/pull/1499) [`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6) Thanks [@viniciuspalma](https://github.com/viniciuspalma)! - Adding tslib to package dependencies

Projects that currently are using yarn Berry with PnP or any strict dependency
resolver, that requires that all dependencies are specified on
package.json otherwise it would endue in an error if not treated correct

Since https://www.typescriptlang.org/tsconfig#importHelpers is currently
being used, tslib should be exported as a dependency to external runners
get the proper import.

Change on each package:

```json
// package.json
{
"dependencies": {
"tslib": "^2.4.0"
}
}
```

- Updated dependencies [[`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6), [`ae7bc9a3`](https://github.com/n1ru4l/envelop/commit/ae7bc9a36abd595b0a91f7b4e133017d3eb99a4a)]:
- @envelop/core@2.6.0

## 1.2.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/apollo-datasources/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@envelop/apollo-datasources",
"version": "1.2.0",
"version": "1.3.0",
"author": "Kamil Kisiela <kamil.kisiela@gmail.com>",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -57,7 +57,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@envelop/core": "^2.5.0",
"@envelop/core": "^2.6.0",
"apollo-datasource": "^3",
"apollo-server-caching": "^3",
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
Expand Down
28 changes: 28 additions & 0 deletions packages/plugins/apollo-federation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @envelop/apollo-federation

## 2.6.0

### Minor Changes

- [#1499](https://github.com/n1ru4l/envelop/pull/1499) [`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6) Thanks [@viniciuspalma](https://github.com/viniciuspalma)! - Adding tslib to package dependencies

Projects that currently are using yarn Berry with PnP or any strict dependency
resolver, that requires that all dependencies are specified on
package.json otherwise it would endue in an error if not treated correct

Since https://www.typescriptlang.org/tsconfig#importHelpers is currently
being used, tslib should be exported as a dependency to external runners
get the proper import.

Change on each package:

```json
// package.json
{
"dependencies": {
"tslib": "^2.4.0"
}
}
```

- Updated dependencies [[`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6), [`ae7bc9a3`](https://github.com/n1ru4l/envelop/commit/ae7bc9a36abd595b0a91f7b4e133017d3eb99a4a)]:
- @envelop/core@2.6.0

## 2.5.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/apollo-federation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@envelop/apollo-federation",
"version": "2.5.0",
"version": "2.6.0",
"author": "Arda TANRIKULU <ardatanrikulu@gmail.com>",
"license": "MIT",
"sideEffects": false,
Expand Down Expand Up @@ -59,7 +59,7 @@
"graphql-tag": "2.12.6"
},
"peerDependencies": {
"@envelop/core": "^2.5.0",
"@envelop/core": "^2.6.0",
"@apollo/gateway": "^0.41.0 || ^0.42.0 || ^0.43.0",
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
Expand Down
28 changes: 28 additions & 0 deletions packages/plugins/apollo-server-errors/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @envelop/apollo-server-errors

## 3.6.0

### Minor Changes

- [#1499](https://github.com/n1ru4l/envelop/pull/1499) [`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6) Thanks [@viniciuspalma](https://github.com/viniciuspalma)! - Adding tslib to package dependencies

Projects that currently are using yarn Berry with PnP or any strict dependency
resolver, that requires that all dependencies are specified on
package.json otherwise it would endue in an error if not treated correct

Since https://www.typescriptlang.org/tsconfig#importHelpers is currently
being used, tslib should be exported as a dependency to external runners
get the proper import.

Change on each package:

```json
// package.json
{
"dependencies": {
"tslib": "^2.4.0"
}
}
```

- Updated dependencies [[`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6), [`ae7bc9a3`](https://github.com/n1ru4l/envelop/commit/ae7bc9a36abd595b0a91f7b4e133017d3eb99a4a)]:
- @envelop/core@2.6.0

## 3.5.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/apollo-server-errors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@envelop/apollo-server-errors",
"version": "3.5.0",
"version": "3.6.0",
"author": "Dotan Simha <dotansimha@gmail.com>",
"license": "MIT",
"sideEffects": false,
Expand Down Expand Up @@ -56,7 +56,7 @@
"typescript": "4.7.4"
},
"peerDependencies": {
"@envelop/core": "^2.5.0",
"@envelop/core": "^2.6.0",
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"buildOptions": {
Expand Down
28 changes: 28 additions & 0 deletions packages/plugins/apollo-tracing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @envelop/apollo-tracing

## 3.6.0

### Minor Changes

- [#1499](https://github.com/n1ru4l/envelop/pull/1499) [`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6) Thanks [@viniciuspalma](https://github.com/viniciuspalma)! - Adding tslib to package dependencies

Projects that currently are using yarn Berry with PnP or any strict dependency
resolver, that requires that all dependencies are specified on
package.json otherwise it would endue in an error if not treated correct

Since https://www.typescriptlang.org/tsconfig#importHelpers is currently
being used, tslib should be exported as a dependency to external runners
get the proper import.

Change on each package:

```json
// package.json
{
"dependencies": {
"tslib": "^2.4.0"
}
}
```

- Updated dependencies [[`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6), [`ae7bc9a3`](https://github.com/n1ru4l/envelop/commit/ae7bc9a36abd595b0a91f7b4e133017d3eb99a4a)]:
- @envelop/core@2.6.0

## 3.5.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/apollo-tracing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@envelop/apollo-tracing",
"version": "3.5.0",
"version": "3.6.0",
"author": "Dotan Simha <dotansimha@gmail.com>",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -56,7 +56,7 @@
"typescript": "4.7.4"
},
"peerDependencies": {
"@envelop/core": "^2.5.0",
"@envelop/core": "^2.6.0",
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"buildOptions": {
Expand Down
28 changes: 28 additions & 0 deletions packages/plugins/auth0/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @envelop/auth0

## 3.6.0

### Minor Changes

- [#1499](https://github.com/n1ru4l/envelop/pull/1499) [`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6) Thanks [@viniciuspalma](https://github.com/viniciuspalma)! - Adding tslib to package dependencies

Projects that currently are using yarn Berry with PnP or any strict dependency
resolver, that requires that all dependencies are specified on
package.json otherwise it would endue in an error if not treated correct

Since https://www.typescriptlang.org/tsconfig#importHelpers is currently
being used, tslib should be exported as a dependency to external runners
get the proper import.

Change on each package:

```json
// package.json
{
"dependencies": {
"tslib": "^2.4.0"
}
}
```

- Updated dependencies [[`1f7af02b`](https://github.com/n1ru4l/envelop/commit/1f7af02b9f1a16058a6d69fcd48425a93be655c6), [`ae7bc9a3`](https://github.com/n1ru4l/envelop/commit/ae7bc9a36abd595b0a91f7b4e133017d3eb99a4a)]:
- @envelop/core@2.6.0

## 3.5.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/auth0/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@envelop/auth0",
"version": "3.5.0",
"version": "3.6.0",
"author": "Dotan Simha <dotansimha@gmail.com>",
"license": "MIT",
"sideEffects": false,
Expand Down Expand Up @@ -57,7 +57,7 @@
"typescript": "4.7.4"
},
"peerDependencies": {
"@envelop/core": "^2.5.0",
"@envelop/core": "^2.6.0",
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"buildOptions": {
Expand Down
Loading

1 comment on commit cea2df2

@vercel
Copy link

@vercel vercel bot commented on cea2df2 Aug 31, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

envelop – ./

envelop-theguild.vercel.app
envelop-git-main-theguild.vercel.app
envelop.dev
www.envelop.dev

Please sign in to comment.