Skip to content

Commit 4ab68ee

Browse files
chore(release): update monorepo packages versions
1 parent fe255fb commit 4ab68ee

File tree

13 files changed

+123
-47
lines changed

13 files changed

+123
-47
lines changed

.changeset/@graphql-tools_executor-urql-exchange-7370-dependencies.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/@graphql-tools_links-7103-dependencies.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tired-foxes-join.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

packages/executors/urql-exchange/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @graphql-tools/executor-urql-exchange
22

3+
## 1.0.22
4+
5+
### Patch Changes
6+
7+
- [#7370](https://github.com/ardatan/graphql-tools/pull/7370)
8+
[`c1e31a2`](https://github.com/ardatan/graphql-tools/commit/c1e31a2e3c738cf3f4251634b5be93e35dfbb7be)
9+
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
10+
- Updated dependency
11+
[`@urql/core@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0` ↗︎](https://www.npmjs.com/package/@urql/core/v/3.0.0)
12+
(from `^3.0.0 || ^4.0.0 || ^5.0.0`, in `peerDependencies`)
13+
314
## 1.0.21
415

516
### Patch Changes

packages/executors/urql-exchange/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-tools/executor-urql-exchange",
3-
"version": "1.0.21",
3+
"version": "1.0.22",
44
"type": "module",
55
"description": "",
66
"repository": {

packages/import/CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
# @graphql-tools/import
22

3+
## 7.1.0
4+
5+
### Minor Changes
6+
7+
- [#7310](https://github.com/ardatan/graphql-tools/pull/7310)
8+
[`692cfeb`](https://github.com/ardatan/graphql-tools/commit/692cfeb444a9e4c8e17f1bbb7cf87914e2230a30)
9+
Thanks [@HunterLarco](https://github.com/HunterLarco)! - GraphQL schemas in large projects,
10+
especially monorepos, suffer from fragile and verbose relative import paths that become difficult
11+
to maintain as projects grow. This change brings TypeScript's popular
12+
[`tsconfig.json#paths`](https://www.typescriptlang.org/tsconfig/#paths) aliasing syntax to GraphQL
13+
imports, enabling clean, maintainable import statements across your GraphQL schema files.
14+
15+
**Before** - Brittle relative imports:
16+
17+
```graphql
18+
#import "../../../shared/models/User.graphql"
19+
#import "../../../../common/types/Product.graphql"
20+
```
21+
22+
**After** - Clean, semantic aliases:
23+
24+
```graphql
25+
#import "@models/User.graphql"
26+
#import "@types/Product.graphql"
27+
```
28+
29+
**Configuration Example**
30+
31+
```ts
32+
{
33+
mappings: {
34+
'@models/*': path.join(__dirname, './models/*'),
35+
'@types/*': path.join(__dirname, './shared/types/*'),
36+
}
37+
}
38+
```
39+
40+
This change is introduced in a backwards compatible way to ensure no existing use cases are broken
41+
while using familiar patterns to typescript developers for structuring import aliases.
42+
343
## 7.0.21
444

545
### Patch Changes

packages/import/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-tools/import",
3-
"version": "7.0.21",
3+
"version": "7.1.0",
44
"type": "module",
55
"description": "A set of utils for faster development of GraphQL tools",
66
"repository": {

packages/links/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @graphql-tools/links
22

3+
## 9.0.30
4+
5+
### Patch Changes
6+
7+
- [#7103](https://github.com/ardatan/graphql-tools/pull/7103)
8+
[`296b883`](https://github.com/ardatan/graphql-tools/commit/296b883a61ea2422f42d7370fabe044f469489ff)
9+
Thanks [@dependabot](https://github.com/apps/dependabot)! - dependencies updates:
10+
- Updated dependency
11+
[`[email protected]` ↗︎](https://www.npmjs.com/package/apollo-upload-client/v/18.0.1)
12+
(from `17.0.0`, in `dependencies`)
13+
314
## 9.0.29
415

516
### Patch Changes

packages/links/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-tools/links",
3-
"version": "9.0.29",
3+
"version": "9.0.30",
44
"type": "module",
55
"description": "A set of utils for faster development of GraphQL tools",
66
"repository": {

packages/loaders/graphql-file/CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,51 @@
11
# @graphql-tools/graphql-file-loader
22

3+
## 8.1.0
4+
5+
### Minor Changes
6+
7+
- [#7310](https://github.com/ardatan/graphql-tools/pull/7310)
8+
[`692cfeb`](https://github.com/ardatan/graphql-tools/commit/692cfeb444a9e4c8e17f1bbb7cf87914e2230a30)
9+
Thanks [@HunterLarco](https://github.com/HunterLarco)! - GraphQL schemas in large projects,
10+
especially monorepos, suffer from fragile and verbose relative import paths that become difficult
11+
to maintain as projects grow. This change brings TypeScript's popular
12+
[`tsconfig.json#paths`](https://www.typescriptlang.org/tsconfig/#paths) aliasing syntax to GraphQL
13+
imports, enabling clean, maintainable import statements across your GraphQL schema files.
14+
15+
**Before** - Brittle relative imports:
16+
17+
```graphql
18+
#import "../../../shared/models/User.graphql"
19+
#import "../../../../common/types/Product.graphql"
20+
```
21+
22+
**After** - Clean, semantic aliases:
23+
24+
```graphql
25+
#import "@models/User.graphql"
26+
#import "@types/Product.graphql"
27+
```
28+
29+
**Configuration Example**
30+
31+
```ts
32+
{
33+
mappings: {
34+
'@models/*': path.join(__dirname, './models/*'),
35+
'@types/*': path.join(__dirname, './shared/types/*'),
36+
}
37+
}
38+
```
39+
40+
This change is introduced in a backwards compatible way to ensure no existing use cases are broken
41+
while using familiar patterns to typescript developers for structuring import aliases.
42+
43+
### Patch Changes
44+
45+
- Updated dependencies
46+
[[`692cfeb`](https://github.com/ardatan/graphql-tools/commit/692cfeb444a9e4c8e17f1bbb7cf87914e2230a30)]:
47+
- @graphql-tools/import@7.1.0
48+
349
## 8.0.22
450

551
### Patch Changes

0 commit comments

Comments
 (0)