You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for chained update and delete methods on QuerySet
Support for update_all method for mass updates on objects
Support for delete_all method for mass deletion of objects
Rename databases configuration key in Config file from REPOSITORIES to DATABASES
Fully expand the Provider class in the configuration file, to avoid assuming a Provider class name
Split Adapter class into Provider and Repository, separating the concern of managing the database connection from performing CRUD operations on Entity data
Expose configured databases as providers global variable
Allow fetching new connection on demand of a new repository object via get_connection in providers
Rename Lookup class to BaseLookup
Associate Lookups with Concrete Provider classes
Provide option to fully bake a model class in case it needs to be decorated for a specific database, via the get_model method in the concrete Provider class
Add support for Entity Namespacing
Refactor Repository Factory for better consistency of registry