CHANGELOG

Future

  • [FIX] Allow to add a relationship on the same model, the main use is to add parent / children relation ship on a model, They are any difference with the declaration of ta relation ship on another model
  • [REF] standardize foreign_key and relation ship, if the str which replace the Model Declarations is now the registry name

0.2.2

  • [REF] Unittest
    • TestCase and DBTestCase are only used for framework

    • BlokTestCase is used:
      • by run_exit function to test all the installed bloks
      • at the installation of a blok if wanted

0.2.0

Warning

This version is not compatible with the version 0.1.3

  • [REF] Import and reload are more explicite

  • [ADD] IO:
    • Mapping: Link between Model instance and (Model, str key)
  • [ADD] Env in registry_base to access at EnvironmentManager without to import it at each time

  • [IMP] doc add how to on the environment

0.1.3

  • [FIX] setup long description, good for pypi but not for easy_install

0.1.2

  • [REFACTOR] Allow to declare Core components
  • [ADD] Howto declare Core / Type
  • [FIX] Model can only inherit simple python class, Mixin or Model
  • [FIX] Mixin inherit chained
  • [FIX] Flake8

0.1.1

  • [FIX] version, documentation, setup

0.1.0

Main version of AnyBlok. You can with this version

  • Create your own application
  • Connect to a database
  • Define bloks
  • Install, Update, Uninstall the blok
  • Define field types
  • Define Column types
  • Define Relationship types
  • Define Core
  • Define Mixin
  • Define Model (SQL or not)
  • Define SQL view
  • Define more than one Model on a specific table
  • Write unittest for your blok