From a8a8cad4d9d0a5f7ed71349b2fc36945c3ea0a0a Mon Sep 17 00:00:00 2001 From: dixuswe <152918466+dixuswe@users.noreply.github.com> Date: Fri, 4 Oct 2024 13:20:27 -0700 Subject: [PATCH 1/6] fix: update Maven version on Kokoro cluster to fix release pipeline (#294) * update Maven version on Kokoro cluster to fix release pipeline * fix: update Maven version on Kokoro cluster to fix release pipeline --- .kokoro/release.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.kokoro/release.sh b/.kokoro/release.sh index 0a599f31..6bbb8455 100644 --- a/.kokoro/release.sh +++ b/.kokoro/release.sh @@ -3,6 +3,16 @@ # Stop execution when any command fails. set -e +# update the Maven version to 3.6.3 +pushd /usr/local +wget https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.tar.gz +tar -xvzf apache-maven-3.6.3-bin.tar.gz apache-maven-3.6.3 +rm -f /usr/local/apache-maven +ln -s /usr/local/apache-maven-3.6.3 /usr/local/apache-maven +rm apache-maven-3.6.3-bin.tar.gz +popd + + # Get secrets from keystore and set and environment variables. setup_environment_secrets() { export GPG_TTY=$(tty) From 346714a6162adc72fc0f2ae6a2337198742b2197 Mon Sep 17 00:00:00 2001 From: dixuswe <152918466+dixuswe@users.noreply.github.com> Date: Fri, 4 Oct 2024 15:25:02 -0700 Subject: [PATCH 2/6] fix: update maven-source-plugin version (#295) * update Maven version on Kokoro cluster to fix release pipeline * fix: update Maven version on Kokoro cluster to fix release pipeline * fix: update the dependecy version --- functions-framework-api/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions-framework-api/pom.xml b/functions-framework-api/pom.xml index a4804766..f6a0026c 100644 --- a/functions-framework-api/pom.xml +++ b/functions-framework-api/pom.xml @@ -151,7 +151,7 @@ org.apache.maven.plugins maven-source-plugin - 3.3.1 + 3.6.0 attach-sources From 8f1fd84ca4cc43b2e93b66fe160f78a868b55ffe Mon Sep 17 00:00:00 2001 From: dixuswe <152918466+dixuswe@users.noreply.github.com> Date: Fri, 4 Oct 2024 17:08:19 -0700 Subject: [PATCH 3/6] fix: revert maven-source-plugin to 3.2.1 (#297) * update Maven version on Kokoro cluster to fix release pipeline * fix: update Maven version on Kokoro cluster to fix release pipeline * fix: update the dependecy version * fix: revert maven-javadoc-plugin to 3.2.1 --- functions-framework-api/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions-framework-api/pom.xml b/functions-framework-api/pom.xml index f6a0026c..b7f60a7c 100644 --- a/functions-framework-api/pom.xml +++ b/functions-framework-api/pom.xml @@ -73,7 +73,7 @@ org.apache.maven.plugins maven-source-plugin - 3.3.1 + 3.2.1 attach-sources @@ -151,7 +151,7 @@ org.apache.maven.plugins maven-source-plugin - 3.6.0 + 3.2.1 attach-sources From f909f73652c338493162a92371255f3f8267fa21 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 17:31:52 -0700 Subject: [PATCH 4/6] chore(main): release functions-framework-api 1.1.3 (#296) * chore(main): release functions-framework-api 1.1.3 * Update CHANGELOG.md --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: dixuswe <152918466+dixuswe@users.noreply.github.com> --- .github/.release-please-manifest.json | 2 +- functions-framework-api/CHANGELOG.md | 7 +++++++ functions-framework-api/pom.xml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 85061204..e6849dfb 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1 +1 @@ -{"functions-framework-api":"1.1.2","invoker":"1.3.2","function-maven-plugin":"0.11.0"} +{"functions-framework-api":"1.1.3","invoker":"1.3.2","function-maven-plugin":"0.11.0"} diff --git a/functions-framework-api/CHANGELOG.md b/functions-framework-api/CHANGELOG.md index 7b57f5b6..497626cf 100644 --- a/functions-framework-api/CHANGELOG.md +++ b/functions-framework-api/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.1.3](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/functions-framework-api-v1.1.2...functions-framework-api-v1.1.3) (2024-10-05) + + +### Bug Fixes + +* revert maven-source-plugin to 3.2.1 ([#297](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/297)) ([8f1fd84](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/8f1fd84ca4cc43b2e93b66fe160f78a868b55ffe)) + ## [1.1.2](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/functions-framework-api-v1.1.1...functions-framework-api-v1.1.2) (2024-09-27) diff --git a/functions-framework-api/pom.xml b/functions-framework-api/pom.xml index b7f60a7c..43b48830 100644 --- a/functions-framework-api/pom.xml +++ b/functions-framework-api/pom.xml @@ -24,7 +24,7 @@ com.google.cloud.functions functions-framework-api - 1.1.3-SNAPSHOT + 1.1.3 UTF-8 From 066c29e3030a6ff6efa50d2f288bba44e6366738 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 17:38:23 -0700 Subject: [PATCH 5/6] chore(main): release functions-framework-api 1.1.4-SNAPSHOT (#298) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- functions-framework-api/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions-framework-api/pom.xml b/functions-framework-api/pom.xml index 43b48830..dd25d18d 100644 --- a/functions-framework-api/pom.xml +++ b/functions-framework-api/pom.xml @@ -24,7 +24,7 @@ com.google.cloud.functions functions-framework-api - 1.1.3 + 1.1.4-SNAPSHOT UTF-8 From 51affe5a96f02a3fdcbb2138ae4cd7d1deb4facf Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Thu, 7 Nov 2024 01:05:00 +0000 Subject: [PATCH 6/6] chore(deps): update dependency org.eclipse.jetty:jetty-client to v12 --- invoker/core/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invoker/core/pom.xml b/invoker/core/pom.xml index ab455d4a..dd3cd00a 100644 --- a/invoker/core/pom.xml +++ b/invoker/core/pom.xml @@ -151,7 +151,7 @@ org.eclipse.jetty jetty-client - 9.4.56.v20240826 + 12.0.15 test