Skip to content
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

chore(gql_code_builder): support analyzer 7.0.0 #476

Merged
merged 1 commit into from
Jan 6, 2025
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
2 changes: 1 addition & 1 deletion codegen/gql_build/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repository: https://github.com/gql-dart/gql
environment:
sdk: '>=3.0.0 <4.0.0'
dependencies:
analyzer: '>=4.6.0 <7.0.0'
analyzer: '>=4.6.0 <8.0.0'
build: ^2.1.0
built_collection: ^5.0.0
built_value: ^8.0.6
Expand Down
2 changes: 1 addition & 1 deletion codegen/gql_code_builder/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repository: https://github.com/gql-dart/gql
environment:
sdk: '>=3.0.0 <4.0.0'
dependencies:
analyzer: '>=4.6.0 <7.0.0'
analyzer: '>=4.6.0 <8.0.0'
built_collection: ^5.0.0
built_value: ^8.0.6
code_builder: ^4.7.0
Expand Down
2 changes: 2 additions & 0 deletions gql/lib/src/schema/defaults.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
// * The implementation of GraphQLSchema as a "view" of an AST makes
// adding default definitions feel awkward and un-integrated

// ignore_for_file: unused_element

/// This module defines some (but not all) of the schema definitions
/// that are provided by default for all schemas:
/// * the `__typename` field ([typeNameField])
Expand Down
Loading