Skip to content

Commit

Permalink
chore: renovate semantic types and percy ci updates (#25651)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyrohrbough committed Feb 1, 2023
1 parent 92a07c6 commit dbc69b4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
4 changes: 2 additions & 2 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ _Released 01/31/2023_

- Fixed an issue where alternative Microsoft Edge Beta, Canary, and Dev binary versions were not being discovered by Cypress. Fixes [#25455](https://github.com/cypress-io/cypress/issues/25455).

<!-- **Dependency Updates:** // this was committed with 'fix' instead of 'dependency' -->
**Dependency Updates:**

- Upgraded [`underscore.string`](https://github.com/esamattis/underscore.string/blob/HEAD/CHANGELOG.markdown) from `3.3.5` to `3.3.6` to reference rebuilt assets after security patch to fix regular expression DDOS exploit. Fixed in [#25574](https://github.com/cypress-io/cypress/pull/25574).
- Upgraded [`underscore.string`](https://github.com/esamattis/underscore.string/blob/HEAD/CHANGELOG.markdown) from `3.3.5` to `3.3.6` to reference rebuilt assets after security patch to fix regular expression DDOS exploit. Addressed in [#25574](https://github.com/cypress-io/cypress/pull/25574).

## 12.4.1

Expand Down
19 changes: 17 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": [
"config:base"
],
"automerge": true,
"automerge": false,
"major": {
"automerge": false
},
Expand All @@ -23,5 +23,20 @@
"schedule": [
"before 3am on the first day of the month"
],
"dependencyDashboardApproval": true
"dependencyDashboardApproval": true,
"packageRules": [
{
"matchPackagePatterns": [
"*"
],
"semanticCommitType": "chore"
},
{
"matchDepTypes": [
"dependencies",
"require"
],
"semanticCommitType": "dependency"
}
]
}
6 changes: 1 addition & 5 deletions scripts/wait-on-circle-jobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ const jobName = process.env.CIRCLE_JOB || 'wait-on-circle-jobs'

const workflowId = process.env.CIRCLE_WORKFLOW_ID

const branchesToAlwaysFinalize = ['develop']

const requireAllJobsToPass = !branchesToAlwaysFinalize.includes(process.env.CIRCLE_BRANCH)

const getAuth = () => `${process.env.CIRCLE_TOKEN}:`

const verifyCI = () => {
Expand Down Expand Up @@ -86,7 +82,7 @@ const waitForAllJobs = async (jobNames, workflowId) => {
const runningJobNames = _.map(runningJobs, 'name')
const failedJobNames = _.map(failedJobs, 'name')

if (requireAllJobsToPass && _.intersection(jobNames, failedJobNames).length) {
if (_.intersection(jobNames, failedJobNames).length) {
console.error('At least one failing job has prevented percy-finalize from running', failedJobs)
process.exit(1)
}
Expand Down

5 comments on commit dbc69b4

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on dbc69b4 Feb 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.5.1/linux-x64/develop-dbc69b47b5a9826da308fd9d156f16a392bad38c/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on dbc69b4 Feb 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.5.1/linux-arm64/develop-dbc69b47b5a9826da308fd9d156f16a392bad38c/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on dbc69b4 Feb 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.5.1/darwin-arm64/develop-dbc69b47b5a9826da308fd9d156f16a392bad38c/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on dbc69b4 Feb 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.5.1/darwin-x64/develop-dbc69b47b5a9826da308fd9d156f16a392bad38c/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on dbc69b4 Feb 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the win32 x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.5.1/win32-x64/develop-dbc69b47b5a9826da308fd9d156f16a392bad38c/cypress.tgz

Please sign in to comment.