Skip to content
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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/asottile/dockerfile v3.1.0+incompatible
github.com/blang/semver v3.5.1+incompatible
github.com/briandowns/spinner v1.23.2
github.com/codefly-dev/core v0.2.80
github.com/codefly-dev/core v0.2.82
github.com/codefly-dev/golor v0.1.3
github.com/codefly-dev/llm v0.1.0
github.com/codefly-dev/sdk-go v0.1.58
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ github.com/clipperhouse/uax29/v2 v2.7.0 h1:+gs4oBZ2gPfVrKPthwbMzWZDaAFPGYK72F0NJ
github.com/clipperhouse/uax29/v2 v2.7.0/go.mod h1:EFJ2TJMRUaplDxHKj1qAEhCtQPW2tJSwu5BF98AuoVM=
github.com/cloudflare/circl v1.6.3 h1:9GPOhQGF9MCYUeXyMYlqTR6a5gTrgR/fBLXvUgtVcg8=
github.com/cloudflare/circl v1.6.3/go.mod h1:2eXP6Qfat4O/Yhh8BznvKnJ+uzEoTQ6jVKJRn81BiS4=
github.com/codefly-dev/core v0.2.80 h1:RwBAWd+7J2ZHHY5RSllfPNlr1wP9CNTmVFQz9UM3rog=
github.com/codefly-dev/core v0.2.80/go.mod h1:hNxTk7ZnR5AU8imfvNJcGpoULQ1uzML5M3E4/RffWU4=
github.com/codefly-dev/core v0.2.82 h1:CKvyxYPCsVs3lKPL4y+OxE12C4hbZCi01JfGVZXSTIs=
github.com/codefly-dev/core v0.2.82/go.mod h1:hNxTk7ZnR5AU8imfvNJcGpoULQ1uzML5M3E4/RffWU4=
github.com/codefly-dev/golor v0.1.3 h1:xmo+ceyJFRYZdvpWE2fNd0jeaadp/Ibm1BnganiGKOc=
github.com/codefly-dev/golor v0.1.3/go.mod h1:sl/u/K1l7J0Pr3xyVZp8fOJYQItKKst1No9JqgzLLoY=
github.com/codefly-dev/gortk v0.2.0 h1:7bOlS5valYz2zil+fZctQNcPCYBcPj86abcw9N8h1hQ=
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/info.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 0.1.82
version: 0.1.83
12 changes: 6 additions & 6 deletions pkg/sourceworkspace/source.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ import (
)

const (
GenericGoPluginVersion = "0.0.26"
GenericPythonPluginVersion = "0.0.30"
GenericPluginVersion = "0.0.20"
GenericGoPluginVersion = "0.0.27"
GenericPythonPluginVersion = "0.0.31"
GenericPluginVersion = "0.0.21"
// NodePluginVersion is published under the historical nextjs agent name,
// but owns generic Node.js/TypeScript validation as well as Next.js-specific
// lifecycle behavior selected from the package manifest.
NodePluginVersion = "0.0.133"
RustPluginVersion = "0.0.22"
SwiftPluginVersion = "0.0.14"
NodePluginVersion = "0.0.134"
RustPluginVersion = "0.0.24"
SwiftPluginVersion = "0.0.16"
pythonSetupMarker = "setup.py"
)

Expand Down
Loading