Skip to content

Commit

Permalink
Remove unencrypted sap client credentials (#2217)
Browse files Browse the repository at this point in the history
* feat: added migration for removing unencrypted client credentials
  • Loading branch information
MueezKhan246 authored Sep 10, 2024
1 parent fa7bfe8 commit 0f361ae
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion enterprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Your project description goes here.
"""

__version__ = "4.25.7"
__version__ = "4.25.8"
Original file line number Diff line number Diff line change
@@ -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',
),
]

0 comments on commit 0f361ae

Please sign in to comment.