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 #106

Merged
merged 3 commits into from
Feb 9, 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## [Unreleased]
### Changed
- Client version updated on [5.2.4](https://github.com/reportportal/client-java/releases/tag/5.2.4), by @HardNorth
### Removed
- `commons-model` dependency to rely on `clinet-java` exclusions in security fixes, by @HardNorth

## [5.2.0]
### Changed
Expand Down
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.10</version>
<version>1.3.12</version>
</dependency>
<dependency>
<groupId>com.epam.reportportal</groupId>
Expand All @@ -105,7 +105,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
<dependency>
<groupId>com.epam.reportportal</groupId>
<artifactId>logger-java-logback</artifactId>
<version>5.1.1</version>
<version>5.2.0</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -184,7 +184,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -199,7 +199,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
<dependency>
<groupId>com.epam.reportportal</groupId>
<artifactId>logger-java-log4j</artifactId>
<version>5.1.4</version>
<version>5.2.0</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -275,7 +275,7 @@ repositories {
}

dependencies {
compile 'com.epam.reportportal:logger-java-log4j:5.1.4'
compile 'com.epam.reportportal:logger-java-log4j:5.2.0'
compile 'com.epam.reportportal:agent-java-junit:5.2.0'
}

Expand Down Expand Up @@ -416,7 +416,7 @@ If you prefer using **Logback** logging library, add following dependencies:
<dependency>
<groupId>com.epam.reportportal</groupId>
<artifactId>logger-java-logback</artifactId>
<version>5.1.1</version>
<version>5.2.0</version>
</dependency>
```
> Up to date version could be found [here](https://search.maven.org/search?q=g:%22com.epam.reportportal%22%20AND%20a:%22logger-java-logback%22)
Expand All @@ -426,7 +426,7 @@ If you prefer using **Logback** logging library, add following dependencies:
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.10</version>
<version>1.3.12</version>
</dependency>
```

Expand All @@ -447,13 +447,13 @@ If you prefer using **Log4j** logging library, add following dependencies:
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>
```

Expand Down Expand Up @@ -685,19 +685,19 @@ in this case - add a `maven dependency plugin` dependency explicitly, like this:
<dependency>
<groupId>com.epam.reportportal</groupId>
<artifactId>logger-java-log4j</artifactId>
<version>5.1.4</version>
<version>5.2.0</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -813,10 +813,10 @@ repositories {
}

dependencies {
compile 'com.epam.reportportal:logger-java-log4j:5.1.4'
compile 'com.epam.reportportal:logger-java-log4j:5.2.0'
compile 'com.epam.reportportal:agent-java-junit:5.2.0'
compile 'org.apache.logging.log4j:log4j-api:2.17.1'
compile 'org.apache.logging.log4j:log4j-core:2.17.1'
compile 'org.apache.logging.log4j:log4j-api:2.17.2'
compile 'org.apache.logging.log4j:log4j-core:2.17.2'
}

test {
Expand Down
30 changes: 15 additions & 15 deletions README_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.10</version>
<version>1.3.12</version>
</dependency>
<dependency>
<groupId>com.epam.reportportal</groupId>
Expand All @@ -105,7 +105,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
<dependency>
<groupId>com.epam.reportportal</groupId>
<artifactId>logger-java-logback</artifactId>
<version>5.1.1</version>
<version>5.2.1</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -184,7 +184,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -199,7 +199,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
<dependency>
<groupId>com.epam.reportportal</groupId>
<artifactId>logger-java-log4j</artifactId>
<version>5.1.4</version>
<version>5.2.1</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -275,7 +275,7 @@ repositories {
}

dependencies {
compile 'com.epam.reportportal:logger-java-log4j:5.1.4'
compile 'com.epam.reportportal:logger-java-log4j:5.2.1'
compile 'com.epam.reportportal:agent-java-junit:$LATEST_VERSION'
}

Expand Down Expand Up @@ -416,7 +416,7 @@ If you prefer using **Logback** logging library, add following dependencies:
<dependency>
<groupId>com.epam.reportportal</groupId>
<artifactId>logger-java-logback</artifactId>
<version>5.1.1</version>
<version>5.2.1</version>
</dependency>
```
> Up to date version could be found [here](https://search.maven.org/search?q=g:%22com.epam.reportportal%22%20AND%20a:%22logger-java-logback%22)
Expand All @@ -426,7 +426,7 @@ If you prefer using **Logback** logging library, add following dependencies:
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.10</version>
<version>1.3.12</version>
</dependency>
```

Expand All @@ -447,13 +447,13 @@ If you prefer using **Log4j** logging library, add following dependencies:
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>
```

Expand Down Expand Up @@ -685,19 +685,19 @@ in this case - add a `maven dependency plugin` dependency explicitly, like this:
<dependency>
<groupId>com.epam.reportportal</groupId>
<artifactId>logger-java-log4j</artifactId>
<version>5.1.4</version>
<version>5.2.1</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -813,10 +813,10 @@ repositories {
}

dependencies {
compile 'com.epam.reportportal:logger-java-log4j:5.1.4'
compile 'com.epam.reportportal:logger-java-log4j:5.2.1'
compile 'com.epam.reportportal:agent-java-junit:$LATEST_VERSION'
compile 'org.apache.logging.log4j:log4j-api:2.17.1'
compile 'org.apache.logging.log4j:log4j-core:2.17.1'
compile 'org.apache.logging.log4j:log4j-api:2.17.2'
compile 'org.apache.logging.log4j:log4j-core:2.17.2'
}

test {
Expand Down
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ repositories {
}

dependencies {
api 'com.epam.reportportal:client-java:5.2.1'
api 'com.epam.reportportal:commons-model:5.0.0'
api 'com.nordstrom.tools:junit-foundation:17.0.3'
api 'com.epam.reportportal:client-java:5.2.4'
api 'com.google.code.findbugs:jsr305:3.0.2'
api 'com.nordstrom.tools:junit-foundation:17.0.3'

implementation 'org.slf4j:slf4j-api:2.0.7'

Expand Down
Loading