This is an automated email from the ASF dual-hosted git repository.
adamsaghy pushed a change to branch FINERACT-2621/spring-boot-4.1
in repository https://gitbox.apache.org/repos/asf/fineract.git
discard a37c17b30d FINERACT-2621: Upgrade dependencies to Spring Boot 4.1
add 3862061f1c FINERACT-2684: Allow manual full CI execution with logs
add 52e5168a7a Merge pull request #6333
add 7bd7713033 FINERACT-2455: working capital principal balance fields
adjustments
add 8aaadffff6 FINERACT-2455: added e2e tests for working capital
principal balance fields adjustments
add 7c1e0b8d13 Merge pull request #6305
add 446fddb46f FINERACT-2621: Upgrade dependencies to Spring Boot 4.1
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (a37c17b30d)
\
N -- N -- N refs/heads/FINERACT-2621/spring-boot-4.1 (446fddb46f)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/build-core.yml | 10 +-
.github/workflows/build-cucumber.yml | 10 +-
.github/workflows/build-docker.yml | 10 +-
.github/workflows/build-e2e-tests.yml | 14 +-
.github/workflows/build-mariadb.yml | 10 +-
.github/workflows/build-mysql.yml | 10 +-
.github/workflows/build-postgresql.yml | 10 +-
.github/workflows/build-progressive-loan.yml | 8 +-
.github/workflows/build-quality-checks.yml | 14 +-
.github/workflows/full-build-ci.yml | 36 ++
.github/workflows/regression-safety-db-changes.yml | 8 +-
...un-integration-test-sequentially-postgresql.yml | 10 +-
.github/workflows/smoke-messaging.yml | 10 +-
.../verify-api-backward-compatibility.yml | 8 +-
...y-generated-client-api-method-compatibility.yml | 8 +-
.github/workflows/verify-liquibase-ddl-safety.yml | 8 +-
.../features/WorkingCapitalDiscount.feature | 70 +--
.../features/WorkingCapitalLoanDetails.feature | 140 +++++-
.../api/WorkingCapitalLoanApiResourceSwagger.java | 17 +-
.../domain/WorkingCapitalLoan.java | 6 +
.../domain/WorkingCapitalLoanBalance.java | 7 +
.../service/WorkingCapitalLoanAssemblerImpl.java | 24 +-
...WorkingCapitalLoanWritePlatformServiceImpl.java | 25 +-
.../WorkingCapitalLoanProductRelatedDetails.java | 7 +
.../workingcapitalloan/module-changelog-master.xml | 1 +
.../0070_wc_loan_principal_balance_backfill.xml | 113 +++++
.../WorkingCapitalLoanDisbursementTest.java | 4 +-
.../helpers/FeignWorkingCapitalLoanHelper.java | 8 +
.../modules/WorkingCapitalLoanRequestBuilders.java | 18 +
...gnWorkingCapitalLoanPrincipalLifecycleTest.java | 501 +++++++++++++++++++++
30 files changed, 1044 insertions(+), 81 deletions(-)
create mode 100644
fineract-working-capital-loan/src/main/resources/db/changelog/tenant/module/workingcapitalloan/parts/0070_wc_loan_principal_balance_backfill.xml
create mode 100644
integration-tests/src/test/java/org/apache/fineract/integrationtests/client/feign/tests/FeignWorkingCapitalLoanPrincipalLifecycleTest.java