Skip to content

Commit 1517e2d

Browse files
committed
Release v0.1.0
1 parent 0ebb136 commit 1517e2d

2 files changed

Lines changed: 58 additions & 1 deletion

File tree

CHANGELOG.md

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

966
06-11-2019 16:30 PDT

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)