From 0dddaa524cf3d4b87bec6ff2b5781a4675ef855b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 06:00:55 +0000 Subject: [PATCH 1/2] Bump com.github.mizosoft.methanol:methanol from 1.7.0 to 1.9.0 Bumps [com.github.mizosoft.methanol:methanol](https://github.com/mizosoft/methanol) from 1.7.0 to 1.9.0. - [Release notes](https://github.com/mizosoft/methanol/releases) - [Changelog](https://github.com/mizosoft/methanol/blob/master/CHANGELOG.md) - [Commits](https://github.com/mizosoft/methanol/compare/v1.7.0...v1.9.0) --- updated-dependencies: - dependency-name: com.github.mizosoft.methanol:methanol dependency-version: 1.9.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 89e8fd5..d51cc9c 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ ext { dependencies { compileOnly xplibs.api.script compileOnly xplibs.api.core - implementation 'com.github.mizosoft.methanol:methanol:1.7.0' + implementation 'com.github.mizosoft.methanol:methanol:1.9.0' implementation 'io.github.hakky54:sslcontext-kickstart:9.2.1' testImplementation 'org.junit.jupiter:junit-jupiter:6.0.3' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' From ad0e31a9dcdaf7a0e2d1c66d33c21f97710ba6a7 Mon Sep 17 00:00:00 2001 From: rymsha Date: Tue, 12 May 2026 19:41:18 +0000 Subject: [PATCH 2/2] Update connect-timeout assertion for methanol 1.9 message Methanol 1.9.0 capitalized "Couldn't receive headers on time" (was "couldn't ..." in 1.7.x). The lib-http-client error path propagates the methanol exception's message verbatim, so the existing assertion no longer matches. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/test/resources/lib/test/request-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/resources/lib/test/request-test.js b/src/test/resources/lib/test/request-test.js index a48b63c..0874fa4 100644 --- a/src/test/resources/lib/test/request-test.js +++ b/src/test/resources/lib/test/request-test.js @@ -266,7 +266,7 @@ exports.getWithConnectTimeout = function (mockServer) { assert.assertTrue(false, 'Expected exception'); } catch (e) { - assert.assertEquals("couldn't receive headers on time", e.message); + assert.assertEquals("Couldn't receive headers on time", e.message); } };