From 93bf2032779b0735a70a54d292b4b05c9f6e70dd Mon Sep 17 00:00:00 2001 From: Emir Uner Date: Wed, 25 Mar 2026 23:31:50 +0100 Subject: [PATCH 1/2] Document FileStorage.S3.DisableChunkedEncoding setting --- content/en/docs/refguide/runtime/custom-settings/_index.md | 1 + content/en/docs/refguide10/runtime/custom-settings/_index.md | 1 + content/en/docs/refguide9/runtime/custom-settings/_index.md | 1 + 3 files changed, 3 insertions(+) diff --git a/content/en/docs/refguide/runtime/custom-settings/_index.md b/content/en/docs/refguide/runtime/custom-settings/_index.md index 1a5f48d8766..204be63c481 100644 --- a/content/en/docs/refguide/runtime/custom-settings/_index.md +++ b/content/en/docs/refguide/runtime/custom-settings/_index.md @@ -214,6 +214,7 @@ For deployments to Mendix Cloud, SAP BTP, and Mendix on Kubernetes, these settin | com.mendix.storage.s3.SocketTimeout | Sets the amount of time to wait (in milliseconds) for data to be transferred over an established, open connection before the connection times out and is closed. A value of `0` means infinity and is not recommended. For more information, see the [AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setSocketTimeout-int-). | 50.000 (50 seconds) | | com.mendix.storage.s3.RequestTimeout | Sets the amount of time to wait (in milliseconds) for the request to complete before giving up and timing out. A value of `0` means no timeout. For more information, see [the AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setRequestTimeout-int-). | 0 (no timeout) | | com.mendix.storage.s3.UseCACertificates | Set this value to `true` to use the configured [CACertificates](#CACertificates) for the connection to the S3 service. | false | +| FileStorage.S3.DisableChunkedEncoding | Set this value to `true` to disable chunked transfer encoding when uploading files to S3 storage. This setting can be useful when working with S3-compatible storage services that do not fully support chunked encoding. | false | ## Microsoft Azure SQL {#azure-sql} diff --git a/content/en/docs/refguide10/runtime/custom-settings/_index.md b/content/en/docs/refguide10/runtime/custom-settings/_index.md index a85b5ae2031..fc58b2b7623 100644 --- a/content/en/docs/refguide10/runtime/custom-settings/_index.md +++ b/content/en/docs/refguide10/runtime/custom-settings/_index.md @@ -206,6 +206,7 @@ For deployments to Mendix Cloud, SAP BTP, and Mendix on Kubernetes, these settin | com.mendix.storage.s3.SocketTimeout | Sets the amount of time to wait (in milliseconds) for data to be transferred over an established, open connection before the connection times out and is closed. A value of `0` means infinity and is not recommended. For more information, see the [AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setSocketTimeout-int-). | 50.000 (50 seconds) | | com.mendix.storage.s3.RequestTimeout | Sets the amount of time to wait (in milliseconds) for the request to complete before giving up and timing out. A value of `0` means no timeout. For more information, see [the AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setRequestTimeout-int-). | 0 (no timeout) | | com.mendix.storage.s3.UseCACertificates | Set this value to `true` to use the configured [CACertificates](#CACertificates) for the connection to the S3 service. | false | +| FileStorage.S3.DisableChunkedEncoding | Set this value to `true` to disable chunked transfer encoding when uploading files to S3 storage. This setting can be useful when working with S3-compatible storage services that do not fully support chunked encoding. | false | ## Microsoft Azure SQL {#azure-sql} diff --git a/content/en/docs/refguide9/runtime/custom-settings/_index.md b/content/en/docs/refguide9/runtime/custom-settings/_index.md index 424884847c2..9369c002677 100644 --- a/content/en/docs/refguide9/runtime/custom-settings/_index.md +++ b/content/en/docs/refguide9/runtime/custom-settings/_index.md @@ -177,6 +177,7 @@ For deployments to Mendix Cloud, SAP BTP, and Mendix on Kubernetes, these settin | com.mendix.storage.s3.SocketTimeout | Sets the amount of time to wait (in milliseconds) for data to be transferred over an established, open connection before the connection times out and is closed. A value of `0` means infinity and is not recommended. For more information, see the [AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setSocketTimeout-int-). | 50.000 (50 seconds) | | com.mendix.storage.s3.RequestTimeout | Sets the amount of time to wait (in milliseconds) for the request to complete before giving up and timing out. A value of `0` means no timeout. For more information, see [the AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setRequestTimeout-int-). | 0 (no timeout) | | com.mendix.storage.s3.UseCACertificates | Set this value to `true` to use the configured [CACertificates](#CACertificates) for the connection to the S3 service. | false | +| FileStorage.S3.DisableChunkedEncoding | Set this value to `true` to disable chunked transfer encoding when uploading files to S3 storage. This setting can be useful when working with S3-compatible storage services that do not fully support chunked encoding. | false | ## Microsoft Azure SQL From 439fdfadc7dd6d75a07b161d59d46c0d3e54c227 Mon Sep 17 00:00:00 2001 From: MarkvanMents Date: Thu, 26 Mar 2026 15:37:10 +0100 Subject: [PATCH 2/2] Add version released for disabling chunked encoding. --- content/en/docs/refguide/runtime/custom-settings/_index.md | 2 +- content/en/docs/refguide10/runtime/custom-settings/_index.md | 2 +- content/en/docs/refguide9/runtime/custom-settings/_index.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/docs/refguide/runtime/custom-settings/_index.md b/content/en/docs/refguide/runtime/custom-settings/_index.md index 204be63c481..59cc27c75a1 100644 --- a/content/en/docs/refguide/runtime/custom-settings/_index.md +++ b/content/en/docs/refguide/runtime/custom-settings/_index.md @@ -214,7 +214,7 @@ For deployments to Mendix Cloud, SAP BTP, and Mendix on Kubernetes, these settin | com.mendix.storage.s3.SocketTimeout | Sets the amount of time to wait (in milliseconds) for data to be transferred over an established, open connection before the connection times out and is closed. A value of `0` means infinity and is not recommended. For more information, see the [AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setSocketTimeout-int-). | 50.000 (50 seconds) | | com.mendix.storage.s3.RequestTimeout | Sets the amount of time to wait (in milliseconds) for the request to complete before giving up and timing out. A value of `0` means no timeout. For more information, see [the AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setRequestTimeout-int-). | 0 (no timeout) | | com.mendix.storage.s3.UseCACertificates | Set this value to `true` to use the configured [CACertificates](#CACertificates) for the connection to the S3 service. | false | -| FileStorage.S3.DisableChunkedEncoding | Set this value to `true` to disable chunked transfer encoding when uploading files to S3 storage. This setting can be useful when working with S3-compatible storage services that do not fully support chunked encoding. | false | +| FileStorage.S3.DisableChunkedEncoding | Set this value to `true` to disable chunked transfer encoding when uploading files to S3 storage. This setting can be useful when working with S3-compatible storage services that do not fully support chunked encoding.`
*This setting was introduced in Mendix version 11.10.0 and 11.6.6 MTS* | false | ## Microsoft Azure SQL {#azure-sql} diff --git a/content/en/docs/refguide10/runtime/custom-settings/_index.md b/content/en/docs/refguide10/runtime/custom-settings/_index.md index fc58b2b7623..b9fd3d2a2f3 100644 --- a/content/en/docs/refguide10/runtime/custom-settings/_index.md +++ b/content/en/docs/refguide10/runtime/custom-settings/_index.md @@ -206,7 +206,7 @@ For deployments to Mendix Cloud, SAP BTP, and Mendix on Kubernetes, these settin | com.mendix.storage.s3.SocketTimeout | Sets the amount of time to wait (in milliseconds) for data to be transferred over an established, open connection before the connection times out and is closed. A value of `0` means infinity and is not recommended. For more information, see the [AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setSocketTimeout-int-). | 50.000 (50 seconds) | | com.mendix.storage.s3.RequestTimeout | Sets the amount of time to wait (in milliseconds) for the request to complete before giving up and timing out. A value of `0` means no timeout. For more information, see [the AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setRequestTimeout-int-). | 0 (no timeout) | | com.mendix.storage.s3.UseCACertificates | Set this value to `true` to use the configured [CACertificates](#CACertificates) for the connection to the S3 service. | false | -| FileStorage.S3.DisableChunkedEncoding | Set this value to `true` to disable chunked transfer encoding when uploading files to S3 storage. This setting can be useful when working with S3-compatible storage services that do not fully support chunked encoding. | false | +| FileStorage.S3.DisableChunkedEncoding | Set this value to `true` to disable chunked transfer encoding when uploading files to S3 storage. This setting can be useful when working with S3-compatible storage services that do not fully support chunked encoding.`
*This setting was introduced in Mendix version 10.24.17* | false | ## Microsoft Azure SQL {#azure-sql} diff --git a/content/en/docs/refguide9/runtime/custom-settings/_index.md b/content/en/docs/refguide9/runtime/custom-settings/_index.md index 9369c002677..458c5c72a6f 100644 --- a/content/en/docs/refguide9/runtime/custom-settings/_index.md +++ b/content/en/docs/refguide9/runtime/custom-settings/_index.md @@ -177,7 +177,7 @@ For deployments to Mendix Cloud, SAP BTP, and Mendix on Kubernetes, these settin | com.mendix.storage.s3.SocketTimeout | Sets the amount of time to wait (in milliseconds) for data to be transferred over an established, open connection before the connection times out and is closed. A value of `0` means infinity and is not recommended. For more information, see the [AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setSocketTimeout-int-). | 50.000 (50 seconds) | | com.mendix.storage.s3.RequestTimeout | Sets the amount of time to wait (in milliseconds) for the request to complete before giving up and timing out. A value of `0` means no timeout. For more information, see [the AWS Java SDK](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#setRequestTimeout-int-). | 0 (no timeout) | | com.mendix.storage.s3.UseCACertificates | Set this value to `true` to use the configured [CACertificates](#CACertificates) for the connection to the S3 service. | false | -| FileStorage.S3.DisableChunkedEncoding | Set this value to `true` to disable chunked transfer encoding when uploading files to S3 storage. This setting can be useful when working with S3-compatible storage services that do not fully support chunked encoding. | false | +| FileStorage.S3.DisableChunkedEncoding | Set this value to `true` to disable chunked transfer encoding when uploading files to S3 storage. This setting can be useful when working with S3-compatible storage services that do not fully support chunked encoding.`
*This setting was introduced in Mendix version 9.24.43* | false | ## Microsoft Azure SQL