python-stdnet v0.4.0 Release Notes

Release Date: 2010-11-11 // over 13 years ago
    • Development status set to beta.
    • This version is incompatible with previous versions.
    • ๐Ÿ“š Documentation hosted at github.
    • โž• Added new contrib module djstdnet which uses djpcms_ content management system to display an admin interface for a :class:stdnet.odm.StdModel. Experimental for now.
    • โž• Added :class:stdnet.CacheClass which can be used as django_ cache backend. For example, using redis database 11 as cache is obtained by::

      CACHE_BACKEND = 'stdnet://127.0.0.1:6379/?type=redis&db=11&timeout=300'

    • ๐Ÿ”จ Overall refactoring of :mod:stdnet.odm and :mod:stdnet.backends modules.

    • Lazy loading of models via the :mod:stdnet.dispatch module.

    • โž• Added :mod:stdnet.dispatch module from django_.

    • โž• Added :class:stdnet.odm.AtomField subclasses.

    • Before adding elements to a :class:stdnet.odm.MultiField the object needs to be saved, i.e. it needs to have a valid id.

    • Made clear that :class:stdnet.odm.StdModel classes are mapped to :class:stdnet.HashTable structures in a :class:stdnet.BackendDataServer.

    • ๐Ÿšš Moved structures module into backends directory. Internal reorganisation of several modules.

    • โž• Added app_label attribute to :class:stdnet.odm.DataMetaClass.

    • โœ… 47 tests