functions_framework 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/functions_framework/cli.rb +1 -0
- data/lib/functions_framework/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af3617730e13cd2afd38e965af84113775a0e86912534f7df9e7f86f9cc2ea5a
|
|
4
|
+
data.tar.gz: b690b2ca31e48c07a175d6f452e6877e3fdedc4ee2d808457991de3ae32e9595
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 107994559b7e92c7f07d7b5fbfbc34d8dcb82552fbc68edf93c3c577305a7a07c23fdc2300105b7e5c5738265a17cd61fa7ac652019853f962ba00d0f470919d
|
|
7
|
+
data.tar.gz: 0b1f96299d973e999e48a3d9ba94d9bbed4cecf3d4909387aa2ccb57fa85360991e82caa1507f415fd798f936869b06df4a421770a21fde8d741263ecdcc42c4
|
data/CHANGELOG.md
CHANGED
|
@@ -197,6 +197,7 @@ module FunctionsFramework
|
|
|
197
197
|
raise "Undefined function: #{@target.inspect}" if function.nil?
|
|
198
198
|
unless @signature_type.nil? ||
|
|
199
199
|
(@signature_type == "http" && function.type == :http) ||
|
|
200
|
+
(@signature_type == "http" && function.type == :typed) ||
|
|
200
201
|
(["cloudevent", "event"].include?(@signature_type) && function.type == :cloud_event)
|
|
201
202
|
raise "Function #{@target.inspect} does not match type #{@signature_type}"
|
|
202
203
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: functions_framework
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Azuma
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-06-
|
|
11
|
+
date: 2023-06-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cloud_events
|
|
@@ -106,10 +106,10 @@ homepage: https://github.com/GoogleCloudPlatform/functions-framework-ruby
|
|
|
106
106
|
licenses:
|
|
107
107
|
- Apache-2.0
|
|
108
108
|
metadata:
|
|
109
|
-
changelog_uri: https://googlecloudplatform.github.io/functions-framework-ruby/v1.4.
|
|
109
|
+
changelog_uri: https://googlecloudplatform.github.io/functions-framework-ruby/v1.4.1/file.CHANGELOG.html
|
|
110
110
|
source_code_uri: https://github.com/GoogleCloudPlatform/functions-framework-ruby
|
|
111
111
|
bug_tracker_uri: https://github.com/GoogleCloudPlatform/functions-framework-ruby/issues
|
|
112
|
-
documentation_uri: https://googlecloudplatform.github.io/functions-framework-ruby/v1.4.
|
|
112
|
+
documentation_uri: https://googlecloudplatform.github.io/functions-framework-ruby/v1.4.1
|
|
113
113
|
post_install_message:
|
|
114
114
|
rdoc_options: []
|
|
115
115
|
require_paths:
|