Skip to content

Commit 8d0a14a

Browse files
committed
address use of deprecated members
1 parent 2eecaa8 commit 8d0a14a

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

pkgs/appengine/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
## 0.13.9-wip
2+
3+
* Update the pubspec repository field to reflect the new repo location.
4+
15
## 0.13.8
2-
* Require `package:protobuf` ^3.1.0.
6+
7+
* Require `package:protobuf` ^3.1.0.
38

49
## 0.13.7
5-
* Widen dependency constraint on `package:http`.
10+
11+
* Widen dependency constraint on `package:http`.
612

713
## 0.13.6
814

pkgs/appengine/lib/src/grpc_api_impl/datastore_impl.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,9 @@ class _Codec {
423423
raw.FilterRelation.LessThanOrEqual:
424424
PropertyFilter_Operator.LESS_THAN_OR_EQUAL,
425425
raw.FilterRelation.Equal: PropertyFilter_Operator.EQUAL,
426+
// ignore: deprecated_member_use
426427
raw.FilterRelation.GreatherThan: PropertyFilter_Operator.GREATER_THAN,
428+
// ignore: deprecated_member_use
427429
raw.FilterRelation.GreatherThanOrEqual:
428430
PropertyFilter_Operator.GREATER_THAN_OR_EQUAL,
429431
};

pkgs/appengine/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: appengine
2-
version: 0.13.8
2+
version: 0.13.9-wip
33
description: >
44
Support for using Dart as a custom runtime on Google App Engine Flexible
55
Environment

pkgs/appengine/test/integration/raw_datastore_test_impl.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,7 @@ runTests(Datastore datastore, String namespace) {
769769
}
770770

771771
var filters = [
772+
// ignore: deprecated_member_use
772773
Filter(FilterRelation.GreatherThan, QUERY_KEY, QUERY_LOWER_BOUND),
773774
Filter(FilterRelation.LessThan, QUERY_KEY, QUERY_UPPER_BOUND),
774775
];
@@ -784,6 +785,7 @@ runTests(Datastore datastore, String namespace) {
784785
Filter(FilterRelation.Equal, TEST_UNINDEXED_PROPERTY, QUERY_INDEX_VALUE)
785786
];
786787

788+
// ignore: deprecated_member_use
787789
var orders = [Order(OrderDirection.Decending, QUERY_KEY)];
788790

789791
test('query', () {

0 commit comments

Comments
 (0)