summaryrefslogtreecommitdiffstats
path: root/requirements/README.md
diff options
context:
space:
mode:
authorJeff Bradberry <jeff.bradberry@gmail.com>2022-02-03 16:29:08 +0100
committerJeff Bradberry <jeff.bradberry@gmail.com>2022-03-08 00:11:36 +0100
commit05142a779d4e4c89afefaacfaa55c2a8ad82ecb4 (patch)
tree6f4fb96bb17177f7ee68d4d553461725d1ece9b0 /requirements/README.md
parentUpgrade to Django 3.1 (diff)
downloadawx-05142a779d4e4c89afefaacfaa55c2a8ad82ecb4.tar.xz
awx-05142a779d4e4c89afefaacfaa55c2a8ad82ecb4.zip
Replace all usage of customized json fields with the Django builtin
The event_data field on event models, however, is getting an overridden version that retains the underlying text data type for the column, to avoid a heavy data migration on those tables. Also, certain of the larger tables are getting these fields with the NOT NULL constraint turned off, to avoid a long migration. Remove the django.utils.six monkey patch we did at the beginning of the upgrade.
Diffstat (limited to 'requirements/README.md')
-rw-r--r--requirements/README.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/requirements/README.md b/requirements/README.md
index 5dc2638c3c..a10d412f2c 100644
--- a/requirements/README.md
+++ b/requirements/README.md
@@ -105,17 +105,6 @@ Upgrading to 4.0.0 causes error because imports changed.
ImportError: cannot import name 'KeyVaultClient'
```
-### django-jsonfield
-
-Instead of calling a `loads()` operation, the returned value is casted into
-a string in some cases, introduced in the change:
-
-https://github.com/adamchainz/django-jsonfield/pull/14
-
-This breaks a very large amount of AWX code that assumes these fields
-are returned as dicts. Upgrading this library will require a refactor
-to accommodate this change.
-
### pip and setuptools
The offline installer needs to have functionality confirmed before upgrading these.