Skip to content

Commit c96b39a

Browse files
qodana-bottiulpin
authored andcommitted
⬆️ Update qodana to v2024.1.8
1 parent 6e3efa9 commit c96b39a

File tree

12 files changed

+43
-35
lines changed

12 files changed

+43
-35
lines changed

GRADLE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file:
2323
2424
```groovy
2525
plugins {
26-
id "org.jetbrains.qodana" version "2024.1.7"
26+
id "org.jetbrains.qodana" version "2024.1.8"
2727
}
2828
```
2929
3030
- Kotlin DSL – `build.gradle.kts`
3131
3232
```kotlin
3333
plugins {
34-
id("org.jetbrains.qodana") version "2024.1.7"
34+
id("org.jetbrains.qodana") version "2024.1.8"
3535
}
3636
```
3737
@@ -64,7 +64,7 @@ Add this to your Gradle configuration file:
6464
```groovy
6565
plugins {
6666
// applies Gradle Qodana plugin to use it in project
67-
id "org.jetbrains.qodana" version "2024.1.7"
67+
id "org.jetbrains.qodana" version "2024.1.8"
6868
}
6969
7070
qodana {
@@ -82,7 +82,7 @@ Add this to your Gradle configuration file:
8282
```kotlin
8383
plugins {
8484
// applies Gradle Qodana plugin to use it in project
85-
id("org.jetbrains.qodana") version "2024.1.7"
85+
id("org.jetbrains.qodana") version "2024.1.8"
8686
}
8787
8888
qodana {

common/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ version = "${properties("majorVersion").get()}.${properties("buildNumber").get()
3030

3131
kotlin {
3232
jvmToolchain(8)
33-
version = "2024.1.7"
33+
version = "2024.1.8"
3434
}
3535

3636
tasks.register<Jar>("jarSources") {

common/cli.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"version": "2024.1.7",
2+
"version": "2024.1.8",
33
"checksum": {
4-
"windows_x86_64": "c7523a1332f566519111dad70b7f39e25aabe2b4db7790c8eeb0503e8e0bc5a8",
5-
"linux_arm64": "ba196787569f97519d002446844ee72402e3700d86c475c3145088ec9d4dcfc2",
6-
"darwin_arm64": "abaf85c4295760e4c8cc75518c16ea7d68818a2a8438cf8005640b13a87f58af",
7-
"darwin_x86_64": "20b296f31f00e9aac0ab186a85cf13d03d49b737bda5ec37f8ed82316ffa2d45",
8-
"windows_arm64": "26709690340e873b37288beabec93a570fa0530a59fb43cdac3eb7e9df5dc1dc",
9-
"linux_x86_64": "49173d02499c9bf485c02a76315d208d8382cd02cbf0b135dc741a2c74922095"
4+
"windows_x86_64": "99e86c8d07d96512379d467a8f8198fe0a831f5fc7f4a41cca1906c1953a41af",
5+
"linux_arm64": "bcd8bc1b38e80232e23279ab0cbabb671cedb4b3e037ebfa9557d36172593597",
6+
"darwin_arm64": "7551d6cc370eaa781aad13b93a46e5209c2a3b7edbd66a1ad6d62ac6ff61cb34",
7+
"darwin_x86_64": "6cba08f174d2c44bc381759e23a69306e9119ef3c4ebc626310d480f1347f08e",
8+
"windows_arm64": "9a1dbb2143dc2639381573598d945a5d7464e1e80fa826bb4608f06551549a25",
9+
"linux_x86_64": "434ba9287b915948b0aa3a5bb1c38fee3244f28523e5bd4f2fe6b4d38b8eba73"
1010
}
1111
}

common/src/main/kotlin/org/jetbrains/qodana/cli/Checksums.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,12 @@ val CHECKSUMS = mapOf(
4343
"darwin_x86_64" to "21ce44b0ab96573ef75406e741e132e2f8c92c2e24d1d0370871276135c525ca",
4444
"darwin_arm64" to "fee1093b5d8202405615f2630ae44621c3168e59b7f5703a9e453f8666a0cae2"
4545
),
46+
"2024.1.8" to mapOf(
47+
"windows_x86_64" to "4bef4954573b37a45ed2eaaf6688a30f1a006bc8470f2189ebece44816a3d88d",
48+
"windows_arm64" to "f97611e8a40a61ee44f914a20ccd2880f05a38321d450044e33ce1aeffcaaf8c",
49+
"linux_x86_64" to "e5d3302e5c00d6bdc0f530f4e4852805b88abc65f34943bc42a61bd33e0bd5c5",
50+
"linux_arm64" to "f1b8ba1be5dc453ba87de4f75c5f86e59445bb13de407f809ce4475a04b1a70d",
51+
"darwin_x86_64" to "8fcbeba68026f33a0d265b064bbb607e86c8775d4e9aade0cabf1b2620ad6015",
52+
"darwin_arm64" to "b80167f5a4ff2c054671b985ab1dcc4d59d149c86fd1155935543ad4d05c7aa7"
53+
)
4654
)

common/src/main/kotlin/org/jetbrains/qodana/cli/Qodana.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Installer {
3232
val log: Logger = Logger.getLogger(Installer::class.java.name)
3333

3434
companion object {
35-
private const val LATEST_VERSION = "2024.1.7"
35+
private const val LATEST_VERSION = "2024.1.8"
3636
private const val RELEASE_DOWNLOAD_URL =
3737
"https://github.com/JetBrains/qodana-cli/releases/download/v%s/qodana_%s_%s"
3838

orb/commands/scan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ steps:
5353
name: Qodana Scan
5454
command: |
5555
set -e
56-
QODANA_SHA_256=b98b54405c54203976b3b28e18a57b4f33bdb6f2bb7c5768ef3560cb4dc5cfcb
57-
CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.1.7
56+
QODANA_SHA_256=e5d3302e5c00d6bdc0f530f4e4852805b88abc65f34943bc42a61bd33e0bd5c5
57+
CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.1.8
5858
mkdir -p $CLI_DIRECTORY
5959
if [[ ! -x "$CLI_DIRECTORY/qodana" ]]; then
6060
curl -fsSL https://jb.gg/qodana-cli/install | bash -s -- \
61-
v2024.1.7 $CLI_DIRECTORY \
61+
v2024.1.8 $CLI_DIRECTORY \
6262
1> /dev/null
6363
fi
6464
echo "$QODANA_SHA_256 $CLI_DIRECTORY/qodana" | sha256sum -c

orb/examples/scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >
33
usage:
44
version: 2.1
55
orbs:
6-
qodana: jetbrains/[email protected].7
6+
qodana: jetbrains/[email protected].8
77
jobs:
88
code-quality:
99
machine:

scan/__tests__/main.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ test('validate branch names', () => {
4242
'refs/heads/main',
4343
'refs/tags/v1.0.0',
4444
'refs/pull/123/merge',
45-
'v2024.1.7'
45+
'v2024.1.8'
4646
]
4747
for (let branchName of validBranchNames) {
4848
expect(validateBranchName(branchName)).toEqual(branchName)
@@ -334,7 +334,7 @@ To get \`*.log\` files or any other Qodana artifacts, run the action with \`uplo
334334
so that the action will upload the files as the job artifacts:
335335
\`\`\`yaml
336336
- name: 'Qodana Scan'
337-
uses: JetBrains/[email protected].7
337+
uses: JetBrains/[email protected].8
338338
with:
339339
upload-result: true
340340
\`\`\`

scan/dist/index.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24193,14 +24193,14 @@ var require_io = __commonJS({
2419324193
var version2, checksum;
2419424194
var init_cli = __esm({
2419524195
"../common/cli.json"() {
24196-
version2 = "2024.1.7";
24196+
version2 = "2024.1.8";
2419724197
checksum = {
24198-
windows_x86_64: "c7523a1332f566519111dad70b7f39e25aabe2b4db7790c8eeb0503e8e0bc5a8",
24199-
linux_arm64: "ba196787569f97519d002446844ee72402e3700d86c475c3145088ec9d4dcfc2",
24200-
darwin_arm64: "abaf85c4295760e4c8cc75518c16ea7d68818a2a8438cf8005640b13a87f58af",
24201-
darwin_x86_64: "20b296f31f00e9aac0ab186a85cf13d03d49b737bda5ec37f8ed82316ffa2d45",
24202-
windows_arm64: "26709690340e873b37288beabec93a570fa0530a59fb43cdac3eb7e9df5dc1dc",
24203-
linux_x86_64: "49173d02499c9bf485c02a76315d208d8382cd02cbf0b135dc741a2c74922095"
24198+
windows_x86_64: "99e86c8d07d96512379d467a8f8198fe0a831f5fc7f4a41cca1906c1953a41af",
24199+
linux_arm64: "bcd8bc1b38e80232e23279ab0cbabb671cedb4b3e037ebfa9557d36172593597",
24200+
darwin_arm64: "7551d6cc370eaa781aad13b93a46e5209c2a3b7edbd66a1ad6d62ac6ff61cb34",
24201+
darwin_x86_64: "6cba08f174d2c44bc381759e23a69306e9119ef3c4ebc626310d480f1347f08e",
24202+
windows_arm64: "9a1dbb2143dc2639381573598d945a5d7464e1e80fa826bb4608f06551549a25",
24203+
linux_x86_64: "434ba9287b915948b0aa3a5bb1c38fee3244f28523e5bd4f2fe6b4d38b8eba73"
2420424204
};
2420524205
}
2420624206
});

vsts/QodanaScan/index.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
3737
var version, checksum;
3838
var init_cli = __esm({
3939
"../common/cli.json"() {
40-
version = "2024.1.7";
40+
version = "2024.1.8";
4141
checksum = {
42-
windows_x86_64: "c7523a1332f566519111dad70b7f39e25aabe2b4db7790c8eeb0503e8e0bc5a8",
43-
linux_arm64: "ba196787569f97519d002446844ee72402e3700d86c475c3145088ec9d4dcfc2",
44-
darwin_arm64: "abaf85c4295760e4c8cc75518c16ea7d68818a2a8438cf8005640b13a87f58af",
45-
darwin_x86_64: "20b296f31f00e9aac0ab186a85cf13d03d49b737bda5ec37f8ed82316ffa2d45",
46-
windows_arm64: "26709690340e873b37288beabec93a570fa0530a59fb43cdac3eb7e9df5dc1dc",
47-
linux_x86_64: "49173d02499c9bf485c02a76315d208d8382cd02cbf0b135dc741a2c74922095"
42+
windows_x86_64: "99e86c8d07d96512379d467a8f8198fe0a831f5fc7f4a41cca1906c1953a41af",
43+
linux_arm64: "bcd8bc1b38e80232e23279ab0cbabb671cedb4b3e037ebfa9557d36172593597",
44+
darwin_arm64: "7551d6cc370eaa781aad13b93a46e5209c2a3b7edbd66a1ad6d62ac6ff61cb34",
45+
darwin_x86_64: "6cba08f174d2c44bc381759e23a69306e9119ef3c4ebc626310d480f1347f08e",
46+
windows_arm64: "9a1dbb2143dc2639381573598d945a5d7464e1e80fa826bb4608f06551549a25",
47+
linux_x86_64: "434ba9287b915948b0aa3a5bb1c38fee3244f28523e5bd4f2fe6b4d38b8eba73"
4848
};
4949
}
5050
});

vsts/QodanaScan/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"version": {
1111
"Major": 2024,
1212
"Minor": 1,
13-
"Patch": 7
13+
"Patch": 8
1414
},
1515
"instanceNameFormat": "Qodana Scan",
1616
"inputs": [

vsts/vss-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifestVersion": 1,
33
"id": "qodana",
44
"name": "Qodana",
5-
"version": "2024.1.7",
5+
"version": "2024.1.8",
66
"public": true,
77
"publisher": "JetBrains",
88
"targets": [

0 commit comments

Comments
 (0)