René's URL Explorer Experiment


Title: Implement datastore v1beta3 · Issue #1288 · googleapis/google-cloud-python · GitHub

Open Graph Title: Implement datastore v1beta3 · Issue #1288 · googleapis/google-cloud-python

X Title: Implement datastore v1beta3 · Issue #1288 · googleapis/google-cloud-python

Description: Current plan of attack: Remove --plugin=protoc-gen-grpc=$(GRPC_PLUGIN) from "helper" modules that don't use gRPC (e.g. google.bigtable.v1.bigtable_data) (this way sub-packages that don't need gRPC can use them) (#1354) Ditch shared gener...

Open Graph Description: Current plan of attack: Remove --plugin=protoc-gen-grpc=$(GRPC_PLUGIN) from "helper" modules that don't use gRPC (e.g. google.bigtable.v1.bigtable_data) (this way sub-packages that don't need gRPC ...

X Description: Current plan of attack: Remove --plugin=protoc-gen-grpc=$(GRPC_PLUGIN) from "helper" modules that don't use gRPC (e.g. google.bigtable.v1.bigtable_data) (this way sub-packages that do...

Opengraph URL: https://github.com/googleapis/google-cloud-python/issues/1288

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Implement datastore v1beta3","articleBody":"Current plan of attack:\n- [x] Remove `--plugin=protoc-gen-grpc=$(GRPC_PLUGIN)` from \"helper\" modules that don't use gRPC (e.g. `google.bigtable.v1.bigtable_data`) (this way sub-packages that don't need gRPC can use them) (#1354)\n- [x] Ditch shared generated modules for those included with [`protobuf`](https://pypi.python.org/pypi/protobuf) and [`googleapis-common-protos`](https://pypi.python.org/pypi/googleapis-common-protos) (#1353) ~~Move shared (i.e. non-Bigtable specific) modules from `gcloud.bigtable._generated` to `gcloud._generated` (this way all sub-packages can have access to shared protobuf message classes) and then subsequently update the `bigtable` imports to accommodate this change~~\n- [x] Pull out [`_get_pb_property_value`](https://github.com/GoogleCloudPlatform/gcloud-python/blob/94c007dea5a2080cd4dfef0c8d62a6c30d82000e/gcloud/bigtable/cluster.py#L50-L71) in `gcloud.bigtable.cluster` into core (`gcloud._helpers`) and separate out a `_has_field` piece since `pb_message.HasField` doesn't work on non-message fields in `proto3` (#1329)\n- [x] Update `Makefile` to reflect changes above (i.e. make sure it can be run without changing the code) (See #1316)\n- [x] Update `Makefile` to automatically add the `_foo.proto` files to the repo (See #1317)\n- [x] Fold `Batch.add_auto_id_entity` into `Batch.put` (the `auto_id_entity` mutation is removed in favor of just using `insert` with a partial key) (see #1296)\n- [x] Loosen `Batch` implementation's reliance on `Mutation` message class (it is used in a `LookupRequest` and their combined structure changes in `v1beta3`) (See #1306, #1319, #1341)\n- [x] Remove use of `serializable` in `Client.transaction` and `Transaction` (it is no longer an option in `v1beta3`, so we will curtail it's use in `v1beta2` before the switch) (See #1294)\n- [x] Manually partition the `_datastore_v1_pb2.py` module into 3 modules that just import portions of the namespace. These modules (`datastore_pb2.py`, `entity_pb2.py`, `query_pb2.py`) will be according to the membership in the new [proto definitions](https://github.com/google/googleapis/tree/12dd2eafc6ba6d011c4079cbfb246b60f9fdc28d/google/datastore/v1beta3) for `v1beta3`. (See #1297, #1299, #1301, #1328)\n- [x] Switch over imports from directly using `_datastore_v1_pb2.py` to using our \"shim\" imports to mock the structure of `v1beta3`. (See #1297, #1299, #1301, #1328)\n- [x] Make sure `API_BASE_URL` for the `Connection` class is used (rather than a parent's version) (See #1293)\n- [x] Change `Client.dataset_id` to `Client.project` (in advance of the rename to `PartitionId.project_id` in `v1beta3`) (#1330)\n- [x] Change the return type of `Connection.commit` to be a tuple of `index_updates` and `mutation_results` (they were previously on the same result object but are being split apart in `v1beta3`) (See #1314)\n- [x] Replace uses of `HasField` for non-message values with `_has_field` (see above) (#1329)\n- [x] Remove `v1beta2` generated `pb2` file and old `.proto` definition (can also remove `_datastore_v1_pb2.py` from the `pylintrc_default` ignored file) and delete our \"shim\" modules (#1355, #1428)\n- [x] Update `Makefile` to incorporate protobuf definitions for `v1beta3` (I did this in a [side-project](https://github.com/dhermes/datastore-v1beta3-migration), #1353, #1354, #1355, #1428)\n- [x] ~~Rewrite our \"shim\" imports to use the actual `datastore._generated` files for `v1beta3`.~~\n- [x] Switch `API_BASE_URL` from `https://www.googleapis.com` to `https://datastore.googleapis.com` and drop `'https://www.googleapis.com/auth/userinfo.email` from the scope list (#1339, #1406)\n- [x] Accommodate renames / retyped / removed\n  - [x] `CommitRequest.mutation  --\u003e  CommitRequest.mutations` (#1461)\n  - [x] `LookupRequest.key  --\u003e  LookupRequest.keys` (~~#1358~~, #1456)\n  - [x] `AllocateIdsResponse.key  --\u003e  AllocateIdsResponse.keys` (~~#1358~~, #1456)\n  - [x] `AllocateIdsRequest.key  --\u003e  AllocateIdsRequest.keys` (~~#1358~~, #1456)\n  - [x] `Key.path_element  --\u003e  Key.path` (~~#1360~~, #1457)\n  - [x] `Entity.property  --\u003e  Entity.properties` (#1458)\n  - [x] `Query.group_by  --\u003e  Query.distinct_on` (~~#1357~~, #1455)\n  - [x] `Query.limit  --\u003e  Query.limit.value` (~~#1357~~, #1455)\n  - [x] `QueryResultBatch.entity_result  --\u003e  QueryResultBatch.entity_results` (~~#1357~~, #1455)\n  - [x] `PartitionId.namespace  --\u003e  PartitionId.namespace_id` (~~#1359~~, #1452)\n  - [x] `PartitionId.dataset_id  --\u003e  PartitionId.project_id` (~~#1359~~, #1452)\n  - [x] `Value.indexed  --\u003e  Value.exclude_from_indexes` (~~#1365~~, #1453)\n  - [x] `Value.list_value  --\u003e  Value.array_value` (#1460)\n  - [x] `Value.null_value` added (#1464)\n  - [x] `Value.timestamp_microseconds_value  --\u003e  Value.timestamp_value` (with type change) (#1361, #1459)\n  - [x] `Value.geo_point_value` added (#1464)\n  - [x] `Value.blob_key_value` removed\n  - [x] `CompositeFilter.filter  --\u003e  CompositeFilter.filters` (~~#1356~~, #1454)\n  - [x] `CompositeFilter.operation  --\u003e  CompositeFilter.op` (~~#1356~~, #1454)\n  - [x] `PropertyFilter.operation  --\u003e  PropertyFilter.op` (~~#1356~~, #1454)\n  - [x] `CompositeFilter.AND  --\u003e  CompositeFilter.OPERATOR_UNSPECIFIED` (as default value)  (~~#1356~~, #1454)\n  - [x] `ReadOptions.DEFAULT  --\u003e  ReadOptions.READ_CONSISTENCY_UNSPECIFIED` (as default value)  (~~#1356~~, #1454)\n- [x] Deal with the fact that `Entity.property` is not a `map` called `Entity.properties` (somewhat different semantics) (#1340)\n- [x] Tear out dataset (project) [prefix code](https://github.com/GoogleCloudPlatform/gcloud-python/blob/3f189536262a7f2046a66c5fb0cb9487ecb0269c/gcloud/datastore/helpers.py#L421) (#1466)\n- [x] Re-vamp environment variable usage (`dataset_id` no longer needed?) (#1465)\n- [x] Remove use of `isolation_level` in `Connection.begin_transaction` (#1343, #1407)\n\nNew Features:\n- [ ] Add `GqlQuery` support (#304)\n- [ ] `QueryResultBatch.skipped_cursor` added (only set when `skipped_results != 0`)\n- [ ] `EntityResult.cursor` added (set by the backend when the entity result is part of a `RunQueryResponse.batch.entity_results` response)\n- [x] Parse protobuf [errors](https://github.com/GoogleCloudPlatform/gcloud-python/pull/1466#issuecomment-183822889)\n","author":{"url":"https://github.com/dhermes","@type":"Person","name":"dhermes"},"datePublished":"2015-12-15T17:47:59.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":26},"url":"https://github.com/1288/google-cloud-python/issues/1288"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:65018e34-58d6-495f-2904-2c471b10351b
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCD6A:BB1BD:F11BA3:1487638:6A4D602E
html-safe-nonce14cd61dad419e43f4de7b031615389e734df435db883af80ad30d4b6da3e4b42
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDRDZBOkJCMUJEOkYxMUJBMzoxNDg3NjM4OjZBNEQ2MDJFIiwidmlzaXRvcl9pZCI6Ijg1NTAyMDM4NjU2Njc4MjE2MTQiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac5bb73b1972999aac12a79279ceec353945d8a1abc26b5945aa03e40d65311860
hovercard-subject-tagissue:122327653
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/googleapis/google-cloud-python/1288/issue_layout
twitter:imagehttps://opengraph.githubassets.com/faba5cef89b451c143e16fe1e9dba2c3c2c495305eb147391ec32f76b74ce827/googleapis/google-cloud-python/issues/1288
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/faba5cef89b451c143e16fe1e9dba2c3c2c495305eb147391ec32f76b74ce827/googleapis/google-cloud-python/issues/1288
og:image:altCurrent plan of attack: Remove --plugin=protoc-gen-grpc=$(GRPC_PLUGIN) from "helper" modules that don't use gRPC (e.g. google.bigtable.v1.bigtable_data) (this way sub-packages that don't need gRPC ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamedhermes
hostnamegithub.com
expected-hostnamegithub.com
Nonee6658d7c7808aeed776f841e0839b885fce343c9b96244be612c779298e7661e
turbo-cache-controlno-preview
go-importgithub.com/googleapis/google-cloud-python git https://github.com/googleapis/google-cloud-python.git
octolytics-dimension-user_id16785467
octolytics-dimension-user_logingoogleapis
octolytics-dimension-repository_id16316451
octolytics-dimension-repository_nwogoogleapis/google-cloud-python
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id16316451
octolytics-dimension-repository_network_root_nwogoogleapis/google-cloud-python
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasea438513d3a22ffcd713795ed948c3e5525007665
ui-targetcanary-2
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/googleapis/google-cloud-python/issues/1288#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgoogleapis%2Fgoogle-cloud-python%2Fissues%2F1288
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgoogleapis%2Fgoogle-cloud-python%2Fissues%2F1288
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=googleapis%2Fgoogle-cloud-python
Reloadhttps://github.com/googleapis/google-cloud-python/issues/1288
Reloadhttps://github.com/googleapis/google-cloud-python/issues/1288
Reloadhttps://github.com/googleapis/google-cloud-python/issues/1288
Please reload this pagehttps://github.com/googleapis/google-cloud-python/issues/1288
googleapis https://github.com/googleapis
google-cloud-pythonhttps://github.com/googleapis/google-cloud-python
Notifications https://github.com/login?return_to=%2Fgoogleapis%2Fgoogle-cloud-python
Fork 1.7k https://github.com/login?return_to=%2Fgoogleapis%2Fgoogle-cloud-python
Star 5.3k https://github.com/login?return_to=%2Fgoogleapis%2Fgoogle-cloud-python
Code https://github.com/googleapis/google-cloud-python
Issues 438 https://github.com/googleapis/google-cloud-python/issues
Pull requests 130 https://github.com/googleapis/google-cloud-python/pulls
Discussions https://github.com/googleapis/google-cloud-python/discussions
Actions https://github.com/googleapis/google-cloud-python/actions
Projects https://github.com/googleapis/google-cloud-python/projects
Security and quality 0 https://github.com/googleapis/google-cloud-python/security
Insights https://github.com/googleapis/google-cloud-python/pulse
Code https://github.com/googleapis/google-cloud-python
Issues https://github.com/googleapis/google-cloud-python/issues
Pull requests https://github.com/googleapis/google-cloud-python/pulls
Discussions https://github.com/googleapis/google-cloud-python/discussions
Actions https://github.com/googleapis/google-cloud-python/actions
Projects https://github.com/googleapis/google-cloud-python/projects
Security and quality https://github.com/googleapis/google-cloud-python/security
Insights https://github.com/googleapis/google-cloud-python/pulse
Implement datastore v1beta3https://github.com/googleapis/google-cloud-python/issues/1288#top
https://github.com/dhermes
api: datastoreIssues related to the Datastore API.https://github.com/googleapis/google-cloud-python/issues?q=state%3Aopen%20label%3A%22api%3A%20datastore%22
https://github.com/dhermes
dhermeshttps://github.com/dhermes
on Dec 15, 2015https://github.com/googleapis/google-cloud-python/issues/1288#issue-122327653
Updating Makefile to only use gRPC when needed. #1354https://github.com/googleapis/google-cloud-python/pull/1354
protobufhttps://pypi.python.org/pypi/protobuf
googleapis-common-protoshttps://pypi.python.org/pypi/googleapis-common-protos
Use googleapis common protos #1353https://github.com/googleapis/google-cloud-python/pull/1353
_get_pb_property_valuehttps://github.com/GoogleCloudPlatform/gcloud-python/blob/94c007dea5a2080cd4dfef0c8d62a6c30d82000e/gcloud/bigtable/cluster.py#L50-L71
Moving _get_pb_property_value from bigtable into core. #1329https://github.com/googleapis/google-cloud-python/pull/1329
Bringing auto-gen import re-writing up to date with files. #1316https://github.com/googleapis/google-cloud-python/pull/1316
Making pb2 auto-gen script also copy over .proto files. #1317https://github.com/googleapis/google-cloud-python/pull/1317
Removing datastore Batch.add_auto_id_entity. #1296https://github.com/googleapis/google-cloud-python/pull/1296
Renaming datastore Batch.mutation to mutations. #1306https://github.com/googleapis/google-cloud-python/pull/1306
Puting helpers in datastore Batch for getting new mutations. #1319https://github.com/googleapis/google-cloud-python/pull/1319
Using protobuf CommitRequest in datastore Connection.commit. #1341https://github.com/googleapis/google-cloud-python/pull/1341
Removing serializable option from datastore Transaction. #1294https://github.com/googleapis/google-cloud-python/pull/1294
proto definitionshttps://github.com/google/googleapis/tree/12dd2eafc6ba6d011c4079cbfb246b60f9fdc28d/google/datastore/v1beta3
Replacing datastore pb uses with entity shim. #1297https://github.com/googleapis/google-cloud-python/pull/1297
Replacing datastore pb uses with query shim. #1299https://github.com/googleapis/google-cloud-python/pull/1299
Replacing datastore pb uses with "datastore" shim. #1301https://github.com/googleapis/google-cloud-python/pull/1301
Creating _generated pb directory for datastore #1328https://github.com/googleapis/google-cloud-python/pull/1328
Replacing datastore pb uses with entity shim. #1297https://github.com/googleapis/google-cloud-python/pull/1297
Replacing datastore pb uses with query shim. #1299https://github.com/googleapis/google-cloud-python/pull/1299
Replacing datastore pb uses with "datastore" shim. #1301https://github.com/googleapis/google-cloud-python/pull/1301
Creating _generated pb directory for datastore #1328https://github.com/googleapis/google-cloud-python/pull/1328
Explicitly using API_BASE_URL from current connection in datastore. #1293https://github.com/googleapis/google-cloud-python/pull/1293
Replace dataset id with project in datastore #1330https://github.com/googleapis/google-cloud-python/pull/1330
Reducing datastore commit reliance on structure of response. #1314https://github.com/googleapis/google-cloud-python/pull/1314
Moving _get_pb_property_value from bigtable into core. #1329https://github.com/googleapis/google-cloud-python/pull/1329
Upgrading Makefile to generate datastore v1beta3. #1355https://github.com/googleapis/google-cloud-python/pull/1355
Upgrading Makefile to generate datastore v1beta3. #1428https://github.com/googleapis/google-cloud-python/pull/1428
side-projecthttps://github.com/dhermes/datastore-v1beta3-migration
Use googleapis common protos #1353https://github.com/googleapis/google-cloud-python/pull/1353
Updating Makefile to only use gRPC when needed. #1354https://github.com/googleapis/google-cloud-python/pull/1354
Upgrading Makefile to generate datastore v1beta3. #1355https://github.com/googleapis/google-cloud-python/pull/1355
Upgrading Makefile to generate datastore v1beta3. #1428https://github.com/googleapis/google-cloud-python/pull/1428
Updating datastore URI template for v1beta3. #1339https://github.com/googleapis/google-cloud-python/pull/1339
Updating datastore URI template for v1beta3. #1406https://github.com/googleapis/google-cloud-python/pull/1406
Updating CommitRequest, Mutation and helpers for v1beta3. #1461https://github.com/googleapis/google-cloud-python/pull/1461
Handling datastore renames key -> keys #1358https://github.com/googleapis/google-cloud-python/pull/1358
Handling datastore renames key -> keys #1456https://github.com/googleapis/google-cloud-python/pull/1456
Handling datastore renames key -> keys #1358https://github.com/googleapis/google-cloud-python/pull/1358
Handling datastore renames key -> keys #1456https://github.com/googleapis/google-cloud-python/pull/1456
Handling datastore renames key -> keys #1358https://github.com/googleapis/google-cloud-python/pull/1358
Handling datastore renames key -> keys #1456https://github.com/googleapis/google-cloud-python/pull/1456
Renaming path_element->path in Key. #1360https://github.com/googleapis/google-cloud-python/pull/1360
Renaming path_element->path in Key. #1457https://github.com/googleapis/google-cloud-python/pull/1457
Upgrading Entity.property to properties map in datastore. #1458https://github.com/googleapis/google-cloud-python/pull/1458
Handling datastore renames on Query and QueryResultBatch. #1357https://github.com/googleapis/google-cloud-python/pull/1357
Handling datastore renames on Query and QueryResultBatch. #1455https://github.com/googleapis/google-cloud-python/pull/1455
Handling datastore renames on Query and QueryResultBatch. #1357https://github.com/googleapis/google-cloud-python/pull/1357
Handling datastore renames on Query and QueryResultBatch. #1455https://github.com/googleapis/google-cloud-python/pull/1455
Handling datastore renames on Query and QueryResultBatch. #1357https://github.com/googleapis/google-cloud-python/pull/1357
Handling datastore renames on Query and QueryResultBatch. #1455https://github.com/googleapis/google-cloud-python/pull/1455
Handle datastore renames on PartitionId #1359https://github.com/googleapis/google-cloud-python/pull/1359
Handle datastore renames on PartitionId #1452https://github.com/googleapis/google-cloud-python/pull/1452
Handle datastore renames on PartitionId #1359https://github.com/googleapis/google-cloud-python/pull/1359
Handle datastore renames on PartitionId #1452https://github.com/googleapis/google-cloud-python/pull/1452
Rename Value.indexed->exclude_from_indexes. #1365https://github.com/googleapis/google-cloud-python/pull/1365
Rename Value.indexed->exclude_from_indexes. #1453https://github.com/googleapis/google-cloud-python/pull/1453
Upgrading list_value -> array_value for v1beta3. #1460https://github.com/googleapis/google-cloud-python/pull/1460
Adding support for null and geo point values in v1beta3. #1464https://github.com/googleapis/google-cloud-python/pull/1464
Moving _pb_timestamp_to_datetime into core. #1361https://github.com/googleapis/google-cloud-python/pull/1361
Upgrading timestamp_microseconds_value to timestamp_value. #1459https://github.com/googleapis/google-cloud-python/pull/1459
Adding support for null and geo point values in v1beta3. #1464https://github.com/googleapis/google-cloud-python/pull/1464
Handling datastore renames on CompositeFilter and PropertyFilter. #1356https://github.com/googleapis/google-cloud-python/pull/1356
Handling datastore renames on CompositeFilter and PropertyFilter. #1454https://github.com/googleapis/google-cloud-python/pull/1454
Handling datastore renames on CompositeFilter and PropertyFilter. #1356https://github.com/googleapis/google-cloud-python/pull/1356
Handling datastore renames on CompositeFilter and PropertyFilter. #1454https://github.com/googleapis/google-cloud-python/pull/1454
Handling datastore renames on CompositeFilter and PropertyFilter. #1356https://github.com/googleapis/google-cloud-python/pull/1356
Handling datastore renames on CompositeFilter and PropertyFilter. #1454https://github.com/googleapis/google-cloud-python/pull/1454
Handling datastore renames on CompositeFilter and PropertyFilter. #1356https://github.com/googleapis/google-cloud-python/pull/1356
Handling datastore renames on CompositeFilter and PropertyFilter. #1454https://github.com/googleapis/google-cloud-python/pull/1454
Handling datastore renames on CompositeFilter and PropertyFilter. #1356https://github.com/googleapis/google-cloud-python/pull/1356
Handling datastore renames on CompositeFilter and PropertyFilter. #1454https://github.com/googleapis/google-cloud-python/pull/1454
Adding helpers for interacting with properties in Entity protobuf. #1340https://github.com/googleapis/google-cloud-python/pull/1340
prefix codehttps://github.com/GoogleCloudPlatform/gcloud-python/blob/3f189536262a7f2046a66c5fb0cb9487ecb0269c/gcloud/datastore/helpers.py#L421
Removing hacks that avoid using project ID in key protos. #1466https://github.com/googleapis/google-cloud-python/pull/1466
Removing custom dataset ID environment variable. #1465https://github.com/googleapis/google-cloud-python/pull/1465
Removing use of isolation level in datastore. #1343https://github.com/googleapis/google-cloud-python/pull/1343
Removing use of isolation level in datastore. #1407https://github.com/googleapis/google-cloud-python/pull/1407
Missing GQL support #304https://github.com/googleapis/google-cloud-python/issues/304
errorshttps://github.com/GoogleCloudPlatform/gcloud-python/pull/1466#issuecomment-183822889
dhermeshttps://github.com/dhermes
api: datastoreIssues related to the Datastore API.https://github.com/googleapis/google-cloud-python/issues?q=state%3Aopen%20label%3A%22api%3A%20datastore%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.