Re: [LANG] FastDateParser/Printer broken

2015-03-13 Thread Benedikt Ritter
2015-03-13 19:29 GMT+01:00 Benedikt Ritter brit...@apache.org: Hi, just a heads up. After updating to the latest trunk I get: Failed tests: FastDateFormat_PrinterTestFastDatePrinterTest.testCalendarTimezoneRespected:282 expected:2:24PM A[D]T but was:2:24PM A[S]T

RE: [LANG] Next steps

2015-03-13 Thread Gary Gregory
I like you'd plan!  Gary :-) div Original message /divdivFrom: Benedikt Ritter brit...@apache.org /divdivDate:03/13/2015 11:17 (GMT-08:00) /divdivTo: Commons Developers List dev@commons.apache.org /divdivCc: /divdivSubject: [LANG] Next steps /divdiv /divHi all, I just want

Re: [VOTE] Release BCEL 6.0 based on RC3

2015-03-13 Thread Sarah Murray
It's absurd to have a library where no released version works on any supported version of Java. End of story On Wed, Mar 11, 2015 at 7:04 PM, sebb seb...@gmail.com wrote: On 12 March 2015 at 01:25, Niall Pemberton niall.pember...@gmail.com wrote: On Fri, Mar 6, 2015 at 7:42 PM, sarahkm1972

[LANG] Next steps

2015-03-13 Thread Benedikt Ritter
Hi all, I just want to give you an update on what I'm planning next for [lang]. - I'll review the pending patches and commit what is ready to be committed. - After that I'll cut 3.4 RC1 - After that I'll start the git migration (I hope that I have information about the github badges [1] until

[LANG] FastDateParser/Printer broken

2015-03-13 Thread Benedikt Ritter
Hi, just a heads up. After updating to the latest trunk I get: Failed tests: FastDateFormat_PrinterTestFastDatePrinterTest.testCalendarTimezoneRespected:282 expected:2:24PM A[D]T but was:2:24PM A[S]T FastDatePrinterTest.testCalendarTimezoneRespected:282 expected:2:24PM A[D]T but was:2:24PM

[GitHub] commons-lang pull request: LANG-877 removes unnecessary string all...

2015-03-13 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/commons-lang/pull/49 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature

Re: [jira] [Created] (VALIDATOR-361) UrlValidator rejects new gTLDs with more than 4 characters,

2015-03-13 Thread sebb
On 13 March 2015 at 20:34, Benedikt Ritter brit...@apache.org wrote: Hooray, the UrlValidator again... seriously, what are we going to do about this? We can push a new release, every time the TLD list gets updated. It's pretty easy to update the TLD list, but this happens quite frequently.

Fwd: [jira] [Created] (VALIDATOR-361) UrlValidator rejects new gTLDs with more than 4 characters,

2015-03-13 Thread Benedikt Ritter
Hooray, the UrlValidator again... seriously, what are we going to do about this? We can push a new release, every time the TLD list gets updated. -- Forwarded message -- From: Hiroyuki, Ohnaka (JIRA) j...@apache.org Date: 2015-03-13 19:10 GMT+01:00 Subject: [jira] [Created]

Re: [VOTE] Release BCEL 6.0 based on RC3

2015-03-13 Thread sebb
On 13 March 2015 at 17:40, Sarah Murray sarahkm1...@gmail.com wrote: It's absurd to have a library where no released version works on any supported version of Java. End of story Well, there are 2 solutions to that. 1) BCEL is abandoned/retired. 2) BCEL is updated to support recent versions of

[GitHub] commons-lang pull request: Update maven-pmd-plugin to 3.4

2015-03-13 Thread mkordas
GitHub user mkordas opened a pull request: https://github.com/apache/commons-lang/pull/53 Update maven-pmd-plugin to 3.4 You can merge this pull request into a Git repository by running: $ git pull https://github.com/mkordas/commons-lang update_maven_pmd_plugin Alternatively

[GitHub] commons-lang pull request: Update maven-checkstyle-plugin to 2.14

2015-03-13 Thread mkordas
GitHub user mkordas opened a pull request: https://github.com/apache/commons-lang/pull/55 Update maven-checkstyle-plugin to 2.14 You can merge this pull request into a Git repository by running: $ git pull https://github.com/mkordas/commons-lang

[GitHub] commons-lang pull request: Update maven-antrun-plugin to 1.8

2015-03-13 Thread mkordas
GitHub user mkordas opened a pull request: https://github.com/apache/commons-lang/pull/52 Update maven-antrun-plugin to 1.8 You can merge this pull request into a Git repository by running: $ git pull https://github.com/mkordas/commons-lang update_maven_antrun_plugin

[GitHub] commons-lang pull request: Update org.easymock:easymock to 3.3.1

2015-03-13 Thread mkordas
GitHub user mkordas opened a pull request: https://github.com/apache/commons-lang/pull/54 Update org.easymock:easymock to 3.3.1 You can merge this pull request into a Git repository by running: $ git pull https://github.com/mkordas/commons-lang update_org_easymock_easymock

[GitHub] commons-lang pull request: LANG-1093 - Add ClassUtils.getAbbreviat...

2015-03-13 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/commons-lang/pull/48 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature

[GitHub] commons-lang pull request: LANG-877 removes unnecessary string all...

2015-03-13 Thread CodingFabian
GitHub user CodingFabian opened a pull request: https://github.com/apache/commons-lang/pull/49 LANG-877 removes unnecessary string allocation and improves hex writing. Removes temporary allocation of char arrays and Strings from unicode escaping. This roughly doubles the

[GitHub] commons-lang pull request: LANG-990 support appending CharBuffer a...

2015-03-13 Thread CodingFabian
GitHub user CodingFabian opened a pull request: https://github.com/apache/commons-lang/pull/51 LANG-990 support appending CharBuffer and use specialized methods StrBuilder accepts CharSequences as well as specialized instances like String, StringBuffer. If you force one of these

[GitHub] commons-lang pull request: LANG-935 optimize lookup of translation...

2015-03-13 Thread CodingFabian
GitHub user CodingFabian opened a pull request: https://github.com/apache/commons-lang/pull/50 LANG-935 optimize lookup of translations by LookupTranslator The previous implementation retrieved substrings from the input and checked if it had an replacement for it. The problem