From 49c48ca4127493b2ab6ab4411281bf6591497cb8 Mon Sep 17 00:00:00 2001 From: James Pogran Date: Tue, 9 Jul 2024 10:43:52 -0400 Subject: [PATCH] Release 2.32.2024070910 --- .changes/header.tpl.md | 2 ++ .../ENHANCEMENTS-20240708-210917.yaml | 6 ------ .changes/v2.32.2024070910.md | 6 ++++++ .changie.yaml | 1 + CHANGELOG.md | 20 +++++++++++++------ package-lock.json | 4 ++-- package.json | 2 +- 7 files changed, 26 insertions(+), 15 deletions(-) create mode 100644 .changes/header.tpl.md delete mode 100644 .changes/unreleased/ENHANCEMENTS-20240708-210917.yaml create mode 100644 .changes/v2.32.2024070910.md diff --git a/.changes/header.tpl.md b/.changes/header.tpl.md new file mode 100644 index 000000000..4dc68c6ff --- /dev/null +++ b/.changes/header.tpl.md @@ -0,0 +1,2 @@ +# Changelog + diff --git a/.changes/unreleased/ENHANCEMENTS-20240708-210917.yaml b/.changes/unreleased/ENHANCEMENTS-20240708-210917.yaml deleted file mode 100644 index 1ed7586d4..000000000 --- a/.changes/unreleased/ENHANCEMENTS-20240708-210917.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: ENHANCEMENTS -body: 'Add initial support for Terraform Stacks files and Deployment files. This provides block and attribute completion, hover, and diagnostics along with syntax validation for Terraform Stacks and Deployment files' -time: 2024-07-08T21:09:17.552571-04:00 -custom: - Issue: "1745" - Repository: terraform-ls diff --git a/.changes/v2.32.2024070910.md b/.changes/v2.32.2024070910.md new file mode 100644 index 000000000..7d01828a6 --- /dev/null +++ b/.changes/v2.32.2024070910.md @@ -0,0 +1,6 @@ +## 2.32.2024070910 (2024-07-09) + +ENHANCEMENTS: + +* Add initial support for Terraform Stacks files and Deployment files. This provides block and attribute completion, hover, and diagnostics along with syntax validation for Terraform Stacks and Deployment files ([terraform-ls#1745](https://github.com/hashicorp/terraform-ls/issues/1745)) + diff --git a/.changie.yaml b/.changie.yaml index 31d42121d..2b8e4dad1 100644 --- a/.changie.yaml +++ b/.changie.yaml @@ -3,6 +3,7 @@ changesDir: .changes unreleasedDir: unreleased +headerPath: header.tpl.md changelogPath: CHANGELOG.md versionExt: md versionFormat: '## {{.VersionNoPrefix}} ({{.Time.Format "2006-01-02"}})' diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e87b9cc8..3e3b07d45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,10 @@ -## 2.31.0 (2024-06-27) +# Changelog + +## 2.32.2024070910 (2024-07-09) ENHANCEMENTS: -* Allow custom HCP Terraform or Terraform Enterprise instance selection ([#1678](https://github.com/hashicorp/vscode-terraform/issues/1678)) -* Declare support for Terraform Stack files ([#1773](https://github.com/hashicorp/vscode-terraform/issues/1773)) -* Adds file icons for the Stacks language which will apply to all tfstack.hcl and tfdeploy.hcl files ([#1774](https://github.com/hashicorp/vscode-terraform/issues/1774)) -* Add support for the new `templatestring` functions in Terraform 1.9 ([terraform-ls#357](https://github.com/hashicorp/terraform-ls/issues/357)) -* Introduce provisioners to `removed` blocks in Terraform 1.9 ([terraform-schema#358](https://github.com/hashicorp/terraform-schema/issues/358)) +* Add initial support for Terraform Stacks files and Deployment files. This provides block and attribute completion, hover, and diagnostics along with syntax validation for Terraform Stacks and Deployment files ([terraform-ls#1745](https://github.com/hashicorp/terraform-ls/issues/1745)) ## 2.31.2024061114 (2024-06-11) @@ -18,6 +16,16 @@ This marks the completion of a major refactoring effort. The language server wil We have tested this with workspaces and configurations of different sizes, but still expect some bugs. Please give this preview a try and let us know how it works for you. +## 2.31.0 (2024-06-27) + +ENHANCEMENTS: + +* Allow custom HCP Terraform or Terraform Enterprise instance selection ([#1678](https://github.com/hashicorp/vscode-terraform/issues/1678)) +* Declare support for Terraform Stack files ([#1773](https://github.com/hashicorp/vscode-terraform/issues/1773)) +* Adds file icons for the Stacks language which will apply to all tfstack.hcl and tfdeploy.hcl files ([#1774](https://github.com/hashicorp/vscode-terraform/issues/1774)) +* Add support for the new `templatestring` functions in Terraform 1.9 ([terraform-ls#357](https://github.com/hashicorp/terraform-ls/issues/357)) +* Introduce provisioners to `removed` blocks in Terraform 1.9 ([terraform-schema#358](https://github.com/hashicorp/terraform-schema/issues/358)) + ## 2.30.2 (2024-06-06) BUG FIXES: diff --git a/package-lock.json b/package-lock.json index 0f9b6c6d8..3786cc2a9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "terraform", - "version": "2.31.2024061114", + "version": "2.32.2024070910", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "terraform", - "version": "2.31.2024061114", + "version": "2.32.2024070910", "license": "MPL-2.0", "dependencies": { "@vscode/extension-telemetry": "^0.4.9", diff --git a/package.json b/package.json index 1441f9ae1..6cca1c7cf 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "name": "terraform", "displayName": "HashiCorp Terraform", "description": "Syntax highlighting and autocompletion for Terraform", - "version": "2.31.2024061114", + "version": "2.32.2024070910", "publisher": "hashicorp", "appInsightsKey": "885372d2-6f3c-499f-9d25-b8b219983a52", "license": "MPL-2.0",