diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e08ef3161..af4178d42 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,10 @@ Unreleased ---------- * nothing unreleased +[4.25.2] +---------- +* feat: added migration file for removing char field decrypted_secret + [4.25.1] ---------- * feat: removed char field decrypted_secret references diff --git a/enterprise/__init__.py b/enterprise/__init__.py index ddd430c33..35c652498 100644 --- a/enterprise/__init__.py +++ b/enterprise/__init__.py @@ -2,4 +2,4 @@ Your project description goes here. """ -__version__ = "4.25.1" +__version__ = "4.25.2" diff --git a/integrated_channels/sap_success_factors/migrations/0020_remove_sapsuccessfactorsenterprisecustomerconfiguration_decrypted_secret.py b/integrated_channels/sap_success_factors/migrations/0020_remove_sapsuccessfactorsenterprisecustomerconfiguration_decrypted_secret.py new file mode 100644 index 000000000..c45eb88ed --- /dev/null +++ b/integrated_channels/sap_success_factors/migrations/0020_remove_sapsuccessfactorsenterprisecustomerconfiguration_decrypted_secret.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.23 on 2024-09-04 14:20 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('sap_success_factors', '0019_auto_20240902_1418'), + ] + + operations = [ + migrations.RemoveField( + model_name='sapsuccessfactorsenterprisecustomerconfiguration', + name='decrypted_secret', + ), + ]