-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tracking pull request to merge release-2.6.0 to master (#2236)
* update for new 2.6.0 release * update PR_NUMBER * feat: added line26C line to schedule summary to account for credit giveback scenarios * chore: updated snapshots * chore: test updates * chore: updated linting and minor fixes * chore: backend linting fixes * WIP * removing logging * fixing linting * removing jquery reference * fix: tfrs-2131 - change so that attorney address title doesn't display if there are no attornery address fields * fix: logic fix for schedule summary * clamav image move (#2246) * update image repo * fix: bug fixes on create supplemental related to line 26C * update approval list * fix: removed incorrect logic * chore: unit test update * chore: docs updated for branch naming conventions * chore: docs updated for branch naming conventions * fix: updated compliance report details serializer to account for positive credit balances when setting penalty amount * chore: updated comment * Bump sqlparse from 0.4.3 to 0.4.4 in /backend Bumps [sqlparse](https://github.com/andialbrecht/sqlparse) from 0.4.3 to 0.4.4. - [Release notes](https://github.com/andialbrecht/sqlparse/releases) - [Changelog](https://github.com/andialbrecht/sqlparse/blob/master/CHANGELOG) - [Commits](andialbrecht/sqlparse@0.4.3...0.4.4) --- updated-dependencies: - dependency-name: sqlparse dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * feat: tfrs-2127 - download supplier users * WIP * WIP * WIP * update dashboard and compliance reporting page * removing logging * Update User.py * add comment * removing logging * feat: tfrs-2159 - exact status filter on fuel suppliers page * fix: tfrs-2258 - credit history table pagination fix * fix: tfrs-2127 - changes to fs users spreadsheet download * fix: tfrs-2127 - use external username * minor fix * unite test and some minor fix * use UserCreationRequest to get external usernames * fix linting and removing commented code * fix: updated line 27 logic and added unit tests to cover cases * chore: auto lint fixes * chore: rebase and update snapshots * Default Sorting by Latest Submission Date for the Secure File Submissions Table * fix to close the confirmation window on submission * rollback backend unrelated changes * removing sorting on first 4 column and fix for sorting * formating code * chore(deps): bump django from 3.2.18 to 3.2.19 in /backend Bumps [django](https://github.com/django/django) from 3.2.18 to 3.2.19. - [Commits](django/django@3.2.18...3.2.19) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * default sorting for file submissions * layout fix * styling fix * fix: fixed 3 bugs on compliance list view filtering, updating linting, snapshots updated * cleanup --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: AlexZorkin <[email protected]> Co-authored-by: Alex Zorkin <[email protected]> Co-authored-by: jig-patel <[email protected]> Co-authored-by: tim738745 <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Your Name <[email protected]> Co-authored-by: Prashanth <[email protected]>
- Loading branch information
1 parent
a73fdb1
commit b3f0a9c
Showing
94 changed files
with
4,224 additions
and
3,899 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
## For each release, the value of name, branches, RELEASE_NAME and PR_NUMBER need to be adjusted accordingly | ||
## For each release, update lib/config.js: version and releaseBranch | ||
|
||
name: TFRS release-2.5.0 | ||
name: TFRS release-2.6.0 | ||
|
||
on: | ||
push: | ||
branches: [ release-2.5.0 ] | ||
branches: [ release-2.6.0 ] | ||
paths: | ||
- frontend/** | ||
- backend/** | ||
|
@@ -15,8 +15,8 @@ on: | |
env: | ||
## The pull request number of the Tracking pull request to merge the release branch to main | ||
## Also remember to update the version in .pipeline/lib/config.js | ||
PR_NUMBER: 2187 | ||
RELEASE_NAME: release-2.5.0 | ||
PR_NUMBER: 2236 | ||
RELEASE_NAME: release-2.6.0 | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
|
@@ -153,7 +153,7 @@ jobs: | |
uses: trstringer/[email protected] | ||
with: | ||
secret: ${{ github.TOKEN }} | ||
approvers: AlexZorkin,emi-hi,tim738745,vibhiquartech,kuanfandevops | ||
approvers: AlexZorkin,emi-hi,tim738745,kuanfandevops,jig-patel | ||
minimum-approvals: 1 | ||
issue-title: "TFRS ${{ env.RELEASE_NAME }} Test Deployment" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
backend/api/migrations/0206_schedulesummary_credits_offset_c.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.18 on 2023-03-22 22:46 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api', '0205_auto_20230321_0206'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='schedulesummary', | ||
name='credits_offset_c', | ||
field=models.IntegerField(blank=True, null=True), | ||
), | ||
] |
23 changes: 23 additions & 0 deletions
23
backend/api/migrations/0207_alter_notificationsubscription_notification_type.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 3.2.18 on 2023-04-26 03:38 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api', '0206_schedulesummary_credits_offset_c'), | ||
] | ||
|
||
# The "choices" attribute of the field below was changed so that the actual values (the first argument of each choice, or pair) | ||
# match what is actually being saved in the database, which is the string value of an enum member of NotificationType. | ||
# Previously, those actual values were the enum members themselves, and so when get_notification_type_display() was called | ||
# on a NotificationSubscription model instance, we would not get the intended value. | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='notificationsubscription', | ||
name='notification_type', | ||
field=models.CharField(choices=[('NotificationType.CREDIT_TRANSFER_CREATED', 'Credit Transfer Proposal Created'), ('NotificationType.CREDIT_TRANSFER_SIGNED_1OF2', 'Credit Transfer Proposal Signed 1/2'), ('NotificationType.CREDIT_TRANSFER_SIGNED_2OF2', 'Credit Transfer Proposal Signed 2/2'), ('NotificationType.CREDIT_TRANSFER_PROPOSAL_REFUSED', 'Credit Transfer Proposal Refused'), ('NotificationType.CREDIT_TRANSFER_PROPOSAL_ACCEPTED', 'Credit Transfer Proposal Accepted'), ('NotificationType.CREDIT_TRANSFER_RECOMMENDED_FOR_APPROVAL', 'Credit Transfer Proposal Recommended For Approval'), ('NotificationType.CREDIT_TRANSFER_RECOMMENDED_FOR_DECLINATION', 'Credit Transfer Proposal Recommended For Declination'), ('NotificationType.CREDIT_TRANSFER_DECLINED', 'Credit Transfer Proposal Declined'), ('NotificationType.CREDIT_TRANSFER_APPROVED', 'Credit Transfer Proposal Approved'), ('NotificationType.CREDIT_TRANSFER_RESCINDED', 'Credit Transfer Proposal Rescinded'), ('NotificationType.CREDIT_TRANSFER_COMMENT', 'Credit Transfer Proposal Comment Created Or Updated'), ('NotificationType.CREDIT_TRANSFER_INTERNAL_COMMENT', 'Credit Transfer Proposal Internal Comment Created Or Updated'), ('NotificationType.PVR_CREATED', 'PVR Created'), ('NotificationType.PVR_RECOMMENDED_FOR_APPROVAL', 'PVR Recommended For Approval'), ('NotificationType.PVR_RESCINDED', 'PVR Rescinded'), ('NotificationType.PVR_PULLED_BACK', 'PVR Pulled Back'), ('NotificationType.PVR_DECLINED', 'PVR Declined'), ('NotificationType.PVR_APPROVED', 'PVR Approved'), ('NotificationType.PVR_COMMENT', 'PVR Comment Created Or Updated'), ('NotificationType.PVR_INTERNAL_COMMENT', 'PVR Internal Comment Created Or Updated'), ('NotificationType.PVR_RETURNED_TO_ANALYST', 'PVR Returned to Analyst'), ('NotificationType.DOCUMENT_PENDING_SUBMISSION', 'Document Pending Submission'), ('NotificationType.DOCUMENT_SUBMITTED', 'Document Submitted'), ('NotificationType.DOCUMENT_SCAN_FAILED', 'Document Security Scan Failed'), ('NotificationType.DOCUMENT_RECEIVED', 'Document Received'), ('NotificationType.DOCUMENT_ARCHIVED', 'Document Archived'), ('NotificationType.COMPLIANCE_REPORT_DRAFT', 'Compliance Report Draft Saved'), ('NotificationType.COMPLIANCE_REPORT_SUBMITTED', 'Compliance Report Submitted'), ('NotificationType.COMPLIANCE_REPORT_RECOMMENDED_FOR_ACCEPTANCE_ANALYST', 'Compliance Report Recommended for Acceptance - Analyst'), ('NotificationType.COMPLIANCE_REPORT_RECOMMENDED_FOR_REJECTION_ANALYST', 'Compliance Report Recommended for Rejection - Analyst'), ('NotificationType.COMPLIANCE_REPORT_RECOMMENDED_FOR_ACCEPTANCE_MANAGER', 'Compliance Report Recommended for Acceptance - Manager'), ('NotificationType.COMPLIANCE_REPORT_RECOMMENDED_FOR_REJECTION_MANAGER', 'Compliance Report Recommended for Rejection - Manager'), ('NotificationType.COMPLIANCE_REPORT_ACCEPTED', 'Compliance Report Accepted'), ('NotificationType.COMPLIANCE_REPORT_REJECTED', 'Compliance Report Rejected'), ('NotificationType.COMPLIANCE_REPORT_REQUESTED_SUPPLEMENTAL', 'Compliance Report Requested Supplemental'), ('NotificationType.EXCLUSION_REPORT_DRAFT', 'Exclusion Report Draft Saved'), ('NotificationType.EXCLUSION_REPORT_SUBMITTED', 'Exclusion Report Submitted'), ('NotificationType.EXCLUSION_REPORT_RECOMMENDED_FOR_ACCEPTANCE_ANALYST', 'Exclusion Report Recommended for Acceptance - Analyst'), ('NotificationType.EXCLUSION_REPORT_RECOMMENDED_FOR_REJECTION_ANALYST', 'Exclusion Report Recommended for Rejection - Analyst'), ('NotificationType.EXCLUSION_REPORT_RECOMMENDED_FOR_ACCEPTANCE_MANAGER', 'Exclusion Report Recommended for Acceptance - Manager'), ('NotificationType.EXCLUSION_REPORT_RECOMMENDED_FOR_REJECTION_MANAGER', 'Exclusion Report Recommended for Rejection - Manager'), ('NotificationType.EXCLUSION_REPORT_ACCEPTED', 'Exclusion Report Accepted'), ('NotificationType.EXCLUSION_REPORT_REJECTED', 'Exclusion Report Rejected'), ('NotificationType.EXCLUSION_REPORT_REQUESTED_SUPPLEMENTAL', 'Exclusion Report Requested Supplemental')], max_length=128), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.