Re: [PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-18 Thread via GitHub
arturobernalg merged PR #703: URL: https://github.com/apache/httpcomponents-client/pull/703 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr

Re: [PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-18 Thread via GitHub
arturobernalg commented on code in PR #703: URL: https://github.com/apache/httpcomponents-client/pull/703#discussion_r2283036186 ## pom.xml: ## @@ -215,6 +215,7 @@ com.github.luben zstd-jni ${zstd.jni.version} +true Review Comment: removed

Re: [PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-16 Thread via GitHub
ok2c commented on code in PR #703: URL: https://github.com/apache/httpcomponents-client/pull/703#discussion_r2280528205 ## pom.xml: ## @@ -215,6 +215,7 @@ com.github.luben zstd-jni ${zstd.jni.version} +true Review Comment: @arturobernalg T

Re: [PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-15 Thread via GitHub
arturobernalg commented on PR #703: URL: https://github.com/apache/httpcomponents-client/pull/703#issuecomment-3192281414 @ok2c please do another pass. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to

Re: [PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-15 Thread via GitHub
ok2c commented on code in PR #703: URL: https://github.com/apache/httpcomponents-client/pull/703#discussion_r2278903822 ## httpclient5/src/main/java/org/apache/hc/client5/http/async/methods/DeflatingZstdEntityProducer.java: ## @@ -0,0 +1,345 @@ +/* + * =

Re: [PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-14 Thread via GitHub
arturobernalg commented on code in PR #703: URL: https://github.com/apache/httpcomponents-client/pull/703#discussion_r2276336761 ## httpclient5/pom.xml: ## @@ -116,7 +116,7 @@ com.github.luben zstd-jni - test + 1.5.7-3 Review Comment: @ok2c ple

Re: [PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-14 Thread via GitHub
ok2c commented on code in PR #703: URL: https://github.com/apache/httpcomponents-client/pull/703#discussion_r2276226293 ## httpclient5/pom.xml: ## @@ -116,7 +116,7 @@ com.github.luben zstd-jni - test + 1.5.7-3 Review Comment: @arturobernalg I s

Re: [PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-11 Thread via GitHub
arturobernalg commented on code in PR #703: URL: https://github.com/apache/httpcomponents-client/pull/703#discussion_r2267620041 ## httpclient5/pom.xml: ## @@ -116,7 +116,7 @@ com.github.luben zstd-jni - test + 1.5.7-3 Review Comment: @ok2c a m

Re: [PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-11 Thread via GitHub
ok2c commented on code in PR #703: URL: https://github.com/apache/httpcomponents-client/pull/703#discussion_r2267030668 ## httpclient5/pom.xml: ## @@ -116,7 +116,7 @@ com.github.luben zstd-jni - test + 1.5.7-3 Review Comment: @arturobernalg Is

Re: [PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-10 Thread via GitHub
garydgregory commented on code in PR #703: URL: https://github.com/apache/httpcomponents-client/pull/703#discussion_r2265286350 ## httpclient5/src/main/java/org/apache/hc/client5/http/async/methods/DeflatingZstdEntityProducer.java: ## @@ -0,0 +1,345 @@ +/* + * =

Re: [PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-10 Thread via GitHub
github-advanced-security[bot] commented on code in PR #703: URL: https://github.com/apache/httpcomponents-client/pull/703#discussion_r2265281657 ## httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientZstdCompressionExample.java: ## @@ -0,0 +1,191 @@ +/* + *

[PR] Add Zstandardto async content compression [httpcomponents-client]

2025-08-10 Thread via GitHub
arturobernalg opened a new pull request, #703: URL: https://github.com/apache/httpcomponents-client/pull/703 Adds transparent zstd response decoding via `ContentCompressionAsyncExec` (`InflatingZstdDataConsumer`). Provides `DeflatingZstdEntityProducer` for streaming request compression.