Skip to content

Commit b536258

Browse files
chore(main): release java-function-invoker 2.0.0 (#359)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent f351c1a commit b536258

File tree

6 files changed

+28
-9
lines changed

6 files changed

+28
-9
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"functions-framework-api":"2.0.0","invoker":"1.4.3","function-maven-plugin":"0.11.2"}
1+
{"functions-framework-api":"2.0.0","invoker":"2.0.0","function-maven-plugin":"0.11.2"}

invoker/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [2.0.0](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.4.3...java-function-invoker-v2.0.0) (2025-11-06)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* update functions-framework-api dependency to 2.0.0 ([#365](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/365))
9+
* **implementation:** use Java 17 or above, as required by Eclipse Jetty-12.
10+
* remove java11 support and expand java21 test coverage ([#356](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/356))
11+
12+
### Features
13+
14+
* remove java11 support and expand java21 test coverage ([#356](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/356)) ([c1f27d2](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/c1f27d289e3b9da2ec936fb4d2197f42a2eaa983))
15+
16+
17+
### Miscellaneous Chores
18+
19+
* **implementation:** use Jetty-12.1 core without servlets ([#333](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/333)) ([e23f98f](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/e23f98f2dc7cbcdbd036a46423c99f82bddd80bc))
20+
* update functions-framework-api dependency to 2.0.0 ([#365](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/365)) ([f351c1a](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/f351c1ade94a08bc4116b40e2d343e1b5d9a6db6))
21+
322
## [1.4.3](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.4.2...java-function-invoker-v1.4.3) (2025-10-20)
423

524

invoker/conformance/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<artifactId>java-function-invoker-parent</artifactId>
66
<groupId>com.google.cloud.functions.invoker</groupId>
7-
<version>1.4.4-SNAPSHOT</version>
7+
<version>2.0.0</version>
88
</parent>
99

1010
<groupId>com.google.cloud.functions.invoker</groupId>
1111
<artifactId>conformance</artifactId>
12-
<version>1.4.4-SNAPSHOT</version>
12+
<version>2.0.0</version>
1313

1414
<name>GCF Confromance Tests</name>
1515
<description>

invoker/core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.google.cloud.functions.invoker</groupId>
66
<artifactId>java-function-invoker-parent</artifactId>
7-
<version>1.4.4-SNAPSHOT</version>
7+
<version>2.0.0</version>
88
</parent>
99

1010
<groupId>com.google.cloud.functions.invoker</groupId>
1111
<artifactId>java-function-invoker</artifactId>
12-
<version>1.4.4-SNAPSHOT</version>
12+
<version>2.0.0</version>
1313
<name>GCF Java Invoker</name>
1414
<description>
1515
Application that invokes a GCF Java function. This application is a
@@ -112,7 +112,7 @@
112112
<dependency>
113113
<groupId>com.google.cloud.functions.invoker</groupId>
114114
<artifactId>java-function-invoker-testfunction</artifactId>
115-
<version>1.4.4-SNAPSHOT</version>
115+
<version>2.0.0</version>
116116
<type>test-jar</type>
117117
<scope>test</scope>
118118
</dependency>

invoker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<groupId>com.google.cloud.functions.invoker</groupId>
1010
<artifactId>java-function-invoker-parent</artifactId>
11-
<version>1.4.4-SNAPSHOT</version>
11+
<version>2.0.0</version>
1212
<packaging>pom</packaging>
1313
<name>GCF Java Invoker Parent</name>
1414
<description>

invoker/testfunction/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.google.cloud.functions.invoker</groupId>
66
<artifactId>java-function-invoker-parent</artifactId>
7-
<version>1.4.4-SNAPSHOT</version>
7+
<version>2.0.0</version>
88
</parent>
99

1010
<groupId>com.google.cloud.functions.invoker</groupId>
1111
<artifactId>java-function-invoker-testfunction</artifactId>
12-
<version>1.4.4-SNAPSHOT</version>
12+
<version>2.0.0</version>
1313
<name>Example GCF Function Jar</name>
1414
<description>
1515
An example of a GCF function packaged into a jar. We use this in tests.

0 commit comments

Comments
 (0)