Skip to content

Commit 050c750

Browse files
Merge branch 'main' into update_firefox_desktop_release
2 parents f5d841e + ac1eac9 commit 050c750

File tree

26 files changed

+8379
-66
lines changed

26 files changed

+8379
-66
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
APPLICATION_SERVICES_BUILD_ID=151.20260328050234
1+
APPLICATION_SERVICES_BUILD_ID=151.20260330183750

cirrus/server/poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cirrus/server/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ python-decouple = "^3.8"
2323
glean-parser = "^18.2.0"
2424
pytest-mock = "^3.15.0"
2525
mozilla-nimbus-shared = "^2.5.2"
26-
sentry-sdk = "^2.55.0"
26+
sentry-sdk = "^2.56.0"
2727

2828
[build-system]
2929
requires = ["poetry>=2.1.1"]

experimenter/experimenter/experiments/constants.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -298,19 +298,19 @@ class Application(models.TextChoices):
298298
)
299299

300300
@staticmethod
301-
def is_sdk(application):
302-
return application != Application.DESKTOP
301+
def is_sdk(slug: str):
302+
return slug != Application.DESKTOP
303303

304304
@staticmethod
305-
def is_mobile(application):
306-
return application in (
305+
def is_mobile(slug: str):
306+
return slug in (
307307
Application.FENIX,
308308
Application.IOS,
309309
)
310310

311311
@staticmethod
312-
def is_web(application):
313-
return application in (
312+
def is_web(slug: str):
313+
return slug in (
314314
Application.DEMO_APP,
315315
Application.MONITOR,
316316
Application.FXA,

experimenter/experimenter/experiments/tests/api/v6/test_serializers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ class TestNimbusExperimentSerializer(TestCase):
2727
@classmethod
2828
def _validate_experiment_schema(
2929
cls,
30-
application: NimbusExperiment.Application,
30+
application_slug: str,
3131
experiment_data: dict[str, Any],
3232
):
33-
if NimbusExperiment.Application.is_sdk(application):
33+
if NimbusExperiment.Application.is_sdk(application_slug):
3434
schema = SdkNimbusExperiment
3535
else:
3636
schema = DesktopAllVersionsNimbusExperiment
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
beta: 2df55047a5d898dca4b1230acac5de36a9830a88
2-
main: 0ea834f7eeb962c70f3232e782830290e63c0951
1+
beta: b2fd0978ca2329883bad8fa5fcbeb40d6cabc367
2+
main: 9a3317a65545e83f4e32b94fdf1f6860342423ef
33
release: a395b8ce89f74c9a50acf7493052282e26477e38
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
beta: 2df55047a5d898dca4b1230acac5de36a9830a88
2-
esr115: a2d7e883c5b32b21199009348961306893f38adb
1+
beta: b2fd0978ca2329883bad8fa5fcbeb40d6cabc367
2+
esr115: e332f5355ae1dacba648a84c60a4434ae475bb04
33
esr128: ed38f9209e39bd7ad247c81a7c20c99c874e0a62
4-
esr140: 7c6a67690cc622fc789a52ea91f58197c463d1b1
5-
main: 0ea834f7eeb962c70f3232e782830290e63c0951
6-
release: a395b8ce89f74c9a50acf7493052282e26477e38
4+
esr140: 5675d292974e1cbd464b7b41f8d5fed3b9bd28f9
5+
main: 9a3317a65545e83f4e32b94fdf1f6860342423ef
6+
release: 8f58f40bb8909a3a14d5fe5f627118d048bc413f

0 commit comments

Comments
 (0)