Skip to content

Commit

Permalink
Prepare v0.82.0 (#1337)
Browse files Browse the repository at this point in the history
## Google Cloud PHP v0.82.0

### google/cloud-bigquery v1.4.5

* Remove unnecessary ternary expression (#1327)
* Use dedicated PHPUnit assertions (#1331)

### google/cloud-core v1.23.7

* Use combined assignment operators when possible (#1328)
* Remove unused variables passed to closures (#1330)

### google/cloud-datastore v1.5.10

* Use combined assignment operators when possible (#1328)
* Use dedicated PHPUnit assertions (#1331)

### google/cloud-debugger v0.14.2

* Remove unused variables passed to closures (#1330)
* Use dedicated PHPUnit assertions (#1331)

### google/cloud-firestore v0.15.3

* Fix handling of empty sets in Firestore updates (#1316)
* Remove auxiliary variables when they are return right away (#1329)

### google/cloud-spanner v1.11.0

* Use combined assignment operators when possible (#1328)
* Remove unused variables passed to closures (#1330)
* Add support for DML and Partitioned DML (#1309)

### google/cloud-storage v1.9.1

* Use dedicated PHPUnit assertions (#1331)

### google/cloud-vision v0.17.2

* Use dedicated PHPUnit assertions (#1331)
  • Loading branch information
jdpedrie authored Oct 8, 2018
1 parent 81a923e commit 3b8eaba
Show file tree
Hide file tree
Showing 19 changed files with 34 additions and 25 deletions.
2 changes: 1 addition & 1 deletion BigQuery/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.4
1.4.5
2 changes: 1 addition & 1 deletion BigQuery/src/BigQueryClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class BigQueryClient
use ClientTrait;
use RetryDeciderTrait;

const VERSION = '1.4.4';
const VERSION = '1.4.5';

const MAX_DELAY_MICROSECONDS = 32000000;

Expand Down
2 changes: 1 addition & 1 deletion Core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.23.6
1.23.7
2 changes: 1 addition & 1 deletion Datastore/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.9
1.5.10
2 changes: 1 addition & 1 deletion Datastore/src/DatastoreClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class DatastoreClient
use ClientTrait;
use DatastoreTrait;

const VERSION = '1.5.9';
const VERSION = '1.5.10';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/datastore';

Expand Down
2 changes: 1 addition & 1 deletion Debugger/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.1
0.14.2
2 changes: 1 addition & 1 deletion Debugger/src/DebuggerClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DebuggerClient
{
use ClientTrait;

const VERSION = '0.14.1';
const VERSION = '0.14.2';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/cloud-platform';
const READ_ONLY_SCOPE = 'https://www.googleapis.com/auth/debugger.readonly';
Expand Down
2 changes: 1 addition & 1 deletion Firestore/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.15.2
0.15.3
2 changes: 1 addition & 1 deletion Firestore/src/FirestoreClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class FirestoreClient
use SnapshotTrait;
use ValidateTrait;

const VERSION = '0.15.2';
const VERSION = '0.15.3';

const DEFAULT_DATABASE = '(default)';

Expand Down
2 changes: 1 addition & 1 deletion Spanner/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.10.1
1.11.0
2 changes: 1 addition & 1 deletion Spanner/src/SpannerClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class SpannerClient
use LROTrait;
use ValidateTrait;

const VERSION = '1.10.1';
const VERSION = '1.11.0';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/spanner.data';
const ADMIN_SCOPE = 'https://www.googleapis.com/auth/spanner.admin';
Expand Down
2 changes: 1 addition & 1 deletion Storage/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.0
1.9.1
2 changes: 1 addition & 1 deletion Storage/src/StorageClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class StorageClient
use ArrayTrait;
use ClientTrait;

const VERSION = '1.9.0';
const VERSION = '1.9.1';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/devstorage.full_control';
const READ_ONLY_SCOPE = 'https://www.googleapis.com/auth/devstorage.read_only';
Expand Down
2 changes: 1 addition & 1 deletion Vision/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.17.1
0.17.2
2 changes: 1 addition & 1 deletion Vision/src/VisionClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class VisionClient
use ClientTrait;
use ValidateTrait;

const VERSION = '0.17.1';
const VERSION = '0.17.2';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/cloud-platform';

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,18 @@
},
"replace": {
"google/cloud-asset": "0.1.1",
"google/cloud-bigquery": "1.4.4",
"google/cloud-bigquery": "1.4.5",
"google/cloud-bigquerydatatransfer": "0.8.2",
"google/cloud-bigtable": "0.7.1",
"google/cloud-container": "0.6.2",
"google/cloud-core": "1.23.6",
"google/cloud-core": "1.23.7",
"google/cloud-dataproc": "0.6.2",
"google/cloud-datastore": "1.5.9",
"google/cloud-debugger": "0.14.1",
"google/cloud-datastore": "1.5.10",
"google/cloud-debugger": "0.14.2",
"google/cloud-dialogflow": "0.3.5",
"google/cloud-dlp": "0.13.0",
"google/cloud-error-reporting": "0.12.1",
"google/cloud-firestore": "0.15.2",
"google/cloud-firestore": "0.15.3",
"google/cloud-iot": "0.4.1",
"google/cloud-kms": "0.4.1",
"google/cloud-language": "0.16.1",
Expand All @@ -87,15 +87,15 @@
"google/cloud-oslogin": "0.7.1",
"google/cloud-pubsub": "1.5.1",
"google/cloud-redis": "0.4.1",
"google/cloud-spanner": "1.10.1",
"google/cloud-spanner": "1.11.0",
"google/cloud-speech": "0.17.1",
"google/cloud-storage": "1.9.0",
"google/cloud-storage": "1.9.1",
"google/cloud-tasks": "0.3.2",
"google/cloud-text-to-speech": "0.1.5",
"google/cloud-trace": "0.10.6",
"google/cloud-translate": "1.2.6",
"google/cloud-videointelligence": "1.0.7",
"google/cloud-vision": "0.17.1"
"google/cloud-vision": "0.17.2"
},
"suggest": {
"opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
Expand Down
9 changes: 9 additions & 0 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"name": "google/cloud",
"defaultService": "servicebuilder",
"versions": [
"v0.82.0",
"v0.81.0",
"v0.80.0",
"v0.79.0",
Expand Down Expand Up @@ -132,6 +133,7 @@
"name": "google/cloud-bigquery",
"defaultService": "bigquery/bigqueryclient",
"versions": [
"v1.4.5",
"v1.4.4",
"v1.4.3",
"v1.4.2",
Expand Down Expand Up @@ -246,6 +248,7 @@
"name": "google/cloud-core",
"defaultService": "core/servicebuilder",
"versions": [
"v1.23.7",
"v1.23.6",
"v1.23.5",
"v1.23.4",
Expand Down Expand Up @@ -336,6 +339,7 @@
"name": "google/cloud-datastore",
"defaultService": "datastore/datastoreclient",
"versions": [
"v1.5.10",
"v1.5.9",
"v1.5.8",
"v1.5.7",
Expand Down Expand Up @@ -368,6 +372,7 @@
"name": "google/cloud-debugger",
"defaultService": "debugger/debuggerclient",
"versions": [
"v0.14.2",
"v0.14.1",
"v0.14.0",
"v0.13.0",
Expand Down Expand Up @@ -495,6 +500,7 @@
"name": "google/cloud-firestore",
"defaultService": "firestore/firestoreclient",
"versions": [
"v0.15.3",
"v0.15.2",
"v0.15.1",
"v0.15.0",
Expand Down Expand Up @@ -803,6 +809,7 @@
"name": "google/cloud-spanner",
"defaultService": "spanner/spannerclient",
"versions": [
"v1.11.0",
"v1.10.1",
"v1.10.0",
"v1.9.0",
Expand Down Expand Up @@ -897,6 +904,7 @@
"name": "google/cloud-storage",
"defaultService": "storage/storageclient",
"versions": [
"v1.9.1",
"v1.9.0",
"v1.8.0",
"v1.7.3",
Expand Down Expand Up @@ -1059,6 +1067,7 @@
"name": "google/cloud-vision",
"defaultService": "vision/visionclient",
"versions": [
"v0.17.2",
"v0.17.1",
"v0.17.0",
"v0.16.0",
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ class ServiceBuilder extends CoreServiceBuilder
/**
* @deprecated
*/
const VERSION = '0.81.0';
const VERSION = '0.82.0';
}
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
*/
class Version
{
const VERSION = '0.81.0';
const VERSION = '0.82.0';
}

0 comments on commit 3b8eaba

Please sign in to comment.