Update of /cvsroot/sqlobject/SQLObject/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv19725
Modified Files:
News.txt
Log Message:
Added date
Index: News.txt
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/docs/News.txt,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** News.txt 1 Nov 2003 19:54:28 -0000 1.9
--- News.txt 1 Nov 2003 20:30:37 -0000 1.10
***************
*** 11,14 ****
--- 11,16 ----
=============
+ Released: 1-Nov-2003
+
Features
--------
***************
*** 26,32 ****
--- 28,37 ----
* Non-integer IDs. (Automatic table creation is not supported for
non-integer IDs)
+
* Explicit IDs for new instances/rows (required for non-integer IDs).
+
* Instances can be synced with the database (in case there have been
updates to the object since it was first fetched).
+
* Instances can be expired, so that they will be synced when they are
next accessed.
***************
*** 34,49 ****
.. _Firebird: http://firebird.sourceforge.net/
! Bugs
! ----
!
! * Released all locks with ``finally:``, so that bugs won't cause
! frozen locks.
! * Tons of transaction fixes. Transactions pretty much work.
! * A class can have multiple foreign keys pointing to the same table
! (e.g., ``spouse = ForeignKey("Person"); supervisor =
! ForeignKey("Person")``)
!
! Changed Usage Notes
! -------------------
* `SQLBuilder.sqlRepr` renamed to `SQLBuilder.sqlrepr`, signature
--- 39,44 ----
.. _Firebird: http://firebird.sourceforge.net/
! Interface Changes
! -----------------
* `SQLBuilder.sqlRepr` renamed to `SQLBuilder.sqlrepr`, signature
***************
*** 63,66 ****
--- 58,73 ----
with something like ``"WHERE last_name = %s" %
Person.sqlrepr('Bob')``
+
+ Bugs
+ ----
+
+ * Released all locks with ``finally:``, so that bugs won't cause
+ frozen locks.
+
+ * Tons of transaction fixes. Transactions pretty much work.
+
+ * A class can have multiple foreign keys pointing to the same table
+ (e.g., ``spouse = ForeignKey("Person"); supervisor =
+ ForeignKey("Person")``)
SQLObject 0.4
|