Re: [HEADS UP] Releases schedule: 4.2.10, 4.3.0.RC2, Winegrower 1.0

2020-09-02 Thread Jean-Baptiste Onofre
Hi,

Related to that, just FYI, I created a PR to evaluate the impact to use Felix 
HTTP for http feature as default and introduce pax-http-service optional.

I gonna ping Grzegorz to see how you move forward.

Regards
JB

> Le 2 sept. 2020 à 08:57, Grzegorz Grzybek  a écrit :
> 
> Thanks Romain! Answers inline:
> 
> pon., 31 sie 2020 o 08:57 Romain Manni-Bucau 
> napisał(a):
> 
>> Hi Greg,
>> 
>> AFAIK there is no "bye bye" ;).
>> ServletContainerInitializer are not in he whiteboard so you make them
>> behave as you want and any servlet container has 2 impl of the servlet
>> context, one for SCI and one for the runtime (where most registration
>> methods throw exceptions).
>> 
> 
> Good idea! I already have two implementations (per
> ServletContextHelper/HttpContext and per servlet/filter as depicted in
> "140.2.7 Relation to the Servlet Container") and indeed - it's great idea
> to pass different context to container initializer, while the existing
> context will be throwing UnsupportedOperationException - thanks!
> 
> 
>> So it means pax-web can keep being whiteboard++ (ie whiteboard + SCI) by
>> having these 2 (sadly custom) impl too and rewire it to the runtime
>> properly.
>> I fear you will need to do as for http felix impl - ie a filter chain
>> dispatcher - but this is not crazy and solves all the issues you
>> mentionned enabling to have all the desired features. Indeed, pax
>> wouldnt 1-1 delegate to the servlet container but it would be http
>> whiteboard compatible and still support JSF, JSP, etc..
>> 
> 
> No need to change anything what's already in master-improvements branch. I
> added some filterchains to handle security and preprocessors, so everything
> is ready, but nothing has to be adjusted for ServletContainerInitializers.
> 
> regards
> Grzegorz Grzybek
> 
> 
>> 
>> Hope it makes sense.
>> 
>> Romain Manni-Bucau
>> @rmannibucau  |  Blog
>>  | Old Blog
>>  | Github <
>> https://github.com/rmannibucau> |
>> LinkedIn  | Book
>> <
>> https://www.packtpub.com/application-development/java-ee-8-high-performance
>>> 
>> 
>> 
>> Le lun. 31 août 2020 à 08:29, Jean-Baptiste Onofre  a
>> écrit :
>> 
>>> Hi Grzegorz
>>> 
>>> Enjoy your vacation, and thanks for the update about Pax Web 8.
>>> 
>>> Waiting for your return, let me try to move forward on JSP/JSF support.
>>> 
>>> I will keep you posted.
>>> 
>>> Regards
>>> JB
>>> 
 Le 31 août 2020 à 08:24, Grzegorz Grzybek  a
>>> écrit :
 
 Hello
 
 I'm on PTO till Tuesday, I'm back to work on Sep 2nd.
 
 About Pax Web 8 - indeed, I don't want to hold Karaf 4.3.0 any longer.
 Whiteboard pattern is actually ready (everything defined in Whiteboard
>>> spec
 is in place except tests for Preprocessors and per-context session
 handling). The problem is that what Pax Web 7 already had is still
>>> missing.
 
 Long story short - Pax Web 7 handled ServletContainerInitializers well
>>> and
 it's the fundamental thing to handle JSPs and JSFs. But what I had to
 change for Whiteboard compliance is actually a bit incompatible with
>>> those
 customizers (most importantly - dynamic "ServletContext.addServlet()"
 according to Whiteboard specification should throw
 UnsupportedOperationException - so bye bye JSFs).
 
 I already have an idea how to "fix" this, but this will again delay Pax
>>> Web
 8 a bit.
 
 regards
 Grzegorz Grzybek
 
 pon., 31 sie 2020 o 06:19 Jean-Baptiste Onofre 
>>> napisał(a):
 
> Hi guys,
> 
> A quick update about the releases schedule.
> 
> For both Karaf runtime 4.2.10 and 4.3.0.RC2, I have some dependency
> releases in progress (Felix FileInstall, Pax Exam, etc).
> I will submit these releases to vote this week.
> 
> About 4.3.0.RC2 specifically, I will ping Greg today to see where we
>> are
> on Pax Web 8.0 and help him on that.
> As I don’t want to hold 4.3.0 GA too much, we will evaluate a new time
>>> the
> effort for Pax Web 8.0 and eventually define Felix Jetty as default
> (temporary).
> 
> About Winegrower 1.0, I have several updates ready (I just have to
>>> create
> the PRs), a couple of new cepages to add. So the 1.0 release will be
>> in
> vote during this week.
> 
> Regards
> JB
> 
>> Le 20 août 2020 à 15:23, Jean-Baptiste Onofre  a
>>> écrit
> :
>> 
>> Hi guys,
>> 
>> As we are getting close to Pax Web 8.0, I think it’s the good timing
>> to
> release Karaf Runtime 4.3.0.RC2 with Pax Web 8.0-SNAPSHOT.
>> It would give us time to move forward on 4.3.0 later faster.
>> 
>> Karaf 4.3.0 is blocked by Pax Web for too long now, so, let’s move
> forward at least on RC2.
>> 
>> On the other hand, Karaf 4.2.10 is in preparation, as well as
>>> Winegrower
>

Re: [HEADS UP] Releases schedule: 4.2.10, 4.3.0.RC2, Winegrower 1.0

2020-09-02 Thread Grzegorz Grzybek
Thanks Romain! Answers inline:

pon., 31 sie 2020 o 08:57 Romain Manni-Bucau 
napisał(a):

> Hi Greg,
>
> AFAIK there is no "bye bye" ;).
> ServletContainerInitializer are not in he whiteboard so you make them
> behave as you want and any servlet container has 2 impl of the servlet
> context, one for SCI and one for the runtime (where most registration
> methods throw exceptions).
>

Good idea! I already have two implementations (per
ServletContextHelper/HttpContext and per servlet/filter as depicted in
"140.2.7 Relation to the Servlet Container") and indeed - it's great idea
to pass different context to container initializer, while the existing
context will be throwing UnsupportedOperationException - thanks!


> So it means pax-web can keep being whiteboard++ (ie whiteboard + SCI) by
> having these 2 (sadly custom) impl too and rewire it to the runtime
> properly.
> I fear you will need to do as for http felix impl - ie a filter chain
> dispatcher - but this is not crazy and solves all the issues you
> mentionned enabling to have all the desired features. Indeed, pax
> wouldnt 1-1 delegate to the servlet container but it would be http
> whiteboard compatible and still support JSF, JSP, etc..
>

No need to change anything what's already in master-improvements branch. I
added some filterchains to handle security and preprocessors, so everything
is ready, but nothing has to be adjusted for ServletContainerInitializers.

regards
Grzegorz Grzybek


>
> Hope it makes sense.
>
> Romain Manni-Bucau
> @rmannibucau  |  Blog
>  | Old Blog
>  | Github <
> https://github.com/rmannibucau> |
> LinkedIn  | Book
> <
> https://www.packtpub.com/application-development/java-ee-8-high-performance
> >
>
>
> Le lun. 31 août 2020 à 08:29, Jean-Baptiste Onofre  a
> écrit :
>
> > Hi Grzegorz
> >
> > Enjoy your vacation, and thanks for the update about Pax Web 8.
> >
> > Waiting for your return, let me try to move forward on JSP/JSF support.
> >
> > I will keep you posted.
> >
> > Regards
> > JB
> >
> > > Le 31 août 2020 à 08:24, Grzegorz Grzybek  a
> > écrit :
> > >
> > > Hello
> > >
> > > I'm on PTO till Tuesday, I'm back to work on Sep 2nd.
> > >
> > > About Pax Web 8 - indeed, I don't want to hold Karaf 4.3.0 any longer.
> > > Whiteboard pattern is actually ready (everything defined in Whiteboard
> > spec
> > > is in place except tests for Preprocessors and per-context session
> > > handling). The problem is that what Pax Web 7 already had is still
> > missing.
> > >
> > > Long story short - Pax Web 7 handled ServletContainerInitializers well
> > and
> > > it's the fundamental thing to handle JSPs and JSFs. But what I had to
> > > change for Whiteboard compliance is actually a bit incompatible with
> > those
> > > customizers (most importantly - dynamic "ServletContext.addServlet()"
> > > according to Whiteboard specification should throw
> > > UnsupportedOperationException - so bye bye JSFs).
> > >
> > > I already have an idea how to "fix" this, but this will again delay Pax
> > Web
> > > 8 a bit.
> > >
> > > regards
> > > Grzegorz Grzybek
> > >
> > > pon., 31 sie 2020 o 06:19 Jean-Baptiste Onofre 
> > napisał(a):
> > >
> > >> Hi guys,
> > >>
> > >> A quick update about the releases schedule.
> > >>
> > >> For both Karaf runtime 4.2.10 and 4.3.0.RC2, I have some dependency
> > >> releases in progress (Felix FileInstall, Pax Exam, etc).
> > >> I will submit these releases to vote this week.
> > >>
> > >> About 4.3.0.RC2 specifically, I will ping Greg today to see where we
> are
> > >> on Pax Web 8.0 and help him on that.
> > >> As I don’t want to hold 4.3.0 GA too much, we will evaluate a new time
> > the
> > >> effort for Pax Web 8.0 and eventually define Felix Jetty as default
> > >> (temporary).
> > >>
> > >> About Winegrower 1.0, I have several updates ready (I just have to
> > create
> > >> the PRs), a couple of new cepages to add. So the 1.0 release will be
> in
> > >> vote during this week.
> > >>
> > >> Regards
> > >> JB
> > >>
> > >>> Le 20 août 2020 à 15:23, Jean-Baptiste Onofre  a
> > écrit
> > >> :
> > >>>
> > >>> Hi guys,
> > >>>
> > >>> As we are getting close to Pax Web 8.0, I think it’s the good timing
> to
> > >> release Karaf Runtime 4.3.0.RC2 with Pax Web 8.0-SNAPSHOT.
> > >>> It would give us time to move forward on 4.3.0 later faster.
> > >>>
> > >>> Karaf 4.3.0 is blocked by Pax Web for too long now, so, let’s move
> > >> forward at least on RC2.
> > >>>
> > >>> On the other hand, Karaf 4.2.10 is in preparation, as well as
> > Winegrower
> > >> 1.0 (I’m working on cepages).
> > >>>
> > >>> I will send some updates about new coming features on which we are
> > >> working (spring boot support, devx, flat resolver, and so on).
> > >>>
> > >>> Regards
> > >>> JB
> > >>
> > >>
> >
> >
>


Re: [HEADS UP] Releases schedule: 4.2.10, 4.3.0.RC2, Winegrower 1.0

2020-08-30 Thread Romain Manni-Bucau
Hi Greg,

AFAIK there is no "bye bye" ;).
ServletContainerInitializer are not in he whiteboard so you make them
behave as you want and any servlet container has 2 impl of the servlet
context, one for SCI and one for the runtime (where most registration
methods throw exceptions).
So it means pax-web can keep being whiteboard++ (ie whiteboard + SCI) by
having these 2 (sadly custom) impl too and rewire it to the runtime
properly.
I fear you will need to do as for http felix impl - ie a filter chain
dispatcher - but this is not crazy and solves all the issues you
mentionned enabling to have all the desired features. Indeed, pax
wouldnt 1-1 delegate to the servlet container but it would be http
whiteboard compatible and still support JSF, JSP, etc..

Hope it makes sense.

Romain Manni-Bucau
@rmannibucau  |  Blog
 | Old Blog
 | Github  |
LinkedIn  | Book



Le lun. 31 août 2020 à 08:29, Jean-Baptiste Onofre  a
écrit :

> Hi Grzegorz
>
> Enjoy your vacation, and thanks for the update about Pax Web 8.
>
> Waiting for your return, let me try to move forward on JSP/JSF support.
>
> I will keep you posted.
>
> Regards
> JB
>
> > Le 31 août 2020 à 08:24, Grzegorz Grzybek  a
> écrit :
> >
> > Hello
> >
> > I'm on PTO till Tuesday, I'm back to work on Sep 2nd.
> >
> > About Pax Web 8 - indeed, I don't want to hold Karaf 4.3.0 any longer.
> > Whiteboard pattern is actually ready (everything defined in Whiteboard
> spec
> > is in place except tests for Preprocessors and per-context session
> > handling). The problem is that what Pax Web 7 already had is still
> missing.
> >
> > Long story short - Pax Web 7 handled ServletContainerInitializers well
> and
> > it's the fundamental thing to handle JSPs and JSFs. But what I had to
> > change for Whiteboard compliance is actually a bit incompatible with
> those
> > customizers (most importantly - dynamic "ServletContext.addServlet()"
> > according to Whiteboard specification should throw
> > UnsupportedOperationException - so bye bye JSFs).
> >
> > I already have an idea how to "fix" this, but this will again delay Pax
> Web
> > 8 a bit.
> >
> > regards
> > Grzegorz Grzybek
> >
> > pon., 31 sie 2020 o 06:19 Jean-Baptiste Onofre 
> napisał(a):
> >
> >> Hi guys,
> >>
> >> A quick update about the releases schedule.
> >>
> >> For both Karaf runtime 4.2.10 and 4.3.0.RC2, I have some dependency
> >> releases in progress (Felix FileInstall, Pax Exam, etc).
> >> I will submit these releases to vote this week.
> >>
> >> About 4.3.0.RC2 specifically, I will ping Greg today to see where we are
> >> on Pax Web 8.0 and help him on that.
> >> As I don’t want to hold 4.3.0 GA too much, we will evaluate a new time
> the
> >> effort for Pax Web 8.0 and eventually define Felix Jetty as default
> >> (temporary).
> >>
> >> About Winegrower 1.0, I have several updates ready (I just have to
> create
> >> the PRs), a couple of new cepages to add. So the 1.0 release will be in
> >> vote during this week.
> >>
> >> Regards
> >> JB
> >>
> >>> Le 20 août 2020 à 15:23, Jean-Baptiste Onofre  a
> écrit
> >> :
> >>>
> >>> Hi guys,
> >>>
> >>> As we are getting close to Pax Web 8.0, I think it’s the good timing to
> >> release Karaf Runtime 4.3.0.RC2 with Pax Web 8.0-SNAPSHOT.
> >>> It would give us time to move forward on 4.3.0 later faster.
> >>>
> >>> Karaf 4.3.0 is blocked by Pax Web for too long now, so, let’s move
> >> forward at least on RC2.
> >>>
> >>> On the other hand, Karaf 4.2.10 is in preparation, as well as
> Winegrower
> >> 1.0 (I’m working on cepages).
> >>>
> >>> I will send some updates about new coming features on which we are
> >> working (spring boot support, devx, flat resolver, and so on).
> >>>
> >>> Regards
> >>> JB
> >>
> >>
>
>


Re: [HEADS UP] Releases schedule: 4.2.10, 4.3.0.RC2, Winegrower 1.0

2020-08-30 Thread Jean-Baptiste Onofre
Hi Grzegorz

Enjoy your vacation, and thanks for the update about Pax Web 8.

Waiting for your return, let me try to move forward on JSP/JSF support.

I will keep you posted.

Regards
JB

> Le 31 août 2020 à 08:24, Grzegorz Grzybek  a écrit :
> 
> Hello
> 
> I'm on PTO till Tuesday, I'm back to work on Sep 2nd.
> 
> About Pax Web 8 - indeed, I don't want to hold Karaf 4.3.0 any longer.
> Whiteboard pattern is actually ready (everything defined in Whiteboard spec
> is in place except tests for Preprocessors and per-context session
> handling). The problem is that what Pax Web 7 already had is still missing.
> 
> Long story short - Pax Web 7 handled ServletContainerInitializers well and
> it's the fundamental thing to handle JSPs and JSFs. But what I had to
> change for Whiteboard compliance is actually a bit incompatible with those
> customizers (most importantly - dynamic "ServletContext.addServlet()"
> according to Whiteboard specification should throw
> UnsupportedOperationException - so bye bye JSFs).
> 
> I already have an idea how to "fix" this, but this will again delay Pax Web
> 8 a bit.
> 
> regards
> Grzegorz Grzybek
> 
> pon., 31 sie 2020 o 06:19 Jean-Baptiste Onofre  napisał(a):
> 
>> Hi guys,
>> 
>> A quick update about the releases schedule.
>> 
>> For both Karaf runtime 4.2.10 and 4.3.0.RC2, I have some dependency
>> releases in progress (Felix FileInstall, Pax Exam, etc).
>> I will submit these releases to vote this week.
>> 
>> About 4.3.0.RC2 specifically, I will ping Greg today to see where we are
>> on Pax Web 8.0 and help him on that.
>> As I don’t want to hold 4.3.0 GA too much, we will evaluate a new time the
>> effort for Pax Web 8.0 and eventually define Felix Jetty as default
>> (temporary).
>> 
>> About Winegrower 1.0, I have several updates ready (I just have to create
>> the PRs), a couple of new cepages to add. So the 1.0 release will be in
>> vote during this week.
>> 
>> Regards
>> JB
>> 
>>> Le 20 août 2020 à 15:23, Jean-Baptiste Onofre  a écrit
>> :
>>> 
>>> Hi guys,
>>> 
>>> As we are getting close to Pax Web 8.0, I think it’s the good timing to
>> release Karaf Runtime 4.3.0.RC2 with Pax Web 8.0-SNAPSHOT.
>>> It would give us time to move forward on 4.3.0 later faster.
>>> 
>>> Karaf 4.3.0 is blocked by Pax Web for too long now, so, let’s move
>> forward at least on RC2.
>>> 
>>> On the other hand, Karaf 4.2.10 is in preparation, as well as Winegrower
>> 1.0 (I’m working on cepages).
>>> 
>>> I will send some updates about new coming features on which we are
>> working (spring boot support, devx, flat resolver, and so on).
>>> 
>>> Regards
>>> JB
>> 
>> 



Re: [HEADS UP] Releases schedule: 4.2.10, 4.3.0.RC2, Winegrower 1.0

2020-08-30 Thread Grzegorz Grzybek
Hello

I'm on PTO till Tuesday, I'm back to work on Sep 2nd.

About Pax Web 8 - indeed, I don't want to hold Karaf 4.3.0 any longer.
Whiteboard pattern is actually ready (everything defined in Whiteboard spec
is in place except tests for Preprocessors and per-context session
handling). The problem is that what Pax Web 7 already had is still missing.

Long story short - Pax Web 7 handled ServletContainerInitializers well and
it's the fundamental thing to handle JSPs and JSFs. But what I had to
change for Whiteboard compliance is actually a bit incompatible with those
customizers (most importantly - dynamic "ServletContext.addServlet()"
according to Whiteboard specification should throw
UnsupportedOperationException - so bye bye JSFs).

I already have an idea how to "fix" this, but this will again delay Pax Web
8 a bit.

regards
Grzegorz Grzybek

pon., 31 sie 2020 o 06:19 Jean-Baptiste Onofre  napisał(a):

> Hi guys,
>
> A quick update about the releases schedule.
>
> For both Karaf runtime 4.2.10 and 4.3.0.RC2, I have some dependency
> releases in progress (Felix FileInstall, Pax Exam, etc).
> I will submit these releases to vote this week.
>
> About 4.3.0.RC2 specifically, I will ping Greg today to see where we are
> on Pax Web 8.0 and help him on that.
> As I don’t want to hold 4.3.0 GA too much, we will evaluate a new time the
> effort for Pax Web 8.0 and eventually define Felix Jetty as default
> (temporary).
>
> About Winegrower 1.0, I have several updates ready (I just have to create
> the PRs), a couple of new cepages to add. So the 1.0 release will be in
> vote during this week.
>
> Regards
> JB
>
> > Le 20 août 2020 à 15:23, Jean-Baptiste Onofre  a écrit
> :
> >
> > Hi guys,
> >
> > As we are getting close to Pax Web 8.0, I think it’s the good timing to
> release Karaf Runtime 4.3.0.RC2 with Pax Web 8.0-SNAPSHOT.
> > It would give us time to move forward on 4.3.0 later faster.
> >
> > Karaf 4.3.0 is blocked by Pax Web for too long now, so, let’s move
> forward at least on RC2.
> >
> > On the other hand, Karaf 4.2.10 is in preparation, as well as Winegrower
> 1.0 (I’m working on cepages).
> >
> > I will send some updates about new coming features on which we are
> working (spring boot support, devx, flat resolver, and so on).
> >
> > Regards
> > JB
>
>


Re: [HEADS UP] Releases schedule: 4.2.10, 4.3.0.RC2, Winegrower 1.0

2020-08-30 Thread Jean-Baptiste Onofre
Hi guys,

A quick update about the releases schedule.

For both Karaf runtime 4.2.10 and 4.3.0.RC2, I have some dependency releases in 
progress (Felix FileInstall, Pax Exam, etc).
I will submit these releases to vote this week.

About 4.3.0.RC2 specifically, I will ping Greg today to see where we are on Pax 
Web 8.0 and help him on that.
As I don’t want to hold 4.3.0 GA too much, we will evaluate a new time the 
effort for Pax Web 8.0 and eventually define Felix Jetty as default (temporary).

About Winegrower 1.0, I have several updates ready (I just have to create the 
PRs), a couple of new cepages to add. So the 1.0 release will be in vote during 
this week.

Regards
JB

> Le 20 août 2020 à 15:23, Jean-Baptiste Onofre  a écrit :
> 
> Hi guys,
> 
> As we are getting close to Pax Web 8.0, I think it’s the good timing to 
> release Karaf Runtime 4.3.0.RC2 with Pax Web 8.0-SNAPSHOT.
> It would give us time to move forward on 4.3.0 later faster.
> 
> Karaf 4.3.0 is blocked by Pax Web for too long now, so, let’s move forward at 
> least on RC2.
> 
> On the other hand, Karaf 4.2.10 is in preparation, as well as Winegrower 1.0 
> (I’m working on cepages).
> 
> I will send some updates about new coming features on which we are working 
> (spring boot support, devx, flat resolver, and so on).
> 
> Regards
> JB



Re: [HEADS UP] Releases schedule: 4.2.10, 4.3.0.RC2, Winegrower 1.0

2020-08-20 Thread Jean-Baptiste Onofre
Hi,

I saw your update, and that’s why I think it’s the perfect timing for RC2 with 
Pax Web 8.0-SNAPSHOT soon ! ;)

Regards
JB

> Le 20 août 2020 à 15:34, Grzegorz Grzybek  a écrit :
> 
> Hello
> 
> And I've JUST sent an email about Pax Web 8 state ;)... I'll forward to
> karaf-dev as well.
> 
> regards
> Grzegorz Grzybek
> 
> czw., 20 sie 2020 o 15:23 Jean-Baptiste Onofre  napisał(a):
> 
>> Hi guys,
>> 
>> As we are getting close to Pax Web 8.0, I think it’s the good timing to
>> release Karaf Runtime 4.3.0.RC2 with Pax Web 8.0-SNAPSHOT.
>> It would give us time to move forward on 4.3.0 later faster.
>> 
>> Karaf 4.3.0 is blocked by Pax Web for too long now, so, let’s move forward
>> at least on RC2.
>> 
>> On the other hand, Karaf 4.2.10 is in preparation, as well as Winegrower
>> 1.0 (I’m working on cepages).
>> 
>> I will send some updates about new coming features on which we are working
>> (spring boot support, devx, flat resolver, and so on).
>> 
>> Regards
>> JB



Re: [HEADS UP] Releases schedule: 4.2.10, 4.3.0.RC2, Winegrower 1.0

2020-08-20 Thread Grzegorz Grzybek
Hello

And I've JUST sent an email about Pax Web 8 state ;)... I'll forward to
karaf-dev as well.

regards
Grzegorz Grzybek

czw., 20 sie 2020 o 15:23 Jean-Baptiste Onofre  napisał(a):

> Hi guys,
>
> As we are getting close to Pax Web 8.0, I think it’s the good timing to
> release Karaf Runtime 4.3.0.RC2 with Pax Web 8.0-SNAPSHOT.
> It would give us time to move forward on 4.3.0 later faster.
>
> Karaf 4.3.0 is blocked by Pax Web for too long now, so, let’s move forward
> at least on RC2.
>
> On the other hand, Karaf 4.2.10 is in preparation, as well as Winegrower
> 1.0 (I’m working on cepages).
>
> I will send some updates about new coming features on which we are working
> (spring boot support, devx, flat resolver, and so on).
>
> Regards
> JB


[HEADS UP] Releases schedule: 4.2.10, 4.3.0.RC2, Winegrower 1.0

2020-08-20 Thread Jean-Baptiste Onofre
Hi guys,

As we are getting close to Pax Web 8.0, I think it’s the good timing to release 
Karaf Runtime 4.3.0.RC2 with Pax Web 8.0-SNAPSHOT.
It would give us time to move forward on 4.3.0 later faster.

Karaf 4.3.0 is blocked by Pax Web for too long now, so, let’s move forward at 
least on RC2.

On the other hand, Karaf 4.2.10 is in preparation, as well as Winegrower 1.0 
(I’m working on cepages).

I will send some updates about new coming features on which we are working 
(spring boot support, devx, flat resolver, and so on).

Regards
JB

Re: [HEADS UP] Releases schedule

2019-01-30 Thread Jean-Baptiste Onofré
Agree, the purposes of RC* is to prepare and test the Karaf and the
dependencies. So it makes sense to prepare pax-web 8.0.0 during Karaf RC.

Regards
JB

On 30/01/2019 10:46, Grzegorz Grzybek wrote:
> Great idea about 4.3.0.RC1!
> 
> Maybe at the time of 4.3.0.RC2 I can prepare pax-web 8.0.0 with R7 support.
> 
> Looking forward to 4.2.3.
> 
> regards
> Grzegorz Grzybek
> 
> śr., 30 sty 2019 o 08:29 Jean-Baptiste Onofré  napisał(a):
> 
>> Hi guys,
>>
>> FYI, I just have couple of Jira for Karaf 4.2.3.
>>
>> I should be able to submit release to vote tonight.
>>
>> As said previously, as soon as Karaf 4.2.3 will be out, I will create
>> karaf-4.2.x branch and master will be updated to 4.3.x, heading to OSGi
>> R7 support (I already have a local branch with several updates).
>>
>> I'm updating the website to give some visibility to our users. I'm
>> thinking about Karaf 4.3.0.RC1 around end of Feb/beginning of March.
>>
>> Thoughts ?
>>
>> Regards
>> JB
>>
>> On 14/01/2019 06:42, Jean-Baptiste Onofré wrote:
>>> Hi,
>>>
>>> We are a bit late on the release schedule, so, I will move forward this
>>> week.
>>>
>>> - Regarding Karaf 4.2.3, I plan to propose to vote by the end of this
>>> week. We need some dependencies releases (like Aries Proxy), and I have
>>> to find a key for my Windows VM to test some fixes, but it should be OK
>>> for this week. Once 4.2.3 will be tagged, I will create the karaf-4.2.x
>>> branch and move master to 4.3.x.
>>> - Karaf Cave 4.1.2 should be in vote today or tomorrow. Once submitted
>>> to vote, I will start the refactoring on master as Cave 4.2.x.
>>> - Karaf Decanter 2.2.0 preparation has started. I think I will be able
>>> to submit to vote next week.
>>> - Karaf Cellar 4.x preparation have started as well. Vote should happen
>>> in 2 or 3 weeks.
>>>
>>> I keep you posted.
>>>
>>> Regards
>>> JB
>>>
>>
>> --
>> Jean-Baptiste Onofré
>> jbono...@apache.org
>> http://blog.nanthrax.net
>> Talend - http://www.talend.com
>>
> 

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-30 Thread Grzegorz Grzybek
Great idea about 4.3.0.RC1!

Maybe at the time of 4.3.0.RC2 I can prepare pax-web 8.0.0 with R7 support.

Looking forward to 4.2.3.

regards
Grzegorz Grzybek

śr., 30 sty 2019 o 08:29 Jean-Baptiste Onofré  napisał(a):

> Hi guys,
>
> FYI, I just have couple of Jira for Karaf 4.2.3.
>
> I should be able to submit release to vote tonight.
>
> As said previously, as soon as Karaf 4.2.3 will be out, I will create
> karaf-4.2.x branch and master will be updated to 4.3.x, heading to OSGi
> R7 support (I already have a local branch with several updates).
>
> I'm updating the website to give some visibility to our users. I'm
> thinking about Karaf 4.3.0.RC1 around end of Feb/beginning of March.
>
> Thoughts ?
>
> Regards
> JB
>
> On 14/01/2019 06:42, Jean-Baptiste Onofré wrote:
> > Hi,
> >
> > We are a bit late on the release schedule, so, I will move forward this
> > week.
> >
> > - Regarding Karaf 4.2.3, I plan to propose to vote by the end of this
> > week. We need some dependencies releases (like Aries Proxy), and I have
> > to find a key for my Windows VM to test some fixes, but it should be OK
> > for this week. Once 4.2.3 will be tagged, I will create the karaf-4.2.x
> > branch and move master to 4.3.x.
> > - Karaf Cave 4.1.2 should be in vote today or tomorrow. Once submitted
> > to vote, I will start the refactoring on master as Cave 4.2.x.
> > - Karaf Decanter 2.2.0 preparation has started. I think I will be able
> > to submit to vote next week.
> > - Karaf Cellar 4.x preparation have started as well. Vote should happen
> > in 2 or 3 weeks.
> >
> > I keep you posted.
> >
> > Regards
> > JB
> >
>
> --
> Jean-Baptiste Onofré
> jbono...@apache.org
> http://blog.nanthrax.net
> Talend - http://www.talend.com
>


Re: [HEADS UP] Releases schedule

2019-01-29 Thread Jean-Baptiste Onofré
Hi guys,

FYI, I just have couple of Jira for Karaf 4.2.3.

I should be able to submit release to vote tonight.

As said previously, as soon as Karaf 4.2.3 will be out, I will create
karaf-4.2.x branch and master will be updated to 4.3.x, heading to OSGi
R7 support (I already have a local branch with several updates).

I'm updating the website to give some visibility to our users. I'm
thinking about Karaf 4.3.0.RC1 around end of Feb/beginning of March.

Thoughts ?

Regards
JB

On 14/01/2019 06:42, Jean-Baptiste Onofré wrote:
> Hi,
> 
> We are a bit late on the release schedule, so, I will move forward this
> week.
> 
> - Regarding Karaf 4.2.3, I plan to propose to vote by the end of this
> week. We need some dependencies releases (like Aries Proxy), and I have
> to find a key for my Windows VM to test some fixes, but it should be OK
> for this week. Once 4.2.3 will be tagged, I will create the karaf-4.2.x
> branch and move master to 4.3.x.
> - Karaf Cave 4.1.2 should be in vote today or tomorrow. Once submitted
> to vote, I will start the refactoring on master as Cave 4.2.x.
> - Karaf Decanter 2.2.0 preparation has started. I think I will be able
> to submit to vote next week.
> - Karaf Cellar 4.x preparation have started as well. Vote should happen
> in 2 or 3 weeks.
> 
> I keep you posted.
> 
> Regards
> JB
> 

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-21 Thread Jean-Baptiste Onofré
Hi guys,

quick update:

- Cave 4.1.2 has been released and the refactoring for Cave 4.2.x is on
the way.
- Karaf 4.2.3 is coming but I'm working on Felix and JLine dependent
releases. I will subit Felix releases to vote today. So hopefully we can
expect Karaf 4.2.3 to vote end of this week.
- I have several PRs ready for Decanter 2.2.0. I will open it today.
Decanter 2.2.0 should be on vote by the end of this week.

Regards
JB

On 14/01/2019 06:42, Jean-Baptiste Onofré wrote:
> Hi,
> 
> We are a bit late on the release schedule, so, I will move forward this
> week.
> 
> - Regarding Karaf 4.2.3, I plan to propose to vote by the end of this
> week. We need some dependencies releases (like Aries Proxy), and I have
> to find a key for my Windows VM to test some fixes, but it should be OK
> for this week. Once 4.2.3 will be tagged, I will create the karaf-4.2.x
> branch and move master to 4.3.x.
> - Karaf Cave 4.1.2 should be in vote today or tomorrow. Once submitted
> to vote, I will start the refactoring on master as Cave 4.2.x.
> - Karaf Decanter 2.2.0 preparation has started. I think I will be able
> to submit to vote next week.
> - Karaf Cellar 4.x preparation have started as well. Vote should happen
> in 2 or 3 weeks.
> 
> I keep you posted.
> 
> Regards
> JB
> 

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-20 Thread Jean-Baptiste Onofré
Hi,

my intention was not to align all in a row but also to update to recent
Hibernate 5.2.x version (providing fixes).

I will prepare to PR at Hibernate to align anyway.

Regards
JB

On 21/01/2019 08:12, Grzegorz Grzybek wrote:
> Hello
> 
> After updating to hibernate 5.2.17.Final the state of _duplicates_ didn't
> change much.
> 
>  - hibernate 5.2.17.Final still uses mvn:com.fasterxml/classmate/1.3.0
> while hibernate-validator/6.0.13.Final uses
> mvn:com.fasterxml/classmate/1.3.4
>  - hibernate 5.2.17.Final "brings" mvn:net.bytebuddy/byte-buddy/1.6.14
> while Karaf uses mvn:net.bytebuddy/byte-buddy/1.6.6
>  - hibernate 5.2.17.Final upgraded to
> mvn:org.jboss.logging/jboss-logging/3.3.1.Final (from 3.3.0.Final), but
> that's still not mvn:org.jboss.logging/jboss-logging/3.3.2.Final provided
> by pax-web, pax-cdi and hibernate-validator
> 
> that's very easy to "align" externally (in any custom distro) using this
> etc/org.apache.karaf.features.xml:
> 
> http://karaf.apache.org/xmlns/features-processing/v1.0.0";
> xmlns:f="http://karaf.apache.org/xmlns/features/v1.5.0";>
> 
> 
> 
>  replacement="mvn:com.fasterxml/classmate/1.3.4"
> mode="maven" />
>  replacement="mvn:net.bytebuddy/byte-buddy/1.6.14"
> mode="maven" />
>  
> replacement="mvn:org.jboss.logging/jboss-logging/3.3.2.Final" mode="maven"
> />
> 
> 
> 
> 
> regards
> Grzegorz Grzybek
> 
> niedz., 20 sty 2019 o 07:48 Jean-Baptiste Onofré 
> napisał(a):
> 
>> Just to be clear:
>>
>> - Karaf 4.2.3 will upgrade to Hibernate 5.2.18.Final
>> - Karaf 4.3.x will upgrade to Hibernate 5.4.x.Final
>>
>> Regards
>> JB
>>
>> On 20/01/2019 07:36, Jean-Baptiste Onofré wrote:
>>> Hi Grzegorz,
>>>
>>> That's not for Karaf 4.2.x but Karaf 4.3.x.
>>>
>>> Regards
>>> JB
>>>
>>> On 20/01/2019 07:23, Grzegorz Grzybek wrote:
 Hello

 Some time ago, I prepared this table
 <
>> https://docs.google.com/spreadsheets/d/1TB_q5r9i8DOIHmBQa1_RjsrcjWCwCwsLPj3Pc6FoTJ8/edit#gid=1455909167
>>>
 with JavaEE spec mapping (still work in progress wrt implementations).
 Hibernate 5.3 == JPA 2.2 == JavaEE 8 thus → Servlets 4.0.

 That's not reason to *not* use Hibernate 5.3 - that's only an
>> opportunity
 for me to put more efforts into
>> https://ops4j1.jira.com/browse/PAXWEB-1185
 (Undertow 2) and https://ops4j1.jira.com/browse/PAXWEB-1187 (Tomcat 9).

 I even prepared
 https://github.com/ops4j/org.ops4j.pax.web/commits/pax-web-7.3.x branch
 (locally I work on master-servlet-4) and this looks promising - the only
 thing left is to wait for Jetty 10...

 I guess my work related to servlets-4.0 should be ready for Karaf 4.3.0.

 regards
 Grzegorz Grzybek

 niedz., 20 sty 2019 o 06:45 Jean-Baptiste Onofré 
 napisał(a):

> I created Jira to provide new Hibernate versions and test it in Karaf.
>
> Regards
> JB
>
> On 19/01/2019 22:24, Robert Varga wrote:
>> On 18/01/2019 15:45, Grzegorz Grzybek wrote:
>>> Also check
> http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml
>>> report - it's perfectly aligned, not including hibernate features
> (which we
>>> use directly from upstream hibernate projects) - but nothing that
>> can't
> be
>>> tweaked using etc/org.apache.karaf.features.xml.
>>
>> Without knowing anything about this: would it be possible to refresh
>> the
>> hibernate version? 5.2.9 seems to be rather ancient, with 5.2.18 out
>> there... Plus there is 5.3.x, which seems to trim down the feature
>> content, too.
>>
>> Regards,
>> Robert
>>
>
> --
> Jean-Baptiste Onofré
> jbono...@apache.org
> http://blog.nanthrax.net
> Talend - http://www.talend.com
>

>>>
>>
>> --
>> Jean-Baptiste Onofré
>> jbono...@apache.org
>> http://blog.nanthrax.net
>> Talend - http://www.talend.com
>>
> 

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-20 Thread Grzegorz Grzybek
Hello

After updating to hibernate 5.2.17.Final the state of _duplicates_ didn't
change much.

 - hibernate 5.2.17.Final still uses mvn:com.fasterxml/classmate/1.3.0
while hibernate-validator/6.0.13.Final uses
mvn:com.fasterxml/classmate/1.3.4
 - hibernate 5.2.17.Final "brings" mvn:net.bytebuddy/byte-buddy/1.6.14
while Karaf uses mvn:net.bytebuddy/byte-buddy/1.6.6
 - hibernate 5.2.17.Final upgraded to
mvn:org.jboss.logging/jboss-logging/3.3.1.Final (from 3.3.0.Final), but
that's still not mvn:org.jboss.logging/jboss-logging/3.3.2.Final provided
by pax-web, pax-cdi and hibernate-validator

that's very easy to "align" externally (in any custom distro) using this
etc/org.apache.karaf.features.xml:

http://karaf.apache.org/xmlns/features-processing/v1.0.0";
xmlns:f="http://karaf.apache.org/xmlns/features/v1.5.0";>










regards
Grzegorz Grzybek

niedz., 20 sty 2019 o 07:48 Jean-Baptiste Onofré 
napisał(a):

> Just to be clear:
>
> - Karaf 4.2.3 will upgrade to Hibernate 5.2.18.Final
> - Karaf 4.3.x will upgrade to Hibernate 5.4.x.Final
>
> Regards
> JB
>
> On 20/01/2019 07:36, Jean-Baptiste Onofré wrote:
> > Hi Grzegorz,
> >
> > That's not for Karaf 4.2.x but Karaf 4.3.x.
> >
> > Regards
> > JB
> >
> > On 20/01/2019 07:23, Grzegorz Grzybek wrote:
> >> Hello
> >>
> >> Some time ago, I prepared this table
> >> <
> https://docs.google.com/spreadsheets/d/1TB_q5r9i8DOIHmBQa1_RjsrcjWCwCwsLPj3Pc6FoTJ8/edit#gid=1455909167
> >
> >> with JavaEE spec mapping (still work in progress wrt implementations).
> >> Hibernate 5.3 == JPA 2.2 == JavaEE 8 thus → Servlets 4.0.
> >>
> >> That's not reason to *not* use Hibernate 5.3 - that's only an
> opportunity
> >> for me to put more efforts into
> https://ops4j1.jira.com/browse/PAXWEB-1185
> >> (Undertow 2) and https://ops4j1.jira.com/browse/PAXWEB-1187 (Tomcat 9).
> >>
> >> I even prepared
> >> https://github.com/ops4j/org.ops4j.pax.web/commits/pax-web-7.3.x branch
> >> (locally I work on master-servlet-4) and this looks promising - the only
> >> thing left is to wait for Jetty 10...
> >>
> >> I guess my work related to servlets-4.0 should be ready for Karaf 4.3.0.
> >>
> >> regards
> >> Grzegorz Grzybek
> >>
> >> niedz., 20 sty 2019 o 06:45 Jean-Baptiste Onofré 
> >> napisał(a):
> >>
> >>> I created Jira to provide new Hibernate versions and test it in Karaf.
> >>>
> >>> Regards
> >>> JB
> >>>
> >>> On 19/01/2019 22:24, Robert Varga wrote:
>  On 18/01/2019 15:45, Grzegorz Grzybek wrote:
> > Also check
> >>> http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml
> > report - it's perfectly aligned, not including hibernate features
> >>> (which we
> > use directly from upstream hibernate projects) - but nothing that
> can't
> >>> be
> > tweaked using etc/org.apache.karaf.features.xml.
> 
>  Without knowing anything about this: would it be possible to refresh
> the
>  hibernate version? 5.2.9 seems to be rather ancient, with 5.2.18 out
>  there... Plus there is 5.3.x, which seems to trim down the feature
>  content, too.
> 
>  Regards,
>  Robert
> 
> >>>
> >>> --
> >>> Jean-Baptiste Onofré
> >>> jbono...@apache.org
> >>> http://blog.nanthrax.net
> >>> Talend - http://www.talend.com
> >>>
> >>
> >
>
> --
> Jean-Baptiste Onofré
> jbono...@apache.org
> http://blog.nanthrax.net
> Talend - http://www.talend.com
>


Re: [HEADS UP] Releases schedule

2019-01-20 Thread Robert Varga
On 20/01/2019 07:23, Grzegorz Grzybek wrote:
> Hello
> 
> Some time ago, I prepared this table
> 
> with JavaEE spec mapping (still work in progress wrt implementations).
> Hibernate 5.3 == JPA 2.2 == JavaEE 8 thus → Servlets 4.0.

Cool table, I am saving the link :)

Thanks,
Robert



signature.asc
Description: OpenPGP digital signature


Re: [HEADS UP] Releases schedule

2019-01-19 Thread Jean-Baptiste Onofré
Just to be clear:

- Karaf 4.2.3 will upgrade to Hibernate 5.2.18.Final
- Karaf 4.3.x will upgrade to Hibernate 5.4.x.Final

Regards
JB

On 20/01/2019 07:36, Jean-Baptiste Onofré wrote:
> Hi Grzegorz,
> 
> That's not for Karaf 4.2.x but Karaf 4.3.x.
> 
> Regards
> JB
> 
> On 20/01/2019 07:23, Grzegorz Grzybek wrote:
>> Hello
>>
>> Some time ago, I prepared this table
>> 
>> with JavaEE spec mapping (still work in progress wrt implementations).
>> Hibernate 5.3 == JPA 2.2 == JavaEE 8 thus → Servlets 4.0.
>>
>> That's not reason to *not* use Hibernate 5.3 - that's only an opportunity
>> for me to put more efforts into https://ops4j1.jira.com/browse/PAXWEB-1185
>> (Undertow 2) and https://ops4j1.jira.com/browse/PAXWEB-1187 (Tomcat 9).
>>
>> I even prepared
>> https://github.com/ops4j/org.ops4j.pax.web/commits/pax-web-7.3.x branch
>> (locally I work on master-servlet-4) and this looks promising - the only
>> thing left is to wait for Jetty 10...
>>
>> I guess my work related to servlets-4.0 should be ready for Karaf 4.3.0.
>>
>> regards
>> Grzegorz Grzybek
>>
>> niedz., 20 sty 2019 o 06:45 Jean-Baptiste Onofré 
>> napisał(a):
>>
>>> I created Jira to provide new Hibernate versions and test it in Karaf.
>>>
>>> Regards
>>> JB
>>>
>>> On 19/01/2019 22:24, Robert Varga wrote:
 On 18/01/2019 15:45, Grzegorz Grzybek wrote:
> Also check
>>> http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml
> report - it's perfectly aligned, not including hibernate features
>>> (which we
> use directly from upstream hibernate projects) - but nothing that can't
>>> be
> tweaked using etc/org.apache.karaf.features.xml.

 Without knowing anything about this: would it be possible to refresh the
 hibernate version? 5.2.9 seems to be rather ancient, with 5.2.18 out
 there... Plus there is 5.3.x, which seems to trim down the feature
 content, too.

 Regards,
 Robert

>>>
>>> --
>>> Jean-Baptiste Onofré
>>> jbono...@apache.org
>>> http://blog.nanthrax.net
>>> Talend - http://www.talend.com
>>>
>>
> 

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-19 Thread Jean-Baptiste Onofré
Hi Grzegorz,

That's not for Karaf 4.2.x but Karaf 4.3.x.

Regards
JB

On 20/01/2019 07:23, Grzegorz Grzybek wrote:
> Hello
> 
> Some time ago, I prepared this table
> 
> with JavaEE spec mapping (still work in progress wrt implementations).
> Hibernate 5.3 == JPA 2.2 == JavaEE 8 thus → Servlets 4.0.
> 
> That's not reason to *not* use Hibernate 5.3 - that's only an opportunity
> for me to put more efforts into https://ops4j1.jira.com/browse/PAXWEB-1185
> (Undertow 2) and https://ops4j1.jira.com/browse/PAXWEB-1187 (Tomcat 9).
> 
> I even prepared
> https://github.com/ops4j/org.ops4j.pax.web/commits/pax-web-7.3.x branch
> (locally I work on master-servlet-4) and this looks promising - the only
> thing left is to wait for Jetty 10...
> 
> I guess my work related to servlets-4.0 should be ready for Karaf 4.3.0.
> 
> regards
> Grzegorz Grzybek
> 
> niedz., 20 sty 2019 o 06:45 Jean-Baptiste Onofré 
> napisał(a):
> 
>> I created Jira to provide new Hibernate versions and test it in Karaf.
>>
>> Regards
>> JB
>>
>> On 19/01/2019 22:24, Robert Varga wrote:
>>> On 18/01/2019 15:45, Grzegorz Grzybek wrote:
 Also check
>> http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml
 report - it's perfectly aligned, not including hibernate features
>> (which we
 use directly from upstream hibernate projects) - but nothing that can't
>> be
 tweaked using etc/org.apache.karaf.features.xml.
>>>
>>> Without knowing anything about this: would it be possible to refresh the
>>> hibernate version? 5.2.9 seems to be rather ancient, with 5.2.18 out
>>> there... Plus there is 5.3.x, which seems to trim down the feature
>>> content, too.
>>>
>>> Regards,
>>> Robert
>>>
>>
>> --
>> Jean-Baptiste Onofré
>> jbono...@apache.org
>> http://blog.nanthrax.net
>> Talend - http://www.talend.com
>>
> 

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-19 Thread Grzegorz Grzybek
Hello

Some time ago, I prepared this table

with JavaEE spec mapping (still work in progress wrt implementations).
Hibernate 5.3 == JPA 2.2 == JavaEE 8 thus → Servlets 4.0.

That's not reason to *not* use Hibernate 5.3 - that's only an opportunity
for me to put more efforts into https://ops4j1.jira.com/browse/PAXWEB-1185
(Undertow 2) and https://ops4j1.jira.com/browse/PAXWEB-1187 (Tomcat 9).

I even prepared
https://github.com/ops4j/org.ops4j.pax.web/commits/pax-web-7.3.x branch
(locally I work on master-servlet-4) and this looks promising - the only
thing left is to wait for Jetty 10...

I guess my work related to servlets-4.0 should be ready for Karaf 4.3.0.

regards
Grzegorz Grzybek

niedz., 20 sty 2019 o 06:45 Jean-Baptiste Onofré 
napisał(a):

> I created Jira to provide new Hibernate versions and test it in Karaf.
>
> Regards
> JB
>
> On 19/01/2019 22:24, Robert Varga wrote:
> > On 18/01/2019 15:45, Grzegorz Grzybek wrote:
> >> Also check
> http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml
> >> report - it's perfectly aligned, not including hibernate features
> (which we
> >> use directly from upstream hibernate projects) - but nothing that can't
> be
> >> tweaked using etc/org.apache.karaf.features.xml.
> >
> > Without knowing anything about this: would it be possible to refresh the
> > hibernate version? 5.2.9 seems to be rather ancient, with 5.2.18 out
> > there... Plus there is 5.3.x, which seems to trim down the feature
> > content, too.
> >
> > Regards,
> > Robert
> >
>
> --
> Jean-Baptiste Onofré
> jbono...@apache.org
> http://blog.nanthrax.net
> Talend - http://www.talend.com
>


Re: [HEADS UP] Releases schedule

2019-01-19 Thread Jean-Baptiste Onofré
I created Jira to provide new Hibernate versions and test it in Karaf.

Regards
JB

On 19/01/2019 22:24, Robert Varga wrote:
> On 18/01/2019 15:45, Grzegorz Grzybek wrote:
>> Also check http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml
>> report - it's perfectly aligned, not including hibernate features (which we
>> use directly from upstream hibernate projects) - but nothing that can't be
>> tweaked using etc/org.apache.karaf.features.xml.
> 
> Without knowing anything about this: would it be possible to refresh the
> hibernate version? 5.2.9 seems to be rather ancient, with 5.2.18 out
> there... Plus there is 5.3.x, which seems to trim down the feature
> content, too.
> 
> Regards,
> Robert
> 

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-19 Thread Jean-Baptiste Onofré
Hi Robert,

Good point, let me take a look there.

Regards
JB

On 19/01/2019 22:24, Robert Varga wrote:
> On 18/01/2019 15:45, Grzegorz Grzybek wrote:
>> Also check http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml
>> report - it's perfectly aligned, not including hibernate features (which we
>> use directly from upstream hibernate projects) - but nothing that can't be
>> tweaked using etc/org.apache.karaf.features.xml.
> 
> Without knowing anything about this: would it be possible to refresh the
> hibernate version? 5.2.9 seems to be rather ancient, with 5.2.18 out
> there... Plus there is 5.3.x, which seems to trim down the feature
> content, too.
> 
> Regards,
> Robert
> 

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-19 Thread Robert Varga
On 18/01/2019 15:45, Grzegorz Grzybek wrote:
> Also check http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml
> report - it's perfectly aligned, not including hibernate features (which we
> use directly from upstream hibernate projects) - but nothing that can't be
> tweaked using etc/org.apache.karaf.features.xml.

Without knowing anything about this: would it be possible to refresh the
hibernate version? 5.2.9 seems to be rather ancient, with 5.2.18 out
there... Plus there is 5.3.x, which seems to trim down the feature
content, too.

Regards,
Robert



signature.asc
Description: OpenPGP digital signature


Re: [HEADS UP] Releases schedule

2019-01-18 Thread Jean-Baptiste Onofré
Hi Grzegorz

thanks for all this PAX release cycle !

As discussed on IRC, I'm the other pending Jira but we are almost good !

Thanks again,
Regards
JB

On 18/01/2019 15:45, Grzegorz Grzybek wrote:
> Hello
> 
> OK - I'll send ops4j announcement soon, but tl;dr version here.
> 
> I've released:
>  - pax-transx 0.4.2
>  - pax-jms 1.0.3
>  - pax-jdbc 1.3.2
>  - pax-cdi 1.1.0
>  - pax-web 7.2.7
> 
> All releases use same versions of some important bundles (e.g., xbean
> 4.12). pax-cdi is upgraded to latest weld2 and owb1.
> 
> Also check http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml
> report - it's perfectly aligned, not including hibernate features (which we
> use directly from upstream hibernate projects) - but nothing that can't be
> tweaked using etc/org.apache.karaf.features.xml.
> 
> I'm doing last tests with KARAF-6074 "Race condition between the
> FeaturesService and FeatureDeploymentListener" and my work is done here.
> 
> @Benjamin Graf - I remember about your suggestion for consistency report,
> but I wasn't able to check it this week - it was very busy week for me.
> 
> best regards
> Grzegorz Grzybek
> 
> wt., 15 sty 2019 o 18:35 Grzegorz Grzybek  napisał(a):
> 
>> Hello
>>
>> Looks like it's going to be kind of "release train" :)
>>
>> I've prepared local versions of:
>>  - pax-transx
>>  - pax-jms
>>  - pax-jdbc
>>  - pax-cdi
>>  - pax-web
>>  - karaf itself
>>
>> I aligned the differences, so there's now 24 "duplicates" instead of 47.
>> Out of these 21, 17 are spring duplicates (simply because Karaf uses 5.0
>> and 5.1). and remaining ones are quite irrelevant (JPA 2.1 + 2.2 for
>> example in openjpa and openjpa3 features).
>>
>> I could successfully use xbean 4.12 across pax-cdi, pax-web and karaf
>> (using xbean-asm7-shaded) - all pax-cdi and pax-web tests pass.
>> commons-codec 1.11 is included (single version of this library across all
>> the above projects)
>>
>> about pax-cdi - that's interesting - I could successfully clear some
>> problems, use latest weld and openwebbeans (CDI 1.2) and use xbean 4.12
>>
>> Tomorrow I'm going to release all 5 above pax-* projects.
>>
>> best regards
>> Grzegorz Grzybek
>>
>> pon., 14 sty 2019 o 15:52 Grzegorz Grzybek 
>> napisał(a):
>>
>>> Hello
>>>
>>> So far so good. I used single xbean in pax-cdi 1.0.1-SNAPSHOT (probably
>>> I'll end up with 1.1.0-SNAPSHOT) - xbean 4.12 (with xbean-asm7-shaded).
>>>
>>> Karaf tests work fine and we can have single set of xbean-* artifacts.
>>>
>>> regards
>>> Grzegorz Grzybek
>>>
>>> pon., 14 sty 2019 o 13:44 Jean-Baptiste Onofré 
>>> napisał(a):
>>>
 OK, go for xbean and commons-codec.

 Thanks,
 Regards
 JB

 On 14/01/2019 13:38, Grzegorz Grzybek wrote:
> Thanks for reporting alignment problems
>
> Here's the report:
> http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml (see
 my
> previous emails about how to generate it[1]).
>
> Somehow pax-web 7.2.6 can't get into Maven Central. But as you pointed
 out,
> I think it's worth doing next pax-cdi release too (version alignment
 only).
>
> JB - please leave xbean and commons-codec to me - I'll have them
 aligned ok?
>
> regards
> Grzegorz Grzybek
> ===
> [1]:
>
 http://karaf.922171.n3.nabble.com/Version-alignment-report-for-Karaf-4-2-3-SNAPSHOT-1-2-td4054786.html
>
>
>
> pon., 14 sty 2019 o 13:34 Jean-Baptiste Onofré 
 napisał(a):
>
>> Hi Robert,
>>
>> already done on a local branch. I'm creating the corresponding Jira.
>>
>> Thanks,
>> Regards
>> JB
>>
>> On 14/01/2019 13:26, Robert Varga wrote:
>>> On 14/01/2019 13:14, Jean-Baptiste Onofré wrote:
 Good point.

 Greg or I will tackle this.
>>>
>>>
>>> Hello guys,
>>>
>>> while you are looking at this, would it make sense to align
>>> commons-codec at upgraded 1.11 release?
>>>
>>> Thanks,
>>> Robert
>>>
>>
>> --
>> Jean-Baptiste Onofré
>> jbono...@apache.org
>> http://blog.nanthrax.net
>> Talend - http://www.talend.com
>>
>

 --
 Jean-Baptiste Onofré
 jbono...@apache.org
 http://blog.nanthrax.net
 Talend - http://www.talend.com

>>>
> 

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-18 Thread Grzegorz Grzybek
Hello

OK - I'll send ops4j announcement soon, but tl;dr version here.

I've released:
 - pax-transx 0.4.2
 - pax-jms 1.0.3
 - pax-jdbc 1.3.2
 - pax-cdi 1.1.0
 - pax-web 7.2.7

All releases use same versions of some important bundles (e.g., xbean
4.12). pax-cdi is upgraded to latest weld2 and owb1.

Also check http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml
report - it's perfectly aligned, not including hibernate features (which we
use directly from upstream hibernate projects) - but nothing that can't be
tweaked using etc/org.apache.karaf.features.xml.

I'm doing last tests with KARAF-6074 "Race condition between the
FeaturesService and FeatureDeploymentListener" and my work is done here.

@Benjamin Graf - I remember about your suggestion for consistency report,
but I wasn't able to check it this week - it was very busy week for me.

best regards
Grzegorz Grzybek

wt., 15 sty 2019 o 18:35 Grzegorz Grzybek  napisał(a):

> Hello
>
> Looks like it's going to be kind of "release train" :)
>
> I've prepared local versions of:
>  - pax-transx
>  - pax-jms
>  - pax-jdbc
>  - pax-cdi
>  - pax-web
>  - karaf itself
>
> I aligned the differences, so there's now 24 "duplicates" instead of 47.
> Out of these 21, 17 are spring duplicates (simply because Karaf uses 5.0
> and 5.1). and remaining ones are quite irrelevant (JPA 2.1 + 2.2 for
> example in openjpa and openjpa3 features).
>
> I could successfully use xbean 4.12 across pax-cdi, pax-web and karaf
> (using xbean-asm7-shaded) - all pax-cdi and pax-web tests pass.
> commons-codec 1.11 is included (single version of this library across all
> the above projects)
>
> about pax-cdi - that's interesting - I could successfully clear some
> problems, use latest weld and openwebbeans (CDI 1.2) and use xbean 4.12
>
> Tomorrow I'm going to release all 5 above pax-* projects.
>
> best regards
> Grzegorz Grzybek
>
> pon., 14 sty 2019 o 15:52 Grzegorz Grzybek 
> napisał(a):
>
>> Hello
>>
>> So far so good. I used single xbean in pax-cdi 1.0.1-SNAPSHOT (probably
>> I'll end up with 1.1.0-SNAPSHOT) - xbean 4.12 (with xbean-asm7-shaded).
>>
>> Karaf tests work fine and we can have single set of xbean-* artifacts.
>>
>> regards
>> Grzegorz Grzybek
>>
>> pon., 14 sty 2019 o 13:44 Jean-Baptiste Onofré 
>> napisał(a):
>>
>>> OK, go for xbean and commons-codec.
>>>
>>> Thanks,
>>> Regards
>>> JB
>>>
>>> On 14/01/2019 13:38, Grzegorz Grzybek wrote:
>>> > Thanks for reporting alignment problems
>>> >
>>> > Here's the report:
>>> > http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml (see
>>> my
>>> > previous emails about how to generate it[1]).
>>> >
>>> > Somehow pax-web 7.2.6 can't get into Maven Central. But as you pointed
>>> out,
>>> > I think it's worth doing next pax-cdi release too (version alignment
>>> only).
>>> >
>>> > JB - please leave xbean and commons-codec to me - I'll have them
>>> aligned ok?
>>> >
>>> > regards
>>> > Grzegorz Grzybek
>>> > ===
>>> > [1]:
>>> >
>>> http://karaf.922171.n3.nabble.com/Version-alignment-report-for-Karaf-4-2-3-SNAPSHOT-1-2-td4054786.html
>>> >
>>> >
>>> >
>>> > pon., 14 sty 2019 o 13:34 Jean-Baptiste Onofré 
>>> napisał(a):
>>> >
>>> >> Hi Robert,
>>> >>
>>> >> already done on a local branch. I'm creating the corresponding Jira.
>>> >>
>>> >> Thanks,
>>> >> Regards
>>> >> JB
>>> >>
>>> >> On 14/01/2019 13:26, Robert Varga wrote:
>>> >>> On 14/01/2019 13:14, Jean-Baptiste Onofré wrote:
>>>  Good point.
>>> 
>>>  Greg or I will tackle this.
>>> >>>
>>> >>>
>>> >>> Hello guys,
>>> >>>
>>> >>> while you are looking at this, would it make sense to align
>>> >>> commons-codec at upgraded 1.11 release?
>>> >>>
>>> >>> Thanks,
>>> >>> Robert
>>> >>>
>>> >>
>>> >> --
>>> >> Jean-Baptiste Onofré
>>> >> jbono...@apache.org
>>> >> http://blog.nanthrax.net
>>> >> Talend - http://www.talend.com
>>> >>
>>> >
>>>
>>> --
>>> Jean-Baptiste Onofré
>>> jbono...@apache.org
>>> http://blog.nanthrax.net
>>> Talend - http://www.talend.com
>>>
>>


Re: [HEADS UP] Releases schedule

2019-01-15 Thread Grzegorz Grzybek
Hello

Looks like it's going to be kind of "release train" :)

I've prepared local versions of:
 - pax-transx
 - pax-jms
 - pax-jdbc
 - pax-cdi
 - pax-web
 - karaf itself

I aligned the differences, so there's now 24 "duplicates" instead of 47.
Out of these 21, 17 are spring duplicates (simply because Karaf uses 5.0
and 5.1). and remaining ones are quite irrelevant (JPA 2.1 + 2.2 for
example in openjpa and openjpa3 features).

I could successfully use xbean 4.12 across pax-cdi, pax-web and karaf
(using xbean-asm7-shaded) - all pax-cdi and pax-web tests pass.
commons-codec 1.11 is included (single version of this library across all
the above projects)

about pax-cdi - that's interesting - I could successfully clear some
problems, use latest weld and openwebbeans (CDI 1.2) and use xbean 4.12

Tomorrow I'm going to release all 5 above pax-* projects.

best regards
Grzegorz Grzybek

pon., 14 sty 2019 o 15:52 Grzegorz Grzybek 
napisał(a):

> Hello
>
> So far so good. I used single xbean in pax-cdi 1.0.1-SNAPSHOT (probably
> I'll end up with 1.1.0-SNAPSHOT) - xbean 4.12 (with xbean-asm7-shaded).
>
> Karaf tests work fine and we can have single set of xbean-* artifacts.
>
> regards
> Grzegorz Grzybek
>
> pon., 14 sty 2019 o 13:44 Jean-Baptiste Onofré 
> napisał(a):
>
>> OK, go for xbean and commons-codec.
>>
>> Thanks,
>> Regards
>> JB
>>
>> On 14/01/2019 13:38, Grzegorz Grzybek wrote:
>> > Thanks for reporting alignment problems
>> >
>> > Here's the report:
>> > http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml (see my
>> > previous emails about how to generate it[1]).
>> >
>> > Somehow pax-web 7.2.6 can't get into Maven Central. But as you pointed
>> out,
>> > I think it's worth doing next pax-cdi release too (version alignment
>> only).
>> >
>> > JB - please leave xbean and commons-codec to me - I'll have them
>> aligned ok?
>> >
>> > regards
>> > Grzegorz Grzybek
>> > ===
>> > [1]:
>> >
>> http://karaf.922171.n3.nabble.com/Version-alignment-report-for-Karaf-4-2-3-SNAPSHOT-1-2-td4054786.html
>> >
>> >
>> >
>> > pon., 14 sty 2019 o 13:34 Jean-Baptiste Onofré 
>> napisał(a):
>> >
>> >> Hi Robert,
>> >>
>> >> already done on a local branch. I'm creating the corresponding Jira.
>> >>
>> >> Thanks,
>> >> Regards
>> >> JB
>> >>
>> >> On 14/01/2019 13:26, Robert Varga wrote:
>> >>> On 14/01/2019 13:14, Jean-Baptiste Onofré wrote:
>>  Good point.
>> 
>>  Greg or I will tackle this.
>> >>>
>> >>>
>> >>> Hello guys,
>> >>>
>> >>> while you are looking at this, would it make sense to align
>> >>> commons-codec at upgraded 1.11 release?
>> >>>
>> >>> Thanks,
>> >>> Robert
>> >>>
>> >>
>> >> --
>> >> Jean-Baptiste Onofré
>> >> jbono...@apache.org
>> >> http://blog.nanthrax.net
>> >> Talend - http://www.talend.com
>> >>
>> >
>>
>> --
>> Jean-Baptiste Onofré
>> jbono...@apache.org
>> http://blog.nanthrax.net
>> Talend - http://www.talend.com
>>
>


Re: [HEADS UP] Releases schedule

2019-01-14 Thread Grzegorz Grzybek
Hello

So far so good. I used single xbean in pax-cdi 1.0.1-SNAPSHOT (probably
I'll end up with 1.1.0-SNAPSHOT) - xbean 4.12 (with xbean-asm7-shaded).

Karaf tests work fine and we can have single set of xbean-* artifacts.

regards
Grzegorz Grzybek

pon., 14 sty 2019 o 13:44 Jean-Baptiste Onofré  napisał(a):

> OK, go for xbean and commons-codec.
>
> Thanks,
> Regards
> JB
>
> On 14/01/2019 13:38, Grzegorz Grzybek wrote:
> > Thanks for reporting alignment problems
> >
> > Here's the report:
> > http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml (see my
> > previous emails about how to generate it[1]).
> >
> > Somehow pax-web 7.2.6 can't get into Maven Central. But as you pointed
> out,
> > I think it's worth doing next pax-cdi release too (version alignment
> only).
> >
> > JB - please leave xbean and commons-codec to me - I'll have them aligned
> ok?
> >
> > regards
> > Grzegorz Grzybek
> > ===
> > [1]:
> >
> http://karaf.922171.n3.nabble.com/Version-alignment-report-for-Karaf-4-2-3-SNAPSHOT-1-2-td4054786.html
> >
> >
> >
> > pon., 14 sty 2019 o 13:34 Jean-Baptiste Onofré 
> napisał(a):
> >
> >> Hi Robert,
> >>
> >> already done on a local branch. I'm creating the corresponding Jira.
> >>
> >> Thanks,
> >> Regards
> >> JB
> >>
> >> On 14/01/2019 13:26, Robert Varga wrote:
> >>> On 14/01/2019 13:14, Jean-Baptiste Onofré wrote:
>  Good point.
> 
>  Greg or I will tackle this.
> >>>
> >>>
> >>> Hello guys,
> >>>
> >>> while you are looking at this, would it make sense to align
> >>> commons-codec at upgraded 1.11 release?
> >>>
> >>> Thanks,
> >>> Robert
> >>>
> >>
> >> --
> >> Jean-Baptiste Onofré
> >> jbono...@apache.org
> >> http://blog.nanthrax.net
> >> Talend - http://www.talend.com
> >>
> >
>
> --
> Jean-Baptiste Onofré
> jbono...@apache.org
> http://blog.nanthrax.net
> Talend - http://www.talend.com
>


Re: [HEADS UP] Releases schedule

2019-01-14 Thread Jean-Baptiste Onofré
OK, go for xbean and commons-codec.

Thanks,
Regards
JB

On 14/01/2019 13:38, Grzegorz Grzybek wrote:
> Thanks for reporting alignment problems
> 
> Here's the report:
> http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml (see my
> previous emails about how to generate it[1]).
> 
> Somehow pax-web 7.2.6 can't get into Maven Central. But as you pointed out,
> I think it's worth doing next pax-cdi release too (version alignment only).
> 
> JB - please leave xbean and commons-codec to me - I'll have them aligned ok?
> 
> regards
> Grzegorz Grzybek
> ===
> [1]:
> http://karaf.922171.n3.nabble.com/Version-alignment-report-for-Karaf-4-2-3-SNAPSHOT-1-2-td4054786.html
> 
> 
> 
> pon., 14 sty 2019 o 13:34 Jean-Baptiste Onofré  napisał(a):
> 
>> Hi Robert,
>>
>> already done on a local branch. I'm creating the corresponding Jira.
>>
>> Thanks,
>> Regards
>> JB
>>
>> On 14/01/2019 13:26, Robert Varga wrote:
>>> On 14/01/2019 13:14, Jean-Baptiste Onofré wrote:
 Good point.

 Greg or I will tackle this.
>>>
>>>
>>> Hello guys,
>>>
>>> while you are looking at this, would it make sense to align
>>> commons-codec at upgraded 1.11 release?
>>>
>>> Thanks,
>>> Robert
>>>
>>
>> --
>> Jean-Baptiste Onofré
>> jbono...@apache.org
>> http://blog.nanthrax.net
>> Talend - http://www.talend.com
>>
> 

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-14 Thread Grzegorz Grzybek
Thanks for reporting alignment problems

Here's the report:
http://people.apache.org/~ggrzybek/bundle-report-full-karaf.xml (see my
previous emails about how to generate it[1]).

Somehow pax-web 7.2.6 can't get into Maven Central. But as you pointed out,
I think it's worth doing next pax-cdi release too (version alignment only).

JB - please leave xbean and commons-codec to me - I'll have them aligned ok?

regards
Grzegorz Grzybek
===
[1]:
http://karaf.922171.n3.nabble.com/Version-alignment-report-for-Karaf-4-2-3-SNAPSHOT-1-2-td4054786.html



pon., 14 sty 2019 o 13:34 Jean-Baptiste Onofré  napisał(a):

> Hi Robert,
>
> already done on a local branch. I'm creating the corresponding Jira.
>
> Thanks,
> Regards
> JB
>
> On 14/01/2019 13:26, Robert Varga wrote:
> > On 14/01/2019 13:14, Jean-Baptiste Onofré wrote:
> >> Good point.
> >>
> >> Greg or I will tackle this.
> >
> >
> > Hello guys,
> >
> > while you are looking at this, would it make sense to align
> > commons-codec at upgraded 1.11 release?
> >
> > Thanks,
> > Robert
> >
>
> --
> Jean-Baptiste Onofré
> jbono...@apache.org
> http://blog.nanthrax.net
> Talend - http://www.talend.com
>


Re: [HEADS UP] Releases schedule

2019-01-14 Thread Jean-Baptiste Onofré
Hi Robert,

already done on a local branch. I'm creating the corresponding Jira.

Thanks,
Regards
JB

On 14/01/2019 13:26, Robert Varga wrote:
> On 14/01/2019 13:14, Jean-Baptiste Onofré wrote:
>> Good point.
>>
>> Greg or I will tackle this.
> 
> 
> Hello guys,
> 
> while you are looking at this, would it make sense to align
> commons-codec at upgraded 1.11 release?
> 
> Thanks,
> Robert
> 

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-14 Thread Grzegorz Grzybek
Hmm, here’s part of the report for latest Karaf:
bundle feature
mvn:org.apache.xbean/xbean-asm5-shaded/4.3 openjpa/3.0.0
mvn:org.apache.xbean/xbean-asm5-shaded/4.4 pax-cdi-openwebbeans/1.0.0
mvn:org.apache.xbean/xbean-asm6-shaded/4.6 pax-cdi-weld/1.0.0
mvn:org.apache.xbean/xbean-asm6-shaded/4.9 openjpa3/3.0.0
mvn:org.apache.xbean/xbean-bundleutils/4.4 pax-cdi-openwebbans/1.0.0
mvn:org.apache.xbean/xbean-bundleutils/4.6
pax-cdi-weld/1.0.0pax-web-core/7.2.5
mvn:org.apache.xbean/xbean-finder-shaded/4.4 pax-cdi-openwebbeans/1.0.0
mvn:org.apache.xbean/xbean-finder-shaded/4.6 pax-cdi-weld/1.0.0
mvn:org.apache.xbean/xbean-finder/4.6 pax-web-core/7.2.5
mvn:org.apache.xbean/xbean-naming/4.12 jndi/4.2.3.SNAPSHOT
mvn:org.apache.xbean/xbean-reflect/4.6 pax-web-core/7.2.5

So looks like it’s more pax-cdi problem…

but I’ll check what can I do.
regards
Grzegorz Grzybek

pon., 14 sty 2019 o 12:54 Siano, Stephan  napisał(a):

> Hi Grzegorz,
>
> When you are about to align dependency versions between pax-web and karaf,
> is it also possible to have a common xbean-version? Karaf references 4.12,
> whereas pax-web references 4.6, which results in a rather weird mix between
> these two versions in the resulting karaf container (I could not find any
> issues with it, but it's still odd...).
>
> Best regards
> Stephan
>
> -Original Message-
> From: Grzegorz Grzybek 
> Sent: Montag, 14. Januar 2019 08:06
> To: dev@karaf.apache.org
> Subject: Re: [HEADS UP] Releases schedule
>
> Hello
>
> Thanks for heads up. Because I updated pax-url to 2.6.1, I want to release
> pax-web 7.2.x with similar update (because current pax-web in Karaf uses
> pax-url 2.5.2). But that's not critical.
>
> regards
> Grzegorz Grzybek
>
> pon., 14 sty 2019 o 06:48 Jean-Baptiste Onofré 
> napisał(a):
>
> > Hi,
> >
> > We are a bit late on the release schedule, so, I will move forward this
> > week.
> >
> > - Regarding Karaf 4.2.3, I plan to propose to vote by the end of this
> > week. We need some dependencies releases (like Aries Proxy), and I have
> > to find a key for my Windows VM to test some fixes, but it should be OK
> > for this week. Once 4.2.3 will be tagged, I will create the karaf-4.2.x
> > branch and move master to 4.3.x.
> > - Karaf Cave 4.1.2 should be in vote today or tomorrow. Once submitted
> > to vote, I will start the refactoring on master as Cave 4.2.x.
> > - Karaf Decanter 2.2.0 preparation has started. I think I will be able
> > to submit to vote next week.
> > - Karaf Cellar 4.x preparation have started as well. Vote should happen
> > in 2 or 3 weeks.
> >
> > I keep you posted.
> >
> > Regards
> > JB
> > --
> > Jean-Baptiste Onofré
> > jbono...@apache.org
> > http://blog.nanthrax.net
> > Talend - http://www.talend.com
> >
>


Re: [HEADS UP] Releases schedule

2019-01-14 Thread Robert Varga
On 14/01/2019 13:14, Jean-Baptiste Onofré wrote:
> Good point.
> 
> Greg or I will tackle this.


Hello guys,

while you are looking at this, would it make sense to align
commons-codec at upgraded 1.11 release?

Thanks,
Robert



signature.asc
Description: OpenPGP digital signature


Re: [HEADS UP] Releases schedule

2019-01-14 Thread Jean-Baptiste Onofré
Good point.

Greg or I will tackle this.

Regards
JB

On 14/01/2019 12:54, Siano, Stephan wrote:
> Hi Grzegorz,
> 
> When you are about to align dependency versions between pax-web and karaf, is 
> it also possible to have a common xbean-version? Karaf references 4.12, 
> whereas pax-web references 4.6, which results in a rather weird mix between 
> these two versions in the resulting karaf container (I could not find any 
> issues with it, but it's still odd...).
> 
> Best regards
> Stephan
> 
> -Original Message-
> From: Grzegorz Grzybek  
> Sent: Montag, 14. Januar 2019 08:06
> To: dev@karaf.apache.org
> Subject: Re: [HEADS UP] Releases schedule
> 
> Hello
> 
> Thanks for heads up. Because I updated pax-url to 2.6.1, I want to release
> pax-web 7.2.x with similar update (because current pax-web in Karaf uses
> pax-url 2.5.2). But that's not critical.
> 
> regards
> Grzegorz Grzybek
> 
> pon., 14 sty 2019 o 06:48 Jean-Baptiste Onofré  napisał(a):
> 
>> Hi,
>>
>> We are a bit late on the release schedule, so, I will move forward this
>> week.
>>
>> - Regarding Karaf 4.2.3, I plan to propose to vote by the end of this
>> week. We need some dependencies releases (like Aries Proxy), and I have
>> to find a key for my Windows VM to test some fixes, but it should be OK
>> for this week. Once 4.2.3 will be tagged, I will create the karaf-4.2.x
>> branch and move master to 4.3.x.
>> - Karaf Cave 4.1.2 should be in vote today or tomorrow. Once submitted
>> to vote, I will start the refactoring on master as Cave 4.2.x.
>> - Karaf Decanter 2.2.0 preparation has started. I think I will be able
>> to submit to vote next week.
>> - Karaf Cellar 4.x preparation have started as well. Vote should happen
>> in 2 or 3 weeks.
>>
>> I keep you posted.
>>
>> Regards
>> JB
>> --
>> Jean-Baptiste Onofré
>> jbono...@apache.org
>> http://blog.nanthrax.net
>> Talend - http://www.talend.com
>>

-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2019-01-14 Thread Grzegorz Grzybek
Stephen - good idea - let me check

regards
Grzegorz Grzybek

pon., 14 sty 2019 o 12:54 Siano, Stephan  napisał(a):

> Hi Grzegorz,
>
> When you are about to align dependency versions between pax-web and karaf,
> is it also possible to have a common xbean-version? Karaf references 4.12,
> whereas pax-web references 4.6, which results in a rather weird mix between
> these two versions in the resulting karaf container (I could not find any
> issues with it, but it's still odd...).
>
> Best regards
> Stephan
>
> -Original Message-
> From: Grzegorz Grzybek 
> Sent: Montag, 14. Januar 2019 08:06
> To: dev@karaf.apache.org
> Subject: Re: [HEADS UP] Releases schedule
>
> Hello
>
> Thanks for heads up. Because I updated pax-url to 2.6.1, I want to release
> pax-web 7.2.x with similar update (because current pax-web in Karaf uses
> pax-url 2.5.2). But that's not critical.
>
> regards
> Grzegorz Grzybek
>
> pon., 14 sty 2019 o 06:48 Jean-Baptiste Onofré 
> napisał(a):
>
> > Hi,
> >
> > We are a bit late on the release schedule, so, I will move forward this
> > week.
> >
> > - Regarding Karaf 4.2.3, I plan to propose to vote by the end of this
> > week. We need some dependencies releases (like Aries Proxy), and I have
> > to find a key for my Windows VM to test some fixes, but it should be OK
> > for this week. Once 4.2.3 will be tagged, I will create the karaf-4.2.x
> > branch and move master to 4.3.x.
> > - Karaf Cave 4.1.2 should be in vote today or tomorrow. Once submitted
> > to vote, I will start the refactoring on master as Cave 4.2.x.
> > - Karaf Decanter 2.2.0 preparation has started. I think I will be able
> > to submit to vote next week.
> > - Karaf Cellar 4.x preparation have started as well. Vote should happen
> > in 2 or 3 weeks.
> >
> > I keep you posted.
> >
> > Regards
> > JB
> > --
> > Jean-Baptiste Onofré
> > jbono...@apache.org
> > http://blog.nanthrax.net
> > Talend - http://www.talend.com
> >
>


RE: [HEADS UP] Releases schedule

2019-01-14 Thread Siano, Stephan
Hi Grzegorz,

When you are about to align dependency versions between pax-web and karaf, is 
it also possible to have a common xbean-version? Karaf references 4.12, whereas 
pax-web references 4.6, which results in a rather weird mix between these two 
versions in the resulting karaf container (I could not find any issues with it, 
but it's still odd...).

Best regards
Stephan

-Original Message-
From: Grzegorz Grzybek  
Sent: Montag, 14. Januar 2019 08:06
To: dev@karaf.apache.org
Subject: Re: [HEADS UP] Releases schedule

Hello

Thanks for heads up. Because I updated pax-url to 2.6.1, I want to release
pax-web 7.2.x with similar update (because current pax-web in Karaf uses
pax-url 2.5.2). But that's not critical.

regards
Grzegorz Grzybek

pon., 14 sty 2019 o 06:48 Jean-Baptiste Onofré  napisał(a):

> Hi,
>
> We are a bit late on the release schedule, so, I will move forward this
> week.
>
> - Regarding Karaf 4.2.3, I plan to propose to vote by the end of this
> week. We need some dependencies releases (like Aries Proxy), and I have
> to find a key for my Windows VM to test some fixes, but it should be OK
> for this week. Once 4.2.3 will be tagged, I will create the karaf-4.2.x
> branch and move master to 4.3.x.
> - Karaf Cave 4.1.2 should be in vote today or tomorrow. Once submitted
> to vote, I will start the refactoring on master as Cave 4.2.x.
> - Karaf Decanter 2.2.0 preparation has started. I think I will be able
> to submit to vote next week.
> - Karaf Cellar 4.x preparation have started as well. Vote should happen
> in 2 or 3 weeks.
>
> I keep you posted.
>
> Regards
> JB
> --
> Jean-Baptiste Onofré
> jbono...@apache.org
> http://blog.nanthrax.net
> Talend - http://www.talend.com
>


Re: [HEADS UP] Releases schedule

2019-01-13 Thread Grzegorz Grzybek
Hello

Thanks for heads up. Because I updated pax-url to 2.6.1, I want to release
pax-web 7.2.x with similar update (because current pax-web in Karaf uses
pax-url 2.5.2). But that's not critical.

regards
Grzegorz Grzybek

pon., 14 sty 2019 o 06:48 Jean-Baptiste Onofré  napisał(a):

> Hi,
>
> We are a bit late on the release schedule, so, I will move forward this
> week.
>
> - Regarding Karaf 4.2.3, I plan to propose to vote by the end of this
> week. We need some dependencies releases (like Aries Proxy), and I have
> to find a key for my Windows VM to test some fixes, but it should be OK
> for this week. Once 4.2.3 will be tagged, I will create the karaf-4.2.x
> branch and move master to 4.3.x.
> - Karaf Cave 4.1.2 should be in vote today or tomorrow. Once submitted
> to vote, I will start the refactoring on master as Cave 4.2.x.
> - Karaf Decanter 2.2.0 preparation has started. I think I will be able
> to submit to vote next week.
> - Karaf Cellar 4.x preparation have started as well. Vote should happen
> in 2 or 3 weeks.
>
> I keep you posted.
>
> Regards
> JB
> --
> Jean-Baptiste Onofré
> jbono...@apache.org
> http://blog.nanthrax.net
> Talend - http://www.talend.com
>


Re: [HEADS UP] Releases schedule

2019-01-13 Thread Francois Papon
Hi JB,

Thanks for the report!

Regards,

François Papon
fpa...@apache.org

Le 14/01/2019 à 09:42, Jean-Baptiste Onofré a écrit :
> Hi,
>
> We are a bit late on the release schedule, so, I will move forward this
> week.
>
> - Regarding Karaf 4.2.3, I plan to propose to vote by the end of this
> week. We need some dependencies releases (like Aries Proxy), and I have
> to find a key for my Windows VM to test some fixes, but it should be OK
> for this week. Once 4.2.3 will be tagged, I will create the karaf-4.2.x
> branch and move master to 4.3.x.
> - Karaf Cave 4.1.2 should be in vote today or tomorrow. Once submitted
> to vote, I will start the refactoring on master as Cave 4.2.x.
> - Karaf Decanter 2.2.0 preparation has started. I think I will be able
> to submit to vote next week.
> - Karaf Cellar 4.x preparation have started as well. Vote should happen
> in 2 or 3 weeks.
>
> I keep you posted.
>
> Regards
> JB


[HEADS UP] Releases schedule

2019-01-13 Thread Jean-Baptiste Onofré
Hi,

We are a bit late on the release schedule, so, I will move forward this
week.

- Regarding Karaf 4.2.3, I plan to propose to vote by the end of this
week. We need some dependencies releases (like Aries Proxy), and I have
to find a key for my Windows VM to test some fixes, but it should be OK
for this week. Once 4.2.3 will be tagged, I will create the karaf-4.2.x
branch and move master to 4.3.x.
- Karaf Cave 4.1.2 should be in vote today or tomorrow. Once submitted
to vote, I will start the refactoring on master as Cave 4.2.x.
- Karaf Decanter 2.2.0 preparation has started. I think I will be able
to submit to vote next week.
- Karaf Cellar 4.x preparation have started as well. Vote should happen
in 2 or 3 weeks.

I keep you posted.

Regards
JB
-- 
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2017-05-03 Thread Jean-Baptiste Onofré

Hi folks,

Just a quick update about this.

During Cellar release preparation, I found an important issue when a node joins 
a cluster group. I'm fixing that and I will submit the release to vote.

Cave will come just after.

Regards
JB

On 04/24/2017 07:30 AM, Jean-Baptiste Onofré wrote:

Hi guys,

just to let you know that I'm working on Cellar 4.1.0 and Cave 4.1.0 releases.

Cellar should come first, Cave will follow.

For the container, I will let you know next week.

Thanks,
Regards
JB


--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


[HEADS UP] Releases schedule

2017-04-23 Thread Jean-Baptiste Onofré

Hi guys,

just to let you know that I'm working on Cellar 4.1.0 and Cave 4.1.0 releases.

Cellar should come first, Cave will follow.

For the container, I will let you know next week.

Thanks,
Regards
JB
--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2017-04-06 Thread Krzysztof Sobkowiak
Thanks for the update

Regards
Krzysztof

On 06.04.2017 20:43, Jean-Baptiste Onofré wrote:
> Hey,
>
> I will plan a 3.0.9 release next week.
>
> Regards
> JB
>
> On 04/06/2017 08:13 PM, Krzysztof Sobkowiak wrote:
>> Hi
>>
>> Any plans to release 3.0.9? I think this is EOL and I don't wait for 
>> anything important for ServiceMix6 in this release. I only want to be sure 
>> whether I can close (no-fix) one minor issue in ServiceMix 6, which needs 
>> the 3.0.9 to be fixed.
>>
>> Kindly regards
>> Krzysztof
>>
>> On 27.03.2017 13:39, Jean-Baptiste Onofré wrote:
>>> Hi Stephen,
>>>
>>> I'm merging the last changes today. I will submit 4.1.1 release (and 4.0.9) 
>>> to vote tonight.
>>>
>>> Regards
>>> JB
>>>
>>> On 03/27/2017 10:45 AM, Stephen Kitt wrote:
 Hi Jean-Baptiste,

 Is there anything we can do to help?

 Regards,

 Stephen


 On Thu, 23 Mar 2017 13:32:32 +0100
 Jean-Baptiste Onofré  wrote:

> Hi guys,
>
> just to let you know that the merge of my local branches is a bit
> longer than expected. The releases will happen pretty soon, probably
> during the week end.
>
> Sorry about this delay.
>
> Regards
> JB
>
> On 03/14/2017 11:08 PM, Jean-Baptiste Onofré wrote:
>> Hi guys,
>>
>> I fixed almost all issues that we wanted for 4.1.1 and 4.0.9 on
>> local branches.
>>
>> I will merge today and tomorrow.
>>
>> If no objection, I plan to release both 4.1.1 and 4.0.9 during the
>> week end.
>>
>> Regards
>> JB
>>
>> On 03/05/2017 02:37 PM, Jean-Baptiste Onofré wrote:
>>> Hi guys,
>>>
>>> due to a couple of severe issue we found (in the
>>> karaf-maven-plugin, ...),  I take two extra days for the releases
>>> preparation.
>>>
>>> I keep you posted with more details asap.
>>>
>>> Regards
>>> JB
>>>
>>> On 02/20/2017 02:30 PM, Jean-Baptiste Onofré wrote:
 Hi guys,

 I'm finally back from vacation ;)

 And so, I will bother you again with the releases schedule.

 Here's the proposed plan:

 - Karaf Decanter 1.4.0 is planned for end of next week
 - Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or
 the following week (depending if I can include the fixes and new
 features I plan)
 - Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2
 or 3 weeks (I'm checking the Jira right now)

 Thanks !
 Regards
 JB
>>>
>>
>

>>>
>>
>

-- 
Krzysztof Sobkowiak (@ksobkowiak)

JEE & OSS Architect, Integration Architect
Apache Software Foundation Member (http://apache.org/)
Apache ServiceMix Committer & PMC Member (http://servicemix.apache.org/)
Senior Solution Architect @ Capgemini SSC (http://www.capgeminisoftware.pl/)


Re: [HEADS UP] Releases schedule

2017-04-06 Thread Jean-Baptiste Onofré

Hey,

I will plan a 3.0.9 release next week.

Regards
JB

On 04/06/2017 08:13 PM, Krzysztof Sobkowiak wrote:

Hi

Any plans to release 3.0.9? I think this is EOL and I don't wait for anything 
important for ServiceMix6 in this release. I only want to be sure whether I can 
close (no-fix) one minor issue in ServiceMix 6, which needs the 3.0.9 to be 
fixed.

Kindly regards
Krzysztof

On 27.03.2017 13:39, Jean-Baptiste Onofré wrote:

Hi Stephen,

I'm merging the last changes today. I will submit 4.1.1 release (and 4.0.9) to 
vote tonight.

Regards
JB

On 03/27/2017 10:45 AM, Stephen Kitt wrote:

Hi Jean-Baptiste,

Is there anything we can do to help?

Regards,

Stephen


On Thu, 23 Mar 2017 13:32:32 +0100
Jean-Baptiste Onofré  wrote:


Hi guys,

just to let you know that the merge of my local branches is a bit
longer than expected. The releases will happen pretty soon, probably
during the week end.

Sorry about this delay.

Regards
JB

On 03/14/2017 11:08 PM, Jean-Baptiste Onofré wrote:

Hi guys,

I fixed almost all issues that we wanted for 4.1.1 and 4.0.9 on
local branches.

I will merge today and tomorrow.

If no objection, I plan to release both 4.1.1 and 4.0.9 during the
week end.

Regards
JB

On 03/05/2017 02:37 PM, Jean-Baptiste Onofré wrote:

Hi guys,

due to a couple of severe issue we found (in the
karaf-maven-plugin, ...),  I take two extra days for the releases
preparation.

I keep you posted with more details asap.

Regards
JB

On 02/20/2017 02:30 PM, Jean-Baptiste Onofré wrote:

Hi guys,

I'm finally back from vacation ;)

And so, I will bother you again with the releases schedule.

Here's the proposed plan:

- Karaf Decanter 1.4.0 is planned for end of next week
- Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or
the following week (depending if I can include the fixes and new
features I plan)
- Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2
or 3 weeks (I'm checking the Jira right now)

Thanks !
Regards
JB














--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2017-04-06 Thread Krzysztof Sobkowiak
Hi

Any plans to release 3.0.9? I think this is EOL and I don't wait for anything 
important for ServiceMix6 in this release. I only want to be sure whether I can 
close (no-fix) one minor issue in ServiceMix 6, which needs the 3.0.9 to be 
fixed.

Kindly regards
Krzysztof

On 27.03.2017 13:39, Jean-Baptiste Onofré wrote:
> Hi Stephen,
>
> I'm merging the last changes today. I will submit 4.1.1 release (and 4.0.9) 
> to vote tonight.
>
> Regards
> JB
>
> On 03/27/2017 10:45 AM, Stephen Kitt wrote:
>> Hi Jean-Baptiste,
>>
>> Is there anything we can do to help?
>>
>> Regards,
>>
>> Stephen
>>
>>
>> On Thu, 23 Mar 2017 13:32:32 +0100
>> Jean-Baptiste Onofré  wrote:
>>
>>> Hi guys,
>>>
>>> just to let you know that the merge of my local branches is a bit
>>> longer than expected. The releases will happen pretty soon, probably
>>> during the week end.
>>>
>>> Sorry about this delay.
>>>
>>> Regards
>>> JB
>>>
>>> On 03/14/2017 11:08 PM, Jean-Baptiste Onofré wrote:
 Hi guys,

 I fixed almost all issues that we wanted for 4.1.1 and 4.0.9 on
 local branches.

 I will merge today and tomorrow.

 If no objection, I plan to release both 4.1.1 and 4.0.9 during the
 week end.

 Regards
 JB

 On 03/05/2017 02:37 PM, Jean-Baptiste Onofré wrote:
> Hi guys,
>
> due to a couple of severe issue we found (in the
> karaf-maven-plugin, ...),  I take two extra days for the releases
> preparation.
>
> I keep you posted with more details asap.
>
> Regards
> JB
>
> On 02/20/2017 02:30 PM, Jean-Baptiste Onofré wrote:
>> Hi guys,
>>
>> I'm finally back from vacation ;)
>>
>> And so, I will bother you again with the releases schedule.
>>
>> Here's the proposed plan:
>>
>> - Karaf Decanter 1.4.0 is planned for end of next week
>> - Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or
>> the following week (depending if I can include the fixes and new
>> features I plan)
>> - Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2
>> or 3 weeks (I'm checking the Jira right now)
>>
>> Thanks !
>> Regards
>> JB
>

>>>
>>
>

-- 
Krzysztof Sobkowiak (@ksobkowiak)

JEE & OSS Architect, Integration Architect
Apache Software Foundation Member (http://apache.org/)
Apache ServiceMix Committer & PMC Member (http://servicemix.apache.org/)
Senior Solution Architect @ Capgemini SSC (http://www.capgeminisoftware.pl/)


Re: [HEADS UP] Releases schedule

2017-03-27 Thread Jean-Baptiste Onofré

Hi Stephen,

I'm merging the last changes today. I will submit 4.1.1 release (and 4.0.9) to 
vote tonight.


Regards
JB

On 03/27/2017 10:45 AM, Stephen Kitt wrote:

Hi Jean-Baptiste,

Is there anything we can do to help?

Regards,

Stephen


On Thu, 23 Mar 2017 13:32:32 +0100
Jean-Baptiste Onofré  wrote:


Hi guys,

just to let you know that the merge of my local branches is a bit
longer than expected. The releases will happen pretty soon, probably
during the week end.

Sorry about this delay.

Regards
JB

On 03/14/2017 11:08 PM, Jean-Baptiste Onofré wrote:

Hi guys,

I fixed almost all issues that we wanted for 4.1.1 and 4.0.9 on
local branches.

I will merge today and tomorrow.

If no objection, I plan to release both 4.1.1 and 4.0.9 during the
week end.

Regards
JB

On 03/05/2017 02:37 PM, Jean-Baptiste Onofré wrote:

Hi guys,

due to a couple of severe issue we found (in the
karaf-maven-plugin, ...),  I take two extra days for the releases
preparation.

I keep you posted with more details asap.

Regards
JB

On 02/20/2017 02:30 PM, Jean-Baptiste Onofré wrote:

Hi guys,

I'm finally back from vacation ;)

And so, I will bother you again with the releases schedule.

Here's the proposed plan:

- Karaf Decanter 1.4.0 is planned for end of next week
- Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or
the following week (depending if I can include the fixes and new
features I plan)
- Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2
or 3 weeks (I'm checking the Jira right now)

Thanks !
Regards
JB










--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2017-03-27 Thread Stephen Kitt
Hi Jean-Baptiste,

Is there anything we can do to help?

Regards,

Stephen


On Thu, 23 Mar 2017 13:32:32 +0100
Jean-Baptiste Onofré  wrote:

> Hi guys,
> 
> just to let you know that the merge of my local branches is a bit
> longer than expected. The releases will happen pretty soon, probably
> during the week end.
> 
> Sorry about this delay.
> 
> Regards
> JB
> 
> On 03/14/2017 11:08 PM, Jean-Baptiste Onofré wrote:
> > Hi guys,
> >
> > I fixed almost all issues that we wanted for 4.1.1 and 4.0.9 on
> > local branches.
> >
> > I will merge today and tomorrow.
> >
> > If no objection, I plan to release both 4.1.1 and 4.0.9 during the
> > week end.
> >
> > Regards
> > JB
> >
> > On 03/05/2017 02:37 PM, Jean-Baptiste Onofré wrote:  
> >> Hi guys,
> >>
> >> due to a couple of severe issue we found (in the
> >> karaf-maven-plugin, ...),  I take two extra days for the releases
> >> preparation.
> >>
> >> I keep you posted with more details asap.
> >>
> >> Regards
> >> JB
> >>
> >> On 02/20/2017 02:30 PM, Jean-Baptiste Onofré wrote:  
> >>> Hi guys,
> >>>
> >>> I'm finally back from vacation ;)
> >>>
> >>> And so, I will bother you again with the releases schedule.
> >>>
> >>> Here's the proposed plan:
> >>>
> >>> - Karaf Decanter 1.4.0 is planned for end of next week
> >>> - Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or
> >>> the following week (depending if I can include the fixes and new
> >>> features I plan)
> >>> - Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2
> >>> or 3 weeks (I'm checking the Jira right now)
> >>>
> >>> Thanks !
> >>> Regards
> >>> JB  
> >>  
> >  
> 



pgpcCkipgqX6_.pgp
Description: OpenPGP digital signature


Re: [HEADS UP] Releases schedule

2017-03-23 Thread Jean-Baptiste Onofré

Hi guys,

just to let you know that the merge of my local branches is a bit longer than 
expected. The releases will happen pretty soon, probably during the week end.


Sorry about this delay.

Regards
JB

On 03/14/2017 11:08 PM, Jean-Baptiste Onofré wrote:

Hi guys,

I fixed almost all issues that we wanted for 4.1.1 and 4.0.9 on local branches.

I will merge today and tomorrow.

If no objection, I plan to release both 4.1.1 and 4.0.9 during the week end.

Regards
JB

On 03/05/2017 02:37 PM, Jean-Baptiste Onofré wrote:

Hi guys,

due to a couple of severe issue we found (in the karaf-maven-plugin, ...),  I
take two extra days for the releases preparation.

I keep you posted with more details asap.

Regards
JB

On 02/20/2017 02:30 PM, Jean-Baptiste Onofré wrote:

Hi guys,

I'm finally back from vacation ;)

And so, I will bother you again with the releases schedule.

Here's the proposed plan:

- Karaf Decanter 1.4.0 is planned for end of next week
- Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or the
following week (depending if I can include the fixes and new features I
plan)
- Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2 or 3
weeks (I'm checking the Jira right now)

Thanks !
Regards
JB






--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2017-03-14 Thread Jean-Baptiste Onofré

Hi guys,

I fixed almost all issues that we wanted for 4.1.1 and 4.0.9 on local branches.

I will merge today and tomorrow.

If no objection, I plan to release both 4.1.1 and 4.0.9 during the week end.

Regards
JB

On 03/05/2017 02:37 PM, Jean-Baptiste Onofré wrote:

Hi guys,

due to a couple of severe issue we found (in the karaf-maven-plugin, ...),  I
take two extra days for the releases preparation.

I keep you posted with more details asap.

Regards
JB

On 02/20/2017 02:30 PM, Jean-Baptiste Onofré wrote:

Hi guys,

I'm finally back from vacation ;)

And so, I will bother you again with the releases schedule.

Here's the proposed plan:

- Karaf Decanter 1.4.0 is planned for end of next week
- Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or the
following week (depending if I can include the fixes and new features I
plan)
- Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2 or 3
weeks (I'm checking the Jira right now)

Thanks !
Regards
JB




--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2017-03-11 Thread souciance
Hi Jean-Baptiste

Do you know if the fixes for e-mail alert in decanter will be in the 1.4
release?
I looked at the jira
https://issues.apache.org/jira/browse/KARAF/fixforversion/12338800/?selectedTab=com.atlassian.jira.jira-projects-plugin:version-summary-panel
and their state is unresolved so was wondering if they will be in 1.4 or in
a latter release? Thanks again

Best
Souciance



--
View this message in context: 
http://karaf.922171.n3.nabble.com/HEADS-UP-Releases-schedule-tp4049584p4049825.html
Sent from the Karaf - Dev mailing list archive at Nabble.com.


Re: [HEADS UP] Releases schedule

2017-03-04 Thread Jean-Baptiste Onofré

Hi guys,

due to a couple of severe issue we found (in the karaf-maven-plugin, 
...),  I take two extra days for the releases preparation.


I keep you posted with more details asap.

Regards
JB

On 02/20/2017 02:30 PM, Jean-Baptiste Onofré wrote:

Hi guys,

I'm finally back from vacation ;)

And so, I will bother you again with the releases schedule.

Here's the proposed plan:

- Karaf Decanter 1.4.0 is planned for end of next week
- Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or the
following week (depending if I can include the fixes and new features I
plan)
- Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2 or 3
weeks (I'm checking the Jira right now)

Thanks !
Regards
JB


--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2017-02-24 Thread Stephen Kitt
On Fri, 24 Feb 2017 18:22:38 +0100
Jean-Baptiste Onofré  wrote:
> absolutely. I will review the PRs over the week end.

Thanks a bunch! Of course the last one was 4999, not 4998 ;-).

Regards,

Stephen

> On 02/24/2017 06:18 PM, Stephen Kitt wrote:
> > Hi JB,
> >
> > On Mon, 20 Feb 2017 14:30:35 +0100
> > Jean-Baptiste Onofré  wrote:  
> >> Here's the proposed plan:
> >>
> >> - Karaf Decanter 1.4.0 is planned for end of next week
> >> - Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or
> >> the following week (depending if I can include the fixes and new
> >> features I plan)
> >> - Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2
> >> or 3 weeks (I'm checking the Jira right now)  
> >
> > Is there any chance we could get the fixes for 4997, 4998 and 4998
> > in? (I'm pushing patches right now...) This would be *extremely*
> > helpful for us in OpenDaylight.


pgpFmcKoDFyET.pgp
Description: OpenPGP digital signature


Re: [HEADS UP] Releases schedule

2017-02-24 Thread Jean-Baptiste Onofré

Hi Stephen,

absolutely. I will review the PRs over the week end.

Thanks !
Regards
JB

On 02/24/2017 06:18 PM, Stephen Kitt wrote:

Hi JB,

On Mon, 20 Feb 2017 14:30:35 +0100
Jean-Baptiste Onofré  wrote:

Here's the proposed plan:

- Karaf Decanter 1.4.0 is planned for end of next week
- Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or the
following week (depending if I can include the fixes and new features
I plan)
- Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2 or
3 weeks (I'm checking the Jira right now)


Is there any chance we could get the fixes for 4997, 4998 and 4998 in?
(I'm pushing patches right now...) This would be *extremely* helpful
for us in OpenDaylight.

Regards,

Stephen



--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2017-02-24 Thread Stephen Kitt
Hi JB,

On Mon, 20 Feb 2017 14:30:35 +0100
Jean-Baptiste Onofré  wrote:
> Here's the proposed plan:
> 
> - Karaf Decanter 1.4.0 is planned for end of next week
> - Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or the 
> following week (depending if I can include the fixes and new features
> I plan)
> - Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2 or
> 3 weeks (I'm checking the Jira right now)

Is there any chance we could get the fixes for 4997, 4998 and 4998 in?
(I'm pushing patches right now...) This would be *extremely* helpful
for us in OpenDaylight.

Regards,

Stephen


pgpibZfjXnseq.pgp
Description: OpenPGP digital signature


[HEADS UP] Releases schedule

2017-02-20 Thread Jean-Baptiste Onofré

Hi guys,

I'm finally back from vacation ;)

And so, I will bother you again with the releases schedule.

Here's the proposed plan:

- Karaf Decanter 1.4.0 is planned for end of next week
- Karaf Cellar 4.1.0 & 4.0.4 are planned for end of next week or the 
following week (depending if I can include the fixes and new features I 
plan)
- Karaf (Container) 4.0.9 for the end of this week and 4.1.1 in 2 or 3 
weeks (I'm checking the Jira right now)


Thanks !
Regards
JB
--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


[HEADS UP] Releases schedule

2016-04-17 Thread Jean-Baptiste Onofré

Hi all,

just a quick update on the current releases schedule for this week (I 
updated the website).


Karaf Container 4.0.5
=
I just closed the vote about Aries Blueprint Core 1.6.1 release. As soon 
as the artifacts will be available on Central, I will update in Karaf. 
Then (tomorrow), I will submit Karaf 4.0.5 release to vote.


Karaf Decanter 1.1.0

On a local branch, I've implemented the Kibana 4 dashboards 
"auto-loader". I'm testing it now, so far so good ;)

Tomorrow night, I should be able to submit Decanter 1.1.0 release to vote.

Thanks to everyone who helped in the preparation of those releases.

I will send a new e-mail after those to plan the coming releases.

Regards
JB
--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


[HEADS UP] Releases schedule (late)

2016-03-21 Thread Jean-Baptiste Onofré

Hi guys,

I've to apologize: we are late on the release schedule, and it's my 
fault (I should have pushed more ;)).


So, the two coming weeks will provide new releases on vote:

- this week, I'm planning to release Decanter 1.1.0 on Friday. I added 
the eventadmin collector, last week I added the SSL support to the kafka 
appender (I will push it). I have couple of things I want to discuss 
with Christian, but I think we are good for a release end of this week.
- in the mean time this week, I'm preparing Cellar releases (especially 
4.0.1). I should be able to submit on vote during the week end.
- I'm planning Karaf 4.0.5 for next week (we have some Aries dependent 
releases done or on the way).


I will also work tonight and tomorrow on the website: use of archives 
mirror and cleanup on dist, re-add dependencies matrix, etc.


Thanks all, and sorry again for the delay.
Regards
JB
--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


Re: [HEADS UP] Releases schedule

2015-06-18 Thread Jean-Baptiste Onofré

Hi guys,

I postponed 3.0.4 to next week in order to focus on 4.0.0.

We have to release 4.0.0 tomorrow (or Saturday morning).

We have two blocker issues on which I'm working on (KARAF-3793 and 
KARAF-3791). I will also update the manual for the release (to reflect 
the latest command changes, etc), it's already mostly done on a local 
branch.


Here the updated releases schedule:
- 06/19 (night): Karaf 4.0.0 on vote
- 06/23: Karaf 3.0.4 on vote
- 06/24: Karaf 2.4.3 on vote
- 06/27: Karaf Cave 4.0.0.M1 on vote
- 07/04: Karaf Cellar 3.0.4, 2.3.7, and 4.0.0.M1 on vote
- 07/04: Karaf Decanter 1.0.0.M1 on vote

Regards
JB

On 06/15/2015 07:29 AM, Jean-Baptiste Onofré wrote:

Hi all,

I gonna update the releases schedule page on the website.

Here's the latest update, now that 4.0.0.M3 has been released:

- 06/17 (Tomorrow night): Karaf 3.0.4 on vote
- 06/18: Karaf 2.4.3 on vote
- 06/19 (night): Karaf 4.0.0 on vote (we are waiting for Felix resolver
and framework releases)
- 06/23: Karaf Cave 4.0.0.M1 on vote
- 06/27: Karaf Cellar 3.0.4, 2.3.7, and 4.0.0.M1 on vote
- 06/30: Karaf Decanter 1.0.0.M1 on vote

Regards
JB


--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com


[HEADS UP] Releases schedule

2015-06-14 Thread Jean-Baptiste Onofré

Hi all,

I gonna update the releases schedule page on the website.

Here's the latest update, now that 4.0.0.M3 has been released:

- 06/17 (Tomorrow night): Karaf 3.0.4 on vote
- 06/18: Karaf 2.4.3 on vote
- 06/19 (night): Karaf 4.0.0 on vote (we are waiting for Felix resolver 
and framework releases)

- 06/23: Karaf Cave 4.0.0.M1 on vote
- 06/27: Karaf Cellar 3.0.4, 2.3.7, and 4.0.0.M1 on vote
- 06/30: Karaf Decanter 1.0.0.M1 on vote

Regards
JB
--
Jean-Baptiste Onofré
jbono...@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com