From 84494be4d1a2f64ec1c4bfdf475406e246e34672 Mon Sep 17 00:00:00 2001 From: qodana-bot Date: Thu, 19 Sep 2024 14:28:38 +0000 Subject: [PATCH] :arrow_up: Update `qodana` to `v2024.2.3` --- 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 47ce32ec..ddf1c1f2 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.2" + id "org.jetbrains.qodana" version "2024.2.3" } ``` @@ -31,7 +31,7 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file: ```kotlin plugins { - id("org.jetbrains.qodana") version "2024.2.2" + id("org.jetbrains.qodana") version "2024.2.3" } ``` @@ -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.2" + id "org.jetbrains.qodana" version "2024.2.3" } 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.2" + id("org.jetbrains.qodana") version "2024.2.3" } qodana { diff --git a/common/cli.json b/common/cli.json index ebdac2b3..9439282f 100644 --- a/common/cli.json +++ b/common/cli.json @@ -1,11 +1,11 @@ { - "version": "2024.2.2", + "version": "2024.2.3", "checksum": { - "windows_x86_64": "c1a4a07e2bdc4c0a2a7b64c94f5ee9129c7caa173409eaf32e24df8f883e9a3e", - "linux_arm64": "f3971d77f4259371bbef6991b97322725eab8caf19919ed3f5c9487d4e4ca975", - "darwin_arm64": "12fa9f46c0aa5738e376d8f5357784ac0520efca95df37d0ea9050aae1e57cc2", - "darwin_x86_64": "d86e1a3f7c627c712e9cb7cb18ff093fca9951665ba2b081b42c389b4cd99e8b", - "windows_arm64": "23d131979f8849789da3c9e5516dff05bbe83aea5e729270c2febecad500474e", - "linux_x86_64": "819f3a44eb39deb22a162a989b270695c23046f436e3d44673393a66e7c109b9" + "windows_x86_64": "e99e81ec41ea44813d36aef45c08e9c955eaa503ae501b271388616240ca3f1c", + "linux_arm64": "37ea8179df6d85ab0bb5b616c3c671f52d0106a2396e5f9e5443e740d5697553", + "darwin_arm64": "29d54a1b00805c97c7a2e741e94b6c4a2c1d5e6e0824a3e2d3bb5767fc5f4a98", + "darwin_x86_64": "c5d8b22878a33a3c1e070b7b881f142ee690d08c4bbd84bc980bedd146e9ac96", + "windows_arm64": "b6aadfbe089a76cebda0da45d0bda9b7a8628d5ff5c54038a2d5c552582ce1c0", + "linux_x86_64": "b9ce0744b626f87c4803eb54d759194276373c662effef49a1cc7962504b2d7a" } } \ No newline at end of file diff --git a/orb/commands/scan.yml b/orb/commands/scan.yml index 71cb23c6..09e77b39 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=0ab1e76c116f3f9bf9465dc2d284eb8c2cbddcf957dcf413d91b3139ca260919 - CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.2.2 + QODANA_SHA_256=b8b70cdd8be9f79037dd511cbdbde70737834c46f35faa3a14acaca41f292748 + CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.2.3 mkdir -p $CLI_DIRECTORY if [[ ! -x "$CLI_DIRECTORY/qodana" ]]; then curl -fsSL https://jb.gg/qodana-cli/install | bash -s -- \ - v2024.2.2 $CLI_DIRECTORY \ + v2024.2.3 $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 db1c8d46..4f496d94 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.2 + qodana: jetbrains/qodana@2024.2.3 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 eb930239..b9ce0fb1 100644 --- a/plugin/src/main/kotlin/org/jetbrains/qodana/Checksums.kt +++ b/plugin/src/main/kotlin/org/jetbrains/qodana/Checksums.kt @@ -74,5 +74,13 @@ val CHECKSUMS = mapOf( "linux_arm64" to "7fce163bd13a0e3f7fe6d8e61f964d1b3143000ac6bb5af76957ccc896012114", "darwin_x86_64" to "5f110c687367ba3bb47609f5bb64e2216f18bfb8cf44c1c8272846e844932d8b", "darwin_arm64" to "dc2b444375f8ac15f6a1f5fa33984d199b1c497446798f221a76481f16cae32c" + ), + "2024.2.3" to mapOf( + "windows_x86_64" to "5d865b0f13d5cd5c5b2ae0d949a591806ade6e7f4580727bce4a415108eafe95", + "windows_arm64" to "e0f61cc37ad37d549605ab6a7d5dd279df08554c9610e04c828662a6955c5059", + "linux_x86_64" to "b8b70cdd8be9f79037dd511cbdbde70737834c46f35faa3a14acaca41f292748", + "linux_arm64" to "293ea36dbb53f47e4585468d80a788af12c9e0e1290bf0af69cddb8a3c165602", + "darwin_x86_64" to "1dafe45b1b1fdfe5b08b2896713befa19d46c5df3b7b138b6a1363fac09d34cf", + "darwin_arm64" to "d41a0251eb27bf97ab494d15fc7b4b952113bb303ba0c830cd2a6fcbd58cb8c3" ) ) \ 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 c536993d..8732a67e 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.2" + private const val LATEST_VERSION = "v2024.2.3" 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 18214cf5..d4a16185 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.2' + 'v2024.2.3' ] 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.2 + uses: JetBrains/qodana-action@v2024.2.3 with: upload-result: true \`\`\` diff --git a/scan/dist/index.js b/scan/dist/index.js index f11e193e..da42bcf7 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.2"; + version2 = "2024.2.3"; checksum = { - windows_x86_64: "c1a4a07e2bdc4c0a2a7b64c94f5ee9129c7caa173409eaf32e24df8f883e9a3e", - linux_arm64: "f3971d77f4259371bbef6991b97322725eab8caf19919ed3f5c9487d4e4ca975", - darwin_arm64: "12fa9f46c0aa5738e376d8f5357784ac0520efca95df37d0ea9050aae1e57cc2", - darwin_x86_64: "d86e1a3f7c627c712e9cb7cb18ff093fca9951665ba2b081b42c389b4cd99e8b", - windows_arm64: "23d131979f8849789da3c9e5516dff05bbe83aea5e729270c2febecad500474e", - linux_x86_64: "819f3a44eb39deb22a162a989b270695c23046f436e3d44673393a66e7c109b9" + windows_x86_64: "e99e81ec41ea44813d36aef45c08e9c955eaa503ae501b271388616240ca3f1c", + linux_arm64: "37ea8179df6d85ab0bb5b616c3c671f52d0106a2396e5f9e5443e740d5697553", + darwin_arm64: "29d54a1b00805c97c7a2e741e94b6c4a2c1d5e6e0824a3e2d3bb5767fc5f4a98", + darwin_x86_64: "c5d8b22878a33a3c1e070b7b881f142ee690d08c4bbd84bc980bedd146e9ac96", + windows_arm64: "b6aadfbe089a76cebda0da45d0bda9b7a8628d5ff5c54038a2d5c552582ce1c0", + linux_x86_64: "b9ce0744b626f87c4803eb54d759194276373c662effef49a1cc7962504b2d7a" }; } }); diff --git a/vsts/QodanaScan/index.js b/vsts/QodanaScan/index.js index 701751a0..6dbfe0dc 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.2"; + version = "2024.2.3"; checksum = { - windows_x86_64: "c1a4a07e2bdc4c0a2a7b64c94f5ee9129c7caa173409eaf32e24df8f883e9a3e", - linux_arm64: "f3971d77f4259371bbef6991b97322725eab8caf19919ed3f5c9487d4e4ca975", - darwin_arm64: "12fa9f46c0aa5738e376d8f5357784ac0520efca95df37d0ea9050aae1e57cc2", - darwin_x86_64: "d86e1a3f7c627c712e9cb7cb18ff093fca9951665ba2b081b42c389b4cd99e8b", - windows_arm64: "23d131979f8849789da3c9e5516dff05bbe83aea5e729270c2febecad500474e", - linux_x86_64: "819f3a44eb39deb22a162a989b270695c23046f436e3d44673393a66e7c109b9" + windows_x86_64: "e99e81ec41ea44813d36aef45c08e9c955eaa503ae501b271388616240ca3f1c", + linux_arm64: "37ea8179df6d85ab0bb5b616c3c671f52d0106a2396e5f9e5443e740d5697553", + darwin_arm64: "29d54a1b00805c97c7a2e741e94b6c4a2c1d5e6e0824a3e2d3bb5767fc5f4a98", + darwin_x86_64: "c5d8b22878a33a3c1e070b7b881f142ee690d08c4bbd84bc980bedd146e9ac96", + windows_arm64: "b6aadfbe089a76cebda0da45d0bda9b7a8628d5ff5c54038a2d5c552582ce1c0", + linux_x86_64: "b9ce0744b626f87c4803eb54d759194276373c662effef49a1cc7962504b2d7a" }; } }); diff --git a/vsts/QodanaScan/task.json b/vsts/QodanaScan/task.json index 3b2ed15c..b7d0288a 100644 --- a/vsts/QodanaScan/task.json +++ b/vsts/QodanaScan/task.json @@ -10,7 +10,7 @@ "version": { "Major": 2024, "Minor": 2, - "Patch": 2 + "Patch": 3 }, "instanceNameFormat": "Qodana Scan", "inputs": [ diff --git a/vsts/vss-extension.dev.json b/vsts/vss-extension.dev.json index 085c3360..3c68fd6c 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.121", + "version": "2024.2.122", "publisher": "JetBrains", "targets": [ { diff --git a/vsts/vss-extension.json b/vsts/vss-extension.json index a55833a9..d5c08082 100644 --- a/vsts/vss-extension.json +++ b/vsts/vss-extension.json @@ -2,7 +2,7 @@ "manifestVersion": 1, "id": "qodana", "name": "Qodana", - "version": "2024.2.2", + "version": "2024.2.3", "public": true, "publisher": "JetBrains", "targets": [