From cf8999fdc3944084f797454978a331d81fd82a3c Mon Sep 17 00:00:00 2001 From: qodana-bot Date: Thu, 17 Oct 2024 17:11:08 +0000 Subject: [PATCH] :arrow_up: Update `qodana` to `v2024.2.5` --- GRADLE.md | 8 ++++---- common/cli.json | 14 +++++++------- orb/commands/scan.yml | 6 +++--- orb/examples/scan.yml | 2 +- .../main/kotlin/org/jetbrains/qodana/Checksums.kt | 8 ++++++++ .../src/main/kotlin/org/jetbrains/qodana/Qodana.kt | 2 +- scan/__tests__/main.test.ts | 4 ++-- scan/dist/index.js | 14 +++++++------- vsts/QodanaScan/index.js | 14 +++++++------- vsts/QodanaScan/task.json | 2 +- vsts/vss-extension.dev.json | 2 +- vsts/vss-extension.json | 2 +- 12 files changed, 43 insertions(+), 35 deletions(-) diff --git a/GRADLE.md b/GRADLE.md index ddf1c1f2..df116667 100644 --- a/GRADLE.md +++ b/GRADLE.md @@ -23,7 +23,7 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file: ```groovy plugins { - id "org.jetbrains.qodana" version "2024.2.3" + id "org.jetbrains.qodana" version "2024.2.5" } ``` @@ -31,7 +31,7 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file: ```kotlin plugins { - id("org.jetbrains.qodana") version "2024.2.3" + id("org.jetbrains.qodana") version "2024.2.5" } ``` @@ -64,7 +64,7 @@ Add this to your Gradle configuration file: ```groovy plugins { // applies Gradle Qodana plugin to use it in project - id "org.jetbrains.qodana" version "2024.2.3" + id "org.jetbrains.qodana" version "2024.2.5" } qodana { @@ -82,7 +82,7 @@ Add this to your Gradle configuration file: ```kotlin plugins { // applies Gradle Qodana plugin to use it in project - id("org.jetbrains.qodana") version "2024.2.3" + id("org.jetbrains.qodana") version "2024.2.5" } qodana { diff --git a/common/cli.json b/common/cli.json index 9439282f..65a53a95 100644 --- a/common/cli.json +++ b/common/cli.json @@ -1,11 +1,11 @@ { - "version": "2024.2.3", + "version": "2024.2.5", "checksum": { - "windows_x86_64": "e99e81ec41ea44813d36aef45c08e9c955eaa503ae501b271388616240ca3f1c", - "linux_arm64": "37ea8179df6d85ab0bb5b616c3c671f52d0106a2396e5f9e5443e740d5697553", - "darwin_arm64": "29d54a1b00805c97c7a2e741e94b6c4a2c1d5e6e0824a3e2d3bb5767fc5f4a98", - "darwin_x86_64": "c5d8b22878a33a3c1e070b7b881f142ee690d08c4bbd84bc980bedd146e9ac96", - "windows_arm64": "b6aadfbe089a76cebda0da45d0bda9b7a8628d5ff5c54038a2d5c552582ce1c0", - "linux_x86_64": "b9ce0744b626f87c4803eb54d759194276373c662effef49a1cc7962504b2d7a" + "windows_x86_64": "a3f6ec138e2c18b92a820e20b89a88935ca0ecb7d85652bcb9e307d2c7a18432", + "linux_arm64": "177e9ab6a63fa3a625dbfbe64c3cc86651470b29b00faa3269c68cc9fe192c71", + "darwin_arm64": "386bc6c31630d4072a14bb57a3f0a9deddd5c35d60141ad855bf14eb52ddacd8", + "darwin_x86_64": "c21f4886e3cf8b9cd2bb8b399cb5b4915abc07e2360fdf105d13eb22f9f005b7", + "windows_arm64": "0b59d609693242b3384879318c84d1e1ddc58998f4eacc67838d90aee14b6ca2", + "linux_x86_64": "9c75737209eee1205bb71e8806426ca33746f31eca21e903abd9dfb0f41c518e" } } \ No newline at end of file diff --git a/orb/commands/scan.yml b/orb/commands/scan.yml index 09e77b39..862ec44c 100644 --- a/orb/commands/scan.yml +++ b/orb/commands/scan.yml @@ -53,12 +53,12 @@ steps: name: Qodana Scan command: | set -e - QODANA_SHA_256=b8b70cdd8be9f79037dd511cbdbde70737834c46f35faa3a14acaca41f292748 - CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.2.3 + QODANA_SHA_256=55e1d21480f7158c1685404c0876b092ca007d7e13c55599d6e26d4bd99f2463 + CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.2.5 mkdir -p $CLI_DIRECTORY if [[ ! -x "$CLI_DIRECTORY/qodana" ]]; then curl -fsSL https://jb.gg/qodana-cli/install | bash -s -- \ - v2024.2.3 $CLI_DIRECTORY \ + v2024.2.5 $CLI_DIRECTORY \ 1> /dev/null fi echo "$QODANA_SHA_256 $CLI_DIRECTORY/qodana" | sha256sum -c diff --git a/orb/examples/scan.yml b/orb/examples/scan.yml index 4f496d94..3f33995a 100755 --- a/orb/examples/scan.yml +++ b/orb/examples/scan.yml @@ -3,7 +3,7 @@ description: > usage: version: 2.1 orbs: - qodana: jetbrains/qodana@2024.2.3 + qodana: jetbrains/qodana@2024.2.5 jobs: code-quality: machine: diff --git a/plugin/src/main/kotlin/org/jetbrains/qodana/Checksums.kt b/plugin/src/main/kotlin/org/jetbrains/qodana/Checksums.kt index b9ce0fb1..c6113a99 100644 --- a/plugin/src/main/kotlin/org/jetbrains/qodana/Checksums.kt +++ b/plugin/src/main/kotlin/org/jetbrains/qodana/Checksums.kt @@ -82,5 +82,13 @@ val CHECKSUMS = mapOf( "linux_arm64" to "293ea36dbb53f47e4585468d80a788af12c9e0e1290bf0af69cddb8a3c165602", "darwin_x86_64" to "1dafe45b1b1fdfe5b08b2896713befa19d46c5df3b7b138b6a1363fac09d34cf", "darwin_arm64" to "d41a0251eb27bf97ab494d15fc7b4b952113bb303ba0c830cd2a6fcbd58cb8c3" + ), + "2024.2.5" to mapOf( + "windows_x86_64" to "91fae0fb56b74f1ea5e032a0a702c884ae8de21d1c7e9c937c1f354758c72289", + "windows_arm64" to "cd1cc066f6be3e15c6c764b9217df11b2dab2e538d2f16784f5ec333b912be41", + "linux_x86_64" to "55e1d21480f7158c1685404c0876b092ca007d7e13c55599d6e26d4bd99f2463", + "linux_arm64" to "0ce0ffc17cd01ab91f5ce0404bfd82c79051829742cba20f69350f41da812fef", + "darwin_x86_64" to "406dadbd2617665ceb6ae1c5241ddcfaab4b7f4d1f3ae16cd3d1b9f788cf072b", + "darwin_arm64" to "3618a5a65e08ece566f461afe2ed98223a5b3a5fceb2561e58fddcc8aa718f2e" ) ) \ No newline at end of file diff --git a/plugin/src/main/kotlin/org/jetbrains/qodana/Qodana.kt b/plugin/src/main/kotlin/org/jetbrains/qodana/Qodana.kt index 8732a67e..7d8e6ba8 100644 --- a/plugin/src/main/kotlin/org/jetbrains/qodana/Qodana.kt +++ b/plugin/src/main/kotlin/org/jetbrains/qodana/Qodana.kt @@ -32,7 +32,7 @@ class Installer { val log: Logger = Logger.getLogger(Installer::class.java.name) companion object { - private const val LATEST_VERSION = "v2024.2.3" + private const val LATEST_VERSION = "v2024.2.5" private const val RELEASE_DOWNLOAD_URL = "https://github.com/JetBrains/qodana-cli/releases/download/%s/qodana_%s_%s" diff --git a/scan/__tests__/main.test.ts b/scan/__tests__/main.test.ts index d4a16185..51531325 100644 --- a/scan/__tests__/main.test.ts +++ b/scan/__tests__/main.test.ts @@ -42,7 +42,7 @@ test('validate branch names', () => { 'refs/heads/main', 'refs/tags/v1.0.0', 'refs/pull/123/merge', - 'v2024.2.3' + 'v2024.2.5' ] for (let branchName of validBranchNames) { expect(validateBranchName(branchName)).toEqual(branchName) @@ -334,7 +334,7 @@ To get \`*.log\` files or any other Qodana artifacts, run the action with \`uplo so that the action will upload the files as the job artifacts: \`\`\`yaml - name: 'Qodana Scan' - uses: JetBrains/qodana-action@v2024.2.3 + uses: JetBrains/qodana-action@v2024.2.5 with: upload-result: true \`\`\` diff --git a/scan/dist/index.js b/scan/dist/index.js index 40372a72..3e0d2b4c 100644 --- a/scan/dist/index.js +++ b/scan/dist/index.js @@ -24209,14 +24209,14 @@ var require_io = __commonJS({ var version2, checksum; var init_cli = __esm({ "../common/cli.json"() { - version2 = "2024.2.3"; + version2 = "2024.2.5"; checksum = { - windows_x86_64: "e99e81ec41ea44813d36aef45c08e9c955eaa503ae501b271388616240ca3f1c", - linux_arm64: "37ea8179df6d85ab0bb5b616c3c671f52d0106a2396e5f9e5443e740d5697553", - darwin_arm64: "29d54a1b00805c97c7a2e741e94b6c4a2c1d5e6e0824a3e2d3bb5767fc5f4a98", - darwin_x86_64: "c5d8b22878a33a3c1e070b7b881f142ee690d08c4bbd84bc980bedd146e9ac96", - windows_arm64: "b6aadfbe089a76cebda0da45d0bda9b7a8628d5ff5c54038a2d5c552582ce1c0", - linux_x86_64: "b9ce0744b626f87c4803eb54d759194276373c662effef49a1cc7962504b2d7a" + windows_x86_64: "a3f6ec138e2c18b92a820e20b89a88935ca0ecb7d85652bcb9e307d2c7a18432", + linux_arm64: "177e9ab6a63fa3a625dbfbe64c3cc86651470b29b00faa3269c68cc9fe192c71", + darwin_arm64: "386bc6c31630d4072a14bb57a3f0a9deddd5c35d60141ad855bf14eb52ddacd8", + darwin_x86_64: "c21f4886e3cf8b9cd2bb8b399cb5b4915abc07e2360fdf105d13eb22f9f005b7", + windows_arm64: "0b59d609693242b3384879318c84d1e1ddc58998f4eacc67838d90aee14b6ca2", + linux_x86_64: "9c75737209eee1205bb71e8806426ca33746f31eca21e903abd9dfb0f41c518e" }; } }); diff --git a/vsts/QodanaScan/index.js b/vsts/QodanaScan/index.js index 6dbfe0dc..c98385ad 100644 --- a/vsts/QodanaScan/index.js +++ b/vsts/QodanaScan/index.js @@ -37,14 +37,14 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru var version, checksum; var init_cli = __esm({ "../common/cli.json"() { - version = "2024.2.3"; + version = "2024.2.5"; checksum = { - windows_x86_64: "e99e81ec41ea44813d36aef45c08e9c955eaa503ae501b271388616240ca3f1c", - linux_arm64: "37ea8179df6d85ab0bb5b616c3c671f52d0106a2396e5f9e5443e740d5697553", - darwin_arm64: "29d54a1b00805c97c7a2e741e94b6c4a2c1d5e6e0824a3e2d3bb5767fc5f4a98", - darwin_x86_64: "c5d8b22878a33a3c1e070b7b881f142ee690d08c4bbd84bc980bedd146e9ac96", - windows_arm64: "b6aadfbe089a76cebda0da45d0bda9b7a8628d5ff5c54038a2d5c552582ce1c0", - linux_x86_64: "b9ce0744b626f87c4803eb54d759194276373c662effef49a1cc7962504b2d7a" + windows_x86_64: "a3f6ec138e2c18b92a820e20b89a88935ca0ecb7d85652bcb9e307d2c7a18432", + linux_arm64: "177e9ab6a63fa3a625dbfbe64c3cc86651470b29b00faa3269c68cc9fe192c71", + darwin_arm64: "386bc6c31630d4072a14bb57a3f0a9deddd5c35d60141ad855bf14eb52ddacd8", + darwin_x86_64: "c21f4886e3cf8b9cd2bb8b399cb5b4915abc07e2360fdf105d13eb22f9f005b7", + windows_arm64: "0b59d609693242b3384879318c84d1e1ddc58998f4eacc67838d90aee14b6ca2", + linux_x86_64: "9c75737209eee1205bb71e8806426ca33746f31eca21e903abd9dfb0f41c518e" }; } }); diff --git a/vsts/QodanaScan/task.json b/vsts/QodanaScan/task.json index b7d0288a..210dd830 100644 --- a/vsts/QodanaScan/task.json +++ b/vsts/QodanaScan/task.json @@ -10,7 +10,7 @@ "version": { "Major": 2024, "Minor": 2, - "Patch": 3 + "Patch": 5 }, "instanceNameFormat": "Qodana Scan", "inputs": [ diff --git a/vsts/vss-extension.dev.json b/vsts/vss-extension.dev.json index 3c68fd6c..579547c5 100644 --- a/vsts/vss-extension.dev.json +++ b/vsts/vss-extension.dev.json @@ -2,7 +2,7 @@ "manifestVersion": 1, "id": "qodana-dev", "name": "Qodana (Dev)", - "version": "2024.2.122", + "version": "2024.2.123", "publisher": "JetBrains", "targets": [ { diff --git a/vsts/vss-extension.json b/vsts/vss-extension.json index d5c08082..566d4bb9 100644 --- a/vsts/vss-extension.json +++ b/vsts/vss-extension.json @@ -2,7 +2,7 @@ "manifestVersion": 1, "id": "qodana", "name": "Qodana", - "version": "2024.2.3", + "version": "2024.2.5", "public": true, "publisher": "JetBrains", "targets": [