From 9280d8a7f6db2e2bbe4869853088eb63c83b0cba Mon Sep 17 00:00:00 2001 From: eliasnogueira Date: Tue, 10 Dec 2024 21:49:36 +0100 Subject: [PATCH 1/7] chore: library update --- pom.xml | 27 +++++---------------------- 1 file changed, 5 insertions(+), 22 deletions(-) diff --git a/pom.xml b/pom.xml index e5a0473..7e10adc 100644 --- a/pom.xml +++ b/pom.xml @@ -6,33 +6,29 @@ com.eliasogueira.credit restassured-complete-basic-example - 2.4.2 + 2.4.3 23 UTF-8 UTF-8 3.13.0 - 3.5.1 + 3.5.2 3.2.5 5.5.0 5.11.3 3.26.3 - 2.4.1 + 2.4.2 1.0.12 2.23.1 2.0.13 - 2.29.0 - 2.14.0 + 2.29.1 + 2.15.2 1.9.22.1 https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline - - - 1.17.1 - 2.18.0 @@ -133,19 +129,6 @@ ${slf4j.version} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson-databind.version} - - - - commons-codec - commons-codec - ${commons-codec.version} - - From 4702723d661a14857875eb4cc3194be55cdce8c4 Mon Sep 17 00:00:00 2001 From: eliasnogueira Date: Tue, 10 Dec 2024 21:49:45 +0100 Subject: [PATCH 2/7] chore: action/cache update --- .github/workflows/test-execution.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-execution.yml b/.github/workflows/test-execution.yml index af1d689..f800c53 100644 --- a/.github/workflows/test-execution.yml +++ b/.github/workflows/test-execution.yml @@ -30,7 +30,7 @@ jobs: distribution: oracle - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} From 7bd9d9a65d43dcf58ab40e0b6e3ad287bb0fea0a Mon Sep 17 00:00:00 2001 From: eliasnogueira Date: Tue, 10 Dec 2024 21:49:51 +0100 Subject: [PATCH 3/7] chore: latest updates --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0acaf00..ad4ca9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.4.3] - 10-12-2024 + +### Changed + +- Update `actions/cache` to `v4` +- Updated the following dependencies + - `maven-surefire-plugin -> 3.5.2` + - `datafaker -> 2.4.2` + - `allure -> 2.29.1` + - `allure-maven -> 2.15.2` + ## [2.4.2] - 27-10-2024 ## Changed From 1ec40656ceae5f499a75cb7ab7fa45d9e05efea9 Mon Sep 17 00:00:00 2001 From: eliasnogueira Date: Tue, 10 Dec 2024 21:59:36 +0100 Subject: [PATCH 4/7] fix: wait-for update --- .github/workflows/test-execution.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test-execution.yml b/.github/workflows/test-execution.yml index f800c53..5c41957 100644 --- a/.github/workflows/test-execution.yml +++ b/.github/workflows/test-execution.yml @@ -37,9 +37,7 @@ jobs: restore-keys: ${{ runner.os }}-m2 - name: Wait for the backend service to start - 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" - env: - WAIT_FOR_VERSION: 4df3f9262d84cab0039c07bf861045fbb3c20ab7 + run: wget -qO- https://raw.githubusercontent.com/eficode/wait-for/2.2.4/wait-for | sh -s -- http://localhost:8088/actuator/health -t 30 -- echo "Backend is up" - name: Build with Maven run: mvn -q -B -DskipTests package --file pom.xml From e9a073a0b39375582f442e5ca35e69353084697a Mon Sep 17 00:00:00 2001 From: eliasnogueira Date: Tue, 10 Dec 2024 22:00:10 +0100 Subject: [PATCH 5/7] fix: wait-for update --- .github/workflows/test-execution.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-execution.yml b/.github/workflows/test-execution.yml index 5c41957..529996e 100644 --- a/.github/workflows/test-execution.yml +++ b/.github/workflows/test-execution.yml @@ -38,6 +38,8 @@ jobs: - name: Wait for the backend service to start run: wget -qO- https://raw.githubusercontent.com/eficode/wait-for/2.2.4/wait-for | sh -s -- http://localhost:8088/actuator/health -t 30 -- echo "Backend is up" + env: + WAIT_FOR_VERSION: 4df3f9262d84cab0039c07bf861045fbb3c20ab7 - name: Build with Maven run: mvn -q -B -DskipTests package --file pom.xml From 16f8797f504452bcc9992041ef934902887f22aa Mon Sep 17 00:00:00 2001 From: eliasnogueira Date: Tue, 10 Dec 2024 22:00:40 +0100 Subject: [PATCH 6/7] fix: wait-for update --- .github/workflows/test-execution.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-execution.yml b/.github/workflows/test-execution.yml index 529996e..f800c53 100644 --- a/.github/workflows/test-execution.yml +++ b/.github/workflows/test-execution.yml @@ -37,7 +37,7 @@ jobs: restore-keys: ${{ runner.os }}-m2 - name: Wait for the backend service to start - run: wget -qO- https://raw.githubusercontent.com/eficode/wait-for/2.2.4/wait-for | sh -s -- http://localhost:8088/actuator/health -t 30 -- echo "Backend is up" + 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" env: WAIT_FOR_VERSION: 4df3f9262d84cab0039c07bf861045fbb3c20ab7 From a6695900d0133cf33cf416c59510c8f3802a5319 Mon Sep 17 00:00:00 2001 From: eliasnogueira Date: Tue, 10 Dec 2024 22:02:05 +0100 Subject: [PATCH 7/7] fix: wait-for update --- .github/workflows/test-execution.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-execution.yml b/.github/workflows/test-execution.yml index f800c53..54f7131 100644 --- a/.github/workflows/test-execution.yml +++ b/.github/workflows/test-execution.yml @@ -37,7 +37,7 @@ jobs: restore-keys: ${{ runner.os }}-m2 - name: Wait for the backend service to start - 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" + 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" env: WAIT_FOR_VERSION: 4df3f9262d84cab0039c07bf861045fbb3c20ab7