stealth 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +18 -0
- data/Gemfile.lock +4 -3
- data/VERSION +1 -1
- data/lib/stealth/controller/replies.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: cbefa5ae28dcc07af7eabc9b18969a45e6948b3b64104882551768f99ea10a81
|
4
|
+
data.tar.gz: bb3c6195955577466ea4ed6b9c462955dd3a93cc235a41c165dbce3c2a6af0f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2093777b24ba92ddb2e36ef5e6789d2631cc7d2792a7d3914d20a9915f6f2fab6932000b2e74f3c1ac2af8fb65bbfdef7c112324b2b7034611d31bfe438fae3
|
7
|
+
data.tar.gz: 7a04ac9e0a91d8c6c8cb46afc01736e35de333202745ac5047f04155ae6a458f11b0bf80fe593224732170a75d8b9dbb2402f75fae7a542a161a61fc5b5e66f2
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
+
# Changelog for Stealth v1.1.5
|
2
|
+
|
3
|
+
## Enhancements
|
4
|
+
|
5
|
+
* [Replies] Replies will now always send the `sender_id` that came in to the service drivers. This ensures `current_session_id` hasn't been modified which would cause replies to fail to send.
|
6
|
+
|
7
|
+
# Changelog for Stealth v1.1.4
|
8
|
+
|
9
|
+
## Bug Fixes
|
10
|
+
|
11
|
+
* [General] Fixed controller and model concern load order. Previously files in the concerns folder were not loading before their respective controllers or models causing LoadErrors.
|
12
|
+
|
13
|
+
# Changelog for Stealth v1.1.3
|
14
|
+
|
15
|
+
## Bug Fixes
|
16
|
+
|
17
|
+
* [Server] Additional CONTENT_TYPE fixes that would cause the server to 500 when it was missing.
|
18
|
+
|
1
19
|
# Changelog for Stealth v1.1.2
|
2
20
|
|
3
21
|
## Bug Fixes
|
data/Gemfile.lock
CHANGED
@@ -26,14 +26,14 @@ GEM
|
|
26
26
|
mock_redis (0.19.0)
|
27
27
|
multi_json (1.13.1)
|
28
28
|
mustermann (1.0.3)
|
29
|
-
oj (3.7.
|
29
|
+
oj (3.7.8)
|
30
30
|
puma (3.12.0)
|
31
31
|
rack (2.0.6)
|
32
32
|
rack-protection (2.0.5)
|
33
33
|
rack
|
34
34
|
rack-test (1.1.0)
|
35
35
|
rack (>= 1.0, < 3)
|
36
|
-
redis (4.0
|
36
|
+
redis (4.1.0)
|
37
37
|
rspec (3.8.0)
|
38
38
|
rspec-core (~> 3.8.0)
|
39
39
|
rspec-expectations (~> 3.8.0)
|
@@ -49,8 +49,9 @@ GEM
|
|
49
49
|
rspec-support (3.8.0)
|
50
50
|
rspec_junit_formatter (0.4.1)
|
51
51
|
rspec-core (>= 2, < 4, != 2.12.0)
|
52
|
-
sidekiq (5.2.
|
52
|
+
sidekiq (5.2.5)
|
53
53
|
connection_pool (~> 2.2, >= 2.2.2)
|
54
|
+
rack (>= 1.5.0)
|
54
55
|
rack-protection (>= 1.5.0)
|
55
56
|
redis (>= 3.3.5, < 5)
|
56
57
|
sinatra (2.0.5)
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.5
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stealth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mauricio Gomes
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2019-02-
|
12
|
+
date: 2019-02-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sinatra
|
@@ -301,8 +301,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
301
301
|
- !ruby/object:Gem::Version
|
302
302
|
version: '0'
|
303
303
|
requirements: []
|
304
|
-
|
305
|
-
rubygems_version: 2.5.2.3
|
304
|
+
rubygems_version: 3.0.2
|
306
305
|
signing_key:
|
307
306
|
specification_version: 4
|
308
307
|
summary: Ruby framework for conversational bots
|