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

Bump version to v4.5.0 #2684

Merged
merged 2 commits into from
Aug 28, 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
30 changes: 30 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,36 @@ Changelog for Onadata

``* represents releases that introduce new migrations``

v4.5.0(2024-08-28)
------------------
- Fix argument of type 'ProjectUserObjectPermission' is not iterable
`PR #2682 <https://github.com/onaio/onadata/pull/2682>`
[@kelvin-muchiri]
- Updated docker file to use latest base images
`PR #2680 <https://github.com/onaio/onadata/pull/2680>`
[@ukanga]
- Add support for downloading EntityList dataset
`PR #2678 <https://github.com/onaio/onadata/pull/2678>`
[@kelvin-muchiri]
- Fix exception thrown when updating organization profile
`PR #2677 <https://github.com/onaio/onadata/pull/2677>`
[@FrankApiyo]
- Create Entity only if submission is approved when form submission review is enabled
`PR #2673 <https://github.com/onaio/onadata/pull/2673>`
[@kelvin-muchiri]
- docker: Use latest build of python-deps
`PR #2670 <https://github.com/onaio/onadata/pull/2670>`
[@ukanga]
- Fix stale data sent to rest services after editing submission
`PR #2667 <https://github.com/onaio/onadata/pull/2667>`
[@kelvin-muchiri]
- Add ability to have configurable Django admin path
`PR #2666 <https://github.com/onaio/onadata/pull/2666>`
[@kelvin-muchiri]
- User per-role cache key for the organization_profile_viewset
`PR #2665 <https://github.com/onaio/onadata/pull/2665>`
[@FrankApiyo]

v4.4.0(2024-08-13)
------------------
- Fix untracked Django's view of migration state
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.4.0"
__version__ = "4.5.0"


# 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.4.0
version = 4.5.0
description = Collect Analyze and Share Data
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand Down
Loading