diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index b3d335ae..c2ee81e0 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1 +1 @@ -{"functions-framework-api":"1.1.0","invoker":"1.3.0","function-maven-plugin":"0.11.0"} +{"functions-framework-api":"1.1.0","invoker":"1.3.1","function-maven-plugin":"0.11.0"} diff --git a/function-maven-plugin/pom.xml b/function-maven-plugin/pom.xml index 913b9ccf..20cc5882 100644 --- a/function-maven-plugin/pom.xml +++ b/function-maven-plugin/pom.xml @@ -58,7 +58,7 @@ com.google.cloud.functions.invoker java-function-invoker - 1.3.1-SNAPSHOT + 1.3.1 diff --git a/invoker/CHANGELOG.md b/invoker/CHANGELOG.md index 2646cd1b..2800c114 100644 --- a/invoker/CHANGELOG.md +++ b/invoker/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.3.1](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.3.0...java-function-invoker-v1.3.1) (2023-09-13) + + +### Bug Fixes + +* **functions:** include Implementation-Version key in invoker package manifest ([#221](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/221)) ([f3fe2ce](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/f3fe2ce46fcb1885137cdf504649612e7c31dc4c)) +* typed declaration works correctly with http trigger ([#212](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/212)) ([b3045ad](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/b3045ad380cd23e37f5edec0d758031438bcb568)) + ## [1.3.0](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.2.1...java-function-invoker-v1.3.0) (2023-06-01) diff --git a/invoker/conformance/pom.xml b/invoker/conformance/pom.xml index 8296836b..43894042 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.3.1-SNAPSHOT + 1.3.1 com.google.cloud.functions.invoker conformance - 1.3.1-SNAPSHOT + 1.3.1 GCF Confromance Tests @@ -28,7 +28,7 @@ com.google.cloud.functions functions-framework-api - 1.1.1-SNAPSHOT + 1.1.0 com.google.code.gson diff --git a/invoker/core/pom.xml b/invoker/core/pom.xml index 9d809a6a..f5f4dced 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.3.1-SNAPSHOT + 1.3.1 com.google.cloud.functions.invoker java-function-invoker - 1.3.1-SNAPSHOT + 1.3.1 GCF Java Invoker Application that invokes a GCF Java function. This application is a @@ -115,7 +115,7 @@ com.google.cloud.functions.invoker java-function-invoker-testfunction - 1.3.1-SNAPSHOT + 1.3.1 test-jar test diff --git a/invoker/pom.xml b/invoker/pom.xml index 73ba5d34..e3159883 100644 --- a/invoker/pom.xml +++ b/invoker/pom.xml @@ -8,7 +8,7 @@ com.google.cloud.functions.invoker java-function-invoker-parent - 1.3.1-SNAPSHOT + 1.3.1 pom GCF Java Invoker Parent diff --git a/invoker/testfunction/pom.xml b/invoker/testfunction/pom.xml index fa29218b..660e6f05 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.3.1-SNAPSHOT + 1.3.1 com.google.cloud.functions.invoker java-function-invoker-testfunction - 1.3.1-SNAPSHOT + 1.3.1 Example GCF Function Jar An example of a GCF function packaged into a jar. We use this in tests.