You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### 🐛 Fixes
* Fix Gradle deprecations and warnings
* Make coverage rules more lenient
* Fix website vulnerabilities
| Library | Vulnerability | Severity |
|-|-|-|
| braces | CVE-2024-4068 | HIGH |
| express | CVE-2024-29041 | MEDIUM |
| follow-redirects | CVE-2024-28849 | |
| webpack-dev-middleware | CVE-2024-29180 | HIGH |
| ws | CVE-2024-37890 | |
### 🧑💻 Improvements
* Improve dependency management
### 🚧 TODO
* Please test all updates and changes extensively to prepare for Kotlin
2 compatibility
* Please try to restore the 3 skipped tests after Kotlin 1.9 upgrade
* Anchor `#dispatching-by-level` doesn't exist anymore in
website/docs/server/data-loader/data-loader-instrumentation.mdx
* Old code should be reformatted so all those many exceptions can be
removed from `.editorconfig
Copy file name to clipboardExpand all lines: clients/graphql-kotlin-spring-client/src/test/kotlin/com/expediagroup/graphql/client/spring/GraphQLWebClientTest.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -475,7 +475,7 @@ class GraphQLWebClientTest {
475
475
client.execute(HelloWorldQuery())
476
476
}
477
477
}
478
-
assertEquals(500, error.rawStatusCode)
478
+
assertEquals(500, error.statusCode.value())
479
479
assertEquals("Internal server error", error.responseBodyAsString)
Copy file name to clipboardExpand all lines: generator/graphql-kotlin-federation/build.gradle.kts
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,11 @@ dependencies {
12
12
api(libs.graphql.java)
13
13
testImplementation(libs.reactor.core)
14
14
testImplementation(libs.reactor.extensions)
15
-
testImplementation(libs.junit.params)
15
+
constraints {
16
+
implementation(libs.commons.codec) {
17
+
because("Cxeb68d52e-5509: Apache commons-codec before 1.13 is vulnerable to information exposure. https://devhub.checkmarx.com/cve-details/Cxeb68d52e-5509/")
0 commit comments