Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Production release v24.14.0 | April week 1 #2038

Merged
merged 29 commits into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
93b85ed
Bump jwcrypto from 1.5.1 to 1.5.6 (#1969)
dependabot[bot] Mar 17, 2024
5545aa4
Prescription: Titrated drug dose (#1692)
GokulramGHV Mar 17, 2024
257abe6
fix: Custom Migration to clean no input values as null in Daily Round…
aeswibon Mar 17, 2024
114c643
ExternalIDSerializerField to be UUID Field instead of Field (#1958)
rithviknishad Mar 17, 2024
7f3bb93
Add validation checks in ResourceRequestSerializer (#1928)
rash-27 Mar 17, 2024
c0e66fd
Add assigned_clinicians field to PatientConsultation model (#1900)
Ashesh3 Mar 17, 2024
29cf6d8
Bump the boto group with 2 updates (#1979)
dependabot[bot] Mar 17, 2024
99ab4e0
merge migrations (#1980)
sainak Mar 18, 2024
3e3b65d
update branch names in docs and workflows (#1981)
sainak Mar 18, 2024
02804ec
Add nurse logins for cypress testing (#1985)
AshrafMd-1 Mar 19, 2024
0ff895a
Duplicated .pdf in the discharge summary file names (#1978)
krassowska Mar 20, 2024
9aa1bbb
Bump the boto group with 2 updates (#1986)
dependabot[bot] Mar 20, 2024
0ecbad0
Resolve Dependencies (#1992)
vigneshhari Mar 20, 2024
6d68486
Staging release for v24.13.0 (#1993)
sainak Mar 20, 2024
8358849
fixes issues with patient annotate + distinct not implemented for csv…
rithviknishad Mar 22, 2024
5e750a4
fixes issues with patient annotate + distinct not implemented for csv…
rithviknishad Mar 22, 2024
0f321b0
reset password schema for API docs swagger updated #1434 (#1934)
itxsoumya Mar 24, 2024
f4824be
Replace age field with DOB in users model (#1935)
rash-27 Mar 24, 2024
535f6a5
[BUG] fix Location/ Bed Management issue ( District Lab Admin Account…
AnkurPrabhu Mar 24, 2024
55a7581
track previous consultation (#1907)
Omkar76 Mar 24, 2024
e73b454
Adds missing merge migrations (#2011)
rithviknishad Mar 25, 2024
ce7073e
Fixes discharged patients CSV export (#2010)
rithviknishad Mar 25, 2024
0d34f12
Fixes discharged patients CSV export (#2009)
rithviknishad Mar 25, 2024
12c645d
Adds support for validating integrity of fixtures in tests workflow (…
rithviknishad Mar 25, 2024
bbe35a4
Merge pull request #2025 from coronasafe/develop
gigincg Mar 28, 2024
4e8ea02
fix dummy data
sainak Mar 28, 2024
6ded533
Merge pull request #2030 from coronasafe/sainak/fix/dummy-data-staging
gigincg Mar 28, 2024
fa46f2f
Added consent records to patient consultation (#2006)
shivankacker Mar 28, 2024
ae87c53
Merge pull request #2032 from coronasafe/develop
gigincg Mar 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: Docs
on:
push:
branches:
- master
- develop
paths:
- "docs/**"
pull_request:
branches:
- master
- develop
paths:
- "docs/**"
workflow_dispatch:
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
retention-days: 30

deploy-docs:
if: github.repository == 'coronasafe/care' && github.ref == 'refs/heads/master'
if: github.repository == 'coronasafe/care' && github.ref == 'refs/heads/develop'
name: Deploy docs
runs-on: ubuntu-latest
needs: build-docs
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Lint Code Base

on:
pull_request:
branches: [master]
branches:
- develop
- staging
merge_group:

jobs:
Expand All @@ -24,7 +26,7 @@ jobs:
- name: Lint Code Base
uses: github/super-linter/slim@v5
env:
DEFAULT_BRANCH: master
DEFAULT_BRANCH: develop
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
VALIDATE_PYTHON_BLACK: true
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
with:
load: true
set: |
*.cache-from=type=local,src=/tmp/.buildx-cache
*.cache-to=type=local,dest=/tmp/.buildx-cache-new
*.cache-from=type=local,src=/tmp/.buildx-cache
*.cache-to=type=local,dest=/tmp/.buildx-cache-new
files: docker-compose.yaml,docker-compose.local.yaml

- name: Start services
Expand All @@ -35,6 +35,9 @@ jobs:
- name: Check migrations
run: make checkmigration

- name: Validate integrity of fixtures
run: make load-dummy-data

- name: Run tests
run: make test-coverage

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repos:
rev: v4.4.0
hooks:
- id: no-commit-to-branch
args: [--branch, master, --branch, production]
args: [--branch, develop, --branch, staging, --branch, production]
- id: check-merge-conflict
- id: check-builtin-literals
- id: mixed-line-ending
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"githubPullRequests.ignoredPullRequestBranches": ["master"],
"githubPullRequests.ignoredPullRequestBranches": ["develop", "staging"],
"python.formatting.blackPath": "${workspaceFolder}/.venv/bin/black",
"python.formatting.provider": "black",
"python.languageServer": "Pylance",
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pre-commit install

to run pre-commit on your branch:
```bash
pre-commit run --files $(git diff --name-only master...HEAD)
pre-commit run --files $(git diff --name-only develop...HEAD)
```

#### Using Docker
Expand Down
14 changes: 7 additions & 7 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = "pypi"
[packages]
argon2-cffi = "==23.1.0"
authlib = "==1.2.1"
boto3 = "==1.34.27"
boto3 = "==1.34.65"
celery = "==5.3.6"
django = "==4.2.10"
django-environ = "==0.11.2"
Expand All @@ -23,18 +23,18 @@ django-rest-passwordreset = "==1.3.0"
django-simple-history = "==3.3.0"
djangoql = "==0.17.1"
djangorestframework = "==3.14.0"
djangorestframework-simplejwt = "==5.3.0"
djangorestframework-simplejwt = "==5.3.1"
dry-rest-permissions = "==0.1.10"
drf-nested-routers = "==0.93.4"
drf-spectacular = "==0.26.4"
"fhir.resources" = "==6.5.0"
gunicorn = "==21.2.0"
healthy-django = "==0.1.0"
jsonschema = "==4.20.0"
jwcrypto = "==1.5.1"
jwcrypto = "==1.5.6"
newrelic = "==9.3.0"
pillow = "==10.2.0"
psycopg = "==3.1.14"
psycopg = "==3.1.18"
pycryptodome = "==3.20.0"
pydantic = "==1.10.12" # fix for fhir.resources < 7.0.2
pyjwt = "==2.8.0"
Expand All @@ -48,17 +48,17 @@ redis-om = "==0.2.1"

[dev-packages]
black = "==23.9.1"
boto3-stubs = {extras = ["s3", "boto3"], version = "==1.34.27"}
boto3-stubs = {extras = ["s3", "boto3"], version = "==1.34.65"}
coverage = "==7.4.0"
debugpy = "==1.7.0"
debugpy = "==1.8.1"
django-coverage-plugin = "==3.1.0"
django-debug-toolbar = "==4.2.0"
django-extensions = "==3.2.3"
django-silk = "==5.0.3"
django-stubs = "==4.2.4"
djangorestframework-stubs = "==3.14.2"
factory-boy = "==3.3.0"
flake8 = "==6.1.0"
flake8 = "==7.0.0"
freezegun = "==1.2.2"
ipython = "==8.15.0"
isort = "==5.12.0"
Expand Down
Loading
Loading