Skip to content

Commit ff8bfda

Browse files
chore(main): release 1.38.0
1 parent 455a917 commit ff8bfda

File tree

28 files changed

+475
-77
lines changed

28 files changed

+475
-77
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.37.0"
2+
".": "1.38.0"
33
}

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Changelog
22

3+
## [1.38.0](https://github.com/googleapis/google-cloud-java/compare/v1.37.0...v1.38.0) (2024-05-10)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* [parallelstore] An existing field `destination_path` is renamed to `destination_parallelstore` in message `.google.cloud.parallelstore.v1beta.ImportDataRequest`
9+
* [parallelstore] An existing field `source_path` is renamed to `source_parallelstore` in message `.google.cloud.parallelstore.v1beta.ExportDataRequest`
10+
* [parallelstore] An existing field `destination_gcs_uri` is renamed to `destination_gcs_bucket` in message `.google.cloud.parallelstore.v1beta.ExportDataRequest`
11+
* [parallelstore] An existing field `source_gcs_uri` is renamed to `source_gcs_bucket` in message `.google.cloud.parallelstore.v1beta.ImportDataRequest`
12+
13+
### Features
14+
15+
* [batch] Add UpdateJob API to update the job spec, only task_count is supported now ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
16+
* [batch] Update description on allowed_locations in LocationPolicy field ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
17+
* [maps-routeoptimization] link RPC & REST reference documentation for Route Optimization ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
18+
* [parallelstore] A new message `DestinationGcsBucket` is added ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
19+
* [parallelstore] A new message `DestinationParallelstore` is added ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
20+
* [parallelstore] A new message `SourceGcsBucket` is added ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
21+
* [parallelstore] A new message `SourceParallelstore` is added ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
22+
23+
24+
### Bug Fixes
25+
26+
* [parallelstore] An existing field `destination_gcs_uri` is renamed to `destination_gcs_bucket` in message `.google.cloud.parallelstore.v1beta.ExportDataRequest` ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
27+
* [parallelstore] An existing field `destination_path` is renamed to `destination_parallelstore` in message `.google.cloud.parallelstore.v1beta.ImportDataRequest` ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
28+
* [parallelstore] An existing field `source_gcs_uri` is renamed to `source_gcs_bucket` in message `.google.cloud.parallelstore.v1beta.ImportDataRequest` ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
29+
* [parallelstore] An existing field `source_path` is renamed to `source_parallelstore` in message `.google.cloud.parallelstore.v1beta.ExportDataRequest` ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
30+
31+
32+
### Documentation
33+
34+
* [batch] updated comments ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
35+
* [document-ai] updated comments ([46fa9ba](https://github.com/googleapis/google-cloud-java/commit/46fa9ba2eb614ba41ab527e13b0c400fe54b58e0))
36+
337
## [1.37.0](https://github.com/googleapis/google-cloud-java/compare/v1.36.0...v1.37.0) (2024-05-08)
438

539

changelog.json

Lines changed: 365 additions & 1 deletion
Large diffs are not rendered by default.

java-speech/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies:
4242
<dependency>
4343
<groupId>com.google.cloud</groupId>
4444
<artifactId>google-cloud-speech</artifactId>
45-
<version>4.38.0</version>
45+
<version>4.39.0</version>
4646
</dependency>
4747
```
4848

4949
If you are using Gradle without BOM, add this to your dependencies:
5050

5151
```Groovy
52-
implementation 'com.google.cloud:google-cloud-speech:4.38.0'
52+
implementation 'com.google.cloud:google-cloud-speech:4.39.0'
5353
```
5454

5555
If you are using SBT, add this to your dependencies:
5656

5757
```Scala
58-
libraryDependencies += "com.google.cloud" % "google-cloud-speech" % "4.38.0"
58+
libraryDependencies += "com.google.cloud" % "google-cloud-speech" % "4.39.0"
5959
```
6060
<!-- {x-version-update-end} -->
6161

java-storage-transfer/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies:
4242
<dependency>
4343
<groupId>com.google.cloud</groupId>
4444
<artifactId>google-cloud-storage-transfer</artifactId>
45-
<version>1.43.0</version>
45+
<version>1.44.0</version>
4646
</dependency>
4747
```
4848

4949
If you are using Gradle without BOM, add this to your dependencies:
5050

5151
```Groovy
52-
implementation 'com.google.cloud:google-cloud-storage-transfer:1.43.0'
52+
implementation 'com.google.cloud:google-cloud-storage-transfer:1.44.0'
5353
```
5454

5555
If you are using SBT, add this to your dependencies:
5656

5757
```Scala
58-
libraryDependencies += "com.google.cloud" % "google-cloud-storage-transfer" % "1.43.0"
58+
libraryDependencies += "com.google.cloud" % "google-cloud-storage-transfer" % "1.44.0"
5959
```
6060
<!-- {x-version-update-end} -->
6161

java-storageinsights/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,20 @@ If you are using Maven without the BOM, add this to your dependencies:
4545
<dependency>
4646
<groupId>com.google.cloud</groupId>
4747
<artifactId>google-cloud-storageinsights</artifactId>
48-
<version>0.28.0</version>
48+
<version>0.29.0</version>
4949
</dependency>
5050
```
5151

5252
If you are using Gradle without BOM, add this to your dependencies:
5353

5454
```Groovy
55-
implementation 'com.google.cloud:google-cloud-storageinsights:0.28.0'
55+
implementation 'com.google.cloud:google-cloud-storageinsights:0.29.0'
5656
```
5757

5858
If you are using SBT, add this to your dependencies:
5959

6060
```Scala
61-
libraryDependencies += "com.google.cloud" % "google-cloud-storageinsights" % "0.28.0"
61+
libraryDependencies += "com.google.cloud" % "google-cloud-storageinsights" % "0.29.0"
6262
```
6363
<!-- {x-version-update-end} -->
6464

java-talent/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies:
4242
<dependency>
4343
<groupId>com.google.cloud</groupId>
4444
<artifactId>google-cloud-talent</artifactId>
45-
<version>2.44.0</version>
45+
<version>2.45.0</version>
4646
</dependency>
4747
```
4848

4949
If you are using Gradle without BOM, add this to your dependencies:
5050

5151
```Groovy
52-
implementation 'com.google.cloud:google-cloud-talent:2.44.0'
52+
implementation 'com.google.cloud:google-cloud-talent:2.45.0'
5353
```
5454

5555
If you are using SBT, add this to your dependencies:
5656

5757
```Scala
58-
libraryDependencies += "com.google.cloud" % "google-cloud-talent" % "2.44.0"
58+
libraryDependencies += "com.google.cloud" % "google-cloud-talent" % "2.45.0"
5959
```
6060
<!-- {x-version-update-end} -->
6161

java-tasks/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies:
4242
<dependency>
4343
<groupId>com.google.cloud</groupId>
4444
<artifactId>google-cloud-tasks</artifactId>
45-
<version>2.43.0</version>
45+
<version>2.44.0</version>
4646
</dependency>
4747
```
4848

4949
If you are using Gradle without BOM, add this to your dependencies:
5050

5151
```Groovy
52-
implementation 'com.google.cloud:google-cloud-tasks:2.43.0'
52+
implementation 'com.google.cloud:google-cloud-tasks:2.44.0'
5353
```
5454

5555
If you are using SBT, add this to your dependencies:
5656

5757
```Scala
58-
libraryDependencies += "com.google.cloud" % "google-cloud-tasks" % "2.43.0"
58+
libraryDependencies += "com.google.cloud" % "google-cloud-tasks" % "2.44.0"
5959
```
6060
<!-- {x-version-update-end} -->
6161

java-telcoautomation/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,20 @@ If you are using Maven without the BOM, add this to your dependencies:
4545
<dependency>
4646
<groupId>com.google.cloud</groupId>
4747
<artifactId>google-cloud-telcoautomation</artifactId>
48-
<version>0.13.0</version>
48+
<version>0.14.0</version>
4949
</dependency>
5050
```
5151

5252
If you are using Gradle without BOM, add this to your dependencies:
5353

5454
```Groovy
55-
implementation 'com.google.cloud:google-cloud-telcoautomation:0.13.0'
55+
implementation 'com.google.cloud:google-cloud-telcoautomation:0.14.0'
5656
```
5757

5858
If you are using SBT, add this to your dependencies:
5959

6060
```Scala
61-
libraryDependencies += "com.google.cloud" % "google-cloud-telcoautomation" % "0.13.0"
61+
libraryDependencies += "com.google.cloud" % "google-cloud-telcoautomation" % "0.14.0"
6262
```
6363
<!-- {x-version-update-end} -->
6464

java-texttospeech/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies:
4242
<dependency>
4343
<groupId>com.google.cloud</groupId>
4444
<artifactId>google-cloud-texttospeech</artifactId>
45-
<version>2.44.0</version>
45+
<version>2.45.0</version>
4646
</dependency>
4747
```
4848

4949
If you are using Gradle without BOM, add this to your dependencies:
5050

5151
```Groovy
52-
implementation 'com.google.cloud:google-cloud-texttospeech:2.44.0'
52+
implementation 'com.google.cloud:google-cloud-texttospeech:2.45.0'
5353
```
5454

5555
If you are using SBT, add this to your dependencies:
5656

5757
```Scala
58-
libraryDependencies += "com.google.cloud" % "google-cloud-texttospeech" % "2.44.0"
58+
libraryDependencies += "com.google.cloud" % "google-cloud-texttospeech" % "2.45.0"
5959
```
6060
<!-- {x-version-update-end} -->
6161

0 commit comments

Comments
 (0)