From 999cd8704bc23bf11c8c894b573f6e92e949b860 Mon Sep 17 00:00:00 2001 From: qodana-bot Date: Tue, 6 Aug 2024 14:55:50 +0000 Subject: [PATCH] :arrow_up: Update `qodana` to `v2024.1.9` --- GRADLE.md | 8 ++++---- common/cli.json | 14 +++++++------- orb/commands/scan.yml | 6 +++--- orb/examples/scan.yml | 2 +- .../main/kotlin/org/jetbrains/qodana/Checksums.kt | 10 +++++++++- .../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, 44 insertions(+), 36 deletions(-) diff --git a/GRADLE.md b/GRADLE.md index cb4be226..22fcc8b7 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.1.8" + id "org.jetbrains.qodana" version "2024.1.9" } ``` @@ -31,7 +31,7 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file: ```kotlin plugins { - id("org.jetbrains.qodana") version "2024.1.8" + id("org.jetbrains.qodana") version "2024.1.9" } ``` @@ -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.1.8" + id "org.jetbrains.qodana" version "2024.1.9" } 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.1.8" + id("org.jetbrains.qodana") version "2024.1.9" } qodana { diff --git a/common/cli.json b/common/cli.json index 56aab698..dd8b98cc 100644 --- a/common/cli.json +++ b/common/cli.json @@ -1,11 +1,11 @@ { - "version": "2024.1.8", + "version": "2024.1.9", "checksum": { - "windows_x86_64": "99e86c8d07d96512379d467a8f8198fe0a831f5fc7f4a41cca1906c1953a41af", - "linux_arm64": "bcd8bc1b38e80232e23279ab0cbabb671cedb4b3e037ebfa9557d36172593597", - "darwin_arm64": "7551d6cc370eaa781aad13b93a46e5209c2a3b7edbd66a1ad6d62ac6ff61cb34", - "darwin_x86_64": "6cba08f174d2c44bc381759e23a69306e9119ef3c4ebc626310d480f1347f08e", - "windows_arm64": "9a1dbb2143dc2639381573598d945a5d7464e1e80fa826bb4608f06551549a25", - "linux_x86_64": "434ba9287b915948b0aa3a5bb1c38fee3244f28523e5bd4f2fe6b4d38b8eba73" + "windows_x86_64": "47bede2a600dd0b78450a25f4fb9b92d35b5475fe3a3e6a339585e6aa7248440", + "linux_arm64": "32b34c8dbc872dd203e5db07b895b7de41050fd947b39066a3b8a48534492967", + "darwin_arm64": "7b7e42b3f23f6521f7864c8454d914c507d48b65e3659bce28e505f12b90b713", + "darwin_x86_64": "ae74a060a73496985ddf4acc3afa487ba5d09affcdf688bc8ae762869128e6ff", + "windows_arm64": "bd41a23d52e9c24b162a8aeccd62378f53ee4cc564c87de8272d57626ebce7c5", + "linux_x86_64": "76f340bf98217e9b96533a548efff6fc3f8de59641195eaf10e8cb523ebb7335" } } \ No newline at end of file diff --git a/orb/commands/scan.yml b/orb/commands/scan.yml index 616467f7..1767b933 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=e5d3302e5c00d6bdc0f530f4e4852805b88abc65f34943bc42a61bd33e0bd5c5 - CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.1.8 + QODANA_SHA_256=9859b14a67b384015f6e65cb6c8835ba750e56ee8421f3ee14c6b2b3f8f9d8a3 + CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.1.9 mkdir -p $CLI_DIRECTORY if [[ ! -x "$CLI_DIRECTORY/qodana" ]]; then curl -fsSL https://jb.gg/qodana-cli/install | bash -s -- \ - v2024.1.8 $CLI_DIRECTORY \ + v2024.1.9 $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 a873bdfd..478ba6d4 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.1.8 + qodana: jetbrains/qodana@2024.1.9 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 65bbbc2d..88d119fb 100644 --- a/plugin/src/main/kotlin/org/jetbrains/qodana/Checksums.kt +++ b/plugin/src/main/kotlin/org/jetbrains/qodana/Checksums.kt @@ -50,5 +50,13 @@ val CHECKSUMS = mapOf( "linux_arm64" to "f1b8ba1be5dc453ba87de4f75c5f86e59445bb13de407f809ce4475a04b1a70d", "darwin_x86_64" to "8fcbeba68026f33a0d265b064bbb607e86c8775d4e9aade0cabf1b2620ad6015", "darwin_arm64" to "b80167f5a4ff2c054671b985ab1dcc4d59d149c86fd1155935543ad4d05c7aa7" - ) + ), + "2024.1.9" to mapOf( + "windows_x86_64" to "dd893bced4613b99a317459b0c912ff5e5d72d56fd39acf9d7be7c62776d9024", + "windows_arm64" to "87b6c3419f50097ccf0a126206a632f1a2a58255c7119296d0ee84b6ac14864e", + "linux_x86_64" to "9859b14a67b384015f6e65cb6c8835ba750e56ee8421f3ee14c6b2b3f8f9d8a3", + "linux_arm64" to "67f7845b390ba0de022ac60beea84a3eb2d69524806b03a7928f0953c10eebd7", + "darwin_x86_64" to "226ffc4887ebab497a44f7c72f68589104fe5c34141b874eab280a89a5a4c74d", + "darwin_arm64" to "89fd2f7752478ed0a61961cdc839a6317d5336ebbacf2adf9f9abdb2d5b6a92d" + ), ) \ 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 601b3202..47994673 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.1.8" + private const val LATEST_VERSION = "v2024.1.9" 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 eba93671..6e9813c6 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.1.8' + 'v2024.1.9' ] 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.1.8 + uses: JetBrains/qodana-action@v2024.1.9 with: upload-result: true \`\`\` diff --git a/scan/dist/index.js b/scan/dist/index.js index 5c3a76c9..3d41dd36 100644 --- a/scan/dist/index.js +++ b/scan/dist/index.js @@ -24193,14 +24193,14 @@ var require_io = __commonJS({ var version2, checksum; var init_cli = __esm({ "../common/cli.json"() { - version2 = "2024.1.8"; + version2 = "2024.1.9"; checksum = { - windows_x86_64: "99e86c8d07d96512379d467a8f8198fe0a831f5fc7f4a41cca1906c1953a41af", - linux_arm64: "bcd8bc1b38e80232e23279ab0cbabb671cedb4b3e037ebfa9557d36172593597", - darwin_arm64: "7551d6cc370eaa781aad13b93a46e5209c2a3b7edbd66a1ad6d62ac6ff61cb34", - darwin_x86_64: "6cba08f174d2c44bc381759e23a69306e9119ef3c4ebc626310d480f1347f08e", - windows_arm64: "9a1dbb2143dc2639381573598d945a5d7464e1e80fa826bb4608f06551549a25", - linux_x86_64: "434ba9287b915948b0aa3a5bb1c38fee3244f28523e5bd4f2fe6b4d38b8eba73" + windows_x86_64: "47bede2a600dd0b78450a25f4fb9b92d35b5475fe3a3e6a339585e6aa7248440", + linux_arm64: "32b34c8dbc872dd203e5db07b895b7de41050fd947b39066a3b8a48534492967", + darwin_arm64: "7b7e42b3f23f6521f7864c8454d914c507d48b65e3659bce28e505f12b90b713", + darwin_x86_64: "ae74a060a73496985ddf4acc3afa487ba5d09affcdf688bc8ae762869128e6ff", + windows_arm64: "bd41a23d52e9c24b162a8aeccd62378f53ee4cc564c87de8272d57626ebce7c5", + linux_x86_64: "76f340bf98217e9b96533a548efff6fc3f8de59641195eaf10e8cb523ebb7335" }; } }); diff --git a/vsts/QodanaScan/index.js b/vsts/QodanaScan/index.js index 0d78e474..37362225 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.1.8"; + version = "2024.1.9"; checksum = { - windows_x86_64: "99e86c8d07d96512379d467a8f8198fe0a831f5fc7f4a41cca1906c1953a41af", - linux_arm64: "bcd8bc1b38e80232e23279ab0cbabb671cedb4b3e037ebfa9557d36172593597", - darwin_arm64: "7551d6cc370eaa781aad13b93a46e5209c2a3b7edbd66a1ad6d62ac6ff61cb34", - darwin_x86_64: "6cba08f174d2c44bc381759e23a69306e9119ef3c4ebc626310d480f1347f08e", - windows_arm64: "9a1dbb2143dc2639381573598d945a5d7464e1e80fa826bb4608f06551549a25", - linux_x86_64: "434ba9287b915948b0aa3a5bb1c38fee3244f28523e5bd4f2fe6b4d38b8eba73" + windows_x86_64: "47bede2a600dd0b78450a25f4fb9b92d35b5475fe3a3e6a339585e6aa7248440", + linux_arm64: "32b34c8dbc872dd203e5db07b895b7de41050fd947b39066a3b8a48534492967", + darwin_arm64: "7b7e42b3f23f6521f7864c8454d914c507d48b65e3659bce28e505f12b90b713", + darwin_x86_64: "ae74a060a73496985ddf4acc3afa487ba5d09affcdf688bc8ae762869128e6ff", + windows_arm64: "bd41a23d52e9c24b162a8aeccd62378f53ee4cc564c87de8272d57626ebce7c5", + linux_x86_64: "76f340bf98217e9b96533a548efff6fc3f8de59641195eaf10e8cb523ebb7335" }; } }); diff --git a/vsts/QodanaScan/task.json b/vsts/QodanaScan/task.json index 322f76a8..35a48419 100644 --- a/vsts/QodanaScan/task.json +++ b/vsts/QodanaScan/task.json @@ -10,7 +10,7 @@ "version": { "Major": 2024, "Minor": 1, - "Patch": 8 + "Patch": 9 }, "instanceNameFormat": "Qodana Scan", "inputs": [ diff --git a/vsts/vss-extension.dev.json b/vsts/vss-extension.dev.json index a33a54ad..d896949f 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.1.113", + "version": "2024.1.114", "publisher": "JetBrains", "targets": [ { diff --git a/vsts/vss-extension.json b/vsts/vss-extension.json index d5eb88be..1adc573a 100644 --- a/vsts/vss-extension.json +++ b/vsts/vss-extension.json @@ -2,7 +2,7 @@ "manifestVersion": 1, "id": "qodana", "name": "Qodana", - "version": "2024.1.8", + "version": "2024.1.9", "public": true, "publisher": "JetBrains", "targets": [