From 013a1f57aa217a93064a8a018e83c857753c1e01 Mon Sep 17 00:00:00 2001 From: "Mateusz \"Serafin\" Gajewski" Date: Thu, 9 Oct 2025 11:25:56 +0200 Subject: [PATCH 1/2] Document client disallowLocalRedirect property --- docs/src/main/sphinx/client/jdbc.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/src/main/sphinx/client/jdbc.md b/docs/src/main/sphinx/client/jdbc.md index 05c6d91fbc69..7100633f8a1c 100644 --- a/docs/src/main/sphinx/client/jdbc.md +++ b/docs/src/main/sphinx/client/jdbc.md @@ -249,6 +249,9 @@ may not be specified using both methods. users. * - `disableCompression` - Whether compression should be enabled. +* - `disallowLocalRedirect` + - Whether client should reject redirects to localhost, link or site local + IP addresses. Defaults to `false`. * - `assumeLiteralUnderscoreInMetadataCallsForNonConformingClients` - When enabled, the name patterns passed to `DatabaseMetaData` methods are treated as underscores. You can use this as a workaround for applications From b3a3d2b79885e8e7baf6fb2611218f32f7009aec Mon Sep 17 00:00:00 2001 From: "Mateusz \"Serafin\" Gajewski" Date: Thu, 9 Oct 2025 11:34:36 +0200 Subject: [PATCH 2/2] Fix and add default to disableCompression property docs --- docs/src/main/sphinx/client/jdbc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/sphinx/client/jdbc.md b/docs/src/main/sphinx/client/jdbc.md index 7100633f8a1c..0058ef72d895 100644 --- a/docs/src/main/sphinx/client/jdbc.md +++ b/docs/src/main/sphinx/client/jdbc.md @@ -248,7 +248,7 @@ may not be specified using both methods. different users, the first registered token is stored and authenticates all users. * - `disableCompression` - - Whether compression should be enabled. + - Whether HTTP compression should be disabled. Defaults to `false`. * - `disallowLocalRedirect` - Whether client should reject redirects to localhost, link or site local IP addresses. Defaults to `false`.