Skip to content

Commit e078838

Browse files
authored
Release v0.1.0
Release v0.1.0
2 parents 170432e + d60065d commit e078838

File tree

3 files changed

+57
-2
lines changed

3 files changed

+57
-2
lines changed

packages/google-cloud-ndb/CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,61 @@
44

55
[1]: https://pypi.org/project/google-cloud-ndb/#history
66

7+
## 0.1.0
8+
9+
09-10-2019 13:43 PDT
10+
11+
### Deprecations
12+
- Deprecate `max_memcache_items`, memcache options, `force_rewrites`, `Query.map()`, `Query.map_async()`, `blobstore`. ([#168](https://github.com/googleapis/python-ndb/pull/168))
13+
14+
### Implementation Changes
15+
- Fix error retrieving values for properties with different stored name ([#187](https://github.com/googleapis/python-ndb/pull/187))
16+
- Use correct class when deserializing a PolyModel entity. ([#186](https://github.com/googleapis/python-ndb/pull/186))
17+
- Support legacy compressed properties back and forth ([#183](https://github.com/googleapis/python-ndb/pull/183))
18+
- Store Structured Properties in backwards compatible way ([#184](https://github.com/googleapis/python-ndb/pull/184))
19+
- Allow put and get to work with compressed blob properties ([#175](https://github.com/googleapis/python-ndb/pull/175))
20+
- Raise an exception when storing entity with partial key without Datastore. ([#171](https://github.com/googleapis/python-ndb/pull/171))
21+
- Normalize to prefer ``project`` over ``app``. ([#170](https://github.com/googleapis/python-ndb/pull/170))
22+
- Enforce naive datetimes for ``DateTimeProperty``. ([#167](https://github.com/googleapis/python-ndb/pull/167))
23+
- Handle projections with structured properties. ([#166](https://github.com/googleapis/python-ndb/pull/166))
24+
- Fix polymodel put and get ([#151](https://github.com/googleapis/python-ndb/pull/151))
25+
- `_prepare_for_put` was not being called at entity level ([#138](https://github.com/googleapis/python-ndb/pull/138))
26+
- Fix key property. ([#136](https://github.com/googleapis/python-ndb/pull/136))
27+
- Fix thread local context. ([#131](https://github.com/googleapis/python-ndb/pull/131))
28+
- Bugfix: Respect ``_indexed`` flag of properties. ([#127](https://github.com/googleapis/python-ndb/pull/127))
29+
- Backwards compatibility with older style structured properties. ([#126](https://github.com/googleapis/python-ndb/pull/126))
30+
31+
### New Features
32+
- Read legacy data with Repeated Structured Expando properties. ([#176](https://github.com/googleapis/python-ndb/pull/176))
33+
- Implement ``Context.call_on_commit``. ([#159](https://github.com/googleapis/python-ndb/pull/159))
34+
- Implement ``Context.flush`` ([#158](https://github.com/googleapis/python-ndb/pull/158))
35+
- Implement ``use_datastore`` flag. ([#155](https://github.com/googleapis/python-ndb/pull/155))
36+
- Implement ``tasklets.toplevel``. ([#157](https://github.com/googleapis/python-ndb/pull/157))
37+
- Add RedisCache implementation of global cache ([#150](https://github.com/googleapis/python-ndb/pull/150))
38+
- Implement Global Cache ([#148](https://github.com/googleapis/python-ndb/pull/148))
39+
- ndb.Expando properties load and save ([#117](https://github.com/googleapis/python-ndb/pull/117))
40+
- Implement cache policy. ([#116](https://github.com/googleapis/python-ndb/pull/116))
41+
42+
### Documentation
43+
- Fix Kokoro publish-docs job ([#153](https://github.com/googleapis/python-ndb/pull/153))
44+
- Update Migration Notes. ([#152](https://github.com/googleapis/python-ndb/pull/152))
45+
- Add `project_urls` for pypi page ([#144](https://github.com/googleapis/python-ndb/pull/144))
46+
- Fix `TRAMPOLINE_BUILD_FILE` in docs/common.cfg. ([#143](https://github.com/googleapis/python-ndb/pull/143))
47+
- Add kokoro docs job to publish to googleapis.dev. ([#142](https://github.com/googleapis/python-ndb/pull/142))
48+
- Initial version of migration guide ([#121](https://github.com/googleapis/python-ndb/pull/121))
49+
- Add spellcheck sphinx extension to docs build process ([#123](https://github.com/googleapis/python-ndb/pull/123))
50+
51+
### Internal / Testing Changes
52+
- Clean up usage of `object.__new__` and mocks for `Model` in unit tests ([#177](https://github.com/googleapis/python-ndb/pull/177))
53+
- Prove tasklets can be Python 2.7 and 3.7 compatible. ([#174](https://github.com/googleapis/python-ndb/pull/174))
54+
- Discard src directory and fix flake8 failures ([#173](https://github.com/googleapis/python-ndb/pull/173))
55+
- Add tests for `Model.__eq__()` ([#169](https://github.com/googleapis/python-ndb/pull/169))
56+
- Remove skip flag accidentally left over ([#154](https://github.com/googleapis/python-ndb/pull/154))
57+
- Try to get kokoro to add indexes for system tests ([#145](https://github.com/googleapis/python-ndb/pull/145))
58+
- Add system test for PolyModel ([#133](https://github.com/googleapis/python-ndb/pull/133))
59+
- Fix system test under Datastore Emulator. (Fixes [#118](https://github.com/googleapis/python-ndb/pull/118)) ([#119](https://github.com/googleapis/python-ndb/pull/119))
60+
- Add unit tests for `_entity_from_ds_entity` expando support ([#120](https://github.com/googleapis/python-ndb/pull/120))
61+
762
## 0.0.1
863

964
06-11-2019 16:30 PDT

packages/google-cloud-ndb/google/cloud/ndb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
from google.cloud.ndb._transaction import non_transactional
127127

128128

129-
__version__ = "0.0.1"
129+
__version__ = "0.1.0"
130130
"""Current ``ndb`` version."""
131131
__all__ = [
132132
"AutoBatcher",

packages/google-cloud-ndb/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def main():
3030

3131
setuptools.setup(
3232
name="google-cloud-ndb",
33-
version="0.0.1",
33+
version = "0.1.0",
3434
description="NDB library for Google Cloud Datastore",
3535
long_description=readme,
3636
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)