Skip to content

Commit 6ac2d53

Browse files
committed
version 9.0
1 parent eef0f4c commit 6ac2d53

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
name: Build
55

6-
on: [push]
6+
on: [push, pull_request]
77

88
jobs:
99
build:
@@ -19,8 +19,6 @@ jobs:
1919
run: chmod +x gradlew
2020
- name: Build with Gradle
2121
run: ./gradlew build
22-
- name: Test with Gradle
23-
run: ./gradlew test
2422
- name: Publish Test Report
2523
uses: mikepenz/action-junit-report@v2
2624
if: always() # always run even if the previous step fails

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you would like to use a tool that creates a graphql spring boot server using
3737

3838
```groovy
3939
dependencies {
40-
compile "io.github.graphql-java:graphql-java-annotations:8.5"
40+
compile "io.github.graphql-java:graphql-java-annotations:9.0"
4141
}
4242
```
4343

@@ -47,7 +47,7 @@ dependencies {
4747
<dependency>
4848
<groupId>io.github.graphql-java</groupId>
4949
<artifactId>graphql-java-annotations</artifactId>
50-
<version>8.5</version>
50+
<version>9.0</version>
5151
</dependency>
5252
```
5353

src/main/java/graphql/annotations/processor/typeFunctions/DefaultTypeFunction.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ public void activate() {
5555
typeFunctions.add(new BooleanFunction());
5656
typeFunctions.add(new FloatFunction());
5757
typeFunctions.add(new IntegerFunction());
58+
typeFunctions.add(new LongFunction());
59+
typeFunctions.add(new ByteFunction());
60+
typeFunctions.add(new ShortFunction());
61+
typeFunctions.add(new BigIntegerFunction());
62+
typeFunctions.add(new BigDecimalFunction());
63+
typeFunctions.add(new CharFunction());
5864
typeFunctions.add(new IterableFunction(DefaultTypeFunction.this));
5965
typeFunctions.add(new ArrayFunction(DefaultTypeFunction.this));
6066
typeFunctions.add(new StreamFunction(DefaultTypeFunction.this));

0 commit comments

Comments
 (0)