knapsack_pro 5.3.0 → 5.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8cce96343b30d782aa576d77ab957b9af2b767ff7896f6507bcf6d0fed5ad8ea
4
- data.tar.gz: b1ff76bcc2c99420049e1a52d0f9715dfa8c208dc2dd5e35b1e56756982ef059
3
+ metadata.gz: faf54d04d0dc54356dc2e748db408a9b05ee5d012eb0e56f57029f7341db3feb
4
+ data.tar.gz: fdfc75c76af649348241cdfce8a4910e3647bb57dbd6058b013863e49f5e4640
5
5
  SHA512:
6
- metadata.gz: 70721672e47f388e2826baa88da884e596bc4784891ea5177e51584510579ce08f6297b853ac4c821c9e7d32861362587295a8e0ac1c5b290495df847f99acd9
7
- data.tar.gz: 475fe2a76e55a56575ed8d81cb8534b8d0fd2d5df044b8dd0a35a8a98d0e9e89a0045645d23e550e6833d80b7bc4d0c526c11e7035dec06699eae7d4d6ab8efb
6
+ metadata.gz: 14bd3b971bf915d2354cb06e6450d6db587d8df36d9c042e0379f5ad77d972e78361109f6bafd9624b86edfcbe8030805eb95a20efd519c85d9bc459a68c8985
7
+ data.tar.gz: 5a4128dcc5b84d38cef6cb21f3a68685c7d68e41be16088cb8d5b76c11a82679a33cc3e95a0a4fb2f7bfb576a22bd42305763b6cbd738ebc83ebb76f8c56420e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ### 5.3.2
4
+
5
+ * On top of 5.3.1, avoid noise to stderr when git is not available when collecting the build author
6
+
7
+ https://github.com/KnapsackPro/knapsack_pro-ruby/compare/v5.3.1...v5.3.2
8
+
9
+ ### 5.3.1
10
+
11
+ * Avoid noise to stderr when git is not available when collecting authors
12
+
13
+ https://github.com/KnapsackPro/knapsack_pro-ruby/pull/211
14
+
15
+ https://github.com/KnapsackPro/knapsack_pro-ruby/compare/v5.3.0...v5.3.1
16
+
3
17
  ### 5.3.0
4
18
 
5
19
  * Perf: Send authors to the API only on the first request (for Queue Mode)
@@ -42,14 +42,14 @@ module KnapsackPro
42
42
 
43
43
  def git_commit_authors
44
44
  if KnapsackPro::Config::Env.ci?
45
- `git fetch --shallow-since "one month ago" --quiet`
45
+ `git fetch --shallow-since "one month ago" --quiet 2>/dev/null`
46
46
  end
47
47
 
48
- `git log --since "one month ago" | git shortlog --summary --email`
48
+ `git log --since "one month ago" 2>/dev/null | git shortlog --summary --email 2>/dev/null`
49
49
  end
50
50
 
51
51
  def git_build_author
52
- `git log --format="%aN <%aE>" -1`
52
+ `git log --format="%aN <%aE>" -1 2>/dev/null`
53
53
  end
54
54
 
55
55
  def working_dir
@@ -1,3 +1,3 @@
1
1
  module KnapsackPro
2
- VERSION = '5.3.0'
2
+ VERSION = '5.3.2'
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: 5.3.0
4
+ version: 5.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ArturT
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-18 00:00:00.000000000 Z
11
+ date: 2023-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake