Skip to content

Commit 7db18ca

Browse files
committed
Replace japicmp with revapi, restructure CI matrix, add Dependabot
- Replace japicmp-maven-plugin with revapi-maven-plugin for API compatibility checking against the latest released version - Restructure CI into compile-and-check gate job followed by OS (ubuntu/macos/windows) x JDK (11/17/21/25) test matrix - Add JDK 25 Error Prone profile with updated versions (2.48.0) and --should-stop=ifError=FLOW compiler flag - Migrate BasicHttp2Test from deprecated SelfSignedCertificate to netty-pkitesting CertificateBuilder for JDK 17+ compat - Fix flaky MultipartBasicAuthTest on Windows by reducing file size for 401-expecting tests to avoid socket close race - Add Dependabot config for Maven and GitHub Actions
1 parent 89b5620 commit 7db18ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/src/test/java/org/asynchttpclient/request/body/multipart/MultipartBasicAuthTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public AbstractHandler configureHandler() throws Exception {
6262
}
6363

6464
private void expectHttpResponse(Function<BoundRequestBuilder, BoundRequestBuilder> f, int expectedResponseCode) throws Throwable {
65-
File file = createTempFile(1024 * 1024);
65+
File file = createTempFile(1024);
6666

6767
try (AsyncHttpClient client = asyncHttpClient()) {
6868
Response response = f.apply(client.preparePut(getTargetUrl()).addBodyPart(new FilePart("test", file, APPLICATION_OCTET_STREAM.toString(), UTF_8)))

0 commit comments

Comments
 (0)