knapsack_pro 7.4.0 → 7.5.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 +4 -4
- data/.github/pull_request_template.md +1 -0
- data/CHANGELOG.md +15 -0
- data/README.md +4 -19
- data/lib/knapsack_pro/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1c0358e24e8030869e858b896df6bbb3188433fcd973e073e773e6f6735b481a
|
|
4
|
+
data.tar.gz: 33c9a7233e1fc1c14450d3e72eea10568bbab8dd37c90df93db37253db78b8b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43966d1dc8df454ede86e53226927e43f7d622e7605a04b1eb6331ca33e8e1c5e5ab7ba3e1ed9e9616088bd729cf95baf5aa28503ab36062828869ef5d5a8943
|
|
7
|
+
data.tar.gz: f1ace143ed62bbbb8d210470990cbf44baeef4473c23d5a303ad28fbf9aa8708ad04c95f920639af588406a7541542c2db8a04db7021c7144a583cc6c120ba41
|
|
@@ -16,6 +16,7 @@ TODO: changes introduced by this PR
|
|
|
16
16
|
|
|
17
17
|
# Checklist reminder
|
|
18
18
|
|
|
19
|
+
- [ ] You added the changes to the `UNRELEASED` section of the `CHANGELOG.md`, including the needed bump (ie, patch, minor, major)
|
|
19
20
|
- [ ] You follow the architecture outlined below for RSpec in Queue Mode, which is a work in progress (feel free to propose changes):
|
|
20
21
|
- Pure: `lib/knapsack_pro/pure/queue/rspec_pure.rb` contains pure functions that are unit tested.
|
|
21
22
|
- Extension: `lib/knapsack_pro/extensions/rspec_extension.rb` encapsulates calls to RSpec internals and is integration and e2e tested.
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### UNRELEASED
|
|
4
|
+
|
|
5
|
+
### 7.5.1
|
|
6
|
+
|
|
7
|
+
Revert to 7.4.0.
|
|
8
|
+
|
|
9
|
+
### 7.5.0
|
|
10
|
+
|
|
11
|
+
* Raise when `KNAPSACK_PRO_CI_NODE_TOTAL` or `KNAPSACK_PRO_CI_NODE_INDEX` is missing and can't be determined from supported CI environments, instead of defaulting to arbitrary numbers.
|
|
12
|
+
|
|
13
|
+
https://github.com/KnapsackPro/knapsack_pro-ruby/pull/256
|
|
14
|
+
|
|
15
|
+
https://github.com/KnapsackPro/knapsack_pro-ruby/compare/v7.4.0...v7.5.0
|
|
16
|
+
|
|
3
17
|
### 7.4.0
|
|
18
|
+
|
|
4
19
|
* Warn when `KNAPSACK_PRO_*` environment variables are set manually if their values could be automatically determined from supported CI environments.
|
|
5
20
|
|
|
6
21
|
https://github.com/KnapsackPro/knapsack_pro-ruby/pull/254
|
data/README.md
CHANGED
|
@@ -74,28 +74,13 @@ Scripted tests can be found in the [Rails App With Knapsack Pro repository](http
|
|
|
74
74
|
|
|
75
75
|
### Publishing
|
|
76
76
|
|
|
77
|
-
1.
|
|
77
|
+
1. Move the changes listed in the `UNRELEASED` section of the `CHANGELOG.md` to the proper version
|
|
78
78
|
|
|
79
|
-
2.
|
|
79
|
+
2. Update the gem version in `lib/knapsack_pro/version.rb`
|
|
80
80
|
|
|
81
|
-
|
|
82
|
-
git commit -m "Bump version X.X.X"
|
|
83
|
-
git push origin master
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
3. Create a git tag for the release:
|
|
81
|
+
3. `git commit -am "chore: prepare release"`
|
|
87
82
|
|
|
88
|
-
|
|
89
|
-
git tag -a vX.X.X -m "Release vX.X.X"
|
|
90
|
-
git push --tags
|
|
91
|
-
```
|
|
92
|
-
|
|
93
|
-
4. Build the gem and publish it to RubyGems:
|
|
94
|
-
|
|
95
|
-
```bash
|
|
96
|
-
gem build knapsack_pro.gemspec
|
|
97
|
-
gem push knapsack_pro-X.X.X.gem
|
|
98
|
-
```
|
|
83
|
+
4. Build, tag, push, release: `bundle exec rake release`
|
|
99
84
|
|
|
100
85
|
5. Update the latest available gem version in `TestSuiteClientVersionChecker` for the Knapsack Pro API repository.
|
|
101
86
|
|
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: 7.
|
|
4
|
+
version: 7.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ArturT
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-05-
|
|
11
|
+
date: 2024-05-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -415,7 +415,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
415
415
|
- !ruby/object:Gem::Version
|
|
416
416
|
version: '0'
|
|
417
417
|
requirements: []
|
|
418
|
-
rubygems_version: 3.
|
|
418
|
+
rubygems_version: 3.4.10
|
|
419
419
|
signing_key:
|
|
420
420
|
specification_version: 4
|
|
421
421
|
summary: Knapsack Pro splits tests across parallel CI nodes and ensures each parallel
|