knapsack 1.18.0 → 3.1.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: b673e54c4a69c274d1c0bea7d3ab53d603ad95d178550a6d787904803dcc728f
4
- data.tar.gz: b88dd14ffeb3dc33648ae953fc789d63cbc25a4be72d643dea6acddc09bc3f3e
3
+ metadata.gz: d27f3b6225aefe7c7a2ff1a4071961e65c5e087a5256d7294bca73398ce2c997
4
+ data.tar.gz: 38f324e2d35800297e8c071caef06100688d1e1617bb8f3339076b9c9c1de828
5
5
  SHA512:
6
- metadata.gz: 2837e7b8732843c8b778c82c26c57c2f5757c6402c464a6e57f71c046c8c07f1674d9ae124ec6759808d81d557684cc62f7a5c1dda331a9265b1ebfc53cc8228
7
- data.tar.gz: 9270341918460fb18dad56753b6cba0308783940c601b6cbd88331629c3f4453fd3e15faa355a8830822cdd98b449e8b96c1f7a58015cff385ca78f0108a8fd4
6
+ metadata.gz: 0d635a77401b2d65914edab41f2ac726901d38b937869fb408cc2548d6547114a0d968c06a8c9adfe4f5a2c3d3d7c11bea5bb0c8161d706e17870ea3682b5be0
7
+ data.tar.gz: b5aa3601e1d7cbdffdfa33a4de64d562782c74371f9e3c58b0754b262a86554c8320e7fb0aff1c84cd6e05755b66c29b61b87f83ffb3a44d4f06eb9c38c8dfd6
@@ -0,0 +1,117 @@
1
+ name: Ruby
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
+ branches: [master]
8
+
9
+ jobs:
10
+ test:
11
+
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
17
+ ruby: [2.2, 2.3, 2.4, 2.5, 2.6, 2.7, '3.0', truffleruby-head]
18
+
19
+ steps:
20
+ - uses: actions/checkout@v2
21
+ - name: Set up Ruby
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby }}
25
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
26
+
27
+ # Test for knapsack gem
28
+ - name: Run specs for Knapsack gem
29
+ run: bundle exec rspec spec
30
+
31
+ # Tests for example rspec test suite
32
+ - name: Generate knapsack report
33
+ run: KNAPSACK_GENERATE_REPORT=true bundle exec rspec --default-path spec_examples --tag focus
34
+
35
+ - name: Run specs with enabled time offset warning
36
+ run: bundle exec rspec --default-path spec_examples
37
+
38
+ - name: Run rake task for the first CI node
39
+ run: CI_NODE_TOTAL=2 CI_NODE_INDEX=0 KNAPSACK_TEST_FILE_PATTERN="spec_examples/**{,/*/**}/*_spec.rb" bundle exec rake knapsack:rspec
40
+ - name: Run rake task for the second CI node
41
+ run: CI_NODE_TOTAL=2 CI_NODE_INDEX=1 KNAPSACK_TEST_FILE_PATTERN="spec_examples/**{,/*/**}/*_spec.rb" bundle exec rake knapsack:rspec
42
+
43
+ - name: Check passing arguments to rspec. Run only specs with custom_focus tag (1/2)
44
+ run: KNAPSACK_TEST_FILE_PATTERN="spec_examples/**{,/*/**}/*_spec.rb" bundle exec rake "knapsack:rspec[--tag custom_focus]"
45
+ - name: Check passing arguments to rspec. Run only specs with custom_focus tag (2/2)
46
+ run: KNAPSACK_TEST_FILE_PATTERN="spec_examples/**{,/*/**}/*_spec.rb" bin/knapsack rspec "--tag custom_focus --profile"
47
+
48
+ - name: Run specs with custom knapsack logger
49
+ run: CUSTOM_LOGGER=true KNAPSACK_TEST_FILE_PATTERN="spec_examples/**{,/*/**}/*_spec.rb" bundle exec rake knapsack:rspec
50
+
51
+ - name: Run specs for custom knapsack report path
52
+ run: |
53
+ cp knapsack_rspec_report.json knapsack_custom_rspec_report.json
54
+ KNAPSACK_REPORT_PATH="knapsack_custom_rspec_report.json" KNAPSACK_TEST_FILE_PATTERN="spec_examples/**{,/*/**}/*_spec.rb" bundle exec rake knapsack:rspec
55
+
56
+ - name: Run specs when spec file was removed and still exists in knapsack report json
57
+ run: |
58
+ rm spec_examples/fast/1_spec.rb
59
+ KNAPSACK_TEST_FILE_PATTERN="spec_examples/**{,/*/**}/*_spec.rb" bundle exec rake knapsack:rspec
60
+
61
+ - name: Run specs from multiple directories with manually specified test_dir
62
+ run: KNAPSACK_TEST_DIR=spec_examples KNAPSACK_TEST_FILE_PATTERN="{spec_examples,spec_engine_examples}/**{,/*/**}/*_spec.rb" bundle exec rake knapsack:rspec
63
+
64
+ # Tests for example minitest test suite
65
+ - name: Generate knapsack report
66
+ run: KNAPSACK_GENERATE_REPORT=true bundle exec rake test
67
+
68
+ - name: Run tests with enabled time offset warning
69
+ run: bundle exec rake test
70
+
71
+ - name: Run rake task for the first CI node
72
+ run: CI_NODE_TOTAL=2 CI_NODE_INDEX=0 KNAPSACK_TEST_FILE_PATTERN="test_examples/**{,/*/**}/*_test.rb" bundle exec rake knapsack:minitest
73
+ - name: Run rake task for the second CI node
74
+ run: CI_NODE_TOTAL=2 CI_NODE_INDEX=1 KNAPSACK_TEST_FILE_PATTERN="test_examples/**{,/*/**}/*_test.rb" bundle exec rake knapsack:minitest
75
+
76
+ - name: Check passing arguments to minitest. Run verbose tests
77
+ run: |
78
+ KNAPSACK_TEST_FILE_PATTERN="test_examples/**{,/*/**}/*_test.rb" bundle exec rake "knapsack:minitest[--verbose]"
79
+ KNAPSACK_TEST_FILE_PATTERN="test_examples/**{,/*/**}/*_test.rb" bin/knapsack minitest "--verbose --pride"
80
+
81
+ - name: Run tests with custom knapsack logger
82
+ run: CUSTOM_LOGGER=true KNAPSACK_TEST_FILE_PATTERN="test_examples/**{,/*/**}/*_test.rb" bundle exec rake knapsack:minitest
83
+
84
+ - name: Run tests for custom knapsack report path
85
+ run: |
86
+ cp knapsack_minitest_report.json knapsack_custom_minitest_report.json
87
+ KNAPSACK_REPORT_PATH="knapsack_custom_minitest_report.json" KNAPSACK_TEST_FILE_PATTERN="test_examples/**{,/*/**}/*_test.rb" bundle exec rake knapsack:minitest
88
+
89
+ - name: Run tests when test file was removed and still exists in knapsack report json
90
+ run: |
91
+ rm test_examples/fast/unit_test.rb
92
+ KNAPSACK_TEST_FILE_PATTERN="test_examples/**{,/*/**}/*_test.rb" bundle exec rake knapsack:minitest
93
+
94
+ # Tests for example spinach test suite
95
+ - name: Generate knapsack report
96
+ run: KNAPSACK_GENERATE_REPORT=true bundle exec spinach -f spinach_examples
97
+
98
+ - name: Run tests with enabled time offset warning
99
+ run: bundle exec spinach -f spinach_examples
100
+
101
+ - name: Run rake task for the first CI node
102
+ run: CI_NODE_TOTAL=2 CI_NODE_INDEX=0 KNAPSACK_TEST_FILE_PATTERN="spinach_examples/**{,/*/**}/*.feature" bundle exec rake "knapsack:spinach[-f spinach_examples]"
103
+ - name: Run rake task for the second CI node
104
+ run: CI_NODE_TOTAL=2 CI_NODE_INDEX=1 KNAPSACK_TEST_FILE_PATTERN="spinach_examples/**{,/*/**}/*.feature" bundle exec rake "knapsack:spinach[-f spinach_examples]"
105
+
106
+ - name: Run tests with custom knapsack logger
107
+ run: CUSTOM_LOGGER=true KNAPSACK_TEST_FILE_PATTERN="spinach_examples/**{,/*/**}/*.feature" bundle exec rake "knapsack:spinach[-f spinach_examples]"
108
+
109
+ - name: Run tests for custom knapsack report path
110
+ run: |
111
+ cp knapsack_spinach_report.json knapsack_custom_spinach_report.json
112
+ KNAPSACK_REPORT_PATH="knapsack_custom_spinach_report.json" KNAPSACK_TEST_FILE_PATTERN="spinach_examples/**{,/*/**}/*.feature" bundle exec rake "knapsack:spinach[-f spinach_examples]"
113
+
114
+ - name: Run tests when test file was removed and still exists in knapsack report json
115
+ run: |
116
+ rm spinach_examples/scenario1.feature
117
+ KNAPSACK_TEST_FILE_PATTERN="spinach_examples/**{,/*/**}/*.feature" bundle exec rake "knapsack:spinach[-f spinach_examples]"
data/CHANGELOG.md CHANGED
@@ -2,13 +2,89 @@
2
2
 
3
3
  * TODO
4
4
 
5
+ ### 3.1.0
6
+
7
+ * Sorting Algorithm: round robin to least connections
8
+
9
+ https://github.com/KnapsackPro/knapsack/pull/99
10
+
11
+ https://github.com/KnapsackPro/knapsack/compare/v3.0.0...v3.1.0
12
+
13
+ ### 3.0.0
14
+
15
+ * __(breaking change)__ Require minimum Ruby 2.2 version
16
+
17
+ https://github.com/KnapsackPro/knapsack/pull/115
18
+
19
+ * __(breaking change)__ Drop support for Minitest 4.x. Force to use minitest 5.x even on CI.
20
+
21
+ https://github.com/KnapsackPro/knapsack/pull/114
22
+
23
+ * Replace Travis CI with GitHub Actions
24
+
25
+ https://github.com/KnapsackPro/knapsack/pull/112
26
+
27
+ https://github.com/KnapsackPro/knapsack/compare/v2.0.0...v3.0.0
28
+
29
+ ### 2.0.0
30
+
31
+ * __(breaking change)__ Ruby 2.1 is a minimum required version
32
+
33
+ https://github.com/KnapsackPro/knapsack/pull/113
34
+
35
+ * Use Ruby 3 and add small development adjustments in codebase
36
+
37
+ https://github.com/KnapsackPro/knapsack/pull/110
38
+
39
+ https://github.com/KnapsackPro/knapsack/compare/v1.22.0...v2.0.0
40
+
41
+ ### 1.22.0
42
+
43
+ * Update time offset warning
44
+
45
+ https://github.com/KnapsackPro/knapsack/pull/105
46
+
47
+ https://github.com/KnapsackPro/knapsack/compare/v1.21.1...v1.22.0
48
+
49
+ ### 1.21.1
50
+
51
+ * Fix a bug with tracking time for pending specs in RSpec
52
+
53
+ https://github.com/KnapsackPro/knapsack/pull/109
54
+
55
+ https://github.com/KnapsackPro/knapsack/compare/v1.21.0...v1.21.1
56
+
57
+ ### 1.21.0
58
+
59
+ * Track time in before and after `:context` hooks
60
+
61
+ https://github.com/KnapsackPro/knapsack/pull/107
62
+
63
+ https://github.com/KnapsackPro/knapsack/compare/v1.20.0...v1.21.0
64
+
65
+ ### 1.20.0
66
+
67
+ * Use `Process.clock_gettime` to measure track execution time
68
+
69
+ https://github.com/KnapsackPro/knapsack/pull/100
70
+
71
+ https://github.com/KnapsackPro/knapsack/compare/v1.19.0...v1.20.0
72
+
73
+ ### 1.19.0
74
+
75
+ * Add support for Bitbucket Pipelines
76
+
77
+ https://github.com/KnapsackPro/knapsack/pull/97
78
+
79
+ https://github.com/KnapsackPro/knapsack/compare/v1.18.0...v1.19.0
80
+
5
81
  ### 1.18.0
6
82
 
7
83
  * Add support for Semaphore 2.0
8
84
 
9
- https://github.com/ArturT/knapsack/pull/92
85
+ https://github.com/KnapsackPro/knapsack/pull/92
10
86
 
11
- https://github.com/ArturT/knapsack/compare/v1.17.2...v1.18.0
87
+ https://github.com/KnapsackPro/knapsack/compare/v1.17.2...v1.18.0
12
88
 
13
89
  ### 1.17.2
14
90
 
@@ -17,65 +93,65 @@ https://github.com/ArturT/knapsack/compare/v1.17.2...v1.18.0
17
93
  * Add info about Knapsack Pro Queue Mode in knapsack output
18
94
  * Update URL to FAQ in knapsack output
19
95
 
20
- https://github.com/ArturT/knapsack/pull/90
96
+ https://github.com/KnapsackPro/knapsack/pull/90
21
97
 
22
- https://github.com/ArturT/knapsack/compare/v1.17.1...v1.17.2
98
+ https://github.com/KnapsackPro/knapsack/compare/v1.17.1...v1.17.2
23
99
 
24
100
  ### 1.17.1
25
101
 
26
102
  * Fix RSpec signal handling by replacing process
27
103
 
28
- https://github.com/ArturT/knapsack/pull/86
104
+ https://github.com/KnapsackPro/knapsack/pull/86
29
105
 
30
- https://github.com/ArturT/knapsack/compare/v1.17.0...v1.17.1
106
+ https://github.com/KnapsackPro/knapsack/compare/v1.17.0...v1.17.1
31
107
 
32
108
  ### 1.17.0
33
109
 
34
110
  * Add support for GitLab CI ENV variable `CI_NODE_INDEX` starting from 1.
35
111
 
36
- https://github.com/ArturT/knapsack/pull/83
112
+ https://github.com/KnapsackPro/knapsack/pull/83
37
113
 
38
- https://github.com/ArturT/knapsack/compare/v1.16.0...v1.17.0
114
+ https://github.com/KnapsackPro/knapsack/compare/v1.16.0...v1.17.0
39
115
 
40
116
  ### 1.16.0
41
117
 
42
118
  * Add support for Ruby >= 1.9.3.
43
119
 
44
- https://github.com/ArturT/knapsack/pull/77
120
+ https://github.com/KnapsackPro/knapsack/pull/77
45
121
 
46
- https://github.com/ArturT/knapsack/compare/v1.15.0...v1.16.0
122
+ https://github.com/KnapsackPro/knapsack/compare/v1.15.0...v1.16.0
47
123
 
48
124
  ### 1.15.0
49
125
 
50
126
  * Add support for Cucumber 3.
51
127
 
52
- https://github.com/ArturT/knapsack/pull/68
128
+ https://github.com/KnapsackPro/knapsack/pull/68
53
129
 
54
- https://github.com/ArturT/knapsack/compare/v1.14.1...v1.15.0
130
+ https://github.com/KnapsackPro/knapsack/compare/v1.14.1...v1.15.0
55
131
 
56
132
  ### 1.14.1
57
133
 
58
134
  * Update RSpec timing adapter to be more resilient.
59
135
 
60
- https://github.com/ArturT/knapsack/pull/64
136
+ https://github.com/KnapsackPro/knapsack/pull/64
61
137
 
62
- https://github.com/ArturT/knapsack/compare/v1.14.0...v1.14.1
138
+ https://github.com/KnapsackPro/knapsack/compare/v1.14.0...v1.14.1
63
139
 
64
140
  ### 1.14.0
65
141
 
66
142
  * Moves Timecop to development dependency.
67
143
 
68
- https://github.com/ArturT/knapsack/pull/61
144
+ https://github.com/KnapsackPro/knapsack/pull/61
69
145
 
70
- https://github.com/ArturT/knapsack/compare/v1.13.3...v1.14.0
146
+ https://github.com/KnapsackPro/knapsack/compare/v1.13.3...v1.14.0
71
147
 
72
148
  ### 1.13.3
73
149
 
74
150
  * Fix: Trailing slash should be removed from allocator test_dir.
75
151
 
76
- https://github.com/ArturT/knapsack/issues/57
152
+ https://github.com/KnapsackPro/knapsack/issues/57
77
153
 
78
- https://github.com/ArturT/knapsack/compare/v1.13.2...v1.13.3
154
+ https://github.com/KnapsackPro/knapsack/compare/v1.13.2...v1.13.3
79
155
 
80
156
  ### 1.13.2
81
157
 
@@ -84,78 +160,78 @@ https://github.com/ArturT/knapsack/compare/v1.13.2...v1.13.3
84
160
  Related:
85
161
  https://github.com/KnapsackPro/knapsack_pro-ruby/issues/27
86
162
 
87
- https://github.com/ArturT/knapsack/compare/v1.13.1...v1.13.2
163
+ https://github.com/KnapsackPro/knapsack/compare/v1.13.1...v1.13.2
88
164
 
89
165
  ### 1.13.1
90
166
 
91
167
  * Fix: Get rid of call #zero? method on $?.exitstatus in test runners tasks
92
168
 
93
- https://github.com/ArturT/knapsack/pull/52
169
+ https://github.com/KnapsackPro/knapsack/pull/52
94
170
 
95
- https://github.com/ArturT/knapsack/compare/v1.13.0...v1.13.1
171
+ https://github.com/KnapsackPro/knapsack/compare/v1.13.0...v1.13.1
96
172
 
97
173
  ### 1.13.0
98
174
 
99
175
  * Add KNAPSACK_LOG_LEVEL option
100
176
 
101
- https://github.com/ArturT/knapsack/pull/49
177
+ https://github.com/KnapsackPro/knapsack/pull/49
102
178
 
103
- https://github.com/ArturT/knapsack/compare/v1.12.2...v1.13.0
179
+ https://github.com/KnapsackPro/knapsack/compare/v1.12.2...v1.13.0
104
180
 
105
181
  ### 1.12.2
106
182
 
107
183
  * Fix support for turnip >= 2.x
108
184
 
109
- https://github.com/ArturT/knapsack/pull/47
185
+ https://github.com/KnapsackPro/knapsack/pull/47
110
186
 
111
- https://github.com/ArturT/knapsack/compare/v1.12.1...v1.12.2
187
+ https://github.com/KnapsackPro/knapsack/compare/v1.12.1...v1.12.2
112
188
 
113
189
  ### 1.12.1
114
190
 
115
191
  * Cucumber and Spinach should load files from proper folder in case when you use custom test directory.
116
192
 
117
- https://github.com/ArturT/knapsack/compare/v1.12.0...v1.12.1
193
+ https://github.com/KnapsackPro/knapsack/compare/v1.12.0...v1.12.1
118
194
 
119
195
  ### 1.12.0
120
196
 
121
197
  * Add support for Minitest::SharedExamples
122
198
 
123
- https://github.com/ArturT/knapsack/pull/46
199
+ https://github.com/KnapsackPro/knapsack/pull/46
124
200
 
125
- https://github.com/ArturT/knapsack/compare/v1.11.1...v1.12.0
201
+ https://github.com/KnapsackPro/knapsack/compare/v1.11.1...v1.12.0
126
202
 
127
203
  ### 1.11.1
128
204
 
129
205
  * Require spinach in spec helper so tests will pass but don't require it in spinach adapter because it breaks for users who don't use spinach and they don't want to add it to their Gemfile
130
206
 
131
207
  Related PR:
132
- https://github.com/ArturT/knapsack/pull/41
208
+ https://github.com/KnapsackPro/knapsack/pull/41
133
209
 
134
- https://github.com/ArturT/knapsack/compare/v1.11.0...v1.11.1
210
+ https://github.com/KnapsackPro/knapsack/compare/v1.11.0...v1.11.1
135
211
 
136
212
  ### 1.11.0
137
213
 
138
214
  * Add support for Spinach
139
215
 
140
- https://github.com/ArturT/knapsack/pull/41
216
+ https://github.com/KnapsackPro/knapsack/pull/41
141
217
 
142
- https://github.com/ArturT/knapsack/compare/v1.10.0...v1.11.0
218
+ https://github.com/KnapsackPro/knapsack/compare/v1.10.0...v1.11.0
143
219
 
144
220
  ### 1.10.0
145
221
 
146
222
  * Log the time offset warning at INFO if time not exceeded
147
223
 
148
- https://github.com/ArturT/knapsack/pull/40
224
+ https://github.com/KnapsackPro/knapsack/pull/40
149
225
 
150
- https://github.com/ArturT/knapsack/compare/v1.9.0...v1.10.0
226
+ https://github.com/KnapsackPro/knapsack/compare/v1.9.0...v1.10.0
151
227
 
152
228
  ### 1.9.0
153
229
 
154
230
  * Use Knapsack.logger for runner output
155
231
 
156
- https://github.com/ArturT/knapsack/pull/39
232
+ https://github.com/KnapsackPro/knapsack/pull/39
157
233
 
158
- https://github.com/ArturT/knapsack/compare/v1.8.0...v1.9.0
234
+ https://github.com/KnapsackPro/knapsack/compare/v1.8.0...v1.9.0
159
235
 
160
236
  ### 1.8.0
161
237
 
@@ -163,15 +239,15 @@ https://github.com/ArturT/knapsack/compare/v1.8.0...v1.9.0
163
239
 
164
240
  https://github.com/KnapsackPro/knapsack_pro-ruby/issues/5
165
241
 
166
- https://github.com/ArturT/knapsack/compare/v1.7.0...v1.8.0
242
+ https://github.com/KnapsackPro/knapsack/compare/v1.7.0...v1.8.0
167
243
 
168
244
  ### 1.7.0
169
245
 
170
246
  * Add ability to run tests from multiple directories
171
247
 
172
- https://github.com/ArturT/knapsack/pull/35
248
+ https://github.com/KnapsackPro/knapsack/pull/35
173
249
 
174
- https://github.com/ArturT/knapsack/compare/v1.6.1...v1.7.0
250
+ https://github.com/KnapsackPro/knapsack/compare/v1.6.1...v1.7.0
175
251
 
176
252
  ### 1.6.1
177
253
 
@@ -179,106 +255,106 @@ https://github.com/ArturT/knapsack/compare/v1.6.1...v1.7.0
179
255
 
180
256
  https://github.com/KnapsackPro/knapsack_pro-ruby/pull/4
181
257
 
182
- https://github.com/ArturT/knapsack/compare/v1.6.0...v1.6.1
258
+ https://github.com/KnapsackPro/knapsack/compare/v1.6.0...v1.6.1
183
259
 
184
260
  ### 1.6.0
185
261
 
186
262
  * Add support for Cucumber 2
187
263
 
188
- https://github.com/ArturT/knapsack/issues/30
264
+ https://github.com/KnapsackPro/knapsack/issues/30
189
265
 
190
- https://github.com/ArturT/knapsack/compare/v1.5.1...v1.6.0
266
+ https://github.com/KnapsackPro/knapsack/compare/v1.5.1...v1.6.0
191
267
 
192
268
  ### 1.5.1
193
269
 
194
270
  * Add link to FAQ at the end of time offset warning
195
271
 
196
- https://github.com/ArturT/knapsack/compare/v1.5.0...v1.5.1
272
+ https://github.com/KnapsackPro/knapsack/compare/v1.5.0...v1.5.1
197
273
 
198
274
  ### 1.5.0
199
275
 
200
276
  * Add support for snap-ci.com
201
277
 
202
- https://github.com/ArturT/knapsack/compare/v1.4.1...v1.5.0
278
+ https://github.com/KnapsackPro/knapsack/compare/v1.4.1...v1.5.0
203
279
 
204
280
  ### 1.4.1
205
281
 
206
- * Update test file pattern in tests also. Related PR https://github.com/ArturT/knapsack/pull/27
282
+ * Update test file pattern in tests also. Related PR https://github.com/KnapsackPro/knapsack/pull/27
207
283
  * Ensure there are no duplicates in leftover tests because of new test file pattern
208
284
 
209
- https://github.com/ArturT/knapsack/compare/v1.4.0...v1.4.1
285
+ https://github.com/KnapsackPro/knapsack/compare/v1.4.0...v1.4.1
210
286
 
211
287
  ### 1.4.0
212
288
 
213
289
  * Rename RspecAdapter to RSpecAdapter so that it is consistent
214
290
 
215
- https://github.com/ArturT/knapsack/pull/28
291
+ https://github.com/KnapsackPro/knapsack/pull/28
216
292
 
217
293
  * Change file path patterns to support 1-level symlinks by default
218
294
 
219
- https://github.com/ArturT/knapsack/pull/27
295
+ https://github.com/KnapsackPro/knapsack/pull/27
220
296
 
221
- https://github.com/ArturT/knapsack/compare/v1.3.4...v1.4.0
297
+ https://github.com/KnapsackPro/knapsack/compare/v1.3.4...v1.4.0
222
298
 
223
299
  ### 1.3.4
224
300
 
225
301
  * Make knapsack backwards compatible with earlier version of minitest
226
302
 
227
- https://github.com/ArturT/knapsack/pull/26
303
+ https://github.com/KnapsackPro/knapsack/pull/26
228
304
 
229
- https://github.com/ArturT/knapsack/compare/v1.3.3...v1.3.4
305
+ https://github.com/KnapsackPro/knapsack/compare/v1.3.3...v1.3.4
230
306
 
231
307
  ### 1.3.3
232
308
 
233
309
  * Fix wrong dependency for timecop
234
310
 
235
- https://github.com/ArturT/knapsack/compare/v1.3.2...v1.3.3
311
+ https://github.com/KnapsackPro/knapsack/compare/v1.3.2...v1.3.3
236
312
 
237
313
  ### 1.3.2
238
314
 
239
315
  * Use Timecop as dependency and always use Time.now_without_mock_time to avoid problem when someone did stub on Time without using Timecop.
240
316
  * Don't exit on successful RSpec and Cucumber runs
241
317
 
242
- https://github.com/ArturT/knapsack/pull/25
318
+ https://github.com/KnapsackPro/knapsack/pull/25
243
319
 
244
- https://github.com/ArturT/knapsack/compare/v1.3.1...v1.3.2
320
+ https://github.com/KnapsackPro/knapsack/compare/v1.3.1...v1.3.2
245
321
 
246
322
  ### 1.3.1
247
323
 
248
324
  * Treat KNAPSACK_GENERATE_REPORT=false as generate_report -> false
249
325
 
250
- https://github.com/ArturT/knapsack/pull/22
326
+ https://github.com/KnapsackPro/knapsack/pull/22
251
327
 
252
- https://github.com/ArturT/knapsack/compare/v1.3.0...v1.3.1
328
+ https://github.com/KnapsackPro/knapsack/compare/v1.3.0...v1.3.1
253
329
 
254
330
  ### 1.3.0
255
331
 
256
332
  * Add knapsack binary
257
333
 
258
- https://github.com/ArturT/knapsack/pull/21
334
+ https://github.com/KnapsackPro/knapsack/pull/21
259
335
 
260
- https://github.com/ArturT/knapsack/compare/v1.2.1...v1.3.0
336
+ https://github.com/KnapsackPro/knapsack/compare/v1.2.1...v1.3.0
261
337
 
262
338
  ### 1.2.1
263
339
 
264
340
  * Add support for Turnip features
265
341
 
266
- https://github.com/ArturT/knapsack/pull/19
342
+ https://github.com/KnapsackPro/knapsack/pull/19
267
343
 
268
- https://github.com/ArturT/knapsack/compare/v1.2.0...v1.2.1
344
+ https://github.com/KnapsackPro/knapsack/compare/v1.2.0...v1.2.1
269
345
 
270
346
  ### 1.2.0
271
347
 
272
348
  * Add minitest adapter.
273
349
  * Fix bug with missing global time execution when tests took less than second.
274
350
 
275
- https://github.com/ArturT/knapsack/compare/v1.1.1...v1.2.0
351
+ https://github.com/KnapsackPro/knapsack/compare/v1.1.1...v1.2.0
276
352
 
277
353
  ### 1.1.1
278
354
 
279
355
  * Use `system` instead of `exec` in rake tasks so we can return exit code from command.
280
356
 
281
- https://github.com/ArturT/knapsack/compare/v1.1.0...v1.1.1
357
+ https://github.com/KnapsackPro/knapsack/compare/v1.1.0...v1.1.1
282
358
 
283
359
  ### 1.1.0
284
360
 
@@ -288,15 +364,15 @@ https://github.com/ArturT/knapsack/compare/v1.1.0...v1.1.1
288
364
 
289
365
  * Pull request #12 - Raise error when CI_NODE_INDEX >= CI_NODE_TOTAL
290
366
 
291
- https://github.com/ArturT/knapsack/pull/12
367
+ https://github.com/KnapsackPro/knapsack/pull/12
292
368
 
293
369
  ### 1.0.3
294
370
 
295
371
  * Fix bug #11 - Track properly time when using Timecop gem in tests.
296
372
 
297
- https://github.com/ArturT/knapsack/issues/11
373
+ https://github.com/KnapsackPro/knapsack/issues/11
298
374
 
299
- https://github.com/ArturT/knapsack/issues/9
375
+ https://github.com/KnapsackPro/knapsack/issues/9
300
376
 
301
377
  ### 1.0.2
302
378