Re: [beanutils] Toward 2.0.0

2017-12-30 Thread Benedikt Ritter
Hi, > Am 28.12.2017 um 20:49 schrieb Gary Gregory : > > Hi All, > > - BeanUtils now has a new package o.a.c.beanutils2. > - BeanUtils now depends on Apache Commons Collection 4 (instead of 3), > which caused the above. > > What more do we want before releasing 2.0.0? >

Re: [beanutils] Toward 2.0.0

2017-12-28 Thread sebb
On 28 December 2017 at 22:50, Stephen Colebourne wrote: > On 28 December 2017 at 19:49, Gary Gregory wrote: >> Hi All, >> >> - BeanUtils now has a new package o.a.c.beanutils2. >> - BeanUtils now depends on Apache Commons Collection 4 (instead of 3),

Re: [beanutils] Toward 2.0.0

2017-12-28 Thread Stephen Colebourne
On 28 December 2017 at 19:49, Gary Gregory wrote: > Hi All, > > - BeanUtils now has a new package o.a.c.beanutils2. > - BeanUtils now depends on Apache Commons Collection 4 (instead of 3), > which caused the above. > > What more do we want before releasing 2.0.0? > >

Re: [beanutils] Toward 2.0.0

2017-12-28 Thread sebb
On 28 December 2017 at 22:02, Dave Brosius wrote: > beanutils 3 exposed 'FastHashMap' which was a commons collections 3 data > structure in it's own interface. That went away in commons collections 4, > and so i modified the beanutils 4 interface to use

Re: [beanutils] Toward 2.0.0

2017-12-28 Thread Dave Brosius
beanutils 3 exposed 'FastHashMap' which was a commons collections 3 data structure in it's own interface. That went away in commons collections 4, and so i modified the beanutils 4 interface to use ConcurrentHashMaps. Thus the need for a package rename. On 12/28/2017 04:56 PM, sebb wrote:

Re: [beanutils] Toward 2.0.0

2017-12-28 Thread sebb
On 28 December 2017 at 19:49, Gary Gregory wrote: > Hi All, > > - BeanUtils now has a new package o.a.c.beanutils2. > - BeanUtils now depends on Apache Commons Collection 4 (instead of 3), > which caused the above. > > What more do we want before releasing 2.0.0? > >

[beanutils] Toward 2.0.0

2017-12-28 Thread Gary Gregory
Hi All, - BeanUtils now has a new package o.a.c.beanutils2. - BeanUtils now depends on Apache Commons Collection 4 (instead of 3), which caused the above. What more do we want before releasing 2.0.0? Updating from BU 1.x to 2.x should be "simple" for now: Just update your imports. Thoughts?