-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
caching queryset & cleanup cloning and initialization & special chara…
…cters (#206) * Changes: - cache select_related expression and select expression - make QuerySet keyword only for the second plus argument - keyword arguments match now the function names, old names are deprecated - copy by calling init * Changes: - fix typings - make select_related variadic and deprecate the former call interface * Changes: - use new variadic select_related call in tests - update release notes * Changed: - copy cached select_related from temporary subqueries * fix get_raw * bump version * Changes: - allow special characters in model names - honor column_name in multi column fields * fix typings by switching type * update tests for special chars * Changes: - remove rendundant tests - fks can now point to columns with special chars
- Loading branch information
Showing
20 changed files
with
687 additions
and
261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.18.1" | ||
__version__ = "0.19.0" | ||
|
||
from .cli.base import Migrate | ||
from .conf import settings | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.