From 647adf0bd726099a1b4301b839f5172a3e9ac734 Mon Sep 17 00:00:00 2001 From: stdavis Date: Mon, 14 Oct 2024 08:54:59 -0600 Subject: [PATCH] release: v3.0.9 (645) --- CHANGELOG.md | 21 +++++++++++++++++++++ README.md | 2 +- changelog_context.json | 2 +- src/front/app.config.js | 11 ++++++++++- 4 files changed, 33 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e94d344f..cb2d1965 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## [v3.0.9-645](https://github.com/agrc/roadkill-mobile/compare/v3.0.9-643...v3.0.9-645) (2024-10-14) + + +### Bug Fixes + +* **data:** use arm64-compatible docker image ([a49744c](https://github.com/agrc/roadkill-mobile/commit/a49744cbb74394f200fb861c90ec677f24840747)) +* more reliable offline submissions ([c3962a0](https://github.com/agrc/roadkill-mobile/commit/c3962a022d7636a56a790054fd6db6e089c39dd5)) +* **palletjack:** add additional date fields to be transformed ([0f9977e](https://github.com/agrc/roadkill-mobile/commit/0f9977e3f134f094415d91ab361bc0a45c1e8dc2)) +* **palletjack:** handle date issues and other palletjack fixes ([a34bd45](https://github.com/agrc/roadkill-mobile/commit/a34bd45deb57a626c709155d8a773ec63a7d82c2)) +* **palletjack:** increase function memory ([a0db00c](https://github.com/agrc/roadkill-mobile/commit/a0db00c792652db3bf54a5a240d7e3e5d3df34bd)) +* **palletjack:** update test to match new oid scheme ([0904f34](https://github.com/agrc/roadkill-mobile/commit/0904f346e71649c075602147a9995787d52e3ea9)) +* **website:** fix gtag errors ([0b6bfbe](https://github.com/agrc/roadkill-mobile/commit/0b6bfbea79e7e3ca8bb5278e96bd3d4f1281cd4c)) +* **website:** update prod serve command ([5dbf3cd](https://github.com/agrc/roadkill-mobile/commit/5dbf3cd33e4042bf18f1e631036efd9317a438a6)) + + +### Features + +* **website:** add google analytics ([29d2de3](https://github.com/agrc/roadkill-mobile/commit/29d2de381ca5eb7f8d9dd7c73eb51cdb42e24153)) + + + ## [v3.0.9-643](https://github.com/agrc/roadkill-mobile/compare/v3.0.8-640...v3.0.9-643) (2024-04-24) diff --git a/README.md b/README.md index d9936ddb..681fa808 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ These values are managed in GCP Secrets Manager. After running the terraform, ma 1. From root: `npm run changelog` 1. Clean up change log entries, if needed. 1. Create release commit (e.g. `release: v3.0.0 (123)`) -1. Tag `git tag v3.0.0-123` +1. Tag `git tag v3.0.0-123 (staging)` or `git tag v3.0.0-123 (production)` 1. Pushing to `staging` or `production` will push a new image to the cloud run back end. Do one of the following from `src/front`: diff --git a/changelog_context.json b/changelog_context.json index d1eb7f0b..f9f0ebf0 100644 --- a/changelog_context.json +++ b/changelog_context.json @@ -1,3 +1,3 @@ { - "version": "v3.0.9-643" + "version": "v3.0.9-645" } diff --git a/src/front/app.config.js b/src/front/app.config.js index f870676b..ee06b945 100644 --- a/src/front/app.config.js +++ b/src/front/app.config.js @@ -12,7 +12,7 @@ const names = { const name = names[process.env.ENVIRONMENT]; // perhaps this bump could be automated using a combo of app.config.json and this file? -const buildNumber = 644; +const buildNumber = 645; export default { name, @@ -82,6 +82,15 @@ export default { }, }, plugins: [ + // [ + // 'expo-location', + // { + // isAndroidBackgroundLocationEnabled: true, + // isIosBackgroundLocationEnabled: true, + // isAndroidForegroundServiceEnabled: true, + // isIosForegroundServiceEnabled: true, + // }, + // ], 'expo-apple-authentication', [ '@sentry/react-native/expo',