diff --git a/cloud-sql/mysql/servlet/pom.xml b/cloud-sql/mysql/servlet/pom.xml index 1f3720281f4..ed754ab417d 100644 --- a/cloud-sql/mysql/servlet/pom.xml +++ b/cloud-sql/mysql/servlet/pom.xml @@ -96,7 +96,7 @@ com.google.cloud.functions.invoker java-function-invoker - 1.1.0 + 1.2.0 com.google.cloud.functions diff --git a/cloud-sql/postgres/servlet/pom.xml b/cloud-sql/postgres/servlet/pom.xml index ee3c693677c..67b80a18184 100644 --- a/cloud-sql/postgres/servlet/pom.xml +++ b/cloud-sql/postgres/servlet/pom.xml @@ -86,7 +86,7 @@ com.google.cloud.functions.invoker java-function-invoker - 1.0.1 + 1.2.0 com.google.cloud.functions diff --git a/cloud-sql/sqlserver/servlet/pom.xml b/cloud-sql/sqlserver/servlet/pom.xml index 07691a93ae2..1f2626faeee 100644 --- a/cloud-sql/sqlserver/servlet/pom.xml +++ b/cloud-sql/sqlserver/servlet/pom.xml @@ -86,7 +86,7 @@ com.google.cloud.functions.invoker java-function-invoker - 1.0.1 + 1.2.0 com.google.cloud.functions diff --git a/functions/helloworld/hello-http-gradle/build.gradle b/functions/helloworld/hello-http-gradle/build.gradle index 8777214b3ae..456a3c39908 100644 --- a/functions/helloworld/hello-http-gradle/build.gradle +++ b/functions/helloworld/hello-http-gradle/build.gradle @@ -27,7 +27,7 @@ configurations { dependencies { // Every function needs this dependency to get the Functions Framework API. implementation 'com.google.cloud.functions:functions-framework-api:1.0.4' - invoker 'com.google.cloud.functions.invoker:java-function-invoker:1.1.0' + invoker 'com.google.cloud.functions.invoker:java-function-invoker:1.2.0' // Function implementations can have additional dependencies like this. implementation 'com.google.code.gson:gson:2.10' diff --git a/functions/helloworld/helloworld-gradle/build.gradle b/functions/helloworld/helloworld-gradle/build.gradle index 041891b98d7..b6bf5804770 100644 --- a/functions/helloworld/helloworld-gradle/build.gradle +++ b/functions/helloworld/helloworld-gradle/build.gradle @@ -30,7 +30,7 @@ dependencies { compileOnly 'com.google.cloud.functions:functions-framework-api:1.0.4' // To run function locally using Functions Framework's local invoker - invoker 'com.google.cloud.functions.invoker:java-function-invoker:1.1.0' + invoker 'com.google.cloud.functions.invoker:java-function-invoker:1.2.0' // [END functions_gradle_add_dependencies] // [END functions_example_pom_dependencies]