From 3ea6efd7357ff6ca84ce5cdadec931150e87e11d Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Wed, 27 Dec 2023 12:18:20 +0200 Subject: [PATCH] chore(main): Release transformation-aws-compliance-free v0.6.1 --- .release-please-manifest.json | 2 +- .../aws/compliance-free/CHANGELOG.md | 9 +++ .../aws/compliance-free/dbt_project.yml | 61 +++++++------------ 3 files changed, 33 insertions(+), 39 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bad5fd6a4..0308a84ad 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { "transformations/aws/data-resilience": "1.2.0", "transformations/aws/data-resilience+FILLER": "0.0.0", - "transformations/aws/compliance-free": "0.6.0", + "transformations/aws/compliance-free": "0.6.1", "transformations/aws/compliance-free+FILLER": "0.0.0", "transformations/aws/compliance-premium": "0.4.0", "transformations/aws/compliance-premium+FILLER": "0.0.0", diff --git a/transformations/aws/compliance-free/CHANGELOG.md b/transformations/aws/compliance-free/CHANGELOG.md index 635eb2859..512be1562 100644 --- a/transformations/aws/compliance-free/CHANGELOG.md +++ b/transformations/aws/compliance-free/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.6.1](https://github.com/cloudquery/policies-premium/compare/transformation-aws-compliance-free-v0.6.0...transformation-aws-compliance-free-v0.6.1) (2023-12-27) + + +### Bug Fixes + +* Added queries for AWS Foundational Security for Postgres - Free ([#433](https://github.com/cloudquery/policies-premium/issues/433)) ([1899bb4](https://github.com/cloudquery/policies-premium/commit/1899bb41f19f70f26da60b48c5f931e75ba85303)) +* Link to latest versions in README ([#428](https://github.com/cloudquery/policies-premium/issues/428)) ([44901a2](https://github.com/cloudquery/policies-premium/commit/44901a2be3ada54606fc928010ae9a15aaff7173)) +* Updated dbt_run without specifying the model ([#422](https://github.com/cloudquery/policies-premium/issues/422)) ([b7ff919](https://github.com/cloudquery/policies-premium/commit/b7ff91978bd67ef1b859d6aaa012beef1ea84181)) + ## [0.6.0](https://github.com/cloudquery/policies-premium/compare/transformation-aws-compliance-free-v0.5.0...transformation-aws-compliance-free-v0.6.0) (2023-12-12) diff --git a/transformations/aws/compliance-free/dbt_project.yml b/transformations/aws/compliance-free/dbt_project.yml index 6d7f2cae1..7dcd0d96b 100644 --- a/transformations/aws/compliance-free/dbt_project.yml +++ b/transformations/aws/compliance-free/dbt_project.yml @@ -1,41 +1,26 @@ -# Name your project! Project names should contain only lowercase characters -# and underscores. A good package name should reflect your organization's -# name or the intended use of these models -name: "aws_compliance" -version: "1.0.0" +name: aws_compliance +version: 0.6.1 config-version: 2 - -# This setting configures which "profile" dbt uses for this project. -profile: "aws_compliance" - -# These configurations specify where dbt should look for different types of files. -# The `model-paths` config, for example, states that models in this project can be -# found in the "models/" directory. You probably won't need to change these! -model-paths: ["models", "../models"] -analysis-paths: ["analyses"] -test-paths: ["tests"] -seed-paths: ["seeds"] -macro-paths: ["../macros", "../../macros"] -snapshot-paths: ["snapshots"] - -clean-targets: # directories to be removed by `dbt clean` - - "target" - - "dbt_packages" - +profile: aws_compliance +model-paths: + - models + - ../models +analysis-paths: + - analyses +test-paths: + - tests +seed-paths: + - seeds +macro-paths: + - ../macros + - ../../macros +snapshot-paths: + - snapshots +clean-targets: + - target + - dbt_packages dispatch: - macro_namespace: dbt_utils - search_order: ["aws_compliance", "dbt_utils"] -# Configuring models -# Full documentation: https://docs.getdbt.com/docs/configuring-models - -# In this example config, we tell dbt to build all models in the example/ -# directory as views. These settings can be overridden in the individual model -# files using the `{{ config(...) }}` macro. -# models: -# aws_compliance: - -# models: -# aws_compliance__foundational_security_free: -# # Apply this configuration when the `target.name` is 'snowflake' -# +tags: ["snowflake"] -# +enabled: "{{ target.name != 'snowflake' }}" + search_order: + - aws_compliance + - dbt_utils