-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into bilalqamar95/node20-upgrade-1
- Loading branch information
Showing
19 changed files
with
328 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Your project description goes here. | ||
""" | ||
|
||
__version__ = "4.23.11" | ||
__version__ = "4.23.16" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...vas/migrations/0036_canvasenterprisecustomerconfiguration_decrypted_client_id_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 4.2.15 on 2024-08-26 07:03 | ||
|
||
from django.db import migrations | ||
import fernet_fields.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('canvas', '0035_canvaslearnerassessmentdatatransmissionaudit_is_transmitted_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='canvasenterprisecustomerconfiguration', | ||
name='decrypted_client_id', | ||
field=fernet_fields.fields.EncryptedCharField(blank=True, default='', help_text='The encrypted API Client ID provided to edX by the enterprise customer to be used to make API calls to Canvas on behalf of the customer. It will be encrypted when stored in the database.', max_length=255, null=True, verbose_name='Encrypted API Client ID'), | ||
), | ||
migrations.AddField( | ||
model_name='canvasenterprisecustomerconfiguration', | ||
name='decrypted_client_secret', | ||
field=fernet_fields.fields.EncryptedCharField(blank=True, default='', help_text='The encrypted API Client Secret provided to edX by the enterprise customer to be used to make API calls to Canvas on behalf of the customer. It will be encrypted when stored in the database.', max_length=255, null=True, verbose_name='Encrypted API Client Secret'), | ||
), | ||
] |
26 changes: 26 additions & 0 deletions
26
...nvas/migrations/0037_canvasenterprisecustomerconfiguration_copy_id_and_secret_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Generated by Django 4.2.15 on 2024-08-26 13:57 | ||
|
||
from django.db import migrations | ||
|
||
|
||
def populate_decrypted_client_id_and_secret(apps, schema_editor): # pragma: no cover | ||
""" | ||
Populate the decrypted_client_id and decrypted_client_secret fields for all | ||
existing CanvasEnterpriseCustomerConfiguration | ||
""" | ||
CanvasEnterpriseCustomerConfiguration = apps.get_model('canvas', 'CanvasEnterpriseCustomerConfiguration') | ||
for config in CanvasEnterpriseCustomerConfiguration.objects.all(): | ||
config.decrypted_client_id = config.client_id | ||
config.decrypted_client_secret = config.client_secret | ||
config.save() | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('canvas', '0036_canvasenterprisecustomerconfiguration_decrypted_client_id_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.RunPython(populate_decrypted_client_id_and_secret, reverse_code=migrations.RunPython.noop), | ||
] |
23 changes: 23 additions & 0 deletions
23
.../canvas/migrations/0038_alter_canvasenterprisecustomerconfiguration_client_id_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.2.15 on 2024-09-02 08:39 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('canvas', '0037_canvasenterprisecustomerconfiguration_copy_id_and_secret_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='canvasenterprisecustomerconfiguration', | ||
name='client_id', | ||
field=models.CharField(blank=True, default='', help_text='The API Client ID provided to edX by the enterprise customer to be used to make API calls to Canvas on behalf of the customer.', max_length=255, null=True, verbose_name='API Client ID'), | ||
), | ||
migrations.AlterField( | ||
model_name='canvasenterprisecustomerconfiguration', | ||
name='client_secret', | ||
field=models.CharField(blank=True, default='', help_text='The API Client Secret provided to edX by the enterprise customer to be used to make API calls to Canvas on behalf of the customer.', max_length=255, null=True, verbose_name='API Client Secret'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
integrated_channels/sap_success_factors/migrations/0017_auto_20240823_0936.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 3.2.23 on 2024-08-23 09:36 | ||
|
||
from django.db import migrations, models | ||
import fernet_fields.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('sap_success_factors', '0016_sapsuccessfactorslearnerdatatransmissionaudit_is_transmitted'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='sapsuccessfactorsenterprisecustomerconfiguration', | ||
name='decrypted_key', | ||
field=fernet_fields.fields.EncryptedCharField(blank=True, default='', help_text='The encrypted OAuth client identifier. It will be encrypted when stored in the database.', max_length=255, null=True, verbose_name='Encrypted Client ID'), | ||
), | ||
migrations.AddField( | ||
model_name='sapsuccessfactorsenterprisecustomerconfiguration', | ||
name='decrypted_secret', | ||
field=models.CharField(blank=True, default='', help_text='The encrypted OAuth client secret. It will be encrypted when stored in the database.', max_length=255, null=True, verbose_name='Encrypted Client Secret'), | ||
), | ||
] |
29 changes: 29 additions & 0 deletions
29
integrated_channels/sap_success_factors/migrations/0018_auto_20240829_0910.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Generated by Django 3.2.23 on 2024-08-29 09:10 | ||
|
||
from django.db import migrations, models | ||
import fernet_fields.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('sap_success_factors', '0017_auto_20240823_0936'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='sapsuccessfactorsenterprisecustomerconfiguration', | ||
name='decrypted_secret', | ||
field=fernet_fields.fields.EncryptedCharField(blank=True, default='', help_text='The encrypted OAuth client secret. It will be encrypted when stored in the database.', max_length=255, null=True, verbose_name='Encrypted Client Secret'), | ||
), | ||
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'), | ||
), | ||
] |
Oops, something went wrong.