Hello,
I'm in the process of updating a lift app from Scala 2.9.1 and Lift 2.5.1 to Scala 2.10.x and Lift 2.6-M2 and have run into bunch of what look like implicit errors around date operations.
For example,
"value setTo is not a member of object x$4.created" when attempting .modify(_.created setTo DateTime.now()).updateOne(), where created is declared as a DateTimeField.
"value after is not a member of object x$6.when" when attempting and (_.when after earliest), where when is declared as a DateTimeField and earliest is a joda DateTime object.
I'm assuming this is something to do with rogue implicits being clobbered, but I am struggling to see where and/or why. In most places all that was required was a change of imports from import com.foursquare.rogue.Rogue._ to import com.foursquare.rogue.LiftRogue._.
If anyone has any suggestions, they would be greatly welcomed.
Thank you
Jono