gibbon 3.3.0 → 3.3.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of gibbon might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9948496f6f0ccccd5c2796b5d6ad2e1c656e3fd4db624bbb36a24e81d9161be7
4
- data.tar.gz: 16ae83c4ec4af77425a9534b0c8c037fde234e694f21e77aa3572cad035867b4
3
+ metadata.gz: d116d72d4ffa666a00c6f1a9829f98e916036193564370d545872d7902d2a562
4
+ data.tar.gz: 51889994e6f00e418846932611c5b901678ff1610c7ff4d0b26d0ed367512af5
5
5
  SHA512:
6
- metadata.gz: 6e68e1c2b1e77f738e48a6a7256fb35c0904ae1d7f487daaeccd9b65cfc98ab57d3244f5f3fa1e699cd424fbaf36561ae83d3891f02029317595831c031c65d0
7
- data.tar.gz: 443c2f49c096106061887b29d052d05064a23b508740da354aea4f49bbed3201366c9a548155da051664906fc40b39e4bf9611571707db82bcb542859e7402c2
6
+ metadata.gz: cbb61ecde87bce694487e2cc3d640c6c028a263daa63b5a7b37cfce662fbbcaeb338da84b089584dc994074201e3518627b60ccc206989b3290822565a294fbf
7
+ data.tar.gz: 404210a9577aaf10984ed9da977606928a2a95b244aa7c55224d3630b6a03dcda1cee7e943325b845142f395d30cc5cf02b4fb9d9f12f200b03e7233ae4fbec3
@@ -4,8 +4,7 @@ cache: bundler
4
4
  before_install:
5
5
  - gem install bundler # -v 1.7.14 if a specific version is needed
6
6
  rvm:
7
- - 2.1.5
8
- - 2.2.2
9
7
  - 2.3.8
10
8
  - 2.4.5
11
- - 2.5.3
9
+ - 2.5.7
10
+ - 2.6.5
@@ -1,6 +1,9 @@
1
1
  ## [Unreleased][unreleased]
2
2
 
3
- ## [3.2.1] - 2019-10-02
3
+ ## [3.3.1] - 2019-11-08
4
+ - Fix statically setting `faraday_adapter` did not set adapter on new requests
5
+
6
+ ## [3.3.0] - 2019-10-02
4
7
  - Fixed compatibility with Faraday 0.16.2+
5
8
  - Set minimum Ruby to 2.3.8
6
9
 
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010-2017 Amro Mousa
1
+ Copyright (c) 2010-2020 Amro Mousa
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -506,5 +506,5 @@ Thanks to everyone who has [contributed](https://github.com/amro/gibbon/contribu
506
506
 
507
507
  ## Copyright
508
508
 
509
- * Copyright (c) 2010-2018 Amro Mousa. See LICENSE.txt for details.
510
- * MailChimp (c) 2001-2018 The Rocket Science Group.
509
+ * Copyright (c) 2010-2020 Amro Mousa. See LICENSE.txt for details.
510
+ * MailChimp (c) 2001-2020 The Rocket Science Group.
@@ -13,7 +13,7 @@ module Gibbon
13
13
  @timeout = timeout || self.class.timeout || DEFAULT_TIMEOUT
14
14
  @open_timeout = open_timeout || self.class.open_timeout || DEFAULT_OPEN_TIMEOUT
15
15
  @proxy = proxy || self.class.proxy || ENV['MAILCHIMP_PROXY']
16
- @faraday_adapter = faraday_adapter || Faraday.default_adapter
16
+ @faraday_adapter = faraday_adapter || self.class.faraday_adapter || Faraday.default_adapter
17
17
  @symbolize_keys = symbolize_keys || self.class.symbolize_keys || false
18
18
  @debug = debug || self.class.debug || false
19
19
  @logger = logger || self.class.logger || ::Logger.new(STDOUT)
@@ -1,3 +1,3 @@
1
1
  module Gibbon
2
- VERSION = "3.3.0"
2
+ VERSION = "3.3.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gibbon
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.0
4
+ version: 3.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amro Mousa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-02 00:00:00.000000000 Z
11
+ date: 2019-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday