Skip to content

Commit

Permalink
Merge tag 'v8.0.1' of https://github.com/nyaruka/rapidpro into update…
Browse files Browse the repository at this point in the history
…/8.0.0

 * Tweak migration dependencies to ensure clean installs run them in order that works
 * Add empty migrations required for squashing
  • Loading branch information
lucaslinhares committed May 15, 2024
2 parents 5f5d241 + 3723acc commit aea04cb
Show file tree
Hide file tree
Showing 48 changed files with 623 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v8.0.1 (2023-01-12)
-------------------------
* Tweak migration dependencies to ensure clean installs run them in order that works
* Add empty migrations required for squashing

v8.0.0 (2023-01-10)
-------------------------
* Update deps
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "temba"
version = "8.0.0"
version = "8.0.1"
description = "Hosted service for visually building interactive messaging applications"
authors = ["Nyaruka <[email protected]>"]
license = "AGPL-3"
Expand Down
12 changes: 12 additions & 0 deletions temba/airtime/migrations/0022_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("airtime", "0021_squashed"),
]

operations = []
13 changes: 13 additions & 0 deletions temba/airtime/migrations/0023_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("contacts", "0170_squashed"),
("airtime", "0022_squashed"),
]

operations = []
13 changes: 13 additions & 0 deletions temba/airtime/migrations/0024_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("orgs", "0118_squashed"),
("airtime", "0023_squashed"),
]

operations = []
12 changes: 12 additions & 0 deletions temba/api/migrations/0040_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("api", "0039_alter_apitoken_created"),
]

operations = []
16 changes: 16 additions & 0 deletions temba/api/migrations/0041_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This is a dummy migration which will be implemented in the next release

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("auth", "0012_alter_user_first_name_max_length"),
("orgs", "0119_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("api", "0040_squashed"),
]

operations = []
12 changes: 12 additions & 0 deletions temba/apks/migrations/0006_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("apks", "0005_squashed"),
]

operations = []
12 changes: 12 additions & 0 deletions temba/archives/migrations/0017_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("archives", "0016_squashed"),
]

operations = []
13 changes: 13 additions & 0 deletions temba/archives/migrations/0018_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("orgs", "0118_squashed"),
("archives", "0017_squashed"),
]

operations = []
12 changes: 12 additions & 0 deletions temba/campaigns/migrations/0049_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("campaigns", "0048_campaign_is_system"),
]

operations = []
15 changes: 15 additions & 0 deletions temba/campaigns/migrations/0050_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This is a dummy migration which will be implemented in the next release

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("contacts", "0170_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("campaigns", "0049_squashed"),
]

operations = []
16 changes: 16 additions & 0 deletions temba/campaigns/migrations/0051_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This is a dummy migration which will be implemented in the next release

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("contacts", "0170_squashed"),
("campaigns", "0050_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("flows", "0313_squashed"),
]

operations = []
13 changes: 13 additions & 0 deletions temba/campaigns/migrations/0052_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("orgs", "0118_squashed"),
("campaigns", "0051_squashed"),
]

operations = []
14 changes: 14 additions & 0 deletions temba/channels/migrations/0155_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This is a dummy migration which will be implemented in the next release

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("channels", "0154_delete_channelconnection"),
]

operations = []
13 changes: 13 additions & 0 deletions temba/channels/migrations/0156_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("channels", "0155_squashed"),
("ivr", "0022_squashed"),
]

operations = []
14 changes: 14 additions & 0 deletions temba/channels/migrations/0157_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("contacts", "0170_squashed"),
("channels", "0156_squashed"),
("msgs", "0205_squashed"),
]

operations = []
15 changes: 15 additions & 0 deletions temba/channels/migrations/0158_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This is a dummy migration which will be implemented in the next release

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("orgs", "0118_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("channels", "0157_squashed"),
]

operations = []
14 changes: 14 additions & 0 deletions temba/classifiers/migrations/0010_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This is a dummy migration which will be implemented in the next release

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("classifiers", "0009_classifier_is_system"),
]

operations = []
13 changes: 13 additions & 0 deletions temba/classifiers/migrations/0011_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("orgs", "0118_squashed"),
("classifiers", "0010_squashed"),
]

operations = []
14 changes: 14 additions & 0 deletions temba/contacts/migrations/0170_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This is a dummy migration which will be implemented in the next release

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("contacts", "0169_alter_contact_language_alter_contact_name"),
]

operations = []
17 changes: 17 additions & 0 deletions temba/contacts/migrations/0171_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This is a dummy migration which will be implemented in the next release

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("channels", "0158_squashed"),
("flows", "0314_squashed"),
("orgs", "0118_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("contacts", "0170_squashed"),
]

operations = []
12 changes: 12 additions & 0 deletions temba/flows/migrations/0313_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("flows", "0312_delete_flowruncount"),
]

operations = []
17 changes: 17 additions & 0 deletions temba/flows/migrations/0314_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This is a dummy migration which will be implemented in the next release

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("flows", "0313_squashed"),
("campaigns", "0051_squashed"),
("ivr", "0022_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("contacts", "0170_squashed"),
]

operations = []
23 changes: 23 additions & 0 deletions temba/flows/migrations/0315_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This is a dummy migration which will be implemented in the next release

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("templates", "0013_squashed"),
("classifiers", "0011_squashed"),
("channels", "0158_squashed"),
("globals", "0009_squashed"),
("ivr", "0022_squashed"),
("flows", "0314_squashed"),
("tickets", "0044_squashed"),
("orgs", "0118_squashed"),
("contacts", "0171_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("msgs", "0205_squashed"),
]

operations = []
14 changes: 14 additions & 0 deletions temba/globals/migrations/0009_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This is a dummy migration which will be implemented in the next release

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("globals", "0008_global_is_system_alter_global_uuid"),
]

operations = []
13 changes: 13 additions & 0 deletions temba/globals/migrations/0010_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This is a dummy migration which will be implemented in the next release

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("orgs", "0118_squashed"),
("globals", "0009_squashed"),
]

operations = []
Loading

0 comments on commit aea04cb

Please sign in to comment.