Skip to content

Commit

Permalink
Add missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Coperh committed Nov 27, 2024
1 parent ccfd36e commit d471b57
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 7.4.1
current_version = 7.5.0.alpha
commit = True
tag = True
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
django: ['3.2', '4.2']
cms: ['3.11','4.1']

name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }}, CMS ${{ matrix.mozilla_django_oidc }})
name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }}, CMS ${{ matrix.cms }})

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion aldryn_forms/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '7.4.1'
__version__ = '7.5.0.alpha'
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2 on 2024-11-27 16:46

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('email_notifications', '0006_alter_emailnotification_id'),
]

operations = [
migrations.AlterField(
model_name='emailnotification',
name='id',
field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
]
28 changes: 28 additions & 0 deletions aldryn_forms/migrations/0019_auto_20241127_1746.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Generated by Django 3.2 on 2024-11-27 16:46

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('aldryn_forms', '0018_formplugin_use_form_action'),
]

operations = [
migrations.AlterField(
model_name='formplugin',
name='action_backend',
field=models.CharField(choices=[('none', 'No action'), ('email_only', 'Only send email'), ('default', 'Save to site administration and send email')], default='default', max_length=15, verbose_name='Action backend'),
),
migrations.AlterField(
model_name='formsubmission',
name='id',
field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
migrations.AlterField(
model_name='option',
name='id',
field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
]
3 changes: 2 additions & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
HELPER_SETTINGS = {
'INSTALLED_APPS': [
'tests',
"aldryn_forms",
'aldryn_forms.contrib.email_notifications',
'djangocms_text_ckeditor',
'captcha',
Expand All @@ -28,7 +29,7 @@


def run():
from djangocms_helper import runner
from app_helper import runner
runner.cms('aldryn_forms')


Expand Down

0 comments on commit d471b57

Please sign in to comment.