knapsack_pro 5.3.0 → 5.3.1

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: 81a7fddcd84c41e4e3273ba731e8f68a0063762ebe8234ec8b68cd4cc3e1bcb0
4
+ data.tar.gz: 213921c7b7d2789b213a80f8a943528f7ae10cf6427c455a04f38ff72a715901
5
5
  SHA512:
6
- metadata.gz: 70721672e47f388e2826baa88da884e596bc4784891ea5177e51584510579ce08f6297b853ac4c821c9e7d32861362587295a8e0ac1c5b290495df847f99acd9
7
- data.tar.gz: 475fe2a76e55a56575ed8d81cb8534b8d0fd2d5df044b8dd0a35a8a98d0e9e89a0045645d23e550e6833d80b7bc4d0c526c11e7035dec06699eae7d4d6ab8efb
6
+ metadata.gz: 47e7fd9c4c00952b3ebd83dba4de192718100460ad462eb68b90de24dea8df9aa066682771fc3173eaa93c5afa48bd837998711cbebc7dbb911a21d63b3d2cea
7
+ data.tar.gz: f1b4ac0665596ffe4d83c83c3137f9289a36a709564854155bdf103f38151bcd63b1a58ec165593b0aa2dc3b588b7a497ed032e45ef8c3d5719ee11ee12b747b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 5.3.1
4
+
5
+ * Avoid noise to stderr when git is not available when collecting authors
6
+
7
+ https://github.com/KnapsackPro/knapsack_pro-ruby/pull/211
8
+
9
+ https://github.com/KnapsackPro/knapsack_pro-ruby/compare/v5.3.0...v5.3.1
10
+
3
11
  ### 5.3.0
4
12
 
5
13
  * Perf: Send authors to the API only on the first request (for Queue Mode)
@@ -42,10 +42,10 @@ 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
@@ -1,3 +1,3 @@
1
1
  module KnapsackPro
2
- VERSION = '5.3.0'
2
+ VERSION = '5.3.1'
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.1
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-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake