From af4b34d10ba9bbdaf68a0c55fe34290294dc0b21 Mon Sep 17 00:00:00 2001 From: Andrei Piankouski Date: Mon, 8 Jan 2024 13:50:38 +0300 Subject: [PATCH 1/2] EPMRPP-88977 || Exclude debug mode launches from previous. --- .../com/epam/ta/reportportal/dao/LaunchRepositoryCustomImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/epam/ta/reportportal/dao/LaunchRepositoryCustomImpl.java b/src/main/java/com/epam/ta/reportportal/dao/LaunchRepositoryCustomImpl.java index 1c1f92b90..a8df91087 100644 --- a/src/main/java/com/epam/ta/reportportal/dao/LaunchRepositoryCustomImpl.java +++ b/src/main/java/com/epam/ta/reportportal/dao/LaunchRepositoryCustomImpl.java @@ -416,6 +416,7 @@ public Optional findPreviousLaunchId(Launch launch) { .and(LAUNCH.NAME.eq(launch.getName())) .and(LAUNCH.NUMBER.lt(launch.getNumber().intValue()) .and(LAUNCH.PROJECT_ID.eq(launch.getProjectId())))) + .and(LAUNCH.MODE.ne(JLaunchModeEnum.DEBUG)) .orderBy(LAUNCH.NUMBER.desc()) .limit(1) .fetchOptionalInto(Long.class); From 91b7854924c08616e193e674107fd1fa7863a6ab Mon Sep 17 00:00:00 2001 From: Pavel_Bortnik Date: Tue, 9 Jan 2024 14:41:12 +0300 Subject: [PATCH 2/2] 5.11.2 || Update release version --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94a68a5fa..7babc6e78 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ env: SCRIPTS_VERSION: 5.10.0 BOM_VERSION: 5.11.1 MIGRATIONS_VERSION: 5.11.0 - RELEASE_VERSION: 5.11.1 + RELEASE_VERSION: 5.11.2 jobs: release: