From dca61cb07c3018ffb1d06adac76a249afd4ced3e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jul 2024 19:24:16 +0000 Subject: [PATCH 1/2] chore(deps): update dependency @playwright/browser-chromium to v1.45.2 --- package-lock.json | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index c913bdf..6854dd5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1535,16 +1535,30 @@ } }, "node_modules/@playwright/browser-chromium": { - "version": "1.43.1", - "resolved": "https://registry.npmjs.org/@playwright/browser-chromium/-/browser-chromium-1.43.1.tgz", - "integrity": "sha512-CBuHhRIF/VGyUnPvK7/4IUbm0AAOZZI5huHlr+qNr5cFQpQ6TXBqOwSMef/xUz9HcjxWOxDPION7br1kOlyV/A==", + "version": "1.45.2", + "resolved": "https://registry.npmjs.org/@playwright/browser-chromium/-/browser-chromium-1.45.2.tgz", + "integrity": "sha512-oYWP32mCpEtPCE26uY+e82oF/oHa8y6Hx9EPN7ljrHyo6hb+/NDXp6OoJEZ/bwnGHEMKxfeD4yre0iXxBOLTxA==", "dev": true, "hasInstallScript": true, + "license": "Apache-2.0", "dependencies": { - "playwright-core": "1.43.1" + "playwright-core": "1.45.2" }, "engines": { - "node": ">=16" + "node": ">=18" + } + }, + "node_modules/@playwright/browser-chromium/node_modules/playwright-core": { + "version": "1.45.2", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.45.2.tgz", + "integrity": "sha512-ha175tAWb0dTK0X4orvBIqi3jGEt701SMxMhyujxNrgd8K0Uy5wMSwwcQHtyB4om7INUkfndx02XnQ2p6dvLDw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "playwright-core": "cli.js" + }, + "engines": { + "node": ">=18" } }, "node_modules/@promptbook/utils": { From c7e1202be17d39fed02279a8c23b9fedc1e6d305 Mon Sep 17 00:00:00 2001 From: "hashicorp-copywrite[bot]" <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Date: Thu, 18 Jul 2024 19:25:56 +0000 Subject: [PATCH 2/2] [COMPLIANCE] Add required copyright headers Signed-off-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> --- test/fixtures/actions.tf | 3 +++ test/fixtures/ai/main.tf | 3 +++ test/fixtures/ai/variables.tf | 3 +++ test/fixtures/compute/main.tf | 3 +++ test/fixtures/compute/outputs.tf | 3 +++ test/fixtures/compute/variables.tf | 3 +++ test/fixtures/empty.tf | 3 +++ test/fixtures/main.tf | 3 +++ test/fixtures/sample.tf | 3 +++ test/fixtures/terraform.tfvars | 3 +++ test/fixtures/variables.tf | 3 +++ 11 files changed, 33 insertions(+) diff --git a/test/fixtures/actions.tf b/test/fixtures/actions.tf index 9d76340..9b3c2e2 100644 --- a/test/fixtures/actions.tf +++ b/test/fixtures/actions.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + terraform { # code that needs to be formatted } diff --git a/test/fixtures/ai/main.tf b/test/fixtures/ai/main.tf index e69de29..48753c8 100644 --- a/test/fixtures/ai/main.tf +++ b/test/fixtures/ai/main.tf @@ -0,0 +1,3 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + diff --git a/test/fixtures/ai/variables.tf b/test/fixtures/ai/variables.tf index bd15470..39c0175 100644 --- a/test/fixtures/ai/variables.tf +++ b/test/fixtures/ai/variables.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + variable "agi" { default = false } diff --git a/test/fixtures/compute/main.tf b/test/fixtures/compute/main.tf index 01e27c4..d9d0d1a 100644 --- a/test/fixtures/compute/main.tf +++ b/test/fixtures/compute/main.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + resource "google_compute_network" "vpc_network" { name = "terraform-network" diff --git a/test/fixtures/compute/outputs.tf b/test/fixtures/compute/outputs.tf index 1b9c988..a4a0ff9 100644 --- a/test/fixtures/compute/outputs.tf +++ b/test/fixtures/compute/outputs.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + output "ip" { value = google_compute_instance.vm_instance.network_interface[0].network_ip } \ No newline at end of file diff --git a/test/fixtures/compute/variables.tf b/test/fixtures/compute/variables.tf index 3bb0713..27059bc 100644 --- a/test/fixtures/compute/variables.tf +++ b/test/fixtures/compute/variables.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + variable "instance_name" { type = string description = "Name of the compute instance" diff --git a/test/fixtures/empty.tf b/test/fixtures/empty.tf index e69de29..48753c8 100644 --- a/test/fixtures/empty.tf +++ b/test/fixtures/empty.tf @@ -0,0 +1,3 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + diff --git a/test/fixtures/main.tf b/test/fixtures/main.tf index 2ac3866..1dac69f 100644 --- a/test/fixtures/main.tf +++ b/test/fixtures/main.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + terraform { required_providers { google = { diff --git a/test/fixtures/sample.tf b/test/fixtures/sample.tf index 7252cf3..17e8932 100644 --- a/test/fixtures/sample.tf +++ b/test/fixtures/sample.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + provider "vault" { } diff --git a/test/fixtures/terraform.tfvars b/test/fixtures/terraform.tfvars index add029e..1b95a04 100644 --- a/test/fixtures/terraform.tfvars +++ b/test/fixtures/terraform.tfvars @@ -1 +1,4 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + zone = "us-central1-c" diff --git a/test/fixtures/variables.tf b/test/fixtures/variables.tf index 4d97f1b..22b7557 100644 --- a/test/fixtures/variables.tf +++ b/test/fixtures/variables.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + variable "project" { type = string }