Skip to content

Commit 1123491

Browse files
chore(deps): update agp to v8.8.2 (#5281)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.android.lint](https://developer.android.com/studio/build) ([source](https://android.googlesource.com/platform/tools/base)) | `8.8.1` -> `8.8.2` | [![age](https://developer.mend.io/api/mc/badges/age/maven/com.android.lint:com.android.lint.gradle.plugin/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/com.android.lint:com.android.lint.gradle.plugin/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/com.android.lint:com.android.lint.gradle.plugin/8.8.1/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.android.lint:com.android.lint.gradle.plugin/8.8.1/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [com.android.library](https://developer.android.com/studio/build) ([source](https://android.googlesource.com/platform/tools/base)) | `8.8.1` -> `8.8.2` | [![age](https://developer.mend.io/api/mc/badges/age/maven/com.android.library:com.android.library.gradle.plugin/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/com.android.library:com.android.library.gradle.plugin/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/com.android.library:com.android.library.gradle.plugin/8.8.1/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.android.library:com.android.library.gradle.plugin/8.8.1/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [com.android.application](https://developer.android.com/studio/build) ([source](https://android.googlesource.com/platform/tools/base)) | `8.8.1` -> `8.8.2` | [![age](https://developer.mend.io/api/mc/badges/age/maven/com.android.application:com.android.application.gradle.plugin/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/com.android.application:com.android.application.gradle.plugin/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/com.android.application:com.android.application.gradle.plugin/8.8.1/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.android.application:com.android.application.gradle.plugin/8.8.1/8.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/simpledotorg/simple-android). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuMiIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Sasikanth Miriyampalli <[email protected]>
1 parent 556e36a commit 1123491

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@
6262
- Bug fixes in CI workflows
6363
- Fetch `lab_based_cvd_risk_calculation_sheet` from remote config
6464
- Add `cholesterol_value` to `MedicalHistory` table
65-
- Bump AGP to v8.8.1
6665
- Fix JSON variable name in non-lab based statin calculation sheet
6766
- Add `LabBasedCVDRiskCalculator` and effect to calculate lab based cvd risk
6867
- Add `CholesterolEntrySheet`
68+
- Bump AGP to v8.8.2
6969

7070
### Fixes
7171

app/src/test/java/org/simple/clinic/summary/PatientSummaryEffectHandlerTest.kt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,11 @@ class PatientSummaryEffectHandlerTest {
934934
dateOfBirth = null,
935935
)
936936
)
937-
val medicalHistory = TestData.medicalHistory(isSmoking = Yes)
937+
val medicalHistory = TestData.medicalHistory(
938+
isSmoking = Yes,
939+
hasDiabetes = Yes,
940+
cholesterol = 400f,
941+
)
938942
val bloodPressure = TestData.bloodPressureMeasurement(
939943
UUID.fromString("3e8c246f-91b9-4f8c-81fe-91b67ac0a2d5"),
940944
systolic = 130,
@@ -948,8 +952,7 @@ class PatientSummaryEffectHandlerTest {
948952
patientUuid = patientUuid,
949953
defaultHistoryUuid = uuidGenerator.v4()
950954
)) doReturn medicalHistory
951-
whenever(cvdRiskRepository.getCVDRiskImmediate(patientUuid)) doReturn
952-
cvdRisk
955+
whenever(cvdRiskRepository.getCVDRiskImmediate(patientUuid)) doReturn cvdRisk
953956

954957
//when
955958
testCase.dispatch(CalculateLabBasedCVDRisk(patient = patient))

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
agp = "8.8.1"
2+
agp = "8.8.2"
33

44
androidx-cameraView = "1.4.1"
55
androidx-camera = "1.4.1"

0 commit comments

Comments
 (0)