Skip to content

Commit f82b701

Browse files
chore(main): release java-function-invoker 1.3.2 (#240)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Jeremy Fehr <[email protected]>
1 parent f8c1d57 commit f82b701

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

.github/.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"functions-framework-api":"1.1.1","invoker":"1.3.1","function-maven-plugin":"0.11.0"}
1+
{"functions-framework-api":"1.1.1","invoker":"1.3.2","function-maven-plugin":"0.11.0"}

invoker/CHANGELOG.md

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

3+
## [1.3.2](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.3.1...java-function-invoker-v1.3.2) (2024-09-18)
4+
5+
6+
### Bug Fixes
7+
8+
* avoid executing function when /favicon.ico or /robots.txt is called ([#226](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/226)) ([fca8676](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/fca867667db593699193da01b69a4cca7ca48fc8))
9+
* server times out when specified by CLOUD_RUN_TIMEOUT_SECONDS ([#275](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/275)) ([9e91f57](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/9e91f57b12d73c655e3d7e226d21d54ccec32b73))
10+
* set Thread Context ClassLoader correctly when invoking handler constructor ([#239](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/239)) ([9f7155b](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/9f7155b77574ec980ecf9e6dffbd2ee0398db8a7))
11+
312
## [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)
413

514

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.3.2-SNAPSHOT</version>
7+
<version>1.3.2</version>
88
</parent>
99

1010
<groupId>com.google.cloud.functions.invoker</groupId>
1111
<artifactId>conformance</artifactId>
12-
<version>1.3.2-SNAPSHOT</version>
12+
<version>1.3.2</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.3.2-SNAPSHOT</version>
7+
<version>1.3.2</version>
88
</parent>
99

1010
<groupId>com.google.cloud.functions.invoker</groupId>
1111
<artifactId>java-function-invoker</artifactId>
12-
<version>1.3.2-SNAPSHOT</version>
12+
<version>1.3.2</version>
1313
<name>GCF Java Invoker</name>
1414
<description>
1515
Application that invokes a GCF Java function. This application is a
@@ -115,7 +115,7 @@
115115
<dependency>
116116
<groupId>com.google.cloud.functions.invoker</groupId>
117117
<artifactId>java-function-invoker-testfunction</artifactId>
118-
<version>1.3.2-SNAPSHOT</version>
118+
<version>1.3.2</version>
119119
<type>test-jar</type>
120120
<scope>test</scope>
121121
</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.3.2-SNAPSHOT</version>
11+
<version>1.3.2</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.3.2-SNAPSHOT</version>
7+
<version>1.3.2</version>
88
</parent>
99

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