Compare commits

...

4 Commits

Author SHA1 Message Date
3d2d759d6b build: bump version 1.17.1 -> 1.18.0 2025-07-03 22:55:51 +00:00
Jon
b73de03d27 Merge pull request #851 from nofusscomputing/850-fix-itim-validation-failure 2025-07-04 08:08:00 +09:30
Jon
a9e953812c feat(python): upgrade django 5.1.9 -> 5.1.10
ref: #851
2025-07-04 07:47:21 +09:30
Jon
4344265ed5 fix(itim): Correct config that is in the incorrect format
Users can input config that contains bytecode chars which inturn, makes the config entered a str. convert any config that is a str to a dict, the correct format.

ref: #851 fixes #850
2025-07-04 07:42:05 +09:30
4 changed files with 18 additions and 2 deletions

View File

@ -17,5 +17,5 @@ commitizen:
prerelease_offset: 1
tag_format: $version
update_changelog_on_bump: false
version: 1.17.1
version: 1.18.0
version_scheme: semver

View File

@ -1,3 +1,13 @@
## 1.18.0 (2025-07-03)
### feat
- **python**: upgrade django 5.1.9 -> 5.1.10
### Fixes
- **itim**: Correct config that is in the incorrect format
## 1.17.1 (2025-06-02)
### Fixes

View File

@ -1,3 +1,5 @@
import json
from django.contrib.auth.models import User
from django.db import models
from django.db.models.signals import post_delete
@ -355,6 +357,10 @@ class Cluster(TenancyObject):
if self.config:
if isinstance(self.config, str):
self.config = json.loads(self.config)
self.save()
rendered_config.update(
self.config
)

View File

@ -1,5 +1,5 @@
django==5.1.9
django==5.1.10
django-cors-headers==4.4.0
django-debug-toolbar==5.1.0