Skip to content

Commit

Permalink
Merge pull request #7 from testit-tms/release/1.0.13
Browse files Browse the repository at this point in the history
feat: TMS-30440: add TMS 5.2 support
  • Loading branch information
taipoxinous authored Dec 23, 2024
2 parents 77aac58 + d9ec364 commit 566181b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ project's work items and hierarchies, generate unit tests for selected work item
| Test IT | Plugin Test IT Management |
|---------|---------------------------|
| 4.6 | 1.0.1 |
| 5.0 | 1.0.7+ |
| 5.0 | 1.0.7+ |
| 5.1 | 1.0.12 |
| 5.2 | 1.0.13 |

## Download

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pluginVersion=1.0.12
pluginVersion=1.0.13
pluginGroup=ru.testit.management
pluginName=testit_management
pluginRepositoryUrl=https://github.com/testit-tms/testit-management/
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
jsoup = "1.17.2"
okhttp = "4.12.0"
slf4j = "2.0.13"
testit-api = "latest.release"
testit-api = "0.4.2-1"
testit-common = "latest.release"

# plugins
Expand Down
7 changes: 2 additions & 5 deletions src/main/kotlin/ru/testit/management/clients/TmsClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ import ru.testit.client.api.ProjectSectionsApi
import ru.testit.client.api.ProjectsApi
import ru.testit.client.api.WorkItemsApi
import ru.testit.client.invoker.ApiClient
import ru.testit.client.model.SectionModel
import ru.testit.client.model.WorkItemSelectModelFilter
import ru.testit.client.model.WorkItemModel
import ru.testit.client.model.ApiV2ProjectsProjectIdWorkItemsSearchPostRequest
import ru.testit.client.model.*
import ru.testit.management.utils.MessagesUtils
import ru.testit.management.windows.settings.TmsSettingsState
import java.util.*
Expand Down Expand Up @@ -81,7 +78,7 @@ object TmsClient {
filter.sectionIds = setOf(sectionId)
filter.isDeleted = false

val request = ApiV2ProjectsProjectIdWorkItemsSearchPostRequest()
val request = AddTestPointsWithSectionsRequest()
request.filter = filter

try {
Expand Down

0 comments on commit 566181b

Please sign in to comment.