Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Google Cloud PHP v0.24.0
This is a big one. We're preparing to publish each part of Google Cloud PHP as
individual packages, so this release includes many changes to prepare for that.
Google Cloud Core
src/
except for
ServiceBuilder
into a newGoogle\Cloud\Core
namespace. Most ofthese classes are used internally and shouldn't have a big impact on you, but
one to take note of:
Google\Cloud\Int64
has moved toGoogle\Cloud\Core\Int64
. (Component split #360)Google\Cloud\Iam
has moved toGoogle\Cloud\Core\Iam
. (Component split #360)Google\Cloud\Compute
has movedto
Google\Cloud\Core\Compute
. (Component split #360)Google\Cloud\Exception
hasmoved to
Google\Cloud\Core\Exception
. (Component split #360)Google\Cloud\Logger
has movedto
Google\Cloud\Core\Logger
. (Component split #360)Google\Cloud\Upload
has movedto
Google\Cloud\Core\Upload
. (Component split #360)BigQuery
Google\Cloud\BigQuery\Table::export()
now accepts either an instance ofGoogle\Cloud\Storage\StorageObject
or a gcsUri string as its first argument.(Component split #360)
Cloud Natural Language
Several methods on
Google\Cloud\NaturalLanguage\NaturalLanguageClient
havebeen updated:
analyzeEntities()
The first argument may be an instance ofGoogle\Cloud\Storage\StorageObject
, or a string. The string may be agcsUri.
analyzeSentiment()
The first argument may be an instance ofGoogle\Cloud\Storage\StorageObject
, or a string. The string may be agcsUri.
analyzeSyntax()
The first argument may be an instance ofGoogle\Cloud\Storage\StorageObject
, or a string. The string may be agcsUri.
Cloud Speech
Google\Cloud\Speech\SpeechClient::recognize()
has been updated. The firstargument may be a string of bytes, a gcsUri string, or an instance of
Google\Cloud\Storage\StorageObject
.Google Cloud Storage
Google\Cloud\Storage\StorageObject
now exposes a new method calledgcsUri()
, which will return a Cloud Storage URI to your object. (Component split #360)