Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #29

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions agent-allure-jbehave/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## [Unreleased]
### Changed
- Agent version updated on [5.3.0](https://github.com/reportportal/agent-java-jbehave/releases/tag/5.3.0), by @HardNorth

## [5.1.1]
### Changed
Expand Down
8 changes: 7 additions & 1 deletion agent-allure-jbehave/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,11 @@ sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

dependencies {
api 'com.epam.reportportal:agent-java-jbehave:5.2.2'
api 'com.epam.reportportal:agent-java-jbehave:5.3.0'
implementation ('org.jbehave:jbehave-core:5.2.0') {
exclude group: 'junit'
exclude group: 'org.junit.vintage'
}

testImplementation 'com.squareup.okhttp3:okhttp:4.12.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
import static com.epam.reportportal.jbehave.AllureAwareReporter.*;
import static java.util.Optional.ofNullable;

/**
* @deprecated Use {@link AllureAwareScenarioStoryReporter}, since the semantic of this class is completely broken and will be removed,
*/
@Deprecated
public class AllureAwareStepStoryReporter extends ReportPortalStepStoryReporter {
private static final Map<Maybe<String>, String> DESCRIPTION_TRACKER = new ConcurrentHashMap<>();

Expand Down
Loading