You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19-19Lines changed: 19 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,37 +1,37 @@
1
1
# Changelog
2
2
3
-
### v1.0.0 / 2021-07-07
3
+
##1.0.0 (2021-07-07)
4
4
5
5
* Bumped the version to 1.0.
6
6
* Removed the "preview" notices for Google Cloud Functions since the Ruby runtime is now GA.
7
7
8
-
###v0.11.0 / 2021-06-28
8
+
## v0.11.0 / 2021-06-28
9
9
10
10
* UPDATED: Update CloudEvents dependency to 0.5 to get fixes for JSON formatting cases
11
11
* FIXED: Updated Pub/Sub and Firebase event conversion logic to better align to Eventarc
12
12
13
-
###v0.10.0 / 2021-06-01
13
+
## v0.10.0 / 2021-06-01
14
14
15
15
* ADDED: Support raw pubsub events sent by the pubsub emulator
16
16
* FIXED: Set proper response content-type charset when a function returns a string (plain text) or hash (JSON)
17
17
* FIXED: Properly handle conversion of non-ascii characters in legacy event strings
18
18
19
-
###v0.9.0 / 2021-03-18
19
+
## v0.9.0 / 2021-03-18
20
20
21
21
* BREAKING CHANGE: Servers are configured as single-threaded in production by default, matching the current behavior of Google Cloud Functions.
22
22
* FIXED: Fixed conversion of Firebase events to CloudEvents to conform to the specs used by Cloud Functions and Cloud Run.
23
23
* 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.
24
24
25
-
###v0.8.0 / 2021-03-02
25
+
## v0.8.0 / 2021-03-02
26
26
27
27
* ADDED: Support for lazily-initialized globals
28
28
29
-
###v0.7.1 / 2021-01-26
29
+
## v0.7.1 / 2021-01-26
30
30
31
31
* DOCS: Fixed several errors in the writing-functions doc samples
32
32
* DOCS: Updated documentation to note public release of GCF support
33
33
34
-
###v0.7.0 / 2020-09-25
34
+
## v0.7.0 / 2020-09-25
35
35
36
36
* Now requires Ruby 2.5 or later.
37
37
* BREAKING CHANGE: Renamed "context" hash to "globals" and made it read-only for normal functions.
@@ -45,33 +45,33 @@
45
45
* DOCS: Expanded documentation on initialization, execution context, and shared resources.
46
46
* DEPRECATED: The functions-framework executable is deprecated. Use functions-framework-ruby instead.
47
47
48
-
###v0.6.0 / 2020-09-17
48
+
## v0.6.0 / 2020-09-17
49
49
50
50
* ADDED: You can use the --version flag to print the framework version
51
51
* ADDED: You can use the --verify flag to verify that a given function is defined
52
52
* ADDED: You can now define blocks that are executed at server startup
53
53
54
-
###v0.5.2 / 2020-09-06
54
+
## v0.5.2 / 2020-09-06
55
55
56
56
* FIXED: Use global $stderr rather than STDERR for logger
57
57
* DOCS: Fix instructions for deployment to Google Cloud Functions
58
58
59
-
###v0.5.1 / 2020-07-20
59
+
## v0.5.1 / 2020-07-20
60
60
61
61
* Updated some documentation links. No functional changes.
62
62
63
-
###v0.5.0 / 2020-07-09
63
+
## v0.5.0 / 2020-07-09
64
64
65
65
* Removed embedded CloudEvents classes and added the official CloudEvents SDK as a dependency. A `FunctionsFramework::CloudEvents` alias provides backward compatibility.
66
66
67
-
###v0.4.1 / 2020-07-08
67
+
## v0.4.1 / 2020-07-08
68
68
69
69
* Fixed unsupported signal error on Windows.
70
70
* Fixed several edge case errors in legacy event conversion.
71
71
* Generated Content-Type headers now properly quote param values if needed.
72
72
* Minor documentation updates.
73
73
74
-
###v0.4.0 / 2020-06-29
74
+
## v0.4.0 / 2020-06-29
75
75
76
76
* Dropped the legacy and largely unsupported `:event` function type. All event functions should be of type `:cloud_event`.
77
77
* Define the object context for function execution, and include an extensible context helper.
@@ -82,21 +82,21 @@
82
82
* Removed redundant `_string` accessors from event classes since raw forms are already available via `[]`.
83
83
* A variety of corrections to event-related class documentation.
84
84
85
-
###v0.3.1 / 2020-06-27
85
+
## v0.3.1 / 2020-06-27
86
86
87
87
* Fixed crash when using "return" directly in a function block.
88
88
* Added a more flexible request generation helper in the testing module.
89
89
* Fixed several typos in the documentation.
90
90
91
-
###v0.3.0 / 2020-06-26
91
+
## v0.3.0 / 2020-06-26
92
92
93
93
* Updated the CloudEvent data format for converted pubsub events to conform to Cloud Run's conversion.
94
94
95
-
###v0.2.1 / 2020-06-25
95
+
## v0.2.1 / 2020-06-25
96
96
97
97
* The `--signature-type` check recognizes the legacy `event` type for `:cloud_event` functions.
98
98
99
-
###v0.2.0 / 2020-06-24
99
+
## v0.2.0 / 2020-06-24
100
100
101
101
Significant changes:
102
102
@@ -115,11 +115,11 @@ Minor changes:
115
115
* Renamed a few undocumented environment variables, and added support for a logging level environment variable. All CLI flags now have associated environment variables.
116
116
* Several fixes to the example code, and added a new Sinatra example.
117
117
118
-
###v0.1.1 / 2020-02-27
118
+
## v0.1.1 / 2020-02-27
119
119
120
120
* Server returns 404 when receiving a /favicon.ico or /robots.txt request.
121
121
* Correct a rack constant name in Testing#make_post_request
0 commit comments