Skip to content

Commit

Permalink
chore(release): update monorepo packages versions (#6242)
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
theguild-bot and github-actions[bot] authored Jun 11, 2024
1 parent 615df88 commit 2d7402e
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 27 deletions.
11 changes: 0 additions & 11 deletions .changeset/tame-rabbits-cheat.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/thick-grapes-shop.md

This file was deleted.

8 changes: 8 additions & 0 deletions benchmark/federation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# federation-benchmark

## 0.0.142

### Patch Changes

- Updated dependencies
[[`0f7059b`](https://github.com/ardatan/graphql-tools/commit/0f7059beb218d0012c48e121c55e7db386796bee)]:
- @graphql-tools/federation@2.0.1

## 0.0.141

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions benchmark/federation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "federation-benchmark",
"version": "0.0.141",
"version": "0.0.142",
"private": true,
"scripts": {
"loadtest:federation": "k6 -e ENDPOINT=federation run k6.js",
Expand All @@ -11,7 +11,7 @@
"dependencies": {
"@apollo/gateway": "2.8.0",
"@apollo/subgraph": "2.8.0",
"@graphql-tools/federation": "2.0.0",
"@graphql-tools/federation": "2.0.1",
"@graphql-tools/stitch": "9.2.9",
"cross-env": "7.0.3",
"express": "4.19.2",
Expand Down
19 changes: 19 additions & 0 deletions packages/federation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @graphql-tools/federation

## 2.0.1

### Patch Changes

- [#6238](https://github.com/ardatan/graphql-tools/pull/6238)
[`0f7059b`](https://github.com/ardatan/graphql-tools/commit/0f7059beb218d0012c48e121c55e7db386796bee)
Thanks [@ardatan](https://github.com/ardatan)! - Merge the elements of the lists if the root field
is shared across different subgraphs

```graphql
type Query {
products: [Product] # If this field is returned by multiple subgraphs, the elements of the lists will be merged
}
```

- Updated dependencies
[[`0f7059b`](https://github.com/ardatan/graphql-tools/commit/0f7059beb218d0012c48e121c55e7db386796bee)]:
- @graphql-tools/utils@10.2.2

## 2.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/federation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/federation",
"version": "2.0.0",
"version": "2.0.1",
"type": "module",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"repository": {
Expand Down Expand Up @@ -55,7 +55,7 @@
"@graphql-tools/merge": "^9.0.3",
"@graphql-tools/schema": "^10.0.4",
"@graphql-tools/stitch": "^9.2.9",
"@graphql-tools/utils": "^10.2.1",
"@graphql-tools/utils": "^10.2.2",
"@graphql-tools/wrap": "^10.0.3",
"@whatwg-node/fetch": "^0.9.17",
"tslib": "^2.4.0",
Expand Down
15 changes: 15 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @graphql-tools/utils

## 10.2.2

### Patch Changes

- [#6238](https://github.com/ardatan/graphql-tools/pull/6238)
[`0f7059b`](https://github.com/ardatan/graphql-tools/commit/0f7059beb218d0012c48e121c55e7db386796bee)
Thanks [@ardatan](https://github.com/ardatan)! - If the given objects are arrays with the same
length, merge the elements.

```ts
const a = [{ a: 1 }, { b: 2 }]
const b = [{ c: 3 }, { d: 4 }]
const result = mergeDeep(a, b) // [{ a: 1, c: 3 }, { b: 2, d: 4 }]
```

## 10.2.1

### Patch 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": "10.2.1",
"version": "10.2.2",
"type": "module",
"description": "Common package containing utils and types for GraphQL tools",
"repository": {
Expand Down

0 comments on commit 2d7402e

Please sign in to comment.