Skip to content

Commit

Permalink
Update changelog for 0.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dbanck committed Jul 15, 2024
1 parent c0f8b53 commit 95b28aa
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 12 deletions.
6 changes: 0 additions & 6 deletions .changes/unreleased/ENHANCEMENTS-20240712-120348.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/INTERNAL-20240710-172718.yaml

This file was deleted.

File renamed without changes.
16 changes: 16 additions & 0 deletions .changes/v0.34.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
## 0.34.0 (15 July 2024)

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 ([#1745](https://github.com/hashicorp/terraform-ls/issues/1745))
* Add documentation for using vim with YouCompleteMe ([#1718](https://github.com/hashicorp/terraform-ls/issues/1718))
* Enable completion for all locally installed remote modules ([#1760](https://github.com/hashicorp/terraform-ls/issues/1760))
* Re-architect the language server for improved performance and resource utilization ([#1667](https://github.com/hashicorp/terraform-ls/issues/1667))

This marks the completion of a major refactoring effort. The language server will now start up much faster and use less resources, especially on larger workspaces. We achieve this by doing less work during the initial walk of a workspace. Instead, we only parse modules with open files. Whenever a file of a module is opened, we schedule all the jobs needed to understand the contents of that directory (and the referenced modules).

INTERNAL:

* Introduce a workflow that checks for changelog entries ([#1759](https://github.com/hashicorp/terraform-ls/issues/1759))
* Split internal modules state into separate features ([#1667](https://github.com/hashicorp/terraform-ls/issues/1667))

16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.34.0 (15 July 2024)

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 ([#1745](https://github.com/hashicorp/terraform-ls/issues/1745))
* Add documentation for using vim with YouCompleteMe ([#1718](https://github.com/hashicorp/terraform-ls/issues/1718))
* Enable completion for all locally installed remote modules ([#1760](https://github.com/hashicorp/terraform-ls/issues/1760))
* Re-architect the language server for improved performance and resource utilization ([#1667](https://github.com/hashicorp/terraform-ls/issues/1667))

This marks the completion of a major refactoring effort. The language server will now start up much faster and use less resources, especially on larger workspaces. We achieve this by doing less work during the initial walk of a workspace. Instead, we only parse modules with open files. Whenever a file of a module is opened, we schedule all the jobs needed to understand the contents of that directory (and the referenced modules).

INTERNAL:

* Introduce a workflow that checks for changelog entries ([#1759](https://github.com/hashicorp/terraform-ls/issues/1759))
* Split internal modules state into separate features ([#1667](https://github.com/hashicorp/terraform-ls/issues/1667))

## 0.34.0-beta1 (08 July 2024)

ENHANCEMENTS:
Expand Down

0 comments on commit 95b28aa

Please sign in to comment.