Skip to content
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
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"functions-framework-api":"1.0.4","invoker":"1.1.1","function-maven-plugin":"0.10.1"}
{"functions-framework-api":"1.0.4","invoker":"1.2.0","function-maven-plugin":"0.10.1"}
19 changes: 19 additions & 0 deletions invoker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

## [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)


### Features

* 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))
* 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))
* 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))


### Bug Fixes

* 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))
* bump dependency versions ([#134](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/134)) ([faff79d](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/faff79d16c6df178d66f0185fb78fba003e60745))
* 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))
* 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))
* update conformance tests ([#108](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/108)) ([72852d0](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/72852d0f23cdaed48569245440dcd1533c8c7563))
6 changes: 3 additions & 3 deletions invoker/conformance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<artifactId>java-function-invoker-parent</artifactId>
<groupId>com.google.cloud.functions.invoker</groupId>
<version>1.1.2-SNAPSHOT</version>
<version>1.2.0</version>
</parent>

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>conformance</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.2.0</version>

<name>GCF Confromance Tests</name>
<description>
Expand Down Expand Up @@ -57,4 +57,4 @@
</plugins>
</pluginManagement>
</build>
</project>
</project>
8 changes: 4 additions & 4 deletions invoker/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-parent</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.2.0</version>
</parent>

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.2.0</version>
<name>GCF Java Invoker</name>
<description>
Application that invokes a GCF Java function. This application is a
Expand Down Expand Up @@ -114,7 +114,7 @@
<dependency>
<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-testfunction</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.2.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -183,4 +183,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
4 changes: 2 additions & 2 deletions invoker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-parent</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.2.0</version>
<packaging>pom</packaging>
<name>GCF Java Invoker Parent</name>
<description>
Expand Down Expand Up @@ -119,4 +119,4 @@
</build>
</profile>
</profiles>
</project>
</project>
6 changes: 3 additions & 3 deletions invoker/testfunction/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-parent</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.2.0</version>
</parent>

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-testfunction</artifactId>
<version>1.1.2-SNAPSHOT</version>
<version>1.2.0</version>
<name>Example GCF Function Jar</name>
<description>
An example of a GCF function packaged into a jar. We use this in tests.
Expand Down Expand Up @@ -92,4 +92,4 @@
</plugin>
</plugins>
</build>
</project>
</project>