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

Upgrade FHIR SDK dependencies ⬆️ #3423

Merged
merged 43 commits into from
Sep 25, 2024
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
c04024f
Upgrade FHIR SDK depenencies ⬆️
ndegwamartin Jul 31, 2024
e2da55e
Upragde SDC library
ndegwamartin Aug 8, 2024
f6bbada
Replace JWT token parser library
ndegwamartin Aug 9, 2024
64c6297
Fix CQL Content Test
ndegwamartin Aug 9, 2024
7e616ac
Fix unit tests ✅
ndegwamartin Aug 13, 2024
4f3c74c
Refactor to remove Dispatch Provider
ndegwamartin Aug 13, 2024
6d35db9
Fix unit test ✅
ndegwamartin Aug 16, 2024
21420ae
Refactor Knowledge Manager Resources Persistance
ndegwamartin Aug 19, 2024
6920620
Refactor CQL Content tests
ndegwamartin Aug 20, 2024
fdc9097
Fix AppSettingModel unit tests ✅
ndegwamartin Aug 20, 2024
ed1dee7
Refactor Cancel previous worflow to use native commands
ndegwamartin Aug 20, 2024
35f22b4
Upgrade CI API level to 34
ndegwamartin Aug 20, 2024
9d83a1d
Clean up Translations
ndegwamartin Aug 21, 2024
8aa5740
Fix measure reporting
ndegwamartin Aug 28, 2024
5074b5a
Fix Workflow Configuration
ndegwamartin Aug 28, 2024
e603cda
Fix QuestionnaireViewModel unit tests ✅
ndegwamartin Aug 28, 2024
25df56e
Clean up WorkManager after running unit tests
ndegwamartin Aug 29, 2024
9b9f922
Remove skyscreamer test dependency
ndegwamartin Aug 29, 2024
2cfe37c
Fix build 💚
ndegwamartin Aug 29, 2024
ff1e3c6
Clean up gradle dependencies configuration
ndegwamartin Sep 2, 2024
9a96a82
Move measure reporting evaluation to BG thread
ndegwamartin Sep 2, 2024
8ff7951
Fix MeasureReportRepositoryTest
ndegwamartin Sep 2, 2024
6c56419
Fix MeasureReportRepositoryTest
ndegwamartin Sep 2, 2024
4057e11
Fix MeasureReportViewModel unit tests ✅
ndegwamartin Sep 3, 2024
74f754d
Fix Measure Reporting
ndegwamartin Sep 9, 2024
5e6b203
Migrate Engine and Workflow libraries
ndegwamartin Sep 10, 2024
a1ef8cd
Update Workflow library
ndegwamartin Sep 11, 2024
ae6708d
Fix evaluate Population Measure
ndegwamartin Sep 11, 2024
afb4ade
Update SDC snapshot to 14.1
ndegwamartin Sep 13, 2024
3d7b2e2
Remove unrecommended forced portrait format
ndegwamartin Sep 13, 2024
affa880
Refactor from using deprecated KnowledgeManager methods loadResources
ndegwamartin Sep 13, 2024
37a462b
Clean up TOML catalog file
ndegwamartin Sep 16, 2024
d3250b2
Revert Knowledge Manager and Workflow Library Upgrades
ndegwamartin Sep 17, 2024
9774be9
Display symbol instead of unicode
FikriMilano Sep 18, 2024
c9d2bde
Refactor usage of FHIR JSONParser to support concurrency
ndegwamartin Sep 18, 2024
d2ffbb5
Update FHIR SDK library versions
ndegwamartin Sep 18, 2024
234c7d6
Geowidget configuration
ndegwamartin Sep 18, 2024
0a72665
Fix build 💚
ndegwamartin Sep 18, 2024
7f4da95
SDK Engine to RC3
ndegwamartin Sep 20, 2024
f694d0b
Fix build
ndegwamartin Sep 20, 2024
d3e1933
Merge remote-tracking branch 'origin/main' into migrate-deps
ndegwamartin Sep 24, 2024
053bfad
Fix build 💚
ndegwamartin Sep 24, 2024
9e3ed9e
Fix build 💚
ndegwamartin Sep 24, 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
Prev Previous commit
Next Next commit
Update Workflow library
- Fix build
- Fix reporting NPE
  • Loading branch information
ndegwamartin committed Sep 20, 2024

Verified

This commit was signed with the committer’s verified signature.
frostming Frost Ming
commit a1ef8cda3740d1b05bb80523908050af55b65ed4
2 changes: 1 addition & 1 deletion android/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ fhir-sdk-contrib-locationwidget = "0.1.0-alpha01-preview2-SNAPSHOT"
fhir-sdk-data-capture = "1.1.0-preview14-SNAPSHOT"
FikriMilano marked this conversation as resolved.
Show resolved Hide resolved
fhir-sdk-engine = "1.0.0-preview14-SNAPSHOT"
fhir-sdk-knowledge = "0.1.0-beta01-preview-SNAPSHOT"
fhir-sdk-workflow = "0.1.0-alpha04-preview13-SNAPSHOT"
fhir-sdk-workflow = "0.1.0-alpha04-preview13.1-SNAPSHOT"
foundation = "1.6.8"
fragment-ktx = "1.8.2"
glide = "4.16.0"
Original file line number Diff line number Diff line change
@@ -18,6 +18,7 @@ package org.smartregister.fhircore.quest.integration

import androidx.test.core.app.ApplicationProvider
import androidx.test.platform.app.InstrumentationRegistry
import com.google.android.fhir.CrudFhirEngine
import com.google.android.fhir.FhirEngine
import com.google.android.fhir.LocalChange
import com.google.android.fhir.SearchResult
@@ -109,6 +110,10 @@ object Faker {
}

override suspend fun update(vararg resource: Resource) {}

override suspend fun withTransaction(block: suspend CrudFhirEngine.() -> Unit) {
TODO("Not yet implemented")
}
}

val fhirResourceService =