Skip to content

Commit c66c437

Browse files
committed
Merge branch 'feature-multidomain' into issue-16773-multidomain-overrides
2 parents 0cad3cf + 66d947d commit c66c437

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+3607
-1336
lines changed

.github/ISSUE_TEMPLATE/1-bug-report.md

Lines changed: 0 additions & 29 deletions
This file was deleted.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: "🐛 Bug report"
2+
description: Report a bug found while using Cypress.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Have a question? 👉 [Start a new discussion](https://github.com/cypress-io/cypress/discussions) or [ask in chat](https://on.cypress.io/discord).
8+
- type: textarea
9+
id: current-behavior
10+
attributes:
11+
label: Current behavior
12+
description: A description including screenshots, stack traces, DEBUG logs, etc. [Troubleshooting tips](https://on.cypress.io/troubleshooting).
13+
placeholder: Currently...
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: desired-behavior
18+
attributes:
19+
label: Desired behavior
20+
description: Remember, we're not familiar with the app you're testing, so please provide a clear description of what should happen.
21+
placeholder: In this situation, Cypress should...
22+
- type: textarea
23+
id: reproduction
24+
attributes:
25+
label: Test code to reproduce
26+
description: Provide a failing test or repo we can run. You can fork [this repo](https://github.com/cypress-io/cypress-test-tiny), set up a failing test, then link to your fork.
27+
placeholder: Here is my failing test code and the app code to run the tests on...
28+
validations:
29+
required: true
30+
- type: input
31+
id: version
32+
attributes:
33+
label: Cypress Version
34+
description: Run `cypress version` to see your current version. If possible, please update Cypress to the latest version first.
35+
placeholder: ex. 7.6.0
36+
validations:
37+
required: true
38+
- type: textarea
39+
id: othter
40+
attributes:
41+
label: Other
42+
placeholder: Any other details?

.github/ISSUE_TEMPLATE/2-install-issue.md

Lines changed: 0 additions & 42 deletions
This file was deleted.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: "⬇️ Issue during install"
2+
description: Report an issue while downloading Cypress.
3+
labels: ['topic: installation']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Have a question? 👉 [Start a new discussion](https://github.com/cypress-io/cypress/discussions) or [ask in chat](https://on.cypress.io/discord).
9+
10+
If you're behind a corporate proxy, make sure to [configure it properly](https://on.cypress.io/proxy-configuration) before install.
11+
- type: textarea
12+
id: current-behavior
13+
attributes:
14+
label: Current behavior
15+
description: A description including screenshots, stack traces, DEBUG logs, etc. [Troubleshooting tips](https://on.cypress.io/troubleshooting).
16+
placeholder: When I try to download Cypress...
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: debug-logs
21+
attributes:
22+
label: Debug logs
23+
description: Include DEBUG logs setting [`DEBUG=cypress:*`](https://on.cypress.io/troubleshooting#Print-DEBUG-logs/). Include npm/yarn logs if applicable.
24+
placeholder: Debug logs
25+
- type: input
26+
id: version
27+
attributes:
28+
label: Cypress Version
29+
description: The version you're trying to install
30+
placeholder: ex. 7.6.0
31+
validations:
32+
required: true
33+
- type: dropdown
34+
id: package-manager
35+
attributes:
36+
label: Package Manager
37+
options:
38+
- npm
39+
- yarn
40+
- Direct download
41+
- pnpm
42+
- other
43+
validations:
44+
required: true
45+
- type: dropdown
46+
id: operating-system
47+
attributes:
48+
label: Operating system
49+
options:
50+
- Linux
51+
- Mac
52+
- Windows
53+
- other
54+
validations:
55+
required: true
56+
- type: textarea
57+
id: othter
58+
attributes:
59+
label: Other
60+
placeholder: Any other details?

.github/ISSUE_TEMPLATE/3-feature.md

Lines changed: 0 additions & 19 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "✨ Feature"
2+
description: Suggest a feature or enhancement to improve Cypress.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Have a question? 👉 [Start a new discussion](https://github.com/cypress-io/cypress/discussions) or [ask in chat](https://on.cypress.io/discord).
8+
- type: textarea
9+
id: feature
10+
attributes:
11+
label: What would you like?
12+
description: A clear description of the feature or enhancement wanted in Cypress.
13+
placeholder: I'd like to be able to...
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: reason
18+
attributes:
19+
label: Why is this needed?
20+
description: Remember, we're not familiar with the app you're testing, so please provide a clear description of why this would be useful to your project.
21+
placeholder: I want this because...

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ contact_links:
33
- name: 🤔 Questions and Help
44
url: https://github.com/cypress-io/cypress/discussions
55
about: This issue tracker is not for support questions. Please refer to our Discussions.
6-
- name: 📊 Cypress Dashboard Feature
7-
url: https://portal.productboard.com/cypress-io/1-cypress-dashboard
8-
about: This issue tracker is not for requesting Cypress Dashboard features. Please express interest here.
6+
- name: 💬 Chat
7+
url: https://on.cypress.io/discord
8+
about: Want to discuss Cypress with others? Check out our chat.
99
- name: 📃 Documentation Issue
1010
url: https://github.com/cypress-io/cypress-documentation/issues/new
1111
about: This issue tracker is not for documentation issues. Please open documentation issues here.

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.16.0
1+
14.17.0

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ branches:
88
# https://www.appveyor.com/docs/lang/nodejs-iojs/
99
environment:
1010
# use matching version of Node.js
11-
nodejs_version: "14.16.0"
11+
nodejs_version: "14.17.0"
1212
# encode secure variables which will NOT be used
1313
# in pull requests
1414
# https://www.appveyor.com/docs/build-configuration/#secure-variables

browser-versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"chrome:beta": "92.0.4515.80",
2+
"chrome:beta": "92.0.4515.93",
33
"chrome:stable": "91.0.4472.114"
44
}

0 commit comments

Comments
 (0)