Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (2)
Fix default logic with fetched meta
· adf80f1d
SirEdvin
authored
Nov 06, 2018
adf80f1d
Bump version: 0.7.2 → 0.7.3
· 7f9bfe92
SirEdvin
authored
Nov 06, 2018
7f9bfe92
Hide whitespace changes
Inline
Side-by-side
.bumpversion.cfg
View file @
7f9bfe92
[bumpversion]
current_version
= 0.7.
2
current_version
= 0.7.
3
commit
= True
tag
= True
...
...
CHANGELOG.md
View file @
7f9bfe92
...
...
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on
[
Keep a Changelog
](
http://keepachangelog.com/en/1.0.0/
)
and this project adheres to
[
Semantic Versioning
](
http://semver.org/spec/v2.0.0.html
)
.
## [0.7.3]
### Fixed
-
Fixed default logic with fetched_meta
## [0.7.2]
### Added
...
...
anji_orm/__init__.py
View file @
7f9bfe92
...
...
@@ -4,7 +4,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
anji_orm/core/__init__.py
View file @
7f9bfe92
...
...
@@ -13,7 +13,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
anji_orm/core/ast/__init__.py
View file @
7f9bfe92
...
...
@@ -9,7 +9,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
anji_orm/core/ast/base.py
View file @
7f9bfe92
...
...
@@ -8,7 +8,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
anji_orm/core/ast/filters.py
View file @
7f9bfe92
...
...
@@ -19,7 +19,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
anji_orm/core/ast/operations.py
View file @
7f9bfe92
...
...
@@ -15,7 +15,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
anji_orm/core/ast/rows.py
View file @
7f9bfe92
...
...
@@ -16,7 +16,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
anji_orm/core/ast/transformation.py
View file @
7f9bfe92
...
...
@@ -11,7 +11,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
anji_orm/core/ast/utils.py
View file @
7f9bfe92
...
...
@@ -2,7 +2,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
anji_orm/core/executor.py
View file @
7f9bfe92
...
...
@@ -12,7 +12,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
@@ -79,10 +79,11 @@ def fetch(data_dict: Dict[str, Any], meta: Optional[Dict] = None) -> Any:
from
.register
import
orm_register
fetched_dict
,
fetched_meta
=
orm_register
.
backend_adapter
.
fetch_processor
(
data_dict
)
if
meta
is
not
None
:
meta
.
update
(
fetched_meta
)
# type: ignore
else
:
meta
=
fetched_meta
if
fetched_meta
is
not
None
:
if
meta
is
not
None
:
meta
.
update
(
fetched_meta
)
# type: ignore
else
:
meta
=
fetched_meta
if
fetched_dict
is
None
:
return
None
if
'
_python_info
'
not
in
fetched_dict
:
...
...
anji_orm/core/fields/__init__.py
View file @
7f9bfe92
...
...
@@ -5,7 +5,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
anji_orm/core/fields/base.py
View file @
7f9bfe92
...
...
@@ -15,7 +15,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
anji_orm/core/fields/extras.py
View file @
7f9bfe92
...
...
@@ -9,7 +9,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
anji_orm/core/indexes.py
View file @
7f9bfe92
...
...
@@ -11,7 +11,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
anji_orm/core/loggers.py
View file @
7f9bfe92
...
...
@@ -4,7 +4,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
anji_orm/core/model.py
View file @
7f9bfe92
...
...
@@ -14,7 +14,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
anji_orm/core/parser/__init__.py
View file @
7f9bfe92
...
...
@@ -7,7 +7,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
anji_orm/core/parser/base.py
View file @
7f9bfe92
...
...
@@ -13,7 +13,7 @@ __author__ = "Bogdan Gladyshev"
__copyright__
=
"
Copyright 2017, Bogdan Gladyshev
"
__credits__
=
[
"
Bogdan Gladyshev
"
]
__license__
=
"
MIT
"
__version__
=
"
0.7.
2
"
__version__
=
"
0.7.
3
"
__maintainer__
=
"
Bogdan Gladyshev
"
__email__
=
"
siredvin.dark@gmail.com
"
__status__
=
"
Production
"
...
...
Prev
1
2
3
4
Next