-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, Dave!
El 02/03/15 a las 21:26, Dave S escribió: > Well, from the original message in this thread: > > "2.9.12 includes mostly bug fixes but there is some major DAL refactoring so we are concerned about backward compatibility. We think it works but please let us know asap if this breaks your code." Certainly, "major DAL refactoring" would be a better description than "Modular DAL, thanks Giovanni" in the changelog. That's the document we are supposed to read before upgrading, and not every thread in this group. > > Now, to address your problem, we need to know /what/ broke. Can you give us some code examples? The examples were already in this thread: > -from gluon.dal import Table > +try:#web2py >=2.9.12 > + from gluon.dal.objects import Table > +except:#web2py <=2.9.11 > + from gluon.dal import Table > -from gluon.dal import Expression > +try:#web2py >=2.9.12 > + from gluon.dal.objects import Expression > +except:#web2py <=2.9.11 > + from gluon.dal import Expression > -from gluon.dal import Rows > +try:#web2py >=2.9.12 > + from gluon.dal.objects import Rows > +except:#web2py <=2.9.11 > + from gluon.dal import Rows Anyway, I apologize that I could not make the tests earlier, and I want to thank every one involved in this release. The changes I had to do are no big deal, but there is so much emphasis in this project on not breaking backwards compatibility, that I wanted to suggest to tell about this issue in the changelog. Regards -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBAgAGBQJU9NRNAAoJEATsOw+FDrzIKbsP/RZx3E41AWYDpAZcFmQedcwp MH8w4O6u2UHKtFSk58zDcQRSuoHkOmyTL4CY+uR5LqHDrgQ+LQIV3mWpCSr7k7JR PIb9ZIJKvhrs03I67Hl/lYHVELE7+Zmur6V+EN1Fqid9l6CQ7UjucDsJpLTndMaO EO3DSqX10ZqoiOEyiCDl2F1G1dEt+B81QOT3W5KX4CabjyEyfEjcQHlpoXbYjdyx JXE/GSBbaqFT8g9QIIU/p/PN58vzW6EfH/COHz8GcRqc893AIdVxyKTvrVXfPwgs RkxtVchQdoC/OOHjiQHcnHTb18esPJxMCgxryVFVlLLNVUElf3qMOD7IBkDFStTE +oJ6eN4i91x9336GCxmmZLxeKy0MY6ctu+065ssEiG6GdkhsGH+ckh+EuRXiHRqP D9MTmmWdt2mqAkCJaALdObL4rUX2nn+z7aY9enHzGt4BEMd0nPY+9IWBU/9FEzk0 nw86DCsuLzEN9LqC5vAsQp8LzAoM74ZkpbVsTiz1ZdAkaEPQ34gslQN6vHYeuH2y 7US5RR9XgWUuf0DAy/+f6OI2AGsH2njF9cCfS+DaJ89Z6ZGcOEhxqk4DmR6/pBgU 5YwU1UMPYmZUBgOBvByI/spY8tMT2B3fU2BewgZLstHGuMjwO1plXWdgmHUtGfzS PofspetlV4f7SU/Vm7zw =xBEb -----END PGP SIGNATURE----- -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

