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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 848bad0902a3f12ca5db9a3c357cc2ab3209799d74b347c578c626f23d699466
4
- data.tar.gz: 5b0506f45a5dcd80127287d2fdd3cd7255f718b2c52866d0172fdf79fa27bd5c
3
+ metadata.gz: 5c1805d12af62c0dac803b64eadb0e7b21efa614f5c10600d75280649a7d2a0e
4
+ data.tar.gz: 89f0a7ededf02acc4f84df65df03880af40edc4e41d0f930244262067ab10961
5
5
  SHA512:
6
- metadata.gz: 263e887409ffe6620f687a79e0609cff55c46d989e4066f997846e00f08b582007e35fa12e46d991f2214a770da1312207c5432192ef23cb8f8eaa00916f2e3e
7
- data.tar.gz: 5e628327433244d3bad52c4d0db5af754af69a8f941e57458437c891f8ba849a6583868860f95b336b311e49f8d262be349c51c7ef19dcb974d6531284782e3b
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.0] - 2012-03-08
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.0)
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 FaradayPatch_v1
27
+ module FaradayAdapterPatch_v1
28
28
  def adapter(klass = NO_ARGUMENT, *args, &block)
29
29
  return @adapter if klass == NO_ARGUMENT
30
30
 
@@ -1,3 +1,3 @@
1
1
  module ExceptionalSynchrony
2
- VERSION = '1.4.0'
2
+ VERSION = '1.4.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exceptional_synchrony
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
  - Invoca