Skip to content

Commit 1344fdc

Browse files
committed
chore(deps): Update language and tool versions
1 parent 06fe1cb commit 1344fdc

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

cmd/init.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ func collectADLInfo(cmd *cobra.Command, projectName string, useDefaults bool) *a
570570
}{}
571571
defaultModule := getDefaultGoModule(adl.Metadata.Name)
572572
adl.Spec.Language.Go.Module = promptWithConfig("go-module", useDefaults, "Go module", defaultModule)
573-
adl.Spec.Language.Go.Version = promptWithConfig("go-version", useDefaults, "Go version", "1.25")
573+
adl.Spec.Language.Go.Version = promptWithConfig("go-version", useDefaults, "Go version", "1.25.5")
574574

575575
case "rust":
576576
adl.Spec.Language.Rust = &struct {
@@ -588,17 +588,16 @@ func collectADLInfo(cmd *cobra.Command, projectName string, useDefaults bool) *a
588588
NodeVersion string `yaml:"nodeVersion"`
589589
}{}
590590
adl.Spec.Language.TypeScript.PackageName = promptWithConfig("typescript-name", useDefaults, "TypeScript package name", adl.Metadata.Name)
591-
adl.Spec.Language.TypeScript.NodeVersion = "20"
591+
adl.Spec.Language.TypeScript.NodeVersion = "24"
592592

593593
default:
594-
// Default to Go
595594
adl.Spec.Language.Go = &struct {
596595
Module string `yaml:"module"`
597596
Version string `yaml:"version"`
598597
}{}
599598
defaultModule := getDefaultGoModule(adl.Metadata.Name)
600599
adl.Spec.Language.Go.Module = promptWithConfig("go-module", useDefaults, "Go module", defaultModule)
601-
adl.Spec.Language.Go.Version = promptWithConfig("go-version", useDefaults, "Go version", "1.25")
600+
adl.Spec.Language.Go.Version = promptWithConfig("go-version", useDefaults, "Go version", "1.25.5")
602601
}
603602

604603
fmt.Println("\n🏗️ Sandbox Configuration")

internal/templates/sandbox/flox/manifest.toml.tmpl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,27 @@ golangci-lint.pkg-group = "common"
1111

1212
{{- else if eq .Language "rust" }}
1313
cargo.pkg-path = "cargo"
14-
cargo.version = "^1.89.0"
14+
cargo.version = "^1.92.0"
1515
cargo.pkg-group = "rust-toolchain"
1616

1717
rustc.pkg-path = "rustc"
18-
rustc.version = "^1.89.0"
18+
rustc.version = "^1.92.0"
1919
rustc.pkg-group = "rust-toolchain"
2020

2121
clippy.pkg-path = "clippy"
22-
clippy.version = "^1.89.0"
22+
clippy.version = "^1.92.0"
2323
clippy.pkg-group = "rust-toolchain"
2424

2525
rustfmt.pkg-path = "rustfmt"
26-
rustfmt.version = "^1.89.0"
26+
rustfmt.version = "^1.92.0"
2727
rustfmt.pkg-group = "rust-toolchain"
2828

2929
rust-analyzer.pkg-path = "rust-analyzer"
30-
rust-analyzer.version = "2025-08-25"
30+
rust-analyzer.version = "2026-01-19"
3131
rust-analyzer.pkg-group = "rust-analyzer"
3232
{{- else if eq .Language "typescript" }}
3333
nodejs_24.pkg-path = "nodejs_24"
34-
nodejs_24.version = "^14.11.0"
34+
nodejs_24.version = "^14.13.0"
3535
{{- end }}
3636

3737
go-task.pkg-path = "go-task"
@@ -43,7 +43,7 @@ git.version = "^2.51.0"
4343
git.pkg-group = "common"
4444

4545
docker.pkg-path = "docker"
46-
docker.version = "^28.5.1"
46+
docker.version = "^29.1.5"
4747
docker.pkg-group = "common"
4848
{{- if .EnableAI }}
4949

0 commit comments

Comments
 (0)