File tree Expand file tree Collapse file tree 4 files changed +37
-1
lines changed
Expand file tree Collapse file tree 4 files changed +37
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,14 @@ Unreleased
1616
1717* Migrate from using pycodestyle and isort to ruff for code quality checks and formatting.
1818
19+ 0.7.0 - 2025-10-23
20+ ******************
21+
22+ Added
23+ =====
24+
25+ * Initial migration to establish dependency on casbin_adapter for automatic CasbinRule table creation.
26+
19270.6.0 - 2025-10-22
2028******************
2129
Original file line number Diff line number Diff line change 44
55import os
66
7- __version__ = "0.6 .0"
7+ __version__ = "0.7 .0"
88
99ROOT_DIRECTORY = os .path .dirname (os .path .abspath (__file__ ))
Original file line number Diff line number Diff line change 1+ # Generated by Django 4.2.24 on 2025-10-22 21:49
2+
3+ from django .db import migrations
4+
5+
6+ class Migration (migrations .Migration ):
7+ """
8+ Initial migration that ensures casbin_adapter migrations are run.
9+
10+ This migration creates a dependency on casbin_adapter's initial migration,
11+ ensuring that when you run 'migrate openedx_authz', the CasbinRule table
12+ is created automatically by the casbin_adapter app.
13+ """
14+
15+ initial = True
16+
17+ dependencies = [
18+ # Depend on casbin_adapter's initial migration to ensure
19+ # the CasbinRule table is created when migrating openedx_authz
20+ ("casbin_adapter" , "0001_initial" ),
21+ ]
22+
23+ # No operations needed in this migration as we're only
24+ # establishing the dependency on casbin_adapter
25+ operations = []
Original file line number Diff line number Diff line change 1+ """
2+ Migrations for openedx_authz app.
3+ """
You can’t perform that action at this time.
0 commit comments