Re: CXF 3.1.18 release

2018-11-30 Thread Colm O hEigeartaigh
Is there any fix you particularly need? There are only 5 JIRAs fixed for
it...

Colm.

On Fri, Nov 30, 2018 at 1:43 AM Jim Ma  wrote:

> There are couple of fixes since we released cxf 3.1.17 two months ago. Any
> thoughts/plan to cut a  cxf 3.1.18 release in the early of December ?
>
> Thanks,
> Jim
>


-- 
Colm O hEigeartaigh

Talend Community Coder
http://coders.talend.com


JDK 12 build 22 is now available at : - jdk.java.net/12/

2018-11-30 Thread Rory O'Donnell

Hi Andriy,

*NOTE:- *The JDK 12 schedule  
rampdown phase 1 of the release is coming up in a few weeks on Dec. 13, 
2018.


**

*JDK 12 Early Access build 22 **is now available **at : - jdk.java.net/12/*

 * Release Note updates since last email *
   *
 o Build 21 - Deprecating the default keytool -keyalg value
   (JDK-8212003)
 o Build 21 - Change to X25519 and X448 encoded private key format
   (JDK-8213363)
 o Build 20 - New command-line flag for more extensive error
   reporting in crash logs  (JDK-8211845)
 o Build 20 -Initial Value of user.timezone System Property Changed
   (JDK-8185496)

 * JEPs proposed for JDK 12 :
 o JEP 189: Shenandoah: A Low-Pause-Time Garbage
   Collector(Experimental) 
 o JEP 334: JVM Constants API 
 o JEP 344: Abortable Mixed Collections for G1
   
 o JEP 346: Promptly Return Unused Committed Memory from G1
   

 * JEPs targeted to JDK 12, so far
 o JEP 230: Microbenchmark Suite 
 o JEP 325: Switch Expressions (Preview)
   
 o JEP 326: Raw String Literals (Preview)
   
 o JEP 340: One AArch64 Port, Not Two
   
 o JEP 341: Default CDS Archives 

Rgds,Rory

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



[GitHub] reta commented on issue #477: CXF-7908 - Allow to customise JAXRS server in spring boot when using …

2018-11-30 Thread GitBox
reta commented on issue #477: CXF-7908 - Allow to customise JAXRS server in 
spring boot when using …
URL: https://github.com/apache/cxf/pull/477#issuecomment-443181565
 
 
   @mswiderski you are absolutely right, I missed that (the `@Bean` annotation 
mislead me). Than your approach is certainly in the right direction. What 
concerns me is the presence of should-be-well-known bean name, like 
`jaxRsServerConfiguration`. I believe that 
`@ConditionalOnMissingBean(Server.class)` -> `@ConditionalOnMissingBean(name = 
"jaxRsServerConfiguration")` should have the same effect, what do you think?
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] reta edited a comment on issue #477: CXF-7908 - Allow to customise JAXRS server in spring boot when using …

2018-11-30 Thread GitBox
reta edited a comment on issue #477: CXF-7908 - Allow to customise JAXRS server 
in spring boot when using …
URL: https://github.com/apache/cxf/pull/477#issuecomment-443181565
 
 
   @mswiderski you are absolutely right, I missed that (the `@Bean` annotation 
mislead me). Than your approach is certainly in the right direction. What 
concerns me is the presence of should-be-well-known bean name, like 
`jaxRsServerConfiguration`. I believe that replacing 
`@ConditionalOnMissingBean(name = "jaxRsServerConfiguration")` -> 
`@ConditionalOnMissingBean(Server.class)`  should have the same effect, what do 
you think?
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


Re: JDK 12 build 22 is now available at : - jdk.java.net/12/

2018-11-30 Thread Andriy Redko
Hi Rory,

Thanks a lot for the update. Coincidentally, just yesterday we have got our 
JDK12 builds 
stable as well https://builds.apache.org/job/CXF-Master-JDK12/ so we could 
report a progress
here. I think we are at the point of intermittent communication & testing 
cycle, we have run
into one compiler issue which we fixed by changing the code a bit, looking good 
so far. 

Thank you.

Best Regards,
Andriy Redko

ROD> Hi Andriy,

ROD> *NOTE:- *The JDK 12 schedule  
ROD> rampdown phase 1 of the release is coming up in a few weeks on Dec. 13, 
ROD> 2018.

ROD> **

ROD> *JDK 12 Early Access build 22 **is now available **at : - jdk.java.net/12/*

ROD>   * Release Note updates since last email *
ROD> *
ROD>   o Build 21 - Deprecating the default keytool -keyalg value
ROD> (JDK-8212003)
ROD>   o Build 21 - Change to X25519 and X448 encoded private key format
ROD> (JDK-8213363)
ROD>   o Build 20 - New command-line flag for more extensive error
ROD> reporting in crash logs  (JDK-8211845)
ROD>   o Build 20 -Initial Value of user.timezone System Property Changed
ROD> (JDK-8185496)

ROD>   * JEPs proposed for JDK 12 :
ROD>   o JEP 189: Shenandoah: A Low-Pause-Time Garbage
ROD> Collector(Experimental) 
ROD>   o JEP 334: JVM Constants API 
ROD>   o JEP 344: Abortable Mixed Collections for G1
ROD> 
ROD>   o JEP 346: Promptly Return Unused Committed Memory from G1
ROD> 

ROD>   * JEPs targeted to JDK 12, so far
ROD>   o JEP 230: Microbenchmark Suite 
ROD>   o JEP 325: Switch Expressions (Preview)
ROD> 
ROD>   o JEP 326: Raw String Literals (Preview)
ROD> 
ROD>   o JEP 340: One AArch64 Port, Not Two
ROD> 
ROD>   o JEP 341: Default CDS Archives 

ROD> Rgds,Rory




Re: JDK 12 build 22 is now available at : - jdk.java.net/12/

2018-11-30 Thread Freeman Fang
Hi Andriy,

Yup, we are so good here.

Most failed tests are OSGi related, which is kinda expected, since Karaf 
doesn’t JDK12 yet.

Time to look at Karaf with JDK12 also, I will do it soon.
-
Freeman(Yue) Fang

Red Hat, Inc. 





> On Nov 30, 2018, at 8:48 PM, Andriy Redko  wrote:
> 
> Hi Rory,
> 
> Thanks a lot for the update. Coincidentally, just yesterday we have got our 
> JDK12 builds 
> stable as well https://builds.apache.org/job/CXF-Master-JDK12/ so we could 
> report a progress
> here. I think we are at the point of intermittent communication & testing 
> cycle, we have run
> into one compiler issue which we fixed by changing the code a bit, looking 
> good so far. 
> 
> Thank you.
> 
> Best Regards,
>Andriy Redko
> 
> ROD> Hi Andriy,
> 
> ROD> *NOTE:- *The JDK 12 schedule  
> ROD> rampdown phase 1 of the release is coming up in a few weeks on Dec. 13, 
> ROD> 2018.
> 
> ROD> **
> 
> ROD> *JDK 12 Early Access build 22 **is now available **at : - 
> jdk.java.net/12/*
> 
> ROD>   * Release Note updates since last email *
> ROD> *
> ROD>   o Build 21 - Deprecating the default keytool -keyalg value
> ROD> (JDK-8212003)
> ROD>   o Build 21 - Change to X25519 and X448 encoded private key format
> ROD> (JDK-8213363)
> ROD>   o Build 20 - New command-line flag for more extensive error
> ROD> reporting in crash logs  (JDK-8211845)
> ROD>   o Build 20 -Initial Value of user.timezone System Property Changed
> ROD> (JDK-8185496)
> 
> ROD>   * JEPs proposed for JDK 12 :
> ROD>   o JEP 189: Shenandoah: A Low-Pause-Time Garbage
> ROD> Collector(Experimental) 
> ROD>   o JEP 334: JVM Constants API 
> ROD>   o JEP 344: Abortable Mixed Collections for G1
> ROD> 
> ROD>   o JEP 346: Promptly Return Unused Committed Memory from G1
> ROD> 
> 
> ROD>   * JEPs targeted to JDK 12, so far
> ROD>   o JEP 230: Microbenchmark Suite 
> ROD>   o JEP 325: Switch Expressions (Preview)
> ROD> 
> ROD>   o JEP 326: Raw String Literals (Preview)
> ROD> 
> ROD>   o JEP 340: One AArch64 Port, Not Two
> ROD> 
> ROD>   o JEP 341: Default CDS Archives 
> 
> ROD> Rgds,Rory
> 
> 



Re: JDK 12 build 22 is now available at : - jdk.java.net/12/

2018-11-30 Thread Rory O'Donnell

Thanks for the update Andriy!

Rgds,Rory


On 30/11/2018 12:48, Andriy Redko wrote:

Hi Rory,

Thanks a lot for the update. Coincidentally, just yesterday we have got our 
JDK12 builds
stable as well https://builds.apache.org/job/CXF-Master-JDK12/ so we could 
report a progress
here. I think we are at the point of intermittent communication & testing 
cycle, we have run
into one compiler issue which we fixed by changing the code a bit, looking good 
so far.

Thank you.

Best Regards,
 Andriy Redko

ROD> Hi Andriy,

ROD> *NOTE:- *The JDK 12 schedule 
ROD> rampdown phase 1 of the release is coming up in a few weeks on Dec. 13,
ROD> 2018.

ROD> **

ROD> *JDK 12 Early Access build 22 **is now available **at : - jdk.java.net/12/*

ROD>   * Release Note updates since last email *
ROD> *
ROD>   o Build 21 - Deprecating the default keytool -keyalg value
ROD> (JDK-8212003)
ROD>   o Build 21 - Change to X25519 and X448 encoded private key format
ROD> (JDK-8213363)
ROD>   o Build 20 - New command-line flag for more extensive error
ROD> reporting in crash logs  (JDK-8211845)
ROD>   o Build 20 -Initial Value of user.timezone System Property Changed
ROD> (JDK-8185496)

ROD>   * JEPs proposed for JDK 12 :
ROD>   o JEP 189: Shenandoah: A Low-Pause-Time Garbage
ROD> Collector(Experimental) 
ROD>   o JEP 334: JVM Constants API 
ROD>   o JEP 344: Abortable Mixed Collections for G1
ROD> 
ROD>   o JEP 346: Promptly Return Unused Committed Memory from G1
ROD> 

ROD>   * JEPs targeted to JDK 12, so far
ROD>   o JEP 230: Microbenchmark Suite 
ROD>   o JEP 325: Switch Expressions (Preview)
ROD> 
ROD>   o JEP 326: Raw String Literals (Preview)
ROD> 
ROD>   o JEP 340: One AArch64 Port, Not Two
ROD> 
ROD>   o JEP 341: Default CDS Archives 

ROD> Rgds,Rory




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