Skip to content

Commit 4a4e471

Browse files
chore(master): release java-function-invoker 1.2.0 (#154)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent f5231a2 commit 4a4e471

File tree

6 files changed

+32
-13
lines changed

6 files changed

+32
-13
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"functions-framework-api":"1.0.4","invoker":"1.1.1","function-maven-plugin":"0.10.1"}
1+
{"functions-framework-api":"1.0.4","invoker":"1.2.0","function-maven-plugin":"0.10.1"}

invoker/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Changelog
2+
3+
## [1.2.0](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.1.1...java-function-invoker-v1.2.0) (2022-10-05)
4+
5+
6+
### Features
7+
8+
* allow to stop the invoker ([#128](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/128)) ([14908ca](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/14908caa9e5be824dfb74fff3a3234c4bce688e7))
9+
* enable converting CloudEvent requests to Background Event requests ([#123](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/123)) ([1c4a014](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/1c4a01470cc4ee7b3de3c3d7ae4af24e47eb2810))
10+
* Increase maximum concurrent requests for jetty server to 1000. ([#144](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/144)) ([439d0b5](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/439d0b5d77b2f765e65d84e7d5f31399e547d004))
11+
12+
13+
### Bug Fixes
14+
15+
* Add build env vars support for function deployment. ([#133](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/133)) ([0e052f3](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/0e052f376231192278061ec79bcf9d710ec310f4))
16+
* bump dependency versions ([#134](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/134)) ([faff79d](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/faff79d16c6df178d66f0185fb78fba003e60745))
17+
* bump jetty version to 9.4.49.v20220914 ([#164](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/164)) ([f5231a2](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/f5231a2303aa3565b29d494936e40ee1ec78fdbb))
18+
* make user function exceptions log level SEVERE ([#113](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/113)) ([1684c0e](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/1684c0ef55dc33f2c4c7f7514d99b0e7af75c44f))
19+
* update conformance tests ([#108](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/108)) ([72852d0](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/72852d0f23cdaed48569245440dcd1533c8c7563))

invoker/conformance/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<artifactId>java-function-invoker-parent</artifactId>
66
<groupId>com.google.cloud.functions.invoker</groupId>
7-
<version>1.1.2-SNAPSHOT</version>
7+
<version>1.2.0</version>
88
</parent>
99

1010
<groupId>com.google.cloud.functions.invoker</groupId>
1111
<artifactId>conformance</artifactId>
12-
<version>1.1.2-SNAPSHOT</version>
12+
<version>1.2.0</version>
1313

1414
<name>GCF Confromance Tests</name>
1515
<description>
@@ -57,4 +57,4 @@
5757
</plugins>
5858
</pluginManagement>
5959
</build>
60-
</project>
60+
</project>

invoker/core/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.google.cloud.functions.invoker</groupId>
66
<artifactId>java-function-invoker-parent</artifactId>
7-
<version>1.1.2-SNAPSHOT</version>
7+
<version>1.2.0</version>
88
</parent>
99

1010
<groupId>com.google.cloud.functions.invoker</groupId>
1111
<artifactId>java-function-invoker</artifactId>
12-
<version>1.1.2-SNAPSHOT</version>
12+
<version>1.2.0</version>
1313
<name>GCF Java Invoker</name>
1414
<description>
1515
Application that invokes a GCF Java function. This application is a
@@ -114,7 +114,7 @@
114114
<dependency>
115115
<groupId>com.google.cloud.functions.invoker</groupId>
116116
<artifactId>java-function-invoker-testfunction</artifactId>
117-
<version>1.1.2-SNAPSHOT</version>
117+
<version>1.2.0</version>
118118
<type>test-jar</type>
119119
<scope>test</scope>
120120
</dependency>
@@ -183,4 +183,4 @@
183183
</plugin>
184184
</plugins>
185185
</build>
186-
</project>
186+
</project>

invoker/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<groupId>com.google.cloud.functions.invoker</groupId>
1010
<artifactId>java-function-invoker-parent</artifactId>
11-
<version>1.1.2-SNAPSHOT</version>
11+
<version>1.2.0</version>
1212
<packaging>pom</packaging>
1313
<name>GCF Java Invoker Parent</name>
1414
<description>
@@ -119,4 +119,4 @@
119119
</build>
120120
</profile>
121121
</profiles>
122-
</project>
122+
</project>

invoker/testfunction/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.google.cloud.functions.invoker</groupId>
66
<artifactId>java-function-invoker-parent</artifactId>
7-
<version>1.1.2-SNAPSHOT</version>
7+
<version>1.2.0</version>
88
</parent>
99

1010
<groupId>com.google.cloud.functions.invoker</groupId>
1111
<artifactId>java-function-invoker-testfunction</artifactId>
12-
<version>1.1.2-SNAPSHOT</version>
12+
<version>1.2.0</version>
1313
<name>Example GCF Function Jar</name>
1414
<description>
1515
An example of a GCF function packaged into a jar. We use this in tests.
@@ -92,4 +92,4 @@
9292
</plugin>
9393
</plugins>
9494
</build>
95-
</project>
95+
</project>

0 commit comments

Comments
 (0)