jets 4.0.10 → 4.0.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8612274c29e1e3f75b05e46d4d6e47571abc9b3dbd76322486a2cb6626c0f5a
4
- data.tar.gz: 9282f2d3543c0b9a02718e8078a276797104f1798d65d8a6617d08210c08361e
3
+ metadata.gz: 771471bd430828a4dead83c59730dbd04fdb19af107931e006fbb70d20fa149a
4
+ data.tar.gz: a569d133eb95ae9dac741f3c50f857169db52c1eddaa326b03f7eeb9c4f89ad9
5
5
  SHA512:
6
- metadata.gz: dd5f0ef934488eadaa573f00f693687eb352d18d46bffd927b5d3afaebc5010fcf0d04ef6622bc38af05501aa7d9eea4dccbdca8bc6d2ba64f25bb8ec88cc818
7
- data.tar.gz: b661cc6ec392586322e2cf0f0cec81d186b9522545e9fb63f9335035411e8bb7937431da73614f44c963ddbb7d7582c4a5978226f5eaf9d7398d52b686ba5271
6
+ metadata.gz: 93f20e19503e6833ebdd6cf86935a47153cd9759c06629c79340c31907f88847cf0ffac6bc5bd838dd82c965ed3d1b538cc0380bfc5aa2a90b6b31d9e954d85c
7
+ data.tar.gz: ff6b9d77eb8496f73ac5d1547647f12e2d96cede47c0baf07b1d14a06b3411014ca4cbf793ccae98fe7fa25a1e0975f9fdd713c98721ccd415e7dc9f37652cb9
data/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## [4.0.12] - 2024-06-13
7
+ - revert loosen rails gem dependencies
8
+
9
+ ## [4.0.11] - 2024-06-13
10
+ - fix prewarming error post deploy
11
+
6
12
  ## [4.0.10] - 2023-12-04
7
13
  - [#678](https://github.com/boltops-tools/jets/pull/678) handle option method or http_method from route state
8
14
 
@@ -75,9 +75,10 @@ class Jets::Commands::Call
75
75
  end
76
76
 
77
77
  add_console_link_to_clipboard
78
- result = resp.payload.read # already been normalized/JSON.dump by AWS
79
78
  unless @options[:mute_output]
80
- STDOUT.puts result # only thing that goes to stdout
79
+ # payload is nil when invocation_type is Event
80
+ result = resp.payload&.read # already been normalized/JSON.dump by AWS
81
+ STDOUT.puts result if result # only thing that goes to stdout
81
82
  end
82
83
  end
83
84
 
@@ -47,11 +47,6 @@ private
47
47
  def call_options(quiet)
48
48
  options = {}
49
49
  options.merge!(mute: true, mute_output: true) if quiet
50
- # All the methods in this Job class leads to Jets::Commands::Call.
51
- # This is true for the Jets::Preheat.warm_all also.
52
- # These jobs delegate out to Lambda function calls. We do not need/want
53
- # the invocation type: RequestResponse in this case.
54
- options.merge!(invocation_type: "Event")
55
50
  options
56
51
  end
57
52
  end
data/lib/jets/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "4.0.10"
2
+ VERSION = "4.0.12"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.10
4
+ version: 4.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-04 00:00:00.000000000 Z
11
+ date: 2024-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionmailer
@@ -1101,7 +1101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1101
1101
  - !ruby/object:Gem::Version
1102
1102
  version: '0'
1103
1103
  requirements: []
1104
- rubygems_version: 3.4.20
1104
+ rubygems_version: 3.5.11
1105
1105
  signing_key:
1106
1106
  specification_version: 4
1107
1107
  summary: Ruby Serverless Framework