Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update/rapidpro 10.0.0 #524

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v10.0.0 (2025-01-06)
-------------------------
* Add placeholder migration files for squashed migrations

v9.3.142 (2025-01-06)
-------------------------
* Fix API messages endpoint when using readonly db connection
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 = "9.3.142"
version = "10.0.0"
description = "Hosted service for visually building interactive messaging applications"
authors = ["Nyaruka <[email protected]>"]

Expand Down
2 changes: 1 addition & 1 deletion temba/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "9.3.142"
__version__ = "10.0.0"

# This will make sure the app is always imported when
# Django starts so that shared_task will use this app.
Expand Down
12 changes: 12 additions & 0 deletions temba/airtime/migrations/0032_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", "0031_alter_airtimetransfer_uuid"),
]

operations = []
13 changes: 13 additions & 0 deletions temba/airtime/migrations/0033_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 = [
("airtime", "0032_squashed"),
("contacts", "0196_squashed"),
]

operations = []
13 changes: 13 additions & 0 deletions temba/airtime/migrations/0034_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 = [
("airtime", "0033_squashed"),
("orgs", "0162_squashed"),
]

operations = []
12 changes: 12 additions & 0 deletions temba/api/migrations/0048_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", "0047_remove_apitoken_role"),
]

operations = []
15 changes: 15 additions & 0 deletions temba/api/migrations/0049_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 = [
("api", "0048_squashed"),
("orgs", "0162_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
12 changes: 12 additions & 0 deletions temba/apks/migrations/0008_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", "0007_squashed"),
]

operations = []
12 changes: 12 additions & 0 deletions temba/archives/migrations/0021_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", "0020_squashed"),
]

operations = []
13 changes: 13 additions & 0 deletions temba/archives/migrations/0022_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 = [
("archives", "0021_squashed"),
("orgs", "0162_squashed"),
]

operations = []
14 changes: 14 additions & 0 deletions temba/campaigns/migrations/0061_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 = [
("campaigns", "0060_archive_deleted_groups"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
15 changes: 15 additions & 0 deletions temba/campaigns/migrations/0062_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 = [
("campaigns", "0061_squashed"),
("contacts", "0196_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
17 changes: 17 additions & 0 deletions temba/campaigns/migrations/0063_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 = [
("campaigns", "0062_squashed"),
("contacts", "0197_squashed"),
("flows", "0352_squashed"),
("orgs", "0162_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
14 changes: 14 additions & 0 deletions temba/channels/migrations/0187_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 = [
("channels", "0186_alter_channelcount_count"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
17 changes: 17 additions & 0 deletions temba/channels/migrations/0188_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", "0187_squashed"),
("contacts", "0197_squashed"),
("msgs", "0281_squashed"),
("orgs", "0162_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
14 changes: 14 additions & 0 deletions temba/classifiers/migrations/0014_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 = [
("classifiers", "0013_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
13 changes: 13 additions & 0 deletions temba/classifiers/migrations/0015_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 = [
("classifiers", "0014_squashed"),
("orgs", "0162_squashed"),
]

operations = []
14 changes: 14 additions & 0 deletions temba/contacts/migrations/0196_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 = [
("contacts", "0195_update_triggers"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
15 changes: 15 additions & 0 deletions temba/contacts/migrations/0197_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", "0196_squashed"),
("flows", "0350_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
16 changes: 16 additions & 0 deletions temba/contacts/migrations/0198_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 = [
("channels", "0188_squashed"),
("contacts", "0197_squashed"),
("orgs", "0162_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
17 changes: 17 additions & 0 deletions temba/flows/migrations/0350_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", "0187_squashed"),
("classifiers", "0014_squashed"),
("contacts", "0196_squashed"),
("flows", "0349_alter_flowactivitycount_count_and_more"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
14 changes: 14 additions & 0 deletions temba/flows/migrations/0351_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", "0197_squashed"),
("flows", "0350_squashed"),
("globals", "0013_squashed"),
]

operations = []
15 changes: 15 additions & 0 deletions temba/flows/migrations/0352_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 = [
("flows", "0351_squashed"),
("msgs", "0281_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
20 changes: 20 additions & 0 deletions temba/flows/migrations/0353_squashed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 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 = [
("campaigns", "0063_squashed"),
("contacts", "0198_squashed"),
("flows", "0352_squashed"),
("ivr", "0030_squashed"),
("orgs", "0162_squashed"),
("templates", "0045_squashed"),
("tickets", "0074_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
14 changes: 14 additions & 0 deletions temba/globals/migrations/0013_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 = [
("globals", "0012_squashed"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = []
13 changes: 13 additions & 0 deletions temba/globals/migrations/0014_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 = [
("globals", "0013_squashed"),
("orgs", "0162_squashed"),
]

operations = []
Loading
Loading