Re: [Pharo-users] [ANN] P3 version 1.1

2019-01-04 Thread Ben Coman
very cool. thanks Doru & team. cheers -ben On Sat, 5 Jan 2019 at 07:02, Tudor Girba wrote: > You can now query a Postgres database from the new GT. The initial code is > available here: > https://github.com/feenkcom/gt4p3 > > It currently looks like this: > > Cheers, > Doru > > > > On Dec 31,

Re: [Pharo-users] [ANN] P3 version 1.1

2019-01-04 Thread Tudor Girba
You can now query a Postgres database from the new GT. The initial code is available here: https://github.com/feenkcom/gt4p3 It currently looks like this: Cheers, Doru > On Dec 31, 2018, at 12:33 PM, Sven Van Caekenberghe wrote: > > Hi, > > I created a new release of P3, the modern, lean

Re: [Pharo-users] Updating singletons

2019-01-04 Thread Gabriel Cotelli via Pharo-users
--- Begin Message --- Talking about metadataless, I just bumped into: https://pharo.manuscript.com/f/cases/22865/ using *MetacelloCypressBaselineProjec*t. I'm pushing a PR as an attempt to fix it but for sure if Dale can give it a review it will be great!

Re: [Pharo-users] Updating singletons

2019-01-04 Thread Dale Henrichs
Konrad, This looks like a case where you are using a metadata-less repository ... if so you, should add the following method to your baseline class: projectClass Smalltalk at: #'MetacelloCypressBaselineProject' ifPresent: [ :cl | ^ cl ]. ^ super projectClass This mod will

Re: [Pharo-users] Updating singletons

2019-01-04 Thread Konrad Hinsen
Hi Steffen, Have you considered to yield (an) proxy object(s) instead of the actual > Singleton in uniqueInstance? This way it suffices to update the proxy > with each update of the code. I am not sure I understand what you are proposing. My problem is figuring out how to change in-memory

Re: [Pharo-users] Updating singletons

2019-01-04 Thread Konrad Hinsen via Pharo-users
--- Begin Message --- H Cyril, > Fetching, loading and post loads should leave a trace during the > execution in the Transcript. Thanks, that helps to confirm that my postload is never executed when I update a package + baseline in an image that already had an earlier version loaded. Nothing at