Skip to content

chore(deps): upgrade dependencies #4166

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
314 changes: 117 additions & 197 deletions .eslintrc.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion benchmark/fixtures.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import fs from 'fs';
import fs from 'node:fs';

export const bigSchemaSDL = fs.readFileSync(
new URL('github-schema.graphql', import.meta.url),
Expand Down
16 changes: 8 additions & 8 deletions benchmark/github-schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -3363,7 +3363,7 @@ type CreatedIssueContributionEdge {
Represents either a issue the viewer can access or a restricted contribution.
"""
union CreatedIssueOrRestrictedContribution =
CreatedIssueContribution
| CreatedIssueContribution
| RestrictedContribution

"""
Expand Down Expand Up @@ -3447,7 +3447,7 @@ type CreatedPullRequestContributionEdge {
Represents either a pull request the viewer can access or a restricted contribution.
"""
union CreatedPullRequestOrRestrictedContribution =
CreatedPullRequestContribution
| CreatedPullRequestContribution
| RestrictedContribution

"""
Expand Down Expand Up @@ -3618,7 +3618,7 @@ type CreatedRepositoryContributionEdge {
Represents either a repository the viewer can access or a restricted contribution.
"""
union CreatedRepositoryOrRestrictedContribution =
CreatedRepositoryContribution
| CreatedRepositoryContribution
| RestrictedContribution

"""
Expand Down Expand Up @@ -6635,7 +6635,7 @@ type IssueTimelineConnection {
An item in an issue timeline
"""
union IssueTimelineItem =
Commit
| Commit
| IssueComment
| CrossReferencedEvent
| ClosedEvent
Expand Down Expand Up @@ -6674,7 +6674,7 @@ type IssueTimelineItemEdge {
An item in an issue timeline
"""
union IssueTimelineItems =
IssueComment
| IssueComment
| CrossReferencedEvent
| AddedToProjectEvent
| AssignedEvent
Expand Down Expand Up @@ -12534,7 +12534,7 @@ type PullRequestTimelineConnection {
An item in an pull request timeline
"""
union PullRequestTimelineItem =
Commit
| Commit
| CommitCommentThread
| PullRequestReview
| PullRequestReviewThread
Expand Down Expand Up @@ -12586,7 +12586,7 @@ type PullRequestTimelineItemEdge {
An item in a pull request timeline
"""
union PullRequestTimelineItems =
PullRequestCommit
| PullRequestCommit
| PullRequestCommitCommentThread
| PullRequestReview
| PullRequestReviewThread
Expand Down Expand Up @@ -16467,7 +16467,7 @@ type ReviewRequestRemovedEvent implements Node {
The results of a search.
"""
union SearchResultItem =
Issue
| Issue
| PullRequest
| Repository
| User
Expand Down
1 change: 1 addition & 0 deletions cspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ words:

# TODO: contribute upstream
- deno
- hashbang

# TODO: remove bellow words
- QLID # GraphQLID
Expand Down
4 changes: 2 additions & 2 deletions integrationTests/node/test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import childProcess from 'child_process';
import fs from 'fs';
import childProcess from 'node:child_process';
import fs from 'node:fs';

const graphqlPackageJSON = JSON.parse(
fs.readFileSync('./node_modules/graphql/package.json', 'utf-8'),
Expand Down
7 changes: 6 additions & 1 deletion integrationTests/ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
"typescript-4.7": "npm:typescript@4.7.x",
"typescript-4.8": "npm:typescript@4.8.x",
"typescript-4.9": "npm:typescript@4.9.x",
"typescript-4.9": "npm:typescript@5.0.x"
"typescript-5.0": "npm:typescript@5.0.x",
"typescript-5.1": "npm:typescript@5.1.x",
"typescript-5.2": "npm:typescript@5.2.x",
"typescript-5.3": "npm:typescript@5.3.x",
"typescript-5.4": "npm:typescript@5.4.x",
"typescript-5.5": "npm:typescript@5.5.x"
}
}
6 changes: 3 additions & 3 deletions integrationTests/ts/test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import childProcess from 'child_process';
import fs from 'fs';
import path from 'path';
import childProcess from 'node:child_process';
import fs from 'node:fs';
import path from 'node:path';

const { dependencies } = JSON.parse(fs.readFileSync('./package.json', 'utf-8'));

Expand Down
2 changes: 1 addition & 1 deletion integrationTests/webpack/test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import assert from 'assert';
import assert from 'node:assert';

/* eslint-disable n/no-missing-import */
import cjs from './dist/main-cjs.cjs';
Expand Down
Loading
Loading