Skip to content

Commit d3d46ed

Browse files
authored
Prepare v0.5.0 (#316)
1 parent 5cfd8d6 commit d3d46ed

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ IMPROVEMENTS
1818

1919
FIXES
2020

21-
* `list_runs` was returning empty response
21+
* `list_runs` was returning empty response due to JSON marshalling error
2222

23-
## 0.4.0
23+
## 0.5.0
2424

2525
FEATURES
2626

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ More about using MCP server tools in VS Code's [agent mode documentation](https:
9595
"--rm",
9696
"-e", "TFE_TOKEN=${input:tfe_token}",
9797
"-e", "TFE_ADDRESS=${input:tfe_address}",
98-
"hashicorp/terraform-mcp-server:0.4.0"
98+
"hashicorp/terraform-mcp-server:0.5.0"
9999
]
100100
}
101101
},
@@ -159,7 +159,7 @@ Optionally, you can add a similar example (i.e. without the mcp key) to a file c
159159
"--rm",
160160
"-e", "TFE_TOKEN=${input:tfe_token}",
161161
"-e", "TFE_ADDRESS=${input:tfe_address}",
162-
"hashicorp/terraform-mcp-server:0.4.0"
162+
"hashicorp/terraform-mcp-server:0.5.0"
163163
]
164164
}
165165
},
@@ -226,7 +226,7 @@ Add this to your Cursor config (`~/.cursor/mcp.json`) or via Settings → Cursor
226226
"--rm",
227227
"-e", "TFE_ADDRESS=<<PASTE_TFE_ADDRESS_HERE>>",
228228
"-e", "TFE_TOKEN=<<PASTE_TFE_TOKEN_HERE>>",
229-
"hashicorp/terraform-mcp-server:0.4.0"
229+
"hashicorp/terraform-mcp-server:0.5.0"
230230
]
231231
}
232232
}
@@ -279,7 +279,7 @@ More about using MCP server tools in Claude Desktop [user documentation](https:/
279279
"--rm",
280280
"-e", "TFE_ADDRESS=<<PASTE_TFE_ADDRESS_HERE>>",
281281
"-e", "TFE_TOKEN=<<PASTE_TFE_TOKEN_HERE>>",
282-
"hashicorp/terraform-mcp-server:0.4.0"
282+
"hashicorp/terraform-mcp-server:0.5.0"
283283
]
284284
}
285285
}
@@ -365,7 +365,7 @@ More about using and adding MCP servers tools in Bob IDE or Shell [Using MCP in
365365
"--rm",
366366
"-e", "TFE_ADDRESS=<<PASTE_TFE_ADDRESS_HERE>>",
367367
"-e", "TFE_TOKEN=<<PASTE_TFE_TOKEN_HERE>>",
368-
"hashicorp/terraform-mcp-server:0.4.0"
368+
"hashicorp/terraform-mcp-server:0.5.0"
369369
],
370370
"disabled": false
371371
}
@@ -569,7 +569,7 @@ tls: failed to verify certificate: x509: certificate signed by unknown authority
569569
docker run -i --rm \
570570
-v /path/to/corporate-ca.pem:/etc/ssl/certs/corporate-ca.pem \
571571
-e SSL_CERT_FILE=/etc/ssl/certs/corporate-ca.pem \
572-
hashicorp/terraform-mcp-server:0.4.0
572+
hashicorp/terraform-mcp-server:0.5.0
573573
```
574574

575575
For MCP client configurations:
@@ -585,7 +585,7 @@ For MCP client configurations:
585585
"-v", "/path/to/corporate-ca.pem:/etc/ssl/certs/corporate-ca.pem",
586586
"-e", "SSL_CERT_FILE=/etc/ssl/certs/corporate-ca.pem",
587587
"-e", "TFE_TOKEN=<>",
588-
"hashicorp/terraform-mcp-server:0.4.0"
588+
"hashicorp/terraform-mcp-server:0.5.0"
589589
]
590590
}
591591
}

gemini-extension.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "terraform",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"contextFileName": "${extensionPath}${/}instructions${/}example-AGENTS.md",
55
"mcpServers": {
66
"terraform": {
@@ -15,7 +15,7 @@
1515
"TFE_ADDRESS",
1616
"-e",
1717
"ENABLE_TF_OPERATIONS",
18-
"hashicorp/terraform-mcp-server:0.4.0"
18+
"hashicorp/terraform-mcp-server:0.5.0"
1919
],
2020
"env": {
2121
"TFE_TOKEN": "$TFE_TOKEN",

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"url": "https://github.com/hashicorp/terraform-mcp-server",
88
"source": "github"
99
},
10-
"version": "0.4.0",
10+
"version": "0.5.0",
1111
"packages": [
1212
{
1313
"registryType": "oci",
14-
"identifier": "docker.io/hashicorp/terraform-mcp-server:0.4.0",
14+
"identifier": "docker.io/hashicorp/terraform-mcp-server:0.5.0",
1515
"transport": {
1616
"type": "stdio"
1717
},

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0
1+
0.5.0

0 commit comments

Comments
 (0)