diff --git a/.changes/v0.34.0-alpha20240611.md b/.changes/v0.34.0-alpha20240611.md new file mode 100644 index 000000000..a94ffcd85 --- /dev/null +++ b/.changes/v0.34.0-alpha20240611.md @@ -0,0 +1,15 @@ +## 0.34.0-alpha20240611 (11 June 2024) + +ENHANCEMENTS: + +* Add documentation for using vim with YouCompleteMe ([#1718](https://github.com/hashicorp/terraform-ls/issues/1718)) +* 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). + +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. + +INTERNAL: + +* Split internal modules state into separate features ([#1667](https://github.com/hashicorp/terraform-ls/issues/1667)) + diff --git a/CHANGELOG.md b/CHANGELOG.md index f42c60528..fde8f5e98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## 0.34.0-alpha20240611 (11 June 2024) + +ENHANCEMENTS: + +* Add documentation for using vim with YouCompleteMe ([#1718](https://github.com/hashicorp/terraform-ls/issues/1718)) +* 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). + +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. + +INTERNAL: + +* Split internal modules state into separate features ([#1667](https://github.com/hashicorp/terraform-ls/issues/1667)) + ## 0.33.2 (06 June 2024) BUG FIXES: diff --git a/version/VERSION b/version/VERSION index 5b8b229b2..001253c87 100644 --- a/version/VERSION +++ b/version/VERSION @@ -1 +1 @@ -0.34.0-dev +0.34.0-alpha20240611