Re: [VOTE] Release Apache Commons JCS 3.2 based on rc1 (2nd round with fixed links)

2023-09-04 Thread Gary Gregory
+1 ASC OK SHA512 OK These are not showstoppers but they should be addressed at some point: - I'd prefer we always use M.M.M version formats, here 3.2.0. - This site page incorrectly lists links to the RC instead of what will be the real page https://dist.apache.org/repos/dist/dev/commons/jcs/3.

[VOTE] Release Apache Commons Compress 1.24.0 based on RC1

2023-09-04 Thread Gary Gregory
We have fixed a few bugs and added one enhancement since Apache Commons Compress 1.23.0 was released, so I would like to release Apache Commons Compress 1.24.0. Apache Commons Compress 1.24.0 RC1 is available for review here: https://dist.apache.org/repos/dist/dev/commons/compress/1.24.0-RC1 (

[CSV] Odd behavior when using 'QuoteMode.MINIMAL' with empty columns

2023-09-04 Thread Buddhi De Silva
Hello Commons-Dev team, I was trying samples with the 'setQuoteMode()' method in the 'CSVFormat' class. When I have a sting list as follows to be formatted, @Test public void test_empty_columns() throws IOException { CSVFormat csvFormat = CSVFormat.DEFAULT.builder() .setHeader()

Re: [CSV] Odd behavior when using 'QuoteMode.MINIMAL' with empty columns

2023-09-04 Thread Gary Gregory
Buddhi, This example does not make sense because an empty header is illegal. You won't be able to parse the output generated by this code with the same CSVFormat. Assuming we are not setting headers to an empty array with: CSVFormat.DEFAULT.builder().setQuoteMode(QuoteMode.MINIMAL).build(); The