Skip to content

Commit

Permalink
Migration for removing decrypted client secret in sap configuration (#…
Browse files Browse the repository at this point in the history
…2230)

* feat: added migration file for removing char field decrypted_secret
  • Loading branch information
MueezKhan246 authored Sep 6, 2024
1 parent d255e40 commit 336dee5
Show file tree
Hide file tree
Showing 3 changed files with 22 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.2]
----------
* feat: added migration file for removing char field decrypted_secret

[4.25.1]
----------
* feat: removed char field decrypted_secret references
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.1"
__version__ = "4.25.2"
Original file line number Diff line number Diff line change
@@ -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',
),
]

0 comments on commit 336dee5

Please sign in to comment.