Skip to content
This repository was archived by the owner on Jan 26, 2024. It is now read-only.

Commit 1d15f15

Browse files
committed
Merge branch 'master' into hotfix/v1.8.4
2 parents 29bd8ed + 7fdbf45 commit 1d15f15

File tree

7 files changed

+180
-34
lines changed

7 files changed

+180
-34
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,44 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4+
labels: bug
45

56
---
67

78
## Current behavior
89
<!-- Describe the current behavior pointing exactly why it's not working as intended. -->
910

11+
12+
1013
## Expected behavior
1114
<!-- Describe what the desired behavior should be. -->
1215

16+
17+
1318
## Steps to reproduce the issue
1419
<!--
1520
Please provide the steps to reproduce and if possible a *minimal reproducible example* of the problem via
1621
https://stackblitz.com or with a screenshot if it's more accurate.
1722
-->
1823

24+
25+
1926
## Repository
2027
<!-- If possible, share a repository link where this problem occurs -->
2128

29+
30+
2231
# Can you handle fixing this bug by yourself?
23-
<!--
24-
If you can handle fixing this bug by yourself and later propose a Pull Request with the solution please answer YES. otherwise answer NO.
25-
-->
32+
33+
- [ ] YES
34+
- [ ] NO
35+
36+
# Which [Release Cycle](https://docs.vuestorefront.io/guide/basics/release-cycle.html) state this refers to? Info for developer.
37+
Pick one option.
38+
39+
- [ ] This is a bug report for test version on https://test.storefrontcloud.io - In this case Developer should create branch from `develop` branch and create Pull Request `2. Feature / Improvement` back to `develop`.
40+
- [ ] This is a bug report for current Release Candidate version on https://next.storefrontcloud.io - In this case Developer should create branch from `release` branch and create Pull Request `3. Stabilisation fix` back to `release`.
41+
- [ ] This is a bug report for current Stable version on https://demo.storefrontcloud.io and should be placed in next stable version hotfix - In this case Developer should create branch from `hotfix` or `master` branch and create Pull Request `4. Hotfix` back to `hotfix`.
2642

2743
## Environment details
2844
<!-- Please provide all the informations required below. -->
@@ -33,3 +49,4 @@ If you can handle fixing this bug by yourself and later propose a Pull Request w
3349

3450
## Additional information
3551
<!-- If you think that any additional information would be useful, please provide them here. -->
52+

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,24 @@ about: Suggest an idea for this project
88
<!-- Describe the motivation or the concrete use case for new feature or why one of current ones should be enhanced. -->
99

1010

11+
1112
## What are the acceptance criteria
1213
<!-- List the acceptance criteria for this task in a form of a list. -->
13-
- ...
14-
- ...
14+
15+
- [ ]
1516

1617
# Can you complete this feature request by yourself?
17-
<!--
18-
If you can handle the development of this feature request and later propose a Pull Request with the solution please answer YES. otherwise answer NO.
19-
-->
18+
19+
- [ ] YES
20+
- [ ] NO
21+
22+
# Which [Release Cycle](https://docs.vuestorefront.io/guide/basics/release-cycle.html) state this refers to? Info for developer.
23+
Pick one option.
24+
25+
- [x] This is a normal feature request. This should be available on https://test.storefrontcloud.io and then after tests this can be added to next Vue Storefront version. In this case Developer should create branch from `develop` branch and create Pull Request `2. Feature / Improvement` back to `develop`.
26+
- [ ] (**Pick this option only if you're sure**) This is an important improvement request for current Release Candidate version on https://next.storefrontcloud.io and should be placed in next RC version. In this case Developer should create branch from `release` branch and create Pull Request `3. Stabilisation fix` back to `release`.
27+
- [ ] (**Pick this option only if you're sure**) This is a critical improvement request for current Stable version on https://demo.storefrontcloud.io and should be placed in next stable version. In this case Developer should create branch from `hotfix` or `master` branch and create Pull Request `4. Hotfix` back to `hotfix`.
2028

2129
## Additional information
2230
<!-- If you think that any additional information would be useful please provide them here. -->
31+

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: 2. Feature / Improvement
3+
about: New feature or some improvements to current develop version (https://test.storefrontcloud.io). This is for branches created from `develop` branch and should be merged back into `develop`.
4+
5+
---
6+
7+
This is a feature or improvement for current test version on https://test.storefrontcloud.io
8+
9+
### Related issues
10+
<!-- Put related issue number. -->
11+
12+
closes #
13+
14+
### Short description and why it's useful
15+
<!-- describe in a few words what is this Pull Request changing and why it's useful -->
16+
17+
18+
19+
### Screenshots of visual changes before/after (if there are any)
20+
<!-- if you made any changes in the UI layer please provide before/after screenshots -->
21+
22+
23+
24+
### PR status check
25+
This is a feature or improvement PR for current test version. In case of any doubts please read about [Release Cycle](https://docs.vuestorefront.io/guide/basics/release-cycle.html)
26+
27+
- [ ] I've created this branch from `develop` branch and want to merge it back to `develop`
28+
29+
### Upgrade Notes and Changelog
30+
31+
- [x] No upgrade steps required (100% backward compatibility and no breaking changes)
32+
- [ ] I've updated the [Upgrade notes](https://github.com/DivanteLtd/vue-storefront/blob/develop/doc/Upgrade%20notes.md) and [Changelog](https://github.com/DivanteLtd/vue-storefront/blob/develop/CHANGELOG.md) on how to port existing VS sites with this new feature
33+
34+
**IMPORTANT NOTICE** - PR needs to have all checks to be merged in (except braking changes check).
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
name: 1. First PR for Vue Storefront
3+
about: Is it your first PR for Vue Storefront and you're not sure what to pick? No worries, we got you covered! Pick this template.
4+
5+
---
6+
7+
This is my first PR for storefront or i'm not sure which other PR should i choose.
8+
<!-- If that's correct then just go along with this template. You can click 'preview' above to see how it will be shown at the end -->
9+
10+
### Related issues
11+
<!-- Put related issue number which this PR is closing. For example #123 -->
12+
13+
closes #
14+
15+
### Short description and why it's useful
16+
<!-- describe in a few words what is this Pull Request changing and why it's useful -->
17+
18+
19+
20+
### Screenshots of visual changes before/after (if there are any)
21+
<!-- if you made any changes in the UI layer please provide before/after screenshots -->
22+
23+
### Which environment this relates to
24+
Check your case. In case of any doubts please read about [Release Cycle](https://docs.vuestorefront.io/guide/basics/release-cycle.html)
25+
26+
- [ ] Test version (https://test.storefrontcloud.io) - this is a new feature or improvement for Vue Storefront. I've created branch from `develop` branch and want to merge it back to `develop`
27+
- [ ] RC version (https://next.storefrontcloud.io) - this is a stabilisation fix for Release Candidate of Vue Storefront. I've created branch from `release` branch and want to merge it back to `release`
28+
- [ ] Stable version (https://demo.storefrontcloud.io) - this is an important fix for current stable version. I've created branch from `hotfix` or `master` branch and want to merge it back to `hotfix`
29+
30+
### Upgrade Notes and Changelog
31+
32+
- [x] No upgrade steps required (100% backward compatibility and no breaking changes)
33+
- [ ] I've updated the [Upgrade notes](https://github.com/DivanteLtd/vue-storefront/blob/develop/doc/Upgrade%20notes.md) and [Changelog](https://github.com/DivanteLtd/vue-storefront/blob/develop/CHANGELOG.md) on how to port existing VS sites with this new feature
34+
35+
**IMPORTANT NOTICE** - Remember to update `CHANGELOG.md` with description of your change
36+
37+
### Contribution and currently important rules acceptance
38+
<!-- Please get familiar with following info -->
39+
40+
- [ ] I read and followed [contribution rules](https://github.com/DivanteLtd/vue-storefront/blob/master/CONTRIBUTING.md)
41+
- [ ] I read the [TypeScript Action Plan](https://github.com/DivanteLtd/vue-storefront/blob/master/doc/TypeScript%20Action%20Plan.md) and adjusted my PR according to it
42+
- [ ] I read about [Vue Storefront Modules](https://github.com/DivanteLtd/vue-storefront/blob/master/doc/api-modules/about-modules.md) and I am aware that every new feature should be a module
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: 4. Hotfix
3+
about: Bugfix for current stable version (https://demo.storefrontcloud.io). This is for branches created from `hotfix` or `master` branch and should be merged back into `hotfix`.
4+
5+
---
6+
7+
This is a bugfix for current stable version on https://demo.storefrontcloud.io
8+
9+
### Related issues
10+
<!-- Put related issue number. -->
11+
12+
closes #
13+
14+
### Short description and why it's useful
15+
<!-- describe in a few words what is this Pull Request changing and why it's useful -->
16+
17+
18+
19+
### Screenshots of visual changes before/after (if there are any)
20+
<!-- if you made any changes in the UI layer please provide before/after screenshots -->
21+
22+
23+
24+
### PR status check
25+
This is hotfix PR, it means that it contain fix for current stable version. In case of any doubts please read about [Release Cycle](https://docs.vuestorefront.io/guide/basics/release-cycle.html)
26+
27+
- [ ] I've created this branch from `master` or `hotfix` branch
28+
- [ ] I want to merge this PR into `hotfix` branch
29+
30+
### Upgrade Notes and Changelog
31+
32+
- [x] No upgrade steps required (100% backward compatibility and no breaking changes)
33+
- [ ] I've updated the [Upgrade notes](https://github.com/DivanteLtd/vue-storefront/blob/develop/doc/Upgrade%20notes.md) and [Changelog](https://github.com/DivanteLtd/vue-storefront/blob/develop/CHANGELOG.md) on how to port existing VS sites with this new feature
34+
35+
**IMPORTANT NOTICE** - PR needs to have all checks to be merged in.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: 3. Stabilisation fix
3+
about: Fix for current Release Candidate version (https://next.storefrontcloud.io). This is for branches created from `release` branch and should be merged back into `release`.
4+
5+
---
6+
7+
This is a stabilisation fix for current Release Candidate version on https://next.storefrontcloud.io
8+
9+
### Related issues
10+
<!-- Put related issue number. -->
11+
12+
closes #
13+
14+
### Short description and why it's useful
15+
<!-- describe in a few words what is this Pull Request changing and why it's useful -->
16+
17+
18+
19+
### Screenshots of visual changes before/after (if there are any)
20+
<!-- if you made any changes in the UI layer please provide before/after screenshots -->
21+
22+
23+
24+
### PR status check
25+
This is Release Candidate stabilisation PR, it means that it contain fix for current RC version. In case of any doubts please read about [Release Cycle](https://docs.vuestorefront.io/guide/basics/release-cycle.html)
26+
27+
- [ ] I've created this branch from `release` branch
28+
- [ ] I want to merge this PR into `release` branch
29+
30+
### Upgrade Notes and Changelog
31+
32+
- [x] No upgrade steps required (100% backward compatibility and no breaking changes)
33+
- [ ] I've updated the [Upgrade notes](https://github.com/DivanteLtd/vue-storefront/blob/develop/doc/Upgrade%20notes.md) and [Changelog](https://github.com/DivanteLtd/vue-storefront/blob/develop/CHANGELOG.md) on how to port existing VS sites with this new feature
34+
35+
**IMPORTANT NOTICE** - PR needs to have all checks to be merged in.

0 commit comments

Comments
 (0)