From 20d9051d10bdb10165b4874874fa9387c76ad934 Mon Sep 17 00:00:00 2001 From: Vadzim Hushchanskou Date: Thu, 29 May 2025 15:10:21 +0300 Subject: [PATCH 1/2] README.md update --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dd90156..168fb5a 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,12 @@ # ReportPortal agent for Cucumber v.5 -Cucumber JVM version [5.0.0;6.0.0) adapter +> **End of support**: The agent lifecycle already ended. You are free to use it as long as you prefer, but no new updates will be published. > **DISCLAIMER**: We use Google Analytics for sending anonymous usage information such as agent's and client's names, > and their versions after a successful launch start. This information might help us to improve both ReportPortal > backend and client sides. It is used by the ReportPortal team only and is not supposed for sharing with 3rd parties. +Cucumber JVM version [5.0.0;6.0.0) adapter + [![Maven Central](https://img.shields.io/maven-central/v/com.epam.reportportal/agent-java-cucumber5.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/com.epam.reportportal/agent-java-cucumber5) [![CI Build](https://github.com/reportportal/agent-java-cucumber5/actions/workflows/ci.yml/badge.svg)](https://github.com/reportportal/agent-java-cucumber5/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/reportportal/agent-java-cucumber5/branch/develop/graph/badge.svg?token=DU2YT94108)](https://codecov.io/gh/reportportal/agent-java-cucumber5) From d4c22af3d661daab5439fc9362ab1cc01495c846 Mon Sep 17 00:00:00 2001 From: Vadzim Hushchanskou Date: Tue, 17 Jun 2025 17:19:42 +0300 Subject: [PATCH 2/2] Client version update --- CHANGELOG.md | 2 ++ build.gradle | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 690f547..f74d874 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] +### Changed +- Client version updated on [5.3.14](https://github.com/reportportal/client-java/releases/tag/5.3.14), by @HardNorth ## [5.3.0] ### Changed diff --git a/build.gradle b/build.gradle index 3f60680..30de8cb 100644 --- a/build.gradle +++ b/build.gradle @@ -37,19 +37,19 @@ repositories { } dependencies { - api 'com.epam.reportportal:client-java:5.3.12' + api 'com.epam.reportportal:client-java:5.3.14' api "io.cucumber:cucumber-java:${project.cucumber_version}" implementation 'org.slf4j:slf4j-api:2.0.7' testImplementation 'com.squareup.okhttp3:okhttp:4.12.0' - testImplementation 'com.epam.reportportal:agent-java-test-utils:0.0.7' + testImplementation 'com.epam.reportportal:agent-java-test-utils:0.0.12' testImplementation "io.cucumber:cucumber-testng:${project.cucumber_version}" testImplementation 'org.aspectj:aspectjweaver:1.9.19' testImplementation 'org.hamcrest:hamcrest-core:2.2' testImplementation 'org.mockito:mockito-core:3.3.3' testImplementation 'org.mockito:mockito-junit-jupiter:3.3.3' - testImplementation 'ch.qos.logback:logback-classic:1.3.12' + testImplementation 'ch.qos.logback:logback-classic:1.3.15' testImplementation 'com.epam.reportportal:logger-java-logback:5.2.3' testImplementation ("org.junit.platform:junit-platform-runner:${project.junit_runner_version}") {