Skip to content

Commit 7f6b729

Browse files
git-wrightclaude
andcommitted
fix: update async-http-client to 3.0.6 and change dependency scopes to api
- Update async-http-client from 3.0.1 to 3.0.6 (addresses Issue #79) - Change httpclient, async-http-client, and gson from 'implementation' to 'api' scope since they appear in public method signatures (Issue #78) Closes #78 Closes #79 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent d167df7 commit 7f6b729

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ java {
4141
}
4242

4343
dependencies {
44-
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
45-
implementation 'org.asynchttpclient:async-http-client:3.0.1'
46-
implementation 'com.google.code.gson:gson:2.8.9'
44+
// These are 'api' because they appear in public method signatures (Issue #78)
45+
api 'org.apache.httpcomponents:httpclient:4.5.13'
46+
api 'org.asynchttpclient:async-http-client:3.0.6' // Updated from 3.0.1 (Issue #79)
47+
api 'com.google.code.gson:gson:2.8.9'
4748

4849
// Force Netty upgrade to resolve CVEs
4950
implementation platform("io.netty:netty-bom:${nettyVersion}")

0 commit comments

Comments
 (0)