Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

chore(main): release 0.123.3 #770

Merged
merged 6 commits into from
Aug 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions 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 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 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());
}
}
4 changes: 2 additions & 2 deletions grpc-google-cloud-datalabeling-v1beta1/pom.xml
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 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
4 changes: 2 additions & 2 deletions proto-google-cloud-datalabeling-v1beta1/pom.xml
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 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