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

Tag release 4.3.4 #2656

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
27 changes: 27 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@ Changelog for Onadata

``* represents releases that introduce new migrations``

v4.3.4(2024-07-29)
------------------
- Entities search
`PR #2643 <https://github.com/onaio/onadata/pull/2643>`
[@kelvin-muchiri]
- Optimize updates to project `date_modified` field when submitting data
`PR #2642 <https://github.com/onaio/onadata/pull/2642>`
[@KipSigei]
- Add support for defining Entity properties within grouped sections
`PR #2644 <https://github.com/onaio/onadata/pull/2644>`
[@kelvin-muchiri]
- Remove default ordering on XForm, Attachment model
`PR #2645 <https://github.com/onaio/onadata/pull/2645>`
[@kelvin-muchiri]
- Cache XForm manifest data
`PR #2646 <https://github.com/onaio/onadata/pull/2646>`
[@kelvin-muchiri]
- Exclude deleted Entities from form's manifest data by
`PR #2648 <https://github.com/onaio/onadata/pull/2648>`
[@kelvin-muchiri]
- Add email field to the organization serializer
`PR #2647 <https://github.com/onaio/onadata/pull/2647>`
[@FrankApiyo]
- Use actual User, Group instances in migration file
`PR #2655 <https://github.com/onaio/onadata/pull/2655>`
[@kelvin-muchiri]

v4.3.3(2024-07-10)
------------------
- Add Entity related data to forms on project retrieve endpoint
Expand Down
2 changes: 1 addition & 1 deletion onadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
from __future__ import absolute_import, unicode_literals

__version__ = "4.3.3"
__version__ = "4.3.4"


# This will make sure the app is always imported when
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = onadata
version = 4.3.3
version = 4.3.4
description = Collect Analyze and Share Data
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand Down