-
Notifications
You must be signed in to change notification settings - Fork 23
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' of github.com:fsbraun/djangocms-alias
# Conflicts: # tests/test_models.py
- Loading branch information
Showing
10 changed files
with
114 additions
and
8 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
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,5 @@ | ||
# Security Policy | ||
|
||
## Reporting a Vulnerability | ||
|
||
As ever, we remind our users and contributors that all security reports, patches and concerns be addressed only to our security team by email, at [email protected]. |
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 |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '2.0.0rc1' | ||
__version__ = '2.0.0rc2' |
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,28 @@ | ||
# Generated by Django 4.1.8 on 2023-07-25 15:47 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('cms', '__first__'), | ||
('djangocms_alias', '0002_auto_20200723_1424'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='aliasplugin', | ||
name='cmsplugin_ptr', | ||
field=models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='%(app_label)s_%(class)s', serialize=False, to='cms.cmsplugin'), | ||
), | ||
migrations.AlterField( | ||
model_name='categorytranslation', | ||
name='name', | ||
field=models.CharField(max_length=120, verbose_name='name'), | ||
), | ||
migrations.AlterUniqueTogether( | ||
name='categorytranslation', | ||
unique_together={('language_code', 'master'), ('name', 'language_code')}, | ||
), | ||
] |
19 changes: 19 additions & 0 deletions
19
djangocms_alias/migrations/0004_alter_aliascontent_language.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,19 @@ | ||
# Generated by Django 3.2.20 on 2023-07-26 13:43 | ||
|
||
from django.db import migrations, models | ||
import django.utils.translation | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('djangocms_alias', '0003_auto_20230725_1547'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='aliascontent', | ||
name='language', | ||
field=models.CharField(default=django.utils.translation.get_language, max_length=10), | ||
), | ||
] |
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