diff --git a/CHANGELOG.md b/CHANGELOG.md index c111faf..befbb80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog ## [Unreleased] +### Changed +- Client version updated on [5.1.22](https://github.com/reportportal/client-java/releases/tag/5.1.22), by @HardNorth +- `utils-java-formatting` library version updated on version [5.1.6](https://github.com/reportportal/utils-java-formatting/releases/tag/5.1.6), by @HardNorth ## [5.0.1] ### Changed diff --git a/README.md b/README.md index 0309198..984a80b 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Maven Central](https://img.shields.io/maven-central/v/com.epam.reportportal/logger-java-httpcomponents.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.epam.reportportal%22%20AND%20a:%22logger-java-httpcomponents%22) [![CI Build](https://github.com/reportportal/logger-java-httpcomponents/actions/workflows/ci.yml/badge.svg)](https://github.com/reportportal/logger-java-httpcomponents/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/reportportal/logger-java-httpcomponents/branch/develop/graph/badge.svg?token=X7YWAPK1X5)](https://codecov.io/gh/reportportal/logger-java-httpcomponents) -[![Join Slack chat!](https://reportportal-slack-auto.herokuapp.com/badge.svg)](https://reportportal-slack-auto.herokuapp.com) +[![Join Slack chat!](https://slack.epmrpp.reportportal.io/badge.svg)](https://slack.epmrpp.reportportal.io/) [![stackoverflow](https://img.shields.io/badge/reportportal-stackoverflow-orange.svg?style=flat)](http://stackoverflow.com/questions/tagged/reportportal) [![Build with Love](https://img.shields.io/badge/build%20with-❤%EF%B8%8F%E2%80%8D-lightgrey.svg)](http://reportportal.io?style=flat) diff --git a/README_TEMPLATE.md b/README_TEMPLATE.md index fac9eb4..c197e72 100644 --- a/README_TEMPLATE.md +++ b/README_TEMPLATE.md @@ -3,7 +3,7 @@ [![Maven Central](https://img.shields.io/maven-central/v/com.epam.reportportal/logger-java-httpcomponents.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.epam.reportportal%22%20AND%20a:%22logger-java-httpcomponents%22) [![CI Build](https://github.com/reportportal/logger-java-httpcomponents/actions/workflows/ci.yml/badge.svg)](https://github.com/reportportal/logger-java-httpcomponents/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/reportportal/logger-java-httpcomponents/branch/develop/graph/badge.svg?token=X7YWAPK1X5)](https://codecov.io/gh/reportportal/logger-java-httpcomponents) -[![Join Slack chat!](https://reportportal-slack-auto.herokuapp.com/badge.svg)](https://reportportal-slack-auto.herokuapp.com) +[![Join Slack chat!](https://slack.epmrpp.reportportal.io/badge.svg)](https://slack.epmrpp.reportportal.io/) [![stackoverflow](https://img.shields.io/badge/reportportal-stackoverflow-orange.svg?style=flat)](http://stackoverflow.com/questions/tagged/reportportal) [![Build with Love](https://img.shields.io/badge/build%20with-❤%EF%B8%8F%E2%80%8D-lightgrey.svg)](http://reportportal.io?style=flat) diff --git a/build.gradle b/build.gradle index 9ac9e15..5087f4c 100644 --- a/build.gradle +++ b/build.gradle @@ -34,18 +34,18 @@ targetCompatibility = JavaVersion.VERSION_1_8 repositories { mavenCentral() - maven { url "https://jitpack.io" } } dependencies { - api 'com.epam.reportportal:client-java:5.1.16' + api 'com.epam.reportportal:client-java:5.1.22' api 'com.google.code.findbugs:jsr305:3.0.2' api 'com.epam.reportportal:commons-model:5.0.0' api 'com.squareup.okhttp3:okhttp:4.10.0' - api 'com.epam.reportportal:utils-java-formatting:5.1.5' - implementation 'org.apache.httpcomponents:httpcore:4.4.15' + api 'com.epam.reportportal:utils-java-formatting:5.1.6' + implementation 'org.apache.httpcomponents:httpcore:4.4.16' + + testImplementation 'com.epam.reportportal:agent-java-test-utils:0.0.2' - testImplementation('com.github.reportportal:agent-java-test-utils:236a68c') testImplementation("org.junit.platform:junit-platform-runner:${junit5_runner_version}") { exclude module: 'junit' } @@ -54,8 +54,8 @@ dependencies { testImplementation 'org.hamcrest:hamcrest-core:2.2' testImplementation "org.mockito:mockito-core:${mockito_version}" testImplementation "org.mockito:mockito-inline:${mockito_version}" - testImplementation 'org.apache.httpcomponents:httpclient:4.5.13' - testImplementation 'org.apache.httpcomponents:httpmime:4.5.13' + testImplementation 'org.apache.httpcomponents:httpclient:4.5.14' + testImplementation 'org.apache.httpcomponents:httpmime:4.5.14' } test {