Skip to content

Commit

Permalink
⚡ Update to 2023.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed Dec 11, 2023
1 parent dea1cbb commit 4dae80b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
3 changes: 3 additions & 0 deletions core/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ var (
QDJS = "QDJS"
QDGO = "QDGO"
QDNET = "QDNET"
QDNETC = "QDNETC"
QDANDC = "QDANDC"
QDRST = "QDRST"
QDRUBY = "QDRUBY"
Expand Down Expand Up @@ -73,6 +74,8 @@ func Image(code string) string {
return "jetbrains/qodana-jvm:" + version
case QDJVMC:
return "jetbrains/qodana-jvm-community:" + version
case QDNETC:
return "jetbrains/qodana-cdnet:" + version
//case QDRST:
// return "jetbrains/qodana-rust:" + version
default:
Expand Down
6 changes: 3 additions & 3 deletions core/configurator.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
const (
QodanaSarifName = "qodana.sarif.json"
configName = "qodana"
version = "2023.2"
version = "2023.3"
eap = "-eap"
)

Expand All @@ -45,9 +45,9 @@ var langsLinters = map[string][]string{
"JavaScript": {Image(QDJS)},
"TypeScript": {Image(QDJS)},
"Go": {Image(QDGO)},
"C#": {Image(QDNET)},
"C#": {Image(QDNET), Image(QDNETC)},
"F#": {Image(QDNET)},
"Visual Basic .NET": {Image(QDNET)},
"Visual Basic .NET": {Image(QDNET), Image(QDNETC)},
}

var allSupportedPaidCodes = []string{QDJVM, QDPHP, QDPY, QDJS, QDGO, QDNET}
Expand Down
5 changes: 0 additions & 5 deletions core/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -411,11 +411,6 @@ func followLinter(client *client.Client, containerName string, progress *pterm.S
EmptyMessage()
}
}
if strings.Contains(line, "Report is successfully uploaded to ") {
reportUrl := strings.TrimPrefix(line, "Report is successfully uploaded to ")
cloud.SaveReportFile(resultsDir, reportUrl) // TODO: stop after 2023.3 CLI release
continue
}
printLinterLog(line)
}
if err != nil {
Expand Down

0 comments on commit 4dae80b

Please sign in to comment.