From 0f361aeb4abc6a4c8f36431cb227f04798f00938 Mon Sep 17 00:00:00 2001 From: MueezKhan246 <93375917+MueezKhan246@users.noreply.github.com> Date: Tue, 10 Sep 2024 19:02:59 +0500 Subject: [PATCH] Remove unencrypted sap client credentials (#2217) * feat: added migration for removing unencrypted client credentials --- CHANGELOG.rst | 4 ++++ enterprise/__init__.py | 2 +- .../migrations/0024_auto_20240909_1614.py | 21 +++++++++++++++++++ 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 integrated_channels/sap_success_factors/migrations/0024_auto_20240909_1614.py diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 29f99164d..6a573b88d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,10 @@ Unreleased ---------- * nothing unreleased +[4.25.8] +---------- +* feat: added migration for removing unencrypted client credentials + [4.25.7] ---------- * refactor: removed unencrypted credentials from sap config model diff --git a/enterprise/__init__.py b/enterprise/__init__.py index a2e3e77a7..faf5cc4ba 100644 --- a/enterprise/__init__.py +++ b/enterprise/__init__.py @@ -2,4 +2,4 @@ Your project description goes here. """ -__version__ = "4.25.7" +__version__ = "4.25.8" diff --git a/integrated_channels/sap_success_factors/migrations/0024_auto_20240909_1614.py b/integrated_channels/sap_success_factors/migrations/0024_auto_20240909_1614.py new file mode 100644 index 000000000..cb1ec57b0 --- /dev/null +++ b/integrated_channels/sap_success_factors/migrations/0024_auto_20240909_1614.py @@ -0,0 +1,21 @@ +# Generated by Django 3.2.23 on 2024-09-09 16:14 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('sap_success_factors', '0023_auto_20240909_1556'), + ] + + operations = [ + migrations.RemoveField( + model_name='sapsuccessfactorsenterprisecustomerconfiguration', + name='key', + ), + migrations.RemoveField( + model_name='sapsuccessfactorsenterprisecustomerconfiguration', + name='secret', + ), + ]