Skip to content

Commit

Permalink
chore(main): release 0.123.3 (#770)
Browse files Browse the repository at this point in the history
🤖 I have created a release *beep* *boop*
---


## [0.123.3](googleapis/java-datalabeling@v0.123.2...v0.123.3) (2022-08-09)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#769](googleapis/java-datalabeling#769)) ([548f6b8](googleapis/java-datalabeling@548f6b8))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
  • Loading branch information
release-please[bot] authored Aug 12, 2022
1 parent 0bbe105 commit 6acdf8a
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 18 deletions.
7 changes: 7 additions & 0 deletions java-datalabeling/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.123.3](https://github.com/googleapis/java-datalabeling/compare/v0.123.2...v0.123.3) (2022-08-09)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#769](https://github.com/googleapis/java-datalabeling/issues/769)) ([5f2e3c1](https://github.com/googleapis/java-datalabeling/commit/5f2e3c14bd4fc50653b7121d2239cab61f06d42b))

## [0.123.2](https://github.com/googleapis/java-datalabeling/compare/v0.123.1...v0.123.2) (2022-07-13)


Expand Down
8 changes: 4 additions & 4 deletions java-datalabeling/google-cloud-datalabeling-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datalabeling-bom</artifactId>
<version>0.123.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
<version>0.123.3</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
<packaging>pom</packaging>
<parent>
<groupId>com.google.cloud</groupId>
Expand Down Expand Up @@ -52,17 +52,17 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datalabeling</artifactId>
<version>0.123.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
<version>0.123.3</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-datalabeling-v1beta1</artifactId>
<version>0.88.3-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-datalabeling-v1beta1:current} -->
<version>0.88.3</version><!-- {x-version-update:grpc-google-cloud-datalabeling-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-datalabeling-v1beta1</artifactId>
<version>0.88.3-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-datalabeling-v1beta1:current} -->
<version>0.88.3</version><!-- {x-version-update:proto-google-cloud-datalabeling-v1beta1:current} -->
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
4 changes: 2 additions & 2 deletions java-datalabeling/google-cloud-datalabeling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datalabeling</artifactId>
<version>0.123.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
<version>0.123.3</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
<packaging>jar</packaging>
<name>Google Cloud Data Labeling</name>
<url>https://github.com/googleapis/java-datalabeling</url>
<description>Java idiomatic client for Google Cloud Data Labeling</description>
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datalabeling-parent</artifactId>
<version>0.123.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
<version>0.123.3</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
</parent>
<properties>
<site.installationModule>google-cloud-datalabeling</site.installationModule>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.datalabeling.v1beta1.it;
package com.google.cloud.datalabeling.it;

import static org.junit.Assert.assertEquals;

Expand All @@ -38,6 +38,7 @@
import org.junit.Test;

public class ITSystemTest {

private static DataLabelingServiceClient client;
private static String dataSetId;
private static String annotationSpecSetId;
Expand Down Expand Up @@ -119,6 +120,9 @@ public void listDatasetsTest() {
DataLabelingServiceClient.ListDatasetsPagedResponse pagedListResponse =
client.listDatasets(PARENT, filter);
List<Dataset> resources = Lists.newArrayList(pagedListResponse.iterateAll());
// This removal ensures that other integration tests on the same GCP project do not interfere.
resources.removeIf(dataset -> !dataset.getName().split("/")[3].equals(dataSetId));

assertEquals(1, resources.size());
}

Expand All @@ -136,6 +140,11 @@ public void listAnnotationSpecSetsTest() {
DataLabelingServiceClient.ListAnnotationSpecSetsPagedResponse pagedListResponse =
client.listAnnotationSpecSets(PARENT, filter);
List<AnnotationSpecSet> resources = Lists.newArrayList(pagedListResponse.iterateAll());
// This removal ensures that other integration tests on the same GCP project do not interfere.
resources.removeIf(
annotationSpecSet ->
!annotationSpecSet.getName().split("/")[3].equals(annotationSpecSetId));

assertEquals(1, resources.size());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-datalabeling-v1beta1</artifactId>
<version>0.88.3-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-datalabeling-v1beta1:current} -->
<version>0.88.3</version><!-- {x-version-update:grpc-google-cloud-datalabeling-v1beta1:current} -->
<name>grpc-google-cloud-datalabeling-v1beta1</name>
<description>GRPC library for grpc-google-cloud-datalabeling-v1beta1</description>
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datalabeling-parent</artifactId>
<version>0.123.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
<version>0.123.3</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
</parent>
<dependencies>
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions java-datalabeling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datalabeling-parent</artifactId>
<packaging>pom</packaging>
<version>0.123.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
<version>0.123.3</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
<name>Google Cloud Data Labeling Parent</name>
<url>https://github.com/googleapis/java-datalabeling</url>
<description>
Expand Down Expand Up @@ -61,17 +61,17 @@
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-datalabeling-v1beta1</artifactId>
<version>0.88.3-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-datalabeling-v1beta1:current} -->
<version>0.88.3</version><!-- {x-version-update:proto-google-cloud-datalabeling-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-datalabeling-v1beta1</artifactId>
<version>0.88.3-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-datalabeling-v1beta1:current} -->
<version>0.88.3</version><!-- {x-version-update:grpc-google-cloud-datalabeling-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datalabeling</artifactId>
<version>0.123.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
<version>0.123.3</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-datalabeling-v1beta1</artifactId>
<version>0.88.3-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-datalabeling-v1beta1:current} -->
<version>0.88.3</version><!-- {x-version-update:proto-google-cloud-datalabeling-v1beta1:current} -->
<name>proto-google-cloud-datalabeling-v1beta1</name>
<description>PROTO library for proto-google-cloud-datalabeling-v1beta1</description>
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datalabeling-parent</artifactId>
<version>0.123.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
<version>0.123.3</version><!-- {x-version-update:google-cloud-datalabeling:current} -->
</parent>
<dependencies>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions java-datalabeling/versions.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Format:
# module:released-version:current-version

google-cloud-datalabeling:0.123.2:0.123.3-SNAPSHOT
grpc-google-cloud-datalabeling-v1beta1:0.88.2:0.88.3-SNAPSHOT
proto-google-cloud-datalabeling-v1beta1:0.88.2:0.88.3-SNAPSHOT
google-cloud-datalabeling:0.123.3:0.123.3
grpc-google-cloud-datalabeling-v1beta1:0.88.3:0.88.3
proto-google-cloud-datalabeling-v1beta1:0.88.3:0.88.3

0 comments on commit 6acdf8a

Please sign in to comment.