Skip to content

Commit

Permalink
Merge branch 'MueezKhan/Removing-Unencrypted-Credentials-From-Model' …
Browse files Browse the repository at this point in the history
…of github.com:openedx/edx-enterprise into MueezKhan/Remove-Unencrypted-SAP-Client-Credentials
  • Loading branch information
MueezKhan246 committed Sep 9, 2024
2 parents 7c580e9 + b913b3c commit 819f201
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,18 @@ Unreleased
----------
* nothing unreleased

[4.25.6]
[4.25.7]
----------
* feat: added migration for removing unencrypted client credentials

[4.25.5]
[4.25.6]
----------
* refactor: removed unencrypted credentials from sap config model.

[4.25.5]
----------
* refactor: making unencrypted credentials nullable so after removing refs tests can run

[4.25.4]
----------
* feat: replaced references from unencrypted to encrypted columns.
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.6"
__version__ = "4.25.7"
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.2.23 on 2024-09-09 15:56

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('sap_success_factors', '0022_auto_20240906_1349'),
]

operations = [
migrations.AlterField(
model_name='sapsuccessfactorsenterprisecustomerconfiguration',
name='key',
field=models.CharField(blank=True, default='', help_text='OAuth client identifier.', max_length=255, null=True, verbose_name='Client ID'),
),
migrations.AlterField(
model_name='sapsuccessfactorsenterprisecustomerconfiguration',
name='secret',
field=models.CharField(blank=True, default='', help_text='OAuth client secret.', max_length=255, null=True, verbose_name='Client Secret'),
),
]

0 comments on commit 819f201

Please sign in to comment.