Skip to content

Commit

Permalink
Merge pull request #524 from Ilhasoft/update/rapidpro-10.0.0
Browse files Browse the repository at this point in the history
Update/rapidpro 10.0.0
  • Loading branch information
paulobernardoaf authored Feb 7, 2025
2 parents 8ee4f13 + b323c32 commit 73a7fc5
Show file tree
Hide file tree
Showing 46 changed files with 609 additions and 2 deletions.
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
4 changes: 4 additions & 0 deletions WENI-CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.7.31-rapidpro-10.0.0
----------
* Update RapidPro with version 10.0.0

1.7.31-rapidpro-9.3.142
----------
* Update RapidPro with version 9.3.142
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 <code@nyaruka.com>"]

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

0 comments on commit 73a7fc5

Please sign in to comment.