Re: Preparing a release

2020-12-27 Thread Lukasz Lenart
Sorry, I was not subscribed to the list. On 2020/12/25 01:18:00, Gary Gregory wrote: > There might be a lot more to consider here since this would be a major > release. Are there breaking API changes we want to make? Are there > deprecated APIs we want to drop? > > I see a lot of errors fly by

Re: Preparing a release

2020-12-27 Thread Bernd Eckenfels
Hello Lukasz, I would say if the maven release plugin and the maven pgp plug-ins work (on your system and for the Pom) and the project builds on al l supported platforms, go for it. If you have your ASF login and thenPgpg key in the Keys file you would meet the criteria. I am not sure about ba

[lang] ObjectUtils enhancement - consumer with non-null value

2020-12-27 Thread Bindul Bhowmik
Hi, I would like to propose an enhancement to the ObjectUtils class in lang: Background: I have seen multiple places in code where we have to check if a value is null before using it in a setter or other method, like: if (valueX != null) { bean.setValue(valueX); someObject.com