Skip to content

Commit d935462

Browse files
chore(main): release functions_framework 1.2.0 (#140)
1 parent d4915b4 commit d935462

File tree

3 files changed

+28
-23
lines changed

3 files changed

+28
-23
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.1.0"
2+
".": "1.2.0"
33
}

CHANGELOG.md

Lines changed: 26 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,53 @@
11
# Changelog
22

3-
## 1.1.0 (2022-01-18)
3+
### 1.2.0 (2022-08-25)
4+
5+
* Update minimum Ruby version to 2.6
6+
* Increase default max thread pool size to 16
7+
8+
### 1.1.0 (2022-01-18)
49

510
* Increase default max thread pool size to 8.
611
* Return 204 when a GET request is sent to an event function, to support health checks.
712
* Flush stdout and stderr streams at the end of each request.
813
* Format the error backtrace.
914

10-
## 1.0.1 (2021-09-10)
15+
### 1.0.1 (2021-09-10)
1116

1217
* FIXED: Update legacy event conversion to set the correct types for firebase database events
1318

14-
## 1.0.0 (2021-07-07)
19+
### 1.0.0 (2021-07-07)
1520

1621
* Bumped the version to 1.0.
1722
* Removed the "preview" notices for Google Cloud Functions since the Ruby runtime is now GA.
1823

19-
## v0.11.0 / 2021-06-28
24+
### v0.11.0 / 2021-06-28
2025

2126
* UPDATED: Update CloudEvents dependency to 0.5 to get fixes for JSON formatting cases
2227
* FIXED: Updated Pub/Sub and Firebase event conversion logic to better align to Eventarc
2328

24-
## v0.10.0 / 2021-06-01
29+
### v0.10.0 / 2021-06-01
2530

2631
* ADDED: Support raw pubsub events sent by the pubsub emulator
2732
* FIXED: Set proper response content-type charset when a function returns a string (plain text) or hash (JSON)
2833
* FIXED: Properly handle conversion of non-ascii characters in legacy event strings
2934

30-
## v0.9.0 / 2021-03-18
35+
### v0.9.0 / 2021-03-18
3136

3237
* BREAKING CHANGE: Servers are configured as single-threaded in production by default, matching the current behavior of Google Cloud Functions.
3338
* FIXED: Fixed conversion of Firebase events to CloudEvents to conform to the specs used by Cloud Functions and Cloud Run.
3439
* FIXED: Fixed an error when reading a global set to a Minitest::Mock. This will make it easier to write tests that use mocks for global resources.
3540

36-
## v0.8.0 / 2021-03-02
41+
### v0.8.0 / 2021-03-02
3742

3843
* ADDED: Support for lazily-initialized globals
3944

40-
## v0.7.1 / 2021-01-26
45+
### v0.7.1 / 2021-01-26
4146

4247
* DOCS: Fixed several errors in the writing-functions doc samples
4348
* DOCS: Updated documentation to note public release of GCF support
4449

45-
## v0.7.0 / 2020-09-25
50+
### v0.7.0 / 2020-09-25
4651

4752
* Now requires Ruby 2.5 or later.
4853
* BREAKING CHANGE: Renamed "context" hash to "globals" and made it read-only for normal functions.
@@ -56,33 +61,33 @@
5661
* DOCS: Expanded documentation on initialization, execution context, and shared resources.
5762
* DEPRECATED: The functions-framework executable is deprecated. Use functions-framework-ruby instead.
5863

59-
## v0.6.0 / 2020-09-17
64+
### v0.6.0 / 2020-09-17
6065

6166
* ADDED: You can use the --version flag to print the framework version
6267
* ADDED: You can use the --verify flag to verify that a given function is defined
6368
* ADDED: You can now define blocks that are executed at server startup
6469

65-
## v0.5.2 / 2020-09-06
70+
### v0.5.2 / 2020-09-06
6671

6772
* FIXED: Use global $stderr rather than STDERR for logger
6873
* DOCS: Fix instructions for deployment to Google Cloud Functions
6974

70-
## v0.5.1 / 2020-07-20
75+
### v0.5.1 / 2020-07-20
7176

7277
* Updated some documentation links. No functional changes.
7378

74-
## v0.5.0 / 2020-07-09
79+
### v0.5.0 / 2020-07-09
7580

7681
* Removed embedded CloudEvents classes and added the official CloudEvents SDK as a dependency. A `FunctionsFramework::CloudEvents` alias provides backward compatibility.
7782

78-
## v0.4.1 / 2020-07-08
83+
### v0.4.1 / 2020-07-08
7984

8085
* Fixed unsupported signal error on Windows.
8186
* Fixed several edge case errors in legacy event conversion.
8287
* Generated Content-Type headers now properly quote param values if needed.
8388
* Minor documentation updates.
8489

85-
## v0.4.0 / 2020-06-29
90+
### v0.4.0 / 2020-06-29
8691

8792
* Dropped the legacy and largely unsupported `:event` function type. All event functions should be of type `:cloud_event`.
8893
* Define the object context for function execution, and include an extensible context helper.
@@ -93,21 +98,21 @@
9398
* Removed redundant `_string` accessors from event classes since raw forms are already available via `[]`.
9499
* A variety of corrections to event-related class documentation.
95100

96-
## v0.3.1 / 2020-06-27
101+
### v0.3.1 / 2020-06-27
97102

98103
* Fixed crash when using "return" directly in a function block.
99104
* Added a more flexible request generation helper in the testing module.
100105
* Fixed several typos in the documentation.
101106

102-
## v0.3.0 / 2020-06-26
107+
### v0.3.0 / 2020-06-26
103108

104109
* Updated the CloudEvent data format for converted pubsub events to conform to Cloud Run's conversion.
105110

106-
## v0.2.1 / 2020-06-25
111+
### v0.2.1 / 2020-06-25
107112

108113
* The `--signature-type` check recognizes the legacy `event` type for `:cloud_event` functions.
109114

110-
## v0.2.0 / 2020-06-24
115+
### v0.2.0 / 2020-06-24
111116

112117
Significant changes:
113118

@@ -126,11 +131,11 @@ Minor changes:
126131
* Renamed a few undocumented environment variables, and added support for a logging level environment variable. All CLI flags now have associated environment variables.
127132
* Several fixes to the example code, and added a new Sinatra example.
128133

129-
## v0.1.1 / 2020-02-27
134+
### v0.1.1 / 2020-02-27
130135

131136
* Server returns 404 when receiving a /favicon.ico or /robots.txt request.
132137
* Correct a rack constant name in Testing#make_post_request
133138

134-
## v0.1.0 / 2020-01-30
139+
### v0.1.0 / 2020-01-30
135140

136141
* Initial release

lib/functions_framework/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ module FunctionsFramework
1717
# Version of the Ruby Functions Framework
1818
# @return [String]
1919
#
20-
VERSION = "1.1.0".freeze
20+
VERSION = "1.2.0".freeze
2121
end

0 commit comments

Comments
 (0)