diff --git a/CHANGES.rst b/CHANGES.rst index 427e7dc0d1..43dae357ea 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,12 +3,30 @@ Changelog for Onadata ``* represents releases that introduce new migrations`` +v4.9.0(2024-10-22) +------------------ +- Update pre-commit hooks + `PR #2717 ` + [@kelvin-muchiri] +- Add/remove user from organization synchronously + `PR #2715 ` + [@kelvin-muchiri] +- Redirect client to download media directly from Amazon S3 / Azure Storage + `PR #2713 ` + [@kelvin-muchiri] +- Add organization email to organization profile instead of adding to organization user + `PR #2712 ` + [@FrankApiyo] +- Disable sending of activation email when creating organization + `PR #2710 ` + [@kelvin-muchiri] + v4.8.0(2024-09-23) ------------------ -- Update ona-oidc version to 1.1.1 +- Update ona-oidc version to 1.1.1 `PR #2708 ` [@FrankApiyo] -- Add support for OR operation data filter for date fields +- Add support for OR operation data filter for date fields `PR #2701 ` [@kelvin-muchiri] @@ -62,13 +80,13 @@ v4.5.1(2024-08-30) v4.5.0(2024-08-28) ------------------ -- Fix argument of type 'ProjectUserObjectPermission' is not iterable +- Fix argument of type 'ProjectUserObjectPermission' is not iterable `PR #2682 ` [@kelvin-muchiri] -- Updated docker file to use latest base images +- Updated docker file to use latest base images `PR #2680 ` [@ukanga] -- Add support for downloading EntityList dataset +- Add support for downloading EntityList dataset `PR #2678 ` [@kelvin-muchiri] - Fix exception thrown when updating organization profile @@ -140,7 +158,7 @@ v4.3.4(2024-07-29) v4.3.3(2024-07-10) ------------------ -- Add Entity related data to forms on project retrieve endpoint +- Add Entity related data to forms on project retrieve endpoint `PR #2639 ` [@kelvin-muchiri] - Ignore EntityList model permissions on API endpoints @@ -149,10 +167,10 @@ v4.3.3(2024-07-10) - Docs update `PR #2629 ` [@ukanga] -- Make pending migrations +- Make pending migrations `PR #2632 ` [@kelvin-muchiri] -- Check attempts is truthy before int comparison +- Check attempts is truthy before int comparison `PR #2618 ` [@ukanga] - Tune migration performance @@ -185,7 +203,7 @@ v4.3.0(2024-06-26) - Update messaging endpoint docs `PR #2616 ` [@KipSigei] -- Fix ValueError for User instance primary key in password validation +- Fix ValueError for User instance primary key in password validation `PR #2613 ` [@KipSigei] diff --git a/onadata/__init__.py b/onadata/__init__.py index e3ad6895bd..eb9c4bca19 100644 --- a/onadata/__init__.py +++ b/onadata/__init__.py @@ -4,9 +4,10 @@ ODK Briefcase API and a REST API to manage data analysis, collection and visualization. """ + from __future__ import absolute_import, unicode_literals -__version__ = "4.8.0" +__version__ = "4.9.0" # This will make sure the app is always imported when diff --git a/setup.cfg b/setup.cfg index 67fd31b8a0..e94f9f206b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onadata -version = 4.8.0 +version = 4.9.0 description = Collect Analyze and Share Data long_description = file: README.rst long_description_content_type = text/x-rst