@uuv/runner-commons 2.3.0 → 2.4.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [2.4.1](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.4.0...runner-commons-v2.4.1) (2024-01-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **a11y:** update dependency @testing-library/dom to v9.3.4 ([368b6b4](https://github.com/Orange-OpenSource/uuv/commit/368b6b4210f83d2da7695a0bfedd8ac593df171a))
|
|
7
|
+
* **assistant:** fix assistant and enable uuv test for assistant, [#437](https://github.com/Orange-OpenSource/uuv/issues/437) ([da82e1b](https://github.com/Orange-OpenSource/uuv/commit/da82e1b588a391eb24573ac8c3f2db18cfdbf5a5))
|
|
8
|
+
* **deps:** update dependency @easyops-cn/docusaurus-search-local to v0.40.1 ([d5ed3d7](https://github.com/Orange-OpenSource/uuv/commit/d5ed3d75f44e2b83af81fcd7227521dea00371e6))
|
|
9
|
+
|
|
10
|
+
## [2.4.0](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.3.0...runner-commons-v2.4.0) (2024-01-11)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **a11y:** add a contains sentence for a11y rgaa, [#424](https://github.com/Orange-OpenSource/uuv/issues/424) ([297cc33](https://github.com/Orange-OpenSource/uuv/commit/297cc3378798d1eb9c973a2038423ae6f874f70f))
|
|
16
|
+
|
|
1
17
|
## [2.3.0](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.2.0...runner-commons-v2.3.0) (2024-01-08)
|
|
2
18
|
|
|
3
19
|
|
package/CONTRIBUTING.md
CHANGED
|
@@ -1,79 +1,6 @@
|
|
|
1
1
|
# Contributors guide
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
We try to make it easy, and all contributions, even the smaller ones, are more than welcome.
|
|
5
|
-
This includes bug reports, fixes, documentation, examples...
|
|
6
|
-
But first, read this page (including the small print at the end).
|
|
3
|
+
First, read the general [CONTRIBUTING](../../CONTRIBUTING.md) file
|
|
7
4
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
## Legal
|
|
11
|
-
|
|
12
|
-
All original contributions to _UUV_ are licensed under the
|
|
13
|
-
[MIT License, Version 2.0](https://spdx.org/licenses/MIT.html),
|
|
14
|
-
|
|
15
|
-
All contributions are subject to the [Developer Certificate of Origin](https://developercertificate.org/) (DCO).
|
|
16
|
-
The DCO is a lightweight way for contributors to certify that they wrote or otherwise have the right to submit the code they are contributing to the project.
|
|
17
|
-
The DCO text is also included verbatim in the [DCO.txt](DCO.txt) file in the root directory of the repository.
|
|
18
|
-
|
|
19
|
-
Contributors **must** _sign-off_ that they adhere to these requirements by adding a `Signed-off-by` line to commit messages, as shown below:
|
|
20
|
-
|
|
21
|
-
```text
|
|
22
|
-
This is the commit message
|
|
23
|
-
|
|
24
|
-
Signed-off-by: Joe Dev <joe.dev@developer.example.org>
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
Git has a handy [`-s` command line option](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff) to append this automatically to your commit message:
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
$ git commit -s -m 'This is the commit message'
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## Reporting an issue
|
|
34
|
-
|
|
35
|
-
This project uses Github issues to manage the issues.
|
|
36
|
-
|
|
37
|
-
Before creating an issue:
|
|
38
|
-
|
|
39
|
-
1. upgrade your project to the latest released template version, and check whether your bug is still present,
|
|
40
|
-
2. have a look in the opened issues if your problem is already known/tracked, and possibly contribute to the thread with your own information.
|
|
41
|
-
|
|
42
|
-
If none of the above was met, open an issue directly in Github, select the appropriate issue template and fill-in each section when applicable.
|
|
43
|
-
|
|
44
|
-
## Submitting a code change
|
|
45
|
-
|
|
46
|
-
### Git Setup
|
|
47
|
-
|
|
48
|
-
Before contributing, make sure you have set up your Git authorship correctly:
|
|
49
|
-
|
|
50
|
-
```bash
|
|
51
|
-
git config --global user.name "Your Full Name"
|
|
52
|
-
git config --global user.email your.email@example.com
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
### Workflow
|
|
56
|
-
|
|
57
|
-
All submissions, including submissions by project members, need to be reviewed before being merged.
|
|
58
|
-
|
|
59
|
-
To contribute:
|
|
60
|
-
|
|
61
|
-
1. Create an issue describing the bug or enhancement you want to propose (select the right issue template).
|
|
62
|
-
2. Make sure the issue has been reviewed and agreed.
|
|
63
|
-
3. Create a Merge Request, from your **own** fork (see [forking workflow](https://docs.github.com/en/get-started/quickstart/fork-a-repo) documentation).
|
|
64
|
-
Don't hesitate to mark your MR as `Draft` as long as you think it's not ready to be reviewed.
|
|
65
|
-
|
|
66
|
-
### Git Commit Conventions
|
|
67
|
-
|
|
68
|
-
In addition to being signed-off according the [Developer Certificate of Origin](https://developercertificate.org/) (see above),
|
|
69
|
-
Git commits in _UUV_ shall be:
|
|
70
|
-
|
|
71
|
-
1. **atomic** (1 commit `=` 1 and only 1 _thing_),
|
|
72
|
-
2. **semantic** (using [semantic-release commit message syntax](https://semantic-release.gitbook.io/semantic-release/#commit-message-format)).
|
|
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
|
-
```
|
|
5
|
+
## How Contribue to @uuv/runner-commons ?
|
|
6
|
+
TODO
|
|
@@ -221,12 +221,17 @@
|
|
|
221
221
|
},
|
|
222
222
|
{
|
|
223
223
|
"key": "key.then.a11y.rgaa.default",
|
|
224
|
-
"description": "Check that the current page have no [accessibility issue](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/)
|
|
224
|
+
"description": "Check that the current page have no [accessibility issue](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/) based on RGAA standards",
|
|
225
225
|
"wording": "I should not have any rgaa accessibility issue"
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
228
|
"key": "key.then.a11y.rgaa.defaultWithResult",
|
|
229
|
-
"description": "Check that the current page have the following [result](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/)
|
|
229
|
+
"description": "Check that the current page have the following [result](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/) based on RGAA standard",
|
|
230
230
|
"wording": "I should have the following result based on the rgaa reference"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"key": "key.then.a11y.rgaa.defaultWithResultContaining",
|
|
234
|
+
"description": "Check that the current page have the following partial [result](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/) based on RGAA standard",
|
|
235
|
+
"wording": "I should have the following partial result based on the rgaa reference"
|
|
231
236
|
}
|
|
232
237
|
]
|
package/package.json
CHANGED
|
@@ -221,12 +221,17 @@
|
|
|
221
221
|
},
|
|
222
222
|
{
|
|
223
223
|
"key": "key.then.a11y.rgaa.default",
|
|
224
|
-
"description": "Check that the current page have no [accessibility issue](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/)
|
|
224
|
+
"description": "Check that the current page have no [accessibility issue](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/) based on RGAA standards",
|
|
225
225
|
"wording": "I should not have any rgaa accessibility issue"
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
228
|
"key": "key.then.a11y.rgaa.defaultWithResult",
|
|
229
|
-
"description": "Check that the current page have the following [result](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/)
|
|
229
|
+
"description": "Check that the current page have the following [result](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/) based on RGAA standard",
|
|
230
230
|
"wording": "I should have the following result based on the rgaa reference"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"key": "key.then.a11y.rgaa.defaultWithResultContaining",
|
|
234
|
+
"description": "Check that the current page have the following partial [result](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/) based on RGAA standard",
|
|
235
|
+
"wording": "I should have the following partial result based on the rgaa reference"
|
|
231
236
|
}
|
|
232
237
|
]
|
|
@@ -221,12 +221,17 @@
|
|
|
221
221
|
},
|
|
222
222
|
{
|
|
223
223
|
"key": "key.then.a11y.rgaa.default",
|
|
224
|
-
"description": "Vérifie sur la page courante qu'il n'y a aucune [erreur de conformité d'accessibilité](https://
|
|
224
|
+
"description": "Vérifie sur la page courante qu'il n'y a aucune [erreur de conformité d'accessibilité](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests) avec un des référentiels : WCAG-WEB, RGAA et une des versions 4.1",
|
|
225
225
|
"wording": "je ne dois pas avoir de problèmes d'accessibilité rgaa"
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
228
|
"key": "key.then.a11y.rgaa.defaultWithResult",
|
|
229
|
-
"description": "Vérifie sur la page courante qu'il n'y a aucune [erreur de conformité d'accessibilité](https://
|
|
229
|
+
"description": "Vérifie sur la page courante qu'il n'y a aucune [erreur de conformité d'accessibilité](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests)",
|
|
230
230
|
"wording": "je dois avoir les résultats suivants selon le référentiel rgaa"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"key": "key.then.a11y.rgaa.defaultWithResultContaining",
|
|
234
|
+
"description": "Vérifie sur la page courante a les [résultats](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests) suivants avec le référentiel RGAA",
|
|
235
|
+
"wording": "je dois avoir les résultats partiels suivants selon le référentiel rgaa"
|
|
231
236
|
}
|
|
232
237
|
]
|