knapsack_pro 1.7.0 → 1.8.0

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: 71ea9aaa9e707803ac96ff56bf1ba2a520b4aaec005f70d831b0864a14178108
4
- data.tar.gz: e520da2e94ce7df0edce0ec518733f155cc1f9502910f61c8b45504307a5952c
3
+ metadata.gz: 4e439d9522688ef5f7ed0774c471fb6bffed329affd7e01c43cabce63709a348
4
+ data.tar.gz: b6838efdb36311c9f5d1c96f1fe18479bc33625703f3e6663a0fa754a25da97c
5
5
  SHA512:
6
- metadata.gz: 8beba449b5e473b987b61d29fa0082f24dc05c667d57529de40d98c3aad33dacaef2d9050b51473a4e64b353ef61016fb261afec0c07b277fa106c177d775fb3
7
- data.tar.gz: 4cf162bd3bb0d002cf6be9ccfed0d7eeabb0eb3fa86696b91acb6781758e1d9217c207adf01f7b77270a57e0a4ec93da72dd35cb6437b87e734f3237e8307ea9
6
+ metadata.gz: 45cd07d1faa6ba56d558d853c9068701e9bef059d6f36f0aefe40b7267aa287f6f976f5d276d0791da26fdf38347bfda4209aa9c9548de66a426fa4654cdcc54
7
+ data.tar.gz: 9fa2019aa18ef91a7a10b658501b89ae752395973f1d01d5e9ecbaedca08d095153d03f659132e8e4a8775c21b1327e57b2191b4f45b3a042c3c2702bcd3a26c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ### 1.8.0
4
+
5
+ * Run Fallback Mode when `OpenSSL::SSL::SSLError` certificate verify failed for API
6
+
7
+ https://github.com/KnapsackPro/knapsack_pro-ruby/pull/80
8
+
9
+ https://github.com/KnapsackPro/knapsack_pro-ruby/compare/v1.7.0...v1.8.0
10
+
3
11
  ### 1.7.0
4
12
 
5
13
  * Add `KNAPSACK_PRO_LOG_DIR` to set directory where to write logs
data/README.md CHANGED
@@ -2331,6 +2331,8 @@ The test file pattern and exclude pattern support any glob pattern handled by [`
2331
2331
 
2332
2332
  You can check CodeClimate docs about [parallel tests](https://docs.codeclimate.com/docs/configuring-test-coverage#section-parallel-tests) and [multiple test suites](https://docs.codeclimate.com/docs/configuring-test-coverage#section-multiple-test-suites).
2333
2333
 
2334
+ You can also read our article [how to merge CodeClimate reports for parallel jobs (CI nodes)](https://docs.knapsackpro.com/2019/how-to-merge-codeclimate-reports-for-parallel-jobs-ci-nodes).
2335
+
2334
2336
  #### How to run knapsack_pro only on a few parallel CI nodes instead of all?
2335
2337
 
2336
2338
  You may want to run knapsack_pro only on a few CI nodes when you would like to run a different job on other CI nodes.
@@ -115,7 +115,7 @@ module KnapsackPro
115
115
  end
116
116
 
117
117
  response_body
118
- rescue ServerError, Errno::ECONNREFUSED, Errno::ETIMEDOUT, Errno::EPIPE, EOFError, SocketError, Net::OpenTimeout, Net::ReadTimeout => e
118
+ rescue ServerError, Errno::ECONNREFUSED, Errno::ETIMEDOUT, Errno::EPIPE, EOFError, SocketError, Net::OpenTimeout, Net::ReadTimeout, OpenSSL::SSL::SSLError => e
119
119
  logger.warn(e.inspect)
120
120
  retries += 1
121
121
  if retries < MAX_RETRY
@@ -1,3 +1,3 @@
1
1
  module KnapsackPro
2
- VERSION = '1.7.0'
2
+ VERSION = '1.8.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knapsack_pro
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ArturT
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-23 00:00:00.000000000 Z
11
+ date: 2019-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake