Skip to content

Commit

Permalink
release: updated version (#7980)
Browse files Browse the repository at this point in the history
<!--
Thank you for your contribution.

Before making a PR, please read our contributing guidelines at

https://github.com/DevExpress/testcafe/blob/master/CONTRIBUTING.md#code-contribution

We recommend creating a *draft* PR, so that you can mark it as 'ready
for review' when you are done.
-->
[closes DevExpress/testcafe-private#300]

## Purpose
_Describe the problem you want to address or the feature you want to
implement._

## Approach
_Describe how your changes address the issue or implement the desired
functionality in as much detail as possible._

## References
_Provide a link to the existing issue(s), if any._

## Pre-Merge TODO
- [ ] Write tests for your proposed changes
- [ ] Make sure that existing tests do not fail
  • Loading branch information
Aleksey28 committed Aug 29, 2023
1 parent 4d3ef63 commit c4493a0
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 9 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/test-functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,6 @@ jobs:
TEST_GROUP_NUMBER: ${{ matrix.test-group }}
DEBUG: 'testcafe*'
DISPLAY: ${{ inputs.display }}
outputs:
# Matrix jobs cannot collect outputs about each of them automatically. It rewrites the same outputs. Improve it once it will be possible.
test-1: "${{ steps.save-result.outputs.test_1 }}"
test-2: "${{ steps.save-result.outputs.test_2 }}"
test-3: "${{ steps.save-result.outputs.test_3 }}"
steps:
- name: Set 'pending' status
uses: DevExpress/testcafe-build-system/actions/set-status@main
Expand All @@ -104,6 +99,17 @@ jobs:
with:
node-version: ${{ inputs.node-version }}

# Remove after https://github.com/actions/runner-images/issues/8114 will be fixed
- name: Remove Google Chrome for Testing
if: ${{ contains(inputs.os, 'windows') }}
run: Remove-Item -Path "C:\Program Files\Google\Chrome" -Force -Recurse

- name: Install Google Chrome
if: ${{ contains(inputs.os, 'windows') }}
uses: browser-actions/setup-chrome@v1
with:
chrome-version: stable

- uses: DevExpress/testcafe-build-system/actions/read-artifacts@main
with:
package-name: 'testcafe'
Expand Down
2 changes: 1 addition & 1 deletion .publishrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"gitTag": true
},
"confirm": false,
"publishTag": "rc",
"publishTag": "latest",
"prePublishScript": "gulp test-server",
"postPublishScript": "gulp docker-publish"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## v3.3.0 (2023-08-29)

TestCafe v3.3.0 includes important bug fixes and quality of life improvements.

### Bug Fixes

* TestCafe terminates the test run when it attempts to parse an empty JSON file ([#7935](https://github.com/DevExpress/testcafe/issues/7935)).
* Firefox throws an unexpected error when TestCafe attempts to close the browser window ([#7285](https://github.com/DevExpress/testcafe/issues/7285)).
* [Native Automation] TestCafe ignores the `--disable-multiple-windows` option when you interact with a link that points to "target=_blank", or open a new window with the `window.open` method ([#7916](https://github.com/DevExpress/testcafe/issues/7916)).
* [Native Automation] TestCafe ignores the clientScripts directive when you mock HTTP requests ([#7914](https://github.com/DevExpress/testcafe/issues/7914)).
* [Native Automation] TestCafe hangs when it runs tests in the headless version of Google Chrome ([#7898](https://github.com/DevExpress/testcafe/issues/7898)).
* [Native Automation] TestCafe doesn't throw an error when the user attempts to enable the `userProfile` option ([#7925](https://github.com/DevExpress/testcafe/issues/7925)).

## v3.2.0 (2023-08-17)

TestCafe v3.2.0 allows you to check whether TestCafe uses native automation to control the browser.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "testcafe",
"description": "Automated browser testing for the modern web development stack.",
"license": "MIT",
"version": "3.3.0-rc.2",
"version": "3.3.0",
"author": {
"name": "Developer Express Inc.",
"url": "https://www.devexpress.com/"
Expand Down

0 comments on commit c4493a0

Please sign in to comment.