Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
knaeckeKami committed Jan 13, 2024
2 parents 1d5e7c0 + 39d315d commit a7788a0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 23 deletions.
12 changes: 6 additions & 6 deletions codegen/gql_build/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: gql_build
version: 0.11.0
version: 0.11.0+1
description: Useful builders for your GraphQL SDL and documents. Based on package:gql_code_builder and package:build
repository: https://github.com/gql-dart/gql
environment:
environment:
sdk: '>=3.0.0 <4.0.0'
dependencies:
dependencies:
analyzer: '>=4.6.0 <7.0.0'
build: ^2.1.0
built_collection: ^5.0.0
Expand All @@ -14,14 +14,14 @@ dependencies:
dart_style: ^2.2.4
glob: ^2.0.0
gql: ^1.0.0
gql_code_builder: ^0.8.0
gql_code_builder: ^0.10.0
path: ^1.8.0
yaml: ^3.1.0
gql_tristate_value: ^1.0.0
dev_dependencies:
dev_dependencies:
build_test: ^2.0.0
gql_pedantic: ^1.0.2
topics:
topics:
- graphql
- gql
- codegen
26 changes: 14 additions & 12 deletions codegen/gql_code_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
# 0.9.2
# 0.10.0

- Adding 'vars_create_factories' option to create factory initializers with required parameters (#434)
- Adding 'vars_create_factories' option to create factory initializers with required parameters (
#434)

## 0.9.1+1

- fix generating the `Value` wrappers as nullable

## 0.9.0

- add TriStateValueConfig option in order to wrap nullable fields in input types in a `Value` class in order distinguish between three cases:
- absent
- null
- non-null value
in serialization

- add TriStateValueConfig option in order to wrap nullable fields in input types in a `Value` class
in order distinguish between three cases:
- absent
- null
- non-null value
in serialization

## 0.8.0

- add experimental `DataClassConfig` option to reuse data classes when a selection set only consists of a single fragment spread

- add experimental `DataClassConfig` option to reuse data classes when a selection set only consists
of a single fragment spread

## 0.7.2

Expand All @@ -27,15 +28,16 @@
## 0.7.1

- experimental support for when/maybeWhen methods in inline spread fragments with type condition
- fix issue with generating fragment classes with variables, see https://github.com/gql-dart/ferry/issues/484
- fix issue with generating fragment classes with variables,
see https://github.com/gql-dart/ferry/issues/484

## 0.7.0

- **Breaking Change**: properly generate nullable types for nullable elements in lists

## 0.6.0

- add support for generating `possibleTypesMap`.
- add support for generating `possibleTypesMap`.

## 0.5.1

Expand Down
10 changes: 5 additions & 5 deletions codegen/gql_code_builder/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: gql_code_builder
version: 0.9.2
version: 0.10.0
description: Dart code builders taking *.graphql documents and SDL to build useful classes.
repository: https://github.com/gql-dart/gql
environment:
environment:
sdk: '>=3.0.0 <4.0.0'
dependencies:
dependencies:
analyzer: '>=4.6.0 <7.0.0'
built_collection: ^5.0.0
built_value: ^8.0.6
Expand All @@ -14,11 +14,11 @@ dependencies:
gql_exec: ^1.0.0
path: ^1.8.0
gql_tristate_value: ^1.0.0
dev_dependencies:
dev_dependencies:
build_runner: ^2.1.0
gql_pedantic: ^1.0.2
test: ^1.16.8
topics:
topics:
- graphql
- gql
- codegen

0 comments on commit a7788a0

Please sign in to comment.