Skip to content

Commit

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

### google/cloud-debugger v0.12.0

* Cloud Debugger limits the amount of data captured for snapshots by default. Several new configuration options have been added to {@see Google\Cloud\Debugger\Agent::__construct()} to allow control over these new defaults. (#1099)
* Fixed a bug where a debuggee may not register properly. (#1102)
* Fixed a bug where Stackdriver Debugger was not compatible with PHP 7.0. (#1104)

### google/cloud-logging v1.12.1

* Added missing passthrough options in {@see Google\Cloud\Logging\LoggingClient::psrLogger()} and fixed object serialization. (#1110)

### google/cloud-videointelligence v1.0.0

* There are no code changes since our last release, but we are proud to now announce our support of Cloud Video Intelligence at a GA level. This means that we do not expect to introduce any breaking changes and that we believe the library is ready for production use. For more information on our versioning please see [here](https://github.com/GoogleCloudPlatform/google-cloud-php#versioning).
  • Loading branch information
jdpedrie authored Jun 20, 2018
1 parent ddaf687 commit d72d8a8
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Debugger/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.0
0.12.0
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.11.0';
const VERSION = '0.12.0';

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 Logging/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.12.0
1.12.1
2 changes: 1 addition & 1 deletion Logging/src/LoggingClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class LoggingClient
use ArrayTrait;
use ClientTrait;

const VERSION = '1.12.0';
const VERSION = '1.12.1';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/logging.admin';
const READ_ONLY_SCOPE = 'https://www.googleapis.com/auth/logging.read';
Expand Down
2 changes: 1 addition & 1 deletion VideoIntelligence/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.0
1.0.0
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@
"google/cloud-core": "1.20.5",
"google/cloud-dataproc": "0.5.0",
"google/cloud-datastore": "1.5.4",
"google/cloud-debugger": "0.11.0",
"google/cloud-debugger": "0.12.0",
"google/cloud-dialogflow": "0.3.0",
"google/cloud-dlp": "0.10.0",
"google/cloud-error-reporting": "0.11.0",
"google/cloud-firestore": "0.11.0",
"google/cloud-iot": "0.3.0",
"google/cloud-language": "0.15.0",
"google/cloud-logging": "1.12.0",
"google/cloud-logging": "1.12.1",
"google/cloud-monitoring": "0.11.0",
"google/cloud-oslogin": "0.5.0",
"google/cloud-pubsub": "1.3.0",
Expand All @@ -88,7 +88,7 @@
"google/cloud-storage": "1.5.2",
"google/cloud-trace": "0.10.0",
"google/cloud-translate": "1.2.2",
"google/cloud-videointelligence": "0.12.0",
"google/cloud-videointelligence": "1.0.0",
"google/cloud-vision": "0.14.0"
},
"suggest": {
Expand Down
4 changes: 4 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.69.0",
"v0.68.0",
"v0.67.0",
"v0.66.1",
Expand Down Expand Up @@ -294,6 +295,7 @@
"name": "google/cloud-debugger",
"defaultService": "debugger/debuggerclient",
"versions": [
"v0.12.0",
"v0.11.0",
"v0.10.0",
"v0.9.0",
Expand Down Expand Up @@ -478,6 +480,7 @@
"name": "google/cloud-logging",
"defaultService": "logging/loggingclient",
"versions": [
"v1.12.1",
"v1.12.0",
"v1.11.1",
"v1.11.0",
Expand Down Expand Up @@ -783,6 +786,7 @@
"name": "google/cloud-videointelligence",
"defaultService": "videointelligence/readme",
"versions": [
"v1.0.0",
"v0.12.0",
"v0.11.1",
"v0.11.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.68.0';
const VERSION = '0.69.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.68.0';
const VERSION = '0.69.0';
}

0 comments on commit d72d8a8

Please sign in to comment.