This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/github_actions/gradle/actions-5
in repository https://gitbox.apache.org/repos/asf/fineract.git


 discard c90b9d873d Bump gradle/actions from 4 to 5
     add 297fa8e707 FINERACT-2326: Close opened savings account after 
integration test execution
     add 89e9cfcd7d FINERACT-2386: Journal entry aggregation capabilities
     add 334da61ed8 FINERACT-2348: Add missing indexes
     add ceb9f0f783 FINERACT-2386: Update read query to support other products
     add 09bacb8827 FINERACT-2348: Accounting mismatch in case amortization and 
amortization adjustment occurs at the same time
     add e0e4415727 FINERACT-2387: Fix zero amount reversed transaction 
creation issue
     add 8e3de2b72a FINERACT-2359: Wrong Days in Year configuration used for 
calculating interest
     add 43b61ab715 Bump actions/stale from 10.0.0 to 10.1.0
     add 0a0e3eb504 FINERACT-2326: Upgrade dependencies
     add 3a59a72891 FINERACT-2326: Fix `Trial Balance Summary with asset owner` 
report
     add 4838843b5c FINERACT-2326: Upgrade dependencies
     add ccfe062649 FINERACT-2181: Update actions/checkout action to v5
     add c9c9e9f835 FINERACT-2326: Loan point in time API now properly handles 
future dates
     add b692248a8a FINERACT-2326: Fix `Trial Balance Summary with asset owner` 
report
     add ebae20654a FINERACT-2326: Do not remove external id if transaction got 
not replayed
     add 469489d408 FINERACT-2389: Update `Transaction Summary with Asset 
Owner` report
     add a58db39a74 FINERACT-2326: added e2e auto tests for accrual reversal 
logic issue
     add f366f441b4 FINERACT-2181: Update actions/setup-node digest to 49933ea
     add 09e0b97b22 FINERACT-2181: Update actions/setup-java action to v5
     add 1bf71fb561 FINERACT-2326: Minor fix to generate IDs for saved interest 
transaction for loans
     add 676ba02c57 Bump gradle/actions from 4 to 5

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   (c90b9d873d)
            \
             N -- N -- N   
refs/heads/dependabot/github_actions/gradle/actions-5 (676ba02c57)

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-cucumber.yml               |   4 +-
 .github/workflows/build-docker.yml                 |   4 +-
 .github/workflows/build-documentation.yml          |   6 +-
 .github/workflows/build-e2e-tests.yml              |   4 +-
 .github/workflows/build-mariadb.yml                |   4 +-
 .github/workflows/build-mysql.yml                  |   4 +-
 .github/workflows/build-postgresql.yml             |   4 +-
 .github/workflows/publish-dockerhub.yml            |   4 +-
 ...un-integration-test-sequentially-postgresql.yml |   4 +-
 .github/workflows/smoke-messaging.yml              |   4 +-
 .github/workflows/sonarqube.yml                    |   4 +-
 .github/workflows/stale.yml                        |   2 +-
 .../groovy/org.apache.fineract.dependencies.gradle |  16 +-
 .../core/config/FineractProperties.java            |  10 +
 .../infrastructure/jobs/service/JobName.java       |   4 +-
 .../src/docs/en/chapters/features/index.adoc       |   3 +-
 .../features/journal-entry-aggregation.adoc        | 167 ++++
 .../stepdef/common/GlobalConfigurationStepDef.java |  10 -
 .../fineract/test/stepdef/loan/LoanStepDef.java    | 158 +++-
 .../fineract/test/support/TestContextKey.java      |   1 +
 .../test/resources/features/BusinessDate.feature   |  34 +-
 .../test/resources/features/Configuration.feature  |  15 +-
 .../resources/features/LoanAccrualActivity.feature | 854 ++++++++++++++++++++-
 .../resources/features/LoanBuyDownFees.feature     | 181 +++++
 .../features/LoanCapitalizedIncome.feature         | 177 +++++
 .../module/investor/module-changelog-master.xml    |   1 +
 ...wner_reference_in_journal_entry_aggregation.xml |   8 +-
 .../loanschedule/domain/AprCalculator.java         |   8 +-
 ...eplayedTransactionBusinessEventServiceImpl.java |   4 +-
 ...dvancedPaymentScheduleTransactionProcessor.java |   4 +-
 .../AccrualBasedAccountingProcessorForLoan.java    | 105 ++-
 ...EntryWritePlatformServiceJpaRepositoryImpl.java |  12 +-
 .../jobs/service/JobRegisterServiceImpl.java       |   2 +-
 .../JournalEntryAggregationJobConfiguration.java   |  91 +++
 .../JournalEntryAggregationJobConstant.java        |  34 +
 ...JournalEntryAggregationJobExecutionDecider.java |  64 ++
 .../JournalEntryAggregationJobReader.java          | 153 ++++
 .../JournalEntryAggregationJobWriter.java          |  56 ++
 .../data/JournalEntryAggregationSummaryData.java   |  29 +-
 .../data/JournalEntryAggregationTrackingData.java  |  12 +-
 .../domain/JournalEntryAggregationTracking.java    |  26 +-
 ...JournalEntryAggregationTrackingRepository.java} |  18 +-
 .../aggregationjob/domain/JournalEntrySummary.java |  69 ++
 .../domain/JournalEntrySummaryRepository.java      |   9 +-
 .../JournalEntryAggregationJobListener.java        | 122 +++
 .../JournalEntryAggregationWriterService.java      |  29 +-
 .../JournalEntryAggregationWriterServiceImpl.java  |  90 +++
 .../JournalEntryAggregationTrackingTasklet.java    |  68 ++
 .../service/LoanScheduleAssembler.java             |  30 +-
 .../LoanAccrualActivityProcessingServiceImpl.java  |  13 +-
 .../service/LoanAccrualsProcessingServiceImpl.java |   2 +-
 .../service/LoanPointInTimeServiceImpl.java        |  17 +-
 .../loanaccount/service/LoanProductAssembler.java  |   9 +-
 .../LoanProductRelatedDetailUpdateUtil.java        |   3 +-
 .../ProgressiveLoanInterestRefundServiceImpl.java  |   2 +-
 .../ReprocessLoanTransactionsServiceImpl.java      |  30 +-
 ...ernalSavingsAccountInformationApiResource.java} |  45 +-
 .../api/SavingsAccountsApiResourceSwagger.java     |   4 +
 .../src/main/resources/application.properties      |   5 +
 .../db/changelog/tenant/changelog-tenant.xml       |   4 +
 ...create_loan_amortization_allocation_mapping.xml |  60 ++
 .../0200_add_journal_entry_aggregation_tables.xml  | 346 +++++++++
 .../0201_add_journal_entry_aggregation_job.xml     |  16 +-
 ..._with_asset_owner_journal_entry_aggregation.xml | 179 +++++
 ...asset_owner_report_with_capitalized_income.xml} | 404 +++++++++-
 ...ournalEntryAggregationJobConfigurationTest.java |  92 +++
 ...nalEntryAggregationJobExecutionDeciderTest.java | 133 ++++
 .../JournalEntryAggregationJobReaderTest.java      | 151 ++++
 .../JournalEntryAggregationJobWriterTest.java      | 110 +++
 .../JournalEntryAggregationJobListenerTest.java    | 131 ++++
 ...urnalEntryAggregationWriterServiceImplTest.java | 153 ++++
 ...JournalEntryAggregationTrackingTaskletTest.java | 136 ++++
 .../src/test/resources/application-test.properties |   5 +
 .../savings/domain/SavingsAccountRepository.java   |   3 +
 .../domain/SavingsAccountRepositoryWrapper.java    |   4 +
 ...PaymentAllocationLoanRepaymentScheduleTest.java | 105 +++
 .../integrationtests/BaseLoanIntegrationTest.java  |   2 +-
 .../fineract/integrationtests/BatchApiTest.java    |   5 +-
 .../integrationtests/BatchLoanIntegrationTest.java |   2 +-
 .../ClientSavingsIntegrationTest.java              |   3 +
 ...xibleSavingsInterestPostingIntegrationTest.java |   3 +
 .../GroupSavingsIntegrationTest.java               |   3 +
 ...avingsAccountBalanceCheckAfterReversalTest.java |   3 +
 .../SavingsAccountRecalculateBalanceTest.java      |   3 +
 ...AccountTransactionDatatableIntegrationTest.java |   3 +
 .../SavingsAccountTransactionTest.java             |   3 +
 ...gsAccountTransactionsSearchIntegrationTest.java |   3 +
 .../SavingsAccountsExternalIdTest.java             |   3 +
 .../integrationtests/SavingsAccountsTest.java      |   3 +
 .../SavingsAccrualAccountingIntegrationTest.java   |   3 +
 .../SavingsAccrualIntegrationTest.java             |   3 +
 .../SavingsInterestPostingIntegrationTest.java     |   3 +
 .../SavingsInterestPostingJobIntegrationTest.java  |   3 +
 .../SavingsInterestPostingTest.java                |   3 +
 .../SavingsProductCreationIntegrationTest.java     |   3 +
 .../common/error/ErrorResponse.java                |  53 +-
 .../common/savings/SavingsAccountHelper.java       |  23 +
 .../savings/SavingsTestLifecycleExtension.java     |  89 +++
 .../loan/pointintime/LoanPointInTimeTest.java      | 112 ++-
 .../savings/SavingsInterestPostingTest.java        |   3 +
 100 files changed, 4922 insertions(+), 299 deletions(-)
 create mode 100644 
fineract-doc/src/docs/en/chapters/features/journal-entry-aggregation.adoc
 copy 
fineract-provider/src/main/resources/db/changelog/tenant/parts/0108_precondition_check_cob_loan_account_lock.xml
 => 
fineract-investor/src/main/resources/db/changelog/tenant/module/investor/parts/0021_external_owner_reference_in_journal_entry_aggregation.xml
 (70%)
 create mode 100644 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/JournalEntryAggregationJobConfiguration.java
 create mode 100644 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/JournalEntryAggregationJobConstant.java
 create mode 100644 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/JournalEntryAggregationJobExecutionDecider.java
 create mode 100644 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/JournalEntryAggregationJobReader.java
 create mode 100644 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/JournalEntryAggregationJobWriter.java
 copy 
fineract-loan/src/main/java/org/apache/fineract/portfolio/loanaccount/data/LoanInstallmentChargeData.java
 => 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/data/JournalEntryAggregationSummaryData.java
 (61%)
 mode change 100755 => 100644
 copy 
fineract-core/src/main/java/org/apache/fineract/infrastructure/core/config/AbstractFineractModuleProperties.java
 => 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/data/JournalEntryAggregationTrackingData.java
 (70%)
 copy 
fineract-investor/src/main/java/org/apache/fineract/investor/domain/ExternalAssetOwnerLoanProductAttributes.java
 => 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/domain/JournalEntryAggregationTracking.java
 (61%)
 copy 
fineract-provider/src/main/java/org/apache/fineract/{portfolio/group/domain/GroupRepository.java
 => 
infrastructure/jobs/service/aggregationjob/domain/JournalEntryAggregationTrackingRepository.java}
 (65%)
 create mode 100644 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/domain/JournalEntrySummary.java
 copy 
fineract-loan/src/main/java/org/apache/fineract/portfolio/loanaccount/domain/LoanDisbursementDetailsRepository.java
 => 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/domain/JournalEntrySummaryRepository.java
 (74%)
 create mode 100644 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/listener/JournalEntryAggregationJobListener.java
 copy 
fineract-core/src/main/java/org/apache/fineract/organisation/monetary/data/CurrencyUpdateRequest.java
 => 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/services/JournalEntryAggregationWriterService.java
 (56%)
 create mode 100644 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/services/JournalEntryAggregationWriterServiceImpl.java
 create mode 100644 
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/tasklet/JournalEntryAggregationTrackingTasklet.java
 copy 
fineract-provider/src/main/java/org/apache/fineract/{cob/api/InternalLoanAccountLockApiResource.java
 => portfolio/savings/api/InternalSavingsAccountInformationApiResource.java} 
(61%)
 create mode 100644 
fineract-provider/src/main/resources/db/changelog/tenant/parts/0200_add_journal_entry_aggregation_tables.xml
 copy 
fineract-savings/src/main/resources/db/changelog/tenant/module/savings/parts/parts/2001_add_savings_accrual_job.xml
 => 
fineract-provider/src/main/resources/db/changelog/tenant/parts/0201_add_journal_entry_aggregation_job.xml
 (75%)
 create mode 100644 
fineract-provider/src/main/resources/db/changelog/tenant/parts/0202_trial_balance_summary_with_asset_owner_journal_entry_aggregation.xml
 copy 
fineract-provider/src/main/resources/db/changelog/tenant/parts/{0182_transaction_summary_with_asset_owner_report_fix_charge_reason_and_add_buyback_intermediate.xml
 => 
0203_transaction_summary_with_asset_owner_report_with_capitalized_income.xml} 
(74%)
 create mode 100644 
fineract-provider/src/test/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/JournalEntryAggregationJobConfigurationTest.java
 create mode 100644 
fineract-provider/src/test/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/JournalEntryAggregationJobExecutionDeciderTest.java
 create mode 100644 
fineract-provider/src/test/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/JournalEntryAggregationJobReaderTest.java
 create mode 100644 
fineract-provider/src/test/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/JournalEntryAggregationJobWriterTest.java
 create mode 100644 
fineract-provider/src/test/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/listener/JournalEntryAggregationJobListenerTest.java
 create mode 100644 
fineract-provider/src/test/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/services/JournalEntryAggregationWriterServiceImplTest.java
 create mode 100644 
fineract-provider/src/test/java/org/apache/fineract/infrastructure/jobs/service/aggregationjob/tasklet/JournalEntryAggregationTrackingTaskletTest.java
 create mode 100644 
integration-tests/src/test/java/org/apache/fineract/integrationtests/common/savings/SavingsTestLifecycleExtension.java

Reply via email to