Skip to content

Commit 6139de1

Browse files
Merge pull request #29 from eliasnogueira/updates
Updates
2 parents 39ae2f7 + a669590 commit 6139de1

File tree

3 files changed

+18
-24
lines changed

3 files changed

+18
-24
lines changed

.github/workflows/test-execution.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
distribution: oracle
3131

3232
- name: Cache Maven packages
33-
uses: actions/cache@v3
33+
uses: actions/cache@v4
3434
with:
3535
path: ~/.m2
3636
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
3737
restore-keys: ${{ runner.os }}-m2
3838

3939
- name: Wait for the backend service to start
40-
run: wget -qO- https://raw.githubusercontent.com/eficode/wait-for/$WAIT_FOR_VERSION/wait-for | sh -s -- http://localhost:8088/actuator/health -t 30 -- echo "Backend is up"
40+
run: wget -qO- https://raw.githubusercontent.com/eficode/wait-for/$WAIT_FOR_VERSION/wait-for | sh -s -- http://localhost:8088/actuator/health -t 50 -- echo "Backend is up"
4141
env:
4242
WAIT_FOR_VERSION: 4df3f9262d84cab0039c07bf861045fbb3c20ab7
4343

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.4.3] - 10-12-2024
9+
10+
### Changed
11+
12+
- Update `actions/cache` to `v4`
13+
- Updated the following dependencies
14+
- `maven-surefire-plugin -> 3.5.2`
15+
- `datafaker -> 2.4.2`
16+
- `allure -> 2.29.1`
17+
- `allure-maven -> 2.15.2`
18+
819
## [2.4.2] - 27-10-2024
920

1021
## Changed

pom.xml

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,29 @@
66

77
<groupId>com.eliasogueira.credit</groupId>
88
<artifactId>restassured-complete-basic-example</artifactId>
9-
<version>2.4.2</version>
9+
<version>2.4.3</version>
1010

1111
<properties>
1212
<java.version>23</java.version>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1515
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
16-
<maven-surefire-plugin.version>3.5.1</maven-surefire-plugin.version>
16+
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
1717
<maven-failsafe-plugin.version>3.2.5</maven-failsafe-plugin.version>
1818

1919
<restassured.version>5.5.0</restassured.version>
2020
<junit.jupiter.version>5.11.3</junit.jupiter.version>
2121
<assertj.version>3.26.3</assertj.version>
22-
<datafaker.version>2.4.1</datafaker.version>
22+
<datafaker.version>2.4.2</datafaker.version>
2323
<owner.version>1.0.12</owner.version>
2424
<log4j.version>2.23.1</log4j.version>
2525
<slf4j.version>2.0.13</slf4j.version>
26-
<allure.version>2.29.0</allure.version>
27-
<allure-maven.version>2.14.0</allure-maven.version>
26+
<allure.version>2.29.1</allure.version>
27+
<allure-maven.version>2.15.2</allure-maven.version>
2828
<aspectj.version>1.9.22.1</aspectj.version>
2929
<allure.cmd.download.url>
3030
https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline
3131
</allure.cmd.download.url>
32-
33-
<!-- Security override libraries -->
34-
<commons-codec.version>1.17.1</commons-codec.version>
35-
<jackson-databind.version>2.18.0</jackson-databind.version>
3632
</properties>
3733

3834
<dependencies>
@@ -133,19 +129,6 @@
133129
<version>${slf4j.version}</version>
134130
</dependency>
135131

136-
<!-- Libraries added due to security issues -->
137-
<dependency>
138-
<groupId>com.fasterxml.jackson.core</groupId>
139-
<artifactId>jackson-databind</artifactId>
140-
<version>${jackson-databind.version}</version>
141-
</dependency>
142-
143-
<dependency>
144-
<groupId>commons-codec</groupId>
145-
<artifactId>commons-codec</artifactId>
146-
<version>${commons-codec.version}</version>
147-
</dependency>
148-
149132
</dependencies>
150133

151134
<build>

0 commit comments

Comments
 (0)