Re: [dbcp] 1.3 binaries not listed correctly on download page

2019-08-06 Thread Gary Gregory
Yeah, I (or someone else) will fix that up when we are done with 2.7.0 RC1.

Gary

On Tue, Aug 6, 2019 at 6:56 AM Christopher Chavez 
wrote:

> The download page at
> https://commons.apache.org/proper/commons-dbcp/download_dbcp.cgi has a
> few invalid links to the binaries for the 1.3 release; it currently
> points to nonexistent files like
> commons-dbcp-1.3${commons.release.4.binary.suffix}.tar.gz
>
> Could someone please take a look?
>
> Thanks again,
>
> Christopher Chavez
>
> -
> To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
> For additional commands, e-mail: user-h...@commons.apache.org
>
>


[dbcp] 1.3 binaries not listed correctly on download page

2019-08-06 Thread Christopher Chavez

The download page at
https://commons.apache.org/proper/commons-dbcp/download_dbcp.cgi has a
few invalid links to the binaries for the 1.3 release; it currently
points to nonexistent files like
commons-dbcp-1.3${commons.release.4.binary.suffix}.tar.gz

Could someone please take a look?

Thanks again,

Christopher Chavez

-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



[lang3] StringUtils does not handle supplementary characters correctly

2019-08-06 Thread Jason Pickens
Hi,

I was just wondering whether StringUtils should be handling Unicode
supplementary characters correctly?

For example org.apache.commons.lang3.StringUtils#isAlphanumeric will return
false for code point 65536 which is actually a letter. This is because it
uses java.lang.CharSequence#charAt rather
than java.lang.CharSequence#codePoints. The former will only return the
high-surrogate code unit if that code point is a supplementary code point.


Cheers,

Jason