Re: [EXT] [VOTE] Release Apache Groovy 4.0.12 (Take 2)

2023-05-05 Thread Remko Popma
+1 On Sat, May 6, 2023 at 4:50 AM Andres Almiray wrote: > +1 (binding) > > Sent from my primitive tricorder > > On 5 May 2023, at 21:36, Milles, Eric (TR Technology) via dev < > [email protected]> wrote: > >  > > +1 (binding) > > > >

Re: [EXT] [VOTE] Release Apache Groovy 4.0.12 (Take 2)

2023-05-05 Thread Andres Almiray
+1 (binding) Sent from my primitive tricorder > On 5 May 2023, at 21:36, Milles, Eric (TR Technology) via dev > wrote: > >  > +1 (binding) >

RE: [EXT] [VOTE] Release Apache Groovy 4.0.12 (Take 2)

2023-05-05 Thread Milles, Eric (TR Technology) via dev
+1 (binding)

RE: [EXT] [VOTE] Release Apache Groovy 4.0.12

2023-05-04 Thread Milles, Eric (TR Technology) via dev
: [email protected] Subject: RE: [EXT] [VOTE] Release Apache Groovy 4.0.12 There is one regression caused by the change for GROOVY-11029. I am testing a fix. The workaround is to remove static compilation or to write "other = 'value'" as "it.other = 'value&

RE: [EXT] [VOTE] Release Apache Groovy 4.0.12

2023-05-04 Thread Milles, Eric (TR Technology) via dev
There is one regression caused by the change for GROOVY-11029. I am testing a fix. The workaround is to remove static compilation or to write "other = 'value'" as "it.other = 'value'" so the "owner.delegate" gets applied properly. class Bar { @groovy.beans.Bindable String baz String othe