diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 369e3ece..485ec31c 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1 +1 @@ -{"functions-framework-api":"1.0.4","invoker":"1.1.1","function-maven-plugin":"0.10.1"} \ No newline at end of file +{"functions-framework-api":"1.0.4","invoker":"1.2.0","function-maven-plugin":"0.10.1"} \ No newline at end of file diff --git a/invoker/CHANGELOG.md b/invoker/CHANGELOG.md new file mode 100644 index 00000000..21d264fc --- /dev/null +++ b/invoker/CHANGELOG.md @@ -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)) diff --git a/invoker/conformance/pom.xml b/invoker/conformance/pom.xml index 06b13b59..baa9ec63 100644 --- a/invoker/conformance/pom.xml +++ b/invoker/conformance/pom.xml @@ -4,12 +4,12 @@ java-function-invoker-parent com.google.cloud.functions.invoker - 1.1.2-SNAPSHOT + 1.2.0 com.google.cloud.functions.invoker conformance - 1.1.2-SNAPSHOT + 1.2.0 GCF Confromance Tests @@ -57,4 +57,4 @@ - + \ No newline at end of file diff --git a/invoker/core/pom.xml b/invoker/core/pom.xml index 80727128..1139e1ed 100644 --- a/invoker/core/pom.xml +++ b/invoker/core/pom.xml @@ -4,12 +4,12 @@ com.google.cloud.functions.invoker java-function-invoker-parent - 1.1.2-SNAPSHOT + 1.2.0 com.google.cloud.functions.invoker java-function-invoker - 1.1.2-SNAPSHOT + 1.2.0 GCF Java Invoker Application that invokes a GCF Java function. This application is a @@ -114,7 +114,7 @@ com.google.cloud.functions.invoker java-function-invoker-testfunction - 1.1.2-SNAPSHOT + 1.2.0 test-jar test @@ -183,4 +183,4 @@ - + \ No newline at end of file diff --git a/invoker/pom.xml b/invoker/pom.xml index 6d0113ba..9f363ab5 100644 --- a/invoker/pom.xml +++ b/invoker/pom.xml @@ -8,7 +8,7 @@ com.google.cloud.functions.invoker java-function-invoker-parent - 1.1.2-SNAPSHOT + 1.2.0 pom GCF Java Invoker Parent @@ -119,4 +119,4 @@ - + \ No newline at end of file diff --git a/invoker/testfunction/pom.xml b/invoker/testfunction/pom.xml index e62b5f40..ab0b7a00 100644 --- a/invoker/testfunction/pom.xml +++ b/invoker/testfunction/pom.xml @@ -4,12 +4,12 @@ com.google.cloud.functions.invoker java-function-invoker-parent - 1.1.2-SNAPSHOT + 1.2.0 com.google.cloud.functions.invoker java-function-invoker-testfunction - 1.1.2-SNAPSHOT + 1.2.0 Example GCF Function Jar An example of a GCF function packaged into a jar. We use this in tests. @@ -92,4 +92,4 @@ - + \ No newline at end of file