diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 336878c75..b24691ee5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,10 @@ Unreleased ---------- * nothing unreleased +[4.23.20] +---------- +* feat: added migrations to remove client_id and client_secret from CanvasEnterpriseCustomerConfiguration + [4.23.19] ---------- * revert: added migrations to remove client_id and client_secret from CanvasEnterpriseCustomerConfiguration diff --git a/enterprise/__init__.py b/enterprise/__init__.py index 9c6ee6b9e..9f0283649 100644 --- a/enterprise/__init__.py +++ b/enterprise/__init__.py @@ -2,4 +2,4 @@ Your project description goes here. """ -__version__ = "4.23.19" +__version__ = "4.23.20" diff --git a/integrated_channels/canvas/migrations/0039_remove_canvasenterprisecustomerconfiguration_client_id_and_more.py b/integrated_channels/canvas/migrations/0039_remove_canvasenterprisecustomerconfiguration_client_id_and_more.py new file mode 100644 index 000000000..0d887a0f2 --- /dev/null +++ b/integrated_channels/canvas/migrations/0039_remove_canvasenterprisecustomerconfiguration_client_id_and_more.py @@ -0,0 +1,21 @@ +# Generated by Django 4.2.15 on 2024-09-02 09:43 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('canvas', '0038_alter_canvasenterprisecustomerconfiguration_client_id_and_more'), + ] + + operations = [ + migrations.RemoveField( + model_name='canvasenterprisecustomerconfiguration', + name='client_id', + ), + migrations.RemoveField( + model_name='canvasenterprisecustomerconfiguration', + name='client_secret', + ), + ]