Skip to content

Commit 713e5cc

Browse files
chore(main): release 2.14.1
1 parent bdf12b0 commit 713e5cc

File tree

30 files changed

+103
-95
lines changed

30 files changed

+103
-95
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [2.14.1](https://github.com/googleapis/gapic-generator-java/compare/v2.14.0...v2.14.1) (2023-01-26)
4+
5+
6+
### Bug Fixes
7+
8+
* **ast:** Update import generation to cover annotation parameters ([#1229](https://github.com/googleapis/gapic-generator-java/issues/1229)) ([bdf12b0](https://github.com/googleapis/gapic-generator-java/commit/bdf12b0df91446abac8cb1bf2d361bb886eb91a2))
9+
* Support mvn fmt:check and fmt:format ([#1266](https://github.com/googleapis/gapic-generator-java/issues/1266)) ([c96a2e7](https://github.com/googleapis/gapic-generator-java/commit/c96a2e7cf647cf245199c33ad989c8050208646e))
10+
311
## [2.14.0](https://github.com/googleapis/gapic-generator-java/compare/v2.13.0...v2.14.0) (2023-01-19)
412

513

WORKSPACE

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ maven_install(
6060
repositories = ["https://repo.maven.apache.org/maven2/"],
6161
)
6262

63-
_gapic_generator_java_version = "2.14.1-SNAPSHOT" # {x-version-update:gapic-generator-java:current}
63+
_gapic_generator_java_version = "2.14.1" # {x-version-update:gapic-generator-java:current}
6464

6565
maven_install(
6666
artifacts = [

api-common-java/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ apply plugin: 'io.github.gradle-nexus.publish-plugin'
2626
group = "com.google.api"
2727
archivesBaseName = "api-common"
2828

29-
project.version = "2.5.1-SNAPSHOT" // {x-version-update:api-common:current}
29+
project.version = "2.5.1" // {x-version-update:api-common:current}
3030

3131
sourceCompatibility = 1.8
3232
targetCompatibility = 1.8

api-common-java/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<groupId>com.google.api</groupId>
66
<artifactId>api-common</artifactId>
77
<packaging>jar</packaging>
8-
<version>2.5.1-SNAPSHOT</version><!-- {x-version-update:api-common:current} -->
8+
<version>2.5.1</version><!-- {x-version-update:api-common:current} -->
99
<name>API Common</name>
1010
<description>Common utilities for Google APIs in Java</description>
1111

1212
<parent>
1313
<groupId>com.google.api</groupId>
1414
<artifactId>gapic-generator-java-pom-parent</artifactId>
15-
<version>2.14.1-SNAPSHOT</version><!-- {x-version-update:gapic-generator-java:current} -->
15+
<version>2.14.1</version><!-- {x-version-update:gapic-generator-java:current} -->
1616
<relativePath>../gapic-generator-java-pom-parent</relativePath>
1717
</parent>
1818

gapic-generator-java-bom/pom.xml

+12-12
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.google.api</groupId>
55
<artifactId>gapic-generator-java-bom</artifactId>
66
<packaging>pom</packaging>
7-
<version>2.14.1-SNAPSHOT</version><!-- {x-version-update:gapic-generator-java:current} -->
7+
<version>2.14.1</version><!-- {x-version-update:gapic-generator-java:current} -->
88
<name>GAPIC Generator Java BOM</name>
99
<description>
1010
BOM for the libraries in gapic-generator-java repository. Users should not
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>com.google.api</groupId>
1717
<artifactId>gapic-generator-java-pom-parent</artifactId>
18-
<version>2.14.1-SNAPSHOT</version><!-- {x-version-update:gapic-generator-java:current} -->
18+
<version>2.14.1</version><!-- {x-version-update:gapic-generator-java:current} -->
1919
<relativePath>../gapic-generator-java-pom-parent</relativePath>
2020
</parent>
2121

@@ -60,56 +60,56 @@
6060
<dependency>
6161
<groupId>com.google.api</groupId>
6262
<artifactId>api-common</artifactId>
63-
<version>2.5.1-SNAPSHOT</version><!-- {x-version-update:api-common:current} -->
63+
<version>2.5.1</version><!-- {x-version-update:api-common:current} -->
6464
</dependency>
6565
<dependency>
6666
<groupId>com.google.api</groupId>
6767
<artifactId>gax-bom</artifactId>
68-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax:current} -->
68+
<version>2.22.1</version><!-- {x-version-update:gax:current} -->
6969
<type>pom</type>
7070
<scope>import</scope>
7171
</dependency>
7272
<dependency>
7373
<groupId>com.google.api.grpc</groupId>
7474
<artifactId>grpc-google-common-protos</artifactId>
75-
<version>2.13.1-SNAPSHOT</version><!-- {x-version-update:proto-google-common-protos:current} -->
75+
<version>2.13.1</version><!-- {x-version-update:proto-google-common-protos:current} -->
7676
</dependency>
7777
<dependency>
7878
<groupId>com.google.api.grpc</groupId>
7979
<artifactId>proto-google-common-protos</artifactId>
80-
<version>2.13.1-SNAPSHOT</version><!-- {x-version-update:proto-google-common-protos:current} -->
80+
<version>2.13.1</version><!-- {x-version-update:proto-google-common-protos:current} -->
8181
</dependency>
8282
<dependency>
8383
<groupId>com.google.api.grpc</groupId>
8484
<artifactId>proto-google-iam-v1</artifactId>
85-
<version>1.8.1-SNAPSHOT</version><!-- {x-version-update:proto-google-iam-v1:current} -->
85+
<version>1.8.1</version><!-- {x-version-update:proto-google-iam-v1:current} -->
8686
</dependency>
8787
<dependency>
8888
<groupId>com.google.api.grpc</groupId>
8989
<artifactId>proto-google-iam-v2</artifactId>
90-
<version>1.8.1-SNAPSHOT</version><!-- {x-version-update:proto-google-iam-v2:current} -->
90+
<version>1.8.1</version><!-- {x-version-update:proto-google-iam-v2:current} -->
9191
</dependency>
9292
<dependency>
9393
<groupId>com.google.api.grpc</groupId>
9494
<artifactId>proto-google-iam-v2beta</artifactId>
95-
<version>1.8.1-SNAPSHOT</version><!-- {x-version-update:proto-google-iam-v2beta:current} -->
95+
<version>1.8.1</version><!-- {x-version-update:proto-google-iam-v2beta:current} -->
9696
</dependency>
9797

9898
<!-- Following test deps are kept to keep them consistent with versions above -->
9999
<dependency>
100100
<groupId>com.google.api.grpc</groupId>
101101
<artifactId>grpc-google-iam-v1</artifactId>
102-
<version>1.8.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-iam-v1:current} -->
102+
<version>1.8.1</version><!-- {x-version-update:grpc-google-iam-v1:current} -->
103103
</dependency>
104104
<dependency>
105105
<groupId>com.google.api.grpc</groupId>
106106
<artifactId>grpc-google-iam-v2</artifactId>
107-
<version>1.8.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-iam-v2:current} -->
107+
<version>1.8.1</version><!-- {x-version-update:grpc-google-iam-v2:current} -->
108108
</dependency>
109109
<dependency>
110110
<groupId>com.google.api.grpc</groupId>
111111
<artifactId>grpc-google-iam-v2beta</artifactId>
112-
<version>1.8.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-iam-v2beta:current} -->
112+
<version>1.8.1</version><!-- {x-version-update:grpc-google-iam-v2beta:current} -->
113113
</dependency>
114114
</dependencies>
115115

gapic-generator-java-pom-parent/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.google.api</groupId>
77
<artifactId>gapic-generator-java-pom-parent</artifactId>
8-
<version>2.14.1-SNAPSHOT</version><!-- {x-version-update:gapic-generator-java:current} -->
8+
<version>2.14.1</version><!-- {x-version-update:gapic-generator-java:current} -->
99
<packaging>pom</packaging>
1010
<name>GAPIC Generator Java POM Parent</name>
1111
<url>https://github.com/googleapis/gapic-generator-java</url>

gapic-generator-java/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.google.api</groupId>
66
<artifactId>gapic-generator-java</artifactId>
7-
<version>2.14.1-SNAPSHOT</version><!-- {x-version-update:gapic-generator-java:current} -->
7+
<version>2.14.1</version><!-- {x-version-update:gapic-generator-java:current} -->
88
<name>GAPIC Generator Java</name>
99
<description>GAPIC generator Java</description>
1010

@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>com.google.api</groupId>
2525
<artifactId>gapic-generator-java-pom-parent</artifactId>
26-
<version>2.14.1-SNAPSHOT</version><!-- {x-version-update:gapic-generator-java:current} -->
26+
<version>2.14.1</version><!-- {x-version-update:gapic-generator-java:current} -->
2727
<relativePath>../gapic-generator-java-pom-parent</relativePath>
2828
</parent>
2929

@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>com.google.api</groupId>
3434
<artifactId>gapic-generator-java-bom</artifactId>
35-
<version>2.14.1-SNAPSHOT</version><!-- {x-version-update:gapic-generator-java:current} -->
35+
<version>2.14.1</version><!-- {x-version-update:gapic-generator-java:current} -->
3636
<type>pom</type>
3737
<scope>import</scope>
3838
</dependency>

gax-java/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ plugins {
1313
}
1414

1515
// TODO: Populate this from dependencies.properties version property (for proper Gradle-Bazel sync)
16-
project.version = "2.22.1-SNAPSHOT" // {x-version-update:gax:current}
16+
project.version = "2.22.1" // {x-version-update:gax:current}
1717

1818
allprojects {
1919
group = 'com.google.api'

gax-java/dependencies.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88

99
# Versions of oneself
1010
# {x-version-update-start:gax:current}
11-
version.gax=2.22.1-SNAPSHOT
11+
version.gax=2.22.1
1212
# {x-version-update-end}
1313
# {x-version-update-start:gax:current}
14-
version.gax_grpc=2.22.1-SNAPSHOT
14+
version.gax_grpc=2.22.1
1515
# {x-version-update-end}
1616
# {x-version-update-start:gax:current}
17-
version.gax_bom=2.22.1-SNAPSHOT
17+
version.gax_bom=2.22.1
1818
# {x-version-update-end}
1919
# {x-version-update-start:gax-httpjson:current}
20-
version.gax_httpjson=0.107.1-SNAPSHOT
20+
version.gax_httpjson=0.107.1
2121
# {x-version-update-end}
2222

2323
# Versions for dependencies which actual artifacts differ between Bazel and Gradle.

gax-java/gax-bom/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55

66
archivesBaseName = 'gax-bom'
77

8-
project.version = "2.22.1-SNAPSHOT" // {x-version-update:gax:current}
8+
project.version = "2.22.1" // {x-version-update:gax:current}
99

1010
def mavenJavaDir = "$buildDir/publications/mavenJava"
1111
def mavenJavaBomOutputFile = file(mavenJavaDir + '/pom-default.xml')

gax-java/gax-bom/pom.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.google.api</groupId>
55
<artifactId>gax-bom</artifactId>
6-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax:current} -->
6+
<version>2.22.1</version><!-- {x-version-update:gax:current} -->
77
<packaging>pom</packaging>
88
<name>GAX (Google Api eXtensions) for Java (BOM)</name>
99
<description>Google Api eXtensions for Java (BOM)</description>
@@ -42,34 +42,34 @@
4242
<dependency>
4343
<groupId>com.google.api</groupId>
4444
<artifactId>gax</artifactId>
45-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax:current} -->
45+
<version>2.22.1</version><!-- {x-version-update:gax:current} -->
4646
</dependency>
4747
<dependency>
4848
<groupId>com.google.api</groupId>
4949
<artifactId>gax</artifactId>
50-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax:current} -->
50+
<version>2.22.1</version><!-- {x-version-update:gax:current} -->
5151
<classifier>testlib</classifier>
5252
</dependency>
5353
<dependency>
5454
<groupId>com.google.api</groupId>
5555
<artifactId>gax-grpc</artifactId>
56-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax-grpc:current} -->
56+
<version>2.22.1</version><!-- {x-version-update:gax-grpc:current} -->
5757
</dependency>
5858
<dependency>
5959
<groupId>com.google.api</groupId>
6060
<artifactId>gax-grpc</artifactId>
61-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax-grpc:current} -->
61+
<version>2.22.1</version><!-- {x-version-update:gax-grpc:current} -->
6262
<classifier>testlib</classifier>
6363
</dependency>
6464
<dependency>
6565
<groupId>com.google.api</groupId>
6666
<artifactId>gax-httpjson</artifactId>
67-
<version>0.107.1-SNAPSHOT</version><!-- {x-version-update:gax-httpjson:current} -->
67+
<version>0.107.1</version><!-- {x-version-update:gax-httpjson:current} -->
6868
</dependency>
6969
<dependency>
7070
<groupId>com.google.api</groupId>
7171
<artifactId>gax-httpjson</artifactId>
72-
<version>0.107.1-SNAPSHOT</version><!-- {x-version-update:gax-httpjson:current} -->
72+
<version>0.107.1</version><!-- {x-version-update:gax-httpjson:current} -->
7373
<classifier>testlib</classifier>
7474
</dependency>
7575
</dependencies>

gax-java/gax-grpc/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
archivesBaseName = 'gax-grpc'
22

33
// TODO: Populate this from dependencies.properties version property (for proper Gradle-Bazel sync)
4-
project.version = "2.22.1-SNAPSHOT" // {x-version-update:gax-grpc:current}
4+
project.version = "2.22.1" // {x-version-update:gax-grpc:current}
55

66
dependencies {
77
api(project(':gax'),

gax-java/gax-grpc/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>gax-grpc</artifactId>
6-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax-grpc:current} -->
6+
<version>2.22.1</version><!-- {x-version-update:gax-grpc:current} -->
77
<packaging>jar</packaging>
88
<name>GAX (Google Api eXtensions) for Java (gRPC)</name>
99
<description>Google Api eXtensions for Java (gRPC)</description>
1010

1111
<parent>
1212
<groupId>com.google.api</groupId>
1313
<artifactId>gax-parent</artifactId>
14-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax:current} -->
14+
<version>2.22.1</version><!-- {x-version-update:gax:current} -->
1515
</parent>
1616

1717
<dependencies>

gax-java/gax-httpjson/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
archivesBaseName = 'gax-httpjson'
22

33
// TODO: Populate this from dependencies.properties version property (for proper Gradle-Bazel sync)
4-
project.version = "0.107.1-SNAPSHOT" // {x-version-update:gax-httpjson:current}
4+
project.version = "0.107.1" // {x-version-update:gax-httpjson:current}
55

66
dependencies {
77
api(project(':gax'),

gax-java/gax-httpjson/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>gax-httpjson</artifactId>
6-
<version>0.107.1-SNAPSHOT</version> <!-- {x-version-update:gax-httpjson:current} -->
6+
<version>0.107.1</version> <!-- {x-version-update:gax-httpjson:current} -->
77
<packaging>jar</packaging>
88
<name>GAX (Google Api eXtensions) for Java (HTTP JSON)</name>
99
<description>Google Api eXtensions for Java (HTTP JSON)</description>
1010

1111
<parent>
1212
<groupId>com.google.api</groupId>
1313
<artifactId>gax-parent</artifactId>
14-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax:current} -->
14+
<version>2.22.1</version><!-- {x-version-update:gax:current} -->
1515
</parent>
1616

1717
<properties>

gax-java/gax/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
archivesBaseName = "gax"
22

33
// TODO: Populate this from dependencies.properties version property (for proper Gradle-Bazel sync)
4-
project.version = "2.22.1-SNAPSHOT" // {x-version-update:gax:current}
4+
project.version = "2.22.1" // {x-version-update:gax:current}
55

66
dependencies {
77
api(libraries['maven.com_google_api_api_common'],

gax-java/gax/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>gax</artifactId>
6-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax:current} -->
6+
<version>2.22.1</version><!-- {x-version-update:gax:current} -->
77
<packaging>jar</packaging>
88
<name>GAX (Google Api eXtensions) for Java (Core)</name>
99
<description>Google Api eXtensions for Java (Core)</description>
1010

1111
<parent>
1212
<groupId>com.google.api</groupId>
1313
<artifactId>gax-parent</artifactId>
14-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax:current} -->
14+
<version>2.22.1</version><!-- {x-version-update:gax:current} -->
1515
</parent>
1616

1717
<dependencies>

gax-java/pom.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<groupId>com.google.api</groupId>
55
<artifactId>gax-parent</artifactId>
66
<packaging>pom</packaging>
7-
<version>2.22.1-SNAPSHOT</version><!-- {x-version-update:gax:current} -->
7+
<version>2.22.1</version><!-- {x-version-update:gax:current} -->
88
<name>GAX (Google Api eXtensions) for Java (Parent)</name>
99
<description>Google Api eXtensions for Java (Parent)</description>
1010

1111
<parent>
1212
<groupId>com.google.api</groupId>
1313
<artifactId>gapic-generator-java-pom-parent</artifactId>
14-
<version>2.14.1-SNAPSHOT</version><!-- {x-version-update:gapic-generator-java:current} -->
14+
<version>2.14.1</version><!-- {x-version-update:gapic-generator-java:current} -->
1515
<relativePath>../gapic-generator-java-pom-parent</relativePath>
1616
</parent>
1717

@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>com.google.api</groupId>
5353
<artifactId>api-common</artifactId>
54-
<version>2.5.1-SNAPSHOT</version><!-- {x-version-update:api-common:current} -->
54+
<version>2.5.1</version><!-- {x-version-update:api-common:current} -->
5555
</dependency>
5656
<dependency>
5757
<groupId>com.google.auth</groupId>
@@ -109,24 +109,24 @@
109109
<dependency>
110110
<groupId>com.google.api</groupId>
111111
<artifactId>gax</artifactId>
112-
<version>2.22.1-SNAPSHOT</version> <!-- {x-version-update:gax:current} -->
112+
<version>2.22.1</version> <!-- {x-version-update:gax:current} -->
113113
</dependency>
114114
<dependency>
115115
<groupId>com.google.api</groupId>
116116
<artifactId>gax</artifactId>
117-
<version>2.22.1-SNAPSHOT</version> <!-- {x-version-update:gax:current} -->
117+
<version>2.22.1</version> <!-- {x-version-update:gax:current} -->
118118
<type>test-jar</type>
119119
<classifier>testlib</classifier>
120120
</dependency>
121121
<dependency>
122122
<groupId>com.google.api.grpc</groupId>
123123
<artifactId>proto-google-common-protos</artifactId>
124-
<version>2.13.1-SNAPSHOT</version><!-- {x-version-update:proto-google-common-protos:current} -->
124+
<version>2.13.1</version><!-- {x-version-update:proto-google-common-protos:current} -->
125125
</dependency>
126126
<dependency>
127127
<groupId>com.google.api.grpc</groupId>
128128
<artifactId>grpc-google-common-protos</artifactId>
129-
<version>2.13.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-common-protos:current} -->
129+
<version>2.13.1</version><!-- {x-version-update:grpc-google-common-protos:current} -->
130130
</dependency>
131131
<dependency>
132132
<groupId>io.grpc</groupId>

0 commit comments

Comments
 (0)