Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump terraform-ls from 0.34.2 to 0.35.0-alpha2 #1814

Merged
merged 3 commits into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changes/unreleased/BUG FIXES-20240808-105000.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: BUG FIXES
body: fix panic on blocks with no labels during validation of label name
time: 2024-08-08T10:50:00.988265+02:00
custom:
Issue: "1791"
Repository: terraform-ls
6 changes: 6 additions & 0 deletions .changes/unreleased/ENHANCEMENTS-20240716-094842.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: ENHANCEMENTS
body: Parse and load Stack and Deploy metadata
time: 2024-07-16T09:48:42.389816-04:00
custom:
Issue: "1761"
Repository: terraform-ls
6 changes: 6 additions & 0 deletions .changes/unreleased/ENHANCEMENTS-20240717-114614.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: ENHANCEMENTS
body: Load Stack component sources from metadata
time: 2024-07-17T11:46:14.048412-04:00
custom:
Issue: "1768"
Repository: terraform-ls
6 changes: 6 additions & 0 deletions .changes/unreleased/ENHANCEMENTS-20240724-122601.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: ENHANCEMENTS
body: Enable early validation for Terraform Stack files
time: 2024-07-24T12:26:01.677192-04:00
custom:
Issue: "1776"
Repository: terraform-ls
6 changes: 6 additions & 0 deletions .changes/unreleased/ENHANCEMENTS-20240725-163756.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: ENHANCEMENTS
body: Merge stack configuration schema with dynamic schema based on used components source and providers
time: 2024-07-25T16:37:56.096322+02:00
custom:
Issue: "1770"
Repository: terraform-ls
6 changes: 6 additions & 0 deletions .changes/unreleased/ENHANCEMENTS-20240731-152949.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: ENHANCEMENTS
body: Merge deployment configuration schema with dynamic schema based on available variables
time: 2024-07-31T15:29:49.214334+02:00
custom:
Issue: "1780"
Repository: terraform-ls
6 changes: 6 additions & 0 deletions .changes/unreleased/ENHANCEMENTS-20240731-155657.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: ENHANCEMENTS
body: Support Terraform functions in stack files
time: 2024-07-31T15:56:57.234803+02:00
custom:
Issue: "1781"
Repository: terraform-ls
6 changes: 6 additions & 0 deletions .changes/unreleased/ENHANCEMENTS-20240805-140526.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: ENHANCEMENTS
body: Add DecodeReferenceOrigins and DecodeReferenceTargets jobs
time: 2024-08-05T14:05:26.030294-04:00
custom:
Issue: "1786"
Repository: terraform-ls
6 changes: 6 additions & 0 deletions .changes/unreleased/INTERNAL-20240717-115636.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: INTERNAL
body: Load embedded provider schemas for providers found in stacks files into state
time: 2024-07-17T11:56:36.184201+02:00
custom:
Issue: "1763"
Repository: terraform-ls
6 changes: 6 additions & 0 deletions .changes/unreleased/INTERNAL-20240807-132909.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: INTERNAL
body: Bump terraform-schema to c2315af
time: 2024-08-07T13:29:09.149354-04:00
custom:
Issue: "1788"
Repository: terraform-ls
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"vscode": "^1.86.2"
},
"langServer": {
"version": "0.34.2"
"version": "0.35.0-alpha2"
},
"syntax": {
"version": "0.5.0"
Expand Down
2 changes: 1 addition & 1 deletion src/test/integration/stacks/deployment.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ deployment "test" {
test('completes audience in identity_token block', async () => {
// add a new incomplete "account_3" identity_token block to use for completions
await vscode.window.activeTextEditor?.edit((editBuilder) => {
editBuilder.insert(new vscode.Position(14, 0), 'identity_token {\n\n}\n');
editBuilder.insert(new vscode.Position(14, 0), 'identity_token "test" {\n\n}\n');
});

const expected = [new vscode.CompletionItem('audience', vscode.CompletionItemKind.Property)];
Expand Down
2 changes: 1 addition & 1 deletion src/test/integration/stacks/stack.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ suite('stacks stack', () => {

test('completes config and for_each blocks within provider', async () => {
const expected = [
new vscode.CompletionItem('config', vscode.CompletionItemKind.Property),
new vscode.CompletionItem('config', vscode.CompletionItemKind.Class),
new vscode.CompletionItem('for_each', vscode.CompletionItemKind.Property),
];

Expand Down
Loading