Skip to content

deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.8.0 - abandoned - #108

Closed
renovate-bot wants to merge 2 commits into
googleapis:mainfrom
renovate-bot:renovate/com.google.cloud-google-cloud-spanneradapter-0.x
Closed

deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.8.0 - abandoned#108
renovate-bot wants to merge 2 commits into
googleapis:mainfrom
renovate-bot:renovate/com.google.cloud-google-cloud-spanneradapter-0.x

Conversation

@renovate-bot

@renovate-bot renovate-bot commented Jun 21, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.google.cloud:google-cloud-spanneradapter 0.0.1 -> 0.8.0 age adoption passing confidence

Release Notes

googleapis/google-cloud-java (com.google.cloud:google-cloud-spanneradapter)

v0.8.0: 0.8.0

Compare Source

Select clients going from Alpha to Beta

In this release, clients for four APIs are moving to beta:

  • Google Cloud BigQuery
  • Stackdriver Logging
  • Google Cloud Datastore
  • Google Cloud Storage

Their versions will have “-beta” on the end call out that fact. All other clients are still Alpha.

Features
  • QueryParameter support added to BigQuery, DATE/TIME/DATETIME added to LegacySQLTypeName (#​1451)
Interface changes
  • Logging api layer: using resource name classes instead of strings where appropriate (#​1454)
Test improvements

Several tests were flaky on AppVeyor, so improvements were made to make them more reliable.

  • BlockingProcessStreamReader (#​1457)
  • BigQuery integration tests (#​1456)
  • PubSub integration tests (#​1453)
  • DNS tests: removed LocalDnsHelper and its test (#​1446)

Despite that, integration tests were still failing on AppVeyor, so they have been disabled until they can all run reliably - tracking issue: #​1429

Documentation, Snippets

v0.7.0: 0.7.0

Compare Source

Naming, interface changes
  • SPI classes ending in Api have been renamed so that they end in Client (#​1417)
  • Deleted the client for Natural Language v1beta1, added the client for Natural Language v1 (#​1417)
  • PubSub SPI classes now take resource name classes instead of strings (#​1403)
Features
  • Speech SPI layer: AsyncRecognize now returns a new OperationFuture type which enables an easier way to get the final result of the long-running operation. (#​1419)
Documentation, Snippets

v0.6.0: 0.6.0

Compare Source

Credentials changes

AuthCredentials classes have been deleted. Use classes from google-auth-library-java for authentication.

google-cloud will still try to infer credentials from the environment when no credentials are provided:

Storage storage = StorageOptions.getDefaultInstance().getService();

You can also explicitly provide credentials. For instance, to use a JSON credentials file try the following code:

Storage storage = StorageOptions.newBuilder()
    .setCredentials(ServiceAccountCredentials.fromStream(new FileInputStream("/path/to/my/key.json"))
    .build()
    .getService();

For more details see the Authentication section of the main README.

Features
PubSub
  • All pullAsync methods now use returnImmediately=false and are not subject to client-side timeouts (#​1387)
Translate
  • Add support for the TranslateOption.model(String) option which allows to set the language translation model used to translate text. This option is only available to whitelisted users (#​1393)
Fixes
Storage
  • Change BaseWriteChannel's position to long to fix integer overflow on big files (#​1390)

v0.4.0: 0.4.0

Compare Source

Features
BigQuery
  • Add of(String) factory method to DatasetInfo (#​1275)
bigquery.create(DatasetInfo.of("dataset-name"));
Core
  • google-cloud now depends on protobuf 3.0.0 and grpc 1.0.1 (#​1273)
PubSub
  • Add support for IAM methods for sinks and subscriptions (#​1231)
// Example of replacing a subscription policy
Policy policy = pubsub.getSubscriptionPolicy(subscriptionName);
Policy updatedPolicy = policy.toBuilder()
    .addIdentity(Role.viewer(), Identity.allAuthenticatedUsers())
    .build();
updatedPolicy = pubsub.replaceSubscriptionPolicy(subscriptionName, updatedPolicy);

// Example of asynchronously replacing a topic policy
Policy policy = pubsub.getTopicPolicy(topicName);
Policy updatedPolicy = policy.toBuilder()
    .addIdentity(Role.viewer(), Identity.allAuthenticatedUsers())
    .build();
Future<Policy> future = pubsub.replaceTopicPolicyAsync(topicName, updatedPolicy);
// ...
updatedPolicy = future.get();
Storage
  • Add support for create/get/update/delete/list ACLs for blobs and buckets (#​1228)
// Example of updating the ACL for a blob
BlobId blobId = BlobId.of(bucketName, blobName, blobGeneration);
Acl acl = storage.updateAcl(blobId, Acl.of(User.ofAllAuthenticatedUsers(), Role.OWNER));

// Example of listing the ACL entries for a bucket
List<Acl> acls = storage.listAcls(bucketName);
for (Acl acl : acls) {
   // do something with ACL entry
}
Key key = ...;
String base64Key = ...;
byte[] content = {0xD, 0xE, 0xA, 0xD};
BlobInfo blobInfo = BlobInfo.builder(bucketName, blobName).build();

// Example of creating a blob with a customer-supplied encryption key (as Key object)
storage.create(blobInfo, content, Storage.BlobTargetOption.encryptionKey(key));

// Example of reading a blob with a customer-supplied decryption key (as base64 String)
byte[] readBytes =
    storage.readAllBytes(bucketName, blobName, Storage.BlobSourceOption.decryptionKey(base64Key));
Fixes
BigQuery
  • Support operations on tables/datasets/jobs in projects other than the one set in BigQueryOptions (#​1217)
  • Allow constructing a RowToInsert using Map<Str, ? extends Object> rather than Map<Str, Object> (#​1259)
Datastore
  • Retry ABORTED Datastore commits only when the commit was NON_TRANSACTIONAL (#​1235)
Logging
  • Remove unnecessary MetricInfo parameter from Metric.updateAsync() (#​1221)
  • Remove unnecessary SinkInfo parameter from Sink.updateAsync() (#​1222)
  • Logging.deleteSink now returns false on NOT_FOUND (#​1222)
Storage
  • Retry calls that open a resumable upload session in WriteChannel, when they fail with a retryable error (#​1233)
  • Fix generation of signed URLs for blobs containing spaces and other special chars (#​1277 - thanks to @​ostronom)

v0.3.0: 0.3.0

Compare Source

gcloud-java renamed to google-cloud

gcloud-java has been deprecated and renamed to google-cloud.

If you are using Maven, add this to your pom.xml file

<dependency>
  <groupId>com.google.cloud</groupId>
  <artifactId>google-cloud</artifactId>
  <version>0.3.0</version>
</dependency>

If you are using Gradle, add this to your dependencies

compile 'com.google.cloud:google-cloud:0.3.0'

If you are using SBT, add this to your dependencies

libraryDependencies += "com.google.cloud" % "google-cloud" % "0.3.0"
gcloud-java-<service> renamed to google-cloud-<service>

Service-specific artifacts have also been renamed from gcloud-java-<service> to google-cloud-<service>. See the following for examples of adding google-cloud-datastore as a dependency:

<dependency>
  <groupId>com.google.cloud</groupId>
  <artifactId>google-cloud-datastore</artifactId>
  <version>0.3.0</version>
</dependency>

If you are using Gradle, add this to your dependencies

compile 'com.google.cloud:google-cloud-datastore:0.3.0'

If you are using SBT, add this to your dependencies

libraryDependencies += "com.google.cloud" % "google-cloud-datastore" % "0.3.0"
Other changes

v0.2.0: 0.2.0

Features
General
  • gcloud-java has been repackaged. com.google.gcloud has now changed to com.google.cloud, and we're releasing our artifacts on maven under the Group ID com.google.cloud rather than com.google.gcloud. The new way to add our library as a dependency in your project is as follows:

If you're using Maven, add this to your pom.xml file

<dependency>
  <groupId>com.google.cloud</groupId>
  <artifactId>gcloud-java</artifactId>
  <version>0.2.0</version>
</dependency>

If you are using Gradle, add this to your dependencies

compile 'com.google.cloud:gcloud-java:0.2.0'

If you are using SBT, add this to your dependencies

libraryDependencies += "com.google.cloud" % "gcloud-java" % "0.2.0"
Storage
  • The interface ServiceAccountSigner was added. Both AppEngineAuthCredentials and ServiceAccountAuthCredentials extend this interface and can be used to sign Google Cloud Storage blob URLs (#​701, #​854).
Fixes
General
  • The default RPC retry parameters were changed to align with the backoff policy requirement listed in the Service Level Agreements (SLAs) for Cloud BigQuery, and Cloud Datastore, and Cloud Storage (#​857, #​860).
  • The expiration date is now properly populated for App Engine credentials (#​873, #​894).
  • gcloud-java now uses the project ID given in the credentials file specified by the environment variable GOOGLE_APPLICATION_CREDENTIALS (if set) (#​845).
BigQuery
  • Job's isDone method is fixed to return true if the job is complete or the job doesn't exist (#​853).
Datastore
  • LocalGcdHelper has been renamed to RemoteDatastoreHelper, and the command line startup/shutdown of the helper has been removed. The helper is now more consistent with other modules' test helpers and can be used via the create, start, and stop methods (#​821).
  • ListValue no longer rejects empty lists, since Cloud Datastore v1beta3 supports empty array values (#​862).
DNS
  • There were some minor changes to ChangeRequest, namely adding reload/isDone methods and changing the method signature of applyTo (#​849).
Storage
  • RemoteGcsHelper was renamed to RemoteStorageHelper to be more consistent with other modules' test helpers (#​821).

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

mayurkale22
mayurkale22 previously approved these changes Jun 21, 2025
@renovate-bot
renovate-bot force-pushed the renovate/com.google.cloud-google-cloud-spanneradapter-0.x branch from fe1a38b to 0ace4cf Compare June 26, 2025 21:51
@renovate-bot renovate-bot changed the title deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.2.0 deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.3.0 Jun 26, 2025
@renovate-bot
renovate-bot force-pushed the renovate/com.google.cloud-google-cloud-spanneradapter-0.x branch from 0ace4cf to b3908b8 Compare July 14, 2025 20:02
@renovate-bot renovate-bot changed the title deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.3.0 deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.4.0 Jul 14, 2025
@renovate-bot
renovate-bot force-pushed the renovate/com.google.cloud-google-cloud-spanneradapter-0.x branch from b3908b8 to d53c591 Compare July 30, 2025 22:46
@renovate-bot renovate-bot changed the title deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.4.0 deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.6.0 Jul 30, 2025
@renovate-bot
renovate-bot force-pushed the renovate/com.google.cloud-google-cloud-spanneradapter-0.x branch from d53c591 to 618efc8 Compare August 8, 2025 22:27
@renovate-bot renovate-bot changed the title deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.6.0 deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.7.0 Aug 8, 2025
@renovate-bot
renovate-bot force-pushed the renovate/com.google.cloud-google-cloud-spanneradapter-0.x branch from 618efc8 to 48cc17c Compare August 14, 2025 04:44
@renovate-bot renovate-bot changed the title deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.7.0 deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.8.0 Aug 14, 2025
@forking-renovate

Copy link
Copy Markdown

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@renovate-bot renovate-bot changed the title deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.8.0 deps: update dependency com.google.cloud:google-cloud-spanneradapter to v0.8.0 - abandoned Dec 16, 2025
@forking-renovate

Copy link
Copy Markdown

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

@ath-08 ath-08 closed this Dec 16, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants