diff --git a/dj_cqrs/__init__.py b/dj_cqrs/__init__.py index fe9144f..73a0a32 100644 --- a/dj_cqrs/__init__.py +++ b/dj_cqrs/__init__.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import django # pragma: no cover diff --git a/dj_cqrs/_validation.py b/dj_cqrs/_validation.py index 0fba123..9940540 100644 --- a/dj_cqrs/_validation.py +++ b/dj_cqrs/_validation.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging from inspect import getfullargspec, isfunction diff --git a/dj_cqrs/admin.py b/dj_cqrs/admin.py index 52be6ac..eba887b 100644 --- a/dj_cqrs/admin.py +++ b/dj_cqrs/admin.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.utils.translation import gettext_lazy diff --git a/dj_cqrs/apps.py b/dj_cqrs/apps.py index 44aaeb9..1991bdb 100644 --- a/dj_cqrs/apps.py +++ b/dj_cqrs/apps.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.apps import AppConfig from django.conf import settings diff --git a/dj_cqrs/constants.py b/dj_cqrs/constants.py index ed05863..baa388d 100644 --- a/dj_cqrs/constants.py +++ b/dj_cqrs/constants.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. ALL_BASIC_FIELDS = '__all__' diff --git a/dj_cqrs/controller/__init__.py b/dj_cqrs/controller/__init__.py index 3c8c54d..784deff 100644 --- a/dj_cqrs/controller/__init__.py +++ b/dj_cqrs/controller/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/dj_cqrs/controller/consumer.py b/dj_cqrs/controller/consumer.py index e2bce8c..97e290e 100644 --- a/dj_cqrs/controller/consumer.py +++ b/dj_cqrs/controller/consumer.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import copy import logging diff --git a/dj_cqrs/controller/producer.py b/dj_cqrs/controller/producer.py index c5a4051..3f84f95 100644 --- a/dj_cqrs/controller/producer.py +++ b/dj_cqrs/controller/producer.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from dj_cqrs.transport import current_transport diff --git a/dj_cqrs/correlation.py b/dj_cqrs/correlation.py index 261836d..010b8c3 100644 --- a/dj_cqrs/correlation.py +++ b/dj_cqrs/correlation.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.conf import settings diff --git a/dj_cqrs/dataclasses.py b/dj_cqrs/dataclasses.py index 0164ec1..c311df2 100644 --- a/dj_cqrs/dataclasses.py +++ b/dj_cqrs/dataclasses.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from dateutil.parser import parse as dateutil_parse from django.utils import timezone diff --git a/dj_cqrs/delay.py b/dj_cqrs/delay.py index 71e1300..266ff0d 100644 --- a/dj_cqrs/delay.py +++ b/dj_cqrs/delay.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from queue import Full, PriorityQueue diff --git a/dj_cqrs/management/__init__.py b/dj_cqrs/management/__init__.py index 3c8c54d..784deff 100644 --- a/dj_cqrs/management/__init__.py +++ b/dj_cqrs/management/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/dj_cqrs/management/commands/__init__.py b/dj_cqrs/management/commands/__init__.py index 3c8c54d..784deff 100644 --- a/dj_cqrs/management/commands/__init__.py +++ b/dj_cqrs/management/commands/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/dj_cqrs/management/commands/cqrs_bulk_dump.py b/dj_cqrs/management/commands/cqrs_bulk_dump.py index fb6dad9..46ba7bd 100644 --- a/dj_cqrs/management/commands/cqrs_bulk_dump.py +++ b/dj_cqrs/management/commands/cqrs_bulk_dump.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import datetime import os diff --git a/dj_cqrs/management/commands/cqrs_bulk_load.py b/dj_cqrs/management/commands/cqrs_bulk_load.py index 5aceb47..87927d3 100644 --- a/dj_cqrs/management/commands/cqrs_bulk_load.py +++ b/dj_cqrs/management/commands/cqrs_bulk_load.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os import sys diff --git a/dj_cqrs/management/commands/cqrs_consume.py b/dj_cqrs/management/commands/cqrs_consume.py index fe8cc3a..0332397 100644 --- a/dj_cqrs/management/commands/cqrs_consume.py +++ b/dj_cqrs/management/commands/cqrs_consume.py @@ -1,4 +1,4 @@ -# Copyright © 2022 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging import signal import threading diff --git a/dj_cqrs/management/commands/cqrs_dead_letters.py b/dj_cqrs/management/commands/cqrs_dead_letters.py index 5b52bf8..aa3f974 100644 --- a/dj_cqrs/management/commands/cqrs_dead_letters.py +++ b/dj_cqrs/management/commands/cqrs_dead_letters.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import ujson from django.core.management.base import BaseCommand, CommandError diff --git a/dj_cqrs/management/commands/cqrs_deleted_diff_master.py b/dj_cqrs/management/commands/cqrs_deleted_diff_master.py index f1a616d..ab59fb4 100644 --- a/dj_cqrs/management/commands/cqrs_deleted_diff_master.py +++ b/dj_cqrs/management/commands/cqrs_deleted_diff_master.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import sys diff --git a/dj_cqrs/management/commands/cqrs_deleted_diff_replica.py b/dj_cqrs/management/commands/cqrs_deleted_diff_replica.py index 3552e45..2cd55d0 100644 --- a/dj_cqrs/management/commands/cqrs_deleted_diff_replica.py +++ b/dj_cqrs/management/commands/cqrs_deleted_diff_replica.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import ujson from django.core.exceptions import FieldError diff --git a/dj_cqrs/management/commands/cqrs_deleted_sync_replica.py b/dj_cqrs/management/commands/cqrs_deleted_sync_replica.py index 3eb963c..8c18692 100644 --- a/dj_cqrs/management/commands/cqrs_deleted_sync_replica.py +++ b/dj_cqrs/management/commands/cqrs_deleted_sync_replica.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import sys diff --git a/dj_cqrs/management/commands/cqrs_diff_master.py b/dj_cqrs/management/commands/cqrs_diff_master.py index 825c1ab..9f80f50 100644 --- a/dj_cqrs/management/commands/cqrs_diff_master.py +++ b/dj_cqrs/management/commands/cqrs_diff_master.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import ujson from django.core.exceptions import FieldError diff --git a/dj_cqrs/management/commands/cqrs_diff_replica.py b/dj_cqrs/management/commands/cqrs_diff_replica.py index 10b31dc..6a1bec3 100644 --- a/dj_cqrs/management/commands/cqrs_diff_replica.py +++ b/dj_cqrs/management/commands/cqrs_diff_replica.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import sys diff --git a/dj_cqrs/management/commands/cqrs_diff_sync.py b/dj_cqrs/management/commands/cqrs_diff_sync.py index c875434..034f56f 100644 --- a/dj_cqrs/management/commands/cqrs_diff_sync.py +++ b/dj_cqrs/management/commands/cqrs_diff_sync.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import sys diff --git a/dj_cqrs/management/commands/cqrs_sync.py b/dj_cqrs/management/commands/cqrs_sync.py index 640c4b8..bcd328a 100644 --- a/dj_cqrs/management/commands/cqrs_sync.py +++ b/dj_cqrs/management/commands/cqrs_sync.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import datetime import sys diff --git a/dj_cqrs/management/utils.py b/dj_cqrs/management/utils.py index 4e21153..854ef6a 100644 --- a/dj_cqrs/management/utils.py +++ b/dj_cqrs/management/utils.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. def batch_qs(qs, batch_size=10000): diff --git a/dj_cqrs/managers.py b/dj_cqrs/managers.py index 04fab7e..447778f 100644 --- a/dj_cqrs/managers.py +++ b/dj_cqrs/managers.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging diff --git a/dj_cqrs/metas.py b/dj_cqrs/metas.py index ecbfa7b..a6dd301 100644 --- a/dj_cqrs/metas.py +++ b/dj_cqrs/metas.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.db.models import base diff --git a/dj_cqrs/mixins.py b/dj_cqrs/mixins.py index 7aedd32..11c786a 100644 --- a/dj_cqrs/mixins.py +++ b/dj_cqrs/mixins.py @@ -1,4 +1,4 @@ -# Copyright © 2024 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging diff --git a/dj_cqrs/registries.py b/dj_cqrs/registries.py index ade5150..0dd5b62 100644 --- a/dj_cqrs/registries.py +++ b/dj_cqrs/registries.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging diff --git a/dj_cqrs/signals.py b/dj_cqrs/signals.py index a9e9cd1..854ff76 100644 --- a/dj_cqrs/signals.py +++ b/dj_cqrs/signals.py @@ -1,4 +1,4 @@ -# Copyright © 2024 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging diff --git a/dj_cqrs/state.py b/dj_cqrs/state.py index 0a575af..34b9792 100644 --- a/dj_cqrs/state.py +++ b/dj_cqrs/state.py @@ -1,4 +1,4 @@ -# Copyright © 2024 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import threading diff --git a/dj_cqrs/tracker.py b/dj_cqrs/tracker.py index 2dcf40d..82647f7 100644 --- a/dj_cqrs/tracker.py +++ b/dj_cqrs/tracker.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from model_utils import FieldTracker from model_utils.tracker import FieldInstanceTracker diff --git a/dj_cqrs/transport/__init__.py b/dj_cqrs/transport/__init__.py index fa5a435..7476050 100644 --- a/dj_cqrs/transport/__init__.py +++ b/dj_cqrs/transport/__init__.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.conf import settings from django.utils.module_loading import import_string diff --git a/dj_cqrs/transport/base.py b/dj_cqrs/transport/base.py index 8918ceb..090f843 100644 --- a/dj_cqrs/transport/base.py +++ b/dj_cqrs/transport/base.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. class BaseTransport: diff --git a/dj_cqrs/transport/kombu.py b/dj_cqrs/transport/kombu.py index 415e428..76d21eb 100644 --- a/dj_cqrs/transport/kombu.py +++ b/dj_cqrs/transport/kombu.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging diff --git a/dj_cqrs/transport/mixins.py b/dj_cqrs/transport/mixins.py index 3ec4974..bd9dede 100644 --- a/dj_cqrs/transport/mixins.py +++ b/dj_cqrs/transport/mixins.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging diff --git a/dj_cqrs/transport/mock.py b/dj_cqrs/transport/mock.py index 27eac01..c089681 100644 --- a/dj_cqrs/transport/mock.py +++ b/dj_cqrs/transport/mock.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from dj_cqrs.transport import BaseTransport diff --git a/dj_cqrs/transport/rabbit_mq.py b/dj_cqrs/transport/rabbit_mq.py index b4ea68e..8808fc3 100644 --- a/dj_cqrs/transport/rabbit_mq.py +++ b/dj_cqrs/transport/rabbit_mq.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging import time diff --git a/dj_cqrs/utils.py b/dj_cqrs/utils.py index ff80eb0..1d53586 100644 --- a/dj_cqrs/utils.py +++ b/dj_cqrs/utils.py @@ -1,4 +1,4 @@ -# Copyright © 2024 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging from collections import defaultdict diff --git a/examples/demo_project/master_service/__init__.py b/examples/demo_project/master_service/__init__.py index 3c8c54d..784deff 100644 --- a/examples/demo_project/master_service/__init__.py +++ b/examples/demo_project/master_service/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/examples/demo_project/master_service/app/asgi.py b/examples/demo_project/master_service/app/asgi.py index 29ab57e..74bc643 100644 --- a/examples/demo_project/master_service/app/asgi.py +++ b/examples/demo_project/master_service/app/asgi.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. """ ASGI config for master_service project. diff --git a/examples/demo_project/master_service/app/migrations/0001_initial.py b/examples/demo_project/master_service/app/migrations/0001_initial.py index d44735e..d944636 100644 --- a/examples/demo_project/master_service/app/migrations/0001_initial.py +++ b/examples/demo_project/master_service/app/migrations/0001_initial.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import django.contrib.auth.validators import django.utils.timezone diff --git a/examples/demo_project/master_service/app/migrations/0002_fixtures.py b/examples/demo_project/master_service/app/migrations/0002_fixtures.py index c49f001..9141b89 100644 --- a/examples/demo_project/master_service/app/migrations/0002_fixtures.py +++ b/examples/demo_project/master_service/app/migrations/0002_fixtures.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.db import migrations diff --git a/examples/demo_project/master_service/app/models.py b/examples/demo_project/master_service/app/models.py index 662293d..afab3ea 100644 --- a/examples/demo_project/master_service/app/models.py +++ b/examples/demo_project/master_service/app/models.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.contrib.auth.models import AbstractUser from django.db import models diff --git a/examples/demo_project/master_service/app/serializers.py b/examples/demo_project/master_service/app/serializers.py index 0561125..1f0aa8b 100644 --- a/examples/demo_project/master_service/app/serializers.py +++ b/examples/demo_project/master_service/app/serializers.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from rest_framework import serializers from app.models import Purchase diff --git a/examples/demo_project/master_service/app/settings.py b/examples/demo_project/master_service/app/settings.py index f716384..8c51f74 100644 --- a/examples/demo_project/master_service/app/settings.py +++ b/examples/demo_project/master_service/app/settings.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from pathlib import Path diff --git a/examples/demo_project/master_service/app/urls.py b/examples/demo_project/master_service/app/urls.py index 4aa5120..1444c61 100644 --- a/examples/demo_project/master_service/app/urls.py +++ b/examples/demo_project/master_service/app/urls.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.urls import path from app.views import ( diff --git a/examples/demo_project/master_service/app/views.py b/examples/demo_project/master_service/app/views.py index 521f85b..fb51d0e 100644 --- a/examples/demo_project/master_service/app/views.py +++ b/examples/demo_project/master_service/app/views.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.http import HttpResponseNotAllowed from django.shortcuts import get_object_or_404, redirect, render from django.views.decorators.http import require_http_methods diff --git a/examples/demo_project/master_service/app/wsgi.py b/examples/demo_project/master_service/app/wsgi.py index da8e3d3..f025566 100644 --- a/examples/demo_project/master_service/app/wsgi.py +++ b/examples/demo_project/master_service/app/wsgi.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. """ WSGI config for master_service project. diff --git a/examples/demo_project/replica_service/app/migrations/0001_initial.py b/examples/demo_project/replica_service/app/migrations/0001_initial.py index e17ee85..096d95b 100644 --- a/examples/demo_project/replica_service/app/migrations/0001_initial.py +++ b/examples/demo_project/replica_service/app/migrations/0001_initial.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import django.contrib.auth.validators import django.utils.timezone diff --git a/examples/demo_project/replica_service/app/models.py b/examples/demo_project/replica_service/app/models.py index 1fd34b8..73f6d44 100644 --- a/examples/demo_project/replica_service/app/models.py +++ b/examples/demo_project/replica_service/app/models.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.contrib.auth.models import AbstractUser from django.core.cache import cache from django.db import models diff --git a/examples/demo_project/replica_service/app/settings.py b/examples/demo_project/replica_service/app/settings.py index 35e042b..3dc0195 100644 --- a/examples/demo_project/replica_service/app/settings.py +++ b/examples/demo_project/replica_service/app/settings.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from pathlib import Path diff --git a/examples/demo_project/replica_service/app/urls.py b/examples/demo_project/replica_service/app/urls.py index 852367d..1bd9d69 100644 --- a/examples/demo_project/replica_service/app/urls.py +++ b/examples/demo_project/replica_service/app/urls.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.urls import path from app.views import main_page_view diff --git a/examples/demo_project/replica_service/app/views.py b/examples/demo_project/replica_service/app/views.py index c56d6de..aa80fbc 100644 --- a/examples/demo_project/replica_service/app/views.py +++ b/examples/demo_project/replica_service/app/views.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.core.cache import cache from django.shortcuts import render diff --git a/integration_tests/__init__.py b/integration_tests/__init__.py index 3c8c54d..784deff 100644 --- a/integration_tests/__init__.py +++ b/integration_tests/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/integration_tests/manage.py b/integration_tests/manage.py index 584d93e..9ba2bad 100755 --- a/integration_tests/manage.py +++ b/integration_tests/manage.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os import sys diff --git a/integration_tests/master_settings.py b/integration_tests/master_settings.py index a59908c..67c3af7 100644 --- a/integration_tests/master_settings.py +++ b/integration_tests/master_settings.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os diff --git a/integration_tests/replica_settings.py b/integration_tests/replica_settings.py index 0649041..3aa41df 100644 --- a/integration_tests/replica_settings.py +++ b/integration_tests/replica_settings.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os diff --git a/integration_tests/replica_wsgi.py b/integration_tests/replica_wsgi.py index 635d0c2..4c07c2f 100644 --- a/integration_tests/replica_wsgi.py +++ b/integration_tests/replica_wsgi.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os diff --git a/integration_tests/tests/__init__.py b/integration_tests/tests/__init__.py index 3c8c54d..784deff 100644 --- a/integration_tests/tests/__init__.py +++ b/integration_tests/tests/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/integration_tests/tests/conftest.py b/integration_tests/tests/conftest.py index 7db7195..337d2fc 100644 --- a/integration_tests/tests/conftest.py +++ b/integration_tests/tests/conftest.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import psycopg2 import pytest diff --git a/integration_tests/tests/test_asynchronous_consuming.py b/integration_tests/tests/test_asynchronous_consuming.py index c7e6fee..b1c804b 100644 --- a/integration_tests/tests/test_asynchronous_consuming.py +++ b/integration_tests/tests/test_asynchronous_consuming.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest diff --git a/integration_tests/tests/test_bulk_operations.py b/integration_tests/tests/test_bulk_operations.py index abe8347..828abc2 100644 --- a/integration_tests/tests/test_bulk_operations.py +++ b/integration_tests/tests/test_bulk_operations.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest diff --git a/integration_tests/tests/test_dead_letter.py b/integration_tests/tests/test_dead_letter.py index b6cb42a..a61540e 100644 --- a/integration_tests/tests/test_dead_letter.py +++ b/integration_tests/tests/test_dead_letter.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import json diff --git a/integration_tests/tests/test_single_basic_instance.py b/integration_tests/tests/test_single_basic_instance.py index 0c621da..6e57a61 100644 --- a/integration_tests/tests/test_single_basic_instance.py +++ b/integration_tests/tests/test_single_basic_instance.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest from django.utils.timezone import now diff --git a/integration_tests/tests/test_sync_to_a_certain_service.py b/integration_tests/tests/test_sync_to_a_certain_service.py index 10bab7d..ca3514a 100644 --- a/integration_tests/tests/test_sync_to_a_certain_service.py +++ b/integration_tests/tests/test_sync_to_a_certain_service.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest diff --git a/integration_tests/tests/utils.py b/integration_tests/tests/utils.py index 942f6e2..9f96b1c 100644 --- a/integration_tests/tests/utils.py +++ b/integration_tests/tests/utils.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import time diff --git a/mkdocs.yml b/mkdocs.yml index d13023f..19f3ea4 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -3,7 +3,7 @@ site_url: https://github.com/cloudblue/django-cqrs repo_name: cloudblue/django-cqrs repo_url: https://github.com/cloudblue/django-cqrs edit_uri: "" -copyright: Copyright © 2023 Ingram Micro. All Rights Reserved. +copyright: Copyright © 2025 CloudBlue. All Rights Reserved. extra: generator: false social: diff --git a/tests/__init__.py b/tests/__init__.py index 3c8c54d..784deff 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/tests/conftest.py b/tests/conftest.py index 992cfa7..e6d003f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from copy import deepcopy diff --git a/tests/dj/__init__.py b/tests/dj/__init__.py index 3c8c54d..784deff 100644 --- a/tests/dj/__init__.py +++ b/tests/dj/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/tests/dj/settings.py b/tests/dj/settings.py index c13c85b..b42f40f 100644 --- a/tests/dj/settings.py +++ b/tests/dj/settings.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os diff --git a/tests/dj/transport.py b/tests/dj/transport.py index ed0146b..6abe378 100644 --- a/tests/dj/transport.py +++ b/tests/dj/transport.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os diff --git a/tests/dj/urls.py b/tests/dj/urls.py index cdb38a6..669aed3 100644 --- a/tests/dj/urls.py +++ b/tests/dj/urls.py @@ -1,3 +1,3 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. urlpatterns = [] diff --git a/tests/dj_master/__init__.py b/tests/dj_master/__init__.py index 3c8c54d..784deff 100644 --- a/tests/dj_master/__init__.py +++ b/tests/dj_master/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/tests/dj_master/management/__init__.py b/tests/dj_master/management/__init__.py index 3c8c54d..784deff 100644 --- a/tests/dj_master/management/__init__.py +++ b/tests/dj_master/management/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/tests/dj_master/management/commands/__init__.py b/tests/dj_master/management/commands/__init__.py index 3c8c54d..784deff 100644 --- a/tests/dj_master/management/commands/__init__.py +++ b/tests/dj_master/management/commands/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/tests/dj_master/management/commands/bulk_demo.py b/tests/dj_master/management/commands/bulk_demo.py index b862bf2..c4aca1c 100644 --- a/tests/dj_master/management/commands/bulk_demo.py +++ b/tests/dj_master/management/commands/bulk_demo.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import random diff --git a/tests/dj_master/models.py b/tests/dj_master/models.py index d8f5a38..77087cb 100644 --- a/tests/dj_master/models.py +++ b/tests/dj_master/models.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.contrib.contenttypes.fields import GenericForeignKey from django.contrib.contenttypes.models import ContentType diff --git a/tests/dj_master/serializers.py b/tests/dj_master/serializers.py index 71d7bf9..4ef79eb 100644 --- a/tests/dj_master/serializers.py +++ b/tests/dj_master/serializers.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from rest_framework.serializers import CharField, ModelSerializer diff --git a/tests/dj_replica/__init__.py b/tests/dj_replica/__init__.py index 3c8c54d..784deff 100644 --- a/tests/dj_replica/__init__.py +++ b/tests/dj_replica/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/tests/dj_replica/models.py b/tests/dj_replica/models.py index 4a7b6c9..dd02573 100644 --- a/tests/dj_replica/models.py +++ b/tests/dj_replica/models.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.db import DatabaseError, models diff --git a/tests/test_admin.py b/tests/test_admin.py index f9611d7..9d15cd8 100644 --- a/tests/test_admin.py +++ b/tests/test_admin.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest from django.contrib import admin diff --git a/tests/test_commands/__init__.py b/tests/test_commands/__init__.py index 3c8c54d..784deff 100644 --- a/tests/test_commands/__init__.py +++ b/tests/test_commands/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/tests/test_commands/test_bulk_dump.py b/tests/test_commands/test_bulk_dump.py index 20c1d55..868bb3a 100644 --- a/tests/test_commands/test_bulk_dump.py +++ b/tests/test_commands/test_bulk_dump.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest import ujson diff --git a/tests/test_commands/test_bulk_flow.py b/tests/test_commands/test_bulk_flow.py index 6751eb6..906792c 100644 --- a/tests/test_commands/test_bulk_flow.py +++ b/tests/test_commands/test_bulk_flow.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest from django.core.management import call_command diff --git a/tests/test_commands/test_bulk_load.py b/tests/test_commands/test_bulk_load.py index c8b3be6..3380db4 100644 --- a/tests/test_commands/test_bulk_load.py +++ b/tests/test_commands/test_bulk_load.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest diff --git a/tests/test_commands/test_consume.py b/tests/test_commands/test_consume.py index 489385e..7d71bbe 100644 --- a/tests/test_commands/test_consume.py +++ b/tests/test_commands/test_consume.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import threading from importlib import import_module, reload diff --git a/tests/test_commands/test_dead_letters.py b/tests/test_commands/test_dead_letters.py index 3dcfc87..ff52fb6 100644 --- a/tests/test_commands/test_dead_letters.py +++ b/tests/test_commands/test_dead_letters.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from datetime import datetime, timezone diff --git a/tests/test_commands/test_deleted_diff_master.py b/tests/test_commands/test_deleted_diff_master.py index 30c80a9..9293534 100644 --- a/tests/test_commands/test_deleted_diff_master.py +++ b/tests/test_commands/test_deleted_diff_master.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import sys from io import StringIO diff --git a/tests/test_commands/test_deleted_diff_replica.py b/tests/test_commands/test_deleted_diff_replica.py index f1cbf03..13a2dff 100644 --- a/tests/test_commands/test_deleted_diff_replica.py +++ b/tests/test_commands/test_deleted_diff_replica.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest import ujson diff --git a/tests/test_commands/test_deleted_sync_replica.py b/tests/test_commands/test_deleted_sync_replica.py index be98ab5..7bd4ce7 100644 --- a/tests/test_commands/test_deleted_sync_replica.py +++ b/tests/test_commands/test_deleted_sync_replica.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import sys from io import StringIO diff --git a/tests/test_commands/test_diff_master.py b/tests/test_commands/test_diff_master.py index 244dafb..c228574 100644 --- a/tests/test_commands/test_diff_master.py +++ b/tests/test_commands/test_diff_master.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest import ujson diff --git a/tests/test_commands/test_diff_replica.py b/tests/test_commands/test_diff_replica.py index 8793944..4528c18 100644 --- a/tests/test_commands/test_diff_replica.py +++ b/tests/test_commands/test_diff_replica.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import sys from io import StringIO diff --git a/tests/test_commands/test_diff_sync.py b/tests/test_commands/test_diff_sync.py index eb8db98..9402729 100644 --- a/tests/test_commands/test_diff_sync.py +++ b/tests/test_commands/test_diff_sync.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import sys from io import StringIO diff --git a/tests/test_commands/test_sync.py b/tests/test_commands/test_sync.py index 989b10a..1749644 100644 --- a/tests/test_commands/test_sync.py +++ b/tests/test_commands/test_sync.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest from django.core.management import CommandError, call_command diff --git a/tests/test_commands/utils.py b/tests/test_commands/utils.py index 0a8f940..4bc3613 100644 --- a/tests/test_commands/utils.py +++ b/tests/test_commands/utils.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os diff --git a/tests/test_controller.py b/tests/test_controller.py index 95053cc..da3dbef 100644 --- a/tests/test_controller.py +++ b/tests/test_controller.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest from django.conf import settings diff --git a/tests/test_correlation.py b/tests/test_correlation.py index 461c97c..362868a 100644 --- a/tests/test_correlation.py +++ b/tests/test_correlation.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from importlib import import_module, reload diff --git a/tests/test_dataclasses.py b/tests/test_dataclasses.py index 11ac227..fdb8d15 100644 --- a/tests/test_dataclasses.py +++ b/tests/test_dataclasses.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from datetime import datetime, timezone diff --git a/tests/test_delay.py b/tests/test_delay.py index b6ca556..edde8c8 100644 --- a/tests/test_delay.py +++ b/tests/test_delay.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from datetime import datetime, timedelta, timezone from queue import Full diff --git a/tests/test_flow.py b/tests/test_flow.py index cf7beca..ec47dcc 100644 --- a/tests/test_flow.py +++ b/tests/test_flow.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest from django.db import transaction diff --git a/tests/test_master/__init__.py b/tests/test_master/__init__.py index 3c8c54d..784deff 100644 --- a/tests/test_master/__init__.py +++ b/tests/test_master/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/tests/test_master/test_mixin.py b/tests/test_master/test_mixin.py index 726a7fa..50049b4 100644 --- a/tests/test_master/test_mixin.py +++ b/tests/test_master/test_mixin.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from datetime import timedelta from time import sleep diff --git a/tests/test_master/test_signals.py b/tests/test_master/test_signals.py index d27ca9f..7018c2d 100644 --- a/tests/test_master/test_signals.py +++ b/tests/test_master/test_signals.py @@ -1,4 +1,4 @@ -# Copyright © 2024 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from datetime import datetime, timezone diff --git a/tests/test_metas.py b/tests/test_metas.py index 714c788..6117058 100644 --- a/tests/test_metas.py +++ b/tests/test_metas.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest diff --git a/tests/test_registries.py b/tests/test_registries.py index 0c10499..cbca8ad 100644 --- a/tests/test_registries.py +++ b/tests/test_registries.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest diff --git a/tests/test_replica/__init__.py b/tests/test_replica/__init__.py index 3c8c54d..784deff 100644 --- a/tests/test_replica/__init__.py +++ b/tests/test_replica/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/tests/test_replica/test_factory.py b/tests/test_replica/test_factory.py index 09def47..1068083 100644 --- a/tests/test_replica/test_factory.py +++ b/tests/test_replica/test_factory.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest diff --git a/tests/test_replica/test_mixin.py b/tests/test_replica/test_mixin.py index cdb8cc8..5f4390d 100644 --- a/tests/test_replica/test_mixin.py +++ b/tests/test_replica/test_mixin.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest from django.conf import settings diff --git a/tests/test_transport/__init__.py b/tests/test_transport/__init__.py index 3c8c54d..784deff 100644 --- a/tests/test_transport/__init__.py +++ b/tests/test_transport/__init__.py @@ -1 +1 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. diff --git a/tests/test_transport/test_base.py b/tests/test_transport/test_base.py index 5f48de3..257d421 100644 --- a/tests/test_transport/test_base.py +++ b/tests/test_transport/test_base.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest diff --git a/tests/test_transport/test_kombu.py b/tests/test_transport/test_kombu.py index 0f86d64..cc16b8b 100644 --- a/tests/test_transport/test_kombu.py +++ b/tests/test_transport/test_kombu.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging from importlib import import_module, reload diff --git a/tests/test_transport/test_mock.py b/tests/test_transport/test_mock.py index 920f9a3..ba5ccaf 100644 --- a/tests/test_transport/test_mock.py +++ b/tests/test_transport/test_mock.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from dj_cqrs.transport.mock import TransportMock diff --git a/tests/test_transport/test_rabbit_mq.py b/tests/test_transport/test_rabbit_mq.py index b94283b..3bbd81c 100644 --- a/tests/test_transport/test_rabbit_mq.py +++ b/tests/test_transport/test_rabbit_mq.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging from datetime import datetime, timedelta, timezone diff --git a/tests/test_utils.py b/tests/test_utils.py index 0c7c838..eb91929 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from datetime import ( date, diff --git a/tests/test_validation.py b/tests/test_validation.py index de47a66..2059d8b 100644 --- a/tests/test_validation.py +++ b/tests/test_validation.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from unittest.mock import MagicMock diff --git a/tests/utils.py b/tests/utils.py index d45f8f5..68b982f 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -1,4 +1,4 @@ -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.db import DatabaseError