Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #379 from comigor/package-updates
Browse files Browse the repository at this point in the history
package updates
  • Loading branch information
vasilich6107 authored Mar 28, 2022
2 parents ed08803 + 62c98cb commit 55a9cbe
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 16 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
32 changes: 16 additions & 16 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@ enum ArticleType {
@JsonValue('ARTEMIS_UNKNOWN')
artemisUnknown,
}
final BROWSE_ARTICLES_QUERY_DOCUMENT = DocumentNode(definitions: [
OperationDefinitionNode(
type: OperationType.query,
Expand Down Expand Up @@ -474,6 +475,7 @@ enum Privacy {
@JsonValue('ARTEMIS_UNKNOWN')
artemisUnknown,
}
enum Status {
@JsonValue('ARCHIVED')
archived,
Expand All @@ -482,6 +484,7 @@ enum Status {
@JsonValue('ARTEMIS_UNKNOWN')
artemisUnknown,
}
enum NotificationType {
@JsonValue('ACTIVITY_MESSAGE')
activityMessage,
Expand Down
2 changes: 2 additions & 0 deletions test/query_generator/enums/filter_enum_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ enum MyEnum {
@JsonValue('ARTEMIS_UNKNOWN')
artemisUnknown,
}
enum InputEnum {
@JsonValue('C')
c,
Expand All @@ -221,6 +222,7 @@ enum InputEnum {
@JsonValue('ARTEMIS_UNKNOWN')
artemisUnknown,
}
enum $InputInputEnum {
@JsonValue('_E')
$e,
Expand Down
1 change: 1 addition & 0 deletions test/query_generator/enums/input_enum_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ enum MyEnum {
@JsonValue('ARTEMIS_UNKNOWN')
artemisUnknown,
}
enum OtherEnum {
@JsonValue('O1')
o1,
Expand Down

0 comments on commit 55a9cbe

Please sign in to comment.