diff --git a/CHANGELOG.md b/CHANGELOG.md index aa11e63a..72f28cb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 7.6.0-beta + +- package updates + ## 7.5.0-beta - there is no need to use `fragments_glob` any more just specify the glob which will include all your graphql docs diff --git a/pubspec.yaml b/pubspec.yaml index d8fe083e..fcbad952 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: artemis -version: 7.5.0-beta +version: 7.6.0-beta description: Build dart types from GraphQL schemas and queries (using Introspection Query). homepage: https://github.com/comigor/artemis @@ -10,30 +10,30 @@ environment: dependencies: build_config: ^1.0.0 code_builder: ^4.1.0 - build: ^2.1.1 - collection: ^1.15.0 - dart_style: ^2.2.0 + build: ^2.2.1 + collection: ^1.16.0 + dart_style: ^2.2.2 equatable: ^2.0.3 glob: ^2.0.2 - gql_code_builder: ^0.3.0-alpha - gql_dedupe_link: ^2.0.2-alpha - gql_exec: ^0.3.2-alpha - gql_http_link: ^0.4.2-alpha - gql_link: ^0.4.2-alpha + gql_code_builder: ^0.5.1-alpha + gql_dedupe_link: ^2.0.3-alpha + gql_exec: ^0.4.1-alpha + gql_http_link: ^0.4.3-alpha + gql_link: ^0.4.3-alpha gql: ^0.13.1-alpha http: ^0.13.4 json_annotation: ^4.4.0 - path: ^1.8.0 + path: ^1.8.1 recase: ^4.0.0 - source_gen: ^1.2.0 + source_gen: ^1.2.1 yaml: ^3.1.0 dev_dependencies: args: ^2.3.0 - build_runner: ^2.1.5 - build_test: ^2.1.4 - json_serializable: ^6.1.1 - build_resolvers: ^2.0.5 - test: ^1.19.5 + build_runner: ^2.1.8 + build_test: ^2.1.5 + json_serializable: ^6.1.5 + build_resolvers: ^2.0.6 + test: ^1.20.2 logging: ^1.0.2 lints: ^1.0.1 diff --git a/test/query_generator/ast_schema/multiple_schema_mappint_test.dart b/test/query_generator/ast_schema/multiple_schema_mappint_test.dart index fdbb0d42..ff97eda7 100644 --- a/test/query_generator/ast_schema/multiple_schema_mappint_test.dart +++ b/test/query_generator/ast_schema/multiple_schema_mappint_test.dart @@ -345,6 +345,7 @@ enum ArticleType { @JsonValue('ARTEMIS_UNKNOWN') artemisUnknown, } + final BROWSE_ARTICLES_QUERY_DOCUMENT = DocumentNode(definitions: [ OperationDefinitionNode( type: OperationType.query, @@ -474,6 +475,7 @@ enum Privacy { @JsonValue('ARTEMIS_UNKNOWN') artemisUnknown, } + enum Status { @JsonValue('ARCHIVED') archived, @@ -482,6 +484,7 @@ enum Status { @JsonValue('ARTEMIS_UNKNOWN') artemisUnknown, } + enum NotificationType { @JsonValue('ACTIVITY_MESSAGE') activityMessage, diff --git a/test/query_generator/enums/filter_enum_test.dart b/test/query_generator/enums/filter_enum_test.dart index af915900..82873461 100644 --- a/test/query_generator/enums/filter_enum_test.dart +++ b/test/query_generator/enums/filter_enum_test.dart @@ -213,6 +213,7 @@ enum MyEnum { @JsonValue('ARTEMIS_UNKNOWN') artemisUnknown, } + enum InputEnum { @JsonValue('C') c, @@ -221,6 +222,7 @@ enum InputEnum { @JsonValue('ARTEMIS_UNKNOWN') artemisUnknown, } + enum $InputInputEnum { @JsonValue('_E') $e, diff --git a/test/query_generator/enums/input_enum_test.dart b/test/query_generator/enums/input_enum_test.dart index 31a1bcce..5afbf7ca 100644 --- a/test/query_generator/enums/input_enum_test.dart +++ b/test/query_generator/enums/input_enum_test.dart @@ -212,6 +212,7 @@ enum MyEnum { @JsonValue('ARTEMIS_UNKNOWN') artemisUnknown, } + enum OtherEnum { @JsonValue('O1') o1,