dbt-platform-helper 13.1.0__py3-none-any.whl → 13.1.2__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/commands/application.py +4 -4
- dbt_platform_helper/commands/codebase.py +4 -4
- dbt_platform_helper/commands/conduit.py +4 -4
- dbt_platform_helper/commands/config.py +7 -5
- dbt_platform_helper/commands/copilot.py +12 -391
- dbt_platform_helper/commands/environment.py +4 -4
- dbt_platform_helper/commands/generate.py +1 -1
- dbt_platform_helper/commands/notify.py +4 -4
- dbt_platform_helper/commands/pipeline.py +4 -4
- dbt_platform_helper/commands/secrets.py +4 -4
- dbt_platform_helper/commands/version.py +1 -1
- dbt_platform_helper/domain/codebase.py +4 -9
- dbt_platform_helper/domain/copilot.py +394 -0
- dbt_platform_helper/domain/copilot_environment.py +6 -6
- dbt_platform_helper/domain/maintenance_page.py +193 -424
- dbt_platform_helper/domain/versioning.py +67 -0
- dbt_platform_helper/providers/io.py +14 -0
- dbt_platform_helper/providers/load_balancers.py +258 -43
- dbt_platform_helper/providers/platform_config_schema.py +3 -1
- dbt_platform_helper/providers/platform_helper_versioning.py +107 -0
- dbt_platform_helper/providers/semantic_version.py +27 -7
- dbt_platform_helper/providers/version.py +24 -0
- dbt_platform_helper/utils/application.py +14 -0
- dbt_platform_helper/utils/files.py +6 -0
- dbt_platform_helper/utils/versioning.py +11 -158
- {dbt_platform_helper-13.1.0.dist-info → dbt_platform_helper-13.1.2.dist-info}/METADATA +3 -4
- {dbt_platform_helper-13.1.0.dist-info → dbt_platform_helper-13.1.2.dist-info}/RECORD +30 -27
- {dbt_platform_helper-13.1.0.dist-info → dbt_platform_helper-13.1.2.dist-info}/LICENSE +0 -0
- {dbt_platform_helper-13.1.0.dist-info → dbt_platform_helper-13.1.2.dist-info}/WHEEL +0 -0
- {dbt_platform_helper-13.1.0.dist-info → dbt_platform_helper-13.1.2.dist-info}/entry_points.txt +0 -0
|
@@ -1,174 +1,27 @@
|
|
|
1
|
-
import os
|
|
2
1
|
import re
|
|
3
2
|
import subprocess
|
|
4
|
-
from importlib.metadata import PackageNotFoundError
|
|
5
|
-
from importlib.metadata import version
|
|
6
3
|
from pathlib import Path
|
|
7
4
|
|
|
8
5
|
from dbt_platform_helper.constants import DEFAULT_TERRAFORM_PLATFORM_MODULES_VERSION
|
|
9
|
-
from dbt_platform_helper.
|
|
10
|
-
|
|
11
|
-
from dbt_platform_helper.providers.config import ConfigProvider
|
|
12
|
-
from dbt_platform_helper.providers.io import ClickIOProvider
|
|
13
|
-
from dbt_platform_helper.providers.semantic_version import (
|
|
14
|
-
IncompatibleMajorVersionException,
|
|
15
|
-
)
|
|
16
|
-
from dbt_platform_helper.providers.semantic_version import (
|
|
17
|
-
IncompatibleMinorVersionException,
|
|
6
|
+
from dbt_platform_helper.providers.platform_helper_versioning import (
|
|
7
|
+
PlatformHelperVersioning,
|
|
18
8
|
)
|
|
19
9
|
from dbt_platform_helper.providers.semantic_version import PlatformHelperVersionStatus
|
|
20
10
|
from dbt_platform_helper.providers.semantic_version import SemanticVersion
|
|
21
11
|
from dbt_platform_helper.providers.semantic_version import VersionStatus
|
|
22
12
|
from dbt_platform_helper.providers.validation import ValidationException
|
|
23
13
|
from dbt_platform_helper.providers.version import GithubVersionProvider
|
|
24
|
-
from dbt_platform_helper.providers.version import PyPiVersionProvider
|
|
25
|
-
from dbt_platform_helper.providers.yaml_file import FileProviderException
|
|
26
14
|
from dbt_platform_helper.providers.yaml_file import YamlFileProvider
|
|
27
15
|
|
|
28
16
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
class RequiredVersion:
|
|
35
|
-
def __init__(self, io=None):
|
|
36
|
-
self.io = io or ClickIOProvider()
|
|
37
|
-
|
|
38
|
-
def get_required_platform_helper_version(
|
|
39
|
-
self, pipeline: str = None, versions: PlatformHelperVersionStatus = None
|
|
40
|
-
) -> str:
|
|
41
|
-
if not versions:
|
|
42
|
-
versions = get_platform_helper_versions()
|
|
43
|
-
pipeline_version = versions.pipeline_overrides.get(pipeline)
|
|
44
|
-
version_precedence = [
|
|
45
|
-
pipeline_version,
|
|
46
|
-
versions.platform_config_default,
|
|
47
|
-
versions.deprecated_version_file,
|
|
48
|
-
]
|
|
49
|
-
non_null_version_precedence = [
|
|
50
|
-
f"{v}" if isinstance(v, SemanticVersion) else v for v in version_precedence if v
|
|
51
|
-
]
|
|
52
|
-
|
|
53
|
-
out = non_null_version_precedence[0] if non_null_version_precedence else None
|
|
54
|
-
|
|
55
|
-
if not out:
|
|
56
|
-
raise PlatformHelperVersionNotFoundException
|
|
57
|
-
|
|
58
|
-
return out
|
|
59
|
-
|
|
60
|
-
def get_required_version(self, pipeline=None):
|
|
61
|
-
version = self.get_required_platform_helper_version(pipeline)
|
|
62
|
-
self.io.info(version)
|
|
63
|
-
return version
|
|
64
|
-
|
|
65
|
-
# Used in the generate command
|
|
66
|
-
def check_platform_helper_version_mismatch(self):
|
|
67
|
-
if not running_as_installed_package():
|
|
68
|
-
return
|
|
69
|
-
|
|
70
|
-
versions = get_platform_helper_versions()
|
|
71
|
-
platform_helper_file_version = SemanticVersion.from_string(
|
|
72
|
-
self.get_required_platform_helper_version(versions=versions)
|
|
73
|
-
)
|
|
74
|
-
|
|
75
|
-
if not versions.local == platform_helper_file_version:
|
|
76
|
-
message = (
|
|
77
|
-
f"WARNING: You are running platform-helper v{versions.local} against "
|
|
78
|
-
f"v{platform_helper_file_version} specified by {PLATFORM_HELPER_VERSION_FILE}."
|
|
79
|
-
)
|
|
80
|
-
self.io.warn(message)
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
# Resolves all the versions from pypi, config and locally installed version
|
|
84
|
-
# echos warnings if anything is incompatible
|
|
85
|
-
def get_platform_helper_versions(
|
|
86
|
-
include_project_versions=True, yaml_provider=YamlFileProvider
|
|
17
|
+
# TODO to be removed after config tests are updated - temporary wrapper mid-refactor
|
|
18
|
+
def get_platform_helper_version_status(
|
|
19
|
+
include_project_versions=True,
|
|
20
|
+
yaml_provider=YamlFileProvider,
|
|
87
21
|
) -> PlatformHelperVersionStatus:
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
except PackageNotFoundError:
|
|
91
|
-
locally_installed_version = None
|
|
92
|
-
|
|
93
|
-
latest_release = PyPiVersionProvider.get_latest_version("dbt-platform-helper")
|
|
94
|
-
|
|
95
|
-
if not include_project_versions:
|
|
96
|
-
return PlatformHelperVersionStatus(
|
|
97
|
-
local=locally_installed_version,
|
|
98
|
-
latest=latest_release,
|
|
99
|
-
)
|
|
100
|
-
|
|
101
|
-
deprecated_version_file = Path(PLATFORM_HELPER_VERSION_FILE)
|
|
102
|
-
try:
|
|
103
|
-
loaded_version = yaml_provider.load(deprecated_version_file)
|
|
104
|
-
version_from_file = SemanticVersion.from_string(loaded_version)
|
|
105
|
-
except FileProviderException:
|
|
106
|
-
version_from_file = None
|
|
107
|
-
|
|
108
|
-
platform_config_default, pipeline_overrides = None, {}
|
|
109
|
-
|
|
110
|
-
config = ConfigProvider()
|
|
111
|
-
platform_config = config.load_unvalidated_config_file()
|
|
112
|
-
|
|
113
|
-
if platform_config:
|
|
114
|
-
platform_config_default = SemanticVersion.from_string(
|
|
115
|
-
platform_config.get("default_versions", {}).get("platform-helper")
|
|
116
|
-
)
|
|
117
|
-
|
|
118
|
-
pipeline_overrides = {
|
|
119
|
-
name: pipeline.get("versions", {}).get("platform-helper")
|
|
120
|
-
for name, pipeline in platform_config.get("environment_pipelines", {}).items()
|
|
121
|
-
if pipeline.get("versions", {}).get("platform-helper")
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
out = PlatformHelperVersionStatus(
|
|
125
|
-
local=locally_installed_version,
|
|
126
|
-
latest=latest_release,
|
|
127
|
-
deprecated_version_file=version_from_file,
|
|
128
|
-
platform_config_default=platform_config_default,
|
|
129
|
-
pipeline_overrides=pipeline_overrides,
|
|
130
|
-
)
|
|
131
|
-
|
|
132
|
-
_process_version_file_warnings(out)
|
|
133
|
-
|
|
134
|
-
return out
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
# Validates the returned PlatformHelperVersionStatus and echos useful warnings
|
|
138
|
-
# Could return ValidationMessages (warnings and errors) which are output elsewhere
|
|
139
|
-
def _process_version_file_warnings(versions: PlatformHelperVersionStatus, io=ClickIOProvider()):
|
|
140
|
-
messages = versions.warn()
|
|
141
|
-
|
|
142
|
-
if messages.get("errors"):
|
|
143
|
-
io.error("\n".join(messages["errors"]))
|
|
144
|
-
|
|
145
|
-
if messages.get("warnings"):
|
|
146
|
-
io.warn("\n".join(messages["warnings"]))
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
# TODO called at the beginning of every command. This is platform-version base functionality
|
|
150
|
-
def check_platform_helper_version_needs_update(io=ClickIOProvider()):
|
|
151
|
-
if not running_as_installed_package() or "PLATFORM_TOOLS_SKIP_VERSION_CHECK" in os.environ:
|
|
152
|
-
return
|
|
153
|
-
versions = get_platform_helper_versions(include_project_versions=False)
|
|
154
|
-
local_version = versions.local
|
|
155
|
-
latest_release = versions.latest
|
|
156
|
-
message = (
|
|
157
|
-
f"You are running platform-helper v{local_version}, upgrade to "
|
|
158
|
-
f"v{latest_release} by running run `pip install "
|
|
159
|
-
"--upgrade dbt-platform-helper`."
|
|
22
|
+
return PlatformHelperVersioning(file_provider=yaml_provider).get_status(
|
|
23
|
+
include_project_versions=include_project_versions
|
|
160
24
|
)
|
|
161
|
-
try:
|
|
162
|
-
local_version.validate_compatibility_with(latest_release)
|
|
163
|
-
except IncompatibleMajorVersionException:
|
|
164
|
-
io.error(message)
|
|
165
|
-
except IncompatibleMinorVersionException:
|
|
166
|
-
io.warn(message)
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
# TODO can stay as utility for now
|
|
170
|
-
def running_as_installed_package():
|
|
171
|
-
return "site-packages" in __file__
|
|
172
25
|
|
|
173
26
|
|
|
174
27
|
def get_required_terraform_platform_modules_version(
|
|
@@ -182,10 +35,10 @@ def get_required_terraform_platform_modules_version(
|
|
|
182
35
|
return [version for version in version_preference_order if version][0]
|
|
183
36
|
|
|
184
37
|
|
|
185
|
-
|
|
38
|
+
##################################################################################
|
|
186
39
|
# Only used in Config domain
|
|
187
|
-
# TODO
|
|
188
|
-
|
|
40
|
+
# TODO Relocate along with tests when we refactor config command in DBTP-1538
|
|
41
|
+
##################################################################################
|
|
189
42
|
|
|
190
43
|
|
|
191
44
|
# Getting version from the "Generated by" comment in a file that was generated from a template
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dbt-platform-helper
|
|
3
|
-
Version: 13.1.
|
|
3
|
+
Version: 13.1.2
|
|
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
|
|
7
7
|
Author-email: sre-team@digital.trade.gov.uk
|
|
8
|
-
Requires-Python: >=3.9
|
|
8
|
+
Requires-Python: >=3.9, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*, !=3.8.*
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -25,7 +24,7 @@ Requires-Dist: cfn-lint (>=1.4.2,<2.0.0)
|
|
|
25
24
|
Requires-Dist: checkov (>=3.1.67,<4.0.0)
|
|
26
25
|
Requires-Dist: click (>=8.1.3,<9.0.0)
|
|
27
26
|
Requires-Dist: cloudfoundry-client (==1.35.2)
|
|
28
|
-
Requires-Dist: cryptography (>=
|
|
27
|
+
Requires-Dist: cryptography (>=44.0.1,<45)
|
|
29
28
|
Requires-Dist: jinja2-simple-tags (>=0.5.0,<0.6.0)
|
|
30
29
|
Requires-Dist: jsonschema (>=4.17.0,<4.18.0)
|
|
31
30
|
Requires-Dist: mypy-boto3-codebuild (>=1.26.0.post1,<2.0.0)
|
|
@@ -3,28 +3,30 @@ dbt_platform_helper/README.md,sha256=B0qN2_u_ASqqgkGDWY2iwNGZt_9tUgMb9XqtaTuzYjw
|
|
|
3
3
|
dbt_platform_helper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
dbt_platform_helper/addon-plans.yml,sha256=O46a_ODsGG9KXmQY_1XbSGqrpSaHSLDe-SdROzHx8Go,4545
|
|
5
5
|
dbt_platform_helper/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
dbt_platform_helper/commands/application.py,sha256=
|
|
7
|
-
dbt_platform_helper/commands/codebase.py,sha256
|
|
8
|
-
dbt_platform_helper/commands/conduit.py,sha256=
|
|
9
|
-
dbt_platform_helper/commands/config.py,sha256=
|
|
10
|
-
dbt_platform_helper/commands/copilot.py,sha256=
|
|
6
|
+
dbt_platform_helper/commands/application.py,sha256=EVbFscw0VoJC_f2Fupm6k8JR_WPDJ9lzKrBSNzXre9A,10155
|
|
7
|
+
dbt_platform_helper/commands/codebase.py,sha256=-2fh9sgWfGzQgzaKWqGK_Me326HTVM-wvpLyBc6YPu4,2383
|
|
8
|
+
dbt_platform_helper/commands/conduit.py,sha256=Ymd0Vl1lRGoK5udrxgkOU4FbAsSACXBUyaeHLtAnhO8,2328
|
|
9
|
+
dbt_platform_helper/commands/config.py,sha256=RKpln4mAgDGErG4CtWFrfsx8nAt7h50E-il1cpUZ-v0,11727
|
|
10
|
+
dbt_platform_helper/commands/copilot.py,sha256=zkfMbAO8mMQF5UdlhrD0rC_KpITvpJLD3yQhxXwmIqc,1307
|
|
11
11
|
dbt_platform_helper/commands/database.py,sha256=aG3zcMHL5PE96b7LSAu0FGCbgcycQej3AGRcd-bpXUo,4115
|
|
12
|
-
dbt_platform_helper/commands/environment.py,sha256=
|
|
13
|
-
dbt_platform_helper/commands/generate.py,sha256=
|
|
14
|
-
dbt_platform_helper/commands/notify.py,sha256=
|
|
15
|
-
dbt_platform_helper/commands/pipeline.py,sha256=
|
|
16
|
-
dbt_platform_helper/commands/secrets.py,sha256=
|
|
17
|
-
dbt_platform_helper/commands/version.py,sha256=
|
|
12
|
+
dbt_platform_helper/commands/environment.py,sha256=oic1zorx0Muc49h3F3OaUp5soOnmjBjfG_WgVXauRCM,3920
|
|
13
|
+
dbt_platform_helper/commands/generate.py,sha256=6fgEImHxrmY-8fusprjSouisqhZUrfttEjlnYMJG0eo,718
|
|
14
|
+
dbt_platform_helper/commands/notify.py,sha256=nwbbNgvtEhPO63sTCRoZ22QI5u5cS6mTCaVgPpiVkNU,3892
|
|
15
|
+
dbt_platform_helper/commands/pipeline.py,sha256=Lu6qXKDsq-5WIMrLeesppF8ePAWKH_V8xcvmOJ33c2Q,3011
|
|
16
|
+
dbt_platform_helper/commands/secrets.py,sha256=5dcQI-zsA-e9vXIOBZ3m6cHGkwhx9Ka4zdPKOFcVVts,4002
|
|
17
|
+
dbt_platform_helper/commands/version.py,sha256=eU403r418bHJRZa4PkVYt0BVV95wfQJgqICQlApABsY,1358
|
|
18
18
|
dbt_platform_helper/constants.py,sha256=DpHGG54lwjw3XGp2TKCEGNmzaz083lAWMGkEabujDrw,1050
|
|
19
19
|
dbt_platform_helper/default-extensions.yml,sha256=SU1ZitskbuEBpvE7efc3s56eAUF11j70brhj_XrNMMo,493
|
|
20
20
|
dbt_platform_helper/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
dbt_platform_helper/domain/codebase.py,sha256=
|
|
21
|
+
dbt_platform_helper/domain/codebase.py,sha256=XsNjXkpVnDikbcN-DN01gY7adg4W2PvfQzhPZJyIBEk,10294
|
|
22
22
|
dbt_platform_helper/domain/conduit.py,sha256=5C5GnF5jssJ1rFFCY6qaKgvLjYUkyytRJE4tHlanYa0,4370
|
|
23
|
-
dbt_platform_helper/domain/
|
|
23
|
+
dbt_platform_helper/domain/copilot.py,sha256=yoHAHwBY7tsARcMhMBbeiuQAlj3f2JfTKNvr1CRmVt0,14514
|
|
24
|
+
dbt_platform_helper/domain/copilot_environment.py,sha256=yPt6ZarOvFPo06XwY1sU5MOQsoV7TEsKSQHyM-G8aGc,9058
|
|
24
25
|
dbt_platform_helper/domain/database_copy.py,sha256=CKvI9LsHyowg0bPT9jImk07w4TyQLPoInQoU2TUDiJQ,9485
|
|
25
|
-
dbt_platform_helper/domain/maintenance_page.py,sha256=
|
|
26
|
+
dbt_platform_helper/domain/maintenance_page.py,sha256=27-ylByLDO7pl3xHlCOLeknmT5rAWS5kWfm0BgPhKpQ,13145
|
|
26
27
|
dbt_platform_helper/domain/pipelines.py,sha256=d5QF9iayFPEeqLuo6ztiGoAN_gLaMV91ps9JoGiAAUI,6498
|
|
27
28
|
dbt_platform_helper/domain/terraform_environment.py,sha256=pyUWIxvMESbyp4yAq715JXKKHW133tr1vwxi2cMK5MI,1754
|
|
29
|
+
dbt_platform_helper/domain/versioning.py,sha256=KuCQBrUFVCBUMiU7lGwtqPlBc9jk9sSgaI2OkjhrwlM,2705
|
|
28
30
|
dbt_platform_helper/jinja2_tags.py,sha256=hKG6RS3zlxJHQ-Op9r2U2-MhWp4s3lZir4Ihe24ApJ0,540
|
|
29
31
|
dbt_platform_helper/platform_exception.py,sha256=bheZV9lqGvrCVTNT92349dVntNDEDWTEwciZgC83WzE,187
|
|
30
32
|
dbt_platform_helper/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -37,16 +39,17 @@ dbt_platform_helper/providers/copilot.py,sha256=nBbt-PoGXVkmb9njJti6Et8dq1W9GytW
|
|
|
37
39
|
dbt_platform_helper/providers/ecr.py,sha256=lmLKGR5OQT8EyGsX-9M7oO0DHIyoMqgchBAVQBeoBZs,639
|
|
38
40
|
dbt_platform_helper/providers/ecs.py,sha256=XlQHYhZiLGrqR-1ZWMagGH2R2Hy7mCP6676eZL3YbNQ,3842
|
|
39
41
|
dbt_platform_helper/providers/files.py,sha256=cJdOV6Eupi-COmGUMxZMF10BZnMi3MCCipTVUnE_NPA,857
|
|
40
|
-
dbt_platform_helper/providers/io.py,sha256=
|
|
41
|
-
dbt_platform_helper/providers/load_balancers.py,sha256=
|
|
42
|
+
dbt_platform_helper/providers/io.py,sha256=T5E_SvmTE4aWq_nAvlYwK6yY-6_nEgK_cd0dQ8PCNUs,1267
|
|
43
|
+
dbt_platform_helper/providers/load_balancers.py,sha256=YBnjhuNuUdbz7HPmxvD2xcu7cUaSwAGFkBxmrZiortU,10310
|
|
42
44
|
dbt_platform_helper/providers/opensearch.py,sha256=tp64jTzHlutleqMpi2h_ZKH1iakZPJnUODebX6i2mfA,1335
|
|
43
|
-
dbt_platform_helper/providers/platform_config_schema.py,sha256=
|
|
45
|
+
dbt_platform_helper/providers/platform_config_schema.py,sha256=1PjqzdOnhSncyX3BPpewl0be9xOBauCfnLLHOW40f2c,26972
|
|
46
|
+
dbt_platform_helper/providers/platform_helper_versioning.py,sha256=_2iKrghWh9JzEbDq5ZgH5o50r1L5bNCyXTNsQXlSvZE,4332
|
|
44
47
|
dbt_platform_helper/providers/redis.py,sha256=aj8pitxG9IKrMkL3fIYayQhcHPPzApdaXq0Uq_0yblg,1217
|
|
45
48
|
dbt_platform_helper/providers/secrets.py,sha256=6cYIR15dLdHmqxtWQpM6R71e0_Xgsg9V291HBG-0LV0,5272
|
|
46
|
-
dbt_platform_helper/providers/semantic_version.py,sha256=
|
|
49
|
+
dbt_platform_helper/providers/semantic_version.py,sha256=XPvwbxTKfrW8Tp3kSEtkRG9jNR2bb3Axo0hcE2Uv7y8,5193
|
|
47
50
|
dbt_platform_helper/providers/terraform_manifest.py,sha256=hrCjkuQIV0Ymt5MPLkh-BfXHtuAScXhWwNkVEp9K5Jg,9354
|
|
48
51
|
dbt_platform_helper/providers/validation.py,sha256=i2g-Mrd4hy_fGIfGa6ZQy4vTJ40OM44Fe_XpEifGWxs,126
|
|
49
|
-
dbt_platform_helper/providers/version.py,sha256=
|
|
52
|
+
dbt_platform_helper/providers/version.py,sha256=w5SEnm4OryKM3qtXYCcLx77vH5rhnbYadNGwQCTNdU8,2054
|
|
50
53
|
dbt_platform_helper/providers/vpc.py,sha256=EIjjD71K1Ry3V1jyaAkAjZwlwu_FSTn-AS7kiJFiipA,2953
|
|
51
54
|
dbt_platform_helper/providers/yaml_file.py,sha256=D4ESXYBdryT4kJ7Jr3koL05c5Lbn6fFv1YReImrYKQo,2180
|
|
52
55
|
dbt_platform_helper/templates/.copilot/config.yml,sha256=J_bA9sCtBdCPBRImpCBRnYvhQd4vpLYIXIU-lq9vbkA,158
|
|
@@ -76,21 +79,21 @@ dbt_platform_helper/templates/svc/manifest-backend.yml,sha256=aAD9ndkbXnF7JBAKS2
|
|
|
76
79
|
dbt_platform_helper/templates/svc/manifest-public.yml,sha256=6NHVR_onBu5hbwynLrB6roDRce7JcylSc0qeYvzlPdI,3664
|
|
77
80
|
dbt_platform_helper/templates/svc/overrides/cfn.patches.yml,sha256=W7-d017akuUq9kda64DQxazavcRcCPDjaAik6t1EZqM,742
|
|
78
81
|
dbt_platform_helper/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
-
dbt_platform_helper/utils/application.py,sha256=
|
|
82
|
+
dbt_platform_helper/utils/application.py,sha256=_O2ywJRYYdWfBVz4LzD07PLO9hSPJf7FylE6toH19KM,5448
|
|
80
83
|
dbt_platform_helper/utils/arn_parser.py,sha256=BaXzIxSOLdFmP_IfAxRq-0j-0Re1iCN7L4j2Zi5-CRQ,1304
|
|
81
84
|
dbt_platform_helper/utils/aws.py,sha256=C18qEs8rekApGpJ39UslPvmpdFKhKX8Pybvz62YslQU,16918
|
|
82
85
|
dbt_platform_helper/utils/click.py,sha256=Fx4y4bbve1zypvog_sgK7tJtCocmzheoEFLBRv1lfdM,2943
|
|
83
86
|
dbt_platform_helper/utils/cloudfoundry.py,sha256=GnQ4fVLnDfOdNSrsJjI6ElZHqpgwINeoPn77cUH2UFY,484
|
|
84
|
-
dbt_platform_helper/utils/files.py,sha256=
|
|
87
|
+
dbt_platform_helper/utils/files.py,sha256=koqFGJhu4uoxKEMoY3_v1n6JUhSK5832ubJdTMHorlQ,2141
|
|
85
88
|
dbt_platform_helper/utils/git.py,sha256=7JGZMaI8-cU6-GjXIXjOlsYfKu_RppLOGyAicBd4n_8,704
|
|
86
89
|
dbt_platform_helper/utils/manifests.py,sha256=ji3UYHCxq9tTpkm4MlRa2y0-JOYYqq1pWZ2h_zpj0UU,507
|
|
87
90
|
dbt_platform_helper/utils/messages.py,sha256=nWA7BWLb7ND0WH5TejDN4OQUJSKYBxU4tyCzteCrfT0,142
|
|
88
91
|
dbt_platform_helper/utils/template.py,sha256=g-Db-0I6a6diOHkgK1nYA0IxJSO4TRrjqOvlyeOR32o,950
|
|
89
92
|
dbt_platform_helper/utils/validation.py,sha256=coN7WsKW_nPGW9EU23AInBkAuvUl1NfQvc2bjVtgs14,1188
|
|
90
|
-
dbt_platform_helper/utils/versioning.py,sha256=
|
|
93
|
+
dbt_platform_helper/utils/versioning.py,sha256=hlZdHSpPtOrHZmkA3kiE-rALX02ZUXWGCpZT2xcS4G8,3726
|
|
91
94
|
platform_helper.py,sha256=lUGBsVgsGGJSDXxRvtvZCo2ybRAWuJXosbzfTzkIxU8,1892
|
|
92
|
-
dbt_platform_helper-13.1.
|
|
93
|
-
dbt_platform_helper-13.1.
|
|
94
|
-
dbt_platform_helper-13.1.
|
|
95
|
-
dbt_platform_helper-13.1.
|
|
96
|
-
dbt_platform_helper-13.1.
|
|
95
|
+
dbt_platform_helper-13.1.2.dist-info/LICENSE,sha256=dP79lN73--7LMApnankTGLqDbImXg8iYFqWgnExGkGk,1090
|
|
96
|
+
dbt_platform_helper-13.1.2.dist-info/METADATA,sha256=pq1WY9ZXizECbK7o70ufepml4puyw1o_gfF_6brbxLw,3243
|
|
97
|
+
dbt_platform_helper-13.1.2.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
98
|
+
dbt_platform_helper-13.1.2.dist-info/entry_points.txt,sha256=QhbY8F434A-onsg0-FsdMd2U6HKh6Q7yCFFZrGUh5-M,67
|
|
99
|
+
dbt_platform_helper-13.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-13.1.0.dist-info → dbt_platform_helper-13.1.2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|