-
Notifications
You must be signed in to change notification settings - Fork 13
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-1.42.0 to master (#1091)
* update to 1.42.0 * update workflow and pipeline to use 1.42.0 * feat: allow editable comments for model year report discussion (#1093) * feat: allow editable comments for model year report discussion * chore: cleanup and rearrange file structure * chore: linting * feat: zeva-267 - edit credit application comments (#1094) * feat: zeva-267 - edit credit application comments * small change * remove immer Co-authored-by: Alex Zorkin <47334977+AlexZorkin@users.noreply.github.com> * run backend test (#1099) * comment out test * fix: added filter that removes inactive users from email subscribed list (#1095) * fix: zeva-445 - highlight new models on submit (#1098) * fix: adds directorAction into condition for displaying 'return to analyst' button (#1101) * fix: version fix for enums (#1107) * fix: Zeva 443 - 21 error on old submissions (#1106) * fix: adds exclude to has_been_awarded filter to remove any records that have a later timestamp than the current submission * chore: linting * fix: adds more to raw sql query for 11 errors so that icbc data uploaded after the sales submission would be excluded when calculating warnings (ie it will show appropriate 11 errors) * Feat: Supplementary index links - ZEVA-444 (#1103) * fix: reworked index link logic on model year report table * chore: logic cleanup, linting * use python 3.9 (#1113) * add dev deployment * update workflow depencency * update apiVersion * remove sschema spy * chore: adds vehicleListSerializer so that vehicle list is returned faster, uses serializer method fields to return just necessary data rather than calling other serializers that return data that is not needed (#1112) * feat: adds condition for displaying checkboxes and button bars on model year report pages (#1109) * Fix: Model Year Report Tests for change log sales - ZEVA 432 (#1118) * fix: enum fixes on credit test * feat: model year reports testing harness fixed, assessment patch logic tested * chore: pretty ignore file * fix: preinitialize table render for validated-details view - ZEVA 460 (#1121) * fix: preinitialize table render for validated-details view * fix: logic fix to prevent re-rendering * Update frontend base image (#1117) * split dev deploy (#1127) * Frontend try 1.42.0 (#1130) Update the assemble file * update dev deploy name * feat: zeva-267 - add ability to delete comments (#1136) * remove dev deployment * -changes how action bar and signoff is conditionally rendered, so it now does not render if the report has been submitted, assessed, or reassessed (#1140) Co-authored-by: Alex Zorkin <47334977+AlexZorkin@users.noreply.github.com> Co-authored-by: tim738745 <98717409+tim738745@users.noreply.github.com> Co-authored-by: Emily <44536222+emi-hi@users.noreply.github.com>
- Loading branch information
1 parent
e4615cb
commit e24489a
Showing
54 changed files
with
1,257 additions
and
490 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,37 @@ | ||
## For each release, the value of workflow name, branches, PR_NUMBER and RELEASE_NAME need to be adjusted accordingly | ||
## Also change the .pipelin/lib/config.js version number | ||
name: new-python-image | ||
|
||
on: | ||
push: | ||
branches: [ new-python39-image-1.42.0 ] | ||
workflow_dispatch: | ||
workflow_call: | ||
|
||
env: | ||
## The pull request number of the Tracking pull request to merge the release branch to main | ||
PR_NUMBER: 1102 | ||
RELEASE_NAME: new-python39-image-1.42.0 | ||
|
||
jobs: | ||
|
||
## This is the CI job | ||
build: | ||
|
||
name: Build ZEVA on Openshift | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
|
||
steps: | ||
|
||
## it will checkout to /home/runner/work/zeva/zeva | ||
- name: Check out repository | ||
uses: actions/checkout@v2 | ||
|
||
# open it when zeva updated the python packages | ||
- name: Run django tests | ||
uses: kuanfandevops/django-test-action@zeva-django-test | ||
with: | ||
settings-dir-path: "backend/zeva" | ||
requirements-file: "backend/requirements.txt" | ||
managepy-dir: backend |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.6 | ||
FROM python:3.9 | ||
|
||
ENV PYTHONUNBUFFERED=1 | ||
|
||
|
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.