diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c6e96682c..c361814bd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,43 @@ # Changelog +## 2024.3.1 (2024-06-24) + +### Feat + +- add healthcare form category & minor fixes (#1555) +- use Matomo tracking web component, with accept/disagree prompt (#1546) +- **frontend**: upgrade React v17 --> v18 (#1542) + +### Fix + +- **submissionDetails**: retrieve task_id directly from submissionDetails (#1595) +- **frontend**: set submission table task_id from submission task_id +- ensure task_id field is always included with submissions (#1589) +- **frontend**: replace getting task_id from submission with url param +- ensure `status` Entity field is updated alongside survey form `status` field (#1586) +- **createProject**: disable submit btn until redirection to details page (#1585) +- **customTable**: misalignment via classname add (#1578) +- **frontend**: recharts UI misalignment (#1575) +- **taskSubmissions**: show task card of tasks even if no features, view submissions btn hide if no features (#1571) +- **charts**: size state to track responsive container to fix charts misalignment (#1570) +- **projectDetailsV2**: taskLayer color not update issue solve (#1569) +- **frontend**: block project create if no extract features (#1561) +- **frontend**: redirect user to requested page after login (#1559) +- **frontend**: only display matomo tracking banner in prod +- **frontend**: do not display pmtiles generated for another project +- **frontend**: add tile format to basemaps table, only show cache icon if pmtile +- **backend**: loading entity by intent using uuid xformid (#1538) +- **frontend**: correctly invoke matomo & sentry tracking in prod + +### Refactor + +- **frontend**: update links for odk collect by intent task_id --> task_filter +- **frontend**: update download url for custom ODK Collect APK +- **frontend**: update link to custom odk collect from intent apk +- **frontend**: import hotosm/ui styles.css --> style.css change +- remove reference to 'topo' basemap imagery provider (usgs) +- rename fmtm.dev --> docs.fmtm.dev for docs site + ## 2024.3.0 (2024-05-28) ### Feat diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 1e77c42033..f5cd656b8a 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -3,7 +3,7 @@ type: application name: fmtm description: Field Mapping Tasking Manager - coordinated field mapping. version: "0.1.0" -appVersion: "2024.3.0" +appVersion: "2024.3.1" maintainers: - email: sam.woodcock@hotosm.org name: Sam Woodcock diff --git a/src/backend/app/__version__.py b/src/backend/app/__version__.py index 2dd3a5d427..1e9d9afbc6 100644 --- a/src/backend/app/__version__.py +++ b/src/backend/app/__version__.py @@ -1 +1 @@ -__version__ = "2024.3.0" +__version__ = "2024.3.1" diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index 011b810db4..73bb165adb 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -136,7 +136,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "2024.3.0" +version = "2024.3.1" version_files = [ "pyproject.toml:version", "app/__version__.py", diff --git a/src/frontend/package.json b/src/frontend/package.json index 73893f744d..f3999d2bfb 100755 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -1,6 +1,6 @@ { "name": "fmtm", - "version": "2024.3.0", + "version": "2024.3.1", "scripts": { "build": "vite build", "build:dev": "vite build --mode development",