Skip to content

Commit 727f7a3

Browse files
chore(master): release java-function-invoker 1.3.0 (GoogleCloudPlatform#197)
* chore(master): release java-function-invoker 1.3.0 * Update function-maven-plugin to depend on latest version of invoker package --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Gareth George <[email protected]>
1 parent 11cf02e commit 727f7a3

File tree

7 files changed

+24
-16
lines changed

7 files changed

+24
-16
lines changed

.github/.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"functions-framework-api":"1.1.0","invoker":"1.2.1","function-maven-plugin":"0.11.0"}
1+
{"functions-framework-api":"1.1.0","invoker":"1.3.0","function-maven-plugin":"0.11.0"}

function-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<dependency>
4545
<groupId>com.google.cloud.functions.invoker</groupId>
4646
<artifactId>java-function-invoker</artifactId>
47-
<version>1.2.3-SNAPSHOT</version>
47+
<version>1.3.0</version>
4848
</dependency>
4949

5050
<dependency>

invoker/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [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)
4+
5+
6+
### Features
7+
8+
* Define strongly typed function interface ([#186](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/186)) ([5264e35](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/5264e35b2522a789d65f0e0fd9bb5584694529eb))
9+
10+
11+
### Bug Fixes
12+
13+
* bump org.eclipse.jetty dependency to 9.4.51 ([#201](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/201)) ([0102c8f](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/0102c8f543280ff5ba5727508f87083a9f54ef74))
14+
315
## [1.2.1](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.2.0...java-function-invoker-v1.2.1) (2023-03-02)
416

517

invoker/conformance/pom.xml

+2-2
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.2.3-SNAPSHOT</version>
7+
<version>1.3.0</version>
88
</parent>
99

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

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

invoker/core/pom.xml

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0"
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
42
<modelVersion>4.0.0</modelVersion>
53

64
<parent>
75
<groupId>com.google.cloud.functions.invoker</groupId>
86
<artifactId>java-function-invoker-parent</artifactId>
9-
<version>1.2.3-SNAPSHOT</version>
7+
<version>1.3.0</version>
108
</parent>
119

1210
<groupId>com.google.cloud.functions.invoker</groupId>
1311
<artifactId>java-function-invoker</artifactId>
14-
<version>1.2.3-SNAPSHOT</version>
12+
<version>1.3.0</version>
1513
<name>GCF Java Invoker</name>
1614
<description>
1715
Application that invokes a GCF Java function. This application is a
@@ -117,7 +115,7 @@
117115
<dependency>
118116
<groupId>com.google.cloud.functions.invoker</groupId>
119117
<artifactId>java-function-invoker-testfunction</artifactId>
120-
<version>1.2.3-SNAPSHOT</version>
118+
<version>1.3.0</version>
121119
<type>test-jar</type>
122120
<scope>test</scope>
123121
</dependency>

invoker/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0"
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
42
<modelVersion>4.0.0</modelVersion>
53
<parent>
64
<groupId>org.sonatype.oss</groupId>
@@ -10,7 +8,7 @@
108

119
<groupId>com.google.cloud.functions.invoker</groupId>
1210
<artifactId>java-function-invoker-parent</artifactId>
13-
<version>1.2.3-SNAPSHOT</version>
11+
<version>1.3.0</version>
1412
<packaging>pom</packaging>
1513
<name>GCF Java Invoker Parent</name>
1614
<description>

invoker/testfunction/pom.xml

+2-2
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.2.3-SNAPSHOT</version>
7+
<version>1.3.0</version>
88
</parent>
99

1010
<groupId>com.google.cloud.functions.invoker</groupId>
1111
<artifactId>java-function-invoker-testfunction</artifactId>
12-
<version>1.2.3-SNAPSHOT</version>
12+
<version>1.3.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)