Skip to content

Commit c06f20f

Browse files
authored
Merge pull request #31 from database-playground/upgrade-dependencies-1130
Upgrade dependencies (2025/11/30)
2 parents fbc8e80 + cdcbe71 commit c06f20f

File tree

4 files changed

+903
-860
lines changed

4 files changed

+903
-860
lines changed

gql/graphql.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ export type CreateQuestionInput = {
7777
submissionIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
7878
/** Question title */
7979
title: Scalars['String']['input'];
80+
/** Only the users with this scope set can see the question. Empty means visible to everyone. */
81+
visibleScope?: InputMaybe<Scalars['String']['input']>;
8082
};
8183

8284
/**
@@ -859,6 +861,8 @@ export type Question = Node & {
859861
title: Scalars['String']['output'];
860862
/** List of your submissions for this question, ordered by submitted at descending. */
861863
userSubmissions: Array<Submission>;
864+
/** Only the users with this scope set can see the question. Empty means visible to everyone. */
865+
visibleScope?: Maybe<Scalars['String']['output']>;
862866
};
863867

864868

@@ -1009,6 +1013,22 @@ export type QuestionWhereInput = {
10091013
titleLTE?: InputMaybe<Scalars['String']['input']>;
10101014
titleNEQ?: InputMaybe<Scalars['String']['input']>;
10111015
titleNotIn?: InputMaybe<Array<Scalars['String']['input']>>;
1016+
/** visible_scope field predicates */
1017+
visibleScope?: InputMaybe<Scalars['String']['input']>;
1018+
visibleScopeContains?: InputMaybe<Scalars['String']['input']>;
1019+
visibleScopeContainsFold?: InputMaybe<Scalars['String']['input']>;
1020+
visibleScopeEqualFold?: InputMaybe<Scalars['String']['input']>;
1021+
visibleScopeGT?: InputMaybe<Scalars['String']['input']>;
1022+
visibleScopeGTE?: InputMaybe<Scalars['String']['input']>;
1023+
visibleScopeHasPrefix?: InputMaybe<Scalars['String']['input']>;
1024+
visibleScopeHasSuffix?: InputMaybe<Scalars['String']['input']>;
1025+
visibleScopeIn?: InputMaybe<Array<Scalars['String']['input']>>;
1026+
visibleScopeIsNil?: InputMaybe<Scalars['Boolean']['input']>;
1027+
visibleScopeLT?: InputMaybe<Scalars['String']['input']>;
1028+
visibleScopeLTE?: InputMaybe<Scalars['String']['input']>;
1029+
visibleScopeNEQ?: InputMaybe<Scalars['String']['input']>;
1030+
visibleScopeNotIn?: InputMaybe<Array<Scalars['String']['input']>>;
1031+
visibleScopeNotNil?: InputMaybe<Scalars['Boolean']['input']>;
10121032
};
10131033

10141034
export enum RankingBy {
@@ -1304,6 +1324,7 @@ export type UpdateQuestionInput = {
13041324
/** Question category, e.g. 'query' */
13051325
category?: InputMaybe<Scalars['String']['input']>;
13061326
clearSubmissions?: InputMaybe<Scalars['Boolean']['input']>;
1327+
clearVisibleScope?: InputMaybe<Scalars['Boolean']['input']>;
13071328
databaseID?: InputMaybe<Scalars['ID']['input']>;
13081329
/** Question stem */
13091330
description?: InputMaybe<Scalars['String']['input']>;
@@ -1314,6 +1335,8 @@ export type UpdateQuestionInput = {
13141335
removeSubmissionIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
13151336
/** Question title */
13161337
title?: InputMaybe<Scalars['String']['input']>;
1338+
/** Only the users with this scope set can see the question. Empty means visible to everyone. */
1339+
visibleScope?: InputMaybe<Scalars['String']['input']>;
13171340
};
13181341

13191342
/**

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@apollo/client-integration-nextjs": "^0.14.1",
2222
"@bprogress/next": "^3.2.12",
2323
"@codemirror/lang-sql": "^6.10.0",
24-
"@graphql-codegen/client-preset": "^5.1.3",
24+
"@graphql-codegen/client-preset": "^5.2.1",
2525
"@hookform/resolvers": "^5.2.2",
2626
"@radix-ui/react-alert-dialog": "^1.1.15",
2727
"@radix-ui/react-avatar": "^1.1.11",
@@ -35,7 +35,7 @@
3535
"@radix-ui/react-slot": "^1.2.4",
3636
"@radix-ui/react-tabs": "^1.1.13",
3737
"@radix-ui/react-tooltip": "^1.2.8",
38-
"@swc-contrib/plugin-graphql-codegen-client-preset": "~0.9",
38+
"@swc-contrib/plugin-graphql-codegen-client-preset": "~0.12.1",
3939
"@tailwindcss/typography": "^0.5.19",
4040
"@tanstack/react-table": "^8.21.3",
4141
"@uiw/react-codemirror": "^4.25.3",
@@ -45,36 +45,36 @@
4545
"dayjs": "^1.11.19",
4646
"foxact": "^0.2.49",
4747
"graphql": "^16.12.0",
48-
"lucide-react": "^0.554.0",
49-
"next": "16.0.3",
48+
"lucide-react": "^0.555.0",
49+
"next": "16.1.0-canary.4",
5050
"next-themes": "^0.4.6",
51-
"react": "19.3.0-canary-eb89912e-20251118",
52-
"react-dom": "19.3.0-canary-eb89912e-20251118",
53-
"react-hook-form": "^7.66.1",
51+
"react": "19.3.0-canary-fd524fe0-20251121",
52+
"react-dom": "19.3.0-canary-fd524fe0-20251121",
53+
"react-hook-form": "^7.67.0",
5454
"react-remark": "^2.1.0",
5555
"remark": "^15.0.1",
5656
"remark-html": "^16.0.1",
5757
"sonner": "^2.0.7",
5858
"sql-formatter": "^15.6.10",
5959
"tailwind-merge": "^3.4.0",
60-
"zod": "^4.1.12"
60+
"zod": "^4.1.13"
6161
},
6262
"devDependencies": {
6363
"@0no-co/graphqlsp": "^1.15.1",
64-
"@eslint/eslintrc": "^3.3.1",
65-
"@graphql-codegen/cli": "^6.0.2",
64+
"@eslint/eslintrc": "^3.3.3",
65+
"@graphql-codegen/cli": "^6.1.0",
6666
"@graphql-codegen/schema-ast": "^5.0.0",
6767
"@graphql-typed-document-node/core": "^3.2.0",
6868
"@parcel/watcher": "^2.5.1",
6969
"@tailwindcss/postcss": "^4.1.17",
7070
"@types/node": "^24.10.1",
71-
"@types/react": "^19.2.6",
71+
"@types/react": "^19.2.7",
7272
"@types/react-dom": "^19.2.3",
73-
"@typescript-eslint/parser": "^8.47.0",
73+
"@typescript-eslint/parser": "^8.48.0",
7474
"dprint": "^0.50.2",
7575
"eslint": "^9.39.1",
76-
"eslint-config-next": "16.0.3",
77-
"eslint-plugin-better-tailwindcss": "^3.7.10",
76+
"eslint-config-next": "16.1.0-canary.7",
77+
"eslint-plugin-better-tailwindcss": "^3.7.11",
7878
"tailwindcss": "^4.1.17",
7979
"tw-animate-css": "^1.4.0",
8080
"typescript": "^5.9.3"

0 commit comments

Comments
 (0)