Skip to content

Commit c6825d6

Browse files
committed
Merge branch 'master' into dataloader-subscription
2 parents a3f95a2 + 80928c5 commit c6825d6

File tree

42 files changed

+24264
-38
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+24264
-38
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: build test and publish
2626
run: ./gradlew assemble && ./gradlew check --info && ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository -x check --info --stacktrace
2727
- name: Publish Test Results
28-
uses: EnricoMi/publish-unit-test-result-action@v2.19.0
28+
uses: EnricoMi/publish-unit-test-result-action@v2.20.0
2929
if: always()
3030
with:
3131
files: '**/build/test-results/test/TEST-*.xml'

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: build and test
3030
run: ./gradlew assemble && ./gradlew check --info --stacktrace
3131
- name: Publish Test Results
32-
uses: EnricoMi/publish-unit-test-result-action@v2.19.0
32+
uses: EnricoMi/publish-unit-test-result-action@v2.20.0
3333
if: always()
3434
with:
3535
files: '**/build/test-results/test/TEST-*.xml'

agent-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies {
66
implementation(rootProject)
77
implementation("net.bytebuddy:byte-buddy-agent:1.17.5")
88

9-
testImplementation 'org.junit.jupiter:junit-jupiter:5.12.2'
9+
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.0'
1010
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
1111

1212
testImplementation("org.assertj:assertj-core:3.27.3")

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def getDevelopmentVersion() {
6464

6565
def reactiveStreamsVersion = '1.0.3'
6666
def releaseVersion = System.env.RELEASE_VERSION
67-
def antlrVersion = '4.11.1' // https://mvnrepository.com/artifact/org.antlr/antlr4-runtime
67+
def antlrVersion = '4.13.2' // https://mvnrepository.com/artifact/org.antlr/antlr4-runtime
6868
def guavaVersion = '32.1.2-jre'
6969
version = releaseVersion ? releaseVersion : getDevelopmentVersion()
7070
group = 'com.graphql-java'
@@ -114,8 +114,8 @@ dependencies {
114114
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
115115
testImplementation 'net.bytebuddy:byte-buddy:1.17.5'
116116
testImplementation 'org.objenesis:objenesis:3.4'
117-
testImplementation 'org.apache.groovy:groovy:4.0.26"'
118-
testImplementation 'org.apache.groovy:groovy-json:4.0.26'
117+
testImplementation 'org.apache.groovy:groovy:4.0.27"'
118+
testImplementation 'org.apache.groovy:groovy-json:4.0.27'
119119
testImplementation 'com.google.code.gson:gson:2.13.1'
120120
testImplementation 'org.eclipse.jetty:jetty-server:11.0.25'
121121
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.19.0'
@@ -124,7 +124,7 @@ dependencies {
124124

125125
testImplementation 'org.reactivestreams:reactive-streams-tck:' + reactiveStreamsVersion
126126
testImplementation "io.reactivex.rxjava2:rxjava:2.2.21"
127-
testImplementation "io.projectreactor:reactor-core:3.7.5"
127+
testImplementation "io.projectreactor:reactor-core:3.7.6"
128128

129129
testImplementation 'org.testng:testng:7.11.0' // use for reactive streams test inheritance
130130
testImplementation "com.tngtech.archunit:archunit-junit5:1.4.1"
@@ -176,7 +176,7 @@ shadowJar {
176176
bnd('''
177177
-exportcontents: graphql.*
178178
-removeheaders: Private-Package
179-
Import-Package: !android.os.*,!com.google.*,!org.checkerframework.*,!javax.annotation.*,!graphql.com.google.*,!org.antlr.*,!graphql.org.antlr.*,!sun.misc.*,org.jspecify.annotations;resolution:=optional,*
179+
Import-Package: !android.os.*,!com.google.*,!org.checkerframework.*,!graphql.com.google.*,!org.antlr.*,!graphql.org.antlr.*,!sun.misc.*,org.jspecify.annotations;resolution:=optional,*
180180
''')
181181
}
182182

0 commit comments

Comments
 (0)