Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Latest commit

 

History

History
executable file
·
130 lines (109 loc) · 5.65 KB

CHANGELOG.rst

File metadata and controls

executable file
·
130 lines (109 loc) · 5.65 KB

Ver. 0.5.3 - 2011 Apr 30

Ver. 0.5.2 - 2011 Mar 31

Ver. 0.5.1 - 2011 Feb 27

Ver. 0.5.0 - 2011 Feb 24

  • Ported to Python 3 and dropped support for python 2.5. Way to go.

  • Removed dependency from redis-py for python 3 compatibility.

  • Refactored the object relational mapper, including several bug fixes.

  • Added benchmark and profile to tests. To run benchmarks or profile:

    python runtests.py -t bench
    python runtests.py -t bench tag1 tag2
    python runtests.py -t profile
    
  • Included support for redis timeseries which requires redis fork at https://github.com/lsbardel/redis.

  • Added :mod:`stdnet.contrib.sessions` module for handling web sessions. Experimental and pre-alpha.

  • Added :class:`stdnet.orm.JSONField` with tests.

  • 167 regression tests with 61% coverage.

Ver. 0.4.2 - 2010 Nov 17

  • Added tags in tests. You can now run specific tags:

    python runtests.py hash
    

    will run tests specific to hashtables.

  • Removed ts tests since the timeseries structure is not in redis yet. You can run them by setting tag ts.

  • 54 tests.

Ver. 0.4.1 - 2010 Nov 14

  • Added CONTRIBUTING to distribution.
  • Corrected spelling error in Exception ObjectNotFound exception class.
  • Added initial support for Map structures. Ordered Associative Containers.
  • 63 tests

Ver. 0.4 - 2010 Nov 11

Ver. 0.3.3 - 2010 Sep 13

  • If a model is not registered and the manager method is accessed, it raises ModelNotRegistered
  • Changed the way tests are run. See documentation
  • redis set as requirements
  • 29 tests

Ver. 0.3.2 - 2010 Aug 24

  • Bug fixes
  • Fixed a bug on orm.DateField when required is set to False
  • Changelog included in documentation
  • 27 tests

Ver. 0.3.1 - 2010 Jul 19

  • Bug fixes
  • 27 tests

Ver. 0.3.0 - 2010 Jul 15

  • Overall code refactoring
  • Added ListField and OrderedSetField with Redis implementation
  • StdModel raise AttributError when method/attribute not available. Previously it returned None
  • StdModel raise ModelNotRegistered when trying to save an instance of a non-registered model
  • 24 tests

Ver. 0.2.2 - 2010 Jul 7

  • RelatedManager is derived by Manager and therefore implements both all and filter methods
  • 10 tests

Ver. 0.2.0 - 2010 Jun 21

  • First official release in pre-alpha
  • Redis backend
  • Initial ORM with AtomField, DateField and ForeignKey
  • 8 tests