You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+11-10Lines changed: 11 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,32 +8,33 @@ A clear and concise description of what the pull request does.
8
8
9
9
**What kind of change does this PR introduce?** (check at least one)
10
10
11
-
-[ ] Bugfix
12
-
-[ ] Feature
13
-
-[ ] Enhancement
14
-
-[ ] ARIA accessibility
15
-
-[ ] Documentation update
11
+
-[ ] Bugfix (fixes a boo-boo in the code) - `fix(...)`, requires a patch version update
12
+
-[ ] Feature (adds a new feature to BootstrapVue) - `feat(...)`, requires a minor version update
13
+
-[ ] Enhancement (augments an existing feature) - `feat(...)`, requires a minor version update
14
+
-[ ] ARIA accessibility (fixes or improves ARIA accessibility) - `fix(...)`, requires a patch or minor version update
15
+
-[ ] Documentation update (improves documentation or typo fixes) - `chore(docs)`, requires a patch version update
16
16
-[ ] Other (please describe)
17
17
18
18
**Does this PR introduce a breaking change?** (check one)
19
19
20
20
-[ ] No
21
-
-[ ] Yes (please describe)
21
+
-[ ] Yes (please describe since breaking changes require a minor version update)
22
22
23
23
**The PR fulfills these requirements:**
24
24
25
25
-[ ] It's submitted to the `dev` branch, **not** the `master` branch
26
26
-[ ] When resolving a specific issue, it's referenced in the PR's title (i.e. `[...] (fixes #xxx[,#xxx])`, where "xxx" is the issue number)
27
27
-[ ] It should address only one issue or feature. If adding multiple features or fixing a bug and adding a new feature, break them into separate PRs if at all possible.
28
-
-[ ] The title should follow the [**Conventional Commits**](https://www.conventionalcommits.org/) naming convention (i.e. `fix(alert): not alerting during SSR render`, `docs(badge): update pill examples`, `chore(docs): fix typo in README`, etc). **This is very important, as the `CHANGELOG` is generated from these messages.**
28
+
-[ ] The title should follow the [**Conventional Commits**](https://www.conventionalcommits.org/) naming convention (i.e. `fix(alert): not alerting during SSR render`, `docs(badge): update pill examples`, `chore(docs): fix typo in README`, etc). **This is very important, as the `CHANGELOG` is generated from these messages, and determines the next version type (patch or minor).**
29
29
30
30
**If new features/enhancement/fixes are added or changed:**
31
31
32
-
-[ ] Includes documentation updates (including updating the component's `package.json` for slot and event changes)
32
+
-[ ] Includes documentation updates
33
+
-[ ] Includes component package.json meta section updates (prop, slot and event changes/updates)
33
34
-[ ] Includes any needed TypeScript declaration file updates
34
-
-[ ] New/updated tests are included and passing (if required)
35
+
-[ ] New/updated tests are included and passing (required for new features and enhancements)
35
36
-[ ] Existing test suites are passing
36
-
-[ ] CodeCov for patch has met target
37
+
-[ ] CodeCov for patch has met target (all changes/updates have been tested)
37
38
-[ ] The changes have not impacted the functionality of other components or directives
38
39
-[ ] ARIA Accessibility has been taken into consideration (Does it affect screen reader users or keyboard only users? Clickable items should be in the tab index, etc.)
0 commit comments