Skip to content

Commit c4493a0

Browse files
authored
release: updated version (#7980)
<!-- 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
1 parent 4d3ef63 commit c4493a0

File tree

5 files changed

+28
-9
lines changed

5 files changed

+28
-9
lines changed

.github/workflows/test-functional.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,6 @@ jobs:
7575
TEST_GROUP_NUMBER: ${{ matrix.test-group }}
7676
DEBUG: 'testcafe*'
7777
DISPLAY: ${{ inputs.display }}
78-
outputs:
79-
# Matrix jobs cannot collect outputs about each of them automatically. It rewrites the same outputs. Improve it once it will be possible.
80-
test-1: "${{ steps.save-result.outputs.test_1 }}"
81-
test-2: "${{ steps.save-result.outputs.test_2 }}"
82-
test-3: "${{ steps.save-result.outputs.test_3 }}"
8378
steps:
8479
- name: Set 'pending' status
8580
uses: DevExpress/testcafe-build-system/actions/set-status@main
@@ -104,6 +99,17 @@ jobs:
10499
with:
105100
node-version: ${{ inputs.node-version }}
106101

102+
# Remove after https://github.com/actions/runner-images/issues/8114 will be fixed
103+
- name: Remove Google Chrome for Testing
104+
if: ${{ contains(inputs.os, 'windows') }}
105+
run: Remove-Item -Path "C:\Program Files\Google\Chrome" -Force -Recurse
106+
107+
- name: Install Google Chrome
108+
if: ${{ contains(inputs.os, 'windows') }}
109+
uses: browser-actions/setup-chrome@v1
110+
with:
111+
chrome-version: stable
112+
107113
- uses: DevExpress/testcafe-build-system/actions/read-artifacts@main
108114
with:
109115
package-name: 'testcafe'

.publishrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"gitTag": true
99
},
1010
"confirm": false,
11-
"publishTag": "rc",
11+
"publishTag": "latest",
1212
"prePublishScript": "gulp test-server",
1313
"postPublishScript": "gulp docker-publish"
1414
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## v3.3.0 (2023-08-29)
4+
5+
TestCafe v3.3.0 includes important bug fixes and quality of life improvements.
6+
7+
### Bug Fixes
8+
9+
* TestCafe terminates the test run when it attempts to parse an empty JSON file ([#7935](https://github.com/DevExpress/testcafe/issues/7935)).
10+
* Firefox throws an unexpected error when TestCafe attempts to close the browser window ([#7285](https://github.com/DevExpress/testcafe/issues/7285)).
11+
* [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)).
12+
* [Native Automation] TestCafe ignores the clientScripts directive when you mock HTTP requests ([#7914](https://github.com/DevExpress/testcafe/issues/7914)).
13+
* [Native Automation] TestCafe hangs when it runs tests in the headless version of Google Chrome ([#7898](https://github.com/DevExpress/testcafe/issues/7898)).
14+
* [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)).
15+
316
## v3.2.0 (2023-08-17)
417

518
TestCafe v3.2.0 allows you to check whether TestCafe uses native automation to control the browser.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "testcafe",
33
"description": "Automated browser testing for the modern web development stack.",
44
"license": "MIT",
5-
"version": "3.3.0-rc.2",
5+
"version": "3.3.0",
66
"author": {
77
"name": "Developer Express Inc.",
88
"url": "https://www.devexpress.com/"

0 commit comments

Comments
 (0)