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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +2 -0
- data/lib/knapsack_pro/client/connection.rb +1 -1
- data/lib/knapsack_pro/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e439d9522688ef5f7ed0774c471fb6bffed329affd7e01c43cabce63709a348
|
4
|
+
data.tar.gz: b6838efdb36311c9f5d1c96f1fe18479bc33625703f3e6663a0fa754a25da97c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/knapsack_pro/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2019-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|