Skip to content

Commit

Permalink
chore: move entry for #26400 to fix changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
astone123 committed Aug 4, 2023
1 parent afe5a1f commit d5c964b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
<!-- See the ../guides/writing-the-cypress-changelog.md for details on writing the changelog. -->
## 12.17.4

_Released 08/15/2023 (PENDING)_

**Bugfixes:**
- Fixed an issue where having `cypress.config` in a nested directory would cause problems with locating the `component-index.html` file when using component testing. Fixes [#26400](https://github.com/cypress-io/cypress/issues/26400).

## 12.17.3

_Released 08/01/2023_
Expand All @@ -20,7 +27,6 @@ _Released 07/20/2023_
- Fixed an issue where commands would fail with the error `must only be invoked from the spec file or support file` if their arguments were mutated. Fixes [#27200](https://github.com/cypress-io/cypress/issues/27200).
- Fixed an issue where `cy.writeFile()` would erroneously fail with the error `cy.writeFile() must only be invoked from the spec file or support file`. Fixes [#27097](https://github.com/cypress-io/cypress/issues/27097).
- Fixed an issue where web workers could not be created within a spec. Fixes [#27298](https://github.com/cypress-io/cypress/issues/27298).
- Fixed an issue where having `cypress.config` in a nested directory would cause problems with locating the `component-index.html` file when using component testing. Fixes [#26400](https://github.com/cypress-io/cypress/issues/26400).

## 12.17.1

Expand Down
2 changes: 1 addition & 1 deletion scripts/semantic-commits/get-binary-release-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const getReleaseData = async (latestReleaseInfo) => {
pull_number: ref.issue,
})

const associatedIssues = getLinkedIssues(pullRequest.body)
const associatedIssues = pullRequest.body ? getLinkedIssues(pullRequest.body) : []

commits.push({
commitMessage: semanticResult.header,
Expand Down

0 comments on commit d5c964b

Please sign in to comment.