Skip to content

Commit

Permalink
feat: added migrations to remove client_id and client_secret from Canvas
Browse files Browse the repository at this point in the history
  • Loading branch information
sameeramin committed Sep 2, 2024
1 parent 93d2200 commit 99496d4
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.23.17]
----------
* feat: added migrations to remove client_id and client_secret from CanvasEnterpriseCustomerConfiguration

[4.23.16]
----------
* feat: remove references to client_id and client_secret from CanvasEnterpriseCustomerConfiguration
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.23.16"
__version__ = "4.23.17"
Original file line number Diff line number Diff line change
@@ -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',
),
]

0 comments on commit 99496d4

Please sign in to comment.