diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3ddf6546..9498aa3c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ on: tags: - '*' pull_request: - branches: + branches: - master - 'release/**' @@ -40,7 +40,7 @@ jobs: needs: [test] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python 3.10 @@ -55,10 +55,9 @@ jobs: - name: Generate coverage report run: | poetry run pytest - - name: SonarCloud - uses: SonarSource/sonarcloud-github-action@master + - name: SonarCloud Scan + uses: SonarSource/sonarqube-scan-action@v6 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - name: SonarQube Quality Gate check uses: sonarsource/sonarqube-quality-gate-action@master diff --git a/connect/cli/__init__.py b/connect/cli/__init__.py index f9b30528..009b0124 100644 --- a/connect/cli/__init__.py +++ b/connect/cli/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli +# Copyright (c) 2025 CloudBlue. All rights reserved. from importlib.metadata import version diff --git a/connect/cli/ccli.py b/connect/cli/ccli.py index ed2dc6fd..64992971 100644 --- a/connect/cli/ccli.py +++ b/connect/cli/ccli.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import io import sys diff --git a/connect/cli/core/account/commands.py b/connect/cli/core/account/commands.py index 037b095a..11777cb5 100644 --- a/connect/cli/core/account/commands.py +++ b/connect/cli/core/account/commands.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import click from click import ClickException diff --git a/connect/cli/core/account/helpers.py b/connect/cli/core/account/helpers.py index c39246c8..847f1017 100644 --- a/connect/cli/core/account/helpers.py +++ b/connect/cli/core/account/helpers.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import click from connect.client import ClientError, ConnectClient diff --git a/connect/cli/core/config.py b/connect/cli/core/config.py index c0e38905..dac04740 100644 --- a/connect/cli/core/config.py +++ b/connect/cli/core/config.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import json import os diff --git a/connect/cli/core/constants.py b/connect/cli/core/constants.py index 5711a2a7..cb671e9c 100644 --- a/connect/cli/core/constants.py +++ b/connect/cli/core/constants.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. DEFAULT_ENDPOINT = 'https://api.connect.cloudblue.com/public/v1' diff --git a/connect/cli/core/plugins.py b/connect/cli/core/plugins.py index b81fd5cc..0a9d9fe4 100644 --- a/connect/cli/core/plugins.py +++ b/connect/cli/core/plugins.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. import click from connect.cli.core.utils import iter_entry_points diff --git a/connect/cli/core/utils.py b/connect/cli/core/utils.py index b408b45e..1221a561 100644 --- a/connect/cli/core/utils.py +++ b/connect/cli/core/utils.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. import os from collections import OrderedDict from importlib.metadata import entry_points diff --git a/connect/cli/plugins/commerce/commands.py b/connect/cli/plugins/commerce/commands.py index 53647c67..73373f87 100644 --- a/connect/cli/plugins/commerce/commands.py +++ b/connect/cli/plugins/commerce/commands.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. import click from connect.client import R diff --git a/connect/cli/plugins/customer/commands.py b/connect/cli/plugins/customer/commands.py index e8c607c5..7ae801d8 100644 --- a/connect/cli/plugins/customer/commands.py +++ b/connect/cli/plugins/customer/commands.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. import warnings import click diff --git a/connect/cli/plugins/locale/commands.py b/connect/cli/plugins/locale/commands.py index c835b071..8f31dfeb 100644 --- a/connect/cli/plugins/locale/commands.py +++ b/connect/cli/plugins/locale/commands.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. import click diff --git a/connect/cli/plugins/play/__init__.py b/connect/cli/plugins/play/__init__.py index 6e9fd794..bb440e23 100644 --- a/connect/cli/plugins/play/__init__.py +++ b/connect/cli/plugins/play/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. from .context import Context from .save import Save from .script import OptionWrapper, Script diff --git a/connect/cli/plugins/play/commands.py b/connect/cli/plugins/play/commands.py index fab1adff..729423ed 100644 --- a/connect/cli/plugins/play/commands.py +++ b/connect/cli/plugins/play/commands.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import os import sys diff --git a/connect/cli/plugins/play/context.py b/connect/cli/plugins/play/context.py index d83b121e..f3606913 100644 --- a/connect/cli/plugins/play/context.py +++ b/connect/cli/plugins/play/context.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import inspect import json import sys diff --git a/connect/cli/plugins/play/save.py b/connect/cli/plugins/play/save.py index deaf0c07..08479b9d 100644 --- a/connect/cli/plugins/play/save.py +++ b/connect/cli/plugins/play/save.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. from connect.cli.plugins.play.context import Context from connect.cli.plugins.play.script import Script diff --git a/connect/cli/plugins/play/script.py b/connect/cli/plugins/play/script.py index e183d604..b83d821e 100644 --- a/connect/cli/plugins/play/script.py +++ b/connect/cli/plugins/play/script.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import re from typing import List diff --git a/connect/cli/plugins/product/api.py b/connect/cli/plugins/product/api.py index 023051be..ae4c3df1 100644 --- a/connect/cli/plugins/product/api.py +++ b/connect/cli/plugins/product/api.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. from connect.client import ClientError, R diff --git a/connect/cli/plugins/product/commands.py b/connect/cli/plugins/product/commands.py index 04f75c38..5d35d35e 100644 --- a/connect/cli/plugins/product/commands.py +++ b/connect/cli/plugins/product/commands.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. from functools import partial diff --git a/connect/cli/plugins/product/constants.py b/connect/cli/plugins/product/constants.py index 26b05d62..fb717238 100644 --- a/connect/cli/plugins/product/constants.py +++ b/connect/cli/plugins/product/constants.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. PARAM_TYPES = [ 'email', diff --git a/connect/cli/plugins/product/export.py b/connect/cli/plugins/product/export.py index f0794952..0922096f 100644 --- a/connect/cli/plugins/product/export.py +++ b/connect/cli/plugins/product/export.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. import copy import json diff --git a/connect/cli/plugins/product/sync/actions.py b/connect/cli/plugins/product/sync/actions.py index 2634791a..47cc46f1 100644 --- a/connect/cli/plugins/product/sync/actions.py +++ b/connect/cli/plugins/product/sync/actions.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import re from collections import namedtuple diff --git a/connect/cli/plugins/product/sync/items.py b/connect/cli/plugins/product/sync/items.py index 0417ca07..b75071be 100644 --- a/connect/cli/plugins/product/sync/items.py +++ b/connect/cli/plugins/product/sync/items.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. from collections import namedtuple diff --git a/connect/cli/plugins/product/sync/media.py b/connect/cli/plugins/product/sync/media.py index 135c2c0d..268af609 100644 --- a/connect/cli/plugins/product/sync/media.py +++ b/connect/cli/plugins/product/sync/media.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import json import os from collections import namedtuple diff --git a/connect/cli/plugins/product/sync/messages.py b/connect/cli/plugins/product/sync/messages.py index be82b996..d67b279c 100644 --- a/connect/cli/plugins/product/sync/messages.py +++ b/connect/cli/plugins/product/sync/messages.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2024 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. from collections import namedtuple diff --git a/connect/cli/plugins/product/sync/params.py b/connect/cli/plugins/product/sync/params.py index a410f536..5177b156 100644 --- a/connect/cli/plugins/product/sync/params.py +++ b/connect/cli/plugins/product/sync/params.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import json import re from collections import namedtuple diff --git a/connect/cli/plugins/product/sync/templates.py b/connect/cli/plugins/product/sync/templates.py index 0aa3059d..e8d8b368 100644 --- a/connect/cli/plugins/product/sync/templates.py +++ b/connect/cli/plugins/product/sync/templates.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. from collections import namedtuple diff --git a/connect/cli/plugins/project/commands.py b/connect/cli/plugins/project/commands.py index d986a486..fccebed6 100644 --- a/connect/cli/plugins/project/commands.py +++ b/connect/cli/plugins/project/commands.py @@ -1,4 +1,4 @@ -# Copyright © 2022 CloudBlue. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os diff --git a/connect/cli/plugins/project/extension/constants.py b/connect/cli/plugins/project/extension/constants.py index 23579717..a2557d9c 100644 --- a/connect/cli/plugins/project/extension/constants.py +++ b/connect/cli/plugins/project/extension/constants.py @@ -1,4 +1,4 @@ -# Copyright © 2021 CloudBlue. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. PYPI_EXTENSION_RUNNER_URL = 'https://pypi.org/pypi/connect-extension-runner/json' diff --git a/connect/cli/plugins/project/renderer.py b/connect/cli/plugins/project/renderer.py index ae4d2ae2..4e01fdf5 100644 --- a/connect/cli/plugins/project/renderer.py +++ b/connect/cli/plugins/project/renderer.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. import fnmatch import os import shutil diff --git a/connect/cli/plugins/project/report/helpers.py b/connect/cli/plugins/project/report/helpers.py index 33c9472c..44a10d34 100644 --- a/connect/cli/plugins/project/report/helpers.py +++ b/connect/cli/plugins/project/report/helpers.py @@ -1,4 +1,4 @@ -# Copyright © 2022 CloudBlue. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import functools import json diff --git a/connect/cli/plugins/project/report/validations.py b/connect/cli/plugins/project/report/validations.py index 1a5852fa..369790c6 100644 --- a/connect/cli/plugins/project/report/validations.py +++ b/connect/cli/plugins/project/report/validations.py @@ -1,4 +1,4 @@ -# Copyright © 2022 CloudBlue. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import importlib import inspect diff --git a/connect/cli/plugins/shared/base.py b/connect/cli/plugins/shared/base.py index 6cc3e075..b67cf9ae 100644 --- a/connect/cli/plugins/shared/base.py +++ b/connect/cli/plugins/shared/base.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. from zipfile import BadZipFile diff --git a/connect/cli/plugins/shared/sync_stats.py b/connect/cli/plugins/shared/sync_stats.py index 6f0c60ba..a3bcc5ea 100644 --- a/connect/cli/plugins/shared/sync_stats.py +++ b/connect/cli/plugins/shared/sync_stats.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. from collections import defaultdict diff --git a/connect/cli/plugins/shared/translation_attr_sync.py b/connect/cli/plugins/shared/translation_attr_sync.py index 555d5a9a..c80de0cc 100644 --- a/connect/cli/plugins/shared/translation_attr_sync.py +++ b/connect/cli/plugins/shared/translation_attr_sync.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. import math from collections import namedtuple from zipfile import BadZipFile diff --git a/connect/cli/plugins/shared/translation_sync.py b/connect/cli/plugins/shared/translation_sync.py index 6a123577..a1e1a313 100644 --- a/connect/cli/plugins/shared/translation_sync.py +++ b/connect/cli/plugins/shared/translation_sync.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. from collections import defaultdict, namedtuple from functools import partial diff --git a/connect/cli/plugins/shared/utils.py b/connect/cli/plugins/shared/utils.py index bc3a481a..566204de 100644 --- a/connect/cli/plugins/shared/utils.py +++ b/connect/cli/plugins/shared/utils.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. import re from time import sleep diff --git a/connect/cli/plugins/translation/commands.py b/connect/cli/plugins/translation/commands.py index 90fb60a0..2fc22cb8 100644 --- a/connect/cli/plugins/translation/commands.py +++ b/connect/cli/plugins/translation/commands.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. import click diff --git a/connect/cli/plugins/translation/constants.py b/connect/cli/plugins/translation/constants.py index 72703b1a..d9ad6a44 100644 --- a/connect/cli/plugins/translation/constants.py +++ b/connect/cli/plugins/translation/constants.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. from collections import namedtuple diff --git a/connect/cli/plugins/translation/export.py b/connect/cli/plugins/translation/export.py index a9937b40..f26ad453 100644 --- a/connect/cli/plugins/translation/export.py +++ b/connect/cli/plugins/translation/export.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. from openpyxl.worksheet.datavalidation import DataValidation diff --git a/connect/cli/plugins/translation/translation_sync.py b/connect/cli/plugins/translation/translation_sync.py index 11401854..2e245961 100644 --- a/connect/cli/plugins/translation/translation_sync.py +++ b/connect/cli/plugins/translation/translation_sync.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2022 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2019-2025 CloudBlue. All Rights Reserved. from types import SimpleNamespace from zipfile import BadZipFile diff --git a/tests/plugins/play/scripts/script1.py b/tests/plugins/play/scripts/script1.py index dd93eed7..9bd49ad7 100644 --- a/tests/plugins/play/scripts/script1.py +++ b/tests/plugins/play/scripts/script1.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import sys from connect.cli.plugins.play.context import Context diff --git a/tests/plugins/play/scripts/script2.py b/tests/plugins/play/scripts/script2.py index c3b7f268..2f8b4810 100644 --- a/tests/plugins/play/scripts/script2.py +++ b/tests/plugins/play/scripts/script2.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import sys from connect.cli.plugins.play.context import Context diff --git a/tests/plugins/play/test_context.py b/tests/plugins/play/test_context.py index 0b0db8fc..dfdad05f 100644 --- a/tests/plugins/play/test_context.py +++ b/tests/plugins/play/test_context.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import os import pytest diff --git a/tests/plugins/play/test_play_commands.py b/tests/plugins/play/test_play_commands.py index 8cc82cfd..82e2da70 100644 --- a/tests/plugins/play/test_play_commands.py +++ b/tests/plugins/play/test_play_commands.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. import os import sys diff --git a/tests/plugins/play/test_script.py b/tests/plugins/play/test_script.py index 0f4d1112..803afb5f 100644 --- a/tests/plugins/play/test_script.py +++ b/tests/plugins/play/test_script.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2021 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All rights reserved. from connect.client import ConnectClient from connect.cli.plugins.play.context import Context diff --git a/tests/plugins/product/sync/test_messages.py b/tests/plugins/product/sync/test_messages.py index 2b982db5..01d62b48 100644 --- a/tests/plugins/product/sync/test_messages.py +++ b/tests/plugins/product/sync/test_messages.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# This file is part of the Ingram Micro Cloud Blue Connect connect-cli. -# Copyright (c) 2019-2024 Ingram Micro. All Rights Reserved. +# This file is part of the CloudBlue Connect connect-cli. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. import pytest from connect.client import ConnectClient diff --git a/tests/plugins/project/test_commands.py b/tests/plugins/project/test_commands.py index 26d0922f..296bdfc5 100644 --- a/tests/plugins/project/test_commands.py +++ b/tests/plugins/project/test_commands.py @@ -1,4 +1,4 @@ -# Copyright © 2021 CloudBlue. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os import tempfile diff --git a/tests/plugins/project/test_extension_helpers.py b/tests/plugins/project/test_extension_helpers.py index 04d5ea40..a8e285f0 100644 --- a/tests/plugins/project/test_extension_helpers.py +++ b/tests/plugins/project/test_extension_helpers.py @@ -1,4 +1,4 @@ -# Copyright © 2022 CloudBlue. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import configparser import json diff --git a/tests/plugins/project/test_renderer.py b/tests/plugins/project/test_renderer.py index bc7cacb4..21b9ed9a 100644 --- a/tests/plugins/project/test_renderer.py +++ b/tests/plugins/project/test_renderer.py @@ -1,4 +1,4 @@ -# Copyright © 2022 CloudBlue. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os import tempfile diff --git a/tests/plugins/project/test_report_helpers.py b/tests/plugins/project/test_report_helpers.py index c2f3912a..d5d1db08 100644 --- a/tests/plugins/project/test_report_helpers.py +++ b/tests/plugins/project/test_report_helpers.py @@ -1,4 +1,4 @@ -# Copyright © 2022 CloudBlue. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import configparser import json