Skip to content

Commit

Permalink
Release 5.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
APiankouski committed Sep 4, 2024
1 parent 667b868 commit aa008a4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
GH_USER_NAME: github.actor
RELEASE_VERSION: 5.11.3
RELEASE_VERSION: 5.12.0

jobs:
release:
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ext['log4j2.version'] = '2.21.1'

dependencyManagement {
imports {
mavenBom(releaseMode ? 'com.epam.reportportal:commons-bom:' + '5.11.7' : 'com.epam.reportportal:commons-bom:5.11.7')
mavenBom(releaseMode ? 'com.epam.reportportal:commons-bom:' + '5.12.1' : 'com.epam.reportportal:commons-bom:5.12.1')
}
}

Expand All @@ -43,8 +43,8 @@ dependencies {
api 'com.epam.reportportal:commons-dao'
api 'com.epam.reportportal:commons'
} else {
api 'com.github.reportportal:commons-dao:4f0bff6'
api 'com.github.reportportal:commons:50a1192'
api 'com.github.reportportal:commons-dao:acf1ec7'
api 'com.github.reportportal:commons:c8ef09c'
}

//Fix CVE-2021-41079, CVE-2022-23181, CVE-2021-33037, CVE-2021-30640, CVE-2022-42252, CVE-2023-46589, CVE-2024-24549
Expand Down
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ services:
## ReportPortal services

index:
image: reportportal/service-index:5.11.0
image: reportportal/service-index:5.12.0
container_name: reportportal-index
logging:
<<: *logging
Expand All @@ -138,7 +138,7 @@ services:
restart: always

ui:
image: reportportal/service-ui:5.11.1
image: reportportal/service-ui:5.12.0
container_name: reportportal-ui
environment:
RP_SERVER_PORT: "8080"
Expand All @@ -161,7 +161,7 @@ services:
restart: always

api:
image: reportportal/service-api:5.11.1
image: reportportal/service-api:5.12.0
container_name: reportportal-api
logging:
<<: *logging
Expand Down Expand Up @@ -276,7 +276,7 @@ services:
restart: always

jobs:
image: reportportal/service-jobs:5.11.1
image: reportportal/service-jobs:5.12.0
container_name: reportportal-jobs
logging:
<<: *logging
Expand Down Expand Up @@ -349,7 +349,7 @@ services:
restart: always

analyzer:
image: &analyzer_img reportportal/service-auto-analyzer:5.11.0-r1
image: &analyzer_img reportportal/service-auto-analyzer:5.12.0-r1
container_name: reportportal-analyzer
logging:
<<: *logging
Expand Down Expand Up @@ -401,7 +401,7 @@ services:
restart: always

metrics-gatherer:
image: reportportal/service-metrics-gatherer:5.11.0-r1
image: reportportal/service-metrics-gatherer:5.12.0-r1
container_name: reportportal-metrics-gatherer
logging:
<<: *logging
Expand All @@ -428,7 +428,7 @@ services:
restart: always

migrations:
image: reportportal/migrations:5.11.0
image: reportportal/migrations:5.12.0
container_name: reportportal-migrations
logging:
<<: *logging
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=5.11.4
version=5.12.0
description=Unified Authorization Trap for all ReportPortal's Services
dockerPrepareEnvironment=
dockerJavaOpts=-Xmx512m -XX:+UseG1GC -XX:InitiatingHeapOccupancyPercent=70 -Djava.security.egd=file:/dev/./urandom
Expand Down
2 changes: 1 addition & 1 deletion project-properties.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project.ext {
publishRepo = "https://maven.pkg.github.com/reportportal/service-authorization"
dependencyRepos = ["commons-dao", "commons-rules", "commons-model", "commons-bom"]
releaseMode = project.hasProperty("releaseMode")
scriptsUrl = commonScriptsUrl + (releaseMode ? '5.11.0' : 'develop')
scriptsUrl = commonScriptsUrl + (releaseMode ? '5.12.0' : 'develop')
isDebugMode = System.getProperty("DEBUG", "false") == "true"
}

Expand Down

0 comments on commit aa008a4

Please sign in to comment.