Re: [VOTE] Release Apache Commons DbUtils 1.8 based on RC1

2020-01-06 Thread Carl Hall
Thanks for the reviews, Gary and Bruno. And thanks, Gary, for giving such a 
sharp eye to the broader range of code. I'll work through the suggestions in 
this thread, and clear everything up for the next RC.


> On Jan 6, 2020, at 8:21 AM, Gary Gregory  wrote:
> 
> I think we need a development pass before we release. I see too many
> resource leaks under certain conditions.
> 
> For example:
> 
> Calling org.apache.commons.dbutils.QueryRunner.batch(String, Object[][])
> with a null String or a null Object[][] will leak JDBC Connections.
> 
> This should be fixed by following the convention that the code that
> allocates then deallocates.
> 
> So instead of:
> 
>public int[] batch(final String sql, final Object[][] params) throws
> SQLException {
>final Connection conn = this.prepareConnection();
> 
>return this.batch(conn, true, sql, params);
>}
> 
> This method should be:
> 
>public int[] batch(final String sql, final Object[][] params) throws
> SQLException {
>try (final Connection conn = this.prepareConnection()) {
>return this.batch(conn, true, sql, params);
>}
>}
> 
> AND the method org.apache.commons.dbutils.QueryRunner.batch(Connection,
> boolean, String, Object[][]) should NOT release the connection it is given
> since it is not its owner.
> 
> Other call sites can be adjusted similarly. So this applies to callers
> of org.apache.commons.dbutils.AbstractQueryRunner.prepareConnection() and
> other "prepare" methods.
> 
> Gary
> 
> 
> On Sun, Jan 5, 2020 at 2:13 AM Carl Hall  wrote:
> 
>> We have fixed quite a few bugs and added some significant enhancements
>> since Apache Commons DbUtils 1.7 was released, so I would like to release
>> Apache Commons DbUtils 1.8.
>> 
>> Apache Commons DbUtils 1.8 RC1 is available for review here:
>>https://dist.apache.org/repos/dist/dev/commons/dbutils/1.8-RC1 (svn
>> revision 37461)
>> 
>> The Git tag DBUTILS_1_8_RC1 commit for this RC is
>> 727eef5f138a1be1f4365e2b73740949504e0e36 which you can browse here:
>> 
>> https://gitbox.apache.org/repos/asf?p=commons-dbutils.git;a=commit;h=727eef5f138a1be1f4365e2b73740949504e0e36
>> 
>> You may checkout this tag using:
>>git clone https://gitbox.apache.org/repos/asf/commons-dbutils.git
>> --branch DBUTILS_1_8_RC1 commons-dbutils-1.8-RC1
>> 
>> Maven artifacts are here:
>> 
>> https://repository.apache.org/content/repositories/orgapachecommons-1484/commons-dbutils/commons-dbutils/1.8/
>> 
>> These are the artifacts and their hashes:
>> 
>> #Release SHA-512s
>> #Sat Jan 04 22:36:52 PST 2020
>> 
>> commons-dbutils-1.8-bin.tar.gz=8df85fcc2d264e237b3d912b53e4c7cb6c5da143256fc6c1e954770bbcddee1a2c9dd18aa52e165221d136b22809496581fb07cada3528d135be29934ba93519
>> 
>> commons-dbutils-1.8-bin.tar.gz.asc=69953438530416c10f44bb552c67f618cb0e0ab0db88743a5d99818ce1612eec9cd12a6a0d06d204495cc856381e4f50283f0fa38dfd138de89fdb93345c7bec
>> 
>> commons-dbutils-1.8-bin.zip=550d1e2b03b8419ad903848100f11a8b74271802844286a0040a32c1aa8cf7e34af6a8e95bb13fe5099b9c6e6fe65c55001810dd381d11c688760dcc4a0a81b5
>> 
>> commons-dbutils-1.8-bin.zip.asc=0bd928a65147f399da418bf3e14cb34510dd1936468df41d845f71fb15c73aa2bbd61d28db5f9f3bdb099ae51d56a41f620bf66e504f8d70e59aaede04653ec3
>> 
>> commons-dbutils-1.8-javadoc.jar=7aa230e2fdcfe365ad091cdff6ec00eeb965980a431f85afddfc0fc6255ee2620c5c580ad0cbc66799e575e3f2841439a0b75002862e89ac9bead0be5ed56e12
>> 
>> commons-dbutils-1.8-javadoc.jar.asc=a6ab07ac09dd3a87d3141dbfc369abf2fbc561ec0b6f77b0ed1581026eb7b8aa238bc22b5023cb2cde1c72d9b709563af4e7f7898956aab9465d8745747b6cfb
>> 
>> commons-dbutils-1.8-sources.jar=7c007cdffb6f734b6a0d702b317e9c9713a05c41a9a9a151fca95f04fbc5565a35129e7c0faabd3b6b12be106eed7029a2b007cdcc4b0d6e858bcb2505fa9f76
>> 
>> commons-dbutils-1.8-sources.jar.asc=87674fb7aa05932c9663e9111b86742a2c2202aec11d7f561c6a3e113f3eb1e42e95134e84ecad63358025a6465a6d495aa739ce5ed34438bc8a2b51be29b013
>> 
>> commons-dbutils-1.8-src.tar.gz=5efd90dc08b504ec7d2951a974a6ad329ab9ec4b71199a1a13386029c59d0fd65d37ba8dc6ddca6fdc35a96d262047eeedf7f4cd96ad1241190a927d656a7c87
>> 
>> commons-dbutils-1.8-src.tar.gz.asc=a2eb7c80baace54415bc8bc7d9b250721896f3e949a54eec6c222d8cff367eeea00a6d0c3430f08e3b65ceabfbcdded7e8455a70081f4326d8b5abb09bef8378
>> 
>> commons-dbutils-1.8-src.zip=4a5627ef0a5125bae56a077ab6489f44042ec84687574920ea173bbc9f23fa88983944822f10577f7cff5d54a885d98d0c34e71abeafe568f63396453ac491a0
>> 
>> commons-dbutils-1.8-src.zip.asc=87923a6d27698de183b4fe37bd23e2249ab45074c597eef01e9d9de57921151d0d774a6ec0eb84528ede3dfda46377268e6322ec27724c1cbe5f9f98ac1e1d9d
>> 
>> commons-dbutils-1.8-test-sources.jar=86230141a19dff2276a9f7e3a1806c7ce69ea496b9aee5ed6a8afb4f084f71436b2769e49dfe798611aa03eda17897128dae6516cdbb2a00f3a04e9ec9a14ff2
>> 
>> commons-dbutils-1.8-test-sources.jar.asc=0b41adf88b654a87e4857e59d58399cd94198525d038b9abd8977cc61891321315bbc2739909bf4d253533eb8ef03b9151c758227b801f002b57efdd9dca12b0
>> 
>> 

[ANNOUCEMENT] Apache Apache Commons Codec 1.14

2020-01-06 Thread Gary Gregory
The Apache Commons Codec package contains simple encoder and decoders for
various formats such as Base64 and Hexadecimal.  In addition to these
widely used encoders and decoders, the codec package also maintains a
collection of phonetic encoding utilities.

Feature and fix release.

Changes in this version include:

New features:
o CODEC-264:  Add MurmurHash3.hash128x64 methods to fix sign extension
error during seeding in hash128 methods. Thanks to Claude Warren.
o CODEC-267:  Add MurmurHash3.hash32x86 methods and IncrementalHash32x86 to
fix sign extension error in hash32 methods. Thanks to Claude Warren.
o CODEC-272:  Add RandomAccessFile digest methods #31. Thanks to Behrang,
Alex Herbert, Gary Gregory.
o CODEC-273:  Add Path APIs to org.apache.commons.codec.digest.DigestUtils
similar to File APIs. Thanks to Gary Gregory.
o CODEC-274:  Add SHA-512/224 and SHA-512/256 to DigestUtils for Java 9 and
up. Thanks to Gary Gregory.
o CODEC-275:  Add missing note in javadoc when sign extension error is
present #34. Thanks to Claude Warren.

Fixed Bugs:
o CODEC-261:  Hex: Allow encoding read-only ByteBuffer.
o CODEC-259:  Hex: Only use an available ByteBuffer backing array if the
length equals the remaining byte count.
o CODEC-265:  BaseNCodec to expand buffer using overflow conscious code.
o CODEC-270:  Base32/64: Fixed decoding check that all the final trailing
bits to discard are zero.
o CODEC-269:  Allow repeat calls to MurmurHash3.IncrementalHash32.end() to
generate the same value.
o CODEC-276:  Reliance on default encoding in MurmurHash2 and MurmurHash3.
Thanks to Gary Gregory.

Changes:
o CODEC-268:  MurmurHash3: Deprecate hash64 methods and hash methods
accepting a String that use the default encoding.
o CODEC-277:  Don't reload standard Charsets in
org.apache.commons.codec.Charsets. Thanks to Gary Gregory.
o CODEC-278:  Deprecate Charset constants in
org.apache.commons.codec.Charsets in favor of
java.nio.charset.StandardCharsets. Thanks to Gary Gregory.


For complete information on Apache Commons Codec, including instructions on
how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons
Codec website:

https://commons.apache.org/proper/commons-codec/

Download page:
https://commons.apache.org/proper/commons-codec/download_codec.cgi

Gary Gregory
On behalf of the Apache Commons Team


Re: [ANNOUNCEMENT] Apache Apache Commons Codec 1.14

2020-01-06 Thread Gary Gregory
Dang! Sorry.

Gary


On Mon, Jan 6, 2020 at 2:14 PM sebb  wrote:

> On Sat, 4 Jan 2020 at 16:27, Gary Gregory  wrote:
>
> > The Apache Commons Codec package contains simple encoder and decoders for
> > various formats such as Base64 and Hexadecimal.  In addition to these
> > widely used encoders and decoders, the codec package also maintains a
> > collection of phonetic encoding utilities.
> >
> > Feature and fix release.
> >
> > Changes in this version include:
> >
> > New features:
> > o CODEC-264:  Add MurmurHash3.hash128x64 methods to fix sign extension
> > error during seeding in hash128 methods. Thanks to Claude Warren.
> > o CODEC-267:  Add MurmurHash3.hash32x86 methods and IncrementalHash32x86
> to
> > fix sign extension error in hash32 methods. Thanks to Claude Warren.
> > o CODEC-272:  Add RandomAccessFile digest methods #31. Thanks to Behrang,
> > Alex Herbert, Gary Gregory.
> > o CODEC-273:  Add Path APIs to
> org.apache.commons.codec.digest.DigestUtils
> > similar to File APIs. Thanks to Gary Gregory.
> > o CODEC-274:  Add SHA-512/224 and SHA-512/256 to DigestUtils for Java 9
> and
> > up. Thanks to Gary Gregory.
> > o CODEC-275:  Add missing note in javadoc when sign extension error is
> > present #34. Thanks to Claude Warren.
> >
> > Fixed Bugs:
> > o CODEC-261:  Hex: Allow encoding read-only ByteBuffer.
> > o CODEC-259:  Hex: Only use an available ByteBuffer backing array if the
> > length equals the remaining byte count.
> > o CODEC-265:  BaseNCodec to expand buffer using overflow conscious code.
> > o CODEC-270:  Base32/64: Fixed decoding check that all the final trailing
> > bits to discard are zero.
> > o CODEC-269:  Allow repeat calls to MurmurHash3.IncrementalHash32.end()
> to
> > generate the same value.
> > o CODEC-276:  Reliance on default encoding in MurmurHash2 and
> MurmurHash3.
> > Thanks to Gary Gregory.
> >
> > Changes:
> > o CODEC-268:  MurmurHash3: Deprecate hash64 methods and hash methods
> > accepting a String that use the default encoding.
> > o CODEC-277:  Don't reload standard Charsets in
> > org.apache.commons.codec.Charsets. Thanks to Gary Gregory.
> > o CODEC-278:  Deprecate Charset constants in
> > org.apache.commons.codec.Charsets in favor of
> > java.nio.charset.StandardCharsets. Thanks to Gary Gregory.
> >
> >
> > For complete information on Apache Commons Codec, including instructions
> on
> > how to submit bug reports,
> > patches, or suggestions for improvement, see the Apache Apache Commons
> > Codec website:
> >
> > https://commons.apache.org/proper/commons-codec/
> >
> > Download page:
> > https://commons.apache.org/proper/commons-codec/download_pool.cgi
> >
> >
> Wrong URL; please send corrected announce to dev and user lists.
>
>
> > Gary Gregory
> > On behalf of the Apache Commons Team
> >
>


Re: [ANNOUNCEMENT] Apache Apache Commons Codec 1.14

2020-01-06 Thread sebb
On Sat, 4 Jan 2020 at 16:27, Gary Gregory  wrote:

> The Apache Commons Codec package contains simple encoder and decoders for
> various formats such as Base64 and Hexadecimal.  In addition to these
> widely used encoders and decoders, the codec package also maintains a
> collection of phonetic encoding utilities.
>
> Feature and fix release.
>
> Changes in this version include:
>
> New features:
> o CODEC-264:  Add MurmurHash3.hash128x64 methods to fix sign extension
> error during seeding in hash128 methods. Thanks to Claude Warren.
> o CODEC-267:  Add MurmurHash3.hash32x86 methods and IncrementalHash32x86 to
> fix sign extension error in hash32 methods. Thanks to Claude Warren.
> o CODEC-272:  Add RandomAccessFile digest methods #31. Thanks to Behrang,
> Alex Herbert, Gary Gregory.
> o CODEC-273:  Add Path APIs to org.apache.commons.codec.digest.DigestUtils
> similar to File APIs. Thanks to Gary Gregory.
> o CODEC-274:  Add SHA-512/224 and SHA-512/256 to DigestUtils for Java 9 and
> up. Thanks to Gary Gregory.
> o CODEC-275:  Add missing note in javadoc when sign extension error is
> present #34. Thanks to Claude Warren.
>
> Fixed Bugs:
> o CODEC-261:  Hex: Allow encoding read-only ByteBuffer.
> o CODEC-259:  Hex: Only use an available ByteBuffer backing array if the
> length equals the remaining byte count.
> o CODEC-265:  BaseNCodec to expand buffer using overflow conscious code.
> o CODEC-270:  Base32/64: Fixed decoding check that all the final trailing
> bits to discard are zero.
> o CODEC-269:  Allow repeat calls to MurmurHash3.IncrementalHash32.end() to
> generate the same value.
> o CODEC-276:  Reliance on default encoding in MurmurHash2 and MurmurHash3.
> Thanks to Gary Gregory.
>
> Changes:
> o CODEC-268:  MurmurHash3: Deprecate hash64 methods and hash methods
> accepting a String that use the default encoding.
> o CODEC-277:  Don't reload standard Charsets in
> org.apache.commons.codec.Charsets. Thanks to Gary Gregory.
> o CODEC-278:  Deprecate Charset constants in
> org.apache.commons.codec.Charsets in favor of
> java.nio.charset.StandardCharsets. Thanks to Gary Gregory.
>
>
> For complete information on Apache Commons Codec, including instructions on
> how to submit bug reports,
> patches, or suggestions for improvement, see the Apache Apache Commons
> Codec website:
>
> https://commons.apache.org/proper/commons-codec/
>
> Download page:
> https://commons.apache.org/proper/commons-codec/download_pool.cgi
>
>
Wrong URL; please send corrected announce to dev and user lists.


> Gary Gregory
> On behalf of the Apache Commons Team
>


[VOTE] Release Apache Commons VFS Project 2.6.0 based on RC1

2020-01-06 Thread Gary Gregory
We have fixed a *compatibility bug* and added some minor enhancements since
Apache Commons VFS Project 2.5.0 was released, so I would like to release
Apache Commons VFS Project 2.6.0.

Apache Commons VFS Project 2.6.0 RC1 is available for review here:
https://dist.apache.org/repos/dist/dev/commons/vfs/2.6.0-RC1 (svn
revision 37487)

The Git tag commons-vfs-2.6.0-RC1 commit for this RC is
10155cc7e5814de21de179ba44e449ba4e6c45d7 which you can browse here:

https://gitbox.apache.org/repos/asf?p=commons-vfs.git;a=commit;h=10155cc7e5814de21de179ba44e449ba4e6c45d7
You may checkout this tag using:
git clone https://gitbox.apache.org/repos/asf/commons-vfs.git --branch
commons-vfs-2.6.0-RC1 commons-vfs-2.6.0-RC1

Maven artifacts are here:

https://repository.apache.org/content/repositories/orgapachecommons-1485/org/apache/commons/

These are the artifacts and their hashes:



/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0-tests.jar.asc
(SHA1: 6d51958014e7bbe966ce22a5966464ae904471c8)
/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0.jar.asc
(SHA1: f4ef4d7c526fa60f466fd1cae475bd2f15d595f7)
/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0-sources.jar
(SHA1: f9eb21241ffa52e26c77768898aae727e3191f01)
/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0.pom.asc
(SHA1: e04e8b3c4abfb4e30f312c79f7899e5edb2b8677)
/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0-javadoc.jar.asc
(SHA1: 58fe812ed4ecfb6dc38382a5d98a38b0bdcbaac7)
/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0.pom
(SHA1: 49577c2d3fe44c5f2d42075ba0c02d9f54f7033d)
/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0-sources.jar.asc
(SHA1: 2a3f72eb255b4364ffd9f4022cc08270c867de29)
/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0-tests.jar
(SHA1: 8ca8c2af6668ac425c8e8b86e35f5cee5775f734)
/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0.jar
(SHA1: 3a6b5774f51d3f3190cdca027eb4cdfc8cba4cc8)
/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0-test-sources.jar
(SHA1: 0a2727e9c2fd27faa62ff85eb8d07e8078b8eaeb)
/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0-javadoc.jar
(SHA1: 37d0d7d075a09de49381934d72ac549cd1d9e5dd)
/org/apache/commons/commons-vfs2-jackrabbit2/2.6.0/commons-vfs2-jackrabbit2-2.6.0-test-sources.jar.asc
(SHA1: a80b1b66cd233a188c2140d7e7e34a4833c904a4)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0.jar
(SHA1: 33b34c84ce6903de314c3359349fe0ca20dfb0fc)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0-sources.jar
(SHA1: 02612097550eea07380bce9a4ab677ca434d300d)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0.pom
(SHA1: c940dcc79fa8d6bb92b66524c1308db791aa5541)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0-tests.jar
(SHA1: d4135131eac4c0f0c5f386b5cf1cc3d4b873)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0-sources.jar.asc
(SHA1: 3d4a43891e6223ed77ee8ac2f4e52e500c003bb0)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0-tests.jar.asc
(SHA1: 9c8f4ef406b9be919a74de48de187eb6604059ed)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0.jar.asc
(SHA1: 6e3103408c923f8e6b16366f844b50aa4155be04)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0-test-sources.jar.asc
(SHA1: 96b883122c241436b0b2feaf56a3b33e5f8d89fd)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0.pom.asc
(SHA1: 16b6be13d08af3e8742e4ce9276cc1957a3cc06e)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0-javadoc.jar.asc
(SHA1: db4696814e59eaf2c7c9d78ad61cfac14dd3a67c)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0-test-sources.jar
(SHA1: 3c02db51df79c3be0b2d04e0fc06e5d1efb5fe38)
/org/apache/commons/commons-vfs2-jackrabbit1/2.6.0/commons-vfs2-jackrabbit1-2.6.0-javadoc.jar
(SHA1: c10c020e2be09b8b35a419dd103517ea8e6471a5)
/org/apache/commons/commons-vfs2-distribution/2.6.0/commons-vfs2-distribution-2.6.0.pom
(SHA1: 5f4439329920a98a7387d6bd14c449c9c6bd3a4a)
/org/apache/commons/commons-vfs2-distribution/2.6.0/commons-vfs2-distribution-2.6.0.pom.asc
(SHA1: 45cf6d745dbe174ea94174b54edca58a69d2f23d)
/org/apache/commons/commons-vfs2/2.6.0/commons-vfs2-2.6.0-javadoc.jar.asc
(SHA1: 2cc1ac10c49c890685ab94c89d1e35c4f96680a1)
/org/apache/commons/commons-vfs2/2.6.0/commons-vfs2-2.6.0-javadoc.jar
(SHA1: ffa8bc73ad8c9e61d04640f20b822d4d9c65b629)
/org/apache/commons/commons-vfs2/2.6.0/commons-vfs2-2.6.0.jar
(SHA1: a8af9ca571394eceba8e604875e98e2a60b2e4c1)

Re: [VOTE] Release Apache Commons DbUtils 1.8 based on RC1

2020-01-06 Thread Gary Gregory
I think we need a development pass before we release. I see too many
resource leaks under certain conditions.

For example:

Calling org.apache.commons.dbutils.QueryRunner.batch(String, Object[][])
with a null String or a null Object[][] will leak JDBC Connections.

This should be fixed by following the convention that the code that
allocates then deallocates.

So instead of:

public int[] batch(final String sql, final Object[][] params) throws
SQLException {
final Connection conn = this.prepareConnection();

return this.batch(conn, true, sql, params);
}

This method should be:

public int[] batch(final String sql, final Object[][] params) throws
SQLException {
try (final Connection conn = this.prepareConnection()) {
return this.batch(conn, true, sql, params);
}
}

AND the method org.apache.commons.dbutils.QueryRunner.batch(Connection,
boolean, String, Object[][]) should NOT release the connection it is given
since it is not its owner.

Other call sites can be adjusted similarly. So this applies to callers
of org.apache.commons.dbutils.AbstractQueryRunner.prepareConnection() and
other "prepare" methods.

Gary


On Sun, Jan 5, 2020 at 2:13 AM Carl Hall  wrote:

> We have fixed quite a few bugs and added some significant enhancements
> since Apache Commons DbUtils 1.7 was released, so I would like to release
> Apache Commons DbUtils 1.8.
>
> Apache Commons DbUtils 1.8 RC1 is available for review here:
> https://dist.apache.org/repos/dist/dev/commons/dbutils/1.8-RC1 (svn
> revision 37461)
>
> The Git tag DBUTILS_1_8_RC1 commit for this RC is
> 727eef5f138a1be1f4365e2b73740949504e0e36 which you can browse here:
>
> https://gitbox.apache.org/repos/asf?p=commons-dbutils.git;a=commit;h=727eef5f138a1be1f4365e2b73740949504e0e36
>
> You may checkout this tag using:
> git clone https://gitbox.apache.org/repos/asf/commons-dbutils.git
> --branch DBUTILS_1_8_RC1 commons-dbutils-1.8-RC1
>
> Maven artifacts are here:
>
> https://repository.apache.org/content/repositories/orgapachecommons-1484/commons-dbutils/commons-dbutils/1.8/
>
> These are the artifacts and their hashes:
>
> #Release SHA-512s
> #Sat Jan 04 22:36:52 PST 2020
>
> commons-dbutils-1.8-bin.tar.gz=8df85fcc2d264e237b3d912b53e4c7cb6c5da143256fc6c1e954770bbcddee1a2c9dd18aa52e165221d136b22809496581fb07cada3528d135be29934ba93519
>
> commons-dbutils-1.8-bin.tar.gz.asc=69953438530416c10f44bb552c67f618cb0e0ab0db88743a5d99818ce1612eec9cd12a6a0d06d204495cc856381e4f50283f0fa38dfd138de89fdb93345c7bec
>
> commons-dbutils-1.8-bin.zip=550d1e2b03b8419ad903848100f11a8b74271802844286a0040a32c1aa8cf7e34af6a8e95bb13fe5099b9c6e6fe65c55001810dd381d11c688760dcc4a0a81b5
>
> commons-dbutils-1.8-bin.zip.asc=0bd928a65147f399da418bf3e14cb34510dd1936468df41d845f71fb15c73aa2bbd61d28db5f9f3bdb099ae51d56a41f620bf66e504f8d70e59aaede04653ec3
>
> commons-dbutils-1.8-javadoc.jar=7aa230e2fdcfe365ad091cdff6ec00eeb965980a431f85afddfc0fc6255ee2620c5c580ad0cbc66799e575e3f2841439a0b75002862e89ac9bead0be5ed56e12
>
> commons-dbutils-1.8-javadoc.jar.asc=a6ab07ac09dd3a87d3141dbfc369abf2fbc561ec0b6f77b0ed1581026eb7b8aa238bc22b5023cb2cde1c72d9b709563af4e7f7898956aab9465d8745747b6cfb
>
> commons-dbutils-1.8-sources.jar=7c007cdffb6f734b6a0d702b317e9c9713a05c41a9a9a151fca95f04fbc5565a35129e7c0faabd3b6b12be106eed7029a2b007cdcc4b0d6e858bcb2505fa9f76
>
> commons-dbutils-1.8-sources.jar.asc=87674fb7aa05932c9663e9111b86742a2c2202aec11d7f561c6a3e113f3eb1e42e95134e84ecad63358025a6465a6d495aa739ce5ed34438bc8a2b51be29b013
>
> commons-dbutils-1.8-src.tar.gz=5efd90dc08b504ec7d2951a974a6ad329ab9ec4b71199a1a13386029c59d0fd65d37ba8dc6ddca6fdc35a96d262047eeedf7f4cd96ad1241190a927d656a7c87
>
> commons-dbutils-1.8-src.tar.gz.asc=a2eb7c80baace54415bc8bc7d9b250721896f3e949a54eec6c222d8cff367eeea00a6d0c3430f08e3b65ceabfbcdded7e8455a70081f4326d8b5abb09bef8378
>
> commons-dbutils-1.8-src.zip=4a5627ef0a5125bae56a077ab6489f44042ec84687574920ea173bbc9f23fa88983944822f10577f7cff5d54a885d98d0c34e71abeafe568f63396453ac491a0
>
> commons-dbutils-1.8-src.zip.asc=87923a6d27698de183b4fe37bd23e2249ab45074c597eef01e9d9de57921151d0d774a6ec0eb84528ede3dfda46377268e6322ec27724c1cbe5f9f98ac1e1d9d
>
> commons-dbutils-1.8-test-sources.jar=86230141a19dff2276a9f7e3a1806c7ce69ea496b9aee5ed6a8afb4f084f71436b2769e49dfe798611aa03eda17897128dae6516cdbb2a00f3a04e9ec9a14ff2
>
> commons-dbutils-1.8-test-sources.jar.asc=0b41adf88b654a87e4857e59d58399cd94198525d038b9abd8977cc61891321315bbc2739909bf4d253533eb8ef03b9151c758227b801f002b57efdd9dca12b0
>
> commons-dbutils-1.8-tests.jar=0ed0b578b593fcd51f96ac7d9f421ded992a0eec6e038c2c6bbf4629f38aec7defe90f5b634ce59c6706d05c7e5b79a4e7d525e0d77e9e8447531adcb0ad4a55
>
> commons-dbutils-1.8-tests.jar.asc=17572acb7a2fd68d641bd46e33be243f25258ce4762eeff79e9e023db7ebfda1548e06b49d5317dcec21d59f8e9c9b5a9931a284875f62344be7b39c888bb60b
>
> 

Re: [VOTE] Release Apache Commons DbUtils 1.8 based on RC1

2020-01-06 Thread Gary Gregory
Hi Carl,

The Javadocs need cleaning up: There are {@inheritDoc} where none should be.

Gary


On Sun, Jan 5, 2020 at 2:13 AM Carl Hall  wrote:

> We have fixed quite a few bugs and added some significant enhancements
> since Apache Commons DbUtils 1.7 was released, so I would like to release
> Apache Commons DbUtils 1.8.
>
> Apache Commons DbUtils 1.8 RC1 is available for review here:
> https://dist.apache.org/repos/dist/dev/commons/dbutils/1.8-RC1 (svn
> revision 37461)
>
> The Git tag DBUTILS_1_8_RC1 commit for this RC is
> 727eef5f138a1be1f4365e2b73740949504e0e36 which you can browse here:
>
> https://gitbox.apache.org/repos/asf?p=commons-dbutils.git;a=commit;h=727eef5f138a1be1f4365e2b73740949504e0e36
>
> You may checkout this tag using:
> git clone https://gitbox.apache.org/repos/asf/commons-dbutils.git
> --branch DBUTILS_1_8_RC1 commons-dbutils-1.8-RC1
>
> Maven artifacts are here:
>
> https://repository.apache.org/content/repositories/orgapachecommons-1484/commons-dbutils/commons-dbutils/1.8/
>
> These are the artifacts and their hashes:
>
> #Release SHA-512s
> #Sat Jan 04 22:36:52 PST 2020
>
> commons-dbutils-1.8-bin.tar.gz=8df85fcc2d264e237b3d912b53e4c7cb6c5da143256fc6c1e954770bbcddee1a2c9dd18aa52e165221d136b22809496581fb07cada3528d135be29934ba93519
>
> commons-dbutils-1.8-bin.tar.gz.asc=69953438530416c10f44bb552c67f618cb0e0ab0db88743a5d99818ce1612eec9cd12a6a0d06d204495cc856381e4f50283f0fa38dfd138de89fdb93345c7bec
>
> commons-dbutils-1.8-bin.zip=550d1e2b03b8419ad903848100f11a8b74271802844286a0040a32c1aa8cf7e34af6a8e95bb13fe5099b9c6e6fe65c55001810dd381d11c688760dcc4a0a81b5
>
> commons-dbutils-1.8-bin.zip.asc=0bd928a65147f399da418bf3e14cb34510dd1936468df41d845f71fb15c73aa2bbd61d28db5f9f3bdb099ae51d56a41f620bf66e504f8d70e59aaede04653ec3
>
> commons-dbutils-1.8-javadoc.jar=7aa230e2fdcfe365ad091cdff6ec00eeb965980a431f85afddfc0fc6255ee2620c5c580ad0cbc66799e575e3f2841439a0b75002862e89ac9bead0be5ed56e12
>
> commons-dbutils-1.8-javadoc.jar.asc=a6ab07ac09dd3a87d3141dbfc369abf2fbc561ec0b6f77b0ed1581026eb7b8aa238bc22b5023cb2cde1c72d9b709563af4e7f7898956aab9465d8745747b6cfb
>
> commons-dbutils-1.8-sources.jar=7c007cdffb6f734b6a0d702b317e9c9713a05c41a9a9a151fca95f04fbc5565a35129e7c0faabd3b6b12be106eed7029a2b007cdcc4b0d6e858bcb2505fa9f76
>
> commons-dbutils-1.8-sources.jar.asc=87674fb7aa05932c9663e9111b86742a2c2202aec11d7f561c6a3e113f3eb1e42e95134e84ecad63358025a6465a6d495aa739ce5ed34438bc8a2b51be29b013
>
> commons-dbutils-1.8-src.tar.gz=5efd90dc08b504ec7d2951a974a6ad329ab9ec4b71199a1a13386029c59d0fd65d37ba8dc6ddca6fdc35a96d262047eeedf7f4cd96ad1241190a927d656a7c87
>
> commons-dbutils-1.8-src.tar.gz.asc=a2eb7c80baace54415bc8bc7d9b250721896f3e949a54eec6c222d8cff367eeea00a6d0c3430f08e3b65ceabfbcdded7e8455a70081f4326d8b5abb09bef8378
>
> commons-dbutils-1.8-src.zip=4a5627ef0a5125bae56a077ab6489f44042ec84687574920ea173bbc9f23fa88983944822f10577f7cff5d54a885d98d0c34e71abeafe568f63396453ac491a0
>
> commons-dbutils-1.8-src.zip.asc=87923a6d27698de183b4fe37bd23e2249ab45074c597eef01e9d9de57921151d0d774a6ec0eb84528ede3dfda46377268e6322ec27724c1cbe5f9f98ac1e1d9d
>
> commons-dbutils-1.8-test-sources.jar=86230141a19dff2276a9f7e3a1806c7ce69ea496b9aee5ed6a8afb4f084f71436b2769e49dfe798611aa03eda17897128dae6516cdbb2a00f3a04e9ec9a14ff2
>
> commons-dbutils-1.8-test-sources.jar.asc=0b41adf88b654a87e4857e59d58399cd94198525d038b9abd8977cc61891321315bbc2739909bf4d253533eb8ef03b9151c758227b801f002b57efdd9dca12b0
>
> commons-dbutils-1.8-tests.jar=0ed0b578b593fcd51f96ac7d9f421ded992a0eec6e038c2c6bbf4629f38aec7defe90f5b634ce59c6706d05c7e5b79a4e7d525e0d77e9e8447531adcb0ad4a55
>
> commons-dbutils-1.8-tests.jar.asc=17572acb7a2fd68d641bd46e33be243f25258ce4762eeff79e9e023db7ebfda1548e06b49d5317dcec21d59f8e9c9b5a9931a284875f62344be7b39c888bb60b
>
> commons-dbutils-1.8.jar.asc=9f67b415e73b3f36f997e30a32c76fcc2c601e528930c12254f0c02ef3f2d996d3926ecd93ce71d81b2df0ecac37295f4bfe806e8cf9bb5a9be4c0fd7cdcb268
>
> commons-dbutils-1.8.pom.asc=9d1b7e2dc1b7717ee9274dac1d763d2257bfa8759d86ba2bd3948fb3f298df4633824abc680fc980d99e003157c6d359e6d325691f771ba4d6fb55353d5ae1e9
>
>
> I have tested this with ***'mvn clean install site'*** using:
> ***
> Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f)
> Maven home: /usr/local/Cellar/maven/3.6.3/libexec
> Java version: 1.8.0_144, vendor: Oracle Corporation, runtime:
> /Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/jre
> Default locale: en_US, platform encoding: UTF-8
> OS name: "mac os x", version: "10.15.2", arch: "x86_64", family: "mac"
> ***
>
> Details of changes since 1.7 are in the release notes:
>
> https://dist.apache.org/repos/dist/dev/commons/dbutils/1.8-RC1/RELEASE-NOTES.txt
>
> https://dist.apache.org/repos/dist/dev/commons/dbutils/1.8-RC1/site/changes-report.html
>
> Site:
>
> https://dist.apache.org/repos/dist/dev/commons/dbutils/1.8-RC1/site/index.html
> (note some *relative* links are broken and the 1.8 directories are not
> yet created - these will be OK 

Re: [VOTE] Release Apache Commons DbUtils 1.8 based on RC1

2020-01-06 Thread Gary Gregory
Carl,

Release notes should and announcements must contain a link to the download
page. I use the release notes as the text for the announcement email to hit
2 birds with one stone.

IOW, add this to the bottom of each release notes section:

Download page:
https://commons.apache.org/proper/commons-dbutils/download_dbutils.cgi

You can update the release note template to get this 'for free'.

I also think it best if the release notes are cumulative. IOW, prepend new
release notes to the top of the file.

This is great for updating from version N - 5 to N for example, it lets you
see all that happened from the release you are on to a newer release.

I am not asking that you rebuild the whole history for the file, just that
at least you do not clobber what's already in there ;-)

TY!
Gary

On Sun, Jan 5, 2020 at 2:13 AM Carl Hall  wrote:

> We have fixed quite a few bugs and added some significant enhancements
> since Apache Commons DbUtils 1.7 was released, so I would like to release
> Apache Commons DbUtils 1.8.
>
> Apache Commons DbUtils 1.8 RC1 is available for review here:
> https://dist.apache.org/repos/dist/dev/commons/dbutils/1.8-RC1 (svn
> revision 37461)
>
> The Git tag DBUTILS_1_8_RC1 commit for this RC is
> 727eef5f138a1be1f4365e2b73740949504e0e36 which you can browse here:
>
> https://gitbox.apache.org/repos/asf?p=commons-dbutils.git;a=commit;h=727eef5f138a1be1f4365e2b73740949504e0e36
>
> You may checkout this tag using:
> git clone https://gitbox.apache.org/repos/asf/commons-dbutils.git
> --branch DBUTILS_1_8_RC1 commons-dbutils-1.8-RC1
>
> Maven artifacts are here:
>
> https://repository.apache.org/content/repositories/orgapachecommons-1484/commons-dbutils/commons-dbutils/1.8/
>
> These are the artifacts and their hashes:
>
> #Release SHA-512s
> #Sat Jan 04 22:36:52 PST 2020
>
> commons-dbutils-1.8-bin.tar.gz=8df85fcc2d264e237b3d912b53e4c7cb6c5da143256fc6c1e954770bbcddee1a2c9dd18aa52e165221d136b22809496581fb07cada3528d135be29934ba93519
>
> commons-dbutils-1.8-bin.tar.gz.asc=69953438530416c10f44bb552c67f618cb0e0ab0db88743a5d99818ce1612eec9cd12a6a0d06d204495cc856381e4f50283f0fa38dfd138de89fdb93345c7bec
>
> commons-dbutils-1.8-bin.zip=550d1e2b03b8419ad903848100f11a8b74271802844286a0040a32c1aa8cf7e34af6a8e95bb13fe5099b9c6e6fe65c55001810dd381d11c688760dcc4a0a81b5
>
> commons-dbutils-1.8-bin.zip.asc=0bd928a65147f399da418bf3e14cb34510dd1936468df41d845f71fb15c73aa2bbd61d28db5f9f3bdb099ae51d56a41f620bf66e504f8d70e59aaede04653ec3
>
> commons-dbutils-1.8-javadoc.jar=7aa230e2fdcfe365ad091cdff6ec00eeb965980a431f85afddfc0fc6255ee2620c5c580ad0cbc66799e575e3f2841439a0b75002862e89ac9bead0be5ed56e12
>
> commons-dbutils-1.8-javadoc.jar.asc=a6ab07ac09dd3a87d3141dbfc369abf2fbc561ec0b6f77b0ed1581026eb7b8aa238bc22b5023cb2cde1c72d9b709563af4e7f7898956aab9465d8745747b6cfb
>
> commons-dbutils-1.8-sources.jar=7c007cdffb6f734b6a0d702b317e9c9713a05c41a9a9a151fca95f04fbc5565a35129e7c0faabd3b6b12be106eed7029a2b007cdcc4b0d6e858bcb2505fa9f76
>
> commons-dbutils-1.8-sources.jar.asc=87674fb7aa05932c9663e9111b86742a2c2202aec11d7f561c6a3e113f3eb1e42e95134e84ecad63358025a6465a6d495aa739ce5ed34438bc8a2b51be29b013
>
> commons-dbutils-1.8-src.tar.gz=5efd90dc08b504ec7d2951a974a6ad329ab9ec4b71199a1a13386029c59d0fd65d37ba8dc6ddca6fdc35a96d262047eeedf7f4cd96ad1241190a927d656a7c87
>
> commons-dbutils-1.8-src.tar.gz.asc=a2eb7c80baace54415bc8bc7d9b250721896f3e949a54eec6c222d8cff367eeea00a6d0c3430f08e3b65ceabfbcdded7e8455a70081f4326d8b5abb09bef8378
>
> commons-dbutils-1.8-src.zip=4a5627ef0a5125bae56a077ab6489f44042ec84687574920ea173bbc9f23fa88983944822f10577f7cff5d54a885d98d0c34e71abeafe568f63396453ac491a0
>
> commons-dbutils-1.8-src.zip.asc=87923a6d27698de183b4fe37bd23e2249ab45074c597eef01e9d9de57921151d0d774a6ec0eb84528ede3dfda46377268e6322ec27724c1cbe5f9f98ac1e1d9d
>
> commons-dbutils-1.8-test-sources.jar=86230141a19dff2276a9f7e3a1806c7ce69ea496b9aee5ed6a8afb4f084f71436b2769e49dfe798611aa03eda17897128dae6516cdbb2a00f3a04e9ec9a14ff2
>
> commons-dbutils-1.8-test-sources.jar.asc=0b41adf88b654a87e4857e59d58399cd94198525d038b9abd8977cc61891321315bbc2739909bf4d253533eb8ef03b9151c758227b801f002b57efdd9dca12b0
>
> commons-dbutils-1.8-tests.jar=0ed0b578b593fcd51f96ac7d9f421ded992a0eec6e038c2c6bbf4629f38aec7defe90f5b634ce59c6706d05c7e5b79a4e7d525e0d77e9e8447531adcb0ad4a55
>
> commons-dbutils-1.8-tests.jar.asc=17572acb7a2fd68d641bd46e33be243f25258ce4762eeff79e9e023db7ebfda1548e06b49d5317dcec21d59f8e9c9b5a9931a284875f62344be7b39c888bb60b
>
> commons-dbutils-1.8.jar.asc=9f67b415e73b3f36f997e30a32c76fcc2c601e528930c12254f0c02ef3f2d996d3926ecd93ce71d81b2df0ecac37295f4bfe806e8cf9bb5a9be4c0fd7cdcb268
>
> commons-dbutils-1.8.pom.asc=9d1b7e2dc1b7717ee9274dac1d763d2257bfa8759d86ba2bd3948fb3f298df4633824abc680fc980d99e003157c6d359e6d325691f771ba4d6fb55353d5ae1e9
>
>
> I have tested this with ***'mvn clean install site'*** using:
> ***
> Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f)
> Maven home: /usr/local/Cellar/maven/3.6.3/libexec
> 

JDK 14 Early Access build 30 & JDK 15 Early Access build 4 are available.

2020-01-06 Thread Rory O'Donnell

Hi Benedikt,

Happy New Year !

*Per the JDK 14 schedule , we are now in Rampdown Phase One*

*Please advise if you have found any issues while testing the latest 
Early Access build.

*

 * The overall feature set is frozen.
 o No further JEPs will be targeted to this release
 o For more details , see Mark Reinhold's email to jdk-dev mailing
   list [1]

*JDK 14 **Early Access build 30 **is available**at : - jdk.java.net/14/*

 * These early-access , open-source builds are provided under the
 o GNU General Public License, version 2, with the Classpath
   Exception .
 * Release notes
 o https://jdk.java.net/14/release-notes
 * Recent fixes that might be of interest
 o Build 29:
 + JDK-8233228: Disable weak named curves by default in TLS,
   CertPath, and Signed JAR

 o Build 28:
 + JDK-8234049: Implementation of Memory Access API (Incubator)
 + JDK-8235668: LineNumberReader#getLineNumber() returns wrong
   line number (one fewer) in Lucene test
 # Reported by Apache Lucene

*JDK 15 **Early Access build 4 **is available**at : - jdk.java.net/15/*

 * These early-access , open-source builds are provided under the
 o GNU General Public License, version 2, with the Classpath
   Exception .
 * Release notes
 o http://jdk.java.net/15/release-notes

The Quality Outreach Report for Decemeber 2019 was published since the 
last email


 * 
https://wiki.openjdk.java.net/display/quality/Quality+Outreach+report+December+2019
 * Many thanks to all those who contributed to testing, logging bugs
   etc against the Early Access builds.

*
*

Rgds, Rory

[1] 
https://mail.openjdk.java.net/pipermail/jdk-dev/2019-December/003795.html


--
Rgds, Rory O'Donnell
Quality Engineering Manager
Oracle EMEA, Dublin, Ireland



Re: [VOTE] Release Apache Commons DbUtils 1.8 based on RC1

2020-01-06 Thread Bruno P. Kinoshita
 Thanks Gary. @Carl, I think it might be better to prepare a new release?

FWIW, I tested on JDK 13 Ubuntu LTS, and it built successfully. And the reports 
look good too (checkstyle went down from 591 to 4!). So I think everything else 
in this RC looked fine.

Cheers
Bruno

On Monday, 6 January 2020, 2:05:17 am NZDT, Gary Gregory 
 wrote:  
 
 Good find Bruno! That a blocker IMO, simple to fix at least. I should have
time to review over the next day or so.

Gary

On Sun, Jan 5, 2020 at 4:49 AM Bruno P. Kinoshita
 wrote:

>  Hi,
>
>
> Not sure if a blocker, but the NOTICE.txt files need the 2019 -> 2020
> update. Will have time to review this one tomorrow NZ time I think.
>
>
> CheersBruno
>
>    On Sunday, 5 January 2020, 8:13:51 pm NZDT, Carl Hall <
> thecarlh...@apache.org> wrote:
>
>  We have fixed quite a few bugs and added some significant enhancements
> since Apache Commons DbUtils 1.7 was released, so I would like to release
> Apache Commons DbUtils 1.8.
>
> Apache Commons DbUtils 1.8 RC1 is available for review here:
>    https://dist.apache.org/repos/dist/dev/commons/dbutils/1.8-RC1 (svn
> revision 37461)
>
> The Git tag DBUTILS_1_8_RC1 commit for this RC is
> 727eef5f138a1be1f4365e2b73740949504e0e36 which you can browse here:
>
> https://gitbox.apache.org/repos/asf?p=commons-dbutils.git;a=commit;h=727eef5f138a1be1f4365e2b73740949504e0e36
>
> You may checkout this tag using:
>    git clone https://gitbox.apache.org/repos/asf/commons-dbutils.git
> --branch DBUTILS_1_8_RC1 commons-dbutils-1.8-RC1
>
> Maven artifacts are here:
>
> https://repository.apache.org/content/repositories/orgapachecommons-1484/commons-dbutils/commons-dbutils/1.8/
>
> These are the artifacts and their hashes:
>
> #Release SHA-512s
> #Sat Jan 04 22:36:52 PST 2020
>
> commons-dbutils-1.8-bin.tar.gz=8df85fcc2d264e237b3d912b53e4c7cb6c5da143256fc6c1e954770bbcddee1a2c9dd18aa52e165221d136b22809496581fb07cada3528d135be29934ba93519
>
> commons-dbutils-1.8-bin.tar.gz.asc=69953438530416c10f44bb552c67f618cb0e0ab0db88743a5d99818ce1612eec9cd12a6a0d06d204495cc856381e4f50283f0fa38dfd138de89fdb93345c7bec
>
> commons-dbutils-1.8-bin.zip=550d1e2b03b8419ad903848100f11a8b74271802844286a0040a32c1aa8cf7e34af6a8e95bb13fe5099b9c6e6fe65c55001810dd381d11c688760dcc4a0a81b5
>
> commons-dbutils-1.8-bin.zip.asc=0bd928a65147f399da418bf3e14cb34510dd1936468df41d845f71fb15c73aa2bbd61d28db5f9f3bdb099ae51d56a41f620bf66e504f8d70e59aaede04653ec3
>
> commons-dbutils-1.8-javadoc.jar=7aa230e2fdcfe365ad091cdff6ec00eeb965980a431f85afddfc0fc6255ee2620c5c580ad0cbc66799e575e3f2841439a0b75002862e89ac9bead0be5ed56e12
>
> commons-dbutils-1.8-javadoc.jar.asc=a6ab07ac09dd3a87d3141dbfc369abf2fbc561ec0b6f77b0ed1581026eb7b8aa238bc22b5023cb2cde1c72d9b709563af4e7f7898956aab9465d8745747b6cfb
>
> commons-dbutils-1.8-sources.jar=7c007cdffb6f734b6a0d702b317e9c9713a05c41a9a9a151fca95f04fbc5565a35129e7c0faabd3b6b12be106eed7029a2b007cdcc4b0d6e858bcb2505fa9f76
>
> commons-dbutils-1.8-sources.jar.asc=87674fb7aa05932c9663e9111b86742a2c2202aec11d7f561c6a3e113f3eb1e42e95134e84ecad63358025a6465a6d495aa739ce5ed34438bc8a2b51be29b013
>
> commons-dbutils-1.8-src.tar.gz=5efd90dc08b504ec7d2951a974a6ad329ab9ec4b71199a1a13386029c59d0fd65d37ba8dc6ddca6fdc35a96d262047eeedf7f4cd96ad1241190a927d656a7c87
>
> commons-dbutils-1.8-src.tar.gz.asc=a2eb7c80baace54415bc8bc7d9b250721896f3e949a54eec6c222d8cff367eeea00a6d0c3430f08e3b65ceabfbcdded7e8455a70081f4326d8b5abb09bef8378
>
> commons-dbutils-1.8-src.zip=4a5627ef0a5125bae56a077ab6489f44042ec84687574920ea173bbc9f23fa88983944822f10577f7cff5d54a885d98d0c34e71abeafe568f63396453ac491a0
>
> commons-dbutils-1.8-src.zip.asc=87923a6d27698de183b4fe37bd23e2249ab45074c597eef01e9d9de57921151d0d774a6ec0eb84528ede3dfda46377268e6322ec27724c1cbe5f9f98ac1e1d9d
>
> commons-dbutils-1.8-test-sources.jar=86230141a19dff2276a9f7e3a1806c7ce69ea496b9aee5ed6a8afb4f084f71436b2769e49dfe798611aa03eda17897128dae6516cdbb2a00f3a04e9ec9a14ff2
>
> commons-dbutils-1.8-test-sources.jar.asc=0b41adf88b654a87e4857e59d58399cd94198525d038b9abd8977cc61891321315bbc2739909bf4d253533eb8ef03b9151c758227b801f002b57efdd9dca12b0
>
> commons-dbutils-1.8-tests.jar=0ed0b578b593fcd51f96ac7d9f421ded992a0eec6e038c2c6bbf4629f38aec7defe90f5b634ce59c6706d05c7e5b79a4e7d525e0d77e9e8447531adcb0ad4a55
>
> commons-dbutils-1.8-tests.jar.asc=17572acb7a2fd68d641bd46e33be243f25258ce4762eeff79e9e023db7ebfda1548e06b49d5317dcec21d59f8e9c9b5a9931a284875f62344be7b39c888bb60b
>
> commons-dbutils-1.8.jar.asc=9f67b415e73b3f36f997e30a32c76fcc2c601e528930c12254f0c02ef3f2d996d3926ecd93ce71d81b2df0ecac37295f4bfe806e8cf9bb5a9be4c0fd7cdcb268
>
> commons-dbutils-1.8.pom.asc=9d1b7e2dc1b7717ee9274dac1d763d2257bfa8759d86ba2bd3948fb3f298df4633824abc680fc980d99e003157c6d359e6d325691f771ba4d6fb55353d5ae1e9
>
>
> I have tested this with ***'mvn clean install site'*** using:
> ***
> Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f)
> Maven home: /usr/local/Cellar/maven/3.6.3/libexec
> Java version: 1.8.0_144, vendor: Oracle 

Re: [VFS] Release 2.5.1 to address incompatibility

2020-01-06 Thread Bruno P. Kinoshita
 Uh, glad it was reported soon and you can cut a new release Gary. Will try to 
monitor inbox to review the release once it's out.
CheersBruno

On Monday, 6 January 2020, 2:07:19 am NZDT, Gary Gregory 
 wrote:  
 
 Hi All:

It looks like Commons VFS 2.5.0 contains an incompatibility for existing
provider implementations.

Therefore, an RC for 2.5.1 will be coming soon (maybe tonight.)

https://issues.apache.org/jira/browse/VFS-750

Gary