@uuv/runner-commons 1.6.4 → 1.6.5
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.
- package/CHANGELOG.md +2 -0
- package/CONTRIBUTING.md +7 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
## [1.6.5](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v1.6.4...runner-commons-v1.6.5) (2023-08-31)
|
|
2
|
+
|
|
1
3
|
## [1.6.4](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v1.6.3...runner-commons-v1.6.4) (2023-08-25)
|
|
2
4
|
|
|
3
5
|
## [1.6.3](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v1.6.2...runner-commons-v1.6.3) (2023-08-22)
|
package/CONTRIBUTING.md
CHANGED
|
@@ -70,11 +70,10 @@ Git commits in _UUV_ shall be:
|
|
|
70
70
|
|
|
71
71
|
1. **atomic** (1 commit `=` 1 and only 1 _thing_),
|
|
72
72
|
2. **semantic** (using [semantic-release commit message syntax](https://semantic-release.gitbook.io/semantic-release/#commit-message-format)).
|
|
73
|
-
3. **pattern**
|
|
74
|
-
- **SCOPE
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
```
|
|
73
|
+
3. **pattern**
|
|
74
|
+
- **SCOPE**: one of (build, chore, ci, docs, feat, fix, perf, refactor, revert, style, test, release)
|
|
75
|
+
- **PACKAGE** _(optional)_: one of (assistant, assistant-electron, docs, intellij-plugin, runner-commons, runner-cypress, runner-playwright)
|
|
76
|
+
- **Pattern**: SCOPE(PACKAGE): commit message, #issue_identifier
|
|
77
|
+
- ```bash
|
|
78
|
+
perf(runner-cypress): optimize bdd request, #51
|
|
79
|
+
```
|
package/package.json
CHANGED