Skip to content

Commit 8446dee

Browse files
committed
Ensure date ordering for changie entries
This commit consolidates all prerelease entries into their related stable release entry file. This ensures that the changelog entries are ordered by date, with the most recent entries at the top. The individual prerelease files are no longer necessary to keep around, as the information is now consolidated into the stable release entry. The side effect of this is that we will need to do this same operation manually as we release a stable version as this is outside of changie's current capabilities.
1 parent 7748379 commit 8446dee

11 files changed

+182
-176
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: INTERNAL
2+
body: Ensure date ordering for changie entries
3+
time: 2024-10-11T09:55:53.169097-04:00
4+
custom:
5+
Issue: "1860"
6+
Repository: vscode-terraform

.changes/v2.31.0.md

+10
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,13 @@ ENHANCEMENTS:
88
* Add support for the new `templatestring` functions in Terraform 1.9 ([terraform-ls#357](https://github.com/hashicorp/terraform-ls/issues/357))
99
* Introduce provisioners to `removed` blocks in Terraform 1.9 ([terraform-schema#358](https://github.com/hashicorp/terraform-schema/issues/358))
1010

11+
## 2.31.2024061114 (2024-06-11)
12+
13+
ENHANCEMENTS:
14+
15+
* Re-architect the language server for improved performance and resource utilization ([terraform-ls#1667](https://github.com/hashicorp/terraform-ls/issues/1667))
16+
17+
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).
18+
19+
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.
20+

.changes/v2.31.2024061114.md

-10
This file was deleted.

.changes/v2.32.0.md

+6
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,9 @@ INTERNAL:
1212

1313
* Introduce a workflow that checks for changelog entries ([#1796](https://github.com/hashicorp/vscode-terraform/issues/1796))
1414

15+
## 2.32.2024070910 (2024-07-09)
16+
17+
ENHANCEMENTS:
18+
19+
* 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))
20+

.changes/v2.32.2024070910.md

-6
This file was deleted.

.changes/v2.33.0.md

+80
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,83 @@ INTERNAL:
6666
* Bump axios to 1.7.4 ([#1818](https://github.com/hashicorp/vscode-terraform/issues/1818))
6767
* Bump braces to 3.0.3 ([#1819](https://github.com/hashicorp/vscode-terraform/issues/1819))
6868

69+
## 2.33.2024090609 (2024-09-06)
70+
71+
ENHANCEMENTS:
72+
73+
* Bump hashicorp/syntax from 0.5.0 to 0.7.0 ([#1820](https://github.com/hashicorp/vscode-terraform/issues/1820))
74+
* Document Terraform Stacks support ([#1829](https://github.com/hashicorp/vscode-terraform/issues/1829))
75+
* Remove static snippets ([#1830](https://github.com/hashicorp/vscode-terraform/issues/1830))
76+
* Enable language status bar for Stack language ([#1835](https://github.com/hashicorp/vscode-terraform/issues/1835))
77+
* Add icon for .terraform-version file ([#1836](https://github.com/hashicorp/vscode-terraform/issues/1836))
78+
* Support provider defined functions in stacks configuration ([#1804](https://github.com/hashicorp/terraform-ls/issues/1804))
79+
* Support description attribute for orchestration rule block ([terraform-schema#393](https://github.com/hashicorp/terraform-schema/issues/393))
80+
* Support locals in stack and deploy configs ([terraform-schema#395](https://github.com/hashicorp/terraform-schema/issues/395))
81+
* Support depends_on attribute in component blocks ([terraform-schema#392](https://github.com/hashicorp/terraform-schema/issues/392))
82+
* Document Terraform Stacks support ([#1802](https://github.com/hashicorp/terraform-ls/issues/1802))
83+
* Support context references within orchestrate blocks in deployment configuration ([#1813](https://github.com/hashicorp/terraform-ls/issues/1813))
84+
85+
BUG FIXES:
86+
87+
* Fix type for provider references in component blocks ([terraform-schema#391](https://github.com/hashicorp/terraform-schema/issues/391))
88+
* Support sensitive attribute for stacks variables ([terraform-schema#401](https://github.com/hashicorp/terraform-schema/issues/401))
89+
* Allow any type as inputs to components per default ([terraform-schema#400](https://github.com/hashicorp/terraform-schema/issues/400))
90+
91+
INTERNAL:
92+
93+
* Bump axios to 1.7.4 ([#1818](https://github.com/hashicorp/vscode-terraform/issues/1818))
94+
* Bump braces to 3.0.3 ([#1819](https://github.com/hashicorp/vscode-terraform/issues/1819))
95+
96+
## 2.33.2024082314 (2024-08-23)
97+
98+
ENHANCEMENTS:
99+
100+
* Enable component references ([terraform-schema#386](https://github.com/hashicorp/terraform-schema/issues/386))
101+
* Support references for identity tokens and their attributes ([terraform-schema#388](https://github.com/hashicorp/terraform-schema/issues/388))
102+
* Enable references for variables in deployment inputs (Deploy) ([terraform-schema#389](https://github.com/hashicorp/terraform-schema/issues/389))
103+
* Enable component references ([terraform-schema#386](https://github.com/hashicorp/terraform-schema/issues/386))
104+
* Enable ephemeral values for variable ([terraform-schema#387](https://github.com/hashicorp/terraform-schema/issues/387))
105+
* Enable output references ([terraform-schema#384](https://github.com/hashicorp/terraform-schema/issues/384))
106+
* Enable provider references ([terraform-schema#385](https://github.com/hashicorp/terraform-schema/issues/385))
107+
* Add Address to variable block schema for stacks to enable references ([terraform-schema#383](https://github.com/hashicorp/terraform-schema/issues/383))
108+
* Add deployments store block schema ([terraform-schema#382](https://github.com/hashicorp/terraform-schema/issues/382))
109+
* Add input block schema and deprecate variable block ([terraform-schema#381](https://github.com/hashicorp/terraform-schema/issues/381))
110+
* Validate Stack and Deployment files for unreferenced origins ([terraform-ls#1797](https://github.com/hashicorp/terraform-ls/issues/1797))
111+
* Early decode deployment config to support references to store blocks ([terraform-schema#390](https://github.com/hashicorp/terraform-schema/issues/390))
112+
* Support a subset of functions in deployment configurations ([terraform-ls#1799](https://github.com/hashicorp/terraform-ls/issues/1799))
113+
* Support description attribute for orchestration rule block ([terraform-schema#393](https://github.com/hashicorp/terraform-schema/issues/393))
114+
* Support locals in stack and deploy configs ([terraform-schema#395](https://github.com/hashicorp/terraform-schema/issues/395))
115+
* Support depends_on attribute in component blocks ([terraform-schema#392](https://github.com/hashicorp/terraform-schema/issues/392))
116+
117+
BUG FIXES:
118+
119+
* Fix type for provider references in component blocks ([terraform-schema#391](https://github.com/hashicorp/terraform-schema/issues/391))
120+
121+
## 2.33.2024080812 (2024-08-08)
122+
123+
ENHANCEMENTS:
124+
125+
* Parse and load Stack and Deploy metadata ([terraform-ls#1761](https://github.com/hashicorp/terraform-ls/issues/1761))
126+
* Load Stack component sources from metadata ([terraform-ls#1768](https://github.com/hashicorp/terraform-ls/issues/1768))
127+
* Enable early validation for Terraform Stack files ([terraform-ls#1776](https://github.com/hashicorp/terraform-ls/issues/1776))
128+
* Merge stack configuration schema with dynamic schema based on used components source and providers ([terraform-ls#1770](https://github.com/hashicorp/terraform-ls/issues/1770))
129+
* Merge deployment configuration schema with dynamic schema based on available variables ([terraform-ls#1780](https://github.com/hashicorp/terraform-ls/issues/1780))
130+
* Support Terraform functions in stack files ([terraform-ls#1781](https://github.com/hashicorp/terraform-ls/issues/1781))
131+
* Add DecodeReferenceOrigins and DecodeReferenceTargets jobs ([terraform-ls#1786](https://github.com/hashicorp/terraform-ls/issues/1786))
132+
133+
BUG FIXES:
134+
135+
* fix panic on blocks with no labels during validation of label name ([terraform-ls#1791](https://github.com/hashicorp/terraform-ls/issues/1791))
136+
137+
INTERNAL:
138+
139+
* Load embedded provider schemas for providers found in stacks files into state ([terraform-ls#1763](https://github.com/hashicorp/terraform-ls/issues/1763))
140+
* Bump terraform-schema to c2315af ([terraform-ls#1788](https://github.com/hashicorp/terraform-ls/issues/1788))
141+
142+
## 2.33.2024073012 (2024-07-30)
143+
144+
INTERNAL:
145+
146+
* Add development launch target for extensionHost ([#1805](https://github.com/hashicorp/vscode-terraform/issues/1805))
147+
* Replace webpack with esbuild ([#1807](https://github.com/hashicorp/vscode-terraform/issues/1807))
148+

.changes/v2.33.2024073012.md

-7
This file was deleted.

.changes/v2.33.2024080812.md

-21
This file was deleted.

.changes/v2.33.2024082314.md

-25
This file was deleted.

.changes/v2.33.2024090609.md

-27
This file was deleted.

0 commit comments

Comments
 (0)