Skip to content

Commit 8b1c834

Browse files
committed
Upgrade to WF 33 and SR-GQL 2.9.1
1 parent cac815d commit 8b1c834

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ jobs:
4949
mvn -B install
5050
5151
older-wildfly:
52-
# uncomment the following line when this FP branch supports only one WF version and thus testing with older WF builds isn't needed
53-
if: false
52+
# comment-out the following line when this FP branch supports only one WF version and thus testing with older WF builds isn't needed
53+
# if: false
5454
runs-on: ubuntu-latest
5555
strategy:
5656
matrix:
57-
wildfly: [28.0.1.Final, 29.0.1.Final]
57+
wildfly: [32.0.1.Final, 31.0.1.Final, 30.0.1.Final]
5858
name: build with wildfly ${{matrix.wildfly}}
5959

6060
steps:

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@
3939

4040
<properties>
4141
<!-- Target WildFly version, and other parts needed for the Galleon maven plugin -->
42-
<version.org.wildfly>31.0.1.Final</version.org.wildfly>
43-
<version.org.wildfly.core>23.0.3.Final</version.org.wildfly.core>
42+
<version.org.wildfly>33.0.0.Final</version.org.wildfly>
43+
<version.org.wildfly.core>25.0.0.Final</version.org.wildfly.core>
4444
<version.org.wildfly.common>1.6.0.Final</version.org.wildfly.common>
45-
<version.org.jboss.galleon>5.2.2.Final</version.org.jboss.galleon>
45+
<version.org.jboss.galleon>6.0.2.Final</version.org.jboss.galleon>
4646

4747
<!-- Other WildFly feature pack that we depend on -->
4848
<version.org.wildfly.reactive-feature-pack>3.0.0.Final</version.org.wildfly.reactive-feature-pack>
4949

5050
<!-- Libraries provided by this feature pack. These variables directly affect what will be in
5151
the built feature pack. -->
52-
<version.io.smallrye.graphql>2.9.0</version.io.smallrye.graphql>
52+
<version.io.smallrye.graphql>2.9.1</version.io.smallrye.graphql>
5353
<version.org.eclipse.microprofile.graphql>2.0</version.org.eclipse.microprofile.graphql>
5454
<version.com.graphql-java>22.1</version.com.graphql-java>
5555
<version.com.graphql-java.dataloader>3.2.1</version.com.graphql-java.dataloader>
@@ -78,11 +78,11 @@
7878
<version.junit>4.13.1</version.junit>
7979
<version.rest-assured>5.3.0</version.rest-assured>
8080
<version.arquillian-junit>1.7.0.Alpha12</version.arquillian-junit>
81-
<version.wildfly.glow>1.0.0.Alpha7</version.wildfly.glow>
81+
<version.wildfly.glow>1.1.0.Final</version.wildfly.glow>
8282

8383
<!-- Plugin versions and their dependency versions -->
8484
<version.org.wildfly.checkstyle-config>1.0.8.Final</version.org.wildfly.checkstyle-config>
85-
<version.org.wildfly.galleon-plugins>6.4.2.Final</version.org.wildfly.galleon-plugins>
85+
<version.org.wildfly.galleon-plugins>7.1.2.Final</version.org.wildfly.galleon-plugins>
8686
<version.wildfly.maven.plugin>4.1.1.Final</version.wildfly.maven.plugin>
8787

8888
<!-- Misc. -->

subsystem/src/main/java/org/wildfly/extension/microprofile/graphql/MicroProfileGraphQLSubsystemDefinition.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ public class MicroProfileGraphQLSubsystemDefinition extends PersistentResourceDe
4646
.of(GRAPHQL_CAPABILITY_NAME)
4747
.addRequirements(WELD_CAPABILITY_NAME)
4848
.addRequirements(CONFIG_CAPABILITY_NAME)
49-
.addRequirements()
5049
.build();
5150

5251
public MicroProfileGraphQLSubsystemDefinition() {
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Basic Scalar Types
2+
23| type ScalarHolder | charArray: [String!] | Expecting a String Array Scalar (for Java Char[]) Type in type ScalarHolder
3+
47| type Query | testCharArray: [String!] | Expecting a non null Stirng Array (for Java Char[]) Scalar Type in type Query
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# testJsonDefault
2-
59|type Mutation | provisionHero(hero: String, item: ItemInput = {dateCreated : "19 February 1900 at 12:00 in Africa/Johannesburg", dateLastUsed : "29 Jan 2020 at 09:45 in zone +0200", height : 1.2, id : 1000, name : "Cape", powerLevel : 3, supernatural : false, weight : 0.3}): SuperHero | Expecting a default value for item for provisionHero
2+
60|type Mutation | id : "1000" | Expecting an id=1000 in the default value for item for provisionHero

0 commit comments

Comments
 (0)