dbt-platform-helper 14.1.0__tar.gz → 14.1.1__tar.gz
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-14.1.0 → dbt_platform_helper-14.1.1}/PKG-INFO +1 -1
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/COMMANDS.md +44 -0
- dbt_platform_helper-14.1.1/dbt_platform_helper/commands/version.py +31 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/platform_helper.py +2 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/pyproject.toml +1 -1
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/LICENSE +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/README.md +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/__init__.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/addon-plans.yml +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/__init__.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/application.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/codebase.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/conduit.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/config.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/copilot.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/database.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/environment.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/generate.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/notify.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/pipeline.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/secrets.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/constants.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/default-extensions.yml +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/__init__.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/codebase.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/conduit.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/config.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/copilot.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/copilot_environment.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/database_copy.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/maintenance_page.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/notify.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/pipelines.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/terraform_environment.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/versioning.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/jinja2_tags.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/platform_exception.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/__init__.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/aws/__init__.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/aws/exceptions.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/aws/interfaces.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/aws/opensearch.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/aws/redis.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/aws/sso_auth.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/cache.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/cloudformation.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/config.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/config_validator.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/copilot.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/ecr.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/ecs.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/files.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/io.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/kms.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/load_balancers.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/parameter_store.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/platform_config_schema.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/schema_migrations/__init__.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/schema_migrations/schema_v0_to_v1_migration.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/schema_migrator.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/secrets.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/semantic_version.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/slack_channel_notifier.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/terraform_manifest.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/validation.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/version.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/version_status.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/vpc.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/yaml_file.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/.copilot/config.yml +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/.copilot/image_build_run.sh +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/.copilot/phases/build.sh +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/.copilot/phases/install.sh +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/.copilot/phases/post_build.sh +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/.copilot/phases/pre_build.sh +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/COMMANDS.md.jinja +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/addon-instructions.txt +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/addons/README.md +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/addons/svc/appconfig-ipfilter.yml +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/addons/svc/prometheus-policy.yml +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/addons/svc/s3-cross-account-policy.yml +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/addons/svc/s3-policy.yml +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/addons/svc/subscription-filter.yml +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/ci-codebuild-role-policy.json +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/create-codebuild-role.json +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/custom-codebuild-role-policy.json +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/env/manifest.yml +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/env/terraform-overrides/cfn.patches.yml +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/environment-pipelines/main.tf +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/svc/maintenance_pages/default.html +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/svc/maintenance_pages/dmas-migration.html +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/svc/maintenance_pages/migration.html +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/templates/svc/overrides/cfn.patches.yml +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/__init__.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/application.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/arn_parser.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/aws.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/click.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/git.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/messages.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/template.py +0 -0
- {dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/validation.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dbt-platform-helper
|
|
3
|
-
Version: 14.1.
|
|
3
|
+
Version: 14.1.1
|
|
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
|
|
@@ -34,6 +34,8 @@
|
|
|
34
34
|
- [platform-helper database dump](#platform-helper-database-dump)
|
|
35
35
|
- [platform-helper database load](#platform-helper-database-load)
|
|
36
36
|
- [platform-helper database copy](#platform-helper-database-copy)
|
|
37
|
+
- [platform-helper version](#platform-helper-version)
|
|
38
|
+
- [platform-helper version get-platform-helper-for-project](#platform-helper-version-get-platform-helper-for-project)
|
|
37
39
|
|
|
38
40
|
# platform-helper
|
|
39
41
|
|
|
@@ -63,6 +65,7 @@ platform-helper <command> [--version]
|
|
|
63
65
|
- [`notify` ↪](#platform-helper-notify)
|
|
64
66
|
- [`pipeline` ↪](#platform-helper-pipeline)
|
|
65
67
|
- [`secrets` ↪](#platform-helper-secrets)
|
|
68
|
+
- [`version` ↪](#platform-helper-version)
|
|
66
69
|
|
|
67
70
|
# platform-helper application
|
|
68
71
|
|
|
@@ -866,3 +869,44 @@ platform-helper database copy --from <from_env> --to <to_env> --database <databa
|
|
|
866
869
|
|
|
867
870
|
- `--help <boolean>` _Defaults to False._
|
|
868
871
|
- Show this message and exit.
|
|
872
|
+
|
|
873
|
+
# platform-helper version
|
|
874
|
+
|
|
875
|
+
[↩ Parent](#platform-helper)
|
|
876
|
+
|
|
877
|
+
Contains subcommands for getting version information about the current
|
|
878
|
+
project.
|
|
879
|
+
|
|
880
|
+
## Usage
|
|
881
|
+
|
|
882
|
+
```
|
|
883
|
+
platform-helper version get-platform-helper-for-project
|
|
884
|
+
```
|
|
885
|
+
|
|
886
|
+
## Options
|
|
887
|
+
|
|
888
|
+
- `--help <boolean>` _Defaults to False._
|
|
889
|
+
- Show this message and exit.
|
|
890
|
+
|
|
891
|
+
## Commands
|
|
892
|
+
|
|
893
|
+
- [`get-platform-helper-for-project` ↪](#platform-helper-version-get-platform-helper-for-project)
|
|
894
|
+
|
|
895
|
+
# platform-helper version get-platform-helper-for-project
|
|
896
|
+
|
|
897
|
+
[↩ Parent](#platform-helper-version)
|
|
898
|
+
|
|
899
|
+
Print the version of platform-tools required by the current project
|
|
900
|
+
|
|
901
|
+
## Usage
|
|
902
|
+
|
|
903
|
+
```
|
|
904
|
+
platform-helper version get-platform-helper-for-project [--pipeline <pipeline>]
|
|
905
|
+
```
|
|
906
|
+
|
|
907
|
+
## Options
|
|
908
|
+
|
|
909
|
+
- `--pipeline <text>`
|
|
910
|
+
- Take into account platform-tools version overrides in the specified pipeline
|
|
911
|
+
- `--help <boolean>` _Defaults to False._
|
|
912
|
+
- Show this message and exit.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import click
|
|
2
|
+
|
|
3
|
+
from dbt_platform_helper.domain.versioning import PlatformHelperVersioning
|
|
4
|
+
from dbt_platform_helper.platform_exception import PlatformException
|
|
5
|
+
from dbt_platform_helper.providers.io import ClickIOProvider
|
|
6
|
+
from dbt_platform_helper.utils.click import ClickDocOptGroup
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@click.group(chain=True, cls=ClickDocOptGroup)
|
|
10
|
+
def version():
|
|
11
|
+
"""Contains subcommands for getting version information about the current
|
|
12
|
+
project."""
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@version.command(help="Print the version of platform-tools required by the current project")
|
|
16
|
+
@click.option(
|
|
17
|
+
"--pipeline",
|
|
18
|
+
required=False,
|
|
19
|
+
type=str,
|
|
20
|
+
help="Take into account platform-tools version overrides in the specified pipeline",
|
|
21
|
+
)
|
|
22
|
+
def get_platform_helper_for_project(pipeline):
|
|
23
|
+
"""
|
|
24
|
+
Deprecated: Required in pipelines for projects running platform-helper < 14.0.0.
|
|
25
|
+
|
|
26
|
+
Version preferences removed, requires specifying platform-helper version in platform-config.yml
|
|
27
|
+
"""
|
|
28
|
+
try:
|
|
29
|
+
PlatformHelperVersioning().get_required_version()
|
|
30
|
+
except PlatformException as err:
|
|
31
|
+
ClickIOProvider().abort_with_error(str(err))
|
|
@@ -15,6 +15,7 @@ from dbt_platform_helper.commands.generate import generate as generate_commands
|
|
|
15
15
|
from dbt_platform_helper.commands.notify import notify as notify_commands
|
|
16
16
|
from dbt_platform_helper.commands.pipeline import pipeline as pipeline_commands
|
|
17
17
|
from dbt_platform_helper.commands.secrets import secrets as secrets_commands
|
|
18
|
+
from dbt_platform_helper.commands.version import version as version_commands
|
|
18
19
|
from dbt_platform_helper.utils.click import ClickDocOptGroup
|
|
19
20
|
|
|
20
21
|
|
|
@@ -38,6 +39,7 @@ platform_helper.add_command(pipeline_commands)
|
|
|
38
39
|
platform_helper.add_command(secrets_commands)
|
|
39
40
|
platform_helper.add_command(notify_commands)
|
|
40
41
|
platform_helper.add_command(database_commands)
|
|
42
|
+
platform_helper.add_command(version_commands)
|
|
41
43
|
|
|
42
44
|
if __name__ == "__main__":
|
|
43
45
|
platform_helper(auto_envvar_prefix="DBT_PLATFORM")
|
|
@@ -3,7 +3,7 @@ line-length = 100
|
|
|
3
3
|
|
|
4
4
|
[tool.poetry]
|
|
5
5
|
name = "dbt-platform-helper"
|
|
6
|
-
version = "14.1.
|
|
6
|
+
version = "14.1.1"
|
|
7
7
|
description = "Set of tools to help transfer applications/services from GOV.UK PaaS to DBT PaaS augmenting AWS Copilot."
|
|
8
8
|
authors = ["Department for Business and Trade Platform Team <sre-team@digital.trade.gov.uk>"]
|
|
9
9
|
license = "MIT"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/addon-plans.yml
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/codebase.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/conduit.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/config.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/copilot.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/database.py
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/generate.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/notify.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/pipeline.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/commands/secrets.py
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/default-extensions.yml
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/__init__.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/codebase.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/conduit.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/config.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/copilot.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/notify.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/pipelines.py
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/domain/versioning.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/jinja2_tags.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/platform_exception.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/aws/redis.py
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/cache.py
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/config.py
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/copilot.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/ecr.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/ecs.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/files.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/io.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/kms.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/secrets.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/version.py
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/vpc.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/providers/yaml_file.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/__init__.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/application.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/arn_parser.py
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/click.py
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/messages.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/template.py
RENAMED
|
File without changes
|
{dbt_platform_helper-14.1.0 → dbt_platform_helper-14.1.1}/dbt_platform_helper/utils/validation.py
RENAMED
|
File without changes
|