Skip to content

Commit c3f1438

Browse files
committed
Merge branch 'private-release/v2.1.0' into public-release/v2.1.0
Signed-off-by: Uladzislau <[email protected]>
2 parents b874247 + 94aaa40 commit c3f1438

File tree

188 files changed

+7440
-1657
lines changed

Some content is hidden

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

188 files changed

+7440
-1657
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
**/mock_project/*
1313

1414
verifier-all.jar
15+
**/mock_project/idea.log
1516

1617
# Windows thumbnail cache files
1718
Thumbs.db
@@ -38,3 +39,5 @@ bin
3839
# Fleet files
3940
.fleet
4041
.editorconfig
42+
/out
43+
/allure-results

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,16 @@ All notable changes to the For Mainframe Plugin will be documented in this file.
66

77
### Bugfixes
88

9+
* Bugfix: Fixed invalid refresh cache date for nodes in case fetching was canceled by user ([d7682be0](https://github.com/zowe/zowe-explorer-intellij/commit/d7682be0))
10+
* Bugfix: Fixed issue with "Delete" button was disabled when multiple entities are selected ([33f23417](https://github.com/zowe/zowe-explorer-intellij/commit/33f23417))
11+
* Bugfix: Fixed remote conflict issue ([82b6fb7b](https://github.com/zowe/zowe-explorer-intellij/commit/82b6fb7b))
12+
* Bugfix: Fixed invalid message in tree related to a server certificate ([82b4af43](https://github.com/zowe/zowe-explorer-intellij/commit/82b4af43))
13+
* Bugfix: Fixed regex analysis failure ([6b00aa4c](https://github.com/zowe/zowe-explorer-intellij/commit/6b00aa4c))
14+
* Bugfix: Fixed issue with connection delete ([dee0202e](https://github.com/zowe/zowe-explorer-intellij/commit/dee0202e))
915
* Bugfix: Fixed error when uploading local file to USS ([c5dcd7fa](https://github.com/zowe/zowe-explorer-intellij/commit/c5dcd7fa))
1016
* Bugfix: Fixed issue when error message does not disappear after errors are corrected in a Job Filter ([64a6d209](https://github.com/zowe/zowe-explorer-intellij/commit/64a6d209))
17+
* Bugifx: Fixed NullPointerException on cancel operation ([fa2eaf5b](https://github.com/zowe/zowe-explorer-intellij/commit/fa2eaf5b))
1118
* Bugfix: Privacy Policy was open for modifications ([cd917844](https://github.com/zowe/zowe-explorer-intellij/commit/cd917844))
12-
* Bugfix: Fixed NullPointerException on cancel operation ([f8d08fd4](https://github.com/zowe/zowe-explorer-intellij/commit/f8d08fd4))
1319

1420
## [2.0.1] (2024-11-18)
1521

README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -145,17 +145,23 @@ We have two options of tests:
145145
\Program Files\Git\usr\bin\bash.exe" --login -i
146146
2. Make Java version 17 available from command line (add to PATH)
147147

148-
### To run UI tests:
148+
### To run UI tests (new):
149+
150+
Before running the tests, make sure you use the configuration after IntelliJ IDEA v2024.3.
151+
Just run `./gradlew uiTests` task, or use [Kotest](https://plugins.jetbrains.com/plugin/14080-kotest) plug-in for
152+
IntelliJ IDEA. The plug-in will provide the buttons against the test cases and suites in **src/uiTest** folder
153+
154+
### To run UI tests (old):
149155

150156
1. change values for ZOS_USERID, ZOS_PWD, CONNECTION_URL in src/uiTest/kotlin/auxiliary/utils.kt
151157
2. run ./gradlew buildPlugin in console
152-
4. run the script uiTest.sh
153-
5. once IdeForUiTests started make it as main window on the screen and do not touch mouse anymore
154-
6. on first launch a ide_for_launch folder will be created and ide will be downloaded
158+
3. run the script uiTest.sh
159+
4. once IdeForUiTests started make it as main window on the screen and do not touch mouse anymore
160+
5. on first launch ide_for_launch folder will be created and ide will be downloaded
155161

156162
UI tests results: build/reports/tests/uiTest/index.html
157163

158-
### To run smoke test:
164+
### To run smoke test (old):
159165

160166
1. change values for ZOS_USERID, ZOS_PWD, CONNECTION_URL in src/uiTest/kotlin/auxiliary/utils.kt
161167
2. run the script smokeTest.sh

0 commit comments

Comments
 (0)