Skip to content

Commit

Permalink
chore(main): release java-function-invoker 1.3.2 (#240)
Browse files Browse the repository at this point in the history
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: Jeremy Fehr <[email protected]>
  • Loading branch information
release-please[bot] and jrmfg authored Sep 27, 2024
1 parent f8c1d57 commit f82b701
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"functions-framework-api":"1.1.1","invoker":"1.3.1","function-maven-plugin":"0.11.0"}
{"functions-framework-api":"1.1.1","invoker":"1.3.2","function-maven-plugin":"0.11.0"}
9 changes: 9 additions & 0 deletions invoker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [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)


### Bug Fixes

* 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))
* 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))
* 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))

## [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)


Expand Down
4 changes: 2 additions & 2 deletions invoker/conformance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<artifactId>java-function-invoker-parent</artifactId>
<groupId>com.google.cloud.functions.invoker</groupId>
<version>1.3.2-SNAPSHOT</version>
<version>1.3.2</version>
</parent>

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>conformance</artifactId>
<version>1.3.2-SNAPSHOT</version>
<version>1.3.2</version>

<name>GCF Confromance Tests</name>
<description>
Expand Down
6 changes: 3 additions & 3 deletions invoker/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-parent</artifactId>
<version>1.3.2-SNAPSHOT</version>
<version>1.3.2</version>
</parent>

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker</artifactId>
<version>1.3.2-SNAPSHOT</version>
<version>1.3.2</version>
<name>GCF Java Invoker</name>
<description>
Application that invokes a GCF Java function. This application is a
Expand Down Expand Up @@ -115,7 +115,7 @@
<dependency>
<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-testfunction</artifactId>
<version>1.3.2-SNAPSHOT</version>
<version>1.3.2</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion invoker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-parent</artifactId>
<version>1.3.2-SNAPSHOT</version>
<version>1.3.2</version>
<packaging>pom</packaging>
<name>GCF Java Invoker Parent</name>
<description>
Expand Down
4 changes: 2 additions & 2 deletions invoker/testfunction/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-parent</artifactId>
<version>1.3.2-SNAPSHOT</version>
<version>1.3.2</version>
</parent>

<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-testfunction</artifactId>
<version>1.3.2-SNAPSHOT</version>
<version>1.3.2</version>
<name>Example GCF Function Jar</name>
<description>
An example of a GCF function packaged into a jar. We use this in tests.
Expand Down

0 comments on commit f82b701

Please sign in to comment.