dbt-platform-helper 15.0.0__py3-none-any.whl → 15.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dbt-platform-helper might be problematic. Click here for more details.
- dbt_platform_helper/domain/config.py +4 -4
- dbt_platform_helper/domain/versioning.py +6 -6
- dbt_platform_helper/providers/config.py +2 -2
- dbt_platform_helper/providers/version.py +1 -1
- dbt_platform_helper/providers/version_status.py +1 -1
- dbt_platform_helper/utils/validation.py +1 -1
- {dbt_platform_helper-15.0.0.dist-info → dbt_platform_helper-15.1.0.dist-info}/METADATA +1 -1
- {dbt_platform_helper-15.0.0.dist-info → dbt_platform_helper-15.1.0.dist-info}/RECORD +13 -13
- /dbt_platform_helper/{providers → entities}/platform_config_schema.py +0 -0
- /dbt_platform_helper/{providers → entities}/semantic_version.py +0 -0
- {dbt_platform_helper-15.0.0.dist-info → dbt_platform_helper-15.1.0.dist-info}/LICENSE +0 -0
- {dbt_platform_helper-15.0.0.dist-info → dbt_platform_helper-15.1.0.dist-info}/WHEEL +0 -0
- {dbt_platform_helper-15.0.0.dist-info → dbt_platform_helper-15.1.0.dist-info}/entry_points.txt +0 -0
|
@@ -10,16 +10,16 @@ from dbt_platform_helper.constants import PLATFORM_CONFIG_FILE
|
|
|
10
10
|
from dbt_platform_helper.domain.versioning import AWSVersioning
|
|
11
11
|
from dbt_platform_helper.domain.versioning import CopilotVersioning
|
|
12
12
|
from dbt_platform_helper.domain.versioning import PlatformHelperVersioning
|
|
13
|
+
from dbt_platform_helper.entities.semantic_version import (
|
|
14
|
+
IncompatibleMajorVersionException,
|
|
15
|
+
)
|
|
16
|
+
from dbt_platform_helper.entities.semantic_version import SemanticVersion
|
|
13
17
|
from dbt_platform_helper.platform_exception import PlatformException
|
|
14
18
|
from dbt_platform_helper.providers.aws.sso_auth import SSOAuthProvider
|
|
15
19
|
from dbt_platform_helper.providers.config import ConfigProvider
|
|
16
20
|
from dbt_platform_helper.providers.io import ClickIOProvider
|
|
17
21
|
from dbt_platform_helper.providers.schema_migrator import ALL_MIGRATIONS
|
|
18
22
|
from dbt_platform_helper.providers.schema_migrator import Migrator
|
|
19
|
-
from dbt_platform_helper.providers.semantic_version import (
|
|
20
|
-
IncompatibleMajorVersionException,
|
|
21
|
-
)
|
|
22
|
-
from dbt_platform_helper.providers.semantic_version import SemanticVersion
|
|
23
23
|
from dbt_platform_helper.providers.validation import ValidationException
|
|
24
24
|
from dbt_platform_helper.providers.version_status import VersionStatus
|
|
25
25
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import os
|
|
2
2
|
|
|
3
|
-
from dbt_platform_helper.
|
|
4
|
-
from dbt_platform_helper.providers.config import ConfigProvider
|
|
5
|
-
from dbt_platform_helper.providers.io import ClickIOProvider
|
|
6
|
-
from dbt_platform_helper.providers.semantic_version import (
|
|
3
|
+
from dbt_platform_helper.entities.semantic_version import (
|
|
7
4
|
IncompatibleMajorVersionException,
|
|
8
5
|
)
|
|
9
|
-
from dbt_platform_helper.
|
|
6
|
+
from dbt_platform_helper.entities.semantic_version import (
|
|
10
7
|
IncompatibleMinorVersionException,
|
|
11
8
|
)
|
|
12
|
-
from dbt_platform_helper.
|
|
9
|
+
from dbt_platform_helper.entities.semantic_version import SemanticVersion
|
|
10
|
+
from dbt_platform_helper.platform_exception import PlatformException
|
|
11
|
+
from dbt_platform_helper.providers.config import ConfigProvider
|
|
12
|
+
from dbt_platform_helper.providers.io import ClickIOProvider
|
|
13
13
|
from dbt_platform_helper.providers.version import AWSCLIInstalledVersionProvider
|
|
14
14
|
from dbt_platform_helper.providers.version import CopilotInstalledVersionProvider
|
|
15
15
|
from dbt_platform_helper.providers.version import GithubLatestVersionProvider
|
|
@@ -8,11 +8,11 @@ from dbt_platform_helper.constants import FIRST_UPGRADABLE_PLATFORM_HELPER_MAJOR
|
|
|
8
8
|
from dbt_platform_helper.constants import PLATFORM_CONFIG_FILE
|
|
9
9
|
from dbt_platform_helper.constants import PLATFORM_CONFIG_SCHEMA_VERSION
|
|
10
10
|
from dbt_platform_helper.constants import PLATFORM_HELPER_PACKAGE_NAME
|
|
11
|
+
from dbt_platform_helper.entities.platform_config_schema import PlatformConfigSchema
|
|
12
|
+
from dbt_platform_helper.entities.semantic_version import SemanticVersion
|
|
11
13
|
from dbt_platform_helper.providers.config_validator import ConfigValidator
|
|
12
14
|
from dbt_platform_helper.providers.config_validator import ConfigValidatorError
|
|
13
15
|
from dbt_platform_helper.providers.io import ClickIOProvider
|
|
14
|
-
from dbt_platform_helper.providers.platform_config_schema import PlatformConfigSchema
|
|
15
|
-
from dbt_platform_helper.providers.semantic_version import SemanticVersion
|
|
16
16
|
from dbt_platform_helper.providers.version import InstalledVersionProvider
|
|
17
17
|
from dbt_platform_helper.providers.yaml_file import FileNotFoundException
|
|
18
18
|
from dbt_platform_helper.providers.yaml_file import FileProviderException
|
|
@@ -10,9 +10,9 @@ from requests import Session
|
|
|
10
10
|
from requests.adapters import HTTPAdapter
|
|
11
11
|
from urllib3.util import Retry
|
|
12
12
|
|
|
13
|
+
from dbt_platform_helper.entities.semantic_version import SemanticVersion
|
|
13
14
|
from dbt_platform_helper.platform_exception import PlatformException
|
|
14
15
|
from dbt_platform_helper.providers.io import ClickIOProvider
|
|
15
|
-
from dbt_platform_helper.providers.semantic_version import SemanticVersion
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
def set_up_retry():
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from dataclasses import dataclass
|
|
2
2
|
|
|
3
|
+
from dbt_platform_helper.entities.semantic_version import SemanticVersion
|
|
3
4
|
from dbt_platform_helper.platform_exception import PlatformException
|
|
4
|
-
from dbt_platform_helper.providers.semantic_version import SemanticVersion
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
class UnsupportedVersionException(PlatformException):
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from schema import SchemaError
|
|
2
2
|
|
|
3
|
+
from dbt_platform_helper.entities.platform_config_schema import PlatformConfigSchema
|
|
3
4
|
from dbt_platform_helper.providers.config_validator import ConfigValidator
|
|
4
|
-
from dbt_platform_helper.providers.platform_config_schema import PlatformConfigSchema
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
def validate_addons(addons: dict):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dbt-platform-helper
|
|
3
|
-
Version: 15.
|
|
3
|
+
Version: 15.1.0
|
|
4
4
|
Summary: Set of tools to help transfer applications/services from GOV.UK PaaS to DBT PaaS augmenting AWS Copilot.
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Department for Business and Trade Platform Team
|
|
@@ -20,7 +20,7 @@ dbt_platform_helper/default-extensions.yml,sha256=SU1ZitskbuEBpvE7efc3s56eAUF11j
|
|
|
20
20
|
dbt_platform_helper/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
dbt_platform_helper/domain/codebase.py,sha256=9BTs7PNYaBRqthv5bAR6_dtiwmAQ1CIZjt3jN21aQv8,12228
|
|
22
22
|
dbt_platform_helper/domain/conduit.py,sha256=5C5GnF5jssJ1rFFCY6qaKgvLjYUkyytRJE4tHlanYa0,4370
|
|
23
|
-
dbt_platform_helper/domain/config.py,sha256=
|
|
23
|
+
dbt_platform_helper/domain/config.py,sha256=Iyf-lV4YDD6BHH-RRaTvp-7qPS8BYeHM_SkSfeU7si4,13802
|
|
24
24
|
dbt_platform_helper/domain/copilot.py,sha256=9L4h-WFwgRU8AMjf14PlDqwLqOpIRinkuPvhe-8Uk3c,15034
|
|
25
25
|
dbt_platform_helper/domain/copilot_environment.py,sha256=fL3XJCOfO0BJRCrCoBPFCcshrQoX1FeSYNTziOEaH4A,9093
|
|
26
26
|
dbt_platform_helper/domain/database_copy.py,sha256=AedcBTfKDod0OlMqVP6zb9c_9VIc3vqro0oUUhh7nwc,9497
|
|
@@ -28,7 +28,9 @@ dbt_platform_helper/domain/maintenance_page.py,sha256=0_dgM5uZvjVNBKcqScspjutinM
|
|
|
28
28
|
dbt_platform_helper/domain/notify.py,sha256=_BWj5znDWtrSdJ5xzDBgnao4ukliBA5wiUZGobIDyiI,1894
|
|
29
29
|
dbt_platform_helper/domain/pipelines.py,sha256=BUoXlV4pIKSw3Ry6oVMzd0mBU6tfl_tvqp-1zxHrQdk,6552
|
|
30
30
|
dbt_platform_helper/domain/terraform_environment.py,sha256=kPfA44KCNnF_7ihQPuxaShLjEnVShrbruLwr5xoCeRc,1825
|
|
31
|
-
dbt_platform_helper/domain/versioning.py,sha256=
|
|
31
|
+
dbt_platform_helper/domain/versioning.py,sha256=pIL8VPAJHqX5kJBp3QIxII5vmUo4aIYW_U9u_KxUJd0,5494
|
|
32
|
+
dbt_platform_helper/entities/platform_config_schema.py,sha256=ADkEP5PEjZswBKuPvpi1QHW_dXiC-CIAx730c11Uio0,27544
|
|
33
|
+
dbt_platform_helper/entities/semantic_version.py,sha256=VgQ6V6OgSaleuVmMB8Kl_yLoakXl2auapJTDbK00mfc,2679
|
|
32
34
|
dbt_platform_helper/jinja2_tags.py,sha256=hKG6RS3zlxJHQ-Op9r2U2-MhWp4s3lZir4Ihe24ApJ0,540
|
|
33
35
|
dbt_platform_helper/platform_exception.py,sha256=bheZV9lqGvrCVTNT92349dVntNDEDWTEwciZgC83WzE,187
|
|
34
36
|
dbt_platform_helper/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -40,7 +42,7 @@ dbt_platform_helper/providers/aws/redis.py,sha256=i3Kb00_BdqssjQg1wgZ-8GRXcEWQiO
|
|
|
40
42
|
dbt_platform_helper/providers/aws/sso_auth.py,sha256=1cE9gVu0XZoE3Nycs1anShistRU_CZCOGMFzFpaAq0w,2275
|
|
41
43
|
dbt_platform_helper/providers/cache.py,sha256=1hEwp0y9WYbEfgsp-RU9MyzIgCt1-4BxApgd_0uVweE,3615
|
|
42
44
|
dbt_platform_helper/providers/cloudformation.py,sha256=syMH6xc-ALRbsYQvlw9RcjX7c1MufFzwEdEzp_ucWig,5359
|
|
43
|
-
dbt_platform_helper/providers/config.py,sha256=
|
|
45
|
+
dbt_platform_helper/providers/config.py,sha256=8eK6txDTTF3s3iy7WxKszlaE33pHVhbJ55UDUJ9_nYw,9861
|
|
44
46
|
dbt_platform_helper/providers/config_validator.py,sha256=uF1GB-fl0ZuXVCtLNANgnY22UbiWZniBg1PiXgzGzuU,9923
|
|
45
47
|
dbt_platform_helper/providers/copilot.py,sha256=eruF_ZWWtrJFNQVuzXRMRfqOWGCXpvR7yu50olU4Nk8,5362
|
|
46
48
|
dbt_platform_helper/providers/ecr.py,sha256=siCGTEXR8Jd_pemPfKI3_U5P3Ix6dPrhWsg94EQiZzA,3266
|
|
@@ -50,17 +52,15 @@ dbt_platform_helper/providers/io.py,sha256=tU0jK8krKvBmdGM-sQXpFEqcUxORjFKFIdMNI
|
|
|
50
52
|
dbt_platform_helper/providers/kms.py,sha256=JR2EU3icXePoJCtr7QnqDPj1wWbyn5Uf9CRFq3_4lRs,647
|
|
51
53
|
dbt_platform_helper/providers/load_balancers.py,sha256=G-gqhthaO6ZmpKq6zAqnY1AUtc5YjnI99sQzpeaM0ec,10644
|
|
52
54
|
dbt_platform_helper/providers/parameter_store.py,sha256=klxDhcQ65Yc2KAc4Gf5P0vhpZOW7_vZalAVb-LLAA4s,1568
|
|
53
|
-
dbt_platform_helper/providers/platform_config_schema.py,sha256=ADkEP5PEjZswBKuPvpi1QHW_dXiC-CIAx730c11Uio0,27544
|
|
54
55
|
dbt_platform_helper/providers/schema_migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
56
|
dbt_platform_helper/providers/schema_migrations/schema_v0_to_v1_migration.py,sha256=dplbvEAc8l8F4dEAy3JwLP1Phjkt4QVuQYNX_EKe_Ls,2036
|
|
56
57
|
dbt_platform_helper/providers/schema_migrator.py,sha256=qk14k3hMz1av9VrxHyJw2OKJLQnCBv_ugOoxZr3tFXQ,2854
|
|
57
58
|
dbt_platform_helper/providers/secrets.py,sha256=mOTIrcRRxxV2tS40U8onAjWekfPS3NzCvvyCMjr_yrU,5327
|
|
58
|
-
dbt_platform_helper/providers/semantic_version.py,sha256=VgQ6V6OgSaleuVmMB8Kl_yLoakXl2auapJTDbK00mfc,2679
|
|
59
59
|
dbt_platform_helper/providers/slack_channel_notifier.py,sha256=G8etEcaBQSNHg8BnyC5UPv6l3vUB14cYWjcaAQksaEk,2135
|
|
60
60
|
dbt_platform_helper/providers/terraform_manifest.py,sha256=otqVh_0KCqP35bZstTzd-TEEe0BYvEWmVn_quYumiNs,9345
|
|
61
61
|
dbt_platform_helper/providers/validation.py,sha256=i2g-Mrd4hy_fGIfGa6ZQy4vTJ40OM44Fe_XpEifGWxs,126
|
|
62
|
-
dbt_platform_helper/providers/version.py,sha256=
|
|
63
|
-
dbt_platform_helper/providers/version_status.py,sha256
|
|
62
|
+
dbt_platform_helper/providers/version.py,sha256=QNGrV5nyJi0JysXowYUU4OrXGDn27WmFezlV8benpdY,4251
|
|
63
|
+
dbt_platform_helper/providers/version_status.py,sha256=qafnhZrEc9k1cvXJpvJhkGj6WtkzcsoQhqS_Y6JXy48,929
|
|
64
64
|
dbt_platform_helper/providers/vpc.py,sha256=EIjjD71K1Ry3V1jyaAkAjZwlwu_FSTn-AS7kiJFiipA,2953
|
|
65
65
|
dbt_platform_helper/providers/yaml_file.py,sha256=LZ8eCPDQRr1wlck13My5hQa0eE2OVhSomm-pOIuZ9h0,2881
|
|
66
66
|
dbt_platform_helper/templates/.copilot/config.yml,sha256=J_bA9sCtBdCPBRImpCBRnYvhQd4vpLYIXIU-lq9vbkA,158
|
|
@@ -95,10 +95,10 @@ dbt_platform_helper/utils/click.py,sha256=Fx4y4bbve1zypvog_sgK7tJtCocmzheoEFLBRv
|
|
|
95
95
|
dbt_platform_helper/utils/git.py,sha256=9jyLhv37KKE6r-_hb3zvjhTbluA81kdrOdNeG6MB-_M,384
|
|
96
96
|
dbt_platform_helper/utils/messages.py,sha256=nWA7BWLb7ND0WH5TejDN4OQUJSKYBxU4tyCzteCrfT0,142
|
|
97
97
|
dbt_platform_helper/utils/template.py,sha256=g-Db-0I6a6diOHkgK1nYA0IxJSO4TRrjqOvlyeOR32o,950
|
|
98
|
-
dbt_platform_helper/utils/validation.py,sha256=
|
|
98
|
+
dbt_platform_helper/utils/validation.py,sha256=W5jKC2zp5Q7cJ0PT57GB-s9FkJXrNt1jmWojXRFymcY,1187
|
|
99
99
|
platform_helper.py,sha256=_YNNGtMkH5BcpC_mQQYJrmlf2mt7lkxTYeH7ZgflPoA,1925
|
|
100
|
-
dbt_platform_helper-15.
|
|
101
|
-
dbt_platform_helper-15.
|
|
102
|
-
dbt_platform_helper-15.
|
|
103
|
-
dbt_platform_helper-15.
|
|
104
|
-
dbt_platform_helper-15.
|
|
100
|
+
dbt_platform_helper-15.1.0.dist-info/LICENSE,sha256=dP79lN73--7LMApnankTGLqDbImXg8iYFqWgnExGkGk,1090
|
|
101
|
+
dbt_platform_helper-15.1.0.dist-info/METADATA,sha256=oafls3Rln5lBcG_zFUxNUiuP5sW2GHJi8Qp4Ai66Qm0,3293
|
|
102
|
+
dbt_platform_helper-15.1.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
103
|
+
dbt_platform_helper-15.1.0.dist-info/entry_points.txt,sha256=QhbY8F434A-onsg0-FsdMd2U6HKh6Q7yCFFZrGUh5-M,67
|
|
104
|
+
dbt_platform_helper-15.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-15.0.0.dist-info → dbt_platform_helper-15.1.0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|