exceptional_synchrony 1.4.0 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/Gemfile.lock +2 -4
- data/lib/exceptional_synchrony/faraday_monkey_patch.rb +1 -1
- data/lib/exceptional_synchrony/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c1805d12af62c0dac803b64eadb0e7b21efa614f5c10600d75280649a7d2a0e
|
4
|
+
data.tar.gz: 89f0a7ededf02acc4f84df65df03880af40edc4e41d0f930244262067ab10961
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cab5a438cdef3a5e1682912e500b79eff2d11992e351070064b167df9125d305429a26f153dc2aa33923695970584b06da731b7220c50b230e3e4a202a49ce99
|
7
|
+
data.tar.gz: 18fca7c2d477146a3886b66abb32a2c43d5125f220c45f8d71c47f4ed4d2d28f8fbf98257cb396033a8223e9e26ea8d35ae110e2d7e88ffe0a17d148a9a594bc
|
data/CHANGELOG.md
CHANGED
@@ -6,7 +6,11 @@ Note: This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0
|
|
6
6
|
|
7
7
|
All notable changes to this project will be documented in this file.
|
8
8
|
|
9
|
-
## [1.4.
|
9
|
+
## [1.4.1] - 2021-03-09
|
10
|
+
### Fixed
|
11
|
+
- FaradayAdapterPatch_v1 name typo
|
12
|
+
|
13
|
+
## [1.4.0] - 2021-03-08
|
10
14
|
### Added
|
11
15
|
- Added use of Thread local variable to indicate when Eventmachine is running using EM::Synchrony
|
12
16
|
- Added faraday gem monkey patch to use the new Thread local variable to choose the adapter to use
|
@@ -29,6 +33,7 @@ All notable changes to this project will be documented in this file.
|
|
29
33
|
## [1.1.1] - 2020-05-03
|
30
34
|
- Replace hobo_support with invoca_utils
|
31
35
|
|
36
|
+
[1.4.1]: https://github.com/Invoca/exceptional_synchrony/compare/v1.4.0...v1.4.1
|
32
37
|
[1.4.0]: https://github.com/Invoca/exceptional_synchrony/compare/v1.3.0...v1.4.0
|
33
38
|
[1.3.0]: https://github.com/Invoca/exceptional_synchrony/compare/v1.2.0...v1.3.0
|
34
39
|
[1.2.0]: https://github.com/Invoca/exceptional_synchrony/compare/v1.1.1...v1.2.0
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
exceptional_synchrony (1.4.
|
4
|
+
exceptional_synchrony (1.4.1)
|
5
5
|
em-http-request
|
6
6
|
em-synchrony
|
7
7
|
eventmachine
|
@@ -89,15 +89,13 @@ GEM
|
|
89
89
|
mini_mime (>= 0.1.1)
|
90
90
|
method_source (1.0.0)
|
91
91
|
mini_mime (1.0.2)
|
92
|
-
mini_portile2 (2.5.0)
|
93
92
|
minitest (5.14.0)
|
94
93
|
minitest-reporters (1.4.2)
|
95
94
|
ansi
|
96
95
|
builder
|
97
96
|
minitest (>= 5.0)
|
98
97
|
ruby-progressbar
|
99
|
-
nokogiri (1.11.1)
|
100
|
-
mini_portile2 (~> 2.5.0)
|
98
|
+
nokogiri (1.11.1-x86_64-darwin)
|
101
99
|
racc (~> 1.4)
|
102
100
|
pry (0.13.1)
|
103
101
|
coderay (~> 1.1)
|
@@ -24,7 +24,7 @@ begin
|
|
24
24
|
|
25
25
|
# Patch built relative to faraday v1.3.0 although the ruby2_keywords prefix
|
26
26
|
# was dropped from the adapter method definition to simplify this code
|
27
|
-
module
|
27
|
+
module FaradayAdapterPatch_v1
|
28
28
|
def adapter(klass = NO_ARGUMENT, *args, &block)
|
29
29
|
return @adapter if klass == NO_ARGUMENT
|
30
30
|
|