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 4.10.0 #2747

Merged
merged 1 commit into from
Dec 2, 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
18 changes: 18 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@ Changelog for Onadata

``* represents releases that introduce new migrations``

v.4.10.0(2024-12-02)
--------------------
- Add management command to restore soft deleted form
`PR #2744 <https://github.com/onaio/onadata/pull/2744>`
[@kelvin-muchiri]
- fix: ensure xform GET query parameter is numeric
`PR #2743 <https://github.com/onaio/onadata/pull/2743>`
[@ukanga]
- Check error message in response
`PR #2742 <https://github.com/onaio/onadata/pull/2742>`
[@ukanga]
- fix: value error exception for non numeric project id
`PR #2741 <https://github.com/onaio/onadata/pull/2741>`
[@ukanga]
- Delete bulk submissions asynchronously
`PR #2738 <https://github.com/onaio/onadata/pull/2738>`
[@kelvin-muchiri]

v4.9.2(2024-11-18)
------------------
- Security updates
Expand Down
2 changes: 1 addition & 1 deletion onadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from __future__ import absolute_import, unicode_literals

__version__ = "4.9.2"
__version__ = "4.10.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.9.2
version = 4.10.0
description = Collect Analyze and Share Data
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand Down
Loading