Skip to content

Commit ecade12

Browse files
committed
feat: add changelog and bump version
1 parent ad49f3e commit ecade12

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ Please do not update the unreleased notes.
1111

1212
<!-- Content should be placed here -->
1313

14+
## [v11.3.0](https://github.com/eduNEXT/eox-core/compare/v11.2.0...v11.3.0) - (2025-03-02)
15+
16+
### Added
17+
- Added signed JWT authentication for the OAuth application API to support secure authentication when creating tenant OAuth clients from Control Center.
18+
1419
## [v11.2.0](https://github.com/eduNEXT/eox-core/compare/v11.1.0...v11.2.0) - (2025-01-20)
1520

1621
### Added

eox_core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""
22
Init for main eox-core app
33
"""
4-
__version__ = '11.2.0'
4+
__version__ = '11.3.0'

eox_core/api/support/v1/views.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ def post(self, request, *args, **kwargs): # pylint: disable=too-many-locals
209209
owner user for the application.
210210
"""
211211
message = "Could not get or create edxapp User"
212+
212213
serializer = OauthApplicationSerializer(data=request.data)
213214
serializer.is_valid(raise_exception=True)
214215

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 11.2.0
2+
current_version = 11.3.0
33
commit = False
44
tag = False
55

0 commit comments

Comments
 (0)