diff --git a/.gitattributes b/.gitattributes index ba629fbb9..c449b6658 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,6 @@ # ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". +* text=auto eol=lf *.snap linguist-generated /.eslintrc.json linguist-generated /.gitattributes linguist-generated diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 063420fd6..a2251bf12 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,20 +34,20 @@ jobs: id: self_mutation run: |- git add . - git diff --staged --patch --exit-code > .repo.patch || echo "self_mutation_happened=true" >> $GITHUB_OUTPUT + git diff --staged --patch --exit-code > repo.patch || echo "self_mutation_happened=true" >> $GITHUB_OUTPUT working-directory: ./ - name: Upload patch if: steps.self_mutation.outputs.self_mutation_happened - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: - name: .repo.patch - path: .repo.patch + name: repo.patch + path: repo.patch overwrite: true - name: Fail build on mutation if: steps.self_mutation.outputs.self_mutation_happened run: |- echo "::error::Files were changed during build (see build log). If this was triggered from a fork, you will need to update your branch." - cat .repo.patch + cat repo.patch exit 1 self-mutation: needs: build @@ -65,10 +65,10 @@ jobs: - name: Download patch uses: actions/download-artifact@v4 with: - name: .repo.patch + name: repo.patch path: ${{ runner.temp }} - name: Apply patch - run: '[ -s ${{ runner.temp }}/.repo.patch ] && git apply ${{ runner.temp }}/.repo.patch || echo "Empty patch. Skipping."' + run: '[ -s ${{ runner.temp }}/repo.patch ] && git apply ${{ runner.temp }}/repo.patch || echo "Empty patch. Skipping."' - name: Set git identity run: |- git config user.name "github-actions" diff --git a/.github/workflows/release-alexa-ask-skill.yml b/.github/workflows/release-alexa-ask-skill.yml index 7e12eb3b0..e784b63f5 100644 --- a/.github/workflows/release-alexa-ask-skill.yml +++ b/.github/workflows/release-alexa-ask-skill.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/alexa-ask-skill/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-aqua-enterprise-enforcer.yml b/.github/workflows/release-aqua-enterprise-enforcer.yml index 042b1d4e1..d219f1434 100644 --- a/.github/workflows/release-aqua-enterprise-enforcer.yml +++ b/.github/workflows/release-aqua-enterprise-enforcer.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/aqua-enterprise-enforcer/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-aqua-enterprise-kubeenforcer.yml b/.github/workflows/release-aqua-enterprise-kubeenforcer.yml index 496392180..14783ec58 100644 --- a/.github/workflows/release-aqua-enterprise-kubeenforcer.yml +++ b/.github/workflows/release-aqua-enterprise-kubeenforcer.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/aqua-enterprise-kubeenforcer/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-aqua-enterprise-scanner.yml b/.github/workflows/release-aqua-enterprise-scanner.yml index 34bd72a06..3d901a25c 100644 --- a/.github/workflows/release-aqua-enterprise-scanner.yml +++ b/.github/workflows/release-aqua-enterprise-scanner.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/aqua-enterprise-scanner/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-aqua-enterprise-server.yml b/.github/workflows/release-aqua-enterprise-server.yml index 4302381dd..e113e6623 100644 --- a/.github/workflows/release-aqua-enterprise-server.yml +++ b/.github/workflows/release-aqua-enterprise-server.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/aqua-enterprise-server/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-atlassian-opsgenie-integration.yml b/.github/workflows/release-atlassian-opsgenie-integration.yml index 79160f7a0..211f1bac8 100644 --- a/.github/workflows/release-atlassian-opsgenie-integration.yml +++ b/.github/workflows/release-atlassian-opsgenie-integration.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/atlassian-opsgenie-integration/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-atlassian-opsgenie-team.yml b/.github/workflows/release-atlassian-opsgenie-team.yml index 5a9b7dcc8..d46363ed7 100644 --- a/.github/workflows/release-atlassian-opsgenie-team.yml +++ b/.github/workflows/release-atlassian-opsgenie-team.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/atlassian-opsgenie-team/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-atlassian-opsgenie-user.yml b/.github/workflows/release-atlassian-opsgenie-user.yml index b483eb6ae..2f9a57124 100644 --- a/.github/workflows/release-atlassian-opsgenie-user.yml +++ b/.github/workflows/release-atlassian-opsgenie-user.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/atlassian-opsgenie-user/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awscommunity-account-alternatecontact.yml b/.github/workflows/release-awscommunity-account-alternatecontact.yml index 7252036f3..11697d67c 100644 --- a/.github/workflows/release-awscommunity-account-alternatecontact.yml +++ b/.github/workflows/release-awscommunity-account-alternatecontact.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awscommunity-account-alternatecontact/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awscommunity-applicationautoscaling-scheduledaction.yml b/.github/workflows/release-awscommunity-applicationautoscaling-scheduledaction.yml index 75004b953..586b0d120 100644 --- a/.github/workflows/release-awscommunity-applicationautoscaling-scheduledaction.yml +++ b/.github/workflows/release-awscommunity-applicationautoscaling-scheduledaction.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awscommunity-applicationautoscaling-scheduledaction/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awscommunity-cloudfront-s3website-module.yml b/.github/workflows/release-awscommunity-cloudfront-s3website-module.yml index 7b807ccb2..abe249ec2 100644 --- a/.github/workflows/release-awscommunity-cloudfront-s3website-module.yml +++ b/.github/workflows/release-awscommunity-cloudfront-s3website-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awscommunity-cloudfront-s3website-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awscommunity-dynamodb-item.yml b/.github/workflows/release-awscommunity-dynamodb-item.yml index a2aa1d0b6..d52d1a284 100644 --- a/.github/workflows/release-awscommunity-dynamodb-item.yml +++ b/.github/workflows/release-awscommunity-dynamodb-item.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awscommunity-dynamodb-item/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awscommunity-resource-lookup.yml b/.github/workflows/release-awscommunity-resource-lookup.yml index b34849a24..e6739f36f 100644 --- a/.github/workflows/release-awscommunity-resource-lookup.yml +++ b/.github/workflows/release-awscommunity-resource-lookup.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awscommunity-resource-lookup/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awscommunity-s3-bucket-module.yml b/.github/workflows/release-awscommunity-s3-bucket-module.yml index e96f179ae..f85671752 100644 --- a/.github/workflows/release-awscommunity-s3-bucket-module.yml +++ b/.github/workflows/release-awscommunity-s3-bucket-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awscommunity-s3-bucket-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awscommunity-s3-deletebucketcontents.yml b/.github/workflows/release-awscommunity-s3-deletebucketcontents.yml index 1a52ddb4b..715b5792d 100644 --- a/.github/workflows/release-awscommunity-s3-deletebucketcontents.yml +++ b/.github/workflows/release-awscommunity-s3-deletebucketcontents.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awscommunity-s3-deletebucketcontents/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awscommunity-time-offset.yml b/.github/workflows/release-awscommunity-time-offset.yml index 656f40183..c09dfd37d 100644 --- a/.github/workflows/release-awscommunity-time-offset.yml +++ b/.github/workflows/release-awscommunity-time-offset.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awscommunity-time-offset/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awscommunity-time-sleep.yml b/.github/workflows/release-awscommunity-time-sleep.yml index d2cc750da..6d6188b7e 100644 --- a/.github/workflows/release-awscommunity-time-sleep.yml +++ b/.github/workflows/release-awscommunity-time-sleep.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awscommunity-time-sleep/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awscommunity-time-static.yml b/.github/workflows/release-awscommunity-time-static.yml index 73a22a5d1..81f72fb36 100644 --- a/.github/workflows/release-awscommunity-time-static.yml +++ b/.github/workflows/release-awscommunity-time-static.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awscommunity-time-static/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awsqs-checkpoint-cloudguardqs-module.yml b/.github/workflows/release-awsqs-checkpoint-cloudguardqs-module.yml index d7f98a58b..71dc1ca03 100644 --- a/.github/workflows/release-awsqs-checkpoint-cloudguardqs-module.yml +++ b/.github/workflows/release-awsqs-checkpoint-cloudguardqs-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awsqs-checkpoint-cloudguardqs-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awsqs-ec2-linuxbastionqs-module.yml b/.github/workflows/release-awsqs-ec2-linuxbastionqs-module.yml index 31f5d08a7..0e95f617e 100644 --- a/.github/workflows/release-awsqs-ec2-linuxbastionqs-module.yml +++ b/.github/workflows/release-awsqs-ec2-linuxbastionqs-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awsqs-ec2-linuxbastionqs-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awsqs-eks-cluster.yml b/.github/workflows/release-awsqs-eks-cluster.yml index 17ca1ba0c..9726fe1fd 100644 --- a/.github/workflows/release-awsqs-eks-cluster.yml +++ b/.github/workflows/release-awsqs-eks-cluster.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awsqs-eks-cluster/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awsqs-iridium-cloudconnectqs-module.yml b/.github/workflows/release-awsqs-iridium-cloudconnectqs-module.yml index 407c8f9ad..1937b7fe8 100644 --- a/.github/workflows/release-awsqs-iridium-cloudconnectqs-module.yml +++ b/.github/workflows/release-awsqs-iridium-cloudconnectqs-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awsqs-iridium-cloudconnectqs-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awsqs-kubernetes-get.yml b/.github/workflows/release-awsqs-kubernetes-get.yml index b429bd0a0..7417bce33 100644 --- a/.github/workflows/release-awsqs-kubernetes-get.yml +++ b/.github/workflows/release-awsqs-kubernetes-get.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awsqs-kubernetes-get/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awsqs-kubernetes-helm.yml b/.github/workflows/release-awsqs-kubernetes-helm.yml index 91524d1d9..08e701aa5 100644 --- a/.github/workflows/release-awsqs-kubernetes-helm.yml +++ b/.github/workflows/release-awsqs-kubernetes-helm.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awsqs-kubernetes-helm/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awsqs-kubernetes-resource.yml b/.github/workflows/release-awsqs-kubernetes-resource.yml index 3000d66b1..e8b51cafb 100644 --- a/.github/workflows/release-awsqs-kubernetes-resource.yml +++ b/.github/workflows/release-awsqs-kubernetes-resource.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awsqs-kubernetes-resource/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-awsqs-vpc-vpcqs-module.yml b/.github/workflows/release-awsqs-vpc-vpcqs-module.yml index 3c87a334d..df0240c7e 100644 --- a/.github/workflows/release-awsqs-vpc-vpcqs-module.yml +++ b/.github/workflows/release-awsqs-vpc-vpcqs-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/awsqs-vpc-vpcqs-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-bigid-datasource-dynamodb.yml b/.github/workflows/release-bigid-datasource-dynamodb.yml index cd3a66f6e..2fdef1691 100644 --- a/.github/workflows/release-bigid-datasource-dynamodb.yml +++ b/.github/workflows/release-bigid-datasource-dynamodb.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/bigid-datasource-dynamodb/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-bigid-datasource-s3.yml b/.github/workflows/release-bigid-datasource-s3.yml index 2f7d8b209..eb92e01d4 100644 --- a/.github/workflows/release-bigid-datasource-s3.yml +++ b/.github/workflows/release-bigid-datasource-s3.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/bigid-datasource-s3/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-cadiaz-bucket-uno-module.yml b/.github/workflows/release-cadiaz-bucket-uno-module.yml index 5ee9dad9b..307b8fd89 100644 --- a/.github/workflows/release-cadiaz-bucket-uno-module.yml +++ b/.github/workflows/release-cadiaz-bucket-uno-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/cadiaz-bucket-uno-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-cloudflare-dns-record.yml b/.github/workflows/release-cloudflare-dns-record.yml index 854c63175..478c985c2 100644 --- a/.github/workflows/release-cloudflare-dns-record.yml +++ b/.github/workflows/release-cloudflare-dns-record.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/cloudflare-dns-record/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-cloudflare-loadbalancer-loadbalancer.yml b/.github/workflows/release-cloudflare-loadbalancer-loadbalancer.yml index 85a5509af..21601fd3f 100644 --- a/.github/workflows/release-cloudflare-loadbalancer-loadbalancer.yml +++ b/.github/workflows/release-cloudflare-loadbalancer-loadbalancer.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/cloudflare-loadbalancer-loadbalancer/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-cloudflare-loadbalancer-monitor.yml b/.github/workflows/release-cloudflare-loadbalancer-monitor.yml index 52a84d779..d55670568 100644 --- a/.github/workflows/release-cloudflare-loadbalancer-monitor.yml +++ b/.github/workflows/release-cloudflare-loadbalancer-monitor.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/cloudflare-loadbalancer-monitor/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-cloudflare-loadbalancer-pool.yml b/.github/workflows/release-cloudflare-loadbalancer-pool.yml index ac2eb4b57..5098844ca 100644 --- a/.github/workflows/release-cloudflare-loadbalancer-pool.yml +++ b/.github/workflows/release-cloudflare-loadbalancer-pool.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/cloudflare-loadbalancer-pool/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-confluentcloud-iam-serviceaccount.yml b/.github/workflows/release-confluentcloud-iam-serviceaccount.yml index bb31c6360..e0c76fccb 100644 --- a/.github/workflows/release-confluentcloud-iam-serviceaccount.yml +++ b/.github/workflows/release-confluentcloud-iam-serviceaccount.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/confluentcloud-iam-serviceaccount/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-cyral-sidecar-deployment-module.yml b/.github/workflows/release-cyral-sidecar-deployment-module.yml index 586d31d06..6e267544d 100644 --- a/.github/workflows/release-cyral-sidecar-deployment-module.yml +++ b/.github/workflows/release-cyral-sidecar-deployment-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/cyral-sidecar-deployment-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-databricks-clusters-cluster.yml b/.github/workflows/release-databricks-clusters-cluster.yml index 822baf4a7..2813cd31f 100644 --- a/.github/workflows/release-databricks-clusters-cluster.yml +++ b/.github/workflows/release-databricks-clusters-cluster.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/databricks-clusters-cluster/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-databricks-clusters-job.yml b/.github/workflows/release-databricks-clusters-job.yml index 619dbf9e2..959d752d5 100644 --- a/.github/workflows/release-databricks-clusters-job.yml +++ b/.github/workflows/release-databricks-clusters-job.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/databricks-clusters-job/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-datadog-dashboards-dashboard.yml b/.github/workflows/release-datadog-dashboards-dashboard.yml index 536dc114c..a1d060876 100644 --- a/.github/workflows/release-datadog-dashboards-dashboard.yml +++ b/.github/workflows/release-datadog-dashboards-dashboard.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/datadog-dashboards-dashboard/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-datadog-integrations-aws.yml b/.github/workflows/release-datadog-integrations-aws.yml index 3764df317..3f3e23c9e 100644 --- a/.github/workflows/release-datadog-integrations-aws.yml +++ b/.github/workflows/release-datadog-integrations-aws.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/datadog-integrations-aws/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-datadog-monitors-downtime.yml b/.github/workflows/release-datadog-monitors-downtime.yml index c93b8f0dd..000190953 100644 --- a/.github/workflows/release-datadog-monitors-downtime.yml +++ b/.github/workflows/release-datadog-monitors-downtime.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/datadog-monitors-downtime/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-datadog-monitors-downtimeschedule.yml b/.github/workflows/release-datadog-monitors-downtimeschedule.yml index ca1b10149..2b38faa54 100644 --- a/.github/workflows/release-datadog-monitors-downtimeschedule.yml +++ b/.github/workflows/release-datadog-monitors-downtimeschedule.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/datadog-monitors-downtimeschedule/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-datadog-monitors-monitor.yml b/.github/workflows/release-datadog-monitors-monitor.yml index bdf7bcb6a..ff55732af 100644 --- a/.github/workflows/release-datadog-monitors-monitor.yml +++ b/.github/workflows/release-datadog-monitors-monitor.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/datadog-monitors-monitor/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-datadog-slos-slo.yml b/.github/workflows/release-datadog-slos-slo.yml index d0605639a..3f5b9a098 100644 --- a/.github/workflows/release-datadog-slos-slo.yml +++ b/.github/workflows/release-datadog-slos-slo.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/datadog-slos-slo/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-dynatrace-configuration-dashboard.yml b/.github/workflows/release-dynatrace-configuration-dashboard.yml index cbfd7096c..14741d8d6 100644 --- a/.github/workflows/release-dynatrace-configuration-dashboard.yml +++ b/.github/workflows/release-dynatrace-configuration-dashboard.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/dynatrace-configuration-dashboard/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-dynatrace-environment-metric.yml b/.github/workflows/release-dynatrace-environment-metric.yml index ca093a5e2..0e1537382 100644 --- a/.github/workflows/release-dynatrace-environment-metric.yml +++ b/.github/workflows/release-dynatrace-environment-metric.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/dynatrace-environment-metric/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-dynatrace-environment-servicelevelobjective.yml b/.github/workflows/release-dynatrace-environment-servicelevelobjective.yml index 8d1031d55..a07266244 100644 --- a/.github/workflows/release-dynatrace-environment-servicelevelobjective.yml +++ b/.github/workflows/release-dynatrace-environment-servicelevelobjective.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/dynatrace-environment-servicelevelobjective/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-dynatrace-environment-syntheticlocation.yml b/.github/workflows/release-dynatrace-environment-syntheticlocation.yml index 1c77e96ed..1ac408350 100644 --- a/.github/workflows/release-dynatrace-environment-syntheticlocation.yml +++ b/.github/workflows/release-dynatrace-environment-syntheticlocation.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/dynatrace-environment-syntheticlocation/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-dynatrace-environment-syntheticmonitor.yml b/.github/workflows/release-dynatrace-environment-syntheticmonitor.yml index e717cd0b9..559f209c0 100644 --- a/.github/workflows/release-dynatrace-environment-syntheticmonitor.yml +++ b/.github/workflows/release-dynatrace-environment-syntheticmonitor.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/dynatrace-environment-syntheticmonitor/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-dictionary-dictionary.yml b/.github/workflows/release-fastly-dictionary-dictionary.yml index ee6c5e672..8f4219321 100644 --- a/.github/workflows/release-fastly-dictionary-dictionary.yml +++ b/.github/workflows/release-fastly-dictionary-dictionary.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-dictionary-dictionary/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-dictionary-dictionaryitem.yml b/.github/workflows/release-fastly-dictionary-dictionaryitem.yml index d26cad05a..c9c5ffde1 100644 --- a/.github/workflows/release-fastly-dictionary-dictionaryitem.yml +++ b/.github/workflows/release-fastly-dictionary-dictionaryitem.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-dictionary-dictionaryitem/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-logging-s3.yml b/.github/workflows/release-fastly-logging-s3.yml index 7b6c4fe28..ae974f9b7 100644 --- a/.github/workflows/release-fastly-logging-s3.yml +++ b/.github/workflows/release-fastly-logging-s3.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-logging-s3/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-logging-splunk.yml b/.github/workflows/release-fastly-logging-splunk.yml index ab4999983..e3b527d62 100644 --- a/.github/workflows/release-fastly-logging-splunk.yml +++ b/.github/workflows/release-fastly-logging-splunk.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-logging-splunk/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-services-activeversion.yml b/.github/workflows/release-fastly-services-activeversion.yml index c8b197901..bb78ac976 100644 --- a/.github/workflows/release-fastly-services-activeversion.yml +++ b/.github/workflows/release-fastly-services-activeversion.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-services-activeversion/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-services-backend.yml b/.github/workflows/release-fastly-services-backend.yml index b46030409..649eb83eb 100644 --- a/.github/workflows/release-fastly-services-backend.yml +++ b/.github/workflows/release-fastly-services-backend.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-services-backend/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-services-domain.yml b/.github/workflows/release-fastly-services-domain.yml index b7c440732..d1703a7db 100644 --- a/.github/workflows/release-fastly-services-domain.yml +++ b/.github/workflows/release-fastly-services-domain.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-services-domain/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-services-healthcheck.yml b/.github/workflows/release-fastly-services-healthcheck.yml index 21c6f8867..76d002a5f 100644 --- a/.github/workflows/release-fastly-services-healthcheck.yml +++ b/.github/workflows/release-fastly-services-healthcheck.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-services-healthcheck/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-services-service.yml b/.github/workflows/release-fastly-services-service.yml index 3ddd85647..51cb8a196 100644 --- a/.github/workflows/release-fastly-services-service.yml +++ b/.github/workflows/release-fastly-services-service.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-services-service/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-services-version.yml b/.github/workflows/release-fastly-services-version.yml index 0940e8a05..6eed8513b 100644 --- a/.github/workflows/release-fastly-services-version.yml +++ b/.github/workflows/release-fastly-services-version.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-services-version/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-tls-certificate.yml b/.github/workflows/release-fastly-tls-certificate.yml index fea48d2fb..f48e4d5dc 100644 --- a/.github/workflows/release-fastly-tls-certificate.yml +++ b/.github/workflows/release-fastly-tls-certificate.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-tls-certificate/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-tls-domain.yml b/.github/workflows/release-fastly-tls-domain.yml index 77f828c27..5bb2c745d 100644 --- a/.github/workflows/release-fastly-tls-domain.yml +++ b/.github/workflows/release-fastly-tls-domain.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-tls-domain/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fastly-tls-privatekeys.yml b/.github/workflows/release-fastly-tls-privatekeys.yml index 5e289b496..2ee4b1015 100644 --- a/.github/workflows/release-fastly-tls-privatekeys.yml +++ b/.github/workflows/release-fastly-tls-privatekeys.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fastly-tls-privatekeys/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-fireeye-cloudintegrations-cloudwatch.yml b/.github/workflows/release-fireeye-cloudintegrations-cloudwatch.yml index 4525a8d76..2cf09f657 100644 --- a/.github/workflows/release-fireeye-cloudintegrations-cloudwatch.yml +++ b/.github/workflows/release-fireeye-cloudintegrations-cloudwatch.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/fireeye-cloudintegrations-cloudwatch/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-freyraim-impactapi-apigateway-module.yml b/.github/workflows/release-freyraim-impactapi-apigateway-module.yml index 8cc0c3c8d..7ec5c0f0a 100644 --- a/.github/workflows/release-freyraim-impactapi-apigateway-module.yml +++ b/.github/workflows/release-freyraim-impactapi-apigateway-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/freyraim-impactapi-apigateway-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-freyraim-impactapi-apihandle-module.yml b/.github/workflows/release-freyraim-impactapi-apihandle-module.yml index 9ae2dcdd8..cf10ab6d4 100644 --- a/.github/workflows/release-freyraim-impactapi-apihandle-module.yml +++ b/.github/workflows/release-freyraim-impactapi-apihandle-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/freyraim-impactapi-apihandle-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-freyraim-impactapi-ec2instance-module.yml b/.github/workflows/release-freyraim-impactapi-ec2instance-module.yml index cb3c0291b..ffd15e6bf 100644 --- a/.github/workflows/release-freyraim-impactapi-ec2instance-module.yml +++ b/.github/workflows/release-freyraim-impactapi-ec2instance-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/freyraim-impactapi-ec2instance-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-freyraim-impactapi-lambdafunction-module.yml b/.github/workflows/release-freyraim-impactapi-lambdafunction-module.yml index 950d1dd63..a653c91b9 100644 --- a/.github/workflows/release-freyraim-impactapi-lambdafunction-module.yml +++ b/.github/workflows/release-freyraim-impactapi-lambdafunction-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/freyraim-impactapi-lambdafunction-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-freyraim-impactapi-loadbalancer-module.yml b/.github/workflows/release-freyraim-impactapi-loadbalancer-module.yml index 8244cf4e6..85a9e7f3c 100644 --- a/.github/workflows/release-freyraim-impactapi-loadbalancer-module.yml +++ b/.github/workflows/release-freyraim-impactapi-loadbalancer-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/freyraim-impactapi-loadbalancer-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-freyraim-spider-cloudfront-module.yml b/.github/workflows/release-freyraim-spider-cloudfront-module.yml index b06962836..0ca05998b 100644 --- a/.github/workflows/release-freyraim-spider-cloudfront-module.yml +++ b/.github/workflows/release-freyraim-spider-cloudfront-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/freyraim-spider-cloudfront-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-freyraim-spider-ec2instance-module.yml b/.github/workflows/release-freyraim-spider-ec2instance-module.yml index ec9460f4f..754899031 100644 --- a/.github/workflows/release-freyraim-spider-ec2instance-module.yml +++ b/.github/workflows/release-freyraim-spider-ec2instance-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/freyraim-spider-ec2instance-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-freyraim-spider-ecs-module.yml b/.github/workflows/release-freyraim-spider-ecs-module.yml index 0c81f7c27..2ab507e96 100644 --- a/.github/workflows/release-freyraim-spider-ecs-module.yml +++ b/.github/workflows/release-freyraim-spider-ecs-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/freyraim-spider-ecs-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-freyraim-spider-loadbalancer-module.yml b/.github/workflows/release-freyraim-spider-loadbalancer-module.yml index a1e164e4b..8404b63f9 100644 --- a/.github/workflows/release-freyraim-spider-loadbalancer-module.yml +++ b/.github/workflows/release-freyraim-spider-loadbalancer-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/freyraim-spider-loadbalancer-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-freyraim-spider-postgresql-module.yml b/.github/workflows/release-freyraim-spider-postgresql-module.yml index bb861b1b2..debd1b02f 100644 --- a/.github/workflows/release-freyraim-spider-postgresql-module.yml +++ b/.github/workflows/release-freyraim-spider-postgresql-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/freyraim-spider-postgresql-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-freyraim-spider-s3bucket-module.yml b/.github/workflows/release-freyraim-spider-s3bucket-module.yml index 53dc8dff5..6d7bf0fe9 100644 --- a/.github/workflows/release-freyraim-spider-s3bucket-module.yml +++ b/.github/workflows/release-freyraim-spider-s3bucket-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/freyraim-spider-s3bucket-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-generic-database-schema.yml b/.github/workflows/release-generic-database-schema.yml index 3413f84ec..6cca21aaf 100644 --- a/.github/workflows/release-generic-database-schema.yml +++ b/.github/workflows/release-generic-database-schema.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/generic-database-schema/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-generic-transcribe-vocabulary.yml b/.github/workflows/release-generic-transcribe-vocabulary.yml index d65277250..c19785b06 100644 --- a/.github/workflows/release-generic-transcribe-vocabulary.yml +++ b/.github/workflows/release-generic-transcribe-vocabulary.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/generic-transcribe-vocabulary/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-github-git-tag.yml b/.github/workflows/release-github-git-tag.yml index 98c3b3bc0..84cf64340 100644 --- a/.github/workflows/release-github-git-tag.yml +++ b/.github/workflows/release-github-git-tag.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/github-git-tag/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-github-organizations-membership.yml b/.github/workflows/release-github-organizations-membership.yml index fd985764d..71c005ff1 100644 --- a/.github/workflows/release-github-organizations-membership.yml +++ b/.github/workflows/release-github-organizations-membership.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/github-organizations-membership/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-github-organizations-secret.yml b/.github/workflows/release-github-organizations-secret.yml index 7f961137e..f2980128f 100644 --- a/.github/workflows/release-github-organizations-secret.yml +++ b/.github/workflows/release-github-organizations-secret.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/github-organizations-secret/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-github-repositories-collaborator.yml b/.github/workflows/release-github-repositories-collaborator.yml index e86e65abf..e43e2acc1 100644 --- a/.github/workflows/release-github-repositories-collaborator.yml +++ b/.github/workflows/release-github-repositories-collaborator.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/github-repositories-collaborator/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-github-repositories-repository.yml b/.github/workflows/release-github-repositories-repository.yml index b2b9ea3bb..e42d02714 100644 --- a/.github/workflows/release-github-repositories-repository.yml +++ b/.github/workflows/release-github-repositories-repository.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/github-repositories-repository/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-github-repositories-secret.yml b/.github/workflows/release-github-repositories-secret.yml index 414f3e8db..614632651 100644 --- a/.github/workflows/release-github-repositories-secret.yml +++ b/.github/workflows/release-github-repositories-secret.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/github-repositories-secret/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-github-repositories-webhook.yml b/.github/workflows/release-github-repositories-webhook.yml index c88d14707..9bde8caf2 100644 --- a/.github/workflows/release-github-repositories-webhook.yml +++ b/.github/workflows/release-github-repositories-webhook.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/github-repositories-webhook/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-github-teams-membership.yml b/.github/workflows/release-github-teams-membership.yml index 44cd820b1..7932bd495 100644 --- a/.github/workflows/release-github-teams-membership.yml +++ b/.github/workflows/release-github-teams-membership.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/github-teams-membership/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-github-teams-repositoryaccess.yml b/.github/workflows/release-github-teams-repositoryaccess.yml index 780b02a8f..fdffe873c 100644 --- a/.github/workflows/release-github-teams-repositoryaccess.yml +++ b/.github/workflows/release-github-teams-repositoryaccess.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/github-teams-repositoryaccess/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-github-teams-team.yml b/.github/workflows/release-github-teams-team.yml index 3ecac48bb..1f2581a99 100644 --- a/.github/workflows/release-github-teams-team.yml +++ b/.github/workflows/release-github-teams-team.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/github-teams-team/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-gitlab-code-tag.yml b/.github/workflows/release-gitlab-code-tag.yml index 5e0b9de22..99883d3a4 100644 --- a/.github/workflows/release-gitlab-code-tag.yml +++ b/.github/workflows/release-gitlab-code-tag.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/gitlab-code-tag/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-gitlab-groups-group.yml b/.github/workflows/release-gitlab-groups-group.yml index c6716f967..3b8a4fa02 100644 --- a/.github/workflows/release-gitlab-groups-group.yml +++ b/.github/workflows/release-gitlab-groups-group.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/gitlab-groups-group/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-gitlab-groups-groupaccesstogroup.yml b/.github/workflows/release-gitlab-groups-groupaccesstogroup.yml index eb6acd206..c77c64f51 100644 --- a/.github/workflows/release-gitlab-groups-groupaccesstogroup.yml +++ b/.github/workflows/release-gitlab-groups-groupaccesstogroup.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/gitlab-groups-groupaccesstogroup/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-gitlab-groups-usermemberofgroup.yml b/.github/workflows/release-gitlab-groups-usermemberofgroup.yml index 35e2b79e5..fe039883a 100644 --- a/.github/workflows/release-gitlab-groups-usermemberofgroup.yml +++ b/.github/workflows/release-gitlab-groups-usermemberofgroup.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/gitlab-groups-usermemberofgroup/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-gitlab-projects-accesstoken.yml b/.github/workflows/release-gitlab-projects-accesstoken.yml index e44a9a61e..46dc12da8 100644 --- a/.github/workflows/release-gitlab-projects-accesstoken.yml +++ b/.github/workflows/release-gitlab-projects-accesstoken.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/gitlab-projects-accesstoken/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-gitlab-projects-groupaccesstoproject.yml b/.github/workflows/release-gitlab-projects-groupaccesstoproject.yml index 56c66bdb1..35431c856 100644 --- a/.github/workflows/release-gitlab-projects-groupaccesstoproject.yml +++ b/.github/workflows/release-gitlab-projects-groupaccesstoproject.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/gitlab-projects-groupaccesstoproject/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-gitlab-projects-project.yml b/.github/workflows/release-gitlab-projects-project.yml index b3102fe70..5b9184c74 100644 --- a/.github/workflows/release-gitlab-projects-project.yml +++ b/.github/workflows/release-gitlab-projects-project.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/gitlab-projects-project/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-gitlab-projects-usermemberofproject.yml b/.github/workflows/release-gitlab-projects-usermemberofproject.yml index 3e2301b34..0562fa445 100644 --- a/.github/workflows/release-gitlab-projects-usermemberofproject.yml +++ b/.github/workflows/release-gitlab-projects-usermemberofproject.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/gitlab-projects-usermemberofproject/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-gremlin-agent-helm.yml b/.github/workflows/release-gremlin-agent-helm.yml index ebd61a99d..55f065a07 100644 --- a/.github/workflows/release-gremlin-agent-helm.yml +++ b/.github/workflows/release-gremlin-agent-helm.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/gremlin-agent-helm/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-jfrog-artifactory-core-module.yml b/.github/workflows/release-jfrog-artifactory-core-module.yml index dfc9dab88..eb85667c8 100644 --- a/.github/workflows/release-jfrog-artifactory-core-module.yml +++ b/.github/workflows/release-jfrog-artifactory-core-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/jfrog-artifactory-core-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-jfrog-artifactory-ec2instance-module.yml b/.github/workflows/release-jfrog-artifactory-ec2instance-module.yml index 92d0c4ae3..a8ae82d6e 100644 --- a/.github/workflows/release-jfrog-artifactory-ec2instance-module.yml +++ b/.github/workflows/release-jfrog-artifactory-ec2instance-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/jfrog-artifactory-ec2instance-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-jfrog-artifactory-existingvpc-module.yml b/.github/workflows/release-jfrog-artifactory-existingvpc-module.yml index 275e6b445..799579d81 100644 --- a/.github/workflows/release-jfrog-artifactory-existingvpc-module.yml +++ b/.github/workflows/release-jfrog-artifactory-existingvpc-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/jfrog-artifactory-existingvpc-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-jfrog-artifactory-newvpc-module.yml b/.github/workflows/release-jfrog-artifactory-newvpc-module.yml index 122069426..259059c56 100644 --- a/.github/workflows/release-jfrog-artifactory-newvpc-module.yml +++ b/.github/workflows/release-jfrog-artifactory-newvpc-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/jfrog-artifactory-newvpc-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-jfrog-linux-bastion-module.yml b/.github/workflows/release-jfrog-linux-bastion-module.yml index a0dea8ca6..25bc1fa65 100644 --- a/.github/workflows/release-jfrog-linux-bastion-module.yml +++ b/.github/workflows/release-jfrog-linux-bastion-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/jfrog-linux-bastion-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-jfrog-vpc-multiaz-module.yml b/.github/workflows/release-jfrog-vpc-multiaz-module.yml index 19df354b0..eb6d3a8e2 100644 --- a/.github/workflows/release-jfrog-vpc-multiaz-module.yml +++ b/.github/workflows/release-jfrog-vpc-multiaz-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/jfrog-vpc-multiaz-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-jfrog-xray-ec2instance-module.yml b/.github/workflows/release-jfrog-xray-ec2instance-module.yml index d01ef6297..3a049e7a0 100644 --- a/.github/workflows/release-jfrog-xray-ec2instance-module.yml +++ b/.github/workflows/release-jfrog-xray-ec2instance-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/jfrog-xray-ec2instance-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-karte-eventbridge-documentdb-module.yml b/.github/workflows/release-karte-eventbridge-documentdb-module.yml index a87bc2d82..e3bb52b70 100644 --- a/.github/workflows/release-karte-eventbridge-documentdb-module.yml +++ b/.github/workflows/release-karte-eventbridge-documentdb-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/karte-eventbridge-documentdb-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-logzio-autodeploymentlogzio-cloudwatch-module.yml b/.github/workflows/release-logzio-autodeploymentlogzio-cloudwatch-module.yml index 8da30847e..2a14e4368 100644 --- a/.github/workflows/release-logzio-autodeploymentlogzio-cloudwatch-module.yml +++ b/.github/workflows/release-logzio-autodeploymentlogzio-cloudwatch-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/logzio-autodeploymentlogzio-cloudwatch-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-logzio-awscostandusage-cur-module.yml b/.github/workflows/release-logzio-awscostandusage-cur-module.yml index 1e465767e..f221edb97 100644 --- a/.github/workflows/release-logzio-awscostandusage-cur-module.yml +++ b/.github/workflows/release-logzio-awscostandusage-cur-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/logzio-awscostandusage-cur-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-logzio-awssecurityhub-collector-module.yml b/.github/workflows/release-logzio-awssecurityhub-collector-module.yml index 6fe639519..1f45f395d 100644 --- a/.github/workflows/release-logzio-awssecurityhub-collector-module.yml +++ b/.github/workflows/release-logzio-awssecurityhub-collector-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/logzio-awssecurityhub-collector-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-logzio-kinesisshipper-kinesisshipper-module.yml b/.github/workflows/release-logzio-kinesisshipper-kinesisshipper-module.yml index 218f928a0..9ce74f089 100644 --- a/.github/workflows/release-logzio-kinesisshipper-kinesisshipper-module.yml +++ b/.github/workflows/release-logzio-kinesisshipper-kinesisshipper-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/logzio-kinesisshipper-kinesisshipper-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-logzio-myservice-myname-module.yml b/.github/workflows/release-logzio-myservice-myname-module.yml index d74db2a7e..fbd0efafc 100644 --- a/.github/workflows/release-logzio-myservice-myname-module.yml +++ b/.github/workflows/release-logzio-myservice-myname-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/logzio-myservice-myname-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-mavi-pipeline-default-module.yml b/.github/workflows/release-mavi-pipeline-default-module.yml index b33d22f22..2bf2bd8ec 100644 --- a/.github/workflows/release-mavi-pipeline-default-module.yml +++ b/.github/workflows/release-mavi-pipeline-default-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/mavi-pipeline-default-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-mongodb-atlas-cluster.yml b/.github/workflows/release-mongodb-atlas-cluster.yml index 13d1d32d1..85beef9b4 100644 --- a/.github/workflows/release-mongodb-atlas-cluster.yml +++ b/.github/workflows/release-mongodb-atlas-cluster.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/mongodb-atlas-cluster/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-mongodb-atlas-databaseuser.yml b/.github/workflows/release-mongodb-atlas-databaseuser.yml index 0ab73b49a..b8eeadadf 100644 --- a/.github/workflows/release-mongodb-atlas-databaseuser.yml +++ b/.github/workflows/release-mongodb-atlas-databaseuser.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/mongodb-atlas-databaseuser/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-mongodb-atlas-networkpeering.yml b/.github/workflows/release-mongodb-atlas-networkpeering.yml index 1f55b8faf..eb1062258 100644 --- a/.github/workflows/release-mongodb-atlas-networkpeering.yml +++ b/.github/workflows/release-mongodb-atlas-networkpeering.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/mongodb-atlas-networkpeering/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-mongodb-atlas-project.yml b/.github/workflows/release-mongodb-atlas-project.yml index d81ac19c8..d73d714dd 100644 --- a/.github/workflows/release-mongodb-atlas-project.yml +++ b/.github/workflows/release-mongodb-atlas-project.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/mongodb-atlas-project/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-mongodb-atlas-projectipaccesslist.yml b/.github/workflows/release-mongodb-atlas-projectipaccesslist.yml index c230c5944..3b7d70e44 100644 --- a/.github/workflows/release-mongodb-atlas-projectipaccesslist.yml +++ b/.github/workflows/release-mongodb-atlas-projectipaccesslist.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/mongodb-atlas-projectipaccesslist/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-agent-configuration.yml b/.github/workflows/release-newrelic-agent-configuration.yml index d95100f88..4f880b386 100644 --- a/.github/workflows/release-newrelic-agent-configuration.yml +++ b/.github/workflows/release-newrelic-agent-configuration.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-agent-configuration/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-alert-alertspolicy.yml b/.github/workflows/release-newrelic-alert-alertspolicy.yml index 58c028690..80cc987e6 100644 --- a/.github/workflows/release-newrelic-alert-alertspolicy.yml +++ b/.github/workflows/release-newrelic-alert-alertspolicy.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-alert-alertspolicy/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-alert-nrqlconditionstatic.yml b/.github/workflows/release-newrelic-alert-nrqlconditionstatic.yml index f191df8a0..c85630217 100644 --- a/.github/workflows/release-newrelic-alert-nrqlconditionstatic.yml +++ b/.github/workflows/release-newrelic-alert-nrqlconditionstatic.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-alert-nrqlconditionstatic/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-cloudformation-dashboards.yml b/.github/workflows/release-newrelic-cloudformation-dashboards.yml index 1ef7a8fd9..e18fb295d 100644 --- a/.github/workflows/release-newrelic-cloudformation-dashboards.yml +++ b/.github/workflows/release-newrelic-cloudformation-dashboards.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-cloudformation-dashboards/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-cloudformation-tagging.yml b/.github/workflows/release-newrelic-cloudformation-tagging.yml index fe37efda9..5bb314504 100644 --- a/.github/workflows/release-newrelic-cloudformation-tagging.yml +++ b/.github/workflows/release-newrelic-cloudformation-tagging.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-cloudformation-tagging/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-cloudformation-workloads.yml b/.github/workflows/release-newrelic-cloudformation-workloads.yml index 415056805..02e04b1db 100644 --- a/.github/workflows/release-newrelic-cloudformation-workloads.yml +++ b/.github/workflows/release-newrelic-cloudformation-workloads.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-cloudformation-workloads/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-observability-ainotificationschannel.yml b/.github/workflows/release-newrelic-observability-ainotificationschannel.yml index 8d28c6979..8476af103 100644 --- a/.github/workflows/release-newrelic-observability-ainotificationschannel.yml +++ b/.github/workflows/release-newrelic-observability-ainotificationschannel.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-observability-ainotificationschannel/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-observability-ainotificationsdestination.yml b/.github/workflows/release-newrelic-observability-ainotificationsdestination.yml index 7b632be6c..ccc4f14df 100644 --- a/.github/workflows/release-newrelic-observability-ainotificationsdestination.yml +++ b/.github/workflows/release-newrelic-observability-ainotificationsdestination.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-observability-ainotificationsdestination/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-observability-aiworkflows.yml b/.github/workflows/release-newrelic-observability-aiworkflows.yml index 19ad3f21b..5565632da 100644 --- a/.github/workflows/release-newrelic-observability-aiworkflows.yml +++ b/.github/workflows/release-newrelic-observability-aiworkflows.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-observability-aiworkflows/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-observability-alertsmutingrule.yml b/.github/workflows/release-newrelic-observability-alertsmutingrule.yml index 16179b682..373198462 100644 --- a/.github/workflows/release-newrelic-observability-alertsmutingrule.yml +++ b/.github/workflows/release-newrelic-observability-alertsmutingrule.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-observability-alertsmutingrule/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-observability-alertsnrqlcondition.yml b/.github/workflows/release-newrelic-observability-alertsnrqlcondition.yml index 7868db72b..8220fbde4 100644 --- a/.github/workflows/release-newrelic-observability-alertsnrqlcondition.yml +++ b/.github/workflows/release-newrelic-observability-alertsnrqlcondition.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-observability-alertsnrqlcondition/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-observability-alertspolicy.yml b/.github/workflows/release-newrelic-observability-alertspolicy.yml index ebd75b19c..1aa1bb378 100644 --- a/.github/workflows/release-newrelic-observability-alertspolicy.yml +++ b/.github/workflows/release-newrelic-observability-alertspolicy.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-observability-alertspolicy/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-observability-dashboards.yml b/.github/workflows/release-newrelic-observability-dashboards.yml index b2ad4e8ab..dd0cd3c9e 100644 --- a/.github/workflows/release-newrelic-observability-dashboards.yml +++ b/.github/workflows/release-newrelic-observability-dashboards.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-observability-dashboards/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-newrelic-observability-workloads.yml b/.github/workflows/release-newrelic-observability-workloads.yml index be9a1b136..6d16b2db6 100644 --- a/.github/workflows/release-newrelic-observability-workloads.yml +++ b/.github/workflows/release-newrelic-observability-workloads.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/newrelic-observability-workloads/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-okta-application-application.yml b/.github/workflows/release-okta-application-application.yml index 45b806b2d..17a504e62 100644 --- a/.github/workflows/release-okta-application-application.yml +++ b/.github/workflows/release-okta-application-application.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/okta-application-application/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-okta-group-group.yml b/.github/workflows/release-okta-group-group.yml index a570c7b8e..baff111d3 100644 --- a/.github/workflows/release-okta-group-group.yml +++ b/.github/workflows/release-okta-group-group.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/okta-group-group/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-okta-group-groupapplicationassociation.yml b/.github/workflows/release-okta-group-groupapplicationassociation.yml index 3a88db31c..337048938 100644 --- a/.github/workflows/release-okta-group-groupapplicationassociation.yml +++ b/.github/workflows/release-okta-group-groupapplicationassociation.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/okta-group-groupapplicationassociation/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-okta-group-membership.yml b/.github/workflows/release-okta-group-membership.yml index 8540660ad..503a8e7d0 100644 --- a/.github/workflows/release-okta-group-membership.yml +++ b/.github/workflows/release-okta-group-membership.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/okta-group-membership/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-okta-policy-policy.yml b/.github/workflows/release-okta-policy-policy.yml index 7623f3022..c1a32782d 100644 --- a/.github/workflows/release-okta-policy-policy.yml +++ b/.github/workflows/release-okta-policy-policy.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/okta-policy-policy/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-org-test-sample-module.yml b/.github/workflows/release-org-test-sample-module.yml index f440ca91d..e4097f316 100644 --- a/.github/workflows/release-org-test-sample-module.yml +++ b/.github/workflows/release-org-test-sample-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/org-test-sample-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-pagerduty-escalationpolicies-escalationpolicy.yml b/.github/workflows/release-pagerduty-escalationpolicies-escalationpolicy.yml index 677482603..0ff04d4d3 100644 --- a/.github/workflows/release-pagerduty-escalationpolicies-escalationpolicy.yml +++ b/.github/workflows/release-pagerduty-escalationpolicies-escalationpolicy.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/pagerduty-escalationpolicies-escalationpolicy/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-pagerduty-responseplays-responseplay.yml b/.github/workflows/release-pagerduty-responseplays-responseplay.yml index cca4f733a..8519f2607 100644 --- a/.github/workflows/release-pagerduty-responseplays-responseplay.yml +++ b/.github/workflows/release-pagerduty-responseplays-responseplay.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/pagerduty-responseplays-responseplay/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-pagerduty-schedules-schedule.yml b/.github/workflows/release-pagerduty-schedules-schedule.yml index e4db342d0..93c08d69a 100644 --- a/.github/workflows/release-pagerduty-schedules-schedule.yml +++ b/.github/workflows/release-pagerduty-schedules-schedule.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/pagerduty-schedules-schedule/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-pagerduty-services-integration.yml b/.github/workflows/release-pagerduty-services-integration.yml index fdca6341e..7d3f22931 100644 --- a/.github/workflows/release-pagerduty-services-integration.yml +++ b/.github/workflows/release-pagerduty-services-integration.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/pagerduty-services-integration/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-pagerduty-services-service.yml b/.github/workflows/release-pagerduty-services-service.yml index bc5c1ccd1..39d105868 100644 --- a/.github/workflows/release-pagerduty-services-service.yml +++ b/.github/workflows/release-pagerduty-services-service.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/pagerduty-services-service/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-pagerduty-teams-membership.yml b/.github/workflows/release-pagerduty-teams-membership.yml index 2c152d183..8574a39f8 100644 --- a/.github/workflows/release-pagerduty-teams-membership.yml +++ b/.github/workflows/release-pagerduty-teams-membership.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/pagerduty-teams-membership/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-pagerduty-teams-team.yml b/.github/workflows/release-pagerduty-teams-team.yml index 82f426313..2e0d108f7 100644 --- a/.github/workflows/release-pagerduty-teams-team.yml +++ b/.github/workflows/release-pagerduty-teams-team.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/pagerduty-teams-team/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-pagerduty-users-user.yml b/.github/workflows/release-pagerduty-users-user.yml index 2a9176bc3..803b696db 100644 --- a/.github/workflows/release-pagerduty-users-user.yml +++ b/.github/workflows/release-pagerduty-users-user.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/pagerduty-users-user/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-paloaltonetworks-cloudngfw-ngfw.yml b/.github/workflows/release-paloaltonetworks-cloudngfw-ngfw.yml index 6f7a400ed..0d6023f7f 100644 --- a/.github/workflows/release-paloaltonetworks-cloudngfw-ngfw.yml +++ b/.github/workflows/release-paloaltonetworks-cloudngfw-ngfw.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/paloaltonetworks-cloudngfw-ngfw/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-paloaltonetworks-cloudngfw-rulestack.yml b/.github/workflows/release-paloaltonetworks-cloudngfw-rulestack.yml index d2b00e5c5..0913c47fd 100644 --- a/.github/workflows/release-paloaltonetworks-cloudngfw-rulestack.yml +++ b/.github/workflows/release-paloaltonetworks-cloudngfw-rulestack.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/paloaltonetworks-cloudngfw-rulestack/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-poc-azure-blobstorage.yml b/.github/workflows/release-poc-azure-blobstorage.yml index f621842ac..c22881463 100644 --- a/.github/workflows/release-poc-azure-blobstorage.yml +++ b/.github/workflows/release-poc-azure-blobstorage.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/poc-azure-blobstorage/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-registry-test-resource1-module.yml b/.github/workflows/release-registry-test-resource1-module.yml index c33b462f9..e0045200b 100644 --- a/.github/workflows/release-registry-test-resource1-module.yml +++ b/.github/workflows/release-registry-test-resource1-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/registry-test-resource1-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-rollbar-notifications-rule.yml b/.github/workflows/release-rollbar-notifications-rule.yml index 2b1101bcd..d66cd5061 100644 --- a/.github/workflows/release-rollbar-notifications-rule.yml +++ b/.github/workflows/release-rollbar-notifications-rule.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/rollbar-notifications-rule/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-rollbar-projects-accesstoken.yml b/.github/workflows/release-rollbar-projects-accesstoken.yml index 503a80bae..9c3ad3063 100644 --- a/.github/workflows/release-rollbar-projects-accesstoken.yml +++ b/.github/workflows/release-rollbar-projects-accesstoken.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/rollbar-projects-accesstoken/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-rollbar-projects-project.yml b/.github/workflows/release-rollbar-projects-project.yml index 7ee9da876..d2895a64c 100644 --- a/.github/workflows/release-rollbar-projects-project.yml +++ b/.github/workflows/release-rollbar-projects-project.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/rollbar-projects-project/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-rollbar-teams-membership.yml b/.github/workflows/release-rollbar-teams-membership.yml index 6789f0e78..03b593361 100644 --- a/.github/workflows/release-rollbar-teams-membership.yml +++ b/.github/workflows/release-rollbar-teams-membership.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/rollbar-teams-membership/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-rollbar-teams-team.yml b/.github/workflows/release-rollbar-teams-team.yml index fe0e1e84b..f78ffec01 100644 --- a/.github/workflows/release-rollbar-teams-team.yml +++ b/.github/workflows/release-rollbar-teams-team.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/rollbar-teams-team/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-snowflake-database-database.yml b/.github/workflows/release-snowflake-database-database.yml index 53bd5a16d..dd7bf03d8 100644 --- a/.github/workflows/release-snowflake-database-database.yml +++ b/.github/workflows/release-snowflake-database-database.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/snowflake-database-database/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-snowflake-database-grant.yml b/.github/workflows/release-snowflake-database-grant.yml index 7eacc158a..9e13496ca 100644 --- a/.github/workflows/release-snowflake-database-grant.yml +++ b/.github/workflows/release-snowflake-database-grant.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/snowflake-database-grant/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-snowflake-role-grant.yml b/.github/workflows/release-snowflake-role-grant.yml index 852f0d0a9..c277c71db 100644 --- a/.github/workflows/release-snowflake-role-grant.yml +++ b/.github/workflows/release-snowflake-role-grant.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/snowflake-role-grant/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-snowflake-role-role.yml b/.github/workflows/release-snowflake-role-role.yml index 7bd0caa5d..e389a494b 100644 --- a/.github/workflows/release-snowflake-role-role.yml +++ b/.github/workflows/release-snowflake-role-role.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/snowflake-role-role/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-snowflake-user-user.yml b/.github/workflows/release-snowflake-user-user.yml index 7048437c7..3e4f8a110 100644 --- a/.github/workflows/release-snowflake-user-user.yml +++ b/.github/workflows/release-snowflake-user-user.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/snowflake-user-user/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-snowflake-warehouse-grant.yml b/.github/workflows/release-snowflake-warehouse-grant.yml index 8564f229d..362c2855b 100644 --- a/.github/workflows/release-snowflake-warehouse-grant.yml +++ b/.github/workflows/release-snowflake-warehouse-grant.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/snowflake-warehouse-grant/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-snyk-container-helm.yml b/.github/workflows/release-snyk-container-helm.yml index ad5b89852..95e463880 100644 --- a/.github/workflows/release-snyk-container-helm.yml +++ b/.github/workflows/release-snyk-container-helm.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/snyk-container-helm/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-splunk-enterprise-quickstart-module.yml b/.github/workflows/release-splunk-enterprise-quickstart-module.yml index ed101c43d..0c05c84d5 100644 --- a/.github/workflows/release-splunk-enterprise-quickstart-module.yml +++ b/.github/workflows/release-splunk-enterprise-quickstart-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/splunk-enterprise-quickstart-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-spot-elastigroup-group.yml b/.github/workflows/release-spot-elastigroup-group.yml index 804bda38a..6756d5f4f 100644 --- a/.github/workflows/release-spot-elastigroup-group.yml +++ b/.github/workflows/release-spot-elastigroup-group.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/spot-elastigroup-group/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-stackery-open-bastion-module.yml b/.github/workflows/release-stackery-open-bastion-module.yml index 8a3cf3581..20c1e12ab 100644 --- a/.github/workflows/release-stackery-open-bastion-module.yml +++ b/.github/workflows/release-stackery-open-bastion-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/stackery-open-bastion-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-stocks-orders-marketorder.yml b/.github/workflows/release-stocks-orders-marketorder.yml index 3ed0d07da..99c372c1a 100644 --- a/.github/workflows/release-stocks-orders-marketorder.yml +++ b/.github/workflows/release-stocks-orders-marketorder.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/stocks-orders-marketorder/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-svectordb-vectordatabase-apikey.yml b/.github/workflows/release-svectordb-vectordatabase-apikey.yml index 0ea8f8ea3..e6a991530 100644 --- a/.github/workflows/release-svectordb-vectordatabase-apikey.yml +++ b/.github/workflows/release-svectordb-vectordatabase-apikey.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/svectordb-vectordatabase-apikey/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-svectordb-vectordatabase-database.yml b/.github/workflows/release-svectordb-vectordatabase-database.yml index 18f019856..165991270 100644 --- a/.github/workflows/release-svectordb-vectordatabase-database.yml +++ b/.github/workflows/release-svectordb-vectordatabase-database.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/svectordb-vectordatabase-database/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-symphonia-opensource-cloudformationartifactsbucket-module.yml b/.github/workflows/release-symphonia-opensource-cloudformationartifactsbucket-module.yml index 15e8f19ef..20650cf15 100644 --- a/.github/workflows/release-symphonia-opensource-cloudformationartifactsbucket-module.yml +++ b/.github/workflows/release-symphonia-opensource-cloudformationartifactsbucket-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/symphonia-opensource-cloudformationartifactsbucket-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-sysdig-helm-agent.yml b/.github/workflows/release-sysdig-helm-agent.yml index c2a81b519..d5f6ad28e 100644 --- a/.github/workflows/release-sysdig-helm-agent.yml +++ b/.github/workflows/release-sysdig-helm-agent.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/sysdig-helm-agent/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-ad-computer.yml b/.github/workflows/release-tf-ad-computer.yml index 027fe4dc9..9cdb6f546 100644 --- a/.github/workflows/release-tf-ad-computer.yml +++ b/.github/workflows/release-tf-ad-computer.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-ad-computer/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-ad-user.yml b/.github/workflows/release-tf-ad-user.yml index 0b9e0ff5b..cb44aaa5d 100644 --- a/.github/workflows/release-tf-ad-user.yml +++ b/.github/workflows/release-tf-ad-user.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-ad-user/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-aws-keypair.yml b/.github/workflows/release-tf-aws-keypair.yml index 633a6c60b..b7aff21d3 100644 --- a/.github/workflows/release-tf-aws-keypair.yml +++ b/.github/workflows/release-tf-aws-keypair.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-aws-keypair/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-aws-s3bucket.yml b/.github/workflows/release-tf-aws-s3bucket.yml index 0254db412..c173dc5df 100644 --- a/.github/workflows/release-tf-aws-s3bucket.yml +++ b/.github/workflows/release-tf-aws-s3bucket.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-aws-s3bucket/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-aws-s3bucketobject.yml b/.github/workflows/release-tf-aws-s3bucketobject.yml index e00e9d29d..cedb5451d 100644 --- a/.github/workflows/release-tf-aws-s3bucketobject.yml +++ b/.github/workflows/release-tf-aws-s3bucketobject.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-aws-s3bucketobject/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-azuread-application.yml b/.github/workflows/release-tf-azuread-application.yml index 313764e63..27abea45a 100644 --- a/.github/workflows/release-tf-azuread-application.yml +++ b/.github/workflows/release-tf-azuread-application.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-azuread-application/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-azuread-user.yml b/.github/workflows/release-tf-azuread-user.yml index 4e211a745..ee826b1ab 100644 --- a/.github/workflows/release-tf-azuread-user.yml +++ b/.github/workflows/release-tf-azuread-user.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-azuread-user/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-cloudflare-record.yml b/.github/workflows/release-tf-cloudflare-record.yml index d8f2a017a..4148b2ecc 100644 --- a/.github/workflows/release-tf-cloudflare-record.yml +++ b/.github/workflows/release-tf-cloudflare-record.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-cloudflare-record/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-digitalocean-droplet.yml b/.github/workflows/release-tf-digitalocean-droplet.yml index 9ae25e58a..7851a2ac6 100644 --- a/.github/workflows/release-tf-digitalocean-droplet.yml +++ b/.github/workflows/release-tf-digitalocean-droplet.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-digitalocean-droplet/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-github-repository.yml b/.github/workflows/release-tf-github-repository.yml index 6cc47290e..6f0b463d6 100644 --- a/.github/workflows/release-tf-github-repository.yml +++ b/.github/workflows/release-tf-github-repository.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-github-repository/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-google-storagebucket.yml b/.github/workflows/release-tf-google-storagebucket.yml index 2977f5922..d17595ec4 100644 --- a/.github/workflows/release-tf-google-storagebucket.yml +++ b/.github/workflows/release-tf-google-storagebucket.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-google-storagebucket/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-pagerduty-service.yml b/.github/workflows/release-tf-pagerduty-service.yml index 534f4ec3b..8f9ff0614 100644 --- a/.github/workflows/release-tf-pagerduty-service.yml +++ b/.github/workflows/release-tf-pagerduty-service.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-pagerduty-service/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-random-string.yml b/.github/workflows/release-tf-random-string.yml index 2dddb1a05..582f5de81 100644 --- a/.github/workflows/release-tf-random-string.yml +++ b/.github/workflows/release-tf-random-string.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-random-string/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-tf-random-uuid.yml b/.github/workflows/release-tf-random-uuid.yml index dbbe8cc91..84ca08c95 100644 --- a/.github/workflows/release-tf-random-uuid.yml +++ b/.github/workflows/release-tf-random-uuid.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/tf-random-uuid/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-trendmicro-cloudonecontainer-helm.yml b/.github/workflows/release-trendmicro-cloudonecontainer-helm.yml index 8e92c7bca..2d63e196d 100644 --- a/.github/workflows/release-trendmicro-cloudonecontainer-helm.yml +++ b/.github/workflows/release-trendmicro-cloudonecontainer-helm.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/trendmicro-cloudonecontainer-helm/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-unxpose-iam-integration-module.yml b/.github/workflows/release-unxpose-iam-integration-module.yml index f33e50fd3..fc4b6ff45 100644 --- a/.github/workflows/release-unxpose-iam-integration-module.yml +++ b/.github/workflows/release-unxpose-iam-integration-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/unxpose-iam-integration-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release-zmk-iam-lambdabasicrole-module.yml b/.github/workflows/release-zmk-iam-lambdabasicrole-module.yml index e8f6e0d5b..0787cc66c 100644 --- a/.github/workflows/release-zmk-iam-lambdabasicrole-module.yml +++ b/.github/workflows/release-zmk-iam-lambdabasicrole-module.yml @@ -53,7 +53,7 @@ jobs: run: mv packages/@cdk-cloudformation/zmk-iam-lambdabasicrole-module/dist . - name: Upload artifact if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b1d053cf..ceee348ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,7 +50,7 @@ jobs: continue-on-error: true - name: Upload artifact if: ${{ steps.git_remote.outputs.latest_commit == github.sha }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: name: build-artifact path: dist diff --git a/.github/workflows/upgrade-cdklabs-projen-project-types-main.yml b/.github/workflows/upgrade-cdklabs-projen-project-types-main.yml index 9513819c1..0d5879013 100644 --- a/.github/workflows/upgrade-cdklabs-projen-project-types-main.yml +++ b/.github/workflows/upgrade-cdklabs-projen-project-types-main.yml @@ -26,14 +26,14 @@ jobs: id: create_patch run: |- git add . - git diff --staged --patch --exit-code > .repo.patch || echo "patch_created=true" >> $GITHUB_OUTPUT + git diff --staged --patch --exit-code > repo.patch || echo "patch_created=true" >> $GITHUB_OUTPUT working-directory: ./ - name: Upload patch if: steps.create_patch.outputs.patch_created - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: - name: .repo.patch - path: .repo.patch + name: repo.patch + path: repo.patch overwrite: true pr: name: Create Pull Request @@ -50,10 +50,10 @@ jobs: - name: Download patch uses: actions/download-artifact@v4 with: - name: .repo.patch + name: repo.patch path: ${{ runner.temp }} - name: Apply patch - run: '[ -s ${{ runner.temp }}/.repo.patch ] && git apply ${{ runner.temp }}/.repo.patch || echo "Empty patch. Skipping."' + run: '[ -s ${{ runner.temp }}/repo.patch ] && git apply ${{ runner.temp }}/repo.patch || echo "Empty patch. Skipping."' - name: Set git identity run: |- git config user.name "github-actions" diff --git a/.github/workflows/upgrade-dev-deps-main.yml b/.github/workflows/upgrade-dev-deps-main.yml index 5256d9150..c6c42c460 100644 --- a/.github/workflows/upgrade-dev-deps-main.yml +++ b/.github/workflows/upgrade-dev-deps-main.yml @@ -30,14 +30,14 @@ jobs: id: create_patch run: |- git add . - git diff --staged --patch --exit-code > .repo.patch || echo "patch_created=true" >> $GITHUB_OUTPUT + git diff --staged --patch --exit-code > repo.patch || echo "patch_created=true" >> $GITHUB_OUTPUT working-directory: ./ - name: Upload patch if: steps.create_patch.outputs.patch_created - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: - name: .repo.patch - path: .repo.patch + name: repo.patch + path: repo.patch overwrite: true pr: name: Create Pull Request @@ -54,10 +54,10 @@ jobs: - name: Download patch uses: actions/download-artifact@v4 with: - name: .repo.patch + name: repo.patch path: ${{ runner.temp }} - name: Apply patch - run: '[ -s ${{ runner.temp }}/.repo.patch ] && git apply ${{ runner.temp }}/.repo.patch || echo "Empty patch. Skipping."' + run: '[ -s ${{ runner.temp }}/repo.patch ] && git apply ${{ runner.temp }}/repo.patch || echo "Empty patch. Skipping."' - name: Set git identity run: |- git config user.name "github-actions" diff --git a/.github/workflows/upgrade-main.yml b/.github/workflows/upgrade-main.yml index 885952a64..d75e59f7e 100644 --- a/.github/workflows/upgrade-main.yml +++ b/.github/workflows/upgrade-main.yml @@ -30,14 +30,14 @@ jobs: id: create_patch run: |- git add . - git diff --staged --patch --exit-code > .repo.patch || echo "patch_created=true" >> $GITHUB_OUTPUT + git diff --staged --patch --exit-code > repo.patch || echo "patch_created=true" >> $GITHUB_OUTPUT working-directory: ./ - name: Upload patch if: steps.create_patch.outputs.patch_created - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 with: - name: .repo.patch - path: .repo.patch + name: repo.patch + path: repo.patch overwrite: true pr: name: Create Pull Request @@ -54,10 +54,10 @@ jobs: - name: Download patch uses: actions/download-artifact@v4 with: - name: .repo.patch + name: repo.patch path: ${{ runner.temp }} - name: Apply patch - run: '[ -s ${{ runner.temp }}/.repo.patch ] && git apply ${{ runner.temp }}/.repo.patch || echo "Empty patch. Skipping."' + run: '[ -s ${{ runner.temp }}/repo.patch ] && git apply ${{ runner.temp }}/repo.patch || echo "Empty patch. Skipping."' - name: Set git identity run: |- git config user.name "github-actions" diff --git a/.projen/deps.json b/.projen/deps.json index 819594341..8c9ae35dc 100644 --- a/.projen/deps.json +++ b/.projen/deps.json @@ -45,6 +45,11 @@ "name": "cdklabs-projen-project-types", "type": "build" }, + { + "name": "commit-and-tag-version", + "version": "^12", + "type": "build" + }, { "name": "constructs", "version": "^10.0.5", @@ -88,11 +93,6 @@ "name": "projen", "type": "build" }, - { - "name": "standard-version", - "version": "^9", - "type": "build" - }, { "name": "ts-jest", "type": "build" diff --git a/.projen/tasks.json b/.projen/tasks.json index 955795184..a0847e178 100644 --- a/.projen/tasks.json +++ b/.projen/tasks.json @@ -42,6 +42,7 @@ "BUMPFILE": "dist/version.txt", "RELEASETAG": "dist/releasetag.txt", "RELEASE_TAG_PREFIX": "", + "BUMP_PACKAGE": "commit-and-tag-version@^12", "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\"" }, "steps": [ @@ -236,6 +237,7 @@ "BUMPFILE": "dist/version.txt", "RELEASETAG": "dist/releasetag.txt", "RELEASE_TAG_PREFIX": "", + "BUMP_PACKAGE": "commit-and-tag-version@^12", "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\"" }, "steps": [ @@ -302,7 +304,7 @@ "exec": "yarn install --check-files" }, { - "exec": "yarn upgrade @types/jest @types/node @typescript-eslint/eslint-plugin @typescript-eslint/parser aws-cdk-github-oidc aws-cdk-lib aws-sdk case cdk-import cdklabs-projen-project-types constructs eslint-import-resolver-typescript eslint-plugin-import eslint jest jest-junit jsii jsii-pacmak jsii-rosetta projen standard-version ts-jest ts-node typescript" + "exec": "yarn upgrade @types/jest @types/node @typescript-eslint/eslint-plugin @typescript-eslint/parser aws-cdk-github-oidc aws-cdk-lib aws-sdk case cdk-import cdklabs-projen-project-types commit-and-tag-version constructs eslint-import-resolver-typescript eslint-plugin-import eslint jest jest-junit jsii jsii-pacmak jsii-rosetta projen ts-jest ts-node typescript" }, { "exec": "npx projen" diff --git a/package.json b/package.json index 512e4bd33..e4fd4db52 100644 --- a/package.json +++ b/package.json @@ -47,6 +47,7 @@ "case": "^1.6.3", "cdk-import": "^0.2.112", "cdklabs-projen-project-types": "^0.1.200", + "commit-and-tag-version": "^12", "constructs": "^10.0.5", "eslint": "^8", "eslint-import-resolver-typescript": "^2.7.1", @@ -56,8 +57,7 @@ "jsii": "^5.5.0", "jsii-pacmak": "^1.102.0", "jsii-rosetta": "^5.4.31", - "projen": "^0.85.2", - "standard-version": "^9", + "projen": "^0.87.2", "ts-jest": "^27.1.5", "ts-node": "^10", "typescript": "~4.9.5" diff --git a/packages/@cdk-cloudformation/alexa-ask-skill/.gitattributes b/packages/@cdk-cloudformation/alexa-ask-skill/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/alexa-ask-skill/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/aqua-enterprise-enforcer/.gitattributes b/packages/@cdk-cloudformation/aqua-enterprise-enforcer/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/aqua-enterprise-enforcer/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/aqua-enterprise-kubeenforcer/.gitattributes b/packages/@cdk-cloudformation/aqua-enterprise-kubeenforcer/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/aqua-enterprise-kubeenforcer/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/aqua-enterprise-scanner/.gitattributes b/packages/@cdk-cloudformation/aqua-enterprise-scanner/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/aqua-enterprise-scanner/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/aqua-enterprise-server/.gitattributes b/packages/@cdk-cloudformation/aqua-enterprise-server/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/aqua-enterprise-server/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/atlassian-opsgenie-integration/.gitattributes b/packages/@cdk-cloudformation/atlassian-opsgenie-integration/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/atlassian-opsgenie-integration/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/atlassian-opsgenie-team/.gitattributes b/packages/@cdk-cloudformation/atlassian-opsgenie-team/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/atlassian-opsgenie-team/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/atlassian-opsgenie-user/.gitattributes b/packages/@cdk-cloudformation/atlassian-opsgenie-user/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/atlassian-opsgenie-user/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awscommunity-account-alternatecontact/.gitattributes b/packages/@cdk-cloudformation/awscommunity-account-alternatecontact/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awscommunity-account-alternatecontact/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awscommunity-applicationautoscaling-scheduledaction/.gitattributes b/packages/@cdk-cloudformation/awscommunity-applicationautoscaling-scheduledaction/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awscommunity-applicationautoscaling-scheduledaction/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awscommunity-cloudfront-s3website-module/.gitattributes b/packages/@cdk-cloudformation/awscommunity-cloudfront-s3website-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awscommunity-cloudfront-s3website-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awscommunity-dynamodb-item/.gitattributes b/packages/@cdk-cloudformation/awscommunity-dynamodb-item/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awscommunity-dynamodb-item/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awscommunity-resource-lookup/.gitattributes b/packages/@cdk-cloudformation/awscommunity-resource-lookup/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awscommunity-resource-lookup/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awscommunity-s3-bucket-module/.gitattributes b/packages/@cdk-cloudformation/awscommunity-s3-bucket-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awscommunity-s3-bucket-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awscommunity-s3-deletebucketcontents/.gitattributes b/packages/@cdk-cloudformation/awscommunity-s3-deletebucketcontents/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awscommunity-s3-deletebucketcontents/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awscommunity-time-offset/.gitattributes b/packages/@cdk-cloudformation/awscommunity-time-offset/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awscommunity-time-offset/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awscommunity-time-sleep/.gitattributes b/packages/@cdk-cloudformation/awscommunity-time-sleep/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awscommunity-time-sleep/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awscommunity-time-static/.gitattributes b/packages/@cdk-cloudformation/awscommunity-time-static/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awscommunity-time-static/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awsqs-checkpoint-cloudguardqs-module/.gitattributes b/packages/@cdk-cloudformation/awsqs-checkpoint-cloudguardqs-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awsqs-checkpoint-cloudguardqs-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awsqs-ec2-linuxbastionqs-module/.gitattributes b/packages/@cdk-cloudformation/awsqs-ec2-linuxbastionqs-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awsqs-ec2-linuxbastionqs-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awsqs-eks-cluster/.gitattributes b/packages/@cdk-cloudformation/awsqs-eks-cluster/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awsqs-eks-cluster/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awsqs-iridium-cloudconnectqs-module/.gitattributes b/packages/@cdk-cloudformation/awsqs-iridium-cloudconnectqs-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awsqs-iridium-cloudconnectqs-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awsqs-kubernetes-get/.gitattributes b/packages/@cdk-cloudformation/awsqs-kubernetes-get/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awsqs-kubernetes-get/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awsqs-kubernetes-helm/.gitattributes b/packages/@cdk-cloudformation/awsqs-kubernetes-helm/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awsqs-kubernetes-helm/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awsqs-kubernetes-resource/.gitattributes b/packages/@cdk-cloudformation/awsqs-kubernetes-resource/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awsqs-kubernetes-resource/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/awsqs-vpc-vpcqs-module/.gitattributes b/packages/@cdk-cloudformation/awsqs-vpc-vpcqs-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/awsqs-vpc-vpcqs-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/bigid-datasource-dynamodb/.gitattributes b/packages/@cdk-cloudformation/bigid-datasource-dynamodb/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/bigid-datasource-dynamodb/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/bigid-datasource-s3/.gitattributes b/packages/@cdk-cloudformation/bigid-datasource-s3/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/bigid-datasource-s3/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/cadiaz-bucket-uno-module/.gitattributes b/packages/@cdk-cloudformation/cadiaz-bucket-uno-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/cadiaz-bucket-uno-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/cloudflare-dns-record/.gitattributes b/packages/@cdk-cloudformation/cloudflare-dns-record/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/cloudflare-dns-record/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/cloudflare-loadbalancer-loadbalancer/.gitattributes b/packages/@cdk-cloudformation/cloudflare-loadbalancer-loadbalancer/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/cloudflare-loadbalancer-loadbalancer/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/cloudflare-loadbalancer-monitor/.gitattributes b/packages/@cdk-cloudformation/cloudflare-loadbalancer-monitor/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/cloudflare-loadbalancer-monitor/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/cloudflare-loadbalancer-pool/.gitattributes b/packages/@cdk-cloudformation/cloudflare-loadbalancer-pool/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/cloudflare-loadbalancer-pool/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/confluentcloud-iam-serviceaccount/.gitattributes b/packages/@cdk-cloudformation/confluentcloud-iam-serviceaccount/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/confluentcloud-iam-serviceaccount/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/cyral-sidecar-deployment-module/.gitattributes b/packages/@cdk-cloudformation/cyral-sidecar-deployment-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/cyral-sidecar-deployment-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/databricks-clusters-cluster/.gitattributes b/packages/@cdk-cloudformation/databricks-clusters-cluster/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/databricks-clusters-cluster/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/databricks-clusters-job/.gitattributes b/packages/@cdk-cloudformation/databricks-clusters-job/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/databricks-clusters-job/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/datadog-dashboards-dashboard/.gitattributes b/packages/@cdk-cloudformation/datadog-dashboards-dashboard/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/datadog-dashboards-dashboard/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/datadog-integrations-aws/.gitattributes b/packages/@cdk-cloudformation/datadog-integrations-aws/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/datadog-integrations-aws/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/datadog-monitors-downtime/.gitattributes b/packages/@cdk-cloudformation/datadog-monitors-downtime/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/datadog-monitors-downtime/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/datadog-monitors-downtimeschedule/.gitattributes b/packages/@cdk-cloudformation/datadog-monitors-downtimeschedule/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/datadog-monitors-downtimeschedule/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/datadog-monitors-monitor/.gitattributes b/packages/@cdk-cloudformation/datadog-monitors-monitor/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/datadog-monitors-monitor/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/datadog-slos-slo/.gitattributes b/packages/@cdk-cloudformation/datadog-slos-slo/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/datadog-slos-slo/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/dynatrace-configuration-dashboard/.gitattributes b/packages/@cdk-cloudformation/dynatrace-configuration-dashboard/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/dynatrace-configuration-dashboard/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/dynatrace-environment-metric/.gitattributes b/packages/@cdk-cloudformation/dynatrace-environment-metric/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/dynatrace-environment-metric/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/dynatrace-environment-servicelevelobjective/.gitattributes b/packages/@cdk-cloudformation/dynatrace-environment-servicelevelobjective/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/dynatrace-environment-servicelevelobjective/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/dynatrace-environment-syntheticlocation/.gitattributes b/packages/@cdk-cloudformation/dynatrace-environment-syntheticlocation/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/dynatrace-environment-syntheticlocation/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/dynatrace-environment-syntheticmonitor/.gitattributes b/packages/@cdk-cloudformation/dynatrace-environment-syntheticmonitor/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/dynatrace-environment-syntheticmonitor/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-dictionary-dictionary/.gitattributes b/packages/@cdk-cloudformation/fastly-dictionary-dictionary/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-dictionary-dictionary/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-dictionary-dictionaryitem/.gitattributes b/packages/@cdk-cloudformation/fastly-dictionary-dictionaryitem/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-dictionary-dictionaryitem/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-logging-s3/.gitattributes b/packages/@cdk-cloudformation/fastly-logging-s3/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-logging-s3/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-logging-splunk/.gitattributes b/packages/@cdk-cloudformation/fastly-logging-splunk/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-logging-splunk/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-services-activeversion/.gitattributes b/packages/@cdk-cloudformation/fastly-services-activeversion/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-services-activeversion/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-services-backend/.gitattributes b/packages/@cdk-cloudformation/fastly-services-backend/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-services-backend/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-services-domain/.gitattributes b/packages/@cdk-cloudformation/fastly-services-domain/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-services-domain/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-services-healthcheck/.gitattributes b/packages/@cdk-cloudformation/fastly-services-healthcheck/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-services-healthcheck/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-services-service/.gitattributes b/packages/@cdk-cloudformation/fastly-services-service/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-services-service/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-services-version/.gitattributes b/packages/@cdk-cloudformation/fastly-services-version/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-services-version/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-tls-certificate/.gitattributes b/packages/@cdk-cloudformation/fastly-tls-certificate/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-tls-certificate/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-tls-domain/.gitattributes b/packages/@cdk-cloudformation/fastly-tls-domain/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-tls-domain/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fastly-tls-privatekeys/.gitattributes b/packages/@cdk-cloudformation/fastly-tls-privatekeys/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fastly-tls-privatekeys/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/fireeye-cloudintegrations-cloudwatch/.gitattributes b/packages/@cdk-cloudformation/fireeye-cloudintegrations-cloudwatch/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/fireeye-cloudintegrations-cloudwatch/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/freyraim-impactapi-apigateway-module/.gitattributes b/packages/@cdk-cloudformation/freyraim-impactapi-apigateway-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/freyraim-impactapi-apigateway-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/freyraim-impactapi-apihandle-module/.gitattributes b/packages/@cdk-cloudformation/freyraim-impactapi-apihandle-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/freyraim-impactapi-apihandle-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/freyraim-impactapi-ec2instance-module/.gitattributes b/packages/@cdk-cloudformation/freyraim-impactapi-ec2instance-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/freyraim-impactapi-ec2instance-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/freyraim-impactapi-lambdafunction-module/.gitattributes b/packages/@cdk-cloudformation/freyraim-impactapi-lambdafunction-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/freyraim-impactapi-lambdafunction-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/freyraim-impactapi-loadbalancer-module/.gitattributes b/packages/@cdk-cloudformation/freyraim-impactapi-loadbalancer-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/freyraim-impactapi-loadbalancer-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/freyraim-spider-cloudfront-module/.gitattributes b/packages/@cdk-cloudformation/freyraim-spider-cloudfront-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/freyraim-spider-cloudfront-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/freyraim-spider-ec2instance-module/.gitattributes b/packages/@cdk-cloudformation/freyraim-spider-ec2instance-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/freyraim-spider-ec2instance-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/freyraim-spider-ecs-module/.gitattributes b/packages/@cdk-cloudformation/freyraim-spider-ecs-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/freyraim-spider-ecs-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/freyraim-spider-loadbalancer-module/.gitattributes b/packages/@cdk-cloudformation/freyraim-spider-loadbalancer-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/freyraim-spider-loadbalancer-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/freyraim-spider-postgresql-module/.gitattributes b/packages/@cdk-cloudformation/freyraim-spider-postgresql-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/freyraim-spider-postgresql-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/freyraim-spider-s3bucket-module/.gitattributes b/packages/@cdk-cloudformation/freyraim-spider-s3bucket-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/freyraim-spider-s3bucket-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/generic-database-schema/.gitattributes b/packages/@cdk-cloudformation/generic-database-schema/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/generic-database-schema/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/generic-transcribe-vocabulary/.gitattributes b/packages/@cdk-cloudformation/generic-transcribe-vocabulary/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/generic-transcribe-vocabulary/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/github-git-tag/.gitattributes b/packages/@cdk-cloudformation/github-git-tag/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/github-git-tag/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/github-organizations-membership/.gitattributes b/packages/@cdk-cloudformation/github-organizations-membership/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/github-organizations-membership/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/github-organizations-secret/.gitattributes b/packages/@cdk-cloudformation/github-organizations-secret/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/github-organizations-secret/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/github-repositories-collaborator/.gitattributes b/packages/@cdk-cloudformation/github-repositories-collaborator/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/github-repositories-collaborator/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/github-repositories-repository/.gitattributes b/packages/@cdk-cloudformation/github-repositories-repository/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/github-repositories-repository/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/github-repositories-secret/.gitattributes b/packages/@cdk-cloudformation/github-repositories-secret/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/github-repositories-secret/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/github-repositories-webhook/.gitattributes b/packages/@cdk-cloudformation/github-repositories-webhook/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/github-repositories-webhook/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/github-teams-membership/.gitattributes b/packages/@cdk-cloudformation/github-teams-membership/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/github-teams-membership/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/github-teams-repositoryaccess/.gitattributes b/packages/@cdk-cloudformation/github-teams-repositoryaccess/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/github-teams-repositoryaccess/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/github-teams-team/.gitattributes b/packages/@cdk-cloudformation/github-teams-team/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/github-teams-team/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/gitlab-code-tag/.gitattributes b/packages/@cdk-cloudformation/gitlab-code-tag/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/gitlab-code-tag/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/gitlab-groups-group/.gitattributes b/packages/@cdk-cloudformation/gitlab-groups-group/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/gitlab-groups-group/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/gitlab-groups-groupaccesstogroup/.gitattributes b/packages/@cdk-cloudformation/gitlab-groups-groupaccesstogroup/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/gitlab-groups-groupaccesstogroup/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/gitlab-groups-usermemberofgroup/.gitattributes b/packages/@cdk-cloudformation/gitlab-groups-usermemberofgroup/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/gitlab-groups-usermemberofgroup/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/gitlab-projects-accesstoken/.gitattributes b/packages/@cdk-cloudformation/gitlab-projects-accesstoken/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/gitlab-projects-accesstoken/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/gitlab-projects-groupaccesstoproject/.gitattributes b/packages/@cdk-cloudformation/gitlab-projects-groupaccesstoproject/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/gitlab-projects-groupaccesstoproject/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/gitlab-projects-project/.gitattributes b/packages/@cdk-cloudformation/gitlab-projects-project/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/gitlab-projects-project/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/gitlab-projects-usermemberofproject/.gitattributes b/packages/@cdk-cloudformation/gitlab-projects-usermemberofproject/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/gitlab-projects-usermemberofproject/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/gremlin-agent-helm/.gitattributes b/packages/@cdk-cloudformation/gremlin-agent-helm/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/gremlin-agent-helm/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/jfrog-artifactory-core-module/.gitattributes b/packages/@cdk-cloudformation/jfrog-artifactory-core-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/jfrog-artifactory-core-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/jfrog-artifactory-ec2instance-module/.gitattributes b/packages/@cdk-cloudformation/jfrog-artifactory-ec2instance-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/jfrog-artifactory-ec2instance-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/jfrog-artifactory-existingvpc-module/.gitattributes b/packages/@cdk-cloudformation/jfrog-artifactory-existingvpc-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/jfrog-artifactory-existingvpc-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/jfrog-artifactory-newvpc-module/.gitattributes b/packages/@cdk-cloudformation/jfrog-artifactory-newvpc-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/jfrog-artifactory-newvpc-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/jfrog-linux-bastion-module/.gitattributes b/packages/@cdk-cloudformation/jfrog-linux-bastion-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/jfrog-linux-bastion-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/jfrog-vpc-multiaz-module/.gitattributes b/packages/@cdk-cloudformation/jfrog-vpc-multiaz-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/jfrog-vpc-multiaz-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/jfrog-xray-ec2instance-module/.gitattributes b/packages/@cdk-cloudformation/jfrog-xray-ec2instance-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/jfrog-xray-ec2instance-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/karte-eventbridge-documentdb-module/.gitattributes b/packages/@cdk-cloudformation/karte-eventbridge-documentdb-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/karte-eventbridge-documentdb-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/logzio-autodeploymentlogzio-cloudwatch-module/.gitattributes b/packages/@cdk-cloudformation/logzio-autodeploymentlogzio-cloudwatch-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/logzio-autodeploymentlogzio-cloudwatch-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/logzio-awscostandusage-cur-module/.gitattributes b/packages/@cdk-cloudformation/logzio-awscostandusage-cur-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/logzio-awscostandusage-cur-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/logzio-awssecurityhub-collector-module/.gitattributes b/packages/@cdk-cloudformation/logzio-awssecurityhub-collector-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/logzio-awssecurityhub-collector-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/logzio-kinesisshipper-kinesisshipper-module/.gitattributes b/packages/@cdk-cloudformation/logzio-kinesisshipper-kinesisshipper-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/logzio-kinesisshipper-kinesisshipper-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/logzio-myservice-myname-module/.gitattributes b/packages/@cdk-cloudformation/logzio-myservice-myname-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/logzio-myservice-myname-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/mavi-pipeline-default-module/.gitattributes b/packages/@cdk-cloudformation/mavi-pipeline-default-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/mavi-pipeline-default-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/mongodb-atlas-cluster/.gitattributes b/packages/@cdk-cloudformation/mongodb-atlas-cluster/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/mongodb-atlas-cluster/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/mongodb-atlas-databaseuser/.gitattributes b/packages/@cdk-cloudformation/mongodb-atlas-databaseuser/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/mongodb-atlas-databaseuser/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/mongodb-atlas-networkpeering/.gitattributes b/packages/@cdk-cloudformation/mongodb-atlas-networkpeering/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/mongodb-atlas-networkpeering/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/mongodb-atlas-project/.gitattributes b/packages/@cdk-cloudformation/mongodb-atlas-project/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/mongodb-atlas-project/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/mongodb-atlas-projectipaccesslist/.gitattributes b/packages/@cdk-cloudformation/mongodb-atlas-projectipaccesslist/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/mongodb-atlas-projectipaccesslist/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-agent-configuration/.gitattributes b/packages/@cdk-cloudformation/newrelic-agent-configuration/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-agent-configuration/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-alert-alertspolicy/.gitattributes b/packages/@cdk-cloudformation/newrelic-alert-alertspolicy/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-alert-alertspolicy/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-alert-nrqlconditionstatic/.gitattributes b/packages/@cdk-cloudformation/newrelic-alert-nrqlconditionstatic/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-alert-nrqlconditionstatic/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-cloudformation-dashboards/.gitattributes b/packages/@cdk-cloudformation/newrelic-cloudformation-dashboards/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-cloudformation-dashboards/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-cloudformation-tagging/.gitattributes b/packages/@cdk-cloudformation/newrelic-cloudformation-tagging/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-cloudformation-tagging/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-cloudformation-workloads/.gitattributes b/packages/@cdk-cloudformation/newrelic-cloudformation-workloads/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-cloudformation-workloads/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-observability-ainotificationschannel/.gitattributes b/packages/@cdk-cloudformation/newrelic-observability-ainotificationschannel/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-observability-ainotificationschannel/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-observability-ainotificationsdestination/.gitattributes b/packages/@cdk-cloudformation/newrelic-observability-ainotificationsdestination/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-observability-ainotificationsdestination/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-observability-aiworkflows/.gitattributes b/packages/@cdk-cloudformation/newrelic-observability-aiworkflows/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-observability-aiworkflows/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-observability-alertsmutingrule/.gitattributes b/packages/@cdk-cloudformation/newrelic-observability-alertsmutingrule/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-observability-alertsmutingrule/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-observability-alertsnrqlcondition/.gitattributes b/packages/@cdk-cloudformation/newrelic-observability-alertsnrqlcondition/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-observability-alertsnrqlcondition/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-observability-alertspolicy/.gitattributes b/packages/@cdk-cloudformation/newrelic-observability-alertspolicy/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-observability-alertspolicy/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-observability-dashboards/.gitattributes b/packages/@cdk-cloudformation/newrelic-observability-dashboards/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-observability-dashboards/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/newrelic-observability-workloads/.gitattributes b/packages/@cdk-cloudformation/newrelic-observability-workloads/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/newrelic-observability-workloads/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/okta-application-application/.gitattributes b/packages/@cdk-cloudformation/okta-application-application/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/okta-application-application/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/okta-group-group/.gitattributes b/packages/@cdk-cloudformation/okta-group-group/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/okta-group-group/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/okta-group-groupapplicationassociation/.gitattributes b/packages/@cdk-cloudformation/okta-group-groupapplicationassociation/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/okta-group-groupapplicationassociation/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/okta-group-membership/.gitattributes b/packages/@cdk-cloudformation/okta-group-membership/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/okta-group-membership/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/okta-policy-policy/.gitattributes b/packages/@cdk-cloudformation/okta-policy-policy/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/okta-policy-policy/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/org-test-sample-module/.gitattributes b/packages/@cdk-cloudformation/org-test-sample-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/org-test-sample-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/pagerduty-escalationpolicies-escalationpolicy/.gitattributes b/packages/@cdk-cloudformation/pagerduty-escalationpolicies-escalationpolicy/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/pagerduty-escalationpolicies-escalationpolicy/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/pagerduty-responseplays-responseplay/.gitattributes b/packages/@cdk-cloudformation/pagerduty-responseplays-responseplay/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/pagerduty-responseplays-responseplay/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/pagerduty-schedules-schedule/.gitattributes b/packages/@cdk-cloudformation/pagerduty-schedules-schedule/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/pagerduty-schedules-schedule/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/pagerduty-services-integration/.gitattributes b/packages/@cdk-cloudformation/pagerduty-services-integration/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/pagerduty-services-integration/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/pagerduty-services-service/.gitattributes b/packages/@cdk-cloudformation/pagerduty-services-service/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/pagerduty-services-service/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/pagerduty-teams-membership/.gitattributes b/packages/@cdk-cloudformation/pagerduty-teams-membership/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/pagerduty-teams-membership/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/pagerduty-teams-team/.gitattributes b/packages/@cdk-cloudformation/pagerduty-teams-team/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/pagerduty-teams-team/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/pagerduty-users-user/.gitattributes b/packages/@cdk-cloudformation/pagerduty-users-user/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/pagerduty-users-user/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/paloaltonetworks-cloudngfw-ngfw/.gitattributes b/packages/@cdk-cloudformation/paloaltonetworks-cloudngfw-ngfw/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/paloaltonetworks-cloudngfw-ngfw/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/paloaltonetworks-cloudngfw-rulestack/.gitattributes b/packages/@cdk-cloudformation/paloaltonetworks-cloudngfw-rulestack/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/paloaltonetworks-cloudngfw-rulestack/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/poc-azure-blobstorage/.gitattributes b/packages/@cdk-cloudformation/poc-azure-blobstorage/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/poc-azure-blobstorage/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/registry-test-resource1-module/.gitattributes b/packages/@cdk-cloudformation/registry-test-resource1-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/registry-test-resource1-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/rollbar-notifications-rule/.gitattributes b/packages/@cdk-cloudformation/rollbar-notifications-rule/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/rollbar-notifications-rule/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/rollbar-projects-accesstoken/.gitattributes b/packages/@cdk-cloudformation/rollbar-projects-accesstoken/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/rollbar-projects-accesstoken/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/rollbar-projects-project/.gitattributes b/packages/@cdk-cloudformation/rollbar-projects-project/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/rollbar-projects-project/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/rollbar-teams-membership/.gitattributes b/packages/@cdk-cloudformation/rollbar-teams-membership/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/rollbar-teams-membership/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/rollbar-teams-team/.gitattributes b/packages/@cdk-cloudformation/rollbar-teams-team/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/rollbar-teams-team/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/snowflake-database-database/.gitattributes b/packages/@cdk-cloudformation/snowflake-database-database/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/snowflake-database-database/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/snowflake-database-grant/.gitattributes b/packages/@cdk-cloudformation/snowflake-database-grant/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/snowflake-database-grant/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/snowflake-role-grant/.gitattributes b/packages/@cdk-cloudformation/snowflake-role-grant/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/snowflake-role-grant/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/snowflake-role-role/.gitattributes b/packages/@cdk-cloudformation/snowflake-role-role/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/snowflake-role-role/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/snowflake-user-user/.gitattributes b/packages/@cdk-cloudformation/snowflake-user-user/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/snowflake-user-user/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/snowflake-warehouse-grant/.gitattributes b/packages/@cdk-cloudformation/snowflake-warehouse-grant/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/snowflake-warehouse-grant/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/snyk-container-helm/.gitattributes b/packages/@cdk-cloudformation/snyk-container-helm/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/snyk-container-helm/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/splunk-enterprise-quickstart-module/.gitattributes b/packages/@cdk-cloudformation/splunk-enterprise-quickstart-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/splunk-enterprise-quickstart-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/spot-elastigroup-group/.gitattributes b/packages/@cdk-cloudformation/spot-elastigroup-group/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/spot-elastigroup-group/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/stackery-open-bastion-module/.gitattributes b/packages/@cdk-cloudformation/stackery-open-bastion-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/stackery-open-bastion-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/stocks-orders-marketorder/.gitattributes b/packages/@cdk-cloudformation/stocks-orders-marketorder/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/stocks-orders-marketorder/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/svectordb-vectordatabase-apikey/.gitattributes b/packages/@cdk-cloudformation/svectordb-vectordatabase-apikey/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/svectordb-vectordatabase-apikey/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/svectordb-vectordatabase-database/.gitattributes b/packages/@cdk-cloudformation/svectordb-vectordatabase-database/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/svectordb-vectordatabase-database/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/symphonia-opensource-cloudformationartifactsbucket-module/.gitattributes b/packages/@cdk-cloudformation/symphonia-opensource-cloudformationartifactsbucket-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/symphonia-opensource-cloudformationartifactsbucket-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/sysdig-helm-agent/.gitattributes b/packages/@cdk-cloudformation/sysdig-helm-agent/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/sysdig-helm-agent/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-ad-computer/.gitattributes b/packages/@cdk-cloudformation/tf-ad-computer/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-ad-computer/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-ad-user/.gitattributes b/packages/@cdk-cloudformation/tf-ad-user/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-ad-user/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-aws-keypair/.gitattributes b/packages/@cdk-cloudformation/tf-aws-keypair/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-aws-keypair/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-aws-s3bucket/.gitattributes b/packages/@cdk-cloudformation/tf-aws-s3bucket/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-aws-s3bucket/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-aws-s3bucketobject/.gitattributes b/packages/@cdk-cloudformation/tf-aws-s3bucketobject/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-aws-s3bucketobject/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-azuread-application/.gitattributes b/packages/@cdk-cloudformation/tf-azuread-application/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-azuread-application/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-azuread-user/.gitattributes b/packages/@cdk-cloudformation/tf-azuread-user/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-azuread-user/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-cloudflare-record/.gitattributes b/packages/@cdk-cloudformation/tf-cloudflare-record/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-cloudflare-record/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-digitalocean-droplet/.gitattributes b/packages/@cdk-cloudformation/tf-digitalocean-droplet/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-digitalocean-droplet/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-github-repository/.gitattributes b/packages/@cdk-cloudformation/tf-github-repository/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-github-repository/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-google-storagebucket/.gitattributes b/packages/@cdk-cloudformation/tf-google-storagebucket/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-google-storagebucket/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-pagerduty-service/.gitattributes b/packages/@cdk-cloudformation/tf-pagerduty-service/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-pagerduty-service/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-random-string/.gitattributes b/packages/@cdk-cloudformation/tf-random-string/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-random-string/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/tf-random-uuid/.gitattributes b/packages/@cdk-cloudformation/tf-random-uuid/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/tf-random-uuid/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/trendmicro-cloudonecontainer-helm/.gitattributes b/packages/@cdk-cloudformation/trendmicro-cloudonecontainer-helm/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/trendmicro-cloudonecontainer-helm/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/unxpose-iam-integration-module/.gitattributes b/packages/@cdk-cloudformation/unxpose-iam-integration-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/unxpose-iam-integration-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/packages/@cdk-cloudformation/zmk-iam-lambdabasicrole-module/.gitattributes b/packages/@cdk-cloudformation/zmk-iam-lambdabasicrole-module/.gitattributes new file mode 100644 index 000000000..cee6df50e --- /dev/null +++ b/packages/@cdk-cloudformation/zmk-iam-lambdabasicrole-module/.gitattributes @@ -0,0 +1,3 @@ +# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". + +* text=auto eol=lf \ No newline at end of file diff --git a/test/type-package.test.ts b/test/type-package.test.ts index d361931c4..7e750ac9b 100644 --- a/test/type-package.test.ts +++ b/test/type-package.test.ts @@ -20,6 +20,7 @@ test('CloudFormationTypeProject', () => { const snapshot = Testing.synth(root); const keys = Object.keys(snapshot).filter(key => key.startsWith('my-packages/')); expect(keys).toStrictEqual([ + 'my-packages/@cdk-cloudformation/tf-random-uuid/.gitattributes', 'my-packages/@cdk-cloudformation/tf-random-uuid/.gitignore', 'my-packages/@cdk-cloudformation/tf-random-uuid/.npmignore', 'my-packages/@cdk-cloudformation/tf-random-uuid/.projen/files.json', diff --git a/yarn.lock b/yarn.lock index f4dc498c3..3aecf1068 100644 --- a/yarn.lock +++ b/yarn.lock @@ -928,7 +928,7 @@ resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99" integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw== -JSONStream@^1.0.4: +JSONStream@^1.3.5: version "1.3.5" resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== @@ -1554,6 +1554,28 @@ comment-json@4.2.2: has-own-prop "^2.0.0" repeat-string "^1.6.1" +commit-and-tag-version@^12: + version "12.4.3" + resolved "https://registry.yarnpkg.com/commit-and-tag-version/-/commit-and-tag-version-12.4.3.tgz#e1d596b118156b8cd4ea333a5d3cbefe98322eb0" + integrity sha512-q+DaQ4QmvDjU3QBUfZmiH3CCL5Jf3saJ0I9dI1hL9equA4ZosoOkg3eya5q0qAc5T0eow+gF0DfKZskRbm4Shw== + dependencies: + chalk "^2.4.2" + conventional-changelog "4.0.0" + conventional-changelog-config-spec "2.1.0" + conventional-changelog-conventionalcommits "6.1.0" + conventional-recommended-bump "7.0.1" + detect-indent "^6.0.0" + detect-newline "^3.1.0" + dotgitignore "^2.1.0" + figures "^3.1.0" + find-up "^5.0.0" + git-semver-tags "^5.0.0" + jsdom "^25.0.0" + semver "^7.6.3" + w3c-xmlserializer "^5.0.0" + yaml "^2.4.1" + yargs "^17.7.2" + commonmark@^0.31.1: version "0.31.1" resolved "https://registry.yarnpkg.com/commonmark/-/commonmark-0.31.1.tgz#5c8b1b5eaaca00a0912cad68d1f0f00c836cecd3" @@ -1591,168 +1613,144 @@ constructs@10.3.0, constructs@^10, constructs@^10.0.0, constructs@^10.0.5: resolved "https://registry.yarnpkg.com/constructs/-/constructs-10.3.0.tgz#4c246fce9cf8e77711ad45944e9fbd41f1501965" integrity sha512-vbK8i3rIb/xwZxSpTjz3SagHn1qq9BChLEfy5Hf6fB3/2eFbrwt2n9kHwQcS0CPTRBesreeAcsJfMq2229FnbQ== -conventional-changelog-angular@^5.0.12: - version "5.0.13" - resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz#896885d63b914a70d4934b59d2fe7bde1832b28c" - integrity sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA== +conventional-changelog-angular@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz#a9a9494c28b7165889144fd5b91573c4aa9ca541" + integrity sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg== dependencies: compare-func "^2.0.0" - q "^1.5.1" -conventional-changelog-atom@^2.0.8: - version "2.0.8" - resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz#a759ec61c22d1c1196925fca88fe3ae89fd7d8de" - integrity sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw== - dependencies: - q "^1.5.1" +conventional-changelog-atom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-3.0.0.tgz#32de463a29db773de15382c96acda47930d3d24d" + integrity sha512-pnN5bWpH+iTUWU3FaYdw5lJmfWeqSyrUkG+wyHBI9tC1dLNnHkbAOg1SzTQ7zBqiFrfo55h40VsGXWMdopwc5g== -conventional-changelog-codemirror@^2.0.8: - version "2.0.8" - resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz#398e9530f08ce34ec4640af98eeaf3022eb1f7dc" - integrity sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw== - dependencies: - q "^1.5.1" +conventional-changelog-codemirror@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-3.0.0.tgz#6d5a4c67713346a9ebbcfb6336b3269ce8ddceeb" + integrity sha512-wzchZt9HEaAZrenZAUUHMCFcuYzGoZ1wG/kTRMICxsnW5AXohYMRxnyecP9ob42Gvn5TilhC0q66AtTPRSNMfw== conventional-changelog-config-spec@2.1.0, conventional-changelog-config-spec@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz#874a635287ef8b581fd8558532bf655d4fb59f2d" integrity sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ== -conventional-changelog-conventionalcommits@4.6.3, conventional-changelog-conventionalcommits@^4.5.0: - version "4.6.3" - resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz#0765490f56424b46f6cb4db9135902d6e5a36dc2" - integrity sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g== +conventional-changelog-conventionalcommits@6.1.0, conventional-changelog-conventionalcommits@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-6.1.0.tgz#3bad05f4eea64e423d3d90fc50c17d2c8cf17652" + integrity sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw== dependencies: compare-func "^2.0.0" - lodash "^4.17.15" - q "^1.5.1" -conventional-changelog-core@^4.2.1: - version "4.2.4" - resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz#e50d047e8ebacf63fac3dc67bf918177001e1e9f" - integrity sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg== +conventional-changelog-core@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-5.0.2.tgz#78dbe6c346162be4132b7890668d3e860cad2d08" + integrity sha512-RhQOcDweXNWvlRwUDCpaqXzbZemKPKncCWZG50Alth72WITVd6nhVk9MJ6w1k9PFNBcZ3YwkdkChE+8+ZwtUug== dependencies: add-stream "^1.0.0" - conventional-changelog-writer "^5.0.0" - conventional-commits-parser "^3.2.0" - dateformat "^3.0.0" - get-pkg-repo "^4.0.0" - git-raw-commits "^2.0.8" + conventional-changelog-writer "^6.0.0" + conventional-commits-parser "^4.0.0" + dateformat "^3.0.3" + get-pkg-repo "^4.2.1" + git-raw-commits "^3.0.0" git-remote-origin-url "^2.0.0" - git-semver-tags "^4.1.1" - lodash "^4.17.15" - normalize-package-data "^3.0.0" - q "^1.5.1" + git-semver-tags "^5.0.0" + normalize-package-data "^3.0.3" read-pkg "^3.0.0" read-pkg-up "^3.0.0" - through2 "^4.0.0" -conventional-changelog-ember@^2.0.9: - version "2.0.9" - resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz#619b37ec708be9e74a220f4dcf79212ae1c92962" - integrity sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A== - dependencies: - q "^1.5.1" +conventional-changelog-ember@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-3.0.0.tgz#8a02adc12f87285195dda43b573b7c0d1a1b266c" + integrity sha512-7PYthCoSxIS98vWhVcSphMYM322OxptpKAuHYdVspryI0ooLDehRXWeRWgN+zWSBXKl/pwdgAg8IpLNSM1/61A== -conventional-changelog-eslint@^3.0.9: - version "3.0.9" - resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz#689bd0a470e02f7baafe21a495880deea18b7cdb" - integrity sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA== - dependencies: - q "^1.5.1" +conventional-changelog-eslint@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-4.0.0.tgz#cdcaee9bc14ffc97540ecef6771c472e54f3d75e" + integrity sha512-nEZ9byP89hIU0dMx37JXQkE1IpMmqKtsaR24X7aM3L6Yy/uAtbb+ogqthuNYJkeO1HyvK7JsX84z8649hvp43Q== -conventional-changelog-express@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz#420c9d92a347b72a91544750bffa9387665a6ee8" - integrity sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ== - dependencies: - q "^1.5.1" +conventional-changelog-express@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-3.0.0.tgz#25bee76f7d11df45b42bd5580228b1f94c77a64f" + integrity sha512-HqxihpUMfIuxvlPvC6HltA4ZktQEUan/v3XQ77+/zbu8No/fqK3rxSZaYeHYant7zRxQNIIli7S+qLS9tX9zQA== -conventional-changelog-jquery@^3.0.11: - version "3.0.11" - resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz#d142207400f51c9e5bb588596598e24bba8994bf" - integrity sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw== - dependencies: - q "^1.5.1" +conventional-changelog-jquery@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-4.0.0.tgz#bbfea102b8ea66a781e245d43ead0608842ae326" + integrity sha512-TTIN5CyzRMf8PUwyy4IOLmLV2DFmPtasKN+x7EQKzwSX8086XYwo+NeaeA3VUT8bvKaIy5z/JoWUvi7huUOgaw== -conventional-changelog-jshint@^2.0.9: - version "2.0.9" - resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz#f2d7f23e6acd4927a238555d92c09b50fe3852ff" - integrity sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA== +conventional-changelog-jshint@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-3.0.0.tgz#a1743e77ffdee03b704af6faa199520d3a90a868" + integrity sha512-bQof4byF4q+n+dwFRkJ/jGf9dCNUv4/kCDcjeCizBvfF81TeimPZBB6fT4HYbXgxxfxWXNl/i+J6T0nI4by6DA== dependencies: compare-func "^2.0.0" - q "^1.5.1" -conventional-changelog-preset-loader@^2.3.4: - version "2.3.4" - resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c" - integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== +conventional-changelog-preset-loader@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-3.0.0.tgz#14975ef759d22515d6eabae6396c2ae721d4c105" + integrity sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA== -conventional-changelog-writer@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz#e0757072f045fe03d91da6343c843029e702f359" - integrity sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ== +conventional-changelog-writer@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-6.0.1.tgz#d8d3bb5e1f6230caed969dcc762b1c368a8f7b01" + integrity sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ== dependencies: - conventional-commits-filter "^2.0.7" - dateformat "^3.0.0" + conventional-commits-filter "^3.0.0" + dateformat "^3.0.3" handlebars "^4.7.7" json-stringify-safe "^5.0.1" - lodash "^4.17.15" - meow "^8.0.0" - semver "^6.0.0" - split "^1.0.0" - through2 "^4.0.0" - -conventional-changelog@3.1.25: - version "3.1.25" - resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-3.1.25.tgz#3e227a37d15684f5aa1fb52222a6e9e2536ccaff" - integrity sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ== - dependencies: - conventional-changelog-angular "^5.0.12" - conventional-changelog-atom "^2.0.8" - conventional-changelog-codemirror "^2.0.8" - conventional-changelog-conventionalcommits "^4.5.0" - conventional-changelog-core "^4.2.1" - conventional-changelog-ember "^2.0.9" - conventional-changelog-eslint "^3.0.9" - conventional-changelog-express "^2.0.6" - conventional-changelog-jquery "^3.0.11" - conventional-changelog-jshint "^2.0.9" - conventional-changelog-preset-loader "^2.3.4" - -conventional-commits-filter@^2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3" - integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA== + meow "^8.1.2" + semver "^7.0.0" + split "^1.0.1" + +conventional-changelog@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-4.0.0.tgz#51a8d7765e5837bb29b3ef1cf395d6ef594827a9" + integrity sha512-JbZjwE1PzxQCvm+HUTIr+pbSekS8qdOZzMakdFyPtdkEWwFvwEJYONzjgMm0txCb2yBcIcfKDmg8xtCKTdecNQ== + dependencies: + conventional-changelog-angular "^6.0.0" + conventional-changelog-atom "^3.0.0" + conventional-changelog-codemirror "^3.0.0" + conventional-changelog-conventionalcommits "^6.0.0" + conventional-changelog-core "^5.0.0" + conventional-changelog-ember "^3.0.0" + conventional-changelog-eslint "^4.0.0" + conventional-changelog-express "^3.0.0" + conventional-changelog-jquery "^4.0.0" + conventional-changelog-jshint "^3.0.0" + conventional-changelog-preset-loader "^3.0.0" + +conventional-commits-filter@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz#bf1113266151dd64c49cd269e3eb7d71d7015ee2" + integrity sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q== dependencies: lodash.ismatch "^4.4.0" - modify-values "^1.0.0" + modify-values "^1.0.1" -conventional-commits-parser@^3.2.0: - version "3.2.4" - resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz#a7d3b77758a202a9b2293d2112a8d8052c740972" - integrity sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q== +conventional-commits-parser@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz#02ae1178a381304839bce7cea9da5f1b549ae505" + integrity sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg== dependencies: - JSONStream "^1.0.4" + JSONStream "^1.3.5" is-text-path "^1.0.1" - lodash "^4.17.15" - meow "^8.0.0" - split2 "^3.0.0" - through2 "^4.0.0" + meow "^8.1.2" + split2 "^3.2.2" -conventional-recommended-bump@6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz#cfa623285d1de554012f2ffde70d9c8a22231f55" - integrity sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw== +conventional-recommended-bump@7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-7.0.1.tgz#ec01f6c7f5d0e2491c2d89488b0d757393392424" + integrity sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA== dependencies: concat-stream "^2.0.0" - conventional-changelog-preset-loader "^2.3.4" - conventional-commits-filter "^2.0.7" - conventional-commits-parser "^3.2.0" - git-raw-commits "^2.0.8" - git-semver-tags "^4.1.1" - meow "^8.0.0" - q "^1.5.1" + conventional-changelog-preset-loader "^3.0.0" + conventional-commits-filter "^3.0.0" + conventional-commits-parser "^4.0.0" + git-raw-commits "^3.0.0" + git-semver-tags "^5.0.0" + meow "^8.1.2" convert-source-map@^1.4.0, convert-source-map@^1.6.0: version "1.9.0" @@ -1800,6 +1798,13 @@ cssstyle@^2.3.0: dependencies: cssom "~0.3.6" +cssstyle@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-4.1.0.tgz#161faee382af1bafadb6d3867a92a19bcb4aea70" + integrity sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA== + dependencies: + rrweb-cssom "^0.7.1" + dargs@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" @@ -1819,6 +1824,14 @@ data-urls@^2.0.0: whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" +data-urls@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-5.0.0.tgz#2f76906bce1824429ffecb6920f45a0b30f00dde" + integrity sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg== + dependencies: + whatwg-mimetype "^4.0.0" + whatwg-url "^14.0.0" + data-view-buffer@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" @@ -1851,7 +1864,7 @@ date-format@^4.0.14: resolved "https://registry.yarnpkg.com/date-format/-/date-format-4.0.14.tgz#7a8e584434fb169a521c8b7aa481f355810d9400" integrity sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg== -dateformat@^3.0.0: +dateformat@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== @@ -1888,7 +1901,7 @@ decamelize@^5.0.1: resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-5.0.1.tgz#db11a92e58c741ef339fb0a2868d8a06a9a7b1e9" integrity sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA== -decimal.js@^10.2.1: +decimal.js@^10.2.1, decimal.js@^10.4.3: version "10.4.3" resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== @@ -2045,6 +2058,11 @@ emoji-regex@^8.0.0: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== +entities@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + entities@~3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/entities/-/entities-3.0.1.tgz#2b887ca62585e96db3903482d336c1006c3001d4" @@ -2495,6 +2513,15 @@ form-data@^3.0.0: combined-stream "^1.0.8" mime-types "^2.1.12" +form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + fs-extra@^10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" @@ -2588,7 +2615,7 @@ get-package-type@^0.1.0: resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== -get-pkg-repo@^4.0.0: +get-pkg-repo@^4.2.1: version "4.2.1" resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz#75973e1c8050c73f48190c52047c4cee3acbf385" integrity sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA== @@ -2622,16 +2649,14 @@ get-uri@^6.0.1: debug "^4.3.4" fs-extra "^11.2.0" -git-raw-commits@^2.0.8: - version "2.0.11" - resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz#bc3576638071d18655e1cc60d7f524920008d723" - integrity sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A== +git-raw-commits@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-3.0.0.tgz#5432f053a9744f67e8db03dbc48add81252cfdeb" + integrity sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw== dependencies: dargs "^7.0.0" - lodash "^4.17.15" - meow "^8.0.0" - split2 "^3.0.0" - through2 "^4.0.0" + meow "^8.1.2" + split2 "^3.2.2" git-remote-origin-url@^2.0.0: version "2.0.0" @@ -2641,13 +2666,13 @@ git-remote-origin-url@^2.0.0: gitconfiglocal "^1.0.0" pify "^2.3.0" -git-semver-tags@^4.0.0, git-semver-tags@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-4.1.1.tgz#63191bcd809b0ec3e151ba4751c16c444e5b5780" - integrity sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA== +git-semver-tags@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-5.0.1.tgz#db748aa0e43d313bf38dcd68624d8443234e1c15" + integrity sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA== dependencies: - meow "^8.0.0" - semver "^6.0.0" + meow "^8.1.2" + semver "^7.0.0" gitconfiglocal@^1.0.0: version "1.0.0" @@ -2829,6 +2854,13 @@ html-encoding-sniffer@^2.0.1: dependencies: whatwg-encoding "^1.0.5" +html-encoding-sniffer@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz#696df529a7cfd82446369dc5193e590a3735b448" + integrity sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ== + dependencies: + whatwg-encoding "^3.1.1" + html-escaper@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" @@ -2843,7 +2875,7 @@ http-proxy-agent@^4.0.1: agent-base "6" debug "4" -http-proxy-agent@^7.0.0, http-proxy-agent@^7.0.1: +http-proxy-agent@^7.0.0, http-proxy-agent@^7.0.1, http-proxy-agent@^7.0.2: version "7.0.2" resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== @@ -2879,6 +2911,13 @@ iconv-lite@0.4.24: dependencies: safer-buffer ">= 2.1.2 < 3" +iconv-lite@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + ieee754@1.1.13: version "1.1.13" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" @@ -3688,6 +3727,33 @@ jsdom@^16.6.0: ws "^7.4.6" xml-name-validator "^3.0.0" +jsdom@^25.0.0: + version "25.0.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-25.0.0.tgz#d1612b4ddab85af56821b2f731e15faae135f4e1" + integrity sha512-OhoFVT59T7aEq75TVw9xxEfkXgacpqAhQaYgP9y/fDqWQCMB/b1H66RfmPm/MaeaAIU9nDwMOVTlPN51+ao6CQ== + dependencies: + cssstyle "^4.0.1" + data-urls "^5.0.0" + decimal.js "^10.4.3" + form-data "^4.0.0" + html-encoding-sniffer "^4.0.0" + http-proxy-agent "^7.0.2" + https-proxy-agent "^7.0.5" + is-potential-custom-element-name "^1.0.1" + nwsapi "^2.2.12" + parse5 "^7.1.2" + rrweb-cssom "^0.7.1" + saxes "^6.0.0" + symbol-tree "^3.2.4" + tough-cookie "^4.1.4" + w3c-xmlserializer "^5.0.0" + webidl-conversions "^7.0.0" + whatwg-encoding "^3.1.1" + whatwg-mimetype "^4.0.0" + whatwg-url "^14.0.0" + ws "^8.18.0" + xml-name-validator "^5.0.0" + jsesc@^2.5.1: version "2.5.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" @@ -3974,7 +4040,7 @@ lodash.truncate@^4.4.2: resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== -lodash@^4.17.15, lodash@^4.7.0: +lodash@^4.7.0: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -4050,7 +4116,7 @@ mdurl@~1.0.1: resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== -meow@^8.0.0: +meow@^8.1.2: version "8.1.2" resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== @@ -4152,7 +4218,7 @@ mkdirp@^1.0.4: resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -modify-values@^1.0.0: +modify-values@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== @@ -4215,7 +4281,7 @@ normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" -normalize-package-data@^3.0.0: +normalize-package-data@^3.0.0, normalize-package-data@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== @@ -4237,7 +4303,7 @@ npm-run-path@^4.0.1: dependencies: path-key "^3.0.0" -nwsapi@^2.2.0: +nwsapi@^2.2.0, nwsapi@^2.2.12: version "2.2.12" resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.12.tgz#fb6af5c0ec35b27b4581eb3bbad34ec9e5c696f8" integrity sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w== @@ -4432,6 +4498,13 @@ parse5@6.0.1: resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== +parse5@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32" + integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== + dependencies: + entities "^4.4.0" + path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" @@ -4525,10 +4598,10 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -projen@^0.85.2: - version "0.85.2" - resolved "https://registry.yarnpkg.com/projen/-/projen-0.85.2.tgz#5e5ac64d4c37b089d3d17adc22e0ec418e2e0a31" - integrity sha512-YTEC/MjrnPR+regYBl3CR41+eL7s43DjBKfxZxndTY59m1WjXpTJVzv846nU59dKHqmXf4MyITHC67gs4hgWdg== +projen@^0.87.2: + version "0.87.2" + resolved "https://registry.yarnpkg.com/projen/-/projen-0.87.2.tgz#0e91c139233fc8d36101e193ddcce75a21930226" + integrity sha512-O9qglXmlfuWd58xl1iTRvwIRzb5kNU/DS1kTYYIdQQlwcmlMG6+q0HbdhkkSnkwdqorqflQK1VpVeKF1vC//zg== dependencies: "@iarna/toml" "^2.2.5" case "^1.6.3" @@ -4587,11 +4660,6 @@ punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.1: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== -q@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" - integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== - querystring@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" @@ -4653,7 +4721,7 @@ read-pkg@^5.2.0: parse-json "^5.0.0" type-fest "^0.6.0" -readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2: +readable-stream@^3.0.0, readable-stream@^3.0.2: version "3.6.2" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== @@ -4768,6 +4836,11 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" +rrweb-cssom@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/rrweb-cssom/-/rrweb-cssom-0.7.1.tgz#c73451a484b86dd7cfb1e0b2898df4b703183e4b" + integrity sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg== + run-parallel@^1.1.9: version "1.2.0" resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" @@ -4804,7 +4877,7 @@ safe-regex-test@^1.0.3: es-errors "^1.3.0" is-regex "^1.1.4" -"safer-buffer@>= 2.1.2 < 3": +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -4826,6 +4899,13 @@ saxes@^5.0.1: dependencies: xmlchars "^2.2.0" +saxes@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/saxes/-/saxes-6.0.0.tgz#fe5b4a4768df4f14a201b1ba6a65c1f3d9988cc5" + integrity sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== + dependencies: + xmlchars "^2.2.0" + semver-intersect@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/semver-intersect/-/semver-intersect-1.5.0.tgz#bb3aa0ea504935410d34cf15f49818d56906bd48" @@ -4838,12 +4918,12 @@ semver-intersect@^1.5.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@7.x, semver@^7.1.1, semver@^7.3.2, semver@^7.3.4, semver@^7.5.3, semver@^7.5.4, semver@^7.6.2, semver@^7.6.3: +semver@7.x, semver@^7.0.0, semver@^7.3.2, semver@^7.3.4, semver@^7.5.3, semver@^7.5.4, semver@^7.6.2, semver@^7.6.3: version "7.6.3" resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== -semver@^6.0.0, semver@^6.3.0, semver@^6.3.1: +semver@^6.3.0, semver@^6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== @@ -5021,14 +5101,14 @@ spdx-license-list@^6.9.0: resolved "https://registry.yarnpkg.com/spdx-license-list/-/spdx-license-list-6.9.0.tgz#5543abb3a15f985a12808f642a622d2721c372ad" integrity sha512-L2jl5vc2j6jxWcNCvcVj/BW9A8yGIG02Dw+IUw0ZxDM70f7Ylf5Hq39appV1BI9yxyWQRpq2TQ1qaXvf+yjkqA== -split2@^3.0.0: +split2@^3.2.2: version "3.2.2" resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== dependencies: readable-stream "^3.0.0" -split@^1.0.0: +split@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== @@ -5052,26 +5132,6 @@ stack-utils@^2.0.3: dependencies: escape-string-regexp "^2.0.0" -standard-version@^9: - version "9.5.0" - resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-9.5.0.tgz#851d6dcddf5320d5079601832aeb185dbf497949" - integrity sha512-3zWJ/mmZQsOaO+fOlsa0+QK90pwhNd042qEcw6hKFNoLFs7peGyvPffpEBbK/DSGPbyOvli0mUIFv5A4qTjh2Q== - dependencies: - chalk "^2.4.2" - conventional-changelog "3.1.25" - conventional-changelog-config-spec "2.1.0" - conventional-changelog-conventionalcommits "4.6.3" - conventional-recommended-bump "6.1.0" - detect-indent "^6.0.0" - detect-newline "^3.1.0" - dotgitignore "^2.1.0" - figures "^3.1.0" - find-up "^5.0.0" - git-semver-tags "^4.0.0" - semver "^7.1.1" - stringify-package "^1.0.1" - yargs "^16.0.0" - stream-chain@^2.2.5: version "2.2.5" resolved "https://registry.yarnpkg.com/stream-chain/-/stream-chain-2.2.5.tgz#b30967e8f14ee033c5b9a19bbe8a2cba90ba0d09" @@ -5152,11 +5212,6 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -stringify-package@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/stringify-package/-/stringify-package-1.0.1.tgz#e5aa3643e7f74d0f28628b72f3dad5cecfc3ba85" - integrity sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg== - strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -5281,13 +5336,6 @@ through2@^2.0.0: readable-stream "~2.3.6" xtend "~4.0.1" -through2@^4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" - integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== - dependencies: - readable-stream "3" - through@2, "through@>=2.2.7 <3": version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" @@ -5310,7 +5358,7 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -tough-cookie@^4.0.0: +tough-cookie@^4.0.0, tough-cookie@^4.1.4: version "4.1.4" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.4.tgz#945f1461b45b5a8c76821c33ea49c3ac192c1b36" integrity sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag== @@ -5327,6 +5375,13 @@ tr46@^2.1.0: dependencies: punycode "^2.1.1" +tr46@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-5.0.0.tgz#3b46d583613ec7283020d79019f1335723801cec" + integrity sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g== + dependencies: + punycode "^2.3.1" + trim-newlines@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" @@ -5626,6 +5681,13 @@ w3c-xmlserializer@^2.0.0: dependencies: xml-name-validator "^3.0.0" +w3c-xmlserializer@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz#f925ba26855158594d907313cedd1476c5967f6c" + integrity sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA== + dependencies: + xml-name-validator "^5.0.0" + walker@^1.0.7: version "1.0.8" resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" @@ -5643,6 +5705,11 @@ webidl-conversions@^6.1.0: resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== +webidl-conversions@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" + integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== + whatwg-encoding@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" @@ -5650,11 +5717,31 @@ whatwg-encoding@^1.0.5: dependencies: iconv-lite "0.4.24" +whatwg-encoding@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz#d0f4ef769905d426e1688f3e34381a99b60b76e5" + integrity sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ== + dependencies: + iconv-lite "0.6.3" + whatwg-mimetype@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== +whatwg-mimetype@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz#bc1bf94a985dc50388d54a9258ac405c3ca2fc0a" + integrity sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg== + +whatwg-url@^14.0.0: + version "14.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-14.0.0.tgz#00baaa7fd198744910c4b1ef68378f2200e4ceb6" + integrity sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw== + dependencies: + tr46 "^5.0.0" + webidl-conversions "^7.0.0" + whatwg-url@^8.0.0, whatwg-url@^8.5.0: version "8.7.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" @@ -5737,11 +5824,21 @@ ws@^7.4.6: resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.10.tgz#58b5c20dc281633f6c19113f39b349bd8bd558d9" integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== +ws@^8.18.0: + version "8.18.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" + integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== + xml-name-validator@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== +xml-name-validator@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-5.0.0.tgz#82be9b957f7afdacf961e5980f1bf227c0bf7673" + integrity sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg== + xml2js@0.6.2: version "0.6.2" resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.6.2.tgz#dd0b630083aa09c161e25a4d0901e2b2a929b499" @@ -5810,6 +5907,11 @@ yaml@^2.2.2, yaml@^2.5.0: resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.0.tgz#c6165a721cf8000e91c36490a41d7be25176cf5d" integrity sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw== +yaml@^2.4.1: + version "2.5.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.1.tgz#c9772aacf62cb7494a95b0c4f1fb065b563db130" + integrity sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q== + yargs-parser@20.x, yargs-parser@^20.2.2, yargs-parser@^20.2.3: version "20.2.9" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" @@ -5820,7 +5922,7 @@ yargs-parser@^21.1.1: resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== -yargs@^16.0.0, yargs@^16.2.0: +yargs@^16.2.0: version "16.2.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==