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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57eed57ea92eee1e51f3285c883f0f757a87f8379b7316fe5cd1eed46e1782fc
4
- data.tar.gz: c039b2139d3692727dffcbe715b390460445d4c8b5728e2c4fbe2c59db3030c8
3
+ metadata.gz: af3617730e13cd2afd38e965af84113775a0e86912534f7df9e7f86f9cc2ea5a
4
+ data.tar.gz: b690b2ca31e48c07a175d6f452e6877e3fdedc4ee2d808457991de3ae32e9595
5
5
  SHA512:
6
- metadata.gz: d1369b3334e1605956829e6077fe7d76f5f49155985598d2098928cc6a54d4f58b1252f8e6971cfd3784e104ca15162ec1e37fc0e80f2d0eadf60ad5698d7657
7
- data.tar.gz: 9fa3b2e12ff0ad195ad0dd808c147ad30adf9eeb8ac25a2990ebddb11ef8945f80b8091455415cb0462fbc334e3eacc77afeb55175a01a713bbc2f808a3018b8
6
+ metadata.gz: 107994559b7e92c7f07d7b5fbfbc34d8dcb82552fbc68edf93c3c577305a7a07c23fdc2300105b7e5c5738265a17cd61fa7ac652019853f962ba00d0f470919d
7
+ data.tar.gz: 0b1f96299d973e999e48a3d9ba94d9bbed4cecf3d4909387aa2ccb57fa85360991e82caa1507f415fd798f936869b06df4a421770a21fde8d741263ecdcc42c4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ### 1.4.1 (2023-06-27)
4
+
5
+ #### Bug Fixes
6
+
7
+ * enable typed function compatibility with http signature ([#174](https://github.com/GoogleCloudPlatform/functions-framework-ruby/issues/174))
8
+
3
9
  ### 1.4.0 (2023-06-16)
4
10
 
5
11
  #### Features
@@ -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
@@ -17,5 +17,5 @@ module FunctionsFramework
17
17
  # Version of the Ruby Functions Framework
18
18
  # @return [String]
19
19
  #
20
- VERSION = "1.4.0".freeze
20
+ VERSION = "1.4.1".freeze
21
21
  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.0
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-16 00:00:00.000000000 Z
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.0/file.CHANGELOG.html
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.0
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: