Skip to content

Commit

Permalink
build(deps): update go, tf and devcontainer (#285)
Browse files Browse the repository at this point in the history
# 📥 Pull Request

## ❓ What are you trying to address

This pull request includes updates to the development environment
configurations and documentation to ensure compatibility with the latest
versions of Go and Terraform.

Updates to development environment:

*
[`.devcontainer/devcontainer.json`](diffhunk://#diff-24ad71c8613ddcf6fd23818cb3bb477a1fb6d83af4550b0bad43099813088686L12-R18):
Updated the `fish` feature to version 2, the `go` feature to version
1.24.1, and the `terraform` feature to version 1.11.1.
[[1]](diffhunk://#diff-24ad71c8613ddcf6fd23818cb3bb477a1fb6d83af4550b0bad43099813088686L12-R18)
[[2]](diffhunk://#diff-24ad71c8613ddcf6fd23818cb3bb477a1fb6d83af4550b0bad43099813088686L39-R39)

Documentation updates:

*
[`DEVELOPER.md`](diffhunk://#diff-35ea617bfbf0780bfbc554348314c5b11ba478a4d98fd92d33d45cdd54bf326aL111-R116):
Updated the required versions of Go to 1.24.1 and Terraform to 1.11.1 in
the requirements section.

Codebase updates:

*
[`go.mod`](diffhunk://#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6L3-R3):
Updated the Go version to 1.24.1.
  • Loading branch information
DariuszPorowski authored Mar 5, 2025
1 parent a16d3a2 commit 3267e24
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
// "ghcr.io/devcontainers/features/git:1": {
// "version": "latest"
// },
"ghcr.io/meaningful-ooo/devcontainer-features/fish:1": {},
"ghcr.io/meaningful-ooo/devcontainer-features/fish:2": {},
"ghcr.io/devcontainers/features/common-utils:2": {
"configureZshAsDefaultShell": true
},
// "ghcr.io/stuartleeks/dev-container-features/shell-history:0": {},
"ghcr.io/devcontainers/features/go:1": {
"version": "1.24.0"
"version": "1.24.1"
},
"ghcr.io/devcontainers/features/python:1": {
"version": "3.12"
Expand All @@ -36,7 +36,7 @@
// "ghcr.io/guiyomh/features/gomarkdoc:0": {},
// "ghcr.io/guiyomh/features/gotestsum:0": {},
"ghcr.io/devcontainers/features/terraform:1": {
"version": "1.11.0",
"version": "1.11.1",
"installSentinel": true,
"installTFsec": true,
"installTerraformDocs": true
Expand Down
8 changes: 4 additions & 4 deletions DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ Local development is still possible on Windows, Linux and macOS, but requires ad
#### Requirements

- [Git](https://git-scm.com/downloads) `>= 2.47.1`
- [Go](https://go.dev/doc/install) `>= 1.24.0`
- [Go](https://go.dev/doc/install) `>= 1.24.1`
- We recommend you to use Go version manager [go-nv/goenv](https://github.com/go-nv/goenv/blob/master/INSTALL.md)
- `goenv install 1.24.0`
- [Terraform](https://developer.hashicorp.com/terraform/downloads) `>= 1.11.0`
- `goenv install 1.24.1`
- [Terraform](https://developer.hashicorp.com/terraform/downloads) `>= 1.11.1`
- We recommend you to use Terraform version manager [tfutils/tfenv](https://github.com/tfutils/tfenv/blob/master/README.md)
- `tfenv install 1.11.0`, `tfenv use 1.11.0`
- `tfenv install 1.11.1`, `tfenv use 1.11.1`
- [Task](https://taskfile.dev/installation) `>= 3.40.1`

#### Linux
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/microsoft/terraform-provider-fabric

go 1.24.0
go 1.24.1

require (
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.0
Expand Down

0 comments on commit 3267e24

Please sign in to comment.