gcloud 0.7.1
gcloud: ^0.7.1 copied to clipboard
High level idiomatic Dart API for Google Cloud Storage, Pub-Sub and Datastore.
0.7.1 #
- Added
delimitertoBucket.listandBucket.page. - Fix typing of
ExpandoModeltoExpandoModel<T>as we should have done in version0.7.0.
0.7.0+2 #
- Upgrade dependency on
_discoveryapis_commons, changingApiRequestErrorfrom anErrorto anException. Version constraints on_discoveryapis_commonsallows both new and old versions.
0.7.0+1 #
- Fix path separator in Bucket.list().
0.7.0 #
- BREAKING CHANGE: Add generics support for
Model.id.
It is now possible to define the type of the id a model has (eitherStringorint). A model can now be defined asclass MyModel extends Model<String> {}andmyModel.idwill then be of typeStringandmyModel.keyof typeKey<String>.
0.6.4 #
- Require minimum Dart SDK
2.3.0.
0.6.3 #
- Added
DatastoreDB.lookupValue()
0.6.2 #
- Fixed bug in
Transaction.rollback().
0.6.1 #
- Added examples.
- Fixed formatting and lints.
- Allow
Modelclasses to contain constructors with optional or named arguments (as long as they're annotated with@required). - Add generics support to
withTransaction().
0.6.0+4 #
- Updated package description.
- Added an example showing how to use Google Cloud Storage.
0.6.0+3 #
- Fixed code formatting and lints.
0.6.0+2 #
- Support the latest
pkg:http.
0.6.0+1 #
- Add explicit dependency to
package:_discoveryapis_commons - Widen sdk constraint to <3.0.0
0.6.0 #
- BREAKING CHANGE: Add generics support. Instead of writing
db.query(Person).run()and getting back a genericStream<Model>, you now writedb.query<Person>().run()and getStream<Person>. The same goes for.lookup([key]), which can now be written as.lookup<Person>([key])and will return aList<Person>.
0.5.0 #
- Fixes to support Dart 2.
0.4.0+1 #
-
Made a number of strong-mode improvements.
-
Updated dependency on
googleapisandgoogleapis_beta.
0.4.0 #
-
Remove support for
FilterRelation.Inand "propertyname IN" for queries: This is not supported by the newer APIs and was originally part of fat-client libraries which performed multiple queries for each iten in the list. -
Adds optional
forComparisionnamed argument toProperty.encodeValuewhich will be set totruewhen encoding a value for comparison in queries. -
Upgrade to newer versions of
package:googleapisandpackage:googleapis_beta
0.3.0 #
-
Upgrade to use stable
package:googleapis/datastore/v1.dart. -
The internal [DatastoreImpl] class takes now a project name without the
s~prefix.
0.2.0+14 #
- Fix analyzer warning.
0.2.0+13 #
- Remove crypto dependency and upgrade dart dependency to >=1.13 since this dart version provides the Base64 codec.
0.2.0+11 #
- Throw a [StateError] in case a query returned a kind for which there was no model registered.
0.2.0+10 #
- Address analyzer warnings.
0.2.0+9 #
- Support value transformation in
db.query().filter(). - Widen constraint on
googleapisandgoogleapis_beta.
0.2.0+8 #
- Widen constraint on
googleapisandgoogleapis_beta.
0.2.0+4 #
Storage.readnow honorsoffsetandlengtharguments.
0.2.0+2 #
- Widen constraint on
googleapis/googleapis_beta
0.2.0+1 #
- Fix broken import of package:googleapis/common/common.dart.
0.2.0 #
- Add support for Cloud Pub/Sub.
- Require Dart version 1.9.
0.1.4+2 #
- Enforce fully populated entity keys in a number of places.
0.1.4+1 #
- Deduce the query partition automatically from query ancestor key.
0.1.4 #
- Added optional
defaultPartitionparameter to the constructor ofDatastoreDB.
0.1.3+2 #
- Widened googleapis/googleapis_beta constraints in pubspec.yaml.
0.1.3+1 #
- Change the service scope keys keys to non-private symbols.
0.1.3 #
- Widen package:googleapis dependency constraint in pubspec.yaml.
- Bugfix in
package:appengine/db.dart: Correctly handle ListProperties of length 1.
0.1.2 #
- Introduced
package:gcloud/service_scope.dartlibrary. - Added global getters for getting gcloud services from the current service scope.
- Added an
package:gcloud/http.dartlibrary using service scopes.
0.1.1 #
-
Increased version constraint on googleapis{,_auth,_beta}.
-
Removed unused imports.
0.1.0 #
- First release.